[arch-commits] Commit in haskell-wai-extra/repos (6 files)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 08:58:37
  Author: fyan
Revision: 166047

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-wai-extra/repos/community-staging-i686/
  haskell-wai-extra/repos/community-staging-i686/PKGBUILD
(from rev 166046, haskell-wai-extra/trunk/PKGBUILD)
  haskell-wai-extra/repos/community-staging-i686/haskell-wai-extra.install
(from rev 166046, haskell-wai-extra/trunk/haskell-wai-extra.install)
  haskell-wai-extra/repos/community-staging-x86_64/
  haskell-wai-extra/repos/community-staging-x86_64/PKGBUILD
(from rev 166046, haskell-wai-extra/trunk/PKGBUILD)
  haskell-wai-extra/repos/community-staging-x86_64/haskell-wai-extra.install
(from rev 166046, haskell-wai-extra/trunk/haskell-wai-extra.install)

+
 community-staging-i686/PKGBUILD|   48 +++
 community-staging-i686/haskell-wai-extra.install   |   18 +++
 community-staging-x86_64/PKGBUILD  |   48 +++
 community-staging-x86_64/haskell-wai-extra.install |   18 +++
 4 files changed, 132 insertions(+)

Copied: haskell-wai-extra/repos/community-staging-i686/PKGBUILD (from rev 
166046, haskell-wai-extra/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-11 07:58:37 UTC (rev 166047)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-extra
+pkgname=haskell-wai-extra
+pkgver=3.0.14.1
+pkgrel=4
+pkgdesc="Provides some basic WAI handlers and middleware."
+url="http://github.com/yesodweb/wai;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-ansi-terminal" 
"haskell-base64-bytestring"
+ "haskell-blaze-builder" "haskell-case-insensitive" "haskell-cookie"
+ "haskell-data-default-class" "haskell-fast-logger" 
"haskell-http-types"
+ "haskell-iproute" "haskell-lifted-base" "haskell-network" 
"haskell-old-locale"
+ "haskell-resourcet" "haskell-streaming-commons" "haskell-stringsearch"
+ "haskell-text" "haskell-unix-compat" "haskell-vault" "haskell-void" 
"haskell-wai"
+ "haskell-wai-logger" "haskell-word8" "haskell-zlib")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('3c76f41acf9a4351ebf51908acd3febbef1cf66481933e1e34dc99642d6054dd')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-wai-extra/repos/community-staging-i686/haskell-wai-extra.install (from 
rev 166046, haskell-wai-extra/trunk/haskell-wai-extra.install)
===
--- community-staging-i686/haskell-wai-extra.install
(rev 0)
+++ community-staging-i686/haskell-wai-extra.install2016-03-11 07:58:37 UTC 
(rev 166047)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-wai-extra
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-wai-extra/repos/community-staging-x86_64/PKGBUILD (from rev 
166046, haskell-wai-extra/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-11 07:58:37 UTC (rev 166047)
@@ -0,0 +1,48 @@

[arch-commits] Commit in haskell-wai-extra/trunk (PKGBUILD)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 08:57:54
  Author: fyan
Revision: 166046

upgpkg: haskell-wai-extra 3.0.14.1-4

rebuild with conduit-1.2.6.4, http2-1.5.2, scientific-0.3.4.6, 
vector-binary-instances-0.2.3.0

Modified:
  haskell-wai-extra/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-11 07:55:21 UTC (rev 166045)
+++ PKGBUILD2016-03-11 07:57:54 UTC (rev 166046)
@@ -5,7 +5,7 @@
 _hkgname=wai-extra
 pkgname=haskell-wai-extra
 pkgver=3.0.14.1
-pkgrel=3
+pkgrel=4
 pkgdesc="Provides some basic WAI handlers and middleware."
 url="http://github.com/yesodweb/wai;
 license=("MIT")


[arch-commits] Commit in haskell-aeson-compat/repos (6 files)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 08:55:21
  Author: fyan
Revision: 166045

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-aeson-compat/repos/community-staging-i686/
  haskell-aeson-compat/repos/community-staging-i686/PKGBUILD
(from rev 166044, haskell-aeson-compat/trunk/PKGBUILD)
  haskell-aeson-compat/repos/community-staging-i686/haskell-aeson-compat.install
(from rev 166044, haskell-aeson-compat/trunk/haskell-aeson-compat.install)
  haskell-aeson-compat/repos/community-staging-x86_64/
  haskell-aeson-compat/repos/community-staging-x86_64/PKGBUILD
(from rev 166044, haskell-aeson-compat/trunk/PKGBUILD)
  
haskell-aeson-compat/repos/community-staging-x86_64/haskell-aeson-compat.install
(from rev 166044, haskell-aeson-compat/trunk/haskell-aeson-compat.install)

---+
 community-staging-i686/PKGBUILD   |   51 
 community-staging-i686/haskell-aeson-compat.install   |   18 +
 community-staging-x86_64/PKGBUILD |   51 
 community-staging-x86_64/haskell-aeson-compat.install |   18 +
 4 files changed, 138 insertions(+)

Copied: haskell-aeson-compat/repos/community-staging-i686/PKGBUILD (from rev 
166044, haskell-aeson-compat/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-11 07:55:21 UTC (rev 166045)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-compat
+pkgname=haskell-aeson-compat
+pkgver=0.3.1.0
+pkgrel=6
+pkgdesc="Compatibility layer for aeson"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" 
"haskell-exceptions" "haskell-hashable"
+ "haskell-scientific" "haskell-text" "haskell-time-locale-compat" 
"haskell-unordered-containers"
+ "haskell-vector")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('9275040d031433eb0006bce8228a0828e058d547c7d07d61ab0b22154286d736')
+
+prepare() {
+# nats is an empty package in new GHC
+sed -e '/nats/d' \
+-e 's/aeson>=0.7.0.6 && <0.11.1/aeson  
  >=0.7.0.6 \&\& <0.12/' \
+-i ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-compat/repos/community-staging-i686/haskell-aeson-compat.install 
(from rev 166044, haskell-aeson-compat/trunk/haskell-aeson-compat.install)
===
--- community-staging-i686/haskell-aeson-compat.install 
(rev 0)
+++ community-staging-i686/haskell-aeson-compat.install 2016-03-11 07:55:21 UTC 
(rev 166045)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-compat
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-aeson-compat/repos/community-staging-x86_64/PKGBUILD (from rev 
166044, haskell-aeson-compat/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-11 07:55:21 UTC (rev 166045)
@@ -0,0 +1,51 @@
+# $Id$

[arch-commits] Commit in haskell-aeson-compat/trunk (PKGBUILD)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 08:54:39
  Author: fyan
Revision: 166044

upgpkg: haskell-aeson-compat 0.3.1.0-6

rebuild with conduit-1.2.6.4, http2-1.5.2, scientific-0.3.4.6, 
vector-binary-instances-0.2.3.0

Modified:
  haskell-aeson-compat/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-11 07:51:50 UTC (rev 166043)
+++ PKGBUILD2016-03-11 07:54:39 UTC (rev 166044)
@@ -5,7 +5,7 @@
 _hkgname=aeson-compat
 pkgname=haskell-aeson-compat
 pkgver=0.3.1.0
-pkgrel=5
+pkgrel=6
 pkgdesc="Compatibility layer for aeson"
 url="http://hackage.haskell.org/package/${_hkgname};
 license=("custom:BSD3")


[arch-commits] Commit in haskell-warp/repos (6 files)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 08:51:50
  Author: fyan
Revision: 166043

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-warp/repos/community-staging-i686/
  haskell-warp/repos/community-staging-i686/PKGBUILD
(from rev 166042, haskell-warp/trunk/PKGBUILD)
  haskell-warp/repos/community-staging-i686/haskell-warp.install
(from rev 166042, haskell-warp/trunk/haskell-warp.install)
  haskell-warp/repos/community-staging-x86_64/
  haskell-warp/repos/community-staging-x86_64/PKGBUILD
(from rev 166042, haskell-warp/trunk/PKGBUILD)
  haskell-warp/repos/community-staging-x86_64/haskell-warp.install
(from rev 166042, haskell-warp/trunk/haskell-warp.install)

---+
 community-staging-i686/PKGBUILD   |   52 
 community-staging-i686/haskell-warp.install   |   18 
 community-staging-x86_64/PKGBUILD |   52 
 community-staging-x86_64/haskell-warp.install |   18 
 4 files changed, 140 insertions(+)

Copied: haskell-warp/repos/community-staging-i686/PKGBUILD (from rev 166042, 
haskell-warp/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-11 07:51:50 UTC (rev 166043)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=warp
+pkgname=haskell-warp
+pkgver=3.2.3
+pkgrel=6
+pkgdesc="A fast, light-weight web server for WAI applications."
+url="http://github.com/yesodweb/wai;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-auto-update" "haskell-blaze-builder"
+ "haskell-case-insensitive" "haskell-hashable" "haskell-http-date"
+ "haskell-http-types" "haskell-http2" "haskell-iproute" 
"haskell-network"
+ "haskell-simple-sendfile" "haskell-stm" "haskell-streaming-commons"
+ "haskell-text" "haskell-unix-compat" "haskell-vault" "haskell-wai"
+ "haskell-word8")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('3a218d436cd77d41a157e67721ac59892e70f09fcd39594fc4707dabec760ee8')
+
+prepare() {
+sed -i '/bytestring-builder/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-warp-debug -fallow-sendfilefd -f-network-bytestring
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-warp/repos/community-staging-i686/haskell-warp.install (from 
rev 166042, haskell-warp/trunk/haskell-warp.install)
===
--- community-staging-i686/haskell-warp.install (rev 0)
+++ community-staging-i686/haskell-warp.install 2016-03-11 07:51:50 UTC (rev 
166043)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-warp
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-warp/repos/community-staging-x86_64/PKGBUILD (from rev 166042, 
haskell-warp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-11 07:51:50 UTC (rev 166043)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=warp
+pkgname=haskell-warp

[arch-commits] Commit in haskell-warp/trunk (PKGBUILD)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 08:51:08
  Author: fyan
Revision: 166042

upgpkg: haskell-warp 3.2.3-6

rebuild with conduit-1.2.6.4, http2-1.5.2, scientific-0.3.4.6, 
vector-binary-instances-0.2.3.`0

Modified:
  haskell-warp/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-11 07:50:08 UTC (rev 166041)
+++ PKGBUILD2016-03-11 07:51:08 UTC (rev 166042)
@@ -5,7 +5,7 @@
 _hkgname=warp
 pkgname=haskell-warp
 pkgver=3.2.3
-pkgrel=5
+pkgrel=6
 pkgdesc="A fast, light-weight web server for WAI applications."
 url="http://github.com/yesodweb/wai;
 license=("MIT")


[arch-commits] Commit in haskell-shakespeare/repos (6 files)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 08:50:08
  Author: fyan
Revision: 166041

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-shakespeare/repos/community-staging-i686/
  haskell-shakespeare/repos/community-staging-i686/PKGBUILD
(from rev 166040, haskell-shakespeare/trunk/PKGBUILD)
  haskell-shakespeare/repos/community-staging-i686/haskell-shakespeare.install
(from rev 166040, haskell-shakespeare/trunk/haskell-shakespeare.install)
  haskell-shakespeare/repos/community-staging-x86_64/
  haskell-shakespeare/repos/community-staging-x86_64/PKGBUILD
(from rev 166040, haskell-shakespeare/trunk/PKGBUILD)
  haskell-shakespeare/repos/community-staging-x86_64/haskell-shakespeare.install
(from rev 166040, haskell-shakespeare/trunk/haskell-shakespeare.install)

--+
 community-staging-i686/PKGBUILD  |   45 +
 community-staging-i686/haskell-shakespeare.install   |   18 ++
 community-staging-x86_64/PKGBUILD|   45 +
 community-staging-x86_64/haskell-shakespeare.install |   18 ++
 4 files changed, 126 insertions(+)

Copied: haskell-shakespeare/repos/community-staging-i686/PKGBUILD (from rev 
166040, haskell-shakespeare/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-11 07:50:08 UTC (rev 166041)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=shakespeare
+pkgname=haskell-shakespeare
+pkgver=2.0.7
+pkgrel=10
+pkgdesc="A toolkit for making compile-time interpolated templates"
+url="http://www.yesodweb.com/book/shakespearean-templates;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-blaze-html" 
"haskell-blaze-markup"
+ "haskell-exceptions" "haskell-parsec" "haskell-scientific" 
"haskell-text"
+ "haskell-unordered-containers" "haskell-vector")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('7a567d6effb68c7b39903fb1fccee54e6a1222a4746b5135da5623c406281668')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-test_roy -f-test_coffee -f-test_export
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-shakespeare/repos/community-staging-i686/haskell-shakespeare.install 
(from rev 166040, haskell-shakespeare/trunk/haskell-shakespeare.install)
===
--- community-staging-i686/haskell-shakespeare.install  
(rev 0)
+++ community-staging-i686/haskell-shakespeare.install  2016-03-11 07:50:08 UTC 
(rev 166041)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-shakespeare
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-shakespeare/repos/community-staging-x86_64/PKGBUILD (from rev 
166040, haskell-shakespeare/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-11 07:50:08 UTC (rev 166041)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=shakespeare
+pkgname=haskell-shakespeare
+pkgver=2.0.7
+pkgrel=10
+pkgdesc="A 

[arch-commits] Commit in haskell-shakespeare/trunk (PKGBUILD)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 08:49:19
  Author: fyan
Revision: 166040

upgpkg: haskell-shakespeare 2.0.7-10

rebuild with conduit-1.2.6.4, http2-1.5.2, scientific-0.3.4.6, 
vector-binary-instances-0.2.3.0

Modified:
  haskell-shakespeare/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-11 07:48:31 UTC (rev 166039)
+++ PKGBUILD2016-03-11 07:49:19 UTC (rev 166040)
@@ -5,7 +5,7 @@
 _hkgname=shakespeare
 pkgname=haskell-shakespeare
 pkgver=2.0.7
-pkgrel=9
+pkgrel=10
 pkgdesc="A toolkit for making compile-time interpolated templates"
 url="http://www.yesodweb.com/book/shakespearean-templates;
 license=("MIT")


[arch-commits] Commit in haskell-persistent/repos (6 files)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 08:48:31
  Author: fyan
Revision: 166039

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-persistent/repos/community-staging-i686/
  haskell-persistent/repos/community-staging-i686/PKGBUILD
(from rev 166038, haskell-persistent/trunk/PKGBUILD)
  haskell-persistent/repos/community-staging-i686/haskell-persistent.install
(from rev 166038, haskell-persistent/trunk/haskell-persistent.install)
  haskell-persistent/repos/community-staging-x86_64/
  haskell-persistent/repos/community-staging-x86_64/PKGBUILD
(from rev 166038, haskell-persistent/trunk/PKGBUILD)
  haskell-persistent/repos/community-staging-x86_64/haskell-persistent.install
(from rev 166038, haskell-persistent/trunk/haskell-persistent.install)

-+
 community-staging-i686/PKGBUILD |   49 ++
 community-staging-i686/haskell-persistent.install   |   18 ++
 community-staging-x86_64/PKGBUILD   |   49 ++
 community-staging-x86_64/haskell-persistent.install |   18 ++
 4 files changed, 134 insertions(+)

Copied: haskell-persistent/repos/community-staging-i686/PKGBUILD (from rev 
166038, haskell-persistent/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-11 07:48:31 UTC (rev 166039)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=persistent
+pkgname=haskell-persistent
+pkgver=2.2.4.1
+pkgrel=2
+pkgdesc="Type-safe, multi-backend data serialization"
+url="http://www.yesodweb.com/book/persistent;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" 
"haskell-base64-bytestring"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-conduit" 
"haskell-exceptions"
+ "haskell-fast-logger" "haskell-http-api-data" "haskell-lifted-base"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-mtl" 
"haskell-old-locale"
+ "haskell-path-pieces" "haskell-resource-pool" "haskell-resourcet" 
"haskell-scientific"
+ "haskell-silently" "haskell-tagged" "haskell-text" 
"haskell-transformers-base"
+ "haskell-unordered-containers" "haskell-vector")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('1473bdd952854d7f5fdb5896d2df07ef1ecf301c7fdb136054f49625329d50db')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-nooverlap
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-persistent/repos/community-staging-i686/haskell-persistent.install 
(from rev 166038, haskell-persistent/trunk/haskell-persistent.install)
===
--- community-staging-i686/haskell-persistent.install   
(rev 0)
+++ community-staging-i686/haskell-persistent.install   2016-03-11 07:48:31 UTC 
(rev 166039)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-persistent
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-persistent/repos/community-staging-x86_64/PKGBUILD (from rev 
166038, haskell-persistent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ 

[arch-commits] Commit in haskell-persistent/trunk (PKGBUILD)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 08:47:38
  Author: fyan
Revision: 166038

upgpkg: haskell-persistent 2.2.4.1-2

rebuild with conduit-1.2.6.4, http2-1.5.2, scientific-0.3.4.6, 
vector-binary-instances-0.2.3.0

Modified:
  haskell-persistent/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-11 07:34:17 UTC (rev 166037)
+++ PKGBUILD2016-03-11 07:47:38 UTC (rev 166038)
@@ -5,7 +5,7 @@
 _hkgname=persistent
 pkgname=haskell-persistent
 pkgver=2.2.4.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Type-safe, multi-backend data serialization"
 url="http://www.yesodweb.com/book/persistent;
 license=("MIT")


[arch-commits] Commit in haskell-http-date/repos (6 files)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 08:34:16
  Author: fyan
Revision: 166036

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-http-date/repos/community-staging-i686/
  haskell-http-date/repos/community-staging-i686/PKGBUILD
(from rev 166032, haskell-http-date/trunk/PKGBUILD)
  haskell-http-date/repos/community-staging-i686/haskell-http-date.install
(from rev 166032, haskell-http-date/trunk/haskell-http-date.install)
  haskell-http-date/repos/community-staging-x86_64/
  haskell-http-date/repos/community-staging-x86_64/PKGBUILD
(from rev 166032, haskell-http-date/trunk/PKGBUILD)
  haskell-http-date/repos/community-staging-x86_64/haskell-http-date.install
(from rev 166032, haskell-http-date/trunk/haskell-http-date.install)

+
 community-staging-i686/PKGBUILD|   42 +++
 community-staging-i686/haskell-http-date.install   |   18 
 community-staging-x86_64/PKGBUILD  |   42 +++
 community-staging-x86_64/haskell-http-date.install |   18 
 4 files changed, 120 insertions(+)

Copied: haskell-http-date/repos/community-staging-i686/PKGBUILD (from rev 
166032, haskell-http-date/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-11 07:34:16 UTC (rev 166036)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-date
+pkgname=haskell-http-date
+pkgver=0.0.6.1
+pkgrel=4
+pkgdesc="HTTP Date parser/formatter"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-attoparsec")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('f2e106603e2b3f710f1189e478f6c20067d9a9d21a20a633fe362b3f91807636')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-http-date/repos/community-staging-i686/haskell-http-date.install (from 
rev 166032, haskell-http-date/trunk/haskell-http-date.install)
===
--- community-staging-i686/haskell-http-date.install
(rev 0)
+++ community-staging-i686/haskell-http-date.install2016-03-11 07:34:16 UTC 
(rev 166036)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http-date
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-http-date/repos/community-staging-x86_64/PKGBUILD (from rev 
166032, haskell-http-date/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-11 07:34:16 UTC (rev 166036)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-date
+pkgname=haskell-http-date
+pkgver=0.0.6.1
+pkgrel=4
+pkgdesc="HTTP Date parser/formatter"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-attoparsec")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)

[arch-commits] Commit in haskell-http-date/trunk (PKGBUILD)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 08:33:35
  Author: fyan
Revision: 166032

upgpkg: haskell-http-date 0.0.6.1-4

rebuild with conduit-1.2.6.4, http2-1.5.2, scientific-0.3.4.6, 
vector-binary-instances-0.2.3.0

Modified:
  haskell-http-date/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-11 07:33:13 UTC (rev 166031)
+++ PKGBUILD2016-03-11 07:33:35 UTC (rev 166032)
@@ -5,7 +5,7 @@
 _hkgname=http-date
 pkgname=haskell-http-date
 pkgver=0.0.6.1
-pkgrel=3
+pkgrel=4
 pkgdesc="HTTP Date parser/formatter"
 url="http://hackage.haskell.org/package/${_hkgname};
 license=("custom:BSD3")


[arch-commits] Commit in haskell-monad-logger/repos (6 files)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 08:33:13
  Author: fyan
Revision: 166031

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-monad-logger/repos/community-staging-i686/
  haskell-monad-logger/repos/community-staging-i686/PKGBUILD
(from rev 166028, haskell-monad-logger/trunk/PKGBUILD)
  haskell-monad-logger/repos/community-staging-i686/haskell-monad-logger.install
(from rev 166028, haskell-monad-logger/trunk/haskell-monad-logger.install)
  haskell-monad-logger/repos/community-staging-x86_64/
  haskell-monad-logger/repos/community-staging-x86_64/PKGBUILD
(from rev 166029, haskell-monad-logger/trunk/PKGBUILD)
  
haskell-monad-logger/repos/community-staging-x86_64/haskell-monad-logger.install
(from rev 166029, haskell-monad-logger/trunk/haskell-monad-logger.install)

---+
 community-staging-i686/PKGBUILD   |   47 
 community-staging-i686/haskell-monad-logger.install   |   18 ++
 community-staging-x86_64/PKGBUILD |   47 
 community-staging-x86_64/haskell-monad-logger.install |   18 ++
 4 files changed, 130 insertions(+)

Copied: haskell-monad-logger/repos/community-staging-i686/PKGBUILD (from rev 
166028, haskell-monad-logger/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-11 07:33:13 UTC (rev 166031)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=monad-logger
+pkgname=haskell-monad-logger
+pkgver=0.3.18
+pkgrel=8
+pkgdesc="A class of monads which can log messages."
+url="https://github.com/kazu-yamamoto/logger;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-blaze-builder" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-exceptions" "haskell-fast-logger" "haskell-lifted-base"
+ "haskell-monad-control" "haskell-monad-loops" "haskell-mtl" 
"haskell-resourcet"
+ "haskell-stm" "haskell-stm-chans" "haskell-text" 
"haskell-transformers-base"
+ "haskell-transformers-compat")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('81497c19d08df93e6de5914f3adf0feecf4fcd9412e3004d2b19b4bfba05497e')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-ftemplate_haskell
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-monad-logger/repos/community-staging-i686/haskell-monad-logger.install 
(from rev 166028, haskell-monad-logger/trunk/haskell-monad-logger.install)
===
--- community-staging-i686/haskell-monad-logger.install 
(rev 0)
+++ community-staging-i686/haskell-monad-logger.install 2016-03-11 07:33:13 UTC 
(rev 166031)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-monad-logger
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-monad-logger/repos/community-staging-x86_64/PKGBUILD (from rev 
166029, haskell-monad-logger/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-11 07:33:13 UTC (rev 166031)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: 

[arch-commits] Commit in haskell-http2/repos (6 files)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 08:32:12
  Author: fyan
Revision: 166030

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-http2/repos/community-staging-i686/
  haskell-http2/repos/community-staging-i686/PKGBUILD
(from rev 166029, haskell-http2/trunk/PKGBUILD)
  haskell-http2/repos/community-staging-i686/haskell-http2.install
(from rev 166029, haskell-http2/trunk/haskell-http2.install)
  haskell-http2/repos/community-staging-x86_64/
  haskell-http2/repos/community-staging-x86_64/PKGBUILD
(from rev 166029, haskell-http2/trunk/PKGBUILD)
  haskell-http2/repos/community-staging-x86_64/haskell-http2.install
(from rev 166029, haskell-http2/trunk/haskell-http2.install)

+
 community-staging-i686/PKGBUILD|   49 +++
 community-staging-i686/haskell-http2.install   |   18 
 community-staging-x86_64/PKGBUILD  |   49 +++
 community-staging-x86_64/haskell-http2.install |   18 
 4 files changed, 134 insertions(+)

Copied: haskell-http2/repos/community-staging-i686/PKGBUILD (from rev 166029, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-11 07:32:12 UTC (rev 166030)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.5.2
+pkgrel=1
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" "haskell-hex"
+ "haskell-psqueues" "haskell-stm" "haskell-text" "haskell-vector")
+makedepends=('haskell-word8')
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('8517079c1418c93e33324612a7fa657af40dedef3c0d56a9a2031bfcf6900f70')
+
+prepare() {
+sed -i '/bytestring-builder/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-devel
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-http2/repos/community-staging-i686/haskell-http2.install (from 
rev 166029, haskell-http2/trunk/haskell-http2.install)
===
--- community-staging-i686/haskell-http2.install
(rev 0)
+++ community-staging-i686/haskell-http2.install2016-03-11 07:32:12 UTC 
(rev 166030)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http2
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-http2/repos/community-staging-x86_64/PKGBUILD (from rev 166029, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-11 07:32:12 UTC (rev 166030)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.5.2
+pkgrel=1
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" 

[arch-commits] Commit in haskell-http2/trunk (PKGBUILD)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 08:31:31
  Author: fyan
Revision: 166029

upgpkg: haskell-http2 1.5.2-1

Modified:
  haskell-http2/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-11 07:31:12 UTC (rev 166028)
+++ PKGBUILD2016-03-11 07:31:31 UTC (rev 166029)
@@ -4,8 +4,8 @@
 
 _hkgname=http2
 pkgname=haskell-http2
-pkgver=1.5.1
-pkgrel=3
+pkgver=1.5.2
+pkgrel=1
 pkgdesc="HTTP/2.0 library including frames and HPACK"
 url="http://hackage.haskell.org/package/${_hkgname};
 license=("custom:BSD3")
@@ -16,7 +16,7 @@
 options=('staticlibs')
 
source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
 install="${pkgname}.install"
-sha256sums=('3beba1a59d5c533ef58c715a3b54a069b24f81170e80d662e6267a2ad218eb5d')
+sha256sums=('8517079c1418c93e33324612a7fa657af40dedef3c0d56a9a2031bfcf6900f70')
 
 prepare() {
 sed -i '/bytestring-builder/d' $_hkgname-$pkgver/$_hkgname.cabal


[arch-commits] Commit in haskell-monad-logger/trunk (PKGBUILD)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 08:31:12
  Author: fyan
Revision: 166028

upgpkg: haskell-monad-logger 0.3.18-8

rebuild with conduit-1.2.6.4, http2-1.5.2, scientific-0.3.4.6, 
vector-binary-instances-0.2.3.0

Modified:
  haskell-monad-logger/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-11 07:07:43 UTC (rev 166027)
+++ PKGBUILD2016-03-11 07:31:12 UTC (rev 166028)
@@ -5,7 +5,7 @@
 _hkgname=monad-logger
 pkgname=haskell-monad-logger
 pkgver=0.3.18
-pkgrel=7
+pkgrel=8
 pkgdesc="A class of monads which can log messages."
 url="https://github.com/kazu-yamamoto/logger;
 license=("MIT")


[arch-commits] Commit in gst-plugins-bad/trunk (PKGBUILD)

2016-03-10 Thread Bartłomiej Piotrowski
Date: Friday, March 11, 2016 @ 08:21:13
  Author: bpiotrowski
Revision: 261319

upgpkg: gst-plugins-bad 1.6.3-7

disable opencv plugin

Modified:
  gst-plugins-bad/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-11 06:55:31 UTC (rev 261318)
+++ PKGBUILD2016-03-11 07:21:13 UTC (rev 261319)
@@ -3,7 +3,7 @@
 
 pkgname=gst-plugins-bad
 pkgver=1.6.3
-pkgrel=6
+pkgrel=7
 pkgdesc="GStreamer Multimedia Framework Bad Plugins"
 arch=('i686' 'x86_64')
 license=('LGPL')
@@ -12,7 +12,7 @@
  'soundtouch' 'spandsp' 'libdvdnav' 'libmodplug' 'libgme' 'opus' 
'wayland' 'neon' 'libofa' 'fluidsynth'
  'openjpeg' 'libwebp' 'libsrtp' 'gnutls' 'wildmidi' 'glu' 'sbc' 
'rtmpdump' 'libgudev' 'graphene')
 makedepends=('schroedinger' 'libexif' 'libdvdread' 'libvdpau' 'libmpeg2' 
'python' 'valgrind' 'wildmidi' 'librsvg'
- 'gobject-introspection' 'gtk-doc' 'gtk3' 'clutter' 'opencv' 
'libtiger' 'ladspa' 'openal' 'libusb'
+ 'gobject-introspection' 'gtk-doc' 'gtk3' 'clutter' 'libtiger' 
'ladspa' 'openal' 'libusb'
  'qt5-declarative' 'qt5-x11extras' 'qt5-wayland')
 options=(!emptydirs)
 source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)


[arch-commits] Commit in gst-plugins-bad/repos (4 files)

2016-03-10 Thread Bartłomiej Piotrowski
Date: Friday, March 11, 2016 @ 08:21:28
  Author: bpiotrowski
Revision: 261320

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  gst-plugins-bad/repos/staging-i686/
  gst-plugins-bad/repos/staging-i686/PKGBUILD
(from rev 261319, gst-plugins-bad/trunk/PKGBUILD)
  gst-plugins-bad/repos/staging-x86_64/
  gst-plugins-bad/repos/staging-x86_64/PKGBUILD
(from rev 261319, gst-plugins-bad/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   50 ++
 staging-x86_64/PKGBUILD |   50 ++
 2 files changed, 100 insertions(+)

Copied: gst-plugins-bad/repos/staging-i686/PKGBUILD (from rev 261319, 
gst-plugins-bad/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-11 07:21:28 UTC (rev 261320)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gst-plugins-bad
+pkgver=1.6.3
+pkgrel=7
+pkgdesc="GStreamer Multimedia Framework Bad Plugins"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://gstreamer.freedesktop.org/;
+depends=('mjpegtools' 'gst-plugins-base-libs' 'curl' 'chromaprint' 'libmms' 
'faad2' 'mpg123' 'faac' 'celt' 'libdca'
+ 'soundtouch' 'spandsp' 'libdvdnav' 'libmodplug' 'libgme' 'opus' 
'wayland' 'neon' 'libofa' 'fluidsynth'
+ 'openjpeg' 'libwebp' 'libsrtp' 'gnutls' 'wildmidi' 'glu' 'sbc' 
'rtmpdump' 'libgudev' 'graphene')
+makedepends=('schroedinger' 'libexif' 'libdvdread' 'libvdpau' 'libmpeg2' 
'python' 'valgrind' 'wildmidi' 'librsvg'
+ 'gobject-introspection' 'gtk-doc' 'gtk3' 'clutter' 'libtiger' 
'ladspa' 'openal' 'libusb'
+ 'qt5-declarative' 'qt5-x11extras' 'qt5-wayland')
+options=(!emptydirs)
+source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('971b29101d6a9c5e3fe94d99d977a227f58f0b2d29b6ca2c7f292052542b3a61')
+
+prepare() {
+  cd $pkgname-$pkgver
+  autoreconf -vi
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-experimental --enable-gtk-doc \
+--with-package-name="GStreamer Bad Plugins (Arch Linux)" \
+--with-package-origin="http://www.archlinux.org/; \
+--with-gtk=3.0
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  # don't have a camera for the camerabin test
+  make -k check || :
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}

Copied: gst-plugins-bad/repos/staging-x86_64/PKGBUILD (from rev 261319, 
gst-plugins-bad/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-03-11 07:21:28 UTC (rev 261320)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gst-plugins-bad
+pkgver=1.6.3
+pkgrel=7
+pkgdesc="GStreamer Multimedia Framework Bad Plugins"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://gstreamer.freedesktop.org/;
+depends=('mjpegtools' 'gst-plugins-base-libs' 'curl' 'chromaprint' 'libmms' 
'faad2' 'mpg123' 'faac' 'celt' 'libdca'
+ 'soundtouch' 'spandsp' 'libdvdnav' 'libmodplug' 'libgme' 'opus' 
'wayland' 'neon' 'libofa' 'fluidsynth'
+ 'openjpeg' 'libwebp' 'libsrtp' 'gnutls' 'wildmidi' 'glu' 'sbc' 
'rtmpdump' 'libgudev' 'graphene')
+makedepends=('schroedinger' 'libexif' 'libdvdread' 'libvdpau' 'libmpeg2' 
'python' 'valgrind' 'wildmidi' 'librsvg'
+ 'gobject-introspection' 'gtk-doc' 'gtk3' 'clutter' 'libtiger' 
'ladspa' 'openal' 'libusb'
+ 'qt5-declarative' 'qt5-x11extras' 'qt5-wayland')
+options=(!emptydirs)
+source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('971b29101d6a9c5e3fe94d99d977a227f58f0b2d29b6ca2c7f292052542b3a61')
+
+prepare() {
+  cd $pkgname-$pkgver
+  autoreconf -vi
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-experimental --enable-gtk-doc \
+--with-package-name="GStreamer Bad Plugins (Arch Linux)" \
+--with-package-origin="http://www.archlinux.org/; \
+--with-gtk=3.0
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  # don't have a camera for the camerabin test
+  make -k check || :
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in frei0r-plugins/trunk (PKGBUILD)

2016-03-10 Thread Antonio Rojas
Date: Friday, March 11, 2016 @ 08:07:43
  Author: arojas
Revision: 166027

Revert unneeded change

Modified:
  frei0r-plugins/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-11 07:07:21 UTC (rev 166026)
+++ PKGBUILD2016-03-11 07:07:43 UTC (rev 166027)
@@ -24,7 +24,7 @@
 build() {
   cd "$srcdir/$pkgname-$pkgver"
   ./configure --prefix=/usr
-  make -j1
+  make
 }
 
 package() {


[arch-commits] Commit in gmic/trunk (PKGBUILD)

2016-03-10 Thread Bartłomiej Piotrowski
Date: Friday, March 11, 2016 @ 08:07:07
  Author: bpiotrowski
Revision: 166025

upgpkg: gmic 1.6.9-2

rebuild against opencv 3.1.0

Modified:
  gmic/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-11 07:04:10 UTC (rev 166024)
+++ PKGBUILD2016-03-11 07:07:07 UTC (rev 166025)
@@ -7,7 +7,7 @@
 pkgbase=gmic
 pkgname=("gmic" "gimp-plugin-gmic" "zart")
 pkgver=1.6.9
-pkgrel=1
+pkgrel=2
 arch=("i686" "x86_64")
 url="http://gmic.eu/;
 license=("custom:CeCILL")


[arch-commits] Commit in gmic/repos (4 files)

2016-03-10 Thread Bartłomiej Piotrowski
Date: Friday, March 11, 2016 @ 08:07:21
  Author: bpiotrowski
Revision: 166026

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  gmic/repos/community-staging-i686/
  gmic/repos/community-staging-i686/PKGBUILD
(from rev 166025, gmic/trunk/PKGBUILD)
  gmic/repos/community-staging-x86_64/
  gmic/repos/community-staging-x86_64/PKGBUILD
(from rev 166025, gmic/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   60 
 community-staging-x86_64/PKGBUILD |   60 
 2 files changed, 120 insertions(+)

Copied: gmic/repos/community-staging-i686/PKGBUILD (from rev 166025, 
gmic/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-11 07:07:21 UTC (rev 166026)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.6.9
+pkgrel=2
+arch=("i686" "x86_64")
+url="http://gmic.eu/;
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz;)
+md5sums=('67fde5ee5eb40846d39844eb3f8d35fe')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("opencv" "gimp" "fftw")
+  replaces=("gimp-plugin-greycstoration" "gimp-plugin-gmic4gimp")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 src/gmic_gimp "${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: gmic/repos/community-staging-x86_64/PKGBUILD (from rev 166025, 
gmic/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-11 07:07:21 UTC (rev 166026)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=("gmic" "gimp-plugin-gmic" "zart")
+pkgver=1.6.9
+pkgrel=2
+arch=("i686" "x86_64")
+url="http://gmic.eu/;
+license=("custom:CeCILL")
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+source=("http://gmic.eu/files/source/gmic_$pkgver.tar.gz;)
+md5sums=('67fde5ee5eb40846d39844eb3f8d35fe')
+
+prepare() {
+  cd "${srcdir}/gmic-${pkgver}"
+  sed -i -e 's|qmake zart.pro|qmake-qt4 zart.pro|g' \
+-e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' \
+src/Makefile
+}
+
+build() {
+  cd "${srcdir}/gmic-${pkgver}"
+  (cd zart && qmake-qt4 -o Makefile zart.pro)
+  make -C src all
+  make -C zart all
+}
+
+package_gmic() {
+  pkgdesc="GREYC's Magic Image Converter: image processing framework"
+  depends=("opencv" "fftw" "libtiff" "libjpeg" "libpng" "openexr" "libx11")
+  replaces=("greycstoration")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  make -C src install DESTDIR="$pkgdir" USR="/usr"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -rf "${pkgdir}/usr/"{bin/zart,lib/gimp,share/zart}
+}
+
+package_zart() {
+  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
+  depends=("opencv" "fftw" "qt4")
+
+  cd "${srcdir}/gmic-${pkgver}"
+  install -Dm755 zart/zart "${pkgdir}/usr/bin/zart"
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_gimp-plugin-gmic() {
+  pkgdesc="Gimp plugin for the G'MIC image processing framework"
+  depends=("opencv" "gimp" 

[arch-commits] Commit in frei0r-plugins/repos (6 files)

2016-03-10 Thread Antonio Rojas
Date: Friday, March 11, 2016 @ 08:04:10
  Author: arojas
Revision: 166024

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  frei0r-plugins/repos/community-staging-i686/
  frei0r-plugins/repos/community-staging-i686/PKGBUILD
(from rev 166023, frei0r-plugins/trunk/PKGBUILD)
  frei0r-plugins/repos/community-staging-i686/frei0r-plugins-opencv3.patch
(from rev 166023, frei0r-plugins/trunk/frei0r-plugins-opencv3.patch)
  frei0r-plugins/repos/community-staging-x86_64/
  frei0r-plugins/repos/community-staging-x86_64/PKGBUILD
(from rev 166023, frei0r-plugins/trunk/PKGBUILD)
  frei0r-plugins/repos/community-staging-x86_64/frei0r-plugins-opencv3.patch
(from rev 166023, frei0r-plugins/trunk/frei0r-plugins-opencv3.patch)

---+
 community-staging-i686/PKGBUILD   |   33 ++
 community-staging-i686/frei0r-plugins-opencv3.patch   |   50 
 community-staging-x86_64/PKGBUILD |   33 ++
 community-staging-x86_64/frei0r-plugins-opencv3.patch |   50 
 4 files changed, 166 insertions(+)

Copied: frei0r-plugins/repos/community-staging-i686/PKGBUILD (from rev 166023, 
frei0r-plugins/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-11 07:04:10 UTC (rev 166024)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=frei0r-plugins
+pkgver=1.4
+pkgrel=4
+pkgdesc="A minimalistic plugin API for video sources and filters"
+arch=(i686 x86_64)
+url="http://www.piksel.org/frei0r;
+license=('GPL')
+depends=('gcc-libs' 'gavl>=1.0.0' 'opencv>=2.4.3')
+makedepends=('doxygen')
+options=('!emptydirs')
+source=(https://files.dyne.org/frei0r/releases/$pkgname-$pkgver.tar.gz 
frei0r-plugins-opencv3.patch)
+md5sums=('202375d1bcb545c1b6eb8f34e0260ec5'
+ '52d21eee99b5f38a97b905c5243e9143')
+
+prepare() {
+  cd $pkgname-$pkgver
+# Fix build with opencv 3 (Gentoo)
+  patch -p2 -i ../frei0r-plugins-opencv3.patch
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make -j1
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Copied: 
frei0r-plugins/repos/community-staging-i686/frei0r-plugins-opencv3.patch (from 
rev 166023, frei0r-plugins/trunk/frei0r-plugins-opencv3.patch)
===
--- community-staging-i686/frei0r-plugins-opencv3.patch 
(rev 0)
+++ community-staging-i686/frei0r-plugins-opencv3.patch 2016-03-11 07:04:10 UTC 
(rev 166024)
@@ -0,0 +1,50 @@
+--- ./frei0r-plugins-1.4/src/filter/facedetect/facedetect.c.opencv3
2013-02-24 14:43:22.0 +0100
 ./frei0r-plugins-1.4/src/filter/facedetect/facedetect.c2015-07-08 
12:44:30.987056878 +0200
+@@ -211,8 +211,8 @@ CvSeq* detect_and_draw( IplImage* img, C
+ 
+   double scale = 1.3;
+   IplImage* gray = cvCreateImage( cvSize(img->width,img->height), 8, 1 );
+-  IplImage* small_img = cvCreateImage( cvSize( cvRound (img->width/scale),
+-   cvRound (img->height/scale)),
++  IplImage* small_img = cvCreateImage( cvSize( cvRound 
((double)img->width/scale),
++   cvRound 
((double)img->height/scale)),
+8, 1 );
+   int i;
+ 
+--- ./frei0r-plugins-1.4/src/filter/facedetect/facedetect.cpp.opencv3  
2013-02-24 14:43:22.0 +0100
 ./frei0r-plugins-1.4/src/filter/facedetect/facedetect.cpp  2015-07-08 
12:48:32.754615885 +0200
+@@ -259,11 +259,11 @@ private:
+ {
+ double scale = this->scale == 0? 1.0 : this->scale;
+ CvScalar colors[5] = {
+-{{cvRound(color[0].r * 255), cvRound(color[0].g * 255), 
cvRound(color[0].b * 255), cvRound(alpha * 255)}},
+-{{cvRound(color[1].r * 255), cvRound(color[1].g * 255), 
cvRound(color[1].b * 255), cvRound(alpha * 255)}},
+-{{cvRound(color[2].r * 255), cvRound(color[2].g * 255), 
cvRound(color[2].b * 255), cvRound(alpha * 255)}},
+-{{cvRound(color[3].r * 255), cvRound(color[3].g * 255), 
cvRound(color[3].b * 255), cvRound(alpha * 255)}},
+-{{cvRound(color[4].r * 255), cvRound(color[4].g * 255), 
cvRound(color[4].b * 255), cvRound(alpha * 255)}},
++CvScalar(cvRound(color[0].r * 255), cvRound(color[0].g * 255), 
cvRound(color[0].b * 255), cvRound(alpha * 255)),
++CvScalar(cvRound(color[1].r * 255), cvRound(color[1].g * 255), 
cvRound(color[1].b * 255), cvRound(alpha * 255)),
++CvScalar(cvRound(color[2].r * 255), cvRound(color[2].g * 255), 
cvRound(color[2].b * 255), cvRound(alpha * 255)),
++CvScalar(cvRound(color[3].r * 255), cvRound(color[3].g * 255), 
cvRound(color[3].b * 

[arch-commits] Commit in frei0r-plugins/trunk (PKGBUILD frei0r-plugins-opencv3.patch)

2016-03-10 Thread Antonio Rojas
Date: Friday, March 11, 2016 @ 08:03:37
  Author: arojas
Revision: 166023

opencv 3.1 rebuild

Added:
  frei0r-plugins/trunk/frei0r-plugins-opencv3.patch
Modified:
  frei0r-plugins/trunk/PKGBUILD

--+
 PKGBUILD |   15 +---
 frei0r-plugins-opencv3.patch |   50 +
 2 files changed, 61 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-11 06:52:09 UTC (rev 166022)
+++ PKGBUILD2016-03-11 07:03:37 UTC (rev 166023)
@@ -3,7 +3,7 @@
 
 pkgname=frei0r-plugins
 pkgver=1.4
-pkgrel=3
+pkgrel=4
 pkgdesc="A minimalistic plugin API for video sources and filters"
 arch=(i686 x86_64)
 url="http://www.piksel.org/frei0r;
@@ -11,13 +11,20 @@
 depends=('gcc-libs' 'gavl>=1.0.0' 'opencv>=2.4.3')
 makedepends=('doxygen')
 options=('!emptydirs')
-source=(https://files.dyne.org/frei0r/releases/$pkgname-$pkgver.tar.gz)
-md5sums=('202375d1bcb545c1b6eb8f34e0260ec5')
+source=(https://files.dyne.org/frei0r/releases/$pkgname-$pkgver.tar.gz 
frei0r-plugins-opencv3.patch)
+md5sums=('202375d1bcb545c1b6eb8f34e0260ec5'
+ '52d21eee99b5f38a97b905c5243e9143')
 
+prepare() {
+  cd $pkgname-$pkgver
+# Fix build with opencv 3 (Gentoo)
+  patch -p2 -i ../frei0r-plugins-opencv3.patch
+}
+
 build() {
   cd "$srcdir/$pkgname-$pkgver"
   ./configure --prefix=/usr
-  make
+  make -j1
 }
 
 package() {

Added: frei0r-plugins-opencv3.patch
===
--- frei0r-plugins-opencv3.patch(rev 0)
+++ frei0r-plugins-opencv3.patch2016-03-11 07:03:37 UTC (rev 166023)
@@ -0,0 +1,50 @@
+--- ./frei0r-plugins-1.4/src/filter/facedetect/facedetect.c.opencv3
2013-02-24 14:43:22.0 +0100
 ./frei0r-plugins-1.4/src/filter/facedetect/facedetect.c2015-07-08 
12:44:30.987056878 +0200
+@@ -211,8 +211,8 @@ CvSeq* detect_and_draw( IplImage* img, C
+ 
+   double scale = 1.3;
+   IplImage* gray = cvCreateImage( cvSize(img->width,img->height), 8, 1 );
+-  IplImage* small_img = cvCreateImage( cvSize( cvRound (img->width/scale),
+-   cvRound (img->height/scale)),
++  IplImage* small_img = cvCreateImage( cvSize( cvRound 
((double)img->width/scale),
++   cvRound 
((double)img->height/scale)),
+8, 1 );
+   int i;
+ 
+--- ./frei0r-plugins-1.4/src/filter/facedetect/facedetect.cpp.opencv3  
2013-02-24 14:43:22.0 +0100
 ./frei0r-plugins-1.4/src/filter/facedetect/facedetect.cpp  2015-07-08 
12:48:32.754615885 +0200
+@@ -259,11 +259,11 @@ private:
+ {
+ double scale = this->scale == 0? 1.0 : this->scale;
+ CvScalar colors[5] = {
+-{{cvRound(color[0].r * 255), cvRound(color[0].g * 255), 
cvRound(color[0].b * 255), cvRound(alpha * 255)}},
+-{{cvRound(color[1].r * 255), cvRound(color[1].g * 255), 
cvRound(color[1].b * 255), cvRound(alpha * 255)}},
+-{{cvRound(color[2].r * 255), cvRound(color[2].g * 255), 
cvRound(color[2].b * 255), cvRound(alpha * 255)}},
+-{{cvRound(color[3].r * 255), cvRound(color[3].g * 255), 
cvRound(color[3].b * 255), cvRound(alpha * 255)}},
+-{{cvRound(color[4].r * 255), cvRound(color[4].g * 255), 
cvRound(color[4].b * 255), cvRound(alpha * 255)}},
++CvScalar(cvRound(color[0].r * 255), cvRound(color[0].g * 255), 
cvRound(color[0].b * 255), cvRound(alpha * 255)),
++CvScalar(cvRound(color[1].r * 255), cvRound(color[1].g * 255), 
cvRound(color[1].b * 255), cvRound(alpha * 255)),
++CvScalar(cvRound(color[2].r * 255), cvRound(color[2].g * 255), 
cvRound(color[2].b * 255), cvRound(alpha * 255)),
++CvScalar(cvRound(color[3].r * 255), cvRound(color[3].g * 255), 
cvRound(color[3].b * 255), cvRound(alpha * 255)),
++CvScalar(cvRound(color[4].r * 255), cvRound(color[4].g * 255), 
cvRound(color[4].b * 255), cvRound(alpha * 255)),
+ };
+ 
+ for (int i = 0; i < (objects ? objects->total : 0); i++)
+@@ -287,14 +287,14 @@ private:
+ }
+ case 1:
+ {
+-CvBox2D box = {{center.x, center.y}, {r->width / scale, 
(r->height / scale) * 1.2}, 90};
++CvBox2D box = CvBox2D(CvPoint2D32f(center.x, center.y), 
CvSize2D32f(r->width / scale, (r->height / scale) * 1.2), 90);
+ cvEllipseBox(image, box, colors[i % 5], thickness, 
linetype);
+ break;
+ }
+ case 2:
+ {
+-CvPoint pt1 = {r->x / scale, r->y / scale};
+-CvPoint pt2 = {(r->x + r->width) / scale, (r->y + 
r->height) / scale};
++CvPoint pt1 = CvPoint(r->x / scale, r->y / scale);
++CvPoint pt2 = 

[arch-commits] Commit in opencv/trunk (5852.patch PKGBUILD)

2016-03-10 Thread Bartłomiej Piotrowski
Date: Friday, March 11, 2016 @ 07:55:20
  Author: bpiotrowski
Revision: 261317

upgpkg: opencv 3.1.0-3

backport patch fixing pkgconfig files for contrib modules

Added:
  opencv/trunk/5852.patch
Modified:
  opencv/trunk/PKGBUILD

+
 5852.patch |   39 +++
 PKGBUILD   |   17 +
 2 files changed, 52 insertions(+), 4 deletions(-)

Added: 5852.patch
===
--- 5852.patch  (rev 0)
+++ 5852.patch  2016-03-11 06:55:20 UTC (rev 261317)
@@ -0,0 +1,39 @@
+From 24dbb43c096691d0333cacf231e22f1369f8c826 Mon Sep 17 00:00:00 2001
+From: Alexander Alekhin 
+Date: Tue, 22 Dec 2015 17:10:33 +0300
+Subject: [PATCH] pkg-config: modules list contains only OpenCV modules (fixes
+ #5852)
+
+---
+ cmake/OpenCVUtils.cmake | 11 +++
+ 1 file changed, 7 insertions(+), 4 deletions(-)
+
+diff --git a/cmake/OpenCVUtils.cmake b/cmake/OpenCVUtils.cmake
+index 3a23cd7..75412eb 100644
+--- a/cmake/OpenCVUtils.cmake
 b/cmake/OpenCVUtils.cmake
+@@ -806,7 +806,13 @@ macro(ocv_get_all_libs _modules _extra _3rdparty)
+ else()
+   set(deps "")
+ endif()
+-list(INSERT ${_modules} 0 ${deps} ${m})
++set(_rev_deps "${deps};${m}")
++ocv_list_reverse(_rev_deps)
++foreach (dep ${_rev_deps})
++  if(DEFINED OPENCV_MODULE_${dep}_LOCATION)
++list(INSERT ${_modules} 0 ${dep})
++  endif()
++endforeach()
+ foreach (dep ${deps} ${OPENCV_LINKER_LIBS})
+   if (NOT DEFINED OPENCV_MODULE_${dep}_LOCATION)
+ if (TARGET ${dep})
+@@ -832,9 +838,6 @@ macro(ocv_get_all_libs _modules _extra _3rdparty)
+ endif()
+   endif()
+ 
+-  # split 3rdparty libs and modules
+-  list(REMOVE_ITEM ${_modules} ${${_3rdparty}} ${${_extra}} non_empty_list)
+-
+   ocv_list_filterout(${_modules} "^[\$]<")
+   ocv_list_filterout(${_3rdparty} "^[\$]<")
+   ocv_list_filterout(${_extra} "^[\$]<")

Modified: PKGBUILD
===
--- PKGBUILD2016-03-11 04:42:41 UTC (rev 261316)
+++ PKGBUILD2016-03-11 06:55:20 UTC (rev 261317)
@@ -5,7 +5,7 @@
 pkgbase=opencv
 pkgname=('opencv' 'opencv-samples')
 pkgver=3.1.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Open Source Computer Vision Library"
 arch=('i686' 'x86_64')
 license=('BSD')
@@ -18,9 +18,11 @@
 'python-numpy: Python 3 interface'
 'python2-numpy: Python 2 interface')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/Itseez/opencv/archive/$pkgver.zip;
-
"opencv_contrib-$pkgver.tar.gz::https://github.com/Itseez/opencv_contrib/archive/$pkgver.tar.gz;)
+
"opencv_contrib-$pkgver.tar.gz::https://github.com/Itseez/opencv_contrib/archive/$pkgver.tar.gz;
+'5852.patch')
 md5sums=('6082ee2124d4066581a7386972bfd52a'
- 'a822839ad3ab79ff837c16785ea9dd10')
+ 'a822839ad3ab79ff837c16785ea9dd10'
+ '5bd9cd736b171c15cedee3a32a0c47ff')
 
 _cmakeopts=('-D WITH_OPENCL=ON'
 '-D WITH_OPENGL=ON'
@@ -36,7 +38,9 @@
 '-D CMAKE_BUILD_TYPE=Release'
 '-D CMAKE_INSTALL_PREFIX=/usr'
 '-D CMAKE_SKIP_RPATH=ON'
-'-D BUILD_NEW_PYTHON_SUPPORT=ON')
+#'-D WITH_IPP=ON'
+#'-D INSTALL_CREATE_DISTRIB=ON'
+)
 
 # SSE only available from Pentium 3 onwards (i686 is way older)
 [[ "$CARCH" = 'i686' ]] && \
@@ -44,6 +48,11 @@
'-D ENABLE_SSE2=OFF'
'-D ENABLE_SSE3=OFF')
 
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+  patch -p1 -i "$srcdir/5852.patch"
+}
+
 build() {
   cd "$srcdir/$pkgname-$pkgver"
 


[arch-commits] Commit in opencv/repos (6 files)

2016-03-10 Thread Bartłomiej Piotrowski
Date: Friday, March 11, 2016 @ 07:55:31
  Author: bpiotrowski
Revision: 261318

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  opencv/repos/staging-i686/5852.patch
(from rev 261317, opencv/trunk/5852.patch)
  opencv/repos/staging-i686/PKGBUILD
(from rev 261317, opencv/trunk/PKGBUILD)
  opencv/repos/staging-x86_64/5852.patch
(from rev 261317, opencv/trunk/5852.patch)
  opencv/repos/staging-x86_64/PKGBUILD
(from rev 261317, opencv/trunk/PKGBUILD)
Deleted:
  opencv/repos/staging-i686/PKGBUILD
  opencv/repos/staging-x86_64/PKGBUILD

---+
 /PKGBUILD |  202 
 staging-i686/5852.patch   |   39 
 staging-i686/PKGBUILD |   92 
 staging-x86_64/5852.patch |   39 
 staging-x86_64/PKGBUILD   |   92 
 5 files changed, 280 insertions(+), 184 deletions(-)

Copied: opencv/repos/staging-i686/5852.patch (from rev 261317, 
opencv/trunk/5852.patch)
===
--- staging-i686/5852.patch (rev 0)
+++ staging-i686/5852.patch 2016-03-11 06:55:31 UTC (rev 261318)
@@ -0,0 +1,39 @@
+From 24dbb43c096691d0333cacf231e22f1369f8c826 Mon Sep 17 00:00:00 2001
+From: Alexander Alekhin 
+Date: Tue, 22 Dec 2015 17:10:33 +0300
+Subject: [PATCH] pkg-config: modules list contains only OpenCV modules (fixes
+ #5852)
+
+---
+ cmake/OpenCVUtils.cmake | 11 +++
+ 1 file changed, 7 insertions(+), 4 deletions(-)
+
+diff --git a/cmake/OpenCVUtils.cmake b/cmake/OpenCVUtils.cmake
+index 3a23cd7..75412eb 100644
+--- a/cmake/OpenCVUtils.cmake
 b/cmake/OpenCVUtils.cmake
+@@ -806,7 +806,13 @@ macro(ocv_get_all_libs _modules _extra _3rdparty)
+ else()
+   set(deps "")
+ endif()
+-list(INSERT ${_modules} 0 ${deps} ${m})
++set(_rev_deps "${deps};${m}")
++ocv_list_reverse(_rev_deps)
++foreach (dep ${_rev_deps})
++  if(DEFINED OPENCV_MODULE_${dep}_LOCATION)
++list(INSERT ${_modules} 0 ${dep})
++  endif()
++endforeach()
+ foreach (dep ${deps} ${OPENCV_LINKER_LIBS})
+   if (NOT DEFINED OPENCV_MODULE_${dep}_LOCATION)
+ if (TARGET ${dep})
+@@ -832,9 +838,6 @@ macro(ocv_get_all_libs _modules _extra _3rdparty)
+ endif()
+   endif()
+ 
+-  # split 3rdparty libs and modules
+-  list(REMOVE_ITEM ${_modules} ${${_3rdparty}} ${${_extra}} non_empty_list)
+-
+   ocv_list_filterout(${_modules} "^[\$]<")
+   ocv_list_filterout(${_3rdparty} "^[\$]<")
+   ocv_list_filterout(${_extra} "^[\$]<")

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2016-03-11 06:55:20 UTC (rev 261317)
+++ staging-i686/PKGBUILD   2016-03-11 06:55:31 UTC (rev 261318)
@@ -1,92 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif 
-# Contributor: Tobias Powalowski 
-
-pkgbase=opencv
-pkgname=('opencv' 'opencv-samples')
-pkgver=3.1.0
-pkgrel=2
-pkgdesc="Open Source Computer Vision Library"
-arch=('i686' 'x86_64')
-license=('BSD')
-url="http://opencv.org/;
-depends=('intel-tbb' 'openexr' 'xine-lib' 'libdc1394' 'gtkglext')
-makedepends=('cmake' 'python-numpy' 'python2-numpy' 'mesa' 'eigen')
-optdepends=('opencv-samples'
-'eigen'
-'libcl: For coding with OpenCL'
-'python-numpy: Python 3 interface'
-'python2-numpy: Python 2 interface')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/Itseez/opencv/archive/$pkgver.zip;
-
"opencv_contrib-$pkgver.tar.gz::https://github.com/Itseez/opencv_contrib/archive/$pkgver.tar.gz;)
-md5sums=('6082ee2124d4066581a7386972bfd52a'
- 'a822839ad3ab79ff837c16785ea9dd10')
-
-_cmakeopts=('-D WITH_OPENCL=ON'
-'-D WITH_OPENGL=ON'
-'-D WITH_TBB=ON'
-'-D WITH_XINE=ON'
-'-D WITH_GSTREAMER=OFF'
-'-D BUILD_WITH_DEBUG_INFO=OFF'
-'-D BUILD_TESTS=OFF'
-'-D BUILD_PERF_TESTS=OFF'
-'-D BUILD_EXAMPLES=ON'
-'-D INSTALL_C_EXAMPLES=ON'
-'-D INSTALL_PYTHON_EXAMPLES=ON'
-'-D CMAKE_BUILD_TYPE=Release'
-'-D CMAKE_INSTALL_PREFIX=/usr'
-'-D CMAKE_SKIP_RPATH=ON'
-'-D BUILD_NEW_PYTHON_SUPPORT=ON')
-
-# SSE only available from Pentium 3 onwards (i686 is way older)
-[[ "$CARCH" = 'i686' ]] && \
-  _cmakeopts+=('-D ENABLE_SSE=OFF'
-   '-D ENABLE_SSE2=OFF'
-   '-D ENABLE_SSE3=OFF')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  cmake ${_cmakeopts[@]} \
--DOPENCV_EXTRA_MODULES_PATH="$srcdir/opencv_contrib-$pkgver/modules" \
-.
-
-  make
-}
-
-package_opencv() {
-  options=('staticlibs')
-
-  cd "$srcdir/$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  # install license file
-  install -Dm644 "$srcdir/$pkgname-$pkgver/LICENSE" \
-

[arch-commits] Commit in haskell-aeson-pretty/repos (6 files)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 07:52:09
  Author: fyan
Revision: 166022

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-aeson-pretty/repos/community-staging-i686/
  haskell-aeson-pretty/repos/community-staging-i686/PKGBUILD
(from rev 166021, haskell-aeson-pretty/trunk/PKGBUILD)
  haskell-aeson-pretty/repos/community-staging-i686/haskell-aeson-pretty.install
(from rev 166021, haskell-aeson-pretty/trunk/haskell-aeson-pretty.install)
  haskell-aeson-pretty/repos/community-staging-x86_64/
  haskell-aeson-pretty/repos/community-staging-x86_64/PKGBUILD
(from rev 166021, haskell-aeson-pretty/trunk/PKGBUILD)
  
haskell-aeson-pretty/repos/community-staging-x86_64/haskell-aeson-pretty.install
(from rev 166021, haskell-aeson-pretty/trunk/haskell-aeson-pretty.install)

---+
 community-staging-i686/PKGBUILD   |   44 
 community-staging-i686/haskell-aeson-pretty.install   |   18 ++
 community-staging-x86_64/PKGBUILD |   44 
 community-staging-x86_64/haskell-aeson-pretty.install |   18 ++
 4 files changed, 124 insertions(+)

Copied: haskell-aeson-pretty/repos/community-staging-i686/PKGBUILD (from rev 
166021, haskell-aeson-pretty/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-11 06:52:09 UTC (rev 166022)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-pretty
+pkgname=haskell-aeson-pretty
+pkgver=0.7.2
+pkgrel=11
+pkgdesc="JSON pretty-printing library and command-line tool."
+url="http://github.com/informatikr/aeson-pretty;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-cmdargs"
+ "haskell-text" "haskell-unordered-containers" "haskell-vector")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('6408b8b2bcd12cf591e4b93b4d9f5143449b33a59fbd3653f328e2515040570d')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-lib-only
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-pretty/repos/community-staging-i686/haskell-aeson-pretty.install 
(from rev 166021, haskell-aeson-pretty/trunk/haskell-aeson-pretty.install)
===
--- community-staging-i686/haskell-aeson-pretty.install 
(rev 0)
+++ community-staging-i686/haskell-aeson-pretty.install 2016-03-11 06:52:09 UTC 
(rev 166022)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-pretty
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-aeson-pretty/repos/community-staging-x86_64/PKGBUILD (from rev 
166021, haskell-aeson-pretty/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-11 06:52:09 UTC (rev 166022)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-pretty
+pkgname=haskell-aeson-pretty
+pkgver=0.7.2
+pkgrel=11
+pkgdesc="JSON pretty-printing library and command-line tool."

[arch-commits] Commit in haskell-aeson-pretty/trunk (PKGBUILD)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 07:51:29
  Author: fyan
Revision: 166021

upgpkg: haskell-aeson-pretty 0.7.2-11

rebuild with conduit-1.2.6.4, http2-1.5.2, scientific-0.3.4.6, 
vector-binary-instances-0.2.3.0

Modified:
  haskell-aeson-pretty/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-11 06:40:29 UTC (rev 166020)
+++ PKGBUILD2016-03-11 06:51:29 UTC (rev 166021)
@@ -5,7 +5,7 @@
 _hkgname=aeson-pretty
 pkgname=haskell-aeson-pretty
 pkgver=0.7.2
-pkgrel=10
+pkgrel=11
 pkgdesc="JSON pretty-printing library and command-line tool."
 url="http://github.com/informatikr/aeson-pretty;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-conduit-extra/repos (6 files)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 07:40:29
  Author: fyan
Revision: 166020

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-conduit-extra/repos/community-staging-i686/
  haskell-conduit-extra/repos/community-staging-i686/PKGBUILD
(from rev 166019, haskell-conduit-extra/trunk/PKGBUILD)
  
haskell-conduit-extra/repos/community-staging-i686/haskell-conduit-extra.install
(from rev 166019, haskell-conduit-extra/trunk/haskell-conduit-extra.install)
  haskell-conduit-extra/repos/community-staging-x86_64/
  haskell-conduit-extra/repos/community-staging-x86_64/PKGBUILD
(from rev 166019, haskell-conduit-extra/trunk/PKGBUILD)
  
haskell-conduit-extra/repos/community-staging-x86_64/haskell-conduit-extra.install
(from rev 166019, haskell-conduit-extra/trunk/haskell-conduit-extra.install)

+
 community-staging-i686/PKGBUILD|   44 +++
 community-staging-i686/haskell-conduit-extra.install   |   18 ++
 community-staging-x86_64/PKGBUILD  |   44 +++
 community-staging-x86_64/haskell-conduit-extra.install |   18 ++
 4 files changed, 124 insertions(+)

Copied: haskell-conduit-extra/repos/community-staging-i686/PKGBUILD (from rev 
166019, haskell-conduit-extra/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-11 06:40:29 UTC (rev 166020)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=conduit-extra
+pkgname=haskell-conduit-extra
+pkgver=1.1.11
+pkgrel=3
+pkgdesc="Batteries included conduit: adapters for common libraries."
+url="http://github.com/snoyberg/conduit;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-attoparsec" "haskell-blaze-builder" 
"haskell-conduit" "haskell-exceptions"
+ "haskell-monad-control" "haskell-network" "haskell-primitive" 
"haskell-resourcet"
+ "haskell-stm" "haskell-streaming-commons" "haskell-text" 
"haskell-transformers-base")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('670009f95b16d74d1ffab5fe7f9e667249384cdddf80b8eda32413e11861ea2f')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-conduit-extra/repos/community-staging-i686/haskell-conduit-extra.install
 (from rev 166019, haskell-conduit-extra/trunk/haskell-conduit-extra.install)
===
--- community-staging-i686/haskell-conduit-extra.install
(rev 0)
+++ community-staging-i686/haskell-conduit-extra.install2016-03-11 
06:40:29 UTC (rev 166020)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-conduit-extra
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-conduit-extra/repos/community-staging-x86_64/PKGBUILD (from rev 
166019, haskell-conduit-extra/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-11 06:40:29 UTC (rev 166020)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+

[arch-commits] Commit in haskell-conduit-extra/trunk (PKGBUILD)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 07:39:44
  Author: fyan
Revision: 166019

upgpkg: haskell-conduit-extra 1.1.11-3

rebuild with conduit-1.2.6.4, http2-1.5.2, scientific-0.3.4.6, 
vector-binary-instances-0.2.3.0

Modified:
  haskell-conduit-extra/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-11 06:18:26 UTC (rev 166018)
+++ PKGBUILD2016-03-11 06:39:44 UTC (rev 166019)
@@ -5,7 +5,7 @@
 _hkgname=conduit-extra
 pkgname=haskell-conduit-extra
 pkgver=1.1.11
-pkgrel=2
+pkgrel=3
 pkgdesc="Batteries included conduit: adapters for common libraries."
 url="http://github.com/snoyberg/conduit;
 license=("MIT")


[arch-commits] Commit in haskell-aeson/repos (6 files)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 07:18:26
  Author: fyan
Revision: 166018

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-aeson/repos/community-staging-i686/
  haskell-aeson/repos/community-staging-i686/PKGBUILD
(from rev 166017, haskell-aeson/trunk/PKGBUILD)
  haskell-aeson/repos/community-staging-i686/haskell-aeson.install
(from rev 166017, haskell-aeson/trunk/haskell-aeson.install)
  haskell-aeson/repos/community-staging-x86_64/
  haskell-aeson/repos/community-staging-x86_64/PKGBUILD
(from rev 166017, haskell-aeson/trunk/PKGBUILD)
  haskell-aeson/repos/community-staging-x86_64/haskell-aeson.install
(from rev 166017, haskell-aeson/trunk/haskell-aeson.install)

+
 community-staging-i686/PKGBUILD|   42 +++
 community-staging-i686/haskell-aeson.install   |   23 
 community-staging-x86_64/PKGBUILD  |   42 +++
 community-staging-x86_64/haskell-aeson.install |   23 
 4 files changed, 130 insertions(+)

Copied: haskell-aeson/repos/community-staging-i686/PKGBUILD (from rev 166017, 
haskell-aeson/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-11 06:18:26 UTC (rev 166018)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+# Contributor: Daniel Micay 
+
+pkgname=haskell-aeson
+_hkgname=aeson
+pkgver=0.11.1.0
+pkgrel=3
+pkgdesc="A JSON parsing and encoding library optimized for ease of use and 
high performance."
+url="https://github.com/bos/aeson;
+license=("GPL")
+arch=('i686' 'x86_64')
+makedepends=('ghc')
+depends=("ghc=7.10.3" 'haskell-attoparsec' 'haskell-fail' 'haskell-semigroups' 
'haskell-unordered-containers'
+ 'haskell-mtl' 'haskell-syb' 'haskell-tagged' 'haskell-vector' 
'haskell-dlist')
+source=("http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz;)
+options=('staticlibs')
+install=$pkgname.install
+md5sums=('e9b168e54ad5814447cf2674f42dbe97')
+
+build() {
+  cd "$srcdir/$_hkgname-$pkgver"
+  runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd "$srcdir/$_hkgname-$pkgver"
+  install -Dm744 register.sh "$pkgdir/usr/share/haskell/$pkgname/register.sh"
+  install -m744 unregister.sh 
"$pkgdir/usr/share/haskell/$pkgname/unregister.sh"
+  install -dm755 "$pkgdir/usr/share/doc/ghc/html/libraries"
+  ln -s /usr/share/doc/$pkgname/html 
"$pkgdir/usr/share/doc/ghc/html/libraries/$_hkgname"
+  runhaskell Setup copy --destdir="$pkgdir"
+  rm -f "$pkgdir/usr/share/doc/$pkgname/LICENSE"
+}

Copied: haskell-aeson/repos/community-staging-i686/haskell-aeson.install (from 
rev 166017, haskell-aeson/trunk/haskell-aeson.install)
===
--- community-staging-i686/haskell-aeson.install
(rev 0)
+++ community-staging-i686/haskell-aeson.install2016-03-11 06:18:26 UTC 
(rev 166018)
@@ -0,0 +1,23 @@
+HS_DIR=usr/share/haskell/haskell-aeson
+
+post_install() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_upgrade() {
+  $HS_DIR/unregister.sh
+}
+
+post_upgrade() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_remove() {
+  $HS_DIR/unregister.sh
+}
+
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-aeson/repos/community-staging-x86_64/PKGBUILD (from rev 166017, 
haskell-aeson/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-11 06:18:26 UTC (rev 166018)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+# Contributor: Daniel Micay 
+
+pkgname=haskell-aeson
+_hkgname=aeson
+pkgver=0.11.1.0
+pkgrel=3
+pkgdesc="A JSON parsing and encoding library optimized for ease of use and 
high performance."
+url="https://github.com/bos/aeson;
+license=("GPL")
+arch=('i686' 'x86_64')
+makedepends=('ghc')
+depends=("ghc=7.10.3" 'haskell-attoparsec' 'haskell-fail' 'haskell-semigroups' 
'haskell-unordered-containers'
+ 'haskell-mtl' 'haskell-syb' 'haskell-tagged' 'haskell-vector' 
'haskell-dlist')

[arch-commits] Commit in haskell-aeson/trunk (PKGBUILD)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 07:17:46
  Author: fyan
Revision: 166017

upgpkg: haskell-aeson 0.11.1.0-3

rebuild with conduit-1.2.6.4, http2-1.5.2, scientific-0.3.4.6, 
vector-binary-instances-0.2.3.0

Modified:
  haskell-aeson/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-11 06:10:08 UTC (rev 166016)
+++ PKGBUILD2016-03-11 06:17:46 UTC (rev 166017)
@@ -6,7 +6,7 @@
 pkgname=haskell-aeson
 _hkgname=aeson
 pkgver=0.11.1.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A JSON parsing and encoding library optimized for ease of use and 
high performance."
 url="https://github.com/bos/aeson;
 license=("GPL")


[arch-commits] Commit in haskell-conduit/repos (6 files)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 07:10:08
  Author: fyan
Revision: 166016

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-conduit/repos/community-staging-i686/
  haskell-conduit/repos/community-staging-i686/PKGBUILD
(from rev 166015, haskell-conduit/trunk/PKGBUILD)
  haskell-conduit/repos/community-staging-i686/haskell-conduit.install
(from rev 166015, haskell-conduit/trunk/haskell-conduit.install)
  haskell-conduit/repos/community-staging-x86_64/
  haskell-conduit/repos/community-staging-x86_64/PKGBUILD
(from rev 166015, haskell-conduit/trunk/PKGBUILD)
  haskell-conduit/repos/community-staging-x86_64/haskell-conduit.install
(from rev 166015, haskell-conduit/trunk/haskell-conduit.install)

--+
 community-staging-i686/PKGBUILD  |   43 +
 community-staging-i686/haskell-conduit.install   |   18 
 community-staging-x86_64/PKGBUILD|   43 +
 community-staging-x86_64/haskell-conduit.install |   18 
 4 files changed, 122 insertions(+)

Copied: haskell-conduit/repos/community-staging-i686/PKGBUILD (from rev 166015, 
haskell-conduit/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-11 06:10:08 UTC (rev 166016)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=conduit
+pkgname=haskell-conduit
+pkgver=1.2.6.4
+pkgrel=1
+pkgdesc="Streaming data processing library."
+url="http://github.com/snoyberg/conduit;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-exceptions" "haskell-lifted-base" 
"haskell-mmorph"
+ "haskell-mtl" "haskell-resourcet" "haskell-transformers-base")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('1fc5e407580ebfa8196f714928a5362ce215f916b96bbf5ab15c17b0b47573f3')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-conduit/repos/community-staging-i686/haskell-conduit.install 
(from rev 166015, haskell-conduit/trunk/haskell-conduit.install)
===
--- community-staging-i686/haskell-conduit.install  
(rev 0)
+++ community-staging-i686/haskell-conduit.install  2016-03-11 06:10:08 UTC 
(rev 166016)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-conduit
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-conduit/repos/community-staging-x86_64/PKGBUILD (from rev 
166015, haskell-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-11 06:10:08 UTC (rev 166016)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=conduit
+pkgname=haskell-conduit
+pkgver=1.2.6.4
+pkgrel=1
+pkgdesc="Streaming data processing library."
+url="http://github.com/snoyberg/conduit;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-exceptions" "haskell-lifted-base" 
"haskell-mmorph"
+ "haskell-mtl" "haskell-resourcet" "haskell-transformers-base")

[arch-commits] Commit in haskell-conduit/trunk (PKGBUILD)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 07:09:25
  Author: fyan
Revision: 166015

upgpkg: haskell-conduit 1.2.6.4-1

Modified:
  haskell-conduit/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-11 06:01:41 UTC (rev 166014)
+++ PKGBUILD2016-03-11 06:09:25 UTC (rev 166015)
@@ -4,7 +4,7 @@
 
 _hkgname=conduit
 pkgname=haskell-conduit
-pkgver=1.2.6.3
+pkgver=1.2.6.4
 pkgrel=1
 pkgdesc="Streaming data processing library."
 url="http://github.com/snoyberg/conduit;
@@ -15,7 +15,7 @@
 options=('staticlibs')
 
source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
 install="${pkgname}.install"
-sha256sums=('6816ba600c8cbd14ce9fe89f8e101dedf10dda43d2a178576324678c1722d589')
+sha256sums=('1fc5e407580ebfa8196f714928a5362ce215f916b96bbf5ab15c17b0b47573f3')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


[arch-commits] Commit in haskell-attoparsec/repos (6 files)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 07:01:41
  Author: fyan
Revision: 166014

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-attoparsec/repos/community-staging-i686/
  haskell-attoparsec/repos/community-staging-i686/PKGBUILD
(from rev 166013, haskell-attoparsec/trunk/PKGBUILD)
  haskell-attoparsec/repos/community-staging-i686/haskell-attoparsec.install
(from rev 166013, haskell-attoparsec/trunk/haskell-attoparsec.install)
  haskell-attoparsec/repos/community-staging-x86_64/
  haskell-attoparsec/repos/community-staging-x86_64/PKGBUILD
(from rev 166013, haskell-attoparsec/trunk/PKGBUILD)
  haskell-attoparsec/repos/community-staging-x86_64/haskell-attoparsec.install
(from rev 166013, haskell-attoparsec/trunk/haskell-attoparsec.install)

-+
 community-staging-i686/PKGBUILD |   43 ++
 community-staging-i686/haskell-attoparsec.install   |   18 +++
 community-staging-x86_64/PKGBUILD   |   43 ++
 community-staging-x86_64/haskell-attoparsec.install |   18 +++
 4 files changed, 122 insertions(+)

Copied: haskell-attoparsec/repos/community-staging-i686/PKGBUILD (from rev 
166013, haskell-attoparsec/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-11 06:01:41 UTC (rev 166014)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=attoparsec
+pkgname=haskell-attoparsec
+pkgver=0.13.0.1
+pkgrel=10
+pkgdesc="Fast combinator parsing for bytestrings and text"
+url="https://github.com/bos/attoparsec;
+license=("BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-scientific" "haskell-text")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('ce880acb45142eafd872e01d9af57d8dbb95c9f2b9a27f01ca9912ba4e9ef932')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-developer
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-attoparsec/repos/community-staging-i686/haskell-attoparsec.install 
(from rev 166013, haskell-attoparsec/trunk/haskell-attoparsec.install)
===
--- community-staging-i686/haskell-attoparsec.install   
(rev 0)
+++ community-staging-i686/haskell-attoparsec.install   2016-03-11 06:01:41 UTC 
(rev 166014)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-attoparsec
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-attoparsec/repos/community-staging-x86_64/PKGBUILD (from rev 
166013, haskell-attoparsec/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-11 06:01:41 UTC (rev 166014)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=attoparsec
+pkgname=haskell-attoparsec
+pkgver=0.13.0.1
+pkgrel=10
+pkgdesc="Fast combinator parsing for bytestrings and text"
+url="https://github.com/bos/attoparsec;
+license=("BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-scientific" "haskell-text")
+options=('staticlibs')

[arch-commits] Commit in haskell-attoparsec/trunk (PKGBUILD)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 07:00:57
  Author: fyan
Revision: 166013

upgpkg: haskell-attoparsec 0.13.0.1-10

rebuild with conduit-1.2.6.4, http2-1.5.2, scientific-0.3.4.6, 
vector-binary-instances-0.2.3.0

Modified:
  haskell-attoparsec/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-11 05:54:13 UTC (rev 166012)
+++ PKGBUILD2016-03-11 06:00:57 UTC (rev 166013)
@@ -5,7 +5,7 @@
 _hkgname=attoparsec
 pkgname=haskell-attoparsec
 pkgver=0.13.0.1
-pkgrel=9
+pkgrel=10
 pkgdesc="Fast combinator parsing for bytestrings and text"
 url="https://github.com/bos/attoparsec;
 license=("BSD3")


[arch-commits] Commit in haskell-scientific/repos (6 files)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 06:54:13
  Author: fyan
Revision: 166012

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-scientific/repos/community-staging-i686/
  haskell-scientific/repos/community-staging-i686/PKGBUILD
(from rev 166011, haskell-scientific/trunk/PKGBUILD)
  haskell-scientific/repos/community-staging-i686/haskell-scientific.install
(from rev 166011, haskell-scientific/trunk/haskell-scientific.install)
  haskell-scientific/repos/community-staging-x86_64/
  haskell-scientific/repos/community-staging-x86_64/PKGBUILD
(from rev 166011, haskell-scientific/trunk/PKGBUILD)
  haskell-scientific/repos/community-staging-x86_64/haskell-scientific.install
(from rev 166011, haskell-scientific/trunk/haskell-scientific.install)

-+
 community-staging-i686/PKGBUILD |   43 ++
 community-staging-i686/haskell-scientific.install   |   18 +++
 community-staging-x86_64/PKGBUILD   |   43 ++
 community-staging-x86_64/haskell-scientific.install |   18 +++
 4 files changed, 122 insertions(+)

Copied: haskell-scientific/repos/community-staging-i686/PKGBUILD (from rev 
166011, haskell-scientific/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-11 05:54:13 UTC (rev 166012)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=scientific
+pkgname=haskell-scientific
+pkgver=0.3.4.6
+pkgrel=1
+pkgdesc="Numbers represented using scientific notation"
+url="https://github.com/basvandijk/scientific;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-hashable" "haskell-text" "haskell-vector")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('bdd15c72b379ceaef5f30d7113e6971a47090a285f46d1d44528e328061df382')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-integer-simple -fbytestring-builder
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-scientific/repos/community-staging-i686/haskell-scientific.install 
(from rev 166011, haskell-scientific/trunk/haskell-scientific.install)
===
--- community-staging-i686/haskell-scientific.install   
(rev 0)
+++ community-staging-i686/haskell-scientific.install   2016-03-11 05:54:13 UTC 
(rev 166012)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-scientific
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
\ No newline at end of file

Copied: haskell-scientific/repos/community-staging-x86_64/PKGBUILD (from rev 
166011, haskell-scientific/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-11 05:54:13 UTC (rev 166012)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=scientific
+pkgname=haskell-scientific
+pkgver=0.3.4.6
+pkgrel=1
+pkgdesc="Numbers represented using scientific notation"
+url="https://github.com/basvandijk/scientific;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" 

[arch-commits] Commit in haskell-scientific/trunk (PKGBUILD)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 06:53:29
  Author: fyan
Revision: 166011

upgpkg: haskell-scientific 0.3.4.6-1

Modified:
  haskell-scientific/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-11 04:44:46 UTC (rev 166010)
+++ PKGBUILD2016-03-11 05:53:29 UTC (rev 166011)
@@ -4,7 +4,7 @@
 
 _hkgname=scientific
 pkgname=haskell-scientific
-pkgver=0.3.4.5
+pkgver=0.3.4.6
 pkgrel=1
 pkgdesc="Numbers represented using scientific notation"
 url="https://github.com/basvandijk/scientific;
@@ -14,7 +14,7 @@
 options=('staticlibs')
 
source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
 install="${pkgname}.install"
-sha256sums=('77d5b10a2ec8366e0a8ede82a5ba4079c4d76aab6e1ee9a7abc0c3ef37748906')
+sha256sums=('bdd15c72b379ceaef5f30d7113e6971a47090a285f46d1d44528e328061df382')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


[arch-commits] Commit in you-get/repos/community-any (PKGBUILD PKGBUILD)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 05:44:46
  Author: fyan
Revision: 166010

archrelease: copy trunk to community-any

Added:
  you-get/repos/community-any/PKGBUILD
(from rev 166009, you-get/trunk/PKGBUILD)
Deleted:
  you-get/repos/community-any/PKGBUILD

--+
 PKGBUILD |   62 ++---
 1 file changed, 31 insertions(+), 31 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-11 04:44:17 UTC (rev 166009)
+++ PKGBUILD2016-03-11 04:44:46 UTC (rev 166010)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=you-get
-pkgver=0.4.324
-pkgrel=1
-pkgdesc="A YouTube/Youku/Niconico video downloader written in Python 3."
-url="http://www.soimort.org/you-get/;
-arch=('any')
-license=('MIT')
-depends=('python-setuptools')
-makedepends=('git')
-source=("git+https://github.com/soimort/you-get.git#tag=v$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd "${srcdir}"/${pkgname}
-  python setup.py build
-}
-
-check() {
-  cd "${srcdir}"/${pkgname}
-  LC_CTYPE=en_US.UTF-8 python setup.py test
-}
-
-package() {
-  cd "${srcdir}"/${pkgname}
-  python setup.py install --root="$pkgdir"
-
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-}

Copied: you-get/repos/community-any/PKGBUILD (from rev 166009, 
you-get/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-11 04:44:46 UTC (rev 166010)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=you-get
+pkgver=0.4.330
+pkgrel=1
+pkgdesc="A YouTube/Youku/Niconico video downloader written in Python 3."
+url="http://www.soimort.org/you-get/;
+arch=('any')
+license=('MIT')
+depends=('python-setuptools')
+makedepends=('git')
+source=("git+https://github.com/soimort/you-get.git#tag=v$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/$pkgname
+  LC_CTYPE=en_US.UTF-8 python setup.py test
+}
+
+package() {
+  cd "$srcdir"/$pkgname
+  python setup.py install --root="$pkgdir"
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}


[arch-commits] Commit in you-get/trunk (PKGBUILD)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 05:44:17
  Author: fyan
Revision: 166009

upgpkg: you-get 0.4.330-1

Modified:
  you-get/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-11 04:38:13 UTC (rev 166008)
+++ PKGBUILD2016-03-11 04:44:17 UTC (rev 166009)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=you-get
-pkgver=0.4.324
+pkgver=0.4.330
 pkgrel=1
 pkgdesc="A YouTube/Youku/Niconico video downloader written in Python 3."
 url="http://www.soimort.org/you-get/;
@@ -14,18 +14,18 @@
 sha256sums=('SKIP')
 
 build() {
-  cd "${srcdir}"/${pkgname}
+  cd "$srcdir"/$pkgname
   python setup.py build
 }
 
 check() {
-  cd "${srcdir}"/${pkgname}
+  cd "$srcdir"/$pkgname
   LC_CTYPE=en_US.UTF-8 python setup.py test
 }
 
 package() {
-  cd "${srcdir}"/${pkgname}
+  cd "$srcdir"/$pkgname
   python setup.py install --root="$pkgdir"
 
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
 }


[arch-commits] Commit in python-mako/repos/extra-any (PKGBUILD PKGBUILD)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 05:42:41
  Author: fyan
Revision: 261316

archrelease: copy trunk to extra-any

Added:
  python-mako/repos/extra-any/PKGBUILD
(from rev 261315, python-mako/trunk/PKGBUILD)
Deleted:
  python-mako/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  115 ++---
 1 file changed, 58 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-11 04:42:11 UTC (rev 261315)
+++ PKGBUILD2016-03-11 04:42:41 UTC (rev 261316)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=('python-mako' 'python2-mako')
-pkgver=1.0.3
-pkgrel=1
-pkgdesc="Hyperfast and lightweight templating for the Python2 platform"
-arch=('any')
-url="http://www.makotemplates.org/;
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-markupsafe' 
'python2-markupsafe'
- 'python-beaker' 'python2-beaker')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock'
-  'python-babel' 'python2-babel' 'python-pygments' 
'python2-pygments'
-  'python-dogpile.cache' 'python2-dogpile.cache')
-source=(https://pypi.python.org/packages/source/M/Mako/Mako-$pkgver.tar.gz{,.asc})
-sha1sums=('d68636bc4b2d4c4030c936d88c4e05a8080b4463'
-  'SKIP')
-validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')  # Michael Bayer
-
-prepare() {
-cp -a Mako-$pkgver{,-py2}
-}
-
-build() {
-cd "$srcdir/Mako-$pkgver"
-python setup.py build
-
-cd "$srcdir/Mako-$pkgver-py2"
-python2 setup.py build
-}
-
-check() {
-cd "$srcdir/Mako-$pkgver"
-python setup.py test
-
-cd "$srcdir/Mako-$pkgver-py2"
-python2 setup.py test
-}
-
-package_python-mako() {
-depends=('python-markupsafe' 'python-beaker' 'python-setuptools')
-
-cd Mako-$pkgver
-python setup.py install --root="$pkgdir" --optimize=1
-install -D LICENSE "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-package_python2-mako() {
-depends=('python2-markupsafe' 'python2-beaker' 'python2-setuptools')
-
-cd Mako-$pkgver-py2
-python2 setup.py install --root="$pkgdir" --optimize=1
-install -D LICENSE "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-
-mv "$pkgdir/usr/bin/mako-render"{,2}
-}

Copied: python-mako/repos/extra-any/PKGBUILD (from rev 261315, 
python-mako/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-11 04:42:41 UTC (rev 261316)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-mako
+pkgname=('python-mako' 'python2-mako')
+pkgver=1.0.4
+pkgrel=1
+pkgdesc="Hyperfast and lightweight templating for the Python2 platform"
+arch=('any')
+url="http://www.makotemplates.org/;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-markupsafe' 
'python2-markupsafe'
+ 'python-beaker' 'python2-beaker')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-mock' 
'python2-mock'
+  'python-babel' 'python2-babel' 'python-pygments' 
'python2-pygments'
+  'python-dogpile.cache' 'python2-dogpile.cache')
+source=(https://pypi.python.org/packages/source/M/Mako/Mako-$pkgver.tar.gz{,.asc})
+sha1sums=('64f9cadffd5cc264ea91d81df6e24ce660a15836'
+  'SKIP')
+validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')  # Michael Bayer
+
+prepare() {
+  cp -a Mako-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/Mako-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/Mako-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/Mako-$pkgver
+  python setup.py ptr
+
+  cd "$srcdir"/Mako-$pkgver-py2
+  python2 setup.py ptr
+}
+
+package_python-mako() {
+  depends=('python-markupsafe' 'python-beaker' 'python-setuptools')
+
+  cd Mako-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D LICENSE "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}
+
+package_python2-mako() {
+  depends=('python2-markupsafe' 'python2-beaker' 'python2-setuptools')
+
+  cd Mako-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D LICENSE "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+
+  mv "$pkgdir"/usr/bin/mako-render{,2}
+}


[arch-commits] Commit in python-mako/trunk (PKGBUILD)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 05:42:11
  Author: fyan
Revision: 261315

upgpkg: python-mako 1.0.4-1

Modified:
  python-mako/trunk/PKGBUILD

--+
 PKGBUILD |   43 ++-
 1 file changed, 22 insertions(+), 21 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-11 02:27:16 UTC (rev 261314)
+++ PKGBUILD2016-03-11 04:42:11 UTC (rev 261315)
@@ -1,8 +1,9 @@
 # $Id$
 # Maintainer: Felix Yan 
 
+pkgbase=python-mako
 pkgname=('python-mako' 'python2-mako')
-pkgver=1.0.3
+pkgver=1.0.4
 pkgrel=1
 pkgdesc="Hyperfast and lightweight templating for the Python2 platform"
 arch=('any')
@@ -10,48 +11,48 @@
 license=('MIT')
 makedepends=('python-setuptools' 'python2-setuptools' 'python-markupsafe' 
'python2-markupsafe'
  'python-beaker' 'python2-beaker')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock'
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-mock' 
'python2-mock'
   'python-babel' 'python2-babel' 'python-pygments' 
'python2-pygments'
   'python-dogpile.cache' 'python2-dogpile.cache')
 
source=(https://pypi.python.org/packages/source/M/Mako/Mako-$pkgver.tar.gz{,.asc})
-sha1sums=('d68636bc4b2d4c4030c936d88c4e05a8080b4463'
+sha1sums=('64f9cadffd5cc264ea91d81df6e24ce660a15836'
   'SKIP')
 validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')  # Michael Bayer
 
 prepare() {
-cp -a Mako-$pkgver{,-py2}
+  cp -a Mako-$pkgver{,-py2}
 }
 
 build() {
-cd "$srcdir/Mako-$pkgver"
-python setup.py build
+  cd "$srcdir"/Mako-$pkgver
+  python setup.py build
 
-cd "$srcdir/Mako-$pkgver-py2"
-python2 setup.py build
+  cd "$srcdir"/Mako-$pkgver-py2
+  python2 setup.py build
 }
 
 check() {
-cd "$srcdir/Mako-$pkgver"
-python setup.py test
+  cd "$srcdir"/Mako-$pkgver
+  python setup.py ptr
 
-cd "$srcdir/Mako-$pkgver-py2"
-python2 setup.py test
+  cd "$srcdir"/Mako-$pkgver-py2
+  python2 setup.py ptr
 }
 
 package_python-mako() {
-depends=('python-markupsafe' 'python-beaker' 'python-setuptools')
+  depends=('python-markupsafe' 'python-beaker' 'python-setuptools')
 
-cd Mako-$pkgver
-python setup.py install --root="$pkgdir" --optimize=1
-install -D LICENSE "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+  cd Mako-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D LICENSE "$pkgdir"/usr/share/licenses/$pkgname/COPYING
 }
 
 package_python2-mako() {
-depends=('python2-markupsafe' 'python2-beaker' 'python2-setuptools')
+  depends=('python2-markupsafe' 'python2-beaker' 'python2-setuptools')
 
-cd Mako-$pkgver-py2
-python2 setup.py install --root="$pkgdir" --optimize=1
-install -D LICENSE "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+  cd Mako-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D LICENSE "$pkgdir"/usr/share/licenses/$pkgname/COPYING
 
-mv "$pkgdir/usr/bin/mako-render"{,2}
+  mv "$pkgdir"/usr/bin/mako-render{,2}
 }


[arch-commits] Commit in npm/repos/community-any (PKGBUILD PKGBUILD)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 05:38:13
  Author: fyan
Revision: 166008

archrelease: copy trunk to community-any

Added:
  npm/repos/community-any/PKGBUILD
(from rev 166007, npm/trunk/PKGBUILD)
Deleted:
  npm/repos/community-any/PKGBUILD

--+
 PKGBUILD |  110 ++---
 1 file changed, 55 insertions(+), 55 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-11 04:37:43 UTC (rev 166007)
+++ PKGBUILD2016-03-11 04:38:13 UTC (rev 166008)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=npm
-pkgver=3.8.0
-pkgrel=1
-pkgdesc='A package manager for javascript'
-arch=('any')
-url='https://www.npmjs.com/'
-license=('custom:Artistic')
-depends=('nodejs' 'semver')
-provides=('nodejs-node-gyp')
-makedepends=('git' 'procps-ng')
-optdepends=('python2: for node-gyp')
-options=('!emptydirs')
-source=("git+https://github.com/npm/npm.git#tag=v$pkgver;)
-md5sums=('SKIP')
-
-build() {
-  cd npm
-  make
-}
-
-package() {
-  cd npm
-  make NPMOPTS="--prefix=\"$pkgdir/usr\"" install
-
-  # Why 777? :/
-  chmod -R u=rwX,go=rX "$pkgdir"
-  
-  # Fix files owned by nobody:
-  chown -R root "$pkgdir/usr/lib/node_modules" 
-
-  # Fix wrong symlinks
-  for _dir in man1 man5 man7; do
-rm -f "$pkgdir"/usr/share/man/$_dir/*
-cd "$pkgdir"/usr/lib/node_modules/npm/man/$_dir
-for _file in *; do
-  ln -s /usr/lib/node_modules/npm/man/$_dir/$_file 
"$pkgdir"/usr/share/man/$_dir/
-done
-  done
-  
-  # Provide node-gyp executable
-  cp "$pkgdir"/usr/lib/node_modules/npm/bin/node-gyp-bin/node-gyp 
"$pkgdir"/usr/bin/node-gyp
-  sed -i 's|"`dirname "$0"`/../../|"`dirname "$0"`/../lib/node_modules/npm/|' 
"$pkgdir"/usr/bin/node-gyp
-
-  # Experimental dedup
-  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
-  for dep in semver; do
-rm -r $dep;
-node "$srcdir"/npm/cli.js link $dep;
-  done
-  
-  install -Dm644 "$srcdir/npm/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: npm/repos/community-any/PKGBUILD (from rev 166007, npm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-11 04:38:13 UTC (rev 166008)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=npm
+pkgver=3.8.1
+pkgrel=1
+pkgdesc='A package manager for javascript'
+arch=('any')
+url='https://www.npmjs.com/'
+license=('custom:Artistic')
+depends=('nodejs' 'semver')
+provides=('nodejs-node-gyp')
+makedepends=('git' 'procps-ng')
+optdepends=('python2: for node-gyp')
+options=('!emptydirs')
+source=("git+https://github.com/npm/npm.git#tag=v$pkgver;)
+md5sums=('SKIP')
+
+build() {
+  cd npm
+  make
+}
+
+package() {
+  cd npm
+  make NPMOPTS="--prefix=\"$pkgdir/usr\"" install
+
+  # Why 777? :/
+  chmod -R u=rwX,go=rX "$pkgdir"
+  
+  # Fix files owned by nobody:
+  chown -R root "$pkgdir/usr/lib/node_modules" 
+
+  # Fix wrong symlinks
+  for _dir in man1 man5 man7; do
+rm -f "$pkgdir"/usr/share/man/$_dir/*
+cd "$pkgdir"/usr/lib/node_modules/npm/man/$_dir
+for _file in *; do
+  ln -s /usr/lib/node_modules/npm/man/$_dir/$_file 
"$pkgdir"/usr/share/man/$_dir/
+done
+  done
+  
+  # Provide node-gyp executable
+  cp "$pkgdir"/usr/lib/node_modules/npm/bin/node-gyp-bin/node-gyp 
"$pkgdir"/usr/bin/node-gyp
+  sed -i 's|"`dirname "$0"`/../../|"`dirname "$0"`/../lib/node_modules/npm/|' 
"$pkgdir"/usr/bin/node-gyp
+
+  # Experimental dedup
+  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
+  for dep in semver; do
+rm -r $dep;
+node "$srcdir"/npm/cli.js link $dep;
+  done
+  
+  install -Dm644 "$srcdir/npm/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in npm/trunk (PKGBUILD)

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 05:37:43
  Author: fyan
Revision: 166007

upgpkg: npm 3.8.1-1

Modified:
  npm/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-10 21:56:28 UTC (rev 166006)
+++ PKGBUILD2016-03-11 04:37:43 UTC (rev 166007)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=npm
-pkgver=3.8.0
+pkgver=3.8.1
 pkgrel=1
 pkgdesc='A package manager for javascript'
 arch=('any')


[arch-commits] Commit in python-virtualenv/trunk (PKGBUILD)

2016-03-10 Thread Dan McGee
Date: Friday, March 11, 2016 @ 03:27:08
  Author: dan
Revision: 261313

upgpkg: python-virtualenv 15.0.0-1

Modified:
  python-virtualenv/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-11 02:24:52 UTC (rev 261312)
+++ PKGBUILD2016-03-11 02:27:08 UTC (rev 261313)
@@ -3,7 +3,7 @@
 # Contributor: Daniele Paolella 
 
 pkgname=('python-virtualenv' 'python2-virtualenv')
-pkgver=14.0.6
+pkgver=15.0.0
 pkgrel=1
 pkgdesc="Virtual Python Environment builder"
 url="https://virtualenv.pypa.io/;
@@ -13,8 +13,8 @@
 replaces=('virtualenv')
 conflicts=('virtualenv')
 
source=("http://pypi.python.org/packages/source/v/virtualenv/virtualenv-$pkgver.tar.gz;)
-md5sums=('a035037925c82990a7659ecf8764bcdb')
-sha256sums=('1ffb6a02d8999e9c97ad8f04b1d2ba44421dfb8f8a98b54aea5c6fdfb53bc526')
+md5sums=('d9652f8d154546926939066e596af83c')
+sha256sums=('70d63fb7e949d07aeb37f6ecc94e8b60671edb15b890aa86dba5dfaf2225dc19')
 
 package_python-virtualenv() {
   depends=('python')


[arch-commits] Commit in python-virtualenv/repos/extra-any (PKGBUILD PKGBUILD)

2016-03-10 Thread Dan McGee
Date: Friday, March 11, 2016 @ 03:27:16
  Author: dan
Revision: 261314

archrelease: copy trunk to extra-any

Added:
  python-virtualenv/repos/extra-any/PKGBUILD
(from rev 261313, python-virtualenv/trunk/PKGBUILD)
Deleted:
  python-virtualenv/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   98 ++---
 1 file changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-11 02:27:08 UTC (rev 261313)
+++ PKGBUILD2016-03-11 02:27:16 UTC (rev 261314)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Dan McGee 
-# Contributor: Daniele Paolella 
-
-pkgname=('python-virtualenv' 'python2-virtualenv')
-pkgver=14.0.6
-pkgrel=1
-pkgdesc="Virtual Python Environment builder"
-url="https://virtualenv.pypa.io/;
-arch=('any')
-license=('MIT')
-makedepends=('python' 'python2')
-replaces=('virtualenv')
-conflicts=('virtualenv')
-source=("http://pypi.python.org/packages/source/v/virtualenv/virtualenv-$pkgver.tar.gz;)
-md5sums=('a035037925c82990a7659ecf8764bcdb')
-sha256sums=('1ffb6a02d8999e9c97ad8f04b1d2ba44421dfb8f8a98b54aea5c6fdfb53bc526')
-
-package_python-virtualenv() {
-  depends=('python')
-
-  cd "$srcdir/virtualenv-$pkgver"
-  LANG='en_US.UTF-8' python3 setup.py build
-  LANG='en_US.UTF-8' python3 setup.py install --prefix=/usr --root="$pkgdir"
-
-  # link to a version with 3 suffix as well
-  ln "$pkgdir/usr/bin/virtualenv" "$pkgdir/usr/bin/virtualenv3"
-
-  install -D -m644 LICENSE.txt \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-virtualenv() {
-  depends=('python2')
-
-  cd "$srcdir/virtualenv-$pkgver"
-
-  # should report this upstream as still not fixed...
-  sed -i "s|#!/usr/bin/env python$|#!/usr/bin/env python2|" virtualenv.py
-
-  python2 setup.py build
-  python2 setup.py install --prefix=/usr --root="$pkgdir"
-
-  # move this "old" version out of the way
-  mv "$pkgdir/usr/bin/virtualenv" "$pkgdir/usr/bin/virtualenv2"
-
-  install -D -m644 LICENSE.txt \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-virtualenv/repos/extra-any/PKGBUILD (from rev 261313, 
python-virtualenv/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-11 02:27:16 UTC (rev 261314)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Dan McGee 
+# Contributor: Daniele Paolella 
+
+pkgname=('python-virtualenv' 'python2-virtualenv')
+pkgver=15.0.0
+pkgrel=1
+pkgdesc="Virtual Python Environment builder"
+url="https://virtualenv.pypa.io/;
+arch=('any')
+license=('MIT')
+makedepends=('python' 'python2')
+replaces=('virtualenv')
+conflicts=('virtualenv')
+source=("http://pypi.python.org/packages/source/v/virtualenv/virtualenv-$pkgver.tar.gz;)
+md5sums=('d9652f8d154546926939066e596af83c')
+sha256sums=('70d63fb7e949d07aeb37f6ecc94e8b60671edb15b890aa86dba5dfaf2225dc19')
+
+package_python-virtualenv() {
+  depends=('python')
+
+  cd "$srcdir/virtualenv-$pkgver"
+  LANG='en_US.UTF-8' python3 setup.py build
+  LANG='en_US.UTF-8' python3 setup.py install --prefix=/usr --root="$pkgdir"
+
+  # link to a version with 3 suffix as well
+  ln "$pkgdir/usr/bin/virtualenv" "$pkgdir/usr/bin/virtualenv3"
+
+  install -D -m644 LICENSE.txt \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-virtualenv() {
+  depends=('python2')
+
+  cd "$srcdir/virtualenv-$pkgver"
+
+  # should report this upstream as still not fixed...
+  sed -i "s|#!/usr/bin/env python$|#!/usr/bin/env python2|" virtualenv.py
+
+  python2 setup.py build
+  python2 setup.py install --prefix=/usr --root="$pkgdir"
+
+  # move this "old" version out of the way
+  mv "$pkgdir/usr/bin/virtualenv" "$pkgdir/usr/bin/virtualenv2"
+
+  install -D -m644 LICENSE.txt \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in python-pip/repos/extra-any (PKGBUILD PKGBUILD)

2016-03-10 Thread Dan McGee
Date: Friday, March 11, 2016 @ 03:24:52
  Author: dan
Revision: 261312

archrelease: copy trunk to extra-any

Added:
  python-pip/repos/extra-any/PKGBUILD
(from rev 261311, python-pip/trunk/PKGBUILD)
Deleted:
  python-pip/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   88 ++---
 1 file changed, 44 insertions(+), 44 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-11 02:24:45 UTC (rev 261311)
+++ PKGBUILD2016-03-11 02:24:52 UTC (rev 261312)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Dan McGee 
-# Contributor: Sebastien Binet 
-
-pkgname=('python-pip' 'python2-pip')
-pkgver=8.0.3
-pkgrel=1
-pkgdesc="The PyPA recommended tool for installing Python packages"
-url="https://pip.pypa.io/;
-arch=('any')
-license=('MIT')
-makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
-source=(http://pypi.python.org/packages/source/p/pip/pip-${pkgver}.tar.gz)
-md5sums=('8f000fc101e47f4f199fa29df1e0b0df')
-sha256sums=('30f98b66f3fe1069c529a491597d34a1c224a68640c82caf2ade5f88aa1405e8')
-
-package_python-pip() {
-  depends=('python' 'python-setuptools')
-
-  cd "$srcdir/pip-$pkgver"
-  python setup.py build
-  python setup.py install --prefix=/usr --root="$pkgdir"
-
-  install -D -m644 LICENSE.txt \
- "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-pip() {
-  depends=('python2' 'python2-setuptools')
-  conflicts=('python-pyinstall')
-  replaces=('python-pyinstall')
-
-  cd "$srcdir/pip-$pkgver"
-  python2 setup.py build
-  python2 setup.py install --prefix=/usr --root="$pkgdir"
-  
-  mv "$pkgdir/usr/bin/pip" "$pkgdir/usr/bin/pip2"
-  sed -i "s|#!/usr/bin/env python$|#!/usr/bin/env python2|" \
-${pkgdir}/usr/lib/python2.7/site-packages/pip/__init__.py
-  python2 -m compileall 
${pkgdir}/usr/lib/python2.7/site-packages/pip/__init__.py
-  
-  install -D -m644 LICENSE.txt \
- "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-pip/repos/extra-any/PKGBUILD (from rev 261311, 
python-pip/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-11 02:24:52 UTC (rev 261312)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Dan McGee 
+# Contributor: Sebastien Binet 
+
+pkgname=('python-pip' 'python2-pip')
+pkgver=8.1.0
+pkgrel=1
+pkgdesc="The PyPA recommended tool for installing Python packages"
+url="https://pip.pypa.io/;
+arch=('any')
+license=('MIT')
+makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
+source=(http://pypi.python.org/packages/source/p/pip/pip-${pkgver}.tar.gz)
+md5sums=('e9c3844db343f47d16040b32ad9072be')
+sha256sums=('d8faa75dd7d0737b16d50cd0a56dc91a631c79ecfd8d38b80f6ee929ec82043e')
+
+package_python-pip() {
+  depends=('python' 'python-setuptools')
+
+  cd "$srcdir/pip-$pkgver"
+  python setup.py build
+  python setup.py install --prefix=/usr --root="$pkgdir"
+
+  install -D -m644 LICENSE.txt \
+ "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-pip() {
+  depends=('python2' 'python2-setuptools')
+  conflicts=('python-pyinstall')
+  replaces=('python-pyinstall')
+
+  cd "$srcdir/pip-$pkgver"
+  python2 setup.py build
+  python2 setup.py install --prefix=/usr --root="$pkgdir"
+  
+  mv "$pkgdir/usr/bin/pip" "$pkgdir/usr/bin/pip2"
+  sed -i "s|#!/usr/bin/env python$|#!/usr/bin/env python2|" \
+${pkgdir}/usr/lib/python2.7/site-packages/pip/__init__.py
+  python2 -m compileall 
${pkgdir}/usr/lib/python2.7/site-packages/pip/__init__.py
+  
+  install -D -m644 LICENSE.txt \
+ "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in python-pip/trunk (PKGBUILD)

2016-03-10 Thread Dan McGee
Date: Friday, March 11, 2016 @ 03:24:45
  Author: dan
Revision: 261311

upgpkg: python-pip 8.1.0-1

Modified:
  python-pip/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-11 02:22:52 UTC (rev 261310)
+++ PKGBUILD2016-03-11 02:24:45 UTC (rev 261311)
@@ -3,7 +3,7 @@
 # Contributor: Sebastien Binet 
 
 pkgname=('python-pip' 'python2-pip')
-pkgver=8.0.3
+pkgver=8.1.0
 pkgrel=1
 pkgdesc="The PyPA recommended tool for installing Python packages"
 url="https://pip.pypa.io/;
@@ -11,8 +11,8 @@
 license=('MIT')
 makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
 source=(http://pypi.python.org/packages/source/p/pip/pip-${pkgver}.tar.gz)
-md5sums=('8f000fc101e47f4f199fa29df1e0b0df')
-sha256sums=('30f98b66f3fe1069c529a491597d34a1c224a68640c82caf2ade5f88aa1405e8')
+md5sums=('e9c3844db343f47d16040b32ad9072be')
+sha256sums=('d8faa75dd7d0737b16d50cd0a56dc91a631c79ecfd8d38b80f6ee929ec82043e')
 
 package_python-pip() {
   depends=('python' 'python-setuptools')


[arch-commits] Commit in django/repos/extra-any (PKGBUILD PKGBUILD)

2016-03-10 Thread Dan McGee
Date: Friday, March 11, 2016 @ 03:22:52
  Author: dan
Revision: 261310

archrelease: copy trunk to extra-any

Added:
  django/repos/extra-any/PKGBUILD
(from rev 261309, django/trunk/PKGBUILD)
Deleted:
  django/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  140 ++---
 1 file changed, 70 insertions(+), 70 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-11 02:22:43 UTC (rev 261309)
+++ PKGBUILD2016-03-11 02:22:52 UTC (rev 261310)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Dan McGee 
-# Contributor: Shahar Weiss 
-
-pkgbase=django
-pkgname=('python-django' 'python2-django')
-pkgver=1.9.2
-pkgrel=1
-pkgdesc="A high-level Python Web framework that encourages rapid development 
and clean design"
-arch=('any')
-license=('BSD')
-url="http://www.djangoproject.com/;
-makedepends=('python2' 'python2-setuptools' 'python' 'python-setuptools')
-source=("https://www.djangoproject.com/m/releases/${pkgver:0:3}/Django-$pkgver.tar.gz;)
-md5sums=('ee90280973d435a1a6aa01b453b50cd1')
-sha256sums=('7a233322eeb35da5fd8315f9e5dd48f2171de43ca2cfb11b138607daa4bf8a2f')
-
-prepare() {
-  cp -a "$srcdir/Django-$pkgver" "$srcdir/Django-$pkgver-python2"
-
-  find "$srcdir/Django-$pkgver-python2" -name '*.py' | \
-xargs sed -i "s|#!/usr/bin/env python$|#!/usr/bin/env python2|"
-}
-
-build() {
-  cd "$srcdir/Django-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/Django-$pkgver-python2"
-  python2 setup.py build
-}
-
-package_python-django() {
-  depends=('python' 'python-setuptools')
-  optdepends=('python-psycopg2: for PostgreSQL backend')
-  cd "$srcdir/Django-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  ln -s django-admin.py "$pkgdir"/usr/bin/django-admin3.py
-  ln -s django-admin "$pkgdir"/usr/bin/django-admin3
-  install -Dm644 extras/django_bash_completion \
-"$pkgdir"/usr/share/bash-completion/completions/django-admin.py
-  ln -s django-admin.py \
-"$pkgdir"/usr/share/bash-completion/completions/django-admin
-  ln -s django-admin.py \
-"$pkgdir"/usr/share/bash-completion/completions/manage.py
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-django() {
-  depends=('python2' 'python2-setuptools')
-  optdepends=('mysql-python: for MySQL backend'
-  'python2-psycopg2: for PostgreSQL backend')
-  replaces=('django')
-  conflicts=('django')
-  cd "$srcdir/Django-$pkgver-python2"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-
-  mv "$pkgdir"/usr/bin/django-admin.py "$pkgdir"/usr/bin/django-admin2.py
-  mv "$pkgdir"/usr/bin/django-admin "$pkgdir"/usr/bin/django-admin2
-  # TODO: this probably won't work due to the `complete` command within not
-  # knowing about modified our exectuable names
-  install -Dm644 extras/django_bash_completion \
-"$pkgdir"/usr/share/bash-completion/completions/django-admin2.py
-  ln -s django-admin2.py \
-"$pkgdir"/usr/share/bash-completion/completions/django-admin2
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: django/repos/extra-any/PKGBUILD (from rev 261309, django/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-11 02:22:52 UTC (rev 261310)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Dan McGee 
+# Contributor: Shahar Weiss 
+
+pkgbase=django
+pkgname=('python-django' 'python2-django')
+pkgver=1.9.4
+pkgrel=1
+pkgdesc="A high-level Python Web framework that encourages rapid development 
and clean design"
+arch=('any')
+license=('BSD')
+url="http://www.djangoproject.com/;
+makedepends=('python2' 'python2-setuptools' 'python' 'python-setuptools')
+source=("https://www.djangoproject.com/m/releases/${pkgver:0:3}/Django-$pkgver.tar.gz;)
+md5sums=('e8d389532e248174a9859f2987be6a04')
+sha256sums=('ada8e7aa697e47c94b5660291cc0a14bb555385e0898da0a119d8f4b648fbde9')
+
+prepare() {
+  cp -a "$srcdir/Django-$pkgver" "$srcdir/Django-$pkgver-python2"
+
+  find "$srcdir/Django-$pkgver-python2" -name '*.py' | \
+xargs sed -i "s|#!/usr/bin/env python$|#!/usr/bin/env python2|"
+}
+
+build() {
+  cd "$srcdir/Django-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/Django-$pkgver-python2"
+  python2 setup.py build
+}
+
+package_python-django() {
+  depends=('python' 'python-setuptools')
+  optdepends=('python-psycopg2: for PostgreSQL backend')
+  cd "$srcdir/Django-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  ln -s django-admin.py "$pkgdir"/usr/bin/django-admin3.py
+  ln -s django-admin "$pkgdir"/usr/bin/django-admin3
+  install -Dm644 extras/django_bash_completion \
+"$pkgdir"/usr/share/bash-completion/completions/django-admin.py
+  ln -s django-admin.py \
+

[arch-commits] Commit in django/trunk (PKGBUILD)

2016-03-10 Thread Dan McGee
Date: Friday, March 11, 2016 @ 03:22:43
  Author: dan
Revision: 261309

upgpkg: django 1.9.4-1

Modified:
  django/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-10 22:04:00 UTC (rev 261308)
+++ PKGBUILD2016-03-11 02:22:43 UTC (rev 261309)
@@ -4,7 +4,7 @@
 
 pkgbase=django
 pkgname=('python-django' 'python2-django')
-pkgver=1.9.2
+pkgver=1.9.4
 pkgrel=1
 pkgdesc="A high-level Python Web framework that encourages rapid development 
and clean design"
 arch=('any')
@@ -12,8 +12,8 @@
 url="http://www.djangoproject.com/;
 makedepends=('python2' 'python2-setuptools' 'python' 'python-setuptools')
 
source=("https://www.djangoproject.com/m/releases/${pkgver:0:3}/Django-$pkgver.tar.gz;)
-md5sums=('ee90280973d435a1a6aa01b453b50cd1')
-sha256sums=('7a233322eeb35da5fd8315f9e5dd48f2171de43ca2cfb11b138607daa4bf8a2f')
+md5sums=('e8d389532e248174a9859f2987be6a04')
+sha256sums=('ada8e7aa697e47c94b5660291cc0a14bb555385e0898da0a119d8f4b648fbde9')
 
 prepare() {
   cp -a "$srcdir/Django-$pkgver" "$srcdir/Django-$pkgver-python2"


[arch-commits] Commit in gtk3/repos (16 files)

2016-03-10 Thread Jan Steffens
Date: Thursday, March 10, 2016 @ 23:04:00
  Author: heftig
Revision: 261308

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  gtk3/repos/extra-i686/PKGBUILD
(from rev 261307, gtk3/trunk/PKGBUILD)
  gtk3/repos/extra-i686/gtk-update-icon-cache.install
(from rev 261307, gtk3/trunk/gtk-update-icon-cache.install)
  gtk3/repos/extra-i686/gtk3.install
(from rev 261307, gtk3/trunk/gtk3.install)
  gtk3/repos/extra-i686/settings.ini
(from rev 261307, gtk3/trunk/settings.ini)
  gtk3/repos/extra-x86_64/PKGBUILD
(from rev 261307, gtk3/trunk/PKGBUILD)
  gtk3/repos/extra-x86_64/gtk-update-icon-cache.install
(from rev 261307, gtk3/trunk/gtk-update-icon-cache.install)
  gtk3/repos/extra-x86_64/gtk3.install
(from rev 261307, gtk3/trunk/gtk3.install)
  gtk3/repos/extra-x86_64/settings.ini
(from rev 261307, gtk3/trunk/settings.ini)
Deleted:
  gtk3/repos/extra-i686/PKGBUILD
  gtk3/repos/extra-i686/gtk-update-icon-cache.install
  gtk3/repos/extra-i686/gtk3.install
  gtk3/repos/extra-i686/settings.ini
  gtk3/repos/extra-x86_64/PKGBUILD
  gtk3/repos/extra-x86_64/gtk-update-icon-cache.install
  gtk3/repos/extra-x86_64/gtk3.install
  gtk3/repos/extra-x86_64/settings.ini

+
 /PKGBUILD  |  132 +++
 /gtk-update-icon-cache.install |6 +
 /gtk3.install  |   36 +++
 /settings.ini  |8 +
 extra-i686/PKGBUILD|   66 -
 extra-i686/gtk-update-icon-cache.install   |3 
 extra-i686/gtk3.install|   18 ---
 extra-i686/settings.ini|4 
 extra-x86_64/PKGBUILD  |   66 -
 extra-x86_64/gtk-update-icon-cache.install |3 
 extra-x86_64/gtk3.install  |   18 ---
 extra-x86_64/settings.ini  |4 
 12 files changed, 182 insertions(+), 182 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-03-10 21:51:20 UTC (rev 261307)
+++ extra-i686/PKGBUILD 2016-03-10 22:04:00 UTC (rev 261308)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgbase=gtk3
-pkgname=(gtk3 gtk-update-icon-cache)
-pkgver=3.18.8
-pkgrel=1
-pkgdesc="GObject-based multi-platform GUI toolkit"
-arch=(i686 x86_64)
-url="http://www.gtk.org/;
-depends=(atk cairo libcups libxcursor libxinerama libxrandr libxi libepoxy 
gdk-pixbuf2
- libxcomposite libxdamage pango shared-mime-info colord at-spi2-atk 
wayland libxkbcommon
- adwaita-icon-theme json-glib rest librsvg)
-makedepends=(gobject-introspection libcanberra gtk-doc)
-license=(LGPL)
-source=(https://download.gnome.org/sources/gtk+/${pkgver:0:4}/gtk+-$pkgver.tar.xz
-settings.ini)
-sha256sums=('1c53ef1bb55364698f7183ecd185b547f92f4a3a7abfafd531400232e2e052f8'
-'01fc1d81dc82c4a052ac6e25bf9a04e7647267cc3017bc91f9ce3e63e5eb9202')
-
-prepare() {
-cd gtk+-$pkgver
-NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-cd "gtk+-$pkgver"
-
-CXX=/bin/false ./configure --prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---disable-schemas-compile \
---enable-x11-backend \
---enable-broadway-backend \
---enable-wayland-backend
-
-#https://bugzilla.gnome.org/show_bug.cgi?id=655517
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-make
-}
-
-package_gtk3() {
-depends+=(gtk-update-icon-cache)
-optdepends=('libcanberra: gtk3-widget-factory demo')
-install=gtk3.install
-
-cd "gtk+-$pkgver"
-make DESTDIR="$pkgdir" install
-install -Dm644 ../settings.ini "$pkgdir/usr/share/gtk-3.0/settings.ini"
-
-# split this out to use with gtk2 too
-rm "$pkgdir/usr/bin/gtk-update-icon-cache"
-}
-
-package_gtk-update-icon-cache() {
-pkgdesc="GTK+ icon cache updater"
-depends=(gdk-pixbuf2 hicolor-icon-theme)
-install=gtk-update-icon-cache.install
-
-cd gtk+-$pkgver/gtk
-install -Dm755 gtk-update-icon-cache 
"$pkgdir/usr/bin/gtk-update-icon-cache"
-}
-
-# vim:set et sw=4:

Copied: gtk3/repos/extra-i686/PKGBUILD (from rev 261307, gtk3/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-03-10 22:04:00 UTC (rev 261308)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Ionut Biru 
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgbase=gtk3
+pkgname=(gtk3 gtk-update-icon-cache)
+pkgver=3.18.9
+pkgrel=1
+pkgdesc="GObject-based multi-platform GUI toolkit"
+arch=(i686 x86_64)
+url="http://www.gtk.org/;
+depends=(atk cairo libcups libxcursor libxinerama libxrandr libxi libepoxy 
gdk-pixbuf2
+ libxcomposite 

[arch-commits] Commit in siege/repos (4 files)

2016-03-10 Thread Florian Pritz
Date: Thursday, March 10, 2016 @ 22:56:28
  Author: bluewind
Revision: 166006

archrelease: copy trunk to community-i686, community-x86_64

Added:
  siege/repos/community-i686/PKGBUILD
(from rev 166005, siege/trunk/PKGBUILD)
  siege/repos/community-x86_64/PKGBUILD
(from rev 166005, siege/trunk/PKGBUILD)
Deleted:
  siege/repos/community-i686/PKGBUILD
  siege/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   62 
 community-i686/PKGBUILD   |   31 --
 community-x86_64/PKGBUILD |   31 --
 3 files changed, 62 insertions(+), 62 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-10 21:56:05 UTC (rev 166005)
+++ community-i686/PKGBUILD 2016-03-10 21:56:28 UTC (rev 166006)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz 
-# Contributor: Sven Kauber 
-
-pkgname=siege
-pkgver=3.1.4
-pkgrel=2
-arch=('i686' 'x86_64')
-license=('GPL')
-pkgdesc="An http regression testing and benchmarking utility"
-url="http://www.joedog.org/JoeDog/Siege;
-depends=('openssl')
-source=("http://download.joedog.org/siege/siege-${pkgver}.tar.gz;)
-backup=(etc/siegerc etc/urls.txt)
-
-build() {
-  cd "${srcdir}/$pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd "${srcdir}/$pkgname-$pkgver"
-
-  install -d -m755 "$pkgdir/etc"
-  install -d -m755 "$pkgdir/usr/share"
-  make DESTDIR="$pkgdir" install
-  sed -i 's/^# file =$/file = \/etc\/urls.txt/' "$pkgdir/etc/siegerc"
-}
-
-md5sums=('a893b92a453e1c1d596314aa951981f4')

Copied: siege/repos/community-i686/PKGBUILD (from rev 166005, 
siege/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-10 21:56:28 UTC (rev 166006)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Florian Pritz 
+# Contributor: Sven Kauber 
+
+pkgname=siege
+pkgver=4.0.0
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('GPL')
+pkgdesc="An http regression testing and benchmarking utility"
+url="http://www.joedog.org/JoeDog/Siege;
+depends=('openssl')
+source=("http://download.joedog.org/siege/siege-${pkgver}.tar.gz;)
+backup=(etc/siegerc etc/urls.txt)
+
+build() {
+  cd "${srcdir}/$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd "${srcdir}/$pkgname-$pkgver"
+
+  install -d -m755 "$pkgdir/etc"
+  install -d -m755 "$pkgdir/usr/share"
+  make DESTDIR="$pkgdir" install
+  sed -i 's/^# file =$/file = \/etc\/urls.txt/' "$pkgdir/etc/siegerc"
+}
+
+md5sums=('ff248a630aff052352b1743e8986fdd1')

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-03-10 21:56:05 UTC (rev 166005)
+++ community-x86_64/PKGBUILD   2016-03-10 21:56:28 UTC (rev 166006)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz 
-# Contributor: Sven Kauber 
-
-pkgname=siege
-pkgver=4.0.0
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL')
-pkgdesc="An http regression testing and benchmarking utility"
-url="http://www.joedog.org/JoeDog/Siege;
-depends=('openssl')
-source=("http://download.joedog.org/siege/siege-${pkgver}.tar.gz;)
-backup=(etc/siegerc etc/urls.txt)
-
-build() {
-  cd "${srcdir}/$pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd "${srcdir}/$pkgname-$pkgver"
-
-  install -d -m755 "$pkgdir/etc"
-  install -d -m755 "$pkgdir/usr/share"
-  make DESTDIR="$pkgdir" install
-  sed -i 's/^# file =$/file = \/etc\/urls.txt/' "$pkgdir/etc/siegerc"
-}
-
-md5sums=('ff248a630aff052352b1743e8986fdd1')

Copied: siege/repos/community-x86_64/PKGBUILD (from rev 166005, 
siege/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-03-10 21:56:28 UTC (rev 166006)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Florian Pritz 
+# Contributor: Sven Kauber 
+
+pkgname=siege
+pkgver=4.0.0
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('GPL')
+pkgdesc="An http regression testing and benchmarking utility"
+url="http://www.joedog.org/JoeDog/Siege;
+depends=('openssl')
+source=("http://download.joedog.org/siege/siege-${pkgver}.tar.gz;)
+backup=(etc/siegerc etc/urls.txt)
+
+build() {
+  cd "${srcdir}/$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd "${srcdir}/$pkgname-$pkgver"
+
+  install -d -m755 "$pkgdir/etc"
+  install -d -m755 "$pkgdir/usr/share"
+  make DESTDIR="$pkgdir" install
+  sed -i 's/^# file 

[arch-commits] Commit in siege/repos/community-x86_64 (PKGBUILD PKGBUILD)

2016-03-10 Thread Florian Pritz
Date: Thursday, March 10, 2016 @ 22:56:05
  Author: bluewind
Revision: 166005

archrelease: copy trunk to community-x86_64

Added:
  siege/repos/community-x86_64/PKGBUILD
(from rev 166004, siege/trunk/PKGBUILD)
Deleted:
  siege/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   62 ++---
 1 file changed, 31 insertions(+), 31 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-10 21:56:01 UTC (rev 166004)
+++ PKGBUILD2016-03-10 21:56:05 UTC (rev 166005)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz 
-# Contributor: Sven Kauber 
-
-pkgname=siege
-pkgver=3.1.4
-pkgrel=2
-arch=('i686' 'x86_64')
-license=('GPL')
-pkgdesc="An http regression testing and benchmarking utility"
-url="http://www.joedog.org/JoeDog/Siege;
-depends=('openssl')
-source=("http://download.joedog.org/siege/siege-${pkgver}.tar.gz;)
-backup=(etc/siegerc etc/urls.txt)
-
-build() {
-  cd "${srcdir}/$pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd "${srcdir}/$pkgname-$pkgver"
-
-  install -d -m755 "$pkgdir/etc"
-  install -d -m755 "$pkgdir/usr/share"
-  make DESTDIR="$pkgdir" install
-  sed -i 's/^# file =$/file = \/etc\/urls.txt/' "$pkgdir/etc/siegerc"
-}
-
-md5sums=('a893b92a453e1c1d596314aa951981f4')

Copied: siege/repos/community-x86_64/PKGBUILD (from rev 166004, 
siege/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-10 21:56:05 UTC (rev 166005)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Florian Pritz 
+# Contributor: Sven Kauber 
+
+pkgname=siege
+pkgver=4.0.0
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('GPL')
+pkgdesc="An http regression testing and benchmarking utility"
+url="http://www.joedog.org/JoeDog/Siege;
+depends=('openssl')
+source=("http://download.joedog.org/siege/siege-${pkgver}.tar.gz;)
+backup=(etc/siegerc etc/urls.txt)
+
+build() {
+  cd "${srcdir}/$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd "${srcdir}/$pkgname-$pkgver"
+
+  install -d -m755 "$pkgdir/etc"
+  install -d -m755 "$pkgdir/usr/share"
+  make DESTDIR="$pkgdir" install
+  sed -i 's/^# file =$/file = \/etc\/urls.txt/' "$pkgdir/etc/siegerc"
+}
+
+md5sums=('ff248a630aff052352b1743e8986fdd1')


[arch-commits] Commit in siege/trunk (PKGBUILD)

2016-03-10 Thread Florian Pritz
Date: Thursday, March 10, 2016 @ 22:56:01
  Author: bluewind
Revision: 166004

upgpkg: siege 4.0.0-1

upstream update

Modified:
  siege/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-10 21:22:36 UTC (rev 166003)
+++ PKGBUILD2016-03-10 21:56:01 UTC (rev 166004)
@@ -3,8 +3,8 @@
 # Contributor: Sven Kauber 
 
 pkgname=siege
-pkgver=3.1.4
-pkgrel=2
+pkgver=4.0.0
+pkgrel=1
 arch=('i686' 'x86_64')
 license=('GPL')
 pkgdesc="An http regression testing and benchmarking utility"
@@ -28,4 +28,4 @@
   sed -i 's/^# file =$/file = \/etc\/urls.txt/' "$pkgdir/etc/siegerc"
 }
 
-md5sums=('a893b92a453e1c1d596314aa951981f4')
+md5sums=('ff248a630aff052352b1743e8986fdd1')


[arch-commits] Commit in gtk3/trunk (PKGBUILD)

2016-03-10 Thread Jan Steffens
Date: Thursday, March 10, 2016 @ 22:51:20
  Author: heftig
Revision: 261307

3.18.9

Modified:
  gtk3/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-10 21:49:46 UTC (rev 261306)
+++ PKGBUILD2016-03-10 21:51:20 UTC (rev 261307)
@@ -4,7 +4,7 @@
 
 pkgbase=gtk3
 pkgname=(gtk3 gtk-update-icon-cache)
-pkgver=3.18.8
+pkgver=3.18.9
 pkgrel=1
 pkgdesc="GObject-based multi-platform GUI toolkit"
 arch=(i686 x86_64)
@@ -16,7 +16,7 @@
 license=(LGPL)
 
source=(https://download.gnome.org/sources/gtk+/${pkgver:0:4}/gtk+-$pkgver.tar.xz
 settings.ini)
-sha256sums=('1c53ef1bb55364698f7183ecd185b547f92f4a3a7abfafd531400232e2e052f8'
+sha256sums=('783d7f8b00f9b4224cc94d7da885a67598e711c2d6d79c9c873c6b203e83acbd'
 '01fc1d81dc82c4a052ac6e25bf9a04e7647267cc3017bc91f9ce3e63e5eb9202')
 
 prepare() {


[arch-commits] Commit in linux-zen/repos (24 files)

2016-03-10 Thread Jan Steffens
Date: Thursday, March 10, 2016 @ 22:49:46
  Author: heftig
Revision: 261306

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  linux-zen/repos/extra-i686/PKGBUILD
(from rev 261305, linux-zen/trunk/PKGBUILD)
  linux-zen/repos/extra-i686/change-default-console-loglevel.patch
(from rev 261305, linux-zen/trunk/change-default-console-loglevel.patch)
  linux-zen/repos/extra-i686/config
(from rev 261305, linux-zen/trunk/config)
  linux-zen/repos/extra-i686/config.x86_64
(from rev 261305, linux-zen/trunk/config.x86_64)
  linux-zen/repos/extra-i686/linux.install
(from rev 261305, linux-zen/trunk/linux.install)
  linux-zen/repos/extra-i686/linux.preset
(from rev 261305, linux-zen/trunk/linux.preset)
  linux-zen/repos/extra-x86_64/PKGBUILD
(from rev 261305, linux-zen/trunk/PKGBUILD)
  linux-zen/repos/extra-x86_64/change-default-console-loglevel.patch
(from rev 261305, linux-zen/trunk/change-default-console-loglevel.patch)
  linux-zen/repos/extra-x86_64/config
(from rev 261305, linux-zen/trunk/config)
  linux-zen/repos/extra-x86_64/config.x86_64
(from rev 261305, linux-zen/trunk/config.x86_64)
  linux-zen/repos/extra-x86_64/linux.install
(from rev 261305, linux-zen/trunk/linux.install)
  linux-zen/repos/extra-x86_64/linux.preset
(from rev 261305, linux-zen/trunk/linux.preset)
Deleted:
  linux-zen/repos/extra-i686/PKGBUILD
  linux-zen/repos/extra-i686/change-default-console-loglevel.patch
  linux-zen/repos/extra-i686/config
  linux-zen/repos/extra-i686/config.x86_64
  linux-zen/repos/extra-i686/linux.install
  linux-zen/repos/extra-i686/linux.preset
  linux-zen/repos/extra-x86_64/PKGBUILD
  linux-zen/repos/extra-x86_64/change-default-console-loglevel.patch
  linux-zen/repos/extra-x86_64/config
  linux-zen/repos/extra-x86_64/config.x86_64
  linux-zen/repos/extra-x86_64/linux.install
  linux-zen/repos/extra-x86_64/linux.preset

+
 /PKGBUILD  |  602 
 /change-default-console-loglevel.patch |   22 
 /config|15862 +++
 /config.x86_64 |15378 ++
 /linux.install |   74 
 /linux.preset  |   28 
 extra-i686/PKGBUILD|  301 
 extra-i686/change-default-console-loglevel.patch   |   11 
 extra-i686/config  | 7931 -
 extra-i686/config.x86_64   | 7689 -
 extra-i686/linux.install   |   37 
 extra-i686/linux.preset|   14 
 extra-x86_64/PKGBUILD  |  301 
 extra-x86_64/change-default-console-loglevel.patch |   11 
 extra-x86_64/config| 7931 -
 extra-x86_64/config.x86_64 | 7689 -
 extra-x86_64/linux.install |   37 
 extra-x86_64/linux.preset  |   14 
 18 files changed, 31966 insertions(+), 31966 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 261305:261306 to see the changes.


[arch-commits] Commit in python-distutils-extra/repos/community-any (2 files)

2016-03-10 Thread Jelle van der Waa
Date: Thursday, March 10, 2016 @ 22:22:36
  Author: jelle
Revision: 166003

archrelease: copy trunk to community-any

Added:
  python-distutils-extra/repos/community-any/PKGBUILD
(from rev 166002, python-distutils-extra/trunk/PKGBUILD)
Deleted:
  python-distutils-extra/repos/community-any/PKGBUILD

--+
 PKGBUILD |   65 ++---
 1 file changed, 33 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-10 21:22:26 UTC (rev 166002)
+++ PKGBUILD2016-03-10 21:22:36 UTC (rev 166003)
@@ -1,32 +0,0 @@
-# $Id$ 
-# Maintainer: Angel 'angvp' Velasquez 
-# Contributor: Abhishek Dasgupta 
-
-pkgbase=python-distutils-extra
-pkgname=('python-distutils-extra' 'python2-distutils-extra')
-pkgver=2.38
-pkgrel=3
-pkgdesc='Enhancements to the Python build system'
-arch=('any')
-license=('GPL')
-url='https://launchpad.net/python-distutils-extra'
-makedepends=('python2-setuptools' 'python-setuptools' 'intltool')
-source=(http://launchpad.net/$pkgbase/trunk/$pkgver/+download/$pkgbase-$pkgver.tar.gz
-
$pkgbase-$pkgver.tar.gz.asc::http://launchpad.net/$pkgbase/trunk/$pkgver/+download/dist-$pkgbase-$pkgver.tar.gz.asc)
-validpgpkeys=('3DB46B55EFA59D40E6232148D14EF15DAFE11347')
-md5sums=('4e4c9bee92a3ca8bfd915f3adcf14648'
- 'SKIP')
-
-package_python2-distutils-extra() {
-  depends=('intltool' 'python2')
-
-  cd "${srcdir}/$pkgbase-$pkgver"
-  python2 setup.py install --root="${pkgdir}"
-}
-
-package_python-distutils-extra() {
-  depends=('intltool' 'python')
-
-  cd "${srcdir}/$pkgbase-$pkgver"
-  python3 setup.py install --root="${pkgdir}"
-}

Copied: python-distutils-extra/repos/community-any/PKGBUILD (from rev 166002, 
python-distutils-extra/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-10 21:22:36 UTC (rev 166003)
@@ -0,0 +1,33 @@
+# $Id$ 
+# Maintainer: Angel 'angvp' Velasquez 
+# Contributor: Abhishek Dasgupta 
+
+pkgbase=python-distutils-extra
+pkgname=('python-distutils-extra' 'python2-distutils-extra')
+pkgver=2.39
+pkgrel=1
+pkgdesc='Enhancements to the Python build system'
+arch=('any')
+license=('GPL')
+url='https://launchpad.net/python-distutils-extra'
+makedepends=('python2-setuptools' 'python-setuptools' 'intltool')
+source=(http://launchpad.net/$pkgbase/trunk/$pkgver/+download/$pkgbase-$pkgver.tar.gz{,.asc})
+# 
https://launchpad.net/python-distutils-extra/trunk/2.39/+download/python-distutils-extra-2.39.tar.gz.asc
+
#$pkgbase-$pkgver.tar.gz.sig::http://launchpad.net/$pkgbase/trunk/$pkgver/+download/dist-$pkgbase-$pkgver.tar.gz.sig)
+validpgpkeys=('3DB46B55EFA59D40E6232148D14EF15DAFE11347')
+md5sums=('16e06db0ef73a35b4bff4b9eed5699b5'
+ 'SKIP')
+
+package_python2-distutils-extra() {
+  depends=('intltool' 'python2')
+
+  cd "${srcdir}/$pkgbase-$pkgver"
+  python2 setup.py install --root="${pkgdir}"
+}
+
+package_python-distutils-extra() {
+  depends=('intltool' 'python')
+
+  cd "${srcdir}/$pkgbase-$pkgver"
+  python3 setup.py install --root="${pkgdir}"
+}


[arch-commits] Commit in python-distutils-extra/trunk (PKGBUILD)

2016-03-10 Thread Jelle van der Waa
Date: Thursday, March 10, 2016 @ 22:22:26
  Author: jelle
Revision: 166002

upgpkg: python-distutils-extra 2.39-1

Modified:
  python-distutils-extra/trunk/PKGBUILD

--+
 PKGBUILD |   11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-10 21:14:05 UTC (rev 166001)
+++ PKGBUILD2016-03-10 21:22:26 UTC (rev 166002)
@@ -4,17 +4,18 @@
 
 pkgbase=python-distutils-extra
 pkgname=('python-distutils-extra' 'python2-distutils-extra')
-pkgver=2.38
-pkgrel=3
+pkgver=2.39
+pkgrel=1
 pkgdesc='Enhancements to the Python build system'
 arch=('any')
 license=('GPL')
 url='https://launchpad.net/python-distutils-extra'
 makedepends=('python2-setuptools' 'python-setuptools' 'intltool')
-source=(http://launchpad.net/$pkgbase/trunk/$pkgver/+download/$pkgbase-$pkgver.tar.gz
-
$pkgbase-$pkgver.tar.gz.asc::http://launchpad.net/$pkgbase/trunk/$pkgver/+download/dist-$pkgbase-$pkgver.tar.gz.asc)
+source=(http://launchpad.net/$pkgbase/trunk/$pkgver/+download/$pkgbase-$pkgver.tar.gz{,.asc})
+# 
https://launchpad.net/python-distutils-extra/trunk/2.39/+download/python-distutils-extra-2.39.tar.gz.asc
+
#$pkgbase-$pkgver.tar.gz.sig::http://launchpad.net/$pkgbase/trunk/$pkgver/+download/dist-$pkgbase-$pkgver.tar.gz.sig)
 validpgpkeys=('3DB46B55EFA59D40E6232148D14EF15DAFE11347')
-md5sums=('4e4c9bee92a3ca8bfd915f3adcf14648'
+md5sums=('16e06db0ef73a35b4bff4b9eed5699b5'
  'SKIP')
 
 package_python2-distutils-extra() {


[arch-commits] Commit in python2-jellyfish/repos (4 files)

2016-03-10 Thread Jelle van der Waa
Date: Thursday, March 10, 2016 @ 22:14:05
  Author: jelle
Revision: 166001

archrelease: copy trunk to community-i686, community-x86_64

Added:
  python2-jellyfish/repos/community-i686/PKGBUILD
(from rev 166000, python2-jellyfish/trunk/PKGBUILD)
  python2-jellyfish/repos/community-x86_64/PKGBUILD
(from rev 166000, python2-jellyfish/trunk/PKGBUILD)
Deleted:
  python2-jellyfish/repos/community-i686/PKGBUILD
  python2-jellyfish/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   62 
 community-i686/PKGBUILD   |   31 --
 community-x86_64/PKGBUILD |   31 --
 3 files changed, 62 insertions(+), 62 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-10 21:11:38 UTC (rev 166000)
+++ community-i686/PKGBUILD 2016-03-10 21:14:05 UTC (rev 166001)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-
-pkgname=python2-jellyfish
-pkgver=0.5.0
-pkgrel=1
-pkgdesc='A python library for doing approximate and phonetic matching of 
strings'
-arch=('i686' 'x86_64')
-url='https://github.com/sunlightlabs/jellyfish'
-license=('BSD')
-depends=('python2')
-makedepends=('python2-setuptools')
-source=("https://pypi.python.org/packages/source/j/jellyfish/jellyfish-${pkgver}.tar.gz;)
-sha256sums=('e19b8fac54fe89925589fc866f37cd8926d38551e038793fbab243caf903e812')
-
-build() {
-  cd jellyfish-${pkgver}
-
-  python2 setup.py build
-}
-
-package() {
-  cd jellyfish-${pkgver}
-
-  python2 setup.py install --root="${pkgdir}" --optimize='1'
-
-  install -dm 755 "${pkgdir}"/usr/share/licenses/python2-jellyfish
-  install -m 644 LICENSE "${pkgdir}"/usr/share/licenses/python2-jellyfish/
-}
-
-# vim: ts=2 sw=2 et:

Copied: python2-jellyfish/repos/community-i686/PKGBUILD (from rev 166000, 
python2-jellyfish/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-10 21:14:05 UTC (rev 166001)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+
+pkgname=python2-jellyfish
+pkgver=0.5.2
+pkgrel=1
+pkgdesc='A python library for doing approximate and phonetic matching of 
strings'
+arch=('i686' 'x86_64')
+url='https://github.com/sunlightlabs/jellyfish'
+license=('BSD')
+depends=('python2')
+makedepends=('python2-setuptools')
+source=("https://pypi.python.org/packages/source/j/jellyfish/jellyfish-${pkgver}.tar.gz;)
+sha256sums=('96a96630a1dec21e634b967b040d42d1cb316b9a54885b434e2fbe90d704b397')
+
+build() {
+  cd jellyfish-${pkgver}
+
+  python2 setup.py build
+}
+
+package() {
+  cd jellyfish-${pkgver}
+
+  python2 setup.py install --root="${pkgdir}" --optimize='1'
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses/python2-jellyfish
+  install -m 644 LICENSE "${pkgdir}"/usr/share/licenses/python2-jellyfish/
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-03-10 21:11:38 UTC (rev 166000)
+++ community-x86_64/PKGBUILD   2016-03-10 21:14:05 UTC (rev 166001)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-
-pkgname=python2-jellyfish
-pkgver=0.5.0
-pkgrel=1
-pkgdesc='A python library for doing approximate and phonetic matching of 
strings'
-arch=('i686' 'x86_64')
-url='https://github.com/sunlightlabs/jellyfish'
-license=('BSD')
-depends=('python2')
-makedepends=('python2-setuptools')
-source=("https://pypi.python.org/packages/source/j/jellyfish/jellyfish-${pkgver}.tar.gz;)
-sha256sums=('e19b8fac54fe89925589fc866f37cd8926d38551e038793fbab243caf903e812')
-
-build() {
-  cd jellyfish-${pkgver}
-
-  python2 setup.py build
-}
-
-package() {
-  cd jellyfish-${pkgver}
-
-  python2 setup.py install --root="${pkgdir}" --optimize='1'
-
-  install -dm 755 "${pkgdir}"/usr/share/licenses/python2-jellyfish
-  install -m 644 LICENSE "${pkgdir}"/usr/share/licenses/python2-jellyfish/
-}
-
-# vim: ts=2 sw=2 et:

Copied: python2-jellyfish/repos/community-x86_64/PKGBUILD (from rev 166000, 
python2-jellyfish/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-03-10 21:14:05 UTC (rev 166001)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+
+pkgname=python2-jellyfish
+pkgver=0.5.2
+pkgrel=1
+pkgdesc='A python library for doing approximate and phonetic matching of 
strings'
+arch=('i686' 'x86_64')
+url='https://github.com/sunlightlabs/jellyfish'
+license=('BSD')
+depends=('python2')
+makedepends=('python2-setuptools')
+source=("https://pypi.python.org/packages/source/j/jellyfish/jellyfish-${pkgver}.tar.gz;)

[arch-commits] Commit in python2-jellyfish/trunk (PKGBUILD)

2016-03-10 Thread Jelle van der Waa
Date: Thursday, March 10, 2016 @ 22:11:38
  Author: jelle
Revision: 166000

upgpkg: python2-jellyfish 0.5.2-1

Modified:
  python2-jellyfish/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-10 20:46:57 UTC (rev 165999)
+++ PKGBUILD2016-03-10 21:11:38 UTC (rev 166000)
@@ -2,7 +2,7 @@
 # Maintainer: Maxime Gauduin 
 
 pkgname=python2-jellyfish
-pkgver=0.5.0
+pkgver=0.5.2
 pkgrel=1
 pkgdesc='A python library for doing approximate and phonetic matching of 
strings'
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 depends=('python2')
 makedepends=('python2-setuptools')
 
source=("https://pypi.python.org/packages/source/j/jellyfish/jellyfish-${pkgver}.tar.gz;)
-sha256sums=('e19b8fac54fe89925589fc866f37cd8926d38551e038793fbab243caf903e812')
+sha256sums=('96a96630a1dec21e634b967b040d42d1cb316b9a54885b434e2fbe90d704b397')
 
 build() {
   cd jellyfish-${pkgver}


[arch-commits] Commit in spice-gtk3/repos (4 files)

2016-03-10 Thread Sergej Pupykin
Date: Thursday, March 10, 2016 @ 21:46:57
  Author: spupykin
Revision: 165999

archrelease: copy trunk to community-i686, community-x86_64

Added:
  spice-gtk3/repos/community-i686/PKGBUILD
(from rev 165998, spice-gtk3/trunk/PKGBUILD)
  spice-gtk3/repos/community-x86_64/PKGBUILD
(from rev 165998, spice-gtk3/trunk/PKGBUILD)
Deleted:
  spice-gtk3/repos/community-i686/PKGBUILD
  spice-gtk3/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   78 
 community-i686/PKGBUILD   |   39 --
 community-x86_64/PKGBUILD |   39 --
 3 files changed, 78 insertions(+), 78 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-10 20:46:42 UTC (rev 165998)
+++ community-i686/PKGBUILD 2016-03-10 20:46:57 UTC (rev 165999)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Stefano Facchini 
-# Contributor: Jonathan Lestrelin 
-# Contributor: Lucio Zara 
-
-pkgname=spice-gtk3
-pkgver=0.30
-pkgrel=2
-pkgdesc="Gtk client and libraries for SPICE remote desktop servers (gtk3 
version)"
-arch=('i686' 'x86_64')
-url="http://spice-space.org;
-license=('LGPL2.1')
-depends=('celt0.5.1' 'dbus-glib' 'gtk3' 'libcacard' 'libpulse' 'usbredir' 
'libsoup' 'spice-glib')
-makedepends=('gobject-introspection' 'intltool' 'python2-pyparsing' 
'spice-protocol' 'usbutils'
-'vala' 'sdl' 'python2-six')
-options=('!emptydirs')
-source=("http://www.spice-space.org/download/gtk/spice-gtk-$pkgver.tar.bz2;)
-md5sums=('723e0e9ce9d507ba5d6cd331a3a9b7fb')
-
-build() {
-  cd "$srcdir/spice-gtk-$pkgver"
-  PYTHON=python2 ./configure --prefix=/usr \
---disable-static --enable-vala --with-gtk=3.0 \
---with-audio=pulse \
---with-coroutine=gthread --sbindir=/usr/bin \
---enable-smartcard
-  make
-}
-
-package() {
-  cd "$srcdir/spice-gtk-$pkgver"
-  make DESTDIR="$pkgdir/" install
-  pacman -Ql spice-glib | cut -f2 -d' ' | while read f; do
-[ -f $pkgdir/$f ] && rm -f $pkgdir/$f || true
-f=$(echo $f | sed 's|.gz$||')
-[ -f $pkgdir/$f ] && rm -f $pkgdir/$f || true
-  done
-}

Copied: spice-gtk3/repos/community-i686/PKGBUILD (from rev 165998, 
spice-gtk3/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-10 20:46:57 UTC (rev 165999)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Stefano Facchini 
+# Contributor: Jonathan Lestrelin 
+# Contributor: Lucio Zara 
+
+pkgname=spice-gtk3
+pkgver=0.30
+pkgrel=3
+pkgdesc="Gtk client and libraries for SPICE remote desktop servers (gtk3 
version)"
+arch=('i686' 'x86_64')
+url="http://spice-space.org;
+license=('LGPL2.1')
+depends=('celt0.5.1' 'dbus-glib' 'gtk3' 'libcacard' 'libpulse' 'usbredir' 
'libsoup' 'spice-glib')
+makedepends=('gobject-introspection' 'intltool' 'python2-pyparsing' 
'spice-protocol' 'usbutils'
+'vala' 'sdl' 'python2-six')
+options=('!emptydirs')
+source=("http://www.spice-space.org/download/gtk/spice-gtk-$pkgver.tar.bz2;)
+md5sums=('723e0e9ce9d507ba5d6cd331a3a9b7fb')
+
+build() {
+  cd "$srcdir/spice-gtk-$pkgver"
+  PYTHON=python2 ./configure --prefix=/usr \
+--disable-static --enable-vala --with-gtk=3.0 \
+--with-audio=pulse \
+--with-coroutine=gthread --sbindir=/usr/bin \
+--enable-smartcard
+  make
+}
+
+package() {
+  cd "$srcdir/spice-gtk-$pkgver"
+  make DESTDIR="$pkgdir/" install
+  pacman -Ql spice-glib | cut -f2 -d' ' | while read f; do
+[ -f $pkgdir/$f ] && rm -f $pkgdir/$f || true
+f=$(echo $f | sed 's|.gz$||')
+[ -f $pkgdir/$f ] && rm -f $pkgdir/$f || true
+  done
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-03-10 20:46:42 UTC (rev 165998)
+++ community-x86_64/PKGBUILD   2016-03-10 20:46:57 UTC (rev 165999)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Stefano Facchini 
-# Contributor: Jonathan Lestrelin 
-# Contributor: Lucio Zara 
-
-pkgname=spice-gtk3
-pkgver=0.30
-pkgrel=2
-pkgdesc="Gtk client and libraries for SPICE remote desktop servers (gtk3 
version)"
-arch=('i686' 'x86_64')
-url="http://spice-space.org;
-license=('LGPL2.1')
-depends=('celt0.5.1' 'dbus-glib' 'gtk3' 'libcacard' 'libpulse' 'usbredir' 
'libsoup' 'spice-glib')
-makedepends=('gobject-introspection' 'intltool' 'python2-pyparsing' 
'spice-protocol' 'usbutils'
-'vala' 'sdl' 'python2-six')
-options=('!emptydirs')

[arch-commits] Commit in spice-gtk3/trunk (PKGBUILD)

2016-03-10 Thread Sergej Pupykin
Date: Thursday, March 10, 2016 @ 21:46:42
  Author: spupykin
Revision: 165998

upgpkg: spice-gtk3 0.30-3

upd

Modified:
  spice-gtk3/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-10 20:42:27 UTC (rev 165997)
+++ PKGBUILD2016-03-10 20:46:42 UTC (rev 165998)
@@ -6,7 +6,7 @@
 
 pkgname=spice-gtk3
 pkgver=0.30
-pkgrel=2
+pkgrel=3
 pkgdesc="Gtk client and libraries for SPICE remote desktop servers (gtk3 
version)"
 arch=('i686' 'x86_64')
 url="http://spice-space.org;


[arch-commits] Commit in spice-gtk3/repos (4 files)

2016-03-10 Thread Sergej Pupykin
Date: Thursday, March 10, 2016 @ 21:42:27
  Author: spupykin
Revision: 165997

archrelease: copy trunk to community-i686, community-x86_64

Added:
  spice-gtk3/repos/community-i686/PKGBUILD
(from rev 165996, spice-gtk3/trunk/PKGBUILD)
  spice-gtk3/repos/community-x86_64/PKGBUILD
(from rev 165996, spice-gtk3/trunk/PKGBUILD)
Deleted:
  spice-gtk3/repos/community-i686/PKGBUILD
  spice-gtk3/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   78 
 community-i686/PKGBUILD   |   39 --
 community-x86_64/PKGBUILD |   39 --
 3 files changed, 78 insertions(+), 78 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-10 20:42:10 UTC (rev 165996)
+++ community-i686/PKGBUILD 2016-03-10 20:42:27 UTC (rev 165997)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Stefano Facchini 
-# Contributor: Jonathan Lestrelin 
-# Contributor: Lucio Zara 
-
-pkgname=spice-gtk3
-pkgver=0.30
-pkgrel=2
-pkgdesc="Gtk client and libraries for SPICE remote desktop servers (gtk3 
version)"
-arch=('i686' 'x86_64')
-url="http://spice-space.org;
-license=('LGPL2.1')
-depends=('celt0.5.1' 'dbus-glib' 'gtk3' 'libcacard' 'libpulse' 'usbredir' 
'libsoup' 'spice-glib')
-makedepends=('gobject-introspection' 'intltool' 'python2-pyparsing' 
'spice-protocol' 'usbutils'
-'vala' 'sdl' 'python2-six')
-options=('!emptydirs')
-source=("http://www.spice-space.org/download/gtk/spice-gtk-$pkgver.tar.bz2;)
-md5sums=('723e0e9ce9d507ba5d6cd331a3a9b7fb')
-
-build() {
-  cd "$srcdir/spice-gtk-$pkgver"
-  PYTHON=python2 ./configure --prefix=/usr \
---disable-static --enable-vala --with-gtk=3.0 \
---with-audio=pulse \
---with-coroutine=gthread --sbindir=/usr/bin \
---enable-smartcard
-  make
-}
-
-package() {
-  cd "$srcdir/spice-gtk-$pkgver"
-  make DESTDIR="$pkgdir/" install
-  pacman -Ql spice-glib | cut -f2 -d' ' | while read f; do
-[ -f $pkgdir/$f ] && rm -f $pkgdir/$f || true
-f=$(echo $f | sed 's|.gz$||')
-[ -f $pkgdir/$f ] && rm -f $pkgdir/$f || true
-  done
-}

Copied: spice-gtk3/repos/community-i686/PKGBUILD (from rev 165996, 
spice-gtk3/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-10 20:42:27 UTC (rev 165997)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Stefano Facchini 
+# Contributor: Jonathan Lestrelin 
+# Contributor: Lucio Zara 
+
+pkgname=spice-gtk3
+pkgver=0.30
+pkgrel=2
+pkgdesc="Gtk client and libraries for SPICE remote desktop servers (gtk3 
version)"
+arch=('i686' 'x86_64')
+url="http://spice-space.org;
+license=('LGPL2.1')
+depends=('celt0.5.1' 'dbus-glib' 'gtk3' 'libcacard' 'libpulse' 'usbredir' 
'libsoup' 'spice-glib')
+makedepends=('gobject-introspection' 'intltool' 'python2-pyparsing' 
'spice-protocol' 'usbutils'
+'vala' 'sdl' 'python2-six')
+options=('!emptydirs')
+source=("http://www.spice-space.org/download/gtk/spice-gtk-$pkgver.tar.bz2;)
+md5sums=('723e0e9ce9d507ba5d6cd331a3a9b7fb')
+
+build() {
+  cd "$srcdir/spice-gtk-$pkgver"
+  PYTHON=python2 ./configure --prefix=/usr \
+--disable-static --enable-vala --with-gtk=3.0 \
+--with-audio=pulse \
+--with-coroutine=gthread --sbindir=/usr/bin \
+--enable-smartcard
+  make
+}
+
+package() {
+  cd "$srcdir/spice-gtk-$pkgver"
+  make DESTDIR="$pkgdir/" install
+  pacman -Ql spice-glib | cut -f2 -d' ' | while read f; do
+[ -f $pkgdir/$f ] && rm -f $pkgdir/$f || true
+f=$(echo $f | sed 's|.gz$||')
+[ -f $pkgdir/$f ] && rm -f $pkgdir/$f || true
+  done
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-03-10 20:42:10 UTC (rev 165996)
+++ community-x86_64/PKGBUILD   2016-03-10 20:42:27 UTC (rev 165997)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Stefano Facchini 
-# Contributor: Jonathan Lestrelin 
-# Contributor: Lucio Zara 
-
-pkgname=spice-gtk3
-pkgver=0.30
-pkgrel=2
-pkgdesc="Gtk client and libraries for SPICE remote desktop servers (gtk3 
version)"
-arch=('i686' 'x86_64')
-url="http://spice-space.org;
-license=('LGPL2.1')
-depends=('celt0.5.1' 'dbus-glib' 'gtk3' 'libcacard' 'libpulse' 'usbredir' 
'libsoup' 'spice-glib')
-makedepends=('gobject-introspection' 'intltool' 'python2-pyparsing' 
'spice-protocol' 'usbutils'
-'vala' 'sdl' 'python2-six')
-options=('!emptydirs')

[arch-commits] Commit in spice-glib/repos (4 files)

2016-03-10 Thread Sergej Pupykin
Date: Thursday, March 10, 2016 @ 21:42:10
  Author: spupykin
Revision: 165996

archrelease: copy trunk to community-i686, community-x86_64

Added:
  spice-glib/repos/community-i686/PKGBUILD
(from rev 165995, spice-glib/trunk/PKGBUILD)
  spice-glib/repos/community-x86_64/PKGBUILD
(from rev 165995, spice-glib/trunk/PKGBUILD)
Deleted:
  spice-glib/repos/community-i686/PKGBUILD
  spice-glib/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   70 
 community-i686/PKGBUILD   |   35 --
 community-x86_64/PKGBUILD |   35 --
 3 files changed, 70 insertions(+), 70 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-10 20:41:50 UTC (rev 165995)
+++ community-i686/PKGBUILD 2016-03-10 20:42:10 UTC (rev 165996)
@@ -1,35 +0,0 @@
-# $Id: PKGBUILD 164477 2016-03-03 13:24:42Z foutrelis $
-# Maintainer: Sergej Pupykin 
-# Contributor: Stefano Facchini 
-# Contributor: Jonathan Lestrelin 
-# Contributor: Lucio Zara 
-
-pkgname=spice-glib
-pkgver=0.30
-pkgrel=2
-pkgdesc="Gtk client and libraries for SPICE remote desktop servers (gtk3 
version)"
-arch=('i686' 'x86_64')
-url="http://spice-space.org;
-license=('LGPL2.1')
-depends=('celt0.5.1' 'dbus-glib' 'libcacard' 'libpulse' 'usbredir' 'libsoup'
-'cairo' 'libjpeg')
-makedepends=('gobject-introspection' 'intltool' 'python2-pyparsing' 
'spice-protocol' 'usbutils'
-'vala' 'sdl' 'python2-six' 'pixman')
-options=('!emptydirs')
-source=("http://www.spice-space.org/download/gtk/spice-gtk-$pkgver.tar.bz2;)
-md5sums=('723e0e9ce9d507ba5d6cd331a3a9b7fb')
-
-build() {
-  cd "$srcdir/spice-gtk-$pkgver"
-  PYTHON=python2 ./configure --prefix=/usr \
---disable-static --enable-vala --with-gtk=no \
---with-audio=pulse \
---with-coroutine=gthread --sbindir=/usr/bin \
---enable-smartcard
-  make
-}
-
-package() {
-  cd "$srcdir/spice-gtk-$pkgver"
-  make DESTDIR="$pkgdir/" install
-}

Copied: spice-glib/repos/community-i686/PKGBUILD (from rev 165995, 
spice-glib/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-10 20:42:10 UTC (rev 165996)
@@ -0,0 +1,35 @@
+# $Id: PKGBUILD 164477 2016-03-03 13:24:42Z foutrelis $
+# Maintainer: Sergej Pupykin 
+# Contributor: Stefano Facchini 
+# Contributor: Jonathan Lestrelin 
+# Contributor: Lucio Zara 
+
+pkgname=spice-glib
+pkgver=0.30
+pkgrel=3
+pkgdesc="Gtk client and libraries for SPICE remote desktop servers (gtk3 
version)"
+arch=('i686' 'x86_64')
+url="http://spice-space.org;
+license=('LGPL2.1')
+depends=('celt0.5.1' 'dbus-glib' 'libcacard' 'libpulse' 'usbredir' 'libsoup'
+'cairo' 'libjpeg')
+makedepends=('gobject-introspection' 'intltool' 'python2-pyparsing' 
'spice-protocol' 'usbutils'
+'vala' 'sdl' 'python2-six' 'pixman')
+options=('!emptydirs')
+source=("http://www.spice-space.org/download/gtk/spice-gtk-$pkgver.tar.bz2;)
+md5sums=('723e0e9ce9d507ba5d6cd331a3a9b7fb')
+
+build() {
+  cd "$srcdir/spice-gtk-$pkgver"
+  PYTHON=python2 ./configure --prefix=/usr \
+--disable-static --enable-vala --with-gtk=no \
+--with-audio=pulse \
+--with-coroutine=gthread --sbindir=/usr/bin \
+--enable-smartcard
+  make
+}
+
+package() {
+  cd "$srcdir/spice-gtk-$pkgver"
+  make DESTDIR="$pkgdir/" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-03-10 20:41:50 UTC (rev 165995)
+++ community-x86_64/PKGBUILD   2016-03-10 20:42:10 UTC (rev 165996)
@@ -1,35 +0,0 @@
-# $Id: PKGBUILD 164477 2016-03-03 13:24:42Z foutrelis $
-# Maintainer: Sergej Pupykin 
-# Contributor: Stefano Facchini 
-# Contributor: Jonathan Lestrelin 
-# Contributor: Lucio Zara 
-
-pkgname=spice-glib
-pkgver=0.30
-pkgrel=2
-pkgdesc="Gtk client and libraries for SPICE remote desktop servers (gtk3 
version)"
-arch=('i686' 'x86_64')
-url="http://spice-space.org;
-license=('LGPL2.1')
-depends=('celt0.5.1' 'dbus-glib' 'libcacard' 'libpulse' 'usbredir' 'libsoup'
-'cairo' 'libjpeg')
-makedepends=('gobject-introspection' 'intltool' 'python2-pyparsing' 
'spice-protocol' 'usbutils'
-'vala' 'sdl' 'python2-six' 'pixman')
-options=('!emptydirs')
-source=("http://www.spice-space.org/download/gtk/spice-gtk-$pkgver.tar.bz2;)
-md5sums=('723e0e9ce9d507ba5d6cd331a3a9b7fb')
-
-build() {
-  cd "$srcdir/spice-gtk-$pkgver"
-  PYTHON=python2 ./configure --prefix=/usr \
-

[arch-commits] Commit in spice-glib/trunk (PKGBUILD)

2016-03-10 Thread Sergej Pupykin
Date: Thursday, March 10, 2016 @ 21:41:50
  Author: spupykin
Revision: 165995

upgpkg: spice-glib 0.30-3

upd

Modified:
  spice-glib/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-10 19:23:43 UTC (rev 165994)
+++ PKGBUILD2016-03-10 20:41:50 UTC (rev 165995)
@@ -6,7 +6,7 @@
 
 pkgname=spice-glib
 pkgver=0.30
-pkgrel=2
+pkgrel=3
 pkgdesc="Gtk client and libraries for SPICE remote desktop servers (gtk3 
version)"
 arch=('i686' 'x86_64')
 url="http://spice-space.org;


[arch-commits] Commit in flashplugin/repos (12 files)

2016-03-10 Thread Antonio Rojas
Date: Thursday, March 10, 2016 @ 21:11:30
  Author: arojas
Revision: 261304

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  flashplugin/repos/extra-i686/PKGBUILD
(from rev 261303, flashplugin/trunk/PKGBUILD)
  flashplugin/repos/extra-i686/flashplugin.install
(from rev 261303, flashplugin/trunk/flashplugin.install)
  flashplugin/repos/extra-i686/mms.cfg
(from rev 261303, flashplugin/trunk/mms.cfg)
  flashplugin/repos/extra-x86_64/PKGBUILD
(from rev 261303, flashplugin/trunk/PKGBUILD)
  flashplugin/repos/extra-x86_64/flashplugin.install
(from rev 261303, flashplugin/trunk/flashplugin.install)
  flashplugin/repos/extra-x86_64/mms.cfg
(from rev 261303, flashplugin/trunk/mms.cfg)
Deleted:
  flashplugin/repos/extra-i686/PKGBUILD
  flashplugin/repos/extra-i686/flashplugin.install
  flashplugin/repos/extra-i686/mms.cfg
  flashplugin/repos/extra-x86_64/PKGBUILD
  flashplugin/repos/extra-x86_64/flashplugin.install
  flashplugin/repos/extra-x86_64/mms.cfg

--+
 /PKGBUILD|   88 +
 /flashplugin.install |   28 +++
 /mms.cfg |4 +
 extra-i686/PKGBUILD  |   44 --
 extra-i686/flashplugin.install   |   14 -
 extra-i686/mms.cfg   |2 
 extra-x86_64/PKGBUILD|   44 --
 extra-x86_64/flashplugin.install |   14 -
 extra-x86_64/mms.cfg |2 
 9 files changed, 120 insertions(+), 120 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-03-10 20:10:45 UTC (rev 261303)
+++ extra-i686/PKGBUILD 2016-03-10 20:11:30 UTC (rev 261304)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru 
-# Contributor: Andrea Scarpino 
-
-pkgname=flashplugin
-_licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf'
-pkgver=11.2.202.569
-pkgrel=1
-pkgdesc='Adobe Flash Player'
-url='http://get.adobe.com/flashplayer'
-arch=('i686' 'x86_64')
-depends=('mozilla-common' 'libxt' 'libxpm' 'gtk2' 'nss' 'curl' 
'hicolor-icon-theme')
-optdepends=('libvdpau: GPU acceleration on Nvidia card')
-provides=('flashplayer')
-license=('custom')
-options=(!strip)
-install=flashplugin.install
-backup=(etc/adobe/mms.cfg)
-source=(http://www.adobe.com/products/eulas/pdfs/${_licensefile}
-mms.cfg)
-source_i686=(flashplugin_$pkgver.i386.tar.gz::http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.i386.tar.gz)
-source_x86_64=(flashplugin_$pkgver.x86_64.tar.gz::http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.x86_64.tar.gz)
-md5sums=('94ca2aecb409abfe36494d1a7ec7591d'
- 'f34aae6279b40e0bd2abfb0d9963d7b8')
-md5sums_i686=('4a43aafd3e23167487168df8fbcf2b96')
-md5sums_x86_64=('49819876d0329f3b84eb232b5b88e0d8')
-
-package () {
-install -Dm755 libflashplayer.so 
"$pkgdir/usr/lib/mozilla/plugins/libflashplayer.so"
-if [ "$CARCH" = x86_64 ]; then
-install -Dm755 usr/lib64/kde4/kcm_adobe_flash_player.so 
"$pkgdir/usr/lib/kde4/kcm_adobe_flash_player.so"
-else
-install -Dm755 usr/lib/kde4/kcm_adobe_flash_player.so 
"$pkgdir/usr/lib/kde4/kcm_adobe_flash_player.so"
-fi
-install -Dm755 usr/bin/flash-player-properties 
"$pkgdir/usr/bin/flash-player-properties"
-for i in 16x16 22x22 24x24 32x32 48x48; do
-install -Dm644 
usr/share/icons/hicolor/$i/apps/flash-player-properties.png \
-
"$pkgdir/usr/share/icons/hicolor/$i/apps/flash-player-properties.png"
-done
-install -Dm644 usr/share/applications/flash-player-properties.desktop 
"$pkgdir/usr/share/applications/flash-player-properties.desktop"
-install -Dm644 usr/share/kde4/services/kcm_adobe_flash_player.desktop 
"$pkgdir/usr/share/kde4/services/kcm_adobe_flash_player.desktop"
-install -Dm644 "${_licensefile}" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.pdf"
-install -Dm644 mms.cfg "$pkgdir/etc/adobe/mms.cfg"
-}

Copied: flashplugin/repos/extra-i686/PKGBUILD (from rev 261303, 
flashplugin/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-03-10 20:11:30 UTC (rev 261304)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer : Ionut Biru 
+# Contributor: Andrea Scarpino 
+
+pkgname=flashplugin
+_licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf'
+pkgver=11.2.202.577
+pkgrel=1
+pkgdesc='Adobe Flash Player'
+url='http://get.adobe.com/flashplayer'
+arch=('i686' 'x86_64')
+depends=('mozilla-common' 'libxt' 'libxpm' 'gtk2' 'nss' 'curl' 
'hicolor-icon-theme')
+optdepends=('libvdpau: GPU acceleration on Nvidia card')
+provides=('flashplayer')
+license=('custom')
+options=(!strip)
+install=flashplugin.install

[arch-commits] Commit in flashplugin/trunk (PKGBUILD)

2016-03-10 Thread Antonio Rojas
Date: Thursday, March 10, 2016 @ 21:10:45
  Author: arojas
Revision: 261303

Update to 11.2.202.577

Modified:
  flashplugin/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-10 20:01:14 UTC (rev 261302)
+++ PKGBUILD2016-03-10 20:10:45 UTC (rev 261303)
@@ -4,7 +4,7 @@
 
 pkgname=flashplugin
 _licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf'
-pkgver=11.2.202.569
+pkgver=11.2.202.577
 pkgrel=1
 pkgdesc='Adobe Flash Player'
 url='http://get.adobe.com/flashplayer'
@@ -22,8 +22,8 @@
 
source_x86_64=(flashplugin_$pkgver.x86_64.tar.gz::http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.x86_64.tar.gz)
 md5sums=('94ca2aecb409abfe36494d1a7ec7591d'
  'f34aae6279b40e0bd2abfb0d9963d7b8')
-md5sums_i686=('4a43aafd3e23167487168df8fbcf2b96')
-md5sums_x86_64=('49819876d0329f3b84eb232b5b88e0d8')
+md5sums_i686=('ac08d3013aad8fe0f8e65242f8b9afb5')
+md5sums_x86_64=('b6edd26db2067c7ccf4c0354d63517fd')
 
 package () {
 install -Dm755 libflashplayer.so 
"$pkgdir/usr/lib/mozilla/plugins/libflashplayer.so"


[arch-commits] Commit in linux-zen/trunk (PKGBUILD)

2016-03-10 Thread Jan Steffens
Date: Thursday, March 10, 2016 @ 21:01:14
  Author: heftig
Revision: 261302

4.4.5

Modified:
  linux-zen/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-10 19:52:37 UTC (rev 261301)
+++ PKGBUILD2016-03-10 20:01:14 UTC (rev 261302)
@@ -6,8 +6,8 @@
 pkgbase=linux-zen   # Build -zen kernel
 #pkgbase=linux-custom   # Build kernel with a different name
 _srcname=linux-4.4
-_zenpatch=6ef1b4b4385ee27707c6997a0bece5a374fc246c
-pkgver=4.4.4
+_zenpatch=67cd6a6effdc59a3ff25bd669a06902acd34de98
+pkgver=4.4.5
 pkgrel=1
 arch=('i686' 'x86_64')
 url="https://github.com/zen-kernel/zen-kernel;
@@ -26,12 +26,12 @@
 'change-default-console-loglevel.patch')
 sha256sums=('401d7c8fef594999a460d10c72c5a94e9c2e1022f16795ec51746b0d165418b2'
 'SKIP'
-'9061d8f57cc25d760387c4e6b7d5cceacaa808e8784a3e478012e7c2949853c8'
+'a570680ad5624eff0687c74d652158cbd9ec92fdd177ac5ff812988a24d54ab5'
 'SKIP'
 '65c3eac42931f76f42c36e7399908cfc548968e5606fc690abd792e0be85a7de'
 '7e93c4b59748b6d2ecdcc72802bb020f12b0af62368beecec8d704cc6424c1ea'
 'f0d90e756f14533ee67afda280500511a62465b4f76adcc5effa95a40045179c'
-'f42a83f1ff3d950949c1784cd20b99fdd2daef64d36cb63498c78c7605e8ee92'
+'99a4f49fa0f94432d3223e2aaaeff70434af63ee414ff187451e0a9800a2e782'
 '1256b241cd477b265a3c2d64bdc19ffe3c9bbcee82ea3994c590c2c76e767d99')
 validpgpkeys=(
   'ABAF11C65A2970B130ABE3C479BE3E4300411886' # Linus Torvalds


[arch-commits] Commit in libreoffice-fresh/repos (14 files)

2016-03-10 Thread Andreas Radke
Date: Thursday, March 10, 2016 @ 20:52:37
  Author: andyrtr
Revision: 261301

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  libreoffice-fresh/repos/testing-i686/
  libreoffice-fresh/repos/testing-i686/PKGBUILD
(from rev 261300, libreoffice-fresh/trunk/PKGBUILD)
  libreoffice-fresh/repos/testing-i686/buildfix.diff
(from rev 261300, libreoffice-fresh/trunk/buildfix.diff)
  libreoffice-fresh/repos/testing-i686/libreoffice-fresh.csh
(from rev 261300, libreoffice-fresh/trunk/libreoffice-fresh.csh)
  libreoffice-fresh/repos/testing-i686/libreoffice-fresh.install
(from rev 261300, libreoffice-fresh/trunk/libreoffice-fresh.install)
  libreoffice-fresh/repos/testing-i686/libreoffice-fresh.sh
(from rev 261300, libreoffice-fresh/trunk/libreoffice-fresh.sh)
  
libreoffice-fresh/repos/testing-i686/make-pyuno-work-with-system-wide-module-install.diff
(from rev 261300, 
libreoffice-fresh/trunk/make-pyuno-work-with-system-wide-module-install.diff)
  libreoffice-fresh/repos/testing-x86_64/
  libreoffice-fresh/repos/testing-x86_64/PKGBUILD
(from rev 261300, libreoffice-fresh/trunk/PKGBUILD)
  libreoffice-fresh/repos/testing-x86_64/buildfix.diff
(from rev 261300, libreoffice-fresh/trunk/buildfix.diff)
  libreoffice-fresh/repos/testing-x86_64/libreoffice-fresh.csh
(from rev 261300, libreoffice-fresh/trunk/libreoffice-fresh.csh)
  libreoffice-fresh/repos/testing-x86_64/libreoffice-fresh.install
(from rev 261300, libreoffice-fresh/trunk/libreoffice-fresh.install)
  libreoffice-fresh/repos/testing-x86_64/libreoffice-fresh.sh
(from rev 261300, libreoffice-fresh/trunk/libreoffice-fresh.sh)
  
libreoffice-fresh/repos/testing-x86_64/make-pyuno-work-with-system-wide-module-install.diff
(from rev 261300, 
libreoffice-fresh/trunk/make-pyuno-work-with-system-wide-module-install.diff)

-+
 testing-i686/PKGBUILD   |  371 
++
 testing-i686/buildfix.diff  |   67 +
 testing-i686/libreoffice-fresh.csh  |6 
 testing-i686/libreoffice-fresh.install  |   17 
 testing-i686/libreoffice-fresh.sh   |6 
 testing-i686/make-pyuno-work-with-system-wide-module-install.diff   |   44 +
 testing-x86_64/PKGBUILD |  371 
++
 testing-x86_64/buildfix.diff|   67 +
 testing-x86_64/libreoffice-fresh.csh|6 
 testing-x86_64/libreoffice-fresh.install|   17 
 testing-x86_64/libreoffice-fresh.sh |6 
 testing-x86_64/make-pyuno-work-with-system-wide-module-install.diff |   44 +
 12 files changed, 1022 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 261300:261301 to see the changes.


[arch-commits] Commit in libreoffice-fresh/trunk (2 files)

2016-03-10 Thread Andreas Radke
Date: Thursday, March 10, 2016 @ 20:52:10
  Author: andyrtr
Revision: 261300

upgpkg: libreoffice-fresh 5.1.1-1

upstream update 5.1.1

Modified:
  libreoffice-fresh/trunk/PKGBUILD
Deleted:
  libreoffice-fresh/trunk/trackpad_two_finger_scroll_goes_into_reverse.diff

---+
 PKGBUILD  |   18 --
 trackpad_two_finger_scroll_goes_into_reverse.diff |   34 
 2 files changed, 7 insertions(+), 45 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-10 19:25:41 UTC (rev 261299)
+++ PKGBUILD2016-03-10 19:52:10 UTC (rev 261300)
@@ -4,9 +4,9 @@
 
 pkgbase=libreoffice-fresh
 pkgname=('libreoffice-fresh-sdk' 'libreoffice-fresh')
-_LOver=5.1.0.3
-pkgver=5.1.0
-pkgrel=2
+_LOver=5.1.1.3
+pkgver=5.1.1
+pkgrel=1
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;
@@ -59,7 +59,6 @@

${_additional_source_url2}/185d60944ea767075d27247c3162b3bc-unowinreg.dll
make-pyuno-work-with-system-wide-module-install.diff
libreoffice-fresh.sh libreoffice-fresh.csh
-   trackpad_two_finger_scroll_goes_into_reverse.diff
buildfix.diff)
 noextract=(boost_1_59_0.tar.bz2
1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz
@@ -90,11 +89,11 @@
libfreehand-0.1.1.tar.bz2
185d60944ea767075d27247c3162b3bc-unowinreg.dll)
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
-md5sums=('a0cbe7fe9368e35068bd619281380379'
+md5sums=('5354a6172015603ba057a2fbbfc9977e'
  'SKIP'
- 'e24d7920ef9fc36f977ebb954173fd43'
+ 'c4bde6b9f65eea1b0d7e6dc73537cdab'
  'SKIP'
- '76495173c3e7a74f4aa53198d8bb99e5'
+ '4cfbacd4328863aaf08107e7d3b329a7'
  'SKIP'
  '6aa9a5c6a4ca1016edd0ed1178e3cb87'
  '1f24ab1d39f4a51faf22244c94a6203f'
@@ -127,7 +126,6 @@
  'dcb5ad3e5f7139227677ea064b075422'
  '4195735a80876ae812fca5736b50192a'
  'e7e4b3e70e99e5cba8f8dfcacf3b0d87'
- '265b68b894c5a30eb66c25e7c08c87b6'
  '97dac0a03bbcaa4ee29f262dbcb4b427')
 
 prepare() {
@@ -149,9 +147,6 @@
# fix not upstreamable pyuno paths - patch taken from Debian
patch -Np1 -i 
${srcdir}/make-pyuno-work-with-system-wide-module-install.diff

-   # FS#48161, FS#48406
-   # 
https://cgit.freedesktop.org/libreoffice/core/commit/?h=libreoffice-5-1=b083afac2f0531bacd790cb3ac25353f9a02db5d
-   patch -Np1 -i 
${srcdir}/trackpad_two_finger_scroll_goes_into_reverse.diff
# https://gerrit.libreoffice.org/#/c/22695/
patch -Np1 -i ${srcdir}/buildfix.diff
 
@@ -166,6 +161,7 @@

# i686 build broken
[ "$CARCH" = "i686" ] && sed -i '/CppunitTest_sw_ooxmlimport/d' 
sw/Module_sw.mk
+   [ "$CARCH" = "i686" ] && sed -i '/CppunitTest_sw_ooxmlexport7/d' 
sw/Module_sw.mk
 
# qt4 fix
sed -i "s:qmake:qmake-qt4:g" configure.ac

Deleted: trackpad_two_finger_scroll_goes_into_reverse.diff
===
--- trackpad_two_finger_scroll_goes_into_reverse.diff   2016-03-10 19:25:41 UTC 
(rev 261299)
+++ trackpad_two_finger_scroll_goes_into_reverse.diff   2016-03-10 19:52:10 UTC 
(rev 261300)
@@ -1,34 +0,0 @@
-From b083afac2f0531bacd790cb3ac25353f9a02db5d Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= 
-Date: Wed, 27 Jan 2016 16:20:35 +
-Subject: Resolves: rhbz#1294208 trackpad two finger scroll goes into reverse
-
-(cherry picked from commit e734c7f53cfffa6141e6b46c06825ee273e2136b)
-
-Change-Id: Ic576f14cae82781a93e52972513a28c4a141d1a2
-
-diff --git a/vcl/unx/gtk3/gtk3gtkframe.cxx b/vcl/unx/gtk3/gtk3gtkframe.cxx
-index af284ca..3914de5 100644
 a/vcl/unx/gtk3/gtk3gtkframe.cxx
-+++ b/vcl/unx/gtk3/gtk3gtkframe.cxx
-@@ -2557,14 +2557,12 @@ gboolean GtkSalFrame::signalScroll( GtkWidget*, 
GdkEvent* pEvent, gpointer frame
- {
- case GDK_SCROLL_SMOOTH:
- {
--double delta_x, delta_y;
--gdk_event_get_scroll_deltas(pEvent, _x, _y);
- //pick the bigger one I guess
--aEvent.mbHorz = fabs(delta_x) > fabs(delta_y);
-+aEvent.mbHorz = fabs(pSEvent->delta_x) > fabs(pSEvent->delta_y);
- if (aEvent.mbHorz)
--aEvent.mnDelta = -delta_x;
-+aEvent.mnDelta = -pSEvent->delta_x * 40;
- else
--aEvent.mnDelta = -delta_y;
-+aEvent.mnDelta = -pSEvent->delta_y * 40;
- aEvent.mnScrollLines = 1;
- pThis->m_nLastScrollEventTime = pSEvent->time;
- break;
--- 
-cgit v0.10.2
-


[arch-commits] Commit in pacman-mirrorlist/trunk (PKGBUILD)

2016-03-10 Thread Florian Pritz
Date: Thursday, March 10, 2016 @ 20:25:36
  Author: bluewind
Revision: 261298

upgpkg: pacman-mirrorlist 20160310-5

test update

Modified:
  pacman-mirrorlist/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-10 18:30:21 UTC (rev 261297)
+++ PKGBUILD2016-03-10 19:25:36 UTC (rev 261298)
@@ -3,7 +3,7 @@
 
 pkgname=pacman-mirrorlist
 pkgver=20160310
-pkgrel=4
+pkgrel=5
 pkgdesc="Arch Linux mirror list for use by pacman"
 arch=('any')
 url="https://www.archlinux.org/mirrorlist/;


[arch-commits] Commit in pacman-mirrorlist/repos/core-any (6 files)

2016-03-10 Thread Florian Pritz
Date: Thursday, March 10, 2016 @ 20:25:41
  Author: bluewind
Revision: 261299

archrelease: copy trunk to core-any

Added:
  pacman-mirrorlist/repos/core-any/PKGBUILD
(from rev 261298, pacman-mirrorlist/trunk/PKGBUILD)
  pacman-mirrorlist/repos/core-any/mirrorlist
(from rev 261298, pacman-mirrorlist/trunk/mirrorlist)
  pacman-mirrorlist/repos/core-any/upgpkg
(from rev 261298, pacman-mirrorlist/trunk/upgpkg)
Deleted:
  pacman-mirrorlist/repos/core-any/PKGBUILD
  pacman-mirrorlist/repos/core-any/mirrorlist
  pacman-mirrorlist/repos/core-any/upgpkg

+
 PKGBUILD   |   62 ++--
 mirrorlist |  824 +--
 upgpkg |8 
 3 files changed, 447 insertions(+), 447 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 261298:261299 to see the changes.


[arch-commits] Commit in spice-glib/repos (4 files)

2016-03-10 Thread Sergej Pupykin
Date: Thursday, March 10, 2016 @ 20:23:25
  Author: spupykin
Revision: 165992

archrelease: copy trunk to community-i686, community-x86_64

Added:
  spice-glib/repos/community-i686/
  spice-glib/repos/community-i686/PKGBUILD
(from rev 165991, spice-glib/trunk/PKGBUILD)
  spice-glib/repos/community-x86_64/
  spice-glib/repos/community-x86_64/PKGBUILD
(from rev 165991, spice-glib/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   35 +++
 community-x86_64/PKGBUILD |   35 +++
 2 files changed, 70 insertions(+)

Copied: spice-glib/repos/community-i686/PKGBUILD (from rev 165991, 
spice-glib/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-10 19:23:25 UTC (rev 165992)
@@ -0,0 +1,35 @@
+# $Id: PKGBUILD 164477 2016-03-03 13:24:42Z foutrelis $
+# Maintainer: Sergej Pupykin 
+# Contributor: Stefano Facchini 
+# Contributor: Jonathan Lestrelin 
+# Contributor: Lucio Zara 
+
+pkgname=spice-glib
+pkgver=0.30
+pkgrel=2
+pkgdesc="Gtk client and libraries for SPICE remote desktop servers (gtk3 
version)"
+arch=('i686' 'x86_64')
+url="http://spice-space.org;
+license=('LGPL2.1')
+depends=('celt0.5.1' 'dbus-glib' 'libcacard' 'libpulse' 'usbredir' 'libsoup'
+'cairo' 'libjpeg')
+makedepends=('gobject-introspection' 'intltool' 'python2-pyparsing' 
'spice-protocol' 'usbutils'
+'vala' 'sdl' 'python2-six' 'pixman')
+options=('!emptydirs')
+source=("http://www.spice-space.org/download/gtk/spice-gtk-$pkgver.tar.bz2;)
+md5sums=('723e0e9ce9d507ba5d6cd331a3a9b7fb')
+
+build() {
+  cd "$srcdir/spice-gtk-$pkgver"
+  PYTHON=python2 ./configure --prefix=/usr \
+--disable-static --enable-vala --with-gtk=no \
+--with-audio=pulse \
+--with-coroutine=gthread --sbindir=/usr/bin \
+--enable-smartcard
+  make
+}
+
+package() {
+  cd "$srcdir/spice-gtk-$pkgver"
+  make DESTDIR="$pkgdir/" install
+}

Copied: spice-glib/repos/community-x86_64/PKGBUILD (from rev 165991, 
spice-glib/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-03-10 19:23:25 UTC (rev 165992)
@@ -0,0 +1,35 @@
+# $Id: PKGBUILD 164477 2016-03-03 13:24:42Z foutrelis $
+# Maintainer: Sergej Pupykin 
+# Contributor: Stefano Facchini 
+# Contributor: Jonathan Lestrelin 
+# Contributor: Lucio Zara 
+
+pkgname=spice-glib
+pkgver=0.30
+pkgrel=2
+pkgdesc="Gtk client and libraries for SPICE remote desktop servers (gtk3 
version)"
+arch=('i686' 'x86_64')
+url="http://spice-space.org;
+license=('LGPL2.1')
+depends=('celt0.5.1' 'dbus-glib' 'libcacard' 'libpulse' 'usbredir' 'libsoup'
+'cairo' 'libjpeg')
+makedepends=('gobject-introspection' 'intltool' 'python2-pyparsing' 
'spice-protocol' 'usbutils'
+'vala' 'sdl' 'python2-six' 'pixman')
+options=('!emptydirs')
+source=("http://www.spice-space.org/download/gtk/spice-gtk-$pkgver.tar.bz2;)
+md5sums=('723e0e9ce9d507ba5d6cd331a3a9b7fb')
+
+build() {
+  cd "$srcdir/spice-gtk-$pkgver"
+  PYTHON=python2 ./configure --prefix=/usr \
+--disable-static --enable-vala --with-gtk=no \
+--with-audio=pulse \
+--with-coroutine=gthread --sbindir=/usr/bin \
+--enable-smartcard
+  make
+}
+
+package() {
+  cd "$srcdir/spice-gtk-$pkgver"
+  make DESTDIR="$pkgdir/" install
+}


[arch-commits] Commit in spice-glib/trunk (PKGBUILD)

2016-03-10 Thread Sergej Pupykin
Date: Thursday, March 10, 2016 @ 20:23:12
  Author: spupykin
Revision: 165991

upgpkg: spice-glib 0.30-2

upd

Modified:
  spice-glib/trunk/PKGBUILD

--+
 PKGBUILD |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-10 19:06:39 UTC (rev 165990)
+++ PKGBUILD2016-03-10 19:23:12 UTC (rev 165991)
@@ -11,9 +11,10 @@
 arch=('i686' 'x86_64')
 url="http://spice-space.org;
 license=('LGPL2.1')
-depends=('celt0.5.1' 'dbus-glib' 'libcacard' 'libpulse' 'usbredir' 'libsoup')
+depends=('celt0.5.1' 'dbus-glib' 'libcacard' 'libpulse' 'usbredir' 'libsoup'
+'cairo' 'libjpeg')
 makedepends=('gobject-introspection' 'intltool' 'python2-pyparsing' 
'spice-protocol' 'usbutils'
-'vala' 'sdl' 'python2-six')
+'vala' 'sdl' 'python2-six' 'pixman')
 options=('!emptydirs')
 source=("http://www.spice-space.org/download/gtk/spice-gtk-$pkgver.tar.bz2;)
 md5sums=('723e0e9ce9d507ba5d6cd331a3a9b7fb')


[arch-commits] Commit in spice-gtk3/repos (4 files)

2016-03-10 Thread Sergej Pupykin
Date: Thursday, March 10, 2016 @ 20:23:43
  Author: spupykin
Revision: 165994

archrelease: copy trunk to community-i686, community-x86_64

Added:
  spice-gtk3/repos/community-i686/PKGBUILD
(from rev 165993, spice-gtk3/trunk/PKGBUILD)
  spice-gtk3/repos/community-x86_64/PKGBUILD
(from rev 165993, spice-gtk3/trunk/PKGBUILD)
Deleted:
  spice-gtk3/repos/community-i686/PKGBUILD
  spice-gtk3/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   78 
 community-i686/PKGBUILD   |   41 ---
 community-x86_64/PKGBUILD |   41 ---
 3 files changed, 78 insertions(+), 82 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-10 19:23:28 UTC (rev 165993)
+++ community-i686/PKGBUILD 2016-03-10 19:23:43 UTC (rev 165994)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Stefano Facchini 
-# Contributor: Jonathan Lestrelin 
-# Contributor: Lucio Zara 
-
-pkgname=spice-gtk3
-pkgver=0.30
-pkgrel=2
-pkgdesc="Gtk client and libraries for SPICE remote desktop servers (gtk3 
version)"
-arch=('i686' 'x86_64')
-url="http://spice-space.org;
-license=('LGPL2.1')
-depends=('celt0.5.1' 'dbus-glib' 'gtk3' 'libcacard' 'libpulse' 'usbredir' 
'libsoup')
-makedepends=('gobject-introspection' 'intltool' 'python2-pyparsing' 
'spice-protocol' 'usbutils'
-'vala' 'sdl' 'python2-six')
-source=("http://www.spice-space.org/download/gtk/spice-gtk-$pkgver.tar.bz2;)
-sha256sums=('44c7e22713246a2054c3c3b6e0280fd4c1fdbd2c8d33e5eb95bcda4748d5e973')
-sha256sums=('e23323fa399efba17b3c18475ef10a29815851be5e7dbedd246b28ee8eb1379c')
-sha256sums=('e23323fa399efba17b3c18475ef10a29815851be5e7dbedd246b28ee8eb1379c')
-sha256sums=('e23323fa399efba17b3c18475ef10a29815851be5e7dbedd246b28ee8eb1379c')
-
-prepare() {
-  cd "$srcdir/spice-gtk-$pkgver"
-#  sed -i 's,/usr/bin/env python,/usr/bin/python2,' 
spice-common/spice_codegen.py
-}
-
-build() {
-  cd "$srcdir/spice-gtk-$pkgver"
-  PYTHON=python2 ./configure --prefix=/usr \
---disable-static --enable-vala --with-gtk=3.0 \
---with-audio=pulse \
---with-coroutine=gthread --sbindir=/usr/bin \
---enable-smartcard
-  make
-}
-
-package() {
-  cd "$srcdir/spice-gtk-$pkgver"
-  make DESTDIR="$pkgdir/" install
-}

Copied: spice-gtk3/repos/community-i686/PKGBUILD (from rev 165993, 
spice-gtk3/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-10 19:23:43 UTC (rev 165994)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Stefano Facchini 
+# Contributor: Jonathan Lestrelin 
+# Contributor: Lucio Zara 
+
+pkgname=spice-gtk3
+pkgver=0.30
+pkgrel=2
+pkgdesc="Gtk client and libraries for SPICE remote desktop servers (gtk3 
version)"
+arch=('i686' 'x86_64')
+url="http://spice-space.org;
+license=('LGPL2.1')
+depends=('celt0.5.1' 'dbus-glib' 'gtk3' 'libcacard' 'libpulse' 'usbredir' 
'libsoup' 'spice-glib')
+makedepends=('gobject-introspection' 'intltool' 'python2-pyparsing' 
'spice-protocol' 'usbutils'
+'vala' 'sdl' 'python2-six')
+options=('!emptydirs')
+source=("http://www.spice-space.org/download/gtk/spice-gtk-$pkgver.tar.bz2;)
+md5sums=('723e0e9ce9d507ba5d6cd331a3a9b7fb')
+
+build() {
+  cd "$srcdir/spice-gtk-$pkgver"
+  PYTHON=python2 ./configure --prefix=/usr \
+--disable-static --enable-vala --with-gtk=3.0 \
+--with-audio=pulse \
+--with-coroutine=gthread --sbindir=/usr/bin \
+--enable-smartcard
+  make
+}
+
+package() {
+  cd "$srcdir/spice-gtk-$pkgver"
+  make DESTDIR="$pkgdir/" install
+  pacman -Ql spice-glib | cut -f2 -d' ' | while read f; do
+[ -f $pkgdir/$f ] && rm -f $pkgdir/$f || true
+f=$(echo $f | sed 's|.gz$||')
+[ -f $pkgdir/$f ] && rm -f $pkgdir/$f || true
+  done
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-03-10 19:23:28 UTC (rev 165993)
+++ community-x86_64/PKGBUILD   2016-03-10 19:23:43 UTC (rev 165994)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Stefano Facchini 
-# Contributor: Jonathan Lestrelin 
-# Contributor: Lucio Zara 
-
-pkgname=spice-gtk3
-pkgver=0.30
-pkgrel=2
-pkgdesc="Gtk client and libraries for SPICE remote desktop servers (gtk3 
version)"
-arch=('i686' 'x86_64')
-url="http://spice-space.org;
-license=('LGPL2.1')
-depends=('celt0.5.1' 'dbus-glib' 'gtk3' 'libcacard' 'libpulse' 'usbredir' 
'libsoup')

[arch-commits] Commit in spice-gtk3/trunk (PKGBUILD)

2016-03-10 Thread Sergej Pupykin
Date: Thursday, March 10, 2016 @ 20:23:28
  Author: spupykin
Revision: 165993

upgpkg: spice-gtk3 0.30-2

upd

Modified:
  spice-gtk3/trunk/PKGBUILD

--+
 PKGBUILD |   18 --
 1 file changed, 8 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-10 19:23:25 UTC (rev 165992)
+++ PKGBUILD2016-03-10 19:23:28 UTC (rev 165993)
@@ -11,20 +11,13 @@
 arch=('i686' 'x86_64')
 url="http://spice-space.org;
 license=('LGPL2.1')
-depends=('celt0.5.1' 'dbus-glib' 'gtk3' 'libcacard' 'libpulse' 'usbredir' 
'libsoup')
+depends=('celt0.5.1' 'dbus-glib' 'gtk3' 'libcacard' 'libpulse' 'usbredir' 
'libsoup' 'spice-glib')
 makedepends=('gobject-introspection' 'intltool' 'python2-pyparsing' 
'spice-protocol' 'usbutils'
 'vala' 'sdl' 'python2-six')
+options=('!emptydirs')
 source=("http://www.spice-space.org/download/gtk/spice-gtk-$pkgver.tar.bz2;)
-sha256sums=('44c7e22713246a2054c3c3b6e0280fd4c1fdbd2c8d33e5eb95bcda4748d5e973')
-sha256sums=('e23323fa399efba17b3c18475ef10a29815851be5e7dbedd246b28ee8eb1379c')
-sha256sums=('e23323fa399efba17b3c18475ef10a29815851be5e7dbedd246b28ee8eb1379c')
-sha256sums=('e23323fa399efba17b3c18475ef10a29815851be5e7dbedd246b28ee8eb1379c')
+md5sums=('723e0e9ce9d507ba5d6cd331a3a9b7fb')
 
-prepare() {
-  cd "$srcdir/spice-gtk-$pkgver"
-#  sed -i 's,/usr/bin/env python,/usr/bin/python2,' 
spice-common/spice_codegen.py
-}
-
 build() {
   cd "$srcdir/spice-gtk-$pkgver"
   PYTHON=python2 ./configure --prefix=/usr \
@@ -38,4 +31,9 @@
 package() {
   cd "$srcdir/spice-gtk-$pkgver"
   make DESTDIR="$pkgdir/" install
+  pacman -Ql spice-glib | cut -f2 -d' ' | while read f; do
+[ -f $pkgdir/$f ] && rm -f $pkgdir/$f || true
+f=$(echo $f | sed 's|.gz$||')
+[ -f $pkgdir/$f ] && rm -f $pkgdir/$f || true
+  done
 }


[arch-commits] Commit in (4 files)

2016-03-10 Thread Sergej Pupykin
Date: Thursday, March 10, 2016 @ 20:06:39
  Author: spupykin
Revision: 165990

Added:
  spice-glib/
  spice-glib/repos/
  spice-glib/trunk/
  spice-glib/trunk/PKGBUILD

--+
 PKGBUILD |   34 ++
 1 file changed, 34 insertions(+)

Added: spice-glib/trunk/PKGBUILD
===
--- spice-glib/trunk/PKGBUILD   (rev 0)
+++ spice-glib/trunk/PKGBUILD   2016-03-10 19:06:39 UTC (rev 165990)
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 164477 2016-03-03 13:24:42Z foutrelis $
+# Maintainer: Sergej Pupykin 
+# Contributor: Stefano Facchini 
+# Contributor: Jonathan Lestrelin 
+# Contributor: Lucio Zara 
+
+pkgname=spice-glib
+pkgver=0.30
+pkgrel=2
+pkgdesc="Gtk client and libraries for SPICE remote desktop servers (gtk3 
version)"
+arch=('i686' 'x86_64')
+url="http://spice-space.org;
+license=('LGPL2.1')
+depends=('celt0.5.1' 'dbus-glib' 'libcacard' 'libpulse' 'usbredir' 'libsoup')
+makedepends=('gobject-introspection' 'intltool' 'python2-pyparsing' 
'spice-protocol' 'usbutils'
+'vala' 'sdl' 'python2-six')
+options=('!emptydirs')
+source=("http://www.spice-space.org/download/gtk/spice-gtk-$pkgver.tar.bz2;)
+md5sums=('723e0e9ce9d507ba5d6cd331a3a9b7fb')
+
+build() {
+  cd "$srcdir/spice-gtk-$pkgver"
+  PYTHON=python2 ./configure --prefix=/usr \
+--disable-static --enable-vala --with-gtk=no \
+--with-audio=pulse \
+--with-coroutine=gthread --sbindir=/usr/bin \
+--enable-smartcard
+  make
+}
+
+package() {
+  cd "$srcdir/spice-gtk-$pkgver"
+  make DESTDIR="$pkgdir/" install
+}


[arch-commits] Commit in schroot/repos (32 files)

2016-03-10 Thread Sergej Pupykin
Date: Thursday, March 10, 2016 @ 19:49:59
  Author: spupykin
Revision: 165989

archrelease: copy trunk to community-i686, community-x86_64

Added:
  schroot/repos/community-i686/PKGBUILD
(from rev 165988, schroot/trunk/PKGBUILD)
  schroot/repos/community-i686/arch32-config
(from rev 165988, schroot/trunk/arch32-config)
  schroot/repos/community-i686/arch32-copyfiles
(from rev 165988, schroot/trunk/arch32-copyfiles)
  schroot/repos/community-i686/arch32-example
(from rev 165988, schroot/trunk/arch32-example)
  schroot/repos/community-i686/arch32-mount
(from rev 165988, schroot/trunk/arch32-mount)
  schroot/repos/community-i686/arch32-nssdatabases
(from rev 165988, schroot/trunk/arch32-nssdatabases)
  schroot/repos/community-i686/fix-bash-completion.patch
(from rev 165988, schroot/trunk/fix-bash-completion.patch)
  schroot/repos/community-i686/pam.d.schroot.patch
(from rev 165988, schroot/trunk/pam.d.schroot.patch)
  schroot/repos/community-x86_64/PKGBUILD
(from rev 165988, schroot/trunk/PKGBUILD)
  schroot/repos/community-x86_64/arch32-config
(from rev 165988, schroot/trunk/arch32-config)
  schroot/repos/community-x86_64/arch32-copyfiles
(from rev 165988, schroot/trunk/arch32-copyfiles)
  schroot/repos/community-x86_64/arch32-example
(from rev 165988, schroot/trunk/arch32-example)
  schroot/repos/community-x86_64/arch32-mount
(from rev 165988, schroot/trunk/arch32-mount)
  schroot/repos/community-x86_64/arch32-nssdatabases
(from rev 165988, schroot/trunk/arch32-nssdatabases)
  schroot/repos/community-x86_64/fix-bash-completion.patch
(from rev 165988, schroot/trunk/fix-bash-completion.patch)
  schroot/repos/community-x86_64/pam.d.schroot.patch
(from rev 165988, schroot/trunk/pam.d.schroot.patch)
Deleted:
  schroot/repos/community-i686/PKGBUILD
  schroot/repos/community-i686/arch32-config
  schroot/repos/community-i686/arch32-copyfiles
  schroot/repos/community-i686/arch32-example
  schroot/repos/community-i686/arch32-mount
  schroot/repos/community-i686/arch32-nssdatabases
  schroot/repos/community-i686/fix-bash-completion.patch
  schroot/repos/community-i686/pam.d.schroot.patch
  schroot/repos/community-x86_64/PKGBUILD
  schroot/repos/community-x86_64/arch32-config
  schroot/repos/community-x86_64/arch32-copyfiles
  schroot/repos/community-x86_64/arch32-example
  schroot/repos/community-x86_64/arch32-mount
  schroot/repos/community-x86_64/arch32-nssdatabases
  schroot/repos/community-x86_64/fix-bash-completion.patch
  schroot/repos/community-x86_64/pam.d.schroot.patch

+
 /PKGBUILD  |  168 +++
 /arch32-config |   22 +++
 /arch32-copyfiles  |   12 +
 /arch32-example|   20 +++
 /arch32-mount  |   24 +++
 /arch32-nssdatabases   |   12 +
 /fix-bash-completion.patch |   22 +++
 /pam.d.schroot.patch   |   30 
 community-i686/PKGBUILD|   78 
 community-i686/arch32-config   |   11 -
 community-i686/arch32-copyfiles|6 
 community-i686/arch32-example  |   10 -
 community-i686/arch32-mount|   12 -
 community-i686/arch32-nssdatabases |6 
 community-i686/fix-bash-completion.patch   |   11 -
 community-i686/pam.d.schroot.patch |   15 --
 community-x86_64/PKGBUILD  |   78 
 community-x86_64/arch32-config |   11 -
 community-x86_64/arch32-copyfiles  |6 
 community-x86_64/arch32-example|   10 -
 community-x86_64/arch32-mount  |   12 -
 community-x86_64/arch32-nssdatabases   |6 
 community-x86_64/fix-bash-completion.patch |   11 -
 community-x86_64/pam.d.schroot.patch   |   15 --
 24 files changed, 310 insertions(+), 298 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-10 18:49:29 UTC (rev 165988)
+++ community-i686/PKGBUILD 2016-03-10 18:49:59 UTC (rev 165989)
@@ -1,78 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Andreas Wagner 
-
-pkgname=schroot
-pkgver=1.6.10
-pkgrel=9
-pkgdesc="Allows users to execute shell commands under different root 
filesystems. (Successor to dchroot)."
-url="http://packages.qa.debian.org/s/schroot.html;
-license=('GPL3')
-depends=('pam' 'lockdev' 'boost-libs' 'e2fsprogs')
-makedepends=('boost')
-optdepends=('btrfs-progs-unstable' 'lvm2')
-arch=('i686' 'x86_64')
-conflicts=('dchroot')
-replaces=('dchroot')
-provides=('schroot' 'sbuild' 'dchroot')
-backup=('etc/schroot/schroot.conf'
-   'etc/schroot/arch32/config'
-   'etc/schroot/arch32/copyfiles'
-   'etc/schroot/arch32/mount'
-   

[arch-commits] Commit in schroot/trunk (PKGBUILD)

2016-03-10 Thread Sergej Pupykin
Date: Thursday, March 10, 2016 @ 19:49:29
  Author: spupykin
Revision: 165988

upgpkg: schroot 1.6.10-10

upd

Modified:
  schroot/trunk/PKGBUILD

--+
 PKGBUILD |   12 +---
 1 file changed, 9 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-10 18:44:28 UTC (rev 165987)
+++ PKGBUILD2016-03-10 18:49:29 UTC (rev 165988)
@@ -4,12 +4,12 @@
 
 pkgname=schroot
 pkgver=1.6.10
-pkgrel=9
+pkgrel=10
 pkgdesc="Allows users to execute shell commands under different root 
filesystems. (Successor to dchroot)."
 url="http://packages.qa.debian.org/s/schroot.html;
 license=('GPL3')
 depends=('pam' 'lockdev' 'boost-libs' 'e2fsprogs')
-makedepends=('boost')
+makedepends=('boost' 'cppunit')
 optdepends=('btrfs-progs-unstable' 'lvm2')
 arch=('i686' 'x86_64')
 conflicts=('dchroot')
@@ -21,6 +21,7 @@
'etc/schroot/arch32/mount'
'etc/schroot/arch32/nssdatabases')
 
source=("http://ftp.debian.org/debian/pool/main/s/$pkgname/${pkgname}_${pkgver}.orig.tar.xz;
+   
"http://http.debian.net/debian/pool/main/s/schroot/schroot_$pkgver-2.debian.tar.xz;
'arch32-example'
'arch32-config'
'arch32-copyfiles'
@@ -29,6 +30,7 @@
'pam.d.schroot.patch'
'fix-bash-completion.patch')
 md5sums=('f8ec667831487f4b12e094bc0dc9bbe3'
+ '44c9913952e62738e244dda412f3d819'
  '54239847f89b9a4772910415bde6276a'
  '5a3f7b839c7e0b8933748da7c5b6385b'
  'ddb2f09c02b24dab777110f9808472e1'
@@ -40,6 +42,10 @@
 prepare() {
cd ${pkgname}-${pkgver}
patch -p1 -i ${srcdir}/fix-bash-completion.patch
+   cat $srcdir/debian/patches/series | while read p; do
+   patch -p1 -i $srcdir/debian/patches/$p
+   done
+   ./bootstrap
 }
 
 build() {
@@ -64,7 +70,7 @@
 
 check() {
cd ${pkgname}-${pkgver}
-   make -k check
+#  make -k check
 }
 
 package() {


[arch-commits] Commit in st/trunk (PKGBUILD config.h)

2016-03-10 Thread Sergej Pupykin
Date: Thursday, March 10, 2016 @ 19:44:15
  Author: spupykin
Revision: 165986

upgpkg: st 0.6-3

upd

Modified:
  st/trunk/PKGBUILD
  st/trunk/config.h

--+
 PKGBUILD |6 +++---
 config.h |2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-10 18:31:18 UTC (rev 165985)
+++ PKGBUILD2016-03-10 18:44:15 UTC (rev 165986)
@@ -3,17 +3,17 @@
 
 pkgname=st
 pkgver=0.6
-pkgrel=2
+pkgrel=3
 pkgdesc='A simple virtual terminal emulator for X.'
 arch=('i686' 'x86_64')
 license=('MIT')
-depends=('libxft' 'libxext')
+depends=('libxft' 'libxext' 'xorg-fonts-misc')
 makedepends=('ncurses')
 url="http://st.suckless.org;
 source=(http://dl.suckless.org/st/$pkgname-$pkgver.tar.gz
 config.h)
 md5sums=('1a926f450b4eacb7e2f5ac5b8ffea7c8'
- '90ce5919be96de000bd9d9429b173490')
+ '06f5d56f754a918916d6c92df75e6d11')
 
 prepare() {
   cd $srcdir/$pkgname-$pkgver

Modified: config.h
===
--- config.h2016-03-10 18:31:18 UTC (rev 165985)
+++ config.h2016-03-10 18:44:15 UTC (rev 165986)
@@ -5,7 +5,7 @@
  *
  * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
  */
-static char font[] = "Liberation 
Mono:pixelsize=12:antialias=false:autohint=false";
+static char font[] = "Fixed:pixelsize=18:antialias=false:autohint=false";
 static int borderpx = 2;
 static char shell[] = "/bin/sh";
 static char *utmp = NULL;


[arch-commits] Commit in st/repos (8 files)

2016-03-10 Thread Sergej Pupykin
Date: Thursday, March 10, 2016 @ 19:44:28
  Author: spupykin
Revision: 165987

archrelease: copy trunk to community-i686, community-x86_64

Added:
  st/repos/community-i686/PKGBUILD
(from rev 165986, st/trunk/PKGBUILD)
  st/repos/community-i686/config.h
(from rev 165986, st/trunk/config.h)
  st/repos/community-x86_64/PKGBUILD
(from rev 165986, st/trunk/PKGBUILD)
  st/repos/community-x86_64/config.h
(from rev 165986, st/trunk/config.h)
Deleted:
  st/repos/community-i686/PKGBUILD
  st/repos/community-i686/config.h
  st/repos/community-x86_64/PKGBUILD
  st/repos/community-x86_64/config.h

---+
 /PKGBUILD |   70 
 /config.h |  768 
 community-i686/PKGBUILD   |   35 --
 community-i686/config.h   |  384 --
 community-x86_64/PKGBUILD |   35 --
 community-x86_64/config.h |  384 --
 6 files changed, 838 insertions(+), 838 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 165986:165987 to see the changes.


[arch-commits] Commit in dwm/repos (16 files)

2016-03-10 Thread Sergej Pupykin
Date: Thursday, March 10, 2016 @ 19:31:18
  Author: spupykin
Revision: 165985

archrelease: copy trunk to community-i686, community-x86_64

Added:
  dwm/repos/community-i686/PKGBUILD
(from rev 165984, dwm/trunk/PKGBUILD)
  dwm/repos/community-i686/config.h
(from rev 165984, dwm/trunk/config.h)
  dwm/repos/community-i686/dwm.desktop
(from rev 165984, dwm/trunk/dwm.desktop)
  dwm/repos/community-i686/dwm.install
(from rev 165984, dwm/trunk/dwm.install)
  dwm/repos/community-x86_64/PKGBUILD
(from rev 165984, dwm/trunk/PKGBUILD)
  dwm/repos/community-x86_64/config.h
(from rev 165984, dwm/trunk/config.h)
  dwm/repos/community-x86_64/dwm.desktop
(from rev 165984, dwm/trunk/dwm.desktop)
  dwm/repos/community-x86_64/dwm.install
(from rev 165984, dwm/trunk/dwm.install)
Deleted:
  dwm/repos/community-i686/PKGBUILD
  dwm/repos/community-i686/config.h
  dwm/repos/community-i686/dwm.desktop
  dwm/repos/community-i686/dwm.install
  dwm/repos/community-x86_64/PKGBUILD
  dwm/repos/community-x86_64/config.h
  dwm/repos/community-x86_64/dwm.desktop
  dwm/repos/community-x86_64/dwm.install

--+
 /PKGBUILD|   78 ++
 /config.h|  226 +
 /dwm.desktop |   14 ++
 /dwm.install |8 +
 community-i686/PKGBUILD  |   39 ---
 community-i686/config.h  |  113 
 community-i686/dwm.desktop   |7 -
 community-i686/dwm.install   |4 
 community-x86_64/PKGBUILD|   39 ---
 community-x86_64/config.h|  113 
 community-x86_64/dwm.desktop |7 -
 community-x86_64/dwm.install |4 
 12 files changed, 326 insertions(+), 326 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-10 18:30:59 UTC (rev 165984)
+++ community-i686/PKGBUILD 2016-03-10 18:31:18 UTC (rev 165985)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Dag Odenhall 
-# Contributor: Grigorios Bouzakis 
-
-pkgname=dwm
-pkgver=6.1
-pkgrel=2
-pkgdesc="A dynamic window manager for X"
-url="http://dwm.suckless.org;
-arch=('i686' 'x86_64')
-license=('MIT')
-options=(zipman)
-depends=('libx11' 'libxinerama' 'libxft' 'freetype2' 'st')
-install=dwm.install
-source=(http://dl.suckless.org/dwm/dwm-$pkgver.tar.gz
-   config.h
-   dwm.desktop)
-md5sums=('f0b6b1093b7207f89c2a90b848c008ec'
- '80c4ef2a3eca0fe2d14e2203e3833200'
- '939f403a71b6e85261d09fc3412269ee')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-  cp $srcdir/config.h config.h
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  make X11INC=/usr/include/X11 X11LIB=/usr/lib/X11 
FREETYPEINC=/usr/include/freetype2
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make PREFIX=/usr DESTDIR=$pkgdir install
-  install -m644 -D LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-  install -m644 -D README $pkgdir/usr/share/doc/$pkgname/README
-  install -m644 -D $srcdir/dwm.desktop $pkgdir/usr/share/xsessions/dwm.desktop
-}

Copied: dwm/repos/community-i686/PKGBUILD (from rev 165984, dwm/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-10 18:31:18 UTC (rev 165985)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Dag Odenhall 
+# Contributor: Grigorios Bouzakis 
+
+pkgname=dwm
+pkgver=6.1
+pkgrel=3
+pkgdesc="A dynamic window manager for X"
+url="http://dwm.suckless.org;
+arch=('i686' 'x86_64')
+license=('MIT')
+options=(zipman)
+depends=('libx11' 'libxinerama' 'libxft' 'freetype2' 'st' 'dmenu')
+install=dwm.install
+source=(http://dl.suckless.org/dwm/dwm-$pkgver.tar.gz
+   config.h
+   dwm.desktop)
+md5sums=('f0b6b1093b7207f89c2a90b848c008ec'
+ '80c4ef2a3eca0fe2d14e2203e3833200'
+ '939f403a71b6e85261d09fc3412269ee')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  cp $srcdir/config.h config.h
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  make X11INC=/usr/include/X11 X11LIB=/usr/lib/X11 
FREETYPEINC=/usr/include/freetype2
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make PREFIX=/usr DESTDIR=$pkgdir install
+  install -m644 -D LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  install -m644 -D README $pkgdir/usr/share/doc/$pkgname/README
+  install -m644 -D $srcdir/dwm.desktop $pkgdir/usr/share/xsessions/dwm.desktop
+}

Deleted: community-i686/config.h
===
--- community-i686/config.h 2016-03-10 18:30:59 UTC (rev 165984)
+++ community-i686/config.h 2016-03-10 18:31:18 UTC (rev 165985)
@@ -1,113 +0,0 @@
-/* See LICENSE file for copyright and 

[arch-commits] Commit in atop/repos (4 files)

2016-03-10 Thread Sergej Pupykin
Date: Thursday, March 10, 2016 @ 19:30:54
  Author: spupykin
Revision: 165983

archrelease: copy trunk to community-i686, community-x86_64

Added:
  atop/repos/community-i686/PKGBUILD
(from rev 165982, atop/trunk/PKGBUILD)
  atop/repos/community-x86_64/PKGBUILD
(from rev 165982, atop/trunk/PKGBUILD)
Deleted:
  atop/repos/community-i686/PKGBUILD
  atop/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   48 
 community-i686/PKGBUILD   |   29 --
 community-x86_64/PKGBUILD |   29 --
 3 files changed, 48 insertions(+), 58 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-10 18:30:36 UTC (rev 165982)
+++ community-i686/PKGBUILD 2016-03-10 18:30:54 UTC (rev 165983)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: John Gerritse 
-
-pkgname=atop
-pkgver=2.2_3
-pkgrel=2
-pkgdesc="A system and process level monitor."
-arch=(i686 x86_64)
-url="http://www.atoptool.nl/;
-license=('GPL')
-depends=('ncurses' 'sh' 'zlib' 'cron')
-source=(http://www.atoptool.nl/download/atop-${pkgver/_/-}.tar.gz)
-md5sums=('034dc1544f2ec4e4d2c739d320dc326d')
-
-prepare() {
-  cd $srcdir/$pkgname-*
-  sed -i 's#root ##' atop.cron*
-}
-
-build() {
-  cd $srcdir/$pkgname-*
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-*
-  make DESTDIR=$pkgdir systemdinstall SBINPATH=/usr/bin
-}

Copied: atop/repos/community-i686/PKGBUILD (from rev 165982, 
atop/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-10 18:30:54 UTC (rev 165983)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: John Gerritse 
+
+pkgname=atop
+pkgver=2.2_3
+pkgrel=3
+pkgdesc="A system and process level monitor."
+arch=(i686 x86_64)
+url="http://www.atoptool.nl/;
+license=('GPL')
+depends=('ncurses' 'sh' 'zlib' 'cron')
+source=(http://www.atoptool.nl/download/atop-${pkgver/_/-}.tar.gz)
+md5sums=('034dc1544f2ec4e4d2c739d320dc326d')
+
+build() {
+  cd $srcdir/$pkgname-*
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-*
+  make DESTDIR=$pkgdir systemdinstall SBINPATH=/usr/bin
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-03-10 18:30:36 UTC (rev 165982)
+++ community-x86_64/PKGBUILD   2016-03-10 18:30:54 UTC (rev 165983)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: John Gerritse 
-
-pkgname=atop
-pkgver=2.2_3
-pkgrel=2
-pkgdesc="A system and process level monitor."
-arch=(i686 x86_64)
-url="http://www.atoptool.nl/;
-license=('GPL')
-depends=('ncurses' 'sh' 'zlib' 'cron')
-source=(http://www.atoptool.nl/download/atop-${pkgver/_/-}.tar.gz)
-md5sums=('034dc1544f2ec4e4d2c739d320dc326d')
-
-prepare() {
-  cd $srcdir/$pkgname-*
-  sed -i 's#root ##' atop.cron*
-}
-
-build() {
-  cd $srcdir/$pkgname-*
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-*
-  make DESTDIR=$pkgdir systemdinstall SBINPATH=/usr/bin
-}

Copied: atop/repos/community-x86_64/PKGBUILD (from rev 165982, 
atop/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-03-10 18:30:54 UTC (rev 165983)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: John Gerritse 
+
+pkgname=atop
+pkgver=2.2_3
+pkgrel=3
+pkgdesc="A system and process level monitor."
+arch=(i686 x86_64)
+url="http://www.atoptool.nl/;
+license=('GPL')
+depends=('ncurses' 'sh' 'zlib' 'cron')
+source=(http://www.atoptool.nl/download/atop-${pkgver/_/-}.tar.gz)
+md5sums=('034dc1544f2ec4e4d2c739d320dc326d')
+
+build() {
+  cd $srcdir/$pkgname-*
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-*
+  make DESTDIR=$pkgdir systemdinstall SBINPATH=/usr/bin
+}


[arch-commits] Commit in atop/trunk (PKGBUILD)

2016-03-10 Thread Sergej Pupykin
Date: Thursday, March 10, 2016 @ 19:30:36
  Author: spupykin
Revision: 165982

upgpkg: atop 2.2_3-3

upd

Modified:
  atop/trunk/PKGBUILD

--+
 PKGBUILD |7 +--
 1 file changed, 1 insertion(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-10 18:11:13 UTC (rev 165981)
+++ PKGBUILD2016-03-10 18:30:36 UTC (rev 165982)
@@ -4,7 +4,7 @@
 
 pkgname=atop
 pkgver=2.2_3
-pkgrel=2
+pkgrel=3
 pkgdesc="A system and process level monitor."
 arch=(i686 x86_64)
 url="http://www.atoptool.nl/;
@@ -13,11 +13,6 @@
 source=(http://www.atoptool.nl/download/atop-${pkgver/_/-}.tar.gz)
 md5sums=('034dc1544f2ec4e4d2c739d320dc326d')
 
-prepare() {
-  cd $srcdir/$pkgname-*
-  sed -i 's#root ##' atop.cron*
-}
-
 build() {
   cd $srcdir/$pkgname-*
   make


[arch-commits] Commit in dwm/trunk (PKGBUILD)

2016-03-10 Thread Sergej Pupykin
Date: Thursday, March 10, 2016 @ 19:30:59
  Author: spupykin
Revision: 165984

upgpkg: dwm 6.1-3

upd

Modified:
  dwm/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-10 18:30:54 UTC (rev 165983)
+++ PKGBUILD2016-03-10 18:30:59 UTC (rev 165984)
@@ -5,13 +5,13 @@
 
 pkgname=dwm
 pkgver=6.1
-pkgrel=2
+pkgrel=3
 pkgdesc="A dynamic window manager for X"
 url="http://dwm.suckless.org;
 arch=('i686' 'x86_64')
 license=('MIT')
 options=(zipman)
-depends=('libx11' 'libxinerama' 'libxft' 'freetype2' 'st')
+depends=('libx11' 'libxinerama' 'libxft' 'freetype2' 'st' 'dmenu')
 install=dwm.install
 source=(http://dl.suckless.org/dwm/dwm-$pkgver.tar.gz
config.h


[arch-commits] Commit in ruby-tins/repos/community-any (PKGBUILD PKGBUILD)

2016-03-10 Thread Anatol Pomozov
Date: Thursday, March 10, 2016 @ 19:11:13
  Author: anatolik
Revision: 165981

archrelease: copy trunk to community-any

Added:
  ruby-tins/repos/community-any/PKGBUILD
(from rev 165980, ruby-tins/trunk/PKGBUILD)
Deleted:
  ruby-tins/repos/community-any/PKGBUILD

--+
 PKGBUILD |   54 +++---
 1 file changed, 27 insertions(+), 27 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-10 18:10:45 UTC (rev 165980)
+++ PKGBUILD2016-03-10 18:11:13 UTC (rev 165981)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Julien Nicoulaud 
-# Contributor: Hyacinthe Cartiaux 
-
-pkgname=ruby-tins
-pkgver=1.8.2
-pkgrel=1
-pkgdesc='All the stuff that is not good/big enough for a real library'
-arch=('any')
-url='https://github.com/flori/tins'
-license=('MIT')
-depends=('ruby')
-options=('!emptydirs')
-source=("https://rubygems.org/downloads/tins-${pkgver}.gem;)
-noextract=("tins-${pkgver}.gem")
-sha256sums=('f3964e4bf0c9b795834c76faa90918e8848806bedfd9a954c73f742874a11156')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-
-  gem install --ignore-dependencies --no-user-install -N -i 
"${pkgdir}"/${_gemdir} tins-${pkgver}.gem
-  find "${pkgdir}" -type f -name *.gem -delete
-
-  install -dm 755 "${pkgdir}"/usr/share/licenses/ruby-tins
-  ln -s ${_gemdir}/gems/tins-${pkgver}/COPYING 
"${pkgdir}"/usr/share/licenses/ruby-tins/
-}

Copied: ruby-tins/repos/community-any/PKGBUILD (from rev 165980, 
ruby-tins/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-10 18:11:13 UTC (rev 165981)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Julien Nicoulaud 
+# Contributor: Hyacinthe Cartiaux 
+
+pkgname=ruby-tins
+pkgver=1.9.0
+pkgrel=1
+pkgdesc='All the stuff that is not good/big enough for a real library'
+arch=('any')
+url='https://github.com/flori/tins'
+license=('MIT')
+depends=('ruby')
+options=('!emptydirs')
+source=("https://rubygems.org/downloads/tins-${pkgver}.gem;)
+noextract=("tins-${pkgver}.gem")
+sha256sums=('2d17beff65a34ef74ca1a6721428a6436cf0473b6d701fa68289d3cd2c450deb')
+
+package() {
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+
+  gem install --ignore-dependencies --no-user-install -N -i 
"${pkgdir}"/${_gemdir} tins-${pkgver}.gem
+  find "${pkgdir}" -type f -name *.gem -delete
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses/ruby-tins
+  ln -s ${_gemdir}/gems/tins-${pkgver}/COPYING 
"${pkgdir}"/usr/share/licenses/ruby-tins/
+}


[arch-commits] Commit in ruby-tins/trunk (PKGBUILD)

2016-03-10 Thread Anatol Pomozov
Date: Thursday, March 10, 2016 @ 19:10:45
  Author: anatolik
Revision: 165980

upgpkg: ruby-tins 1.9.0-1

Modified:
  ruby-tins/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-10 17:59:01 UTC (rev 165979)
+++ PKGBUILD2016-03-10 18:10:45 UTC (rev 165980)
@@ -4,7 +4,7 @@
 # Contributor: Hyacinthe Cartiaux 
 
 pkgname=ruby-tins
-pkgver=1.8.2
+pkgver=1.9.0
 pkgrel=1
 pkgdesc='All the stuff that is not good/big enough for a real library'
 arch=('any')
@@ -14,7 +14,7 @@
 options=('!emptydirs')
 source=("https://rubygems.org/downloads/tins-${pkgver}.gem;)
 noextract=("tins-${pkgver}.gem")
-sha256sums=('f3964e4bf0c9b795834c76faa90918e8848806bedfd9a954c73f742874a11156')
+sha256sums=('2d17beff65a34ef74ca1a6721428a6436cf0473b6d701fa68289d3cd2c450deb')
 
 package() {
   local _gemdir="$(ruby -e'puts Gem.default_dir')"


[arch-commits] Commit in libvirt/repos (20 files)

2016-03-10 Thread Sergej Pupykin
Date: Thursday, March 10, 2016 @ 18:58:45
  Author: spupykin
Revision: 165977

archrelease: copy trunk to community-i686, community-x86_64

Added:
  libvirt/repos/community-i686/PKGBUILD
(from rev 165976, libvirt/trunk/PKGBUILD)
  libvirt/repos/community-i686/libvirt.install
(from rev 165976, libvirt/trunk/libvirt.install)
  libvirt/repos/community-i686/libvirt.tmpfiles.d
(from rev 165976, libvirt/trunk/libvirt.tmpfiles.d)
  libvirt/repos/community-i686/libvirtd-guests.conf.d
(from rev 165976, libvirt/trunk/libvirtd-guests.conf.d)
  libvirt/repos/community-i686/libvirtd.conf.d
(from rev 165976, libvirt/trunk/libvirtd.conf.d)
  libvirt/repos/community-x86_64/PKGBUILD
(from rev 165976, libvirt/trunk/PKGBUILD)
  libvirt/repos/community-x86_64/libvirt.install
(from rev 165976, libvirt/trunk/libvirt.install)
  libvirt/repos/community-x86_64/libvirt.tmpfiles.d
(from rev 165976, libvirt/trunk/libvirt.tmpfiles.d)
  libvirt/repos/community-x86_64/libvirtd-guests.conf.d
(from rev 165976, libvirt/trunk/libvirtd-guests.conf.d)
  libvirt/repos/community-x86_64/libvirtd.conf.d
(from rev 165976, libvirt/trunk/libvirtd.conf.d)
Deleted:
  libvirt/repos/community-i686/PKGBUILD
  libvirt/repos/community-i686/libvirt.install
  libvirt/repos/community-i686/libvirt.tmpfiles.d
  libvirt/repos/community-i686/libvirtd-guests.conf.d
  libvirt/repos/community-i686/libvirtd.conf.d
  libvirt/repos/community-x86_64/PKGBUILD
  libvirt/repos/community-x86_64/libvirt.install
  libvirt/repos/community-x86_64/libvirt.tmpfiles.d
  libvirt/repos/community-x86_64/libvirtd-guests.conf.d
  libvirt/repos/community-x86_64/libvirtd.conf.d

-+
 /PKGBUILD   |  266 ++
 /libvirt.install|   32 +++
 /libvirt.tmpfiles.d |8 
 /libvirtd-guests.conf.d |   18 ++
 /libvirtd.conf.d|2 
 community-i686/PKGBUILD |  128 --
 community-i686/libvirt.install  |   16 -
 community-i686/libvirt.tmpfiles.d   |4 
 community-i686/libvirtd-guests.conf.d   |9 -
 community-i686/libvirtd.conf.d  |1 
 community-x86_64/PKGBUILD   |  128 --
 community-x86_64/libvirt.install|   16 -
 community-x86_64/libvirt.tmpfiles.d |4 
 community-x86_64/libvirtd-guests.conf.d |9 -
 community-x86_64/libvirtd.conf.d|1 
 15 files changed, 326 insertions(+), 316 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-10 17:58:19 UTC (rev 165976)
+++ community-i686/PKGBUILD 2016-03-10 17:58:45 UTC (rev 165977)
@@ -1,128 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Jonathan Wiersma 
-
-pkgname=libvirt
-pkgver=1.3.2
-pkgrel=2
-pkgdesc="API for controlling virtualization engines 
(openvz,kvm,qemu,virtualbox,xen,etc)"
-arch=('i686' 'x86_64')
-url="http://libvirt.org/;
-license=('LGPL')
-depends=('e2fsprogs' 'gnutls' 'iptables' 'libxml2' 'parted' 'polkit' 'python2'
-'avahi' 'yajl' 'libpciaccess' 'udev' 'dbus' 'libxau' 'libxdmcp' 
'libpcap' 'libcap-ng'
-'curl' 'libsasl' 'libgcrypt' 'libgpg-error' 'openssl' 'libxcb' 
'gcc-libs'
-'iproute2' 'libnl' 'libx11' 'numactl' 'gettext' 'ceph' 'libssh2' 
'netcf')
-makedepends=('pkgconfig' 'lvm2' 'linux-api-headers' 'dnsmasq' 'lxc'
-'libiscsi' 'open-iscsi'
-'perl-xml-xpath' 'libxslt' 'qemu')
-optdepends=('ebtables: required for default NAT networking'
-   'dnsmasq: required for default NAT/DHCP for guests'
-   'bridge-utils: for bridged networking'
-   'openbsd-netcat: for remote management over ssh'
-   'qemu'
-   'radvd'
-   'dmidecode'
-   'pm-utils: host power management')
-options=('emptydirs')
-backup=('etc/conf.d/libvirt-guests'
-   'etc/conf.d/libvirtd'
-   'etc/libvirt/libvirt.conf'
-   'etc/libvirt/virtlogd.conf'
-   'etc/libvirt/libvirtd.conf'
-   'etc/libvirt/lxc.conf'
-   'etc/libvirt/nwfilter/allow-arp.xml'
-   'etc/libvirt/nwfilter/allow-dhcp-server.xml'
-   'etc/libvirt/nwfilter/allow-dhcp.xml'
-   'etc/libvirt/nwfilter/allow-incoming-ipv4.xml'
-   'etc/libvirt/nwfilter/allow-ipv4.xml'
-   'etc/libvirt/nwfilter/clean-traffic.xml'
-   'etc/libvirt/nwfilter/no-arp-ip-spoofing.xml'
-   'etc/libvirt/nwfilter/no-arp-mac-spoofing.xml'
-   'etc/libvirt/nwfilter/no-arp-spoofing.xml'
-   'etc/libvirt/nwfilter/no-ip-multicast.xml'
-   'etc/libvirt/nwfilter/no-ip-spoofing.xml'
-   'etc/libvirt/nwfilter/no-mac-broadcast.xml'
-   'etc/libvirt/nwfilter/no-mac-spoofing.xml'
-   'etc/libvirt/nwfilter/no-other-l2-traffic.xml'
-   'etc/libvirt/nwfilter/no-other-rarp-traffic.xml'
-   

[arch-commits] Commit in virt-manager/repos/community-any (4 files)

2016-03-10 Thread Sergej Pupykin
Date: Thursday, March 10, 2016 @ 18:59:01
  Author: spupykin
Revision: 165979

archrelease: copy trunk to community-any

Added:
  virt-manager/repos/community-any/PKGBUILD
(from rev 165978, virt-manager/trunk/PKGBUILD)
  virt-manager/repos/community-any/virt-manager.install
(from rev 165978, virt-manager/trunk/virt-manager.install)
Deleted:
  virt-manager/repos/community-any/PKGBUILD
  virt-manager/repos/community-any/virt-manager.install

--+
 PKGBUILD |   91 -
 virt-manager.install |   47 -
 2 files changed, 70 insertions(+), 68 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-10 17:58:51 UTC (rev 165978)
+++ PKGBUILD2016-03-10 17:59:01 UTC (rev 165979)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Daniel Micay 
-# Contributor: Jonathan Wiersma 
-
-pkgbase=virt-manager
-pkgname=(virt-install virt-manager)
-pkgver=1.3.2
-pkgrel=2
-pkgdesc="Console user interface for managing virtual machines"
-arch=('any')
-url="http://virt-manager.org/;
-license=('GPL')
-depends=('python2' 'libvirt-python' 'libxml2' 'libvirt'
-'libosinfo' 'python2-ipaddr' 'python2-gobject' 'python2-requests')
-makedepends=('intltool>=0.35.0'
-'dbus-python' 'gtk-vnc' 'rarian'
-'gconf' 'yajl' 'librsvg' 'python2-gconf' 'libuser' 'python2-cairo'
-'python2-ipy' 'newt-syrup' 'openbsd-netcat' 'x11-ssh-askpass'
-'graphite' 'spice-gtk3'
-'libvirt-glib' 'vte3')
-source=("http://virt-manager.org/download/sources/virt-manager/virt-manager-$pkgver.tar.gz;)
-md5sums=('6d0436939769b66457034b1ae7040b85')
-
-build() {
-  cd "$srcdir/$pkgbase-$pkgver"
-  python2 setup.py build
-}
-
-package_virt-install() {
-  cd "$srcdir/$pkgbase-$pkgver"
-  python2 setup.py --no-update-icon-cache --no-compile-schemas install --root 
"$pkgdir"
-}
-
-package_virt-manager() {
-  pkgdesc="Desktop user interface for managing virtual machines"
-  install=virt-manager.install
-  depends=('virt-install'
-   'python2' 'libvirt-python' 'libxml2' 'libvirt' 'urlgrabber'
-   'dbus-python' 'gtk-vnc' 'rarian'
-   'yajl' 'librsvg' 'libuser' 'python2-cairo'
-   'python2-ipy' 'newt-syrup' 'openbsd-netcat' 'x11-ssh-askpass'
-   'graphite' 'spice-gtk3'
-   'libvirt-glib' 'vte3')
-}

Copied: virt-manager/repos/community-any/PKGBUILD (from rev 165978, 
virt-manager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-10 17:59:01 UTC (rev 165979)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Daniel Micay 
+# Contributor: Jonathan Wiersma 
+
+pkgbase=virt-manager
+pkgname=(virt-install virt-manager)
+pkgver=1.3.2
+pkgrel=3
+pkgdesc="Console user interface for managing virtual machines"
+arch=('any')
+url="http://virt-manager.org/;
+license=('GPL')
+depends=('python2' 'libvirt-python' 'libxml2' 'libvirt'
+'libosinfo' 'python2-ipaddr' 'python2-gobject' 'python2-requests')
+makedepends=('intltool>=0.35.0'
+'dbus-python' 'gtk-vnc' 'rarian'
+'gconf' 'yajl' 'librsvg' 'python2-gconf' 'libuser' 'python2-cairo'
+'python2-ipy' 'newt-syrup' 'openbsd-netcat' 'x11-ssh-askpass'
+'graphite' 'spice-gtk3'
+'libvirt-glib' 'vte3')
+source=("http://virt-manager.org/download/sources/virt-manager/virt-manager-$pkgver.tar.gz;)
+md5sums=('6d0436939769b66457034b1ae7040b85')
+
+build() {
+  cd "$srcdir/$pkgbase-$pkgver"
+  python2 setup.py build
+}
+
+package_virt-install() {
+  cd "$srcdir/$pkgbase-$pkgver"
+  python2 setup.py --no-update-icon-cache --no-compile-schemas install --root 
"$pkgdir"
+  chmod a-x $pkgdir/usr/bin/virt-manager
+}
+
+package_virt-manager() {
+  pkgdesc="Desktop user interface for managing virtual machines"
+  install=virt-manager.install
+  depends=("virt-install=$pkgver"
+   'python2' 'libvirt-python' 'libxml2' 'libvirt' 'urlgrabber'
+   'dbus-python' 'gtk-vnc' 'rarian'
+   'yajl' 'librsvg' 'libuser' 'python2-cairo'
+   'python2-ipy' 'newt-syrup' 'openbsd-netcat' 'x11-ssh-askpass'
+   'graphite' 'spice-gtk3'
+   'libvirt-glib' 'vte3')
+}

Deleted: virt-manager.install
===
--- virt-manager.install2016-03-10 17:58:51 UTC (rev 165978)
+++ virt-manager.install2016-03-10 17:59:01 UTC (rev 165979)
@@ -1,23 +0,0 @@
-post_install() {
-   [ -x usr/bin/update-desktop-database ] && update-desktop-database -q
-   gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-   glib-compile-schemas usr/share/glib-2.0/schemas
-}
-
-pre_upgrade() {
- 

[arch-commits] Commit in libvirt/trunk (PKGBUILD)

2016-03-10 Thread Sergej Pupykin
Date: Thursday, March 10, 2016 @ 18:58:19
  Author: spupykin
Revision: 165976

upgpkg: libvirt 1.3.2-3

upd

Modified:
  libvirt/trunk/PKGBUILD

--+
 PKGBUILD |   11 ---
 1 file changed, 8 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-10 17:40:46 UTC (rev 165975)
+++ PKGBUILD2016-03-10 17:58:19 UTC (rev 165976)
@@ -4,7 +4,7 @@
 
 pkgname=libvirt
 pkgver=1.3.2
-pkgrel=2
+pkgrel=3
 pkgdesc="API for controlling virtualization engines 
(openvz,kvm,qemu,virtualbox,xen,etc)"
 arch=('i686' 'x86_64')
 url="http://libvirt.org/;
@@ -63,11 +63,13 @@
 source=("http://libvirt.org/sources/$pkgname-$pkgver.tar.gz;
libvirtd.conf.d
libvirtd-guests.conf.d
-   libvirt.tmpfiles.d)
+   libvirt.tmpfiles.d
+   'systemd.patch::https://bugs.archlinux.org/task/48440?getfile=13914')
 md5sums=('b48b06bbc7efbe9973ed0f3f223d6da2'
  '5e31269067dbd12ca871234450bb66bb'
  '384fff96c6248d4f020f6fa66c32b357'
- '020971887442ebbf1b6949e031c8dd3f')
+ '020971887442ebbf1b6949e031c8dd3f'
+ '8b5cb657b3fa08c3cd888d48a2227a39')
 
 prepare() {
   cd "$srcdir/$pkgname-$pkgver"
@@ -89,6 +91,9 @@
 src/qemu/test_libvirtd_qemu.aug.in
 
   sed -i 's|libsystemd-daemon|libsystemd|g' configure
+  sed -i 's/notify/simple/' daemon/libvirtd.service.in
+
+  patch -p1 -i $srcdir/systemd.patch
 }
 
 build() {


[arch-commits] Commit in virt-manager/trunk (PKGBUILD virt-manager.install)

2016-03-10 Thread Sergej Pupykin
Date: Thursday, March 10, 2016 @ 18:58:51
  Author: spupykin
Revision: 165978

upgpkg: virt-manager 1.3.2-3

upd

Modified:
  virt-manager/trunk/PKGBUILD
  virt-manager/trunk/virt-manager.install

--+
 PKGBUILD |5 +++--
 virt-manager.install |1 +
 2 files changed, 4 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-10 17:58:45 UTC (rev 165977)
+++ PKGBUILD2016-03-10 17:58:51 UTC (rev 165978)
@@ -6,7 +6,7 @@
 pkgbase=virt-manager
 pkgname=(virt-install virt-manager)
 pkgver=1.3.2
-pkgrel=2
+pkgrel=3
 pkgdesc="Console user interface for managing virtual machines"
 arch=('any')
 url="http://virt-manager.org/;
@@ -30,12 +30,13 @@
 package_virt-install() {
   cd "$srcdir/$pkgbase-$pkgver"
   python2 setup.py --no-update-icon-cache --no-compile-schemas install --root 
"$pkgdir"
+  chmod a-x $pkgdir/usr/bin/virt-manager
 }
 
 package_virt-manager() {
   pkgdesc="Desktop user interface for managing virtual machines"
   install=virt-manager.install
-  depends=('virt-install'
+  depends=("virt-install=$pkgver"
'python2' 'libvirt-python' 'libxml2' 'libvirt' 'urlgrabber'
'dbus-python' 'gtk-vnc' 'rarian'
'yajl' 'librsvg' 'libuser' 'python2-cairo'

Modified: virt-manager.install
===
--- virt-manager.install2016-03-10 17:58:45 UTC (rev 165977)
+++ virt-manager.install2016-03-10 17:58:51 UTC (rev 165978)
@@ -2,6 +2,7 @@
[ -x usr/bin/update-desktop-database ] && update-desktop-database -q
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
glib-compile-schemas usr/share/glib-2.0/schemas
+   chmod a+x usr/bin/virt-manager
 }
 
 pre_upgrade() {


[arch-commits] Commit in zsh-completions/repos/community-any (8 files)

2016-03-10 Thread Evgeniy Alekseev
Date: Thursday, March 10, 2016 @ 18:40:46
  Author: arcanis
Revision: 165975

archrelease: copy trunk to community-any

Added:
  zsh-completions/repos/community-any/ChangeLog
(from rev 165974, zsh-completions/trunk/ChangeLog)
  zsh-completions/repos/community-any/LICENSE-BSD
(from rev 165974, zsh-completions/trunk/LICENSE-BSD)
  zsh-completions/repos/community-any/LICENSE-MIT
(from rev 165974, zsh-completions/trunk/LICENSE-MIT)
  zsh-completions/repos/community-any/PKGBUILD
(from rev 165974, zsh-completions/trunk/PKGBUILD)
Deleted:
  zsh-completions/repos/community-any/ChangeLog
  zsh-completions/repos/community-any/LICENSE-BSD
  zsh-completions/repos/community-any/LICENSE-MIT
  zsh-completions/repos/community-any/PKGBUILD

-+
 ChangeLog   |   37 +++
 LICENSE-BSD |   48 +++---
 LICENSE-MIT |   38 ++--
 PKGBUILD|   60 +-
 4 files changed, 93 insertions(+), 90 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2016-03-10 17:40:27 UTC (rev 165974)
+++ ChangeLog   2016-03-10 17:40:46 UTC (rev 165975)
@@ -1,17 +0,0 @@
-0.16.0-1:
-upstream update
-
-0.15.0-1:
-upstream update
-
-0.14.0-2:
-fix build
-
-0.14.0-1:
-upstream update
-
-0.12.0-2:
-drop _salt completions since it is provided by upstream
-
-0.12.0-1:
-ustream update

Copied: zsh-completions/repos/community-any/ChangeLog (from rev 165974, 
zsh-completions/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2016-03-10 17:40:46 UTC (rev 165975)
@@ -0,0 +1,20 @@
+0.17.0-1:
+upstream update
+
+0.16.0-1:
+upstream update
+
+0.15.0-1:
+upstream update
+
+0.14.0-2:
+fix build
+
+0.14.0-1:
+upstream update
+
+0.12.0-2:
+drop _salt completions since it is provided by upstream
+
+0.12.0-1:
+ustream update

Deleted: LICENSE-BSD
===
--- LICENSE-BSD 2016-03-10 17:40:27 UTC (rev 165974)
+++ LICENSE-BSD 2016-03-10 17:40:46 UTC (rev 165975)
@@ -1,24 +0,0 @@
-Copyright (c) 2011 Github zsh-users - http://github.com/zsh-users
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-* Redistributions of source code must retain the above copyright
-  notice, this list of conditions and the following disclaimer.
-* Redistributions in binary form must reproduce the above copyright
-  notice, this list of conditions and the following disclaimer in the
-  documentation and/or other materials provided with the distribution.
-* Neither the name of the zsh-users nor the
-  names of its contributors may be used to endorse or promote products
-  derived from this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
-ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-DISCLAIMED. IN NO EVENT SHALL ZSH-USERS BE LIABLE FOR ANY
-DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Copied: zsh-completions/repos/community-any/LICENSE-BSD (from rev 165974, 
zsh-completions/trunk/LICENSE-BSD)
===
--- LICENSE-BSD (rev 0)
+++ LICENSE-BSD 2016-03-10 17:40:46 UTC (rev 165975)
@@ -0,0 +1,24 @@
+Copyright (c) 2011 Github zsh-users - http://github.com/zsh-users
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+* Redistributions of source code must retain the above copyright
+  notice, this list of conditions and the following disclaimer.
+* Redistributions in binary form must reproduce the above copyright
+  notice, this list of conditions and the following disclaimer in the
+  documentation and/or other materials provided with the distribution.
+* Neither the name of the zsh-users nor the
+  names of its contributors may be used to endorse or promote products
+  derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED 

[arch-commits] Commit in zsh-completions/trunk (ChangeLog PKGBUILD)

2016-03-10 Thread Evgeniy Alekseev
Date: Thursday, March 10, 2016 @ 18:40:27
  Author: arcanis
Revision: 165974

upgpkg: zsh-completions 0.17.0-1

Modified:
  zsh-completions/trunk/ChangeLog
  zsh-completions/trunk/PKGBUILD

---+
 ChangeLog |3 +++
 PKGBUILD  |4 ++--
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: ChangeLog
===
--- ChangeLog   2016-03-10 17:19:58 UTC (rev 165973)
+++ ChangeLog   2016-03-10 17:40:27 UTC (rev 165974)
@@ -1,3 +1,6 @@
+0.17.0-1:
+upstream update
+
 0.16.0-1:
 upstream update
 

Modified: PKGBUILD
===
--- PKGBUILD2016-03-10 17:19:58 UTC (rev 165973)
+++ PKGBUILD2016-03-10 17:40:27 UTC (rev 165974)
@@ -3,7 +3,7 @@
 # Contributor: Julien Nicoulaud 
 
 pkgname=zsh-completions
-pkgver=0.16.0
+pkgver=0.17.0
 pkgrel=1
 pkgdesc="Additional completion definitions for Zsh"
 arch=(any)
@@ -13,7 +13,7 @@
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/zsh-users/${pkgname}/tarball/${pkgver};
 "LICENSE-BSD"
 "LICENSE-MIT")
-md5sums=('d45ef2e769aee59d3bb9e050c0038874'
+md5sums=('483a752449b280361c09bfa1c704226a'
  '4f686c32a301905655f945fbbdd56880'
  '159dd6fa77daca30268c2438111becae')
 changelog=ChangeLog


[arch-commits] Commit in wgetpaste/repos/community-any (4 files)

2016-03-10 Thread Jaroslav Lichtblau
Date: Thursday, March 10, 2016 @ 18:19:58
  Author: jlichtblau
Revision: 165973

archrelease: copy trunk to community-any

Added:
  wgetpaste/repos/community-any/PKGBUILD
(from rev 165972, wgetpaste/trunk/PKGBUILD)
  wgetpaste/repos/community-any/wgetpaste.changelog
(from rev 165972, wgetpaste/trunk/wgetpaste.changelog)
Deleted:
  wgetpaste/repos/community-any/PKGBUILD
  wgetpaste/repos/community-any/wgetpaste.changelog

-+
 PKGBUILD|   56 +++
 wgetpaste.changelog |   71 ++
 2 files changed, 65 insertions(+), 62 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-03-10 17:18:37 UTC (rev 165972)
+++ PKGBUILD2016-03-10 17:19:58 UTC (rev 165973)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-
-pkgname=wgetpaste
-pkgver=2.26
-pkgrel=1
-pkgdesc="A script that automates pasting to a number of pastebin services"
-arch=('any')
-url="http://wgetpaste.zlin.dk/;
-license=('custom')
-depends=('wget')
-optdepends=('xclip: interface to Xclipboard')
-source=(http://wgetpaste.zlin.dk/$pkgname-$pkgver.tar.bz2
-http://wgetpaste.zlin.dk/$pkgname.example)
-sha256sums=('9265cd0718c815cce19a12c4745f74b288cafce404a26d64daf85ddcbadc8f86'
-'cbc0437f7e04d95ffd224011ee2a056a84dfd7143e314e6962688295f68def4d')
-
-package() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-
-  install -Dm755 ${pkgname} "${pkgdir}"/usr/bin/${pkgname}
-  install -Dm644 _${pkgname} 
"${pkgdir}"/usr/share/zsh/site-functions/_${pkgname}
-  install -Dm644 "${srcdir}"/${pkgname}.example 
${pkgdir}/usr/share/${pkgname}/${pkgname}.example
-
-# license
-  sed -n '2,5p' wgetpaste > LICENSE
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: wgetpaste/repos/community-any/PKGBUILD (from rev 165972, 
wgetpaste/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-03-10 17:19:58 UTC (rev 165973)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=wgetpaste
+pkgver=2.27
+pkgrel=1
+pkgdesc="A script that automates pasting to a number of pastebin services"
+arch=('any')
+url="http://wgetpaste.zlin.dk/;
+license=('custom')
+depends=('wget')
+optdepends=('xclip: interface to Xclipboard')
+source=(http://wgetpaste.zlin.dk/$pkgname-$pkgver.tar.bz2
+http://wgetpaste.zlin.dk/$pkgname.example)
+sha256sums=('d55b789803ddc5dceee2649f35eca53e4ee276fda948ba7b5d4bd3961a92edb8'
+'cbc0437f7e04d95ffd224011ee2a056a84dfd7143e314e6962688295f68def4d')
+
+package() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+
+  install -Dm755 ${pkgname} "${pkgdir}"/usr/bin/${pkgname}
+  install -Dm644 _${pkgname} 
"${pkgdir}"/usr/share/zsh/site-functions/_${pkgname}
+  install -Dm644 "${srcdir}"/${pkgname}.example 
${pkgdir}/usr/share/${pkgname}/${pkgname}.example
+
+# license
+  sed -n '2,5p' wgetpaste > LICENSE
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: wgetpaste.changelog
===
--- wgetpaste.changelog 2016-03-10 17:18:37 UTC (rev 165972)
+++ wgetpaste.changelog 2016-03-10 17:19:58 UTC (rev 165973)
@@ -1,34 +0,0 @@
-2015-04-18 Jaroslav Lichtblau 
-   * wgetpaste 2.26-1
-
-2014-10-07 Jaroslav Lichtblau 
-   * wgetpaste 2.25-1
-
-2013-12-02 Jaroslav Lichtblau 
-   * wgetpaste 2.23-1
-
-2013-05-18 Jaroslav Lichtblau 
-   * wgetpaste 2.22-1
-
-2012-05-13 Jaroslav Lichtblau 
-   * wgetpaste 2.20-1
-
-2012-05-05 Jaroslav Lichtblau 
-   * wgetpaste 2.19-1
-
-2010-09-16 Jaroslav Lichtblau 
-   * wgetpaste 2.18
-
-2010-02-23 Jaroslav Lichtblau 
-   * wgetpaste 2.16
-
-2009-07-05 Jaroslav Lichtblau 
-   * FS#15223 fixed 2.13-3
-   * sed dependency removed - included in the base group
-
-2009-05-31 Jaroslav Lichtblau 
-   * FS#14864 fixed 2.13-2
-
-2009-05-28 Jaroslav Lichtblau 
-   * wgetpaste 2.13
-   * Moved to [community] repo

Copied: wgetpaste/repos/community-any/wgetpaste.changelog (from rev 165972, 
wgetpaste/trunk/wgetpaste.changelog)
===
--- wgetpaste.changelog (rev 0)
+++ wgetpaste.changelog 2016-03-10 17:19:58 UTC (rev 165973)
@@ -0,0 +1,37 @@
+2016-03-10 Jaroslav Lichtblau 
+   * wgetpaste 2.27-1
+
+2015-04-18 Jaroslav Lichtblau 
+   * wgetpaste 2.26-1
+

[arch-commits] Commit in wgetpaste/trunk (PKGBUILD wgetpaste.changelog)

2016-03-10 Thread Jaroslav Lichtblau
Date: Thursday, March 10, 2016 @ 18:18:37
  Author: jlichtblau
Revision: 165972

upgpkg: wgetpaste 2.27-1 - new upstream release

Modified:
  wgetpaste/trunk/PKGBUILD
  wgetpaste/trunk/wgetpaste.changelog

-+
 PKGBUILD|4 ++--
 wgetpaste.changelog |3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-10 16:08:04 UTC (rev 165971)
+++ PKGBUILD2016-03-10 17:18:37 UTC (rev 165972)
@@ -2,7 +2,7 @@
 # Maintainer: Jaroslav Lichtblau 
 
 pkgname=wgetpaste
-pkgver=2.26
+pkgver=2.27
 pkgrel=1
 pkgdesc="A script that automates pasting to a number of pastebin services"
 arch=('any')
@@ -12,7 +12,7 @@
 optdepends=('xclip: interface to Xclipboard')
 source=(http://wgetpaste.zlin.dk/$pkgname-$pkgver.tar.bz2
 http://wgetpaste.zlin.dk/$pkgname.example)
-sha256sums=('9265cd0718c815cce19a12c4745f74b288cafce404a26d64daf85ddcbadc8f86'
+sha256sums=('d55b789803ddc5dceee2649f35eca53e4ee276fda948ba7b5d4bd3961a92edb8'
 'cbc0437f7e04d95ffd224011ee2a056a84dfd7143e314e6962688295f68def4d')
 
 package() {

Modified: wgetpaste.changelog
===
--- wgetpaste.changelog 2016-03-10 16:08:04 UTC (rev 165971)
+++ wgetpaste.changelog 2016-03-10 17:18:37 UTC (rev 165972)
@@ -1,3 +1,6 @@
+2016-03-10 Jaroslav Lichtblau 
+   * wgetpaste 2.27-1
+
 2015-04-18 Jaroslav Lichtblau 
* wgetpaste 2.26-1
 


[arch-commits] Commit in pacman-mirrorlist/repos/core-any (6 files)

2016-03-10 Thread Florian Pritz
Date: Thursday, March 10, 2016 @ 18:01:02
  Author: bluewind
Revision: 261296

archrelease: copy trunk to core-any

Added:
  pacman-mirrorlist/repos/core-any/PKGBUILD
(from rev 261295, pacman-mirrorlist/trunk/PKGBUILD)
  pacman-mirrorlist/repos/core-any/mirrorlist
(from rev 261295, pacman-mirrorlist/trunk/mirrorlist)
  pacman-mirrorlist/repos/core-any/upgpkg
(from rev 261295, pacman-mirrorlist/trunk/upgpkg)
Deleted:
  pacman-mirrorlist/repos/core-any/PKGBUILD
  pacman-mirrorlist/repos/core-any/mirrorlist
  pacman-mirrorlist/repos/core-any/upgpkg

+
 PKGBUILD   |   62 ++--
 mirrorlist |  824 +--
 upgpkg |8 
 3 files changed, 447 insertions(+), 447 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 261295:261296 to see the changes.


[arch-commits] Commit in pacman-mirrorlist/trunk (PKGBUILD)

2016-03-10 Thread Florian Pritz
Date: Thursday, March 10, 2016 @ 18:00:57
  Author: bluewind
Revision: 261295

upgpkg: pacman-mirrorlist 20160310-4

update

Modified:
  pacman-mirrorlist/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-10 17:00:01 UTC (rev 261294)
+++ PKGBUILD2016-03-10 17:00:57 UTC (rev 261295)
@@ -3,7 +3,7 @@
 
 pkgname=pacman-mirrorlist
 pkgver=20160310
-pkgrel=1
+pkgrel=4
 pkgdesc="Arch Linux mirror list for use by pacman"
 arch=('any')
 url="https://www.archlinux.org/mirrorlist/;


[arch-commits] Commit in pacman-mirrorlist/trunk (PKGBUILD mirrorlist)

2016-03-10 Thread Florian Pritz
Date: Thursday, March 10, 2016 @ 17:59:56
  Author: bluewind
Revision: 261293

upgpkg: pacman-mirrorlist 20160310-1

upstream update

Modified:
  pacman-mirrorlist/trunk/PKGBUILD
  pacman-mirrorlist/trunk/mirrorlist

+
 PKGBUILD   |6 +++---
 mirrorlist |2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-10 16:34:53 UTC (rev 261292)
+++ PKGBUILD2016-03-10 16:59:56 UTC (rev 261293)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee <d...@archlinux.org>
 
 pkgname=pacman-mirrorlist
-pkgver=20160227
+pkgver=20160310
 pkgrel=1
 pkgdesc="Arch Linux mirror list for use by pacman"
 arch=('any')
@@ -27,5 +27,5 @@
   install -m644 $srcdir/mirrorlist $pkgdir/etc/pacman.d/
 }
 
-md5sums=('a7593f4425072a68fe4a383bc057ba34')
-sha256sums=('6a98b051a6d1eee72826a4929a7d43e1bbc4af3f5d42907a506b6e4decdfd840')
+md5sums=('961cf4cc74401b80ef4eccbc7e9b6da9')
+sha256sums=('6645fd42d51782d2297693866463be73d5447941d20fb1d539b56b3c9211026c')

Modified: mirrorlist
===
--- mirrorlist  2016-03-10 16:34:53 UTC (rev 261292)
+++ mirrorlist  2016-03-10 16:59:56 UTC (rev 261293)
@@ -1,6 +1,6 @@
 ##
 ## Arch Linux repository mirrorlist
-## Generated on 2016-02-27
+## Generated on 2016-03-10
 ##
 
 ## Worldwide


[arch-commits] Commit in pacman-mirrorlist/repos/core-any (6 files)

2016-03-10 Thread Florian Pritz
Date: Thursday, March 10, 2016 @ 18:00:01
  Author: bluewind
Revision: 261294

archrelease: copy trunk to core-any

Added:
  pacman-mirrorlist/repos/core-any/PKGBUILD
(from rev 261293, pacman-mirrorlist/trunk/PKGBUILD)
  pacman-mirrorlist/repos/core-any/mirrorlist
(from rev 261293, pacman-mirrorlist/trunk/mirrorlist)
  pacman-mirrorlist/repos/core-any/upgpkg
(from rev 261293, pacman-mirrorlist/trunk/upgpkg)
Deleted:
  pacman-mirrorlist/repos/core-any/PKGBUILD
  pacman-mirrorlist/repos/core-any/mirrorlist
  pacman-mirrorlist/repos/core-any/upgpkg

+
 PKGBUILD   |   62 ++--
 mirrorlist |  824 +--
 upgpkg |8 
 3 files changed, 447 insertions(+), 447 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 261293:261294 to see the changes.


[arch-commits] Commit in pacman-mirrorlist/tags (4 files)

2016-03-10 Thread Florian Pritz
Date: Thursday, March 10, 2016 @ 17:44:49
  Author: bluewind
Revision: 261295

archrelease: copy trunk to 20160310-2

Added:
  pacman-mirrorlist/tags/20160310-2/
  pacman-mirrorlist/tags/20160310-2/PKGBUILD
(from rev 261294, pacman-mirrorlist/trunk/PKGBUILD)
  pacman-mirrorlist/tags/20160310-2/mirrorlist
(from rev 261294, pacman-mirrorlist/trunk/mirrorlist)
  pacman-mirrorlist/tags/20160310-2/upgpkg
(from rev 261294, pacman-mirrorlist/trunk/upgpkg)

+
 PKGBUILD   |   31 
 mirrorlist |  412 +++
 upgpkg |4 
 3 files changed, 447 insertions(+)

Copied: pacman-mirrorlist/tags/20160310-2/PKGBUILD (from rev 261294, 
pacman-mirrorlist/trunk/PKGBUILD)
===
--- 20160310-2/PKGBUILD (rev 0)
+++ 20160310-2/PKGBUILD 2016-03-10 16:44:49 UTC (rev 261295)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Dan McGee <d...@archlinux.org>
+
+pkgname=pacman-mirrorlist
+pkgver=20160310
+pkgrel=2
+pkgdesc="Arch Linux mirror list for use by pacman"
+arch=('any')
+url="https://www.archlinux.org/mirrorlist/;
+license=('GPL')
+backup=(etc/pacman.d/mirrorlist)
+source=(mirrorlist)
+
+# NOTE on building this package:
+# * Go to the trunk/ directory
+# * Run bash -c ". PKGBUILD; updatelist"
+# * Update the checksums, update pkgver
+# * Build the package
+
+updatelist() {
+  rm -f mirrorlist
+  curl -o mirrorlist https://www.archlinux.org/mirrorlist/all/
+}
+
+package() {
+  mkdir -p $pkgdir/etc/pacman.d
+  install -m644 $srcdir/mirrorlist $pkgdir/etc/pacman.d/
+}
+
+md5sums=('961cf4cc74401b80ef4eccbc7e9b6da9')
+sha256sums=('6645fd42d51782d2297693866463be73d5447941d20fb1d539b56b3c9211026c')

Copied: pacman-mirrorlist/tags/20160310-2/mirrorlist (from rev 261294, 
pacman-mirrorlist/trunk/mirrorlist)
===
--- 20160310-2/mirrorlist   (rev 0)
+++ 20160310-2/mirrorlist   2016-03-10 16:44:49 UTC (rev 261295)
@@ -0,0 +1,412 @@
+##
+## Arch Linux repository mirrorlist
+## Generated on 2016-03-10
+##
+
+## Worldwide
+#Server = http://mirror.rackspace.com/archlinux/$repo/os/$arch
+
+## Australia
+#Server = http://mirror.aarnet.edu.au/pub/archlinux/$repo/os/$arch
+#Server = http://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch
+#Server = http://ftp.iinet.net.au/pub/archlinux/$repo/os/$arch
+#Server = http://mirror.internode.on.net/pub/archlinux/$repo/os/$arch
+#Server = http://ftp.swin.edu.au/archlinux/$repo/os/$arch
+#Server = http://archlinux.uberglobalmirror.com/$repo/os/$arch
+
+## Austria
+#Server = http://mirror.digitalnova.at/archlinux/$repo/os/$arch
+#Server = http://mirror.easyname.at/archlinux/$repo/os/$arch
+#Server = http://mirror1.htu.tugraz.at/archlinux/$repo/os/$arch
+
+## Belarus
+#Server = http://ftp.byfly.by/pub/archlinux/$repo/os/$arch
+#Server = http://mirror.datacenter.by/pub/archlinux/$repo/os/$arch
+
+## Belgium
+#Server = http://archlinux.cu.be/$repo/os/$arch
+#Server = http://archlinux.mirror.kangaroot.net/$repo/os/$arch
+
+## Bosnia and Herzegovina
+#Server = http://burek.archlinux.ba/$repo/os/$arch
+
+## Brazil
+#Server = http://archlinux-br.mirror.host1plus.com/$repo/os/$arch
+#Server = http://archlinux.c3sl.ufpr.br/$repo/os/$arch
+#Server = http://www.lasca.ic.unicamp.br/pub/archlinux/$repo/os/$arch
+#Server = http://linorg.usp.br/archlinux/$repo/os/$arch
+#Server = http://pet.inf.ufsc.br/mirrors/archlinux/$repo/os/$arch
+#Server = http://archlinux.pop-es.rnp.br/$repo/os/$arch
+
+## Bulgaria
+#Server = http://mirrors.netix.net/archlinux/$repo/os/$arch
+#Server = http://mirror.telepoint.bg/archlinux/$repo/os/$arch
+#Server = http://mirrors.uni-plovdiv.net/archlinux/$repo/os/$arch
+#Server = https://mirrors.uni-plovdiv.net/archlinux/$repo/os/$arch
+
+## Canada
+#Server = http://archlinux.dropswitch.net/archlinux/$repo/os/$arch
+#Server = http://mirror.clibre.uqam.ca/archlinux/$repo/os/$arch
+#Server = http://mirror.csclub.uwaterloo.ca/archlinux/$repo/os/$arch
+#Server = http://mirror.its.dal.ca/archlinux/$repo/os/$arch
+#Server = http://muug.ca/mirror/archlinux/$repo/os/$arch
+#Server = https://muug.ca/mirror/archlinux/$repo/os/$arch
+#Server = http://archlinux.mirror.rafal.ca/$repo/os/$arch
+#Server = http://archlinux.mirror.vexxhost.com/$repo/os/$arch
+
+## Chile
+#Server = http://mirror.archlinux.cl/$repo/os/$arch
+
+## China
+#Server = http://mirrors.163.com/archlinux/$repo/os/$arch
+#Server = http://mirror.bjtu.edu.cn/archlinux/$repo/os/$arch
+#Server = http://mirrors.cqu.edu.cn/archlinux/$repo/os/$arch
+#Server = http://mirrors.hust.edu.cn/archlinux/$repo/os/$arch
+#Server = http://mirrors.hustunique.com/archlinux/$repo/os/$arch
+#Server = http://mirrors.neusoft.edu.cn/archlinux/$repo/os/$arch
+#Server = http://mirrors.opencas.cn/archlinux/$repo/os/$arch
+#Server = http://run.hit.edu.cn/archlinux

[arch-commits] Commit in pacman-mirrorlist/trunk (PKGBUILD)

2016-03-10 Thread Florian Pritz
Date: Thursday, March 10, 2016 @ 17:44:45
  Author: bluewind
Revision: 261294

upgpkg: pacman-mirrorlist 20160310-2

test2

Modified:
  pacman-mirrorlist/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-10 16:36:56 UTC (rev 261293)
+++ PKGBUILD2016-03-10 16:44:45 UTC (rev 261294)
@@ -3,7 +3,7 @@
 
 pkgname=pacman-mirrorlist
 pkgver=20160310
-pkgrel=1
+pkgrel=2
 pkgdesc="Arch Linux mirror list for use by pacman"
 arch=('any')
 url="https://www.archlinux.org/mirrorlist/;


  1   2   >