[arch-commits] Commit in haskell-cipher-aes/repos (4 files)

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:58:02
  Author: felixonmars
Revision: 257248

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

Added:
  haskell-cipher-aes/repos/community-staging-i686/
  haskell-cipher-aes/repos/community-staging-i686/PKGBUILD
(from rev 257247, haskell-cipher-aes/trunk/PKGBUILD)
  haskell-cipher-aes/repos/community-staging-x86_64/
  haskell-cipher-aes/repos/community-staging-x86_64/PKGBUILD
(from rev 257247, haskell-cipher-aes/trunk/PKGBUILD)

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

Copied: haskell-cipher-aes/repos/community-staging-i686/PKGBUILD (from rev 
257247, haskell-cipher-aes/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-13 05:58:02 UTC (rev 257248)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cipher-aes
+pkgname=haskell-cipher-aes
+pkgver=0.2.11
+pkgrel=21
+pkgdesc="Fast AES cipher implementation with advanced mode of operations"
+url="https://github.com/vincenthz/hs-cipher-aes;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-byteable" "haskell-crypto-cipher-types" 
"haskell-securemem")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('d3b171895698c73da24d7ce97543f725d26637f038de670c0fd4012ca7f95015')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fsupport_aesni
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-cipher-aes/repos/community-staging-x86_64/PKGBUILD (from rev 
257247, haskell-cipher-aes/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-13 05:58:02 UTC (rev 257248)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cipher-aes
+pkgname=haskell-cipher-aes
+pkgver=0.2.11
+pkgrel=21
+pkgdesc="Fast AES cipher implementation with advanced mode of operations"
+url="https://github.com/vincenthz/hs-cipher-aes;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-byteable" "haskell-crypto-cipher-types" 
"haskell-securemem")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('d3b171895698c73da24d7ce97543f725d26637f038de670c0fd4012ca7f95015')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fsupport_aesni
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:57:23
  Author: felixonmars
Revision: 257247

upgpkg: haskell-cipher-aes 0.2.11-21

rebuild with memory,0.14.8

Modified:
  haskell-cipher-aes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-13 05:56:02 UTC (rev 257246)
+++ PKGBUILD2017-09-13 05:57:23 UTC (rev 257247)
@@ -5,7 +5,7 @@
 _hkgname=cipher-aes
 pkgname=haskell-cipher-aes
 pkgver=0.2.11
-pkgrel=20
+pkgrel=21
 pkgdesc="Fast AES cipher implementation with advanced mode of operations"
 url="https://github.com/vincenthz/hs-cipher-aes;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-crypto-cipher-types/repos (4 files)

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:56:02
  Author: felixonmars
Revision: 257246

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

Added:
  haskell-crypto-cipher-types/repos/community-staging-i686/
  haskell-crypto-cipher-types/repos/community-staging-i686/PKGBUILD
(from rev 257245, haskell-crypto-cipher-types/trunk/PKGBUILD)
  haskell-crypto-cipher-types/repos/community-staging-x86_64/
  haskell-crypto-cipher-types/repos/community-staging-x86_64/PKGBUILD
(from rev 257245, haskell-crypto-cipher-types/trunk/PKGBUILD)

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

Copied: haskell-crypto-cipher-types/repos/community-staging-i686/PKGBUILD (from 
rev 257245, haskell-crypto-cipher-types/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-13 05:56:02 UTC (rev 257246)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=crypto-cipher-types
+pkgname=haskell-crypto-cipher-types
+pkgver=0.0.9
+pkgrel=21
+pkgdesc="Generic cryptography cipher types"
+url="http://github.com/vincenthz/hs-crypto-cipher;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-byteable" "haskell-securemem")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('2073f6b70df7916aebe2da49d224497183662d56d19da87b76f70039430c0a0f')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-crypto-cipher-types/repos/community-staging-x86_64/PKGBUILD 
(from rev 257245, haskell-crypto-cipher-types/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-13 05:56:02 UTC (rev 257246)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=crypto-cipher-types
+pkgname=haskell-crypto-cipher-types
+pkgver=0.0.9
+pkgrel=21
+pkgdesc="Generic cryptography cipher types"
+url="http://github.com/vincenthz/hs-crypto-cipher;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-byteable" "haskell-securemem")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('2073f6b70df7916aebe2da49d224497183662d56d19da87b76f70039430c0a0f')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}


[arch-commits] Commit in haskell-crypto-cipher-types/trunk (PKGBUILD)

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:55:23
  Author: felixonmars
Revision: 257245

upgpkg: haskell-crypto-cipher-types 0.0.9-21

rebuild with memory,0.14.8

Modified:
  haskell-crypto-cipher-types/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-13 05:54:13 UTC (rev 257244)
+++ PKGBUILD2017-09-13 05:55:23 UTC (rev 257245)
@@ -5,7 +5,7 @@
 _hkgname=crypto-cipher-types
 pkgname=haskell-crypto-cipher-types
 pkgver=0.0.9
-pkgrel=20
+pkgrel=21
 pkgdesc="Generic cryptography cipher types"
 url="http://github.com/vincenthz/hs-crypto-cipher;
 license=("custom:BSD3")


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:54:13
  Author: felixonmars
Revision: 257244

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

Added:
  haskell-securemem/repos/community-staging-i686/
  haskell-securemem/repos/community-staging-i686/PKGBUILD
(from rev 257243, haskell-securemem/trunk/PKGBUILD)
  haskell-securemem/repos/community-staging-x86_64/
  haskell-securemem/repos/community-staging-x86_64/PKGBUILD
(from rev 257243, haskell-securemem/trunk/PKGBUILD)

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

Copied: haskell-securemem/repos/community-staging-i686/PKGBUILD (from rev 
257243, haskell-securemem/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-13 05:54:13 UTC (rev 257244)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=securemem
+pkgname=haskell-securemem
+pkgver=0.1.9
+pkgrel=21
+pkgdesc="abstraction to an auto scrubbing and const time eq, memory chunk."
+url="http://github.com/vincenthz/hs-securemem;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-byteable" "haskell-memory")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('feb60dc542ea3ce9cdb449093b85dc69e43df310aab4fd161e4cdaa3ba847036')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-securemem/repos/community-staging-x86_64/PKGBUILD (from rev 
257243, haskell-securemem/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-13 05:54:13 UTC (rev 257244)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=securemem
+pkgname=haskell-securemem
+pkgver=0.1.9
+pkgrel=21
+pkgdesc="abstraction to an auto scrubbing and const time eq, memory chunk."
+url="http://github.com/vincenthz/hs-securemem;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-byteable" "haskell-memory")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('feb60dc542ea3ce9cdb449093b85dc69e43df310aab4fd161e4cdaa3ba847036')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:53:33
  Author: felixonmars
Revision: 257243

upgpkg: haskell-securemem 0.1.9-21

rebuild with memory,0.14.8

Modified:
  haskell-securemem/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-13 05:52:24 UTC (rev 257242)
+++ PKGBUILD2017-09-13 05:53:33 UTC (rev 257243)
@@ -5,7 +5,7 @@
 _hkgname=securemem
 pkgname=haskell-securemem
 pkgver=0.1.9
-pkgrel=20
+pkgrel=21
 pkgdesc="abstraction to an auto scrubbing and const time eq, memory chunk."
 url="http://github.com/vincenthz/hs-securemem;
 license=("custom:BSD3")


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:52:24
  Author: felixonmars
Revision: 257242

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

Added:
  haskell-jwt/repos/community-staging-i686/
  haskell-jwt/repos/community-staging-i686/PKGBUILD
(from rev 257241, haskell-jwt/trunk/PKGBUILD)
  haskell-jwt/repos/community-staging-x86_64/
  haskell-jwt/repos/community-staging-x86_64/PKGBUILD
(from rev 257241, haskell-jwt/trunk/PKGBUILD)

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

Copied: haskell-jwt/repos/community-staging-i686/PKGBUILD (from rev 257241, 
haskell-jwt/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-13 05:52:24 UTC (rev 257242)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=jwt
+pkgname=haskell-jwt
+pkgver=0.7.2
+pkgrel=9
+pkgdesc="JSON Web Token (JWT) decoding and encoding"
+url="https://bitbucket.org/ssaasen/haskell-jwt;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-cryptonite" "haskell-memory" "haskell-text" 
"haskell-aeson"
+ "haskell-unordered-containers" "haskell-scientific" 
"haskell-data-default"
+ "haskell-http-types" "haskell-vector" "haskell-semigroups" 
"haskell-network-uri")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('17967413d21399596a236bc8169d9e030bb85e2b1c349c6e470543767cc20a31')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-jwt/repos/community-staging-x86_64/PKGBUILD (from rev 257241, 
haskell-jwt/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-13 05:52:24 UTC (rev 257242)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=jwt
+pkgname=haskell-jwt
+pkgver=0.7.2
+pkgrel=9
+pkgdesc="JSON Web Token (JWT) decoding and encoding"
+url="https://bitbucket.org/ssaasen/haskell-jwt;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-cryptonite" "haskell-memory" "haskell-text" 
"haskell-aeson"
+ "haskell-unordered-containers" "haskell-scientific" 
"haskell-data-default"
+ "haskell-http-types" "haskell-vector" "haskell-semigroups" 
"haskell-network-uri")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('17967413d21399596a236bc8169d9e030bb85e2b1c349c6e470543767cc20a31')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f 

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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:51:41
  Author: felixonmars
Revision: 257241

upgpkg: haskell-jwt 0.7.2-9

rebuild with memory,0.14.8

Modified:
  haskell-jwt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-13 05:51:27 UTC (rev 257240)
+++ PKGBUILD2017-09-13 05:51:41 UTC (rev 257241)
@@ -5,7 +5,7 @@
 _hkgname=jwt
 pkgname=haskell-jwt
 pkgver=0.7.2
-pkgrel=8
+pkgrel=9
 pkgdesc="JSON Web Token (JWT) decoding and encoding"
 url="https://bitbucket.org/ssaasen/haskell-jwt;
 license=("MIT")


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:51:27
  Author: felixonmars
Revision: 257240

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

Added:
  deepin-movie/repos/community-testing-i686/PKGBUILD
(from rev 257239, deepin-movie/trunk/PKGBUILD)
  deepin-movie/repos/community-testing-x86_64/PKGBUILD
(from rev 257239, deepin-movie/trunk/PKGBUILD)
Deleted:
  deepin-movie/repos/community-testing-i686/PKGBUILD
  deepin-movie/repos/community-testing-x86_64/PKGBUILD

---+
 /PKGBUILD |   54 
 community-testing-i686/PKGBUILD   |   27 --
 community-testing-x86_64/PKGBUILD |   27 --
 3 files changed, 54 insertions(+), 54 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2017-09-13 05:50:32 UTC (rev 257239)
+++ community-testing-i686/PKGBUILD 2017-09-13 05:51:27 UTC (rev 257240)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=deepin-movie
-epoch=1
-pkgver=2.9.11
-pkgrel=1
-pkgdesc='Movie player based on QtAV'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/deepin-movie-reborn;
-license=('GPL3')
-depends=('dtkwidget' 'mpv' 'ffmpegthumbnailer')
-makedepends=('cmake' 'qt5-tools')
-groups=('deepin-extra')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-movie-reborn/archive/$pkgver.tar.gz;)
-sha512sums=('a0fe2da7de40d52d062d1f2490981400aafca76a625bb2b65d3f87813c3181f355f8a1b7d093dcb39781ee50f7e099287a444df4e4dfecd201cda86f27c8db63')
-
-build(){
-  cd deepin-movie-reborn-$pkgver
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release .
-  make
-}
-
-package() {
-  cd deepin-movie-reborn-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: deepin-movie/repos/community-testing-i686/PKGBUILD (from rev 257239, 
deepin-movie/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-09-13 05:51:27 UTC (rev 257240)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=deepin-movie
+epoch=1
+pkgver=2.9.12
+pkgrel=1
+pkgdesc='Movie player based on QtAV'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/deepin-movie-reborn;
+license=('GPL3')
+depends=('dtkwidget' 'mpv' 'ffmpegthumbnailer')
+makedepends=('cmake' 'qt5-tools')
+groups=('deepin-extra')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-movie-reborn/archive/$pkgver.tar.gz;)
+sha512sums=('0dc98ab182bd420d9f6b77f398f547d68bd16d98b68229806640918e4f23c067cd3ea9322595bb4ca365e22a4885685ba8b66ee94a722ccdbec36eb8d840153a')
+
+build(){
+  cd deepin-movie-reborn-$pkgver
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release .
+  make
+}
+
+package() {
+  cd deepin-movie-reborn-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-testing-x86_64/PKGBUILD
===
--- community-testing-x86_64/PKGBUILD   2017-09-13 05:50:32 UTC (rev 257239)
+++ community-testing-x86_64/PKGBUILD   2017-09-13 05:51:27 UTC (rev 257240)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=deepin-movie
-epoch=1
-pkgver=2.9.11
-pkgrel=1
-pkgdesc='Movie player based on QtAV'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/deepin-movie-reborn;
-license=('GPL3')
-depends=('dtkwidget' 'mpv' 'ffmpegthumbnailer')
-makedepends=('cmake' 'qt5-tools')
-groups=('deepin-extra')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-movie-reborn/archive/$pkgver.tar.gz;)
-sha512sums=('a0fe2da7de40d52d062d1f2490981400aafca76a625bb2b65d3f87813c3181f355f8a1b7d093dcb39781ee50f7e099287a444df4e4dfecd201cda86f27c8db63')
-
-build(){
-  cd deepin-movie-reborn-$pkgver
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release .
-  make
-}
-
-package() {
-  cd deepin-movie-reborn-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: deepin-movie/repos/community-testing-x86_64/PKGBUILD (from rev 257239, 
deepin-movie/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-09-13 05:51:27 UTC (rev 257240)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=deepin-movie
+epoch=1
+pkgver=2.9.12
+pkgrel=1
+pkgdesc='Movie player based on QtAV'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/deepin-movie-reborn;
+license=('GPL3')
+depends=('dtkwidget' 'mpv' 'ffmpegthumbnailer')
+makedepends=('cmake' 'qt5-tools')
+groups=('deepin-extra')

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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:50:32
  Author: felixonmars
Revision: 257239

upgpkg: deepin-movie 1:2.9.12-1

Modified:
  deepin-movie/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-13 05:48:56 UTC (rev 257238)
+++ PKGBUILD2017-09-13 05:50:32 UTC (rev 257239)
@@ -3,7 +3,7 @@
 
 pkgname=deepin-movie
 epoch=1
-pkgver=2.9.11
+pkgver=2.9.12
 pkgrel=1
 pkgdesc='Movie player based on QtAV'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'qt5-tools')
 groups=('deepin-extra')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-movie-reborn/archive/$pkgver.tar.gz;)
-sha512sums=('a0fe2da7de40d52d062d1f2490981400aafca76a625bb2b65d3f87813c3181f355f8a1b7d093dcb39781ee50f7e099287a444df4e4dfecd201cda86f27c8db63')
+sha512sums=('0dc98ab182bd420d9f6b77f398f547d68bd16d98b68229806640918e4f23c067cd3ea9322595bb4ca365e22a4885685ba8b66ee94a722ccdbec36eb8d840153a')
 
 build(){
   cd deepin-movie-reborn-$pkgver


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:48:18
  Author: felixonmars
Revision: 257237

upgpkg: haskell-cryptonite-conduit 0.2.0-45

rebuild with memory,0.14.8

Modified:
  haskell-cryptonite-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-13 05:48:00 UTC (rev 257236)
+++ PKGBUILD2017-09-13 05:48:18 UTC (rev 257237)
@@ -4,7 +4,7 @@
 _hkgname=cryptonite-conduit
 pkgname=haskell-cryptonite-conduit
 pkgver=0.2.0
-pkgrel=44
+pkgrel=45
 pkgdesc="Conduit bridge for cryptonite"
 url="https://github.com/haskell-crypto/cryptonite-conduit;
 license=('custom:BSD3')


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:48:56
  Author: felixonmars
Revision: 257238

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

Added:
  haskell-cryptonite-conduit/repos/community-staging-i686/
  haskell-cryptonite-conduit/repos/community-staging-i686/PKGBUILD
(from rev 257237, haskell-cryptonite-conduit/trunk/PKGBUILD)
  haskell-cryptonite-conduit/repos/community-staging-x86_64/
  haskell-cryptonite-conduit/repos/community-staging-x86_64/PKGBUILD
(from rev 257237, haskell-cryptonite-conduit/trunk/PKGBUILD)

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

Copied: haskell-cryptonite-conduit/repos/community-staging-i686/PKGBUILD (from 
rev 257237, haskell-cryptonite-conduit/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-13 05:48:56 UTC (rev 257238)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=cryptonite-conduit
+pkgname=haskell-cryptonite-conduit
+pkgver=0.2.0
+pkgrel=45
+pkgdesc="Conduit bridge for cryptonite"
+url="https://github.com/haskell-crypto/cryptonite-conduit;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cryptonite' 'haskell-memory'
+ 'haskell-resourcet')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('e46e2022b1e214c00c790caf95791e02')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-cryptonite-conduit/repos/community-staging-x86_64/PKGBUILD 
(from rev 257237, haskell-cryptonite-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-13 05:48:56 UTC (rev 257238)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=cryptonite-conduit
+pkgname=haskell-cryptonite-conduit
+pkgver=0.2.0
+pkgrel=45
+pkgdesc="Conduit bridge for cryptonite"
+url="https://github.com/haskell-crypto/cryptonite-conduit;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cryptonite' 'haskell-memory'
+ 'haskell-resourcet')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('e46e2022b1e214c00c790caf95791e02')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:48:00
  Author: felixonmars
Revision: 257236

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-13 05:47:10 UTC (rev 257235)
+++ community-i686/PKGBUILD 2017-09-13 05:48:00 UTC (rev 257236)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Max Meyer 
-
-pkgbase=pacparser
-pkgname=('pacparser' 'python2-pacparser')
-pkgver=1.3.6
-pkgrel=1
-arch=(i686 x86_64)
-url="http://pacparser.googlecode.com;
-license=('LGPL')
-makedepends=('python2' 'git')
-source=("git+https://github.com/pacparser/pacparser.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-build() {
-  cd $pkgbase
-  PYTHON=python2 make all pymod -C src
-}
-
-package_pacparser() {
-  pkgdesc="Library to parse proxy auto-config (PAC) files"
-
-  cd $pkgbase
-  make -C src DESTDIR="$pkgdir/" install
-}
-
-package_python2-pacparser() {
-  depends=('python2')
-  pkgdesc="Python 2.x pacparser module"
-
-  cd $pkgbase
-  PYTHON=python2 make -C src DESTDIR="$pkgdir/" install-pymod
-}
-
-# vim:set ts=2 sw=2 et:

Copied: pacparser/repos/community-i686/PKGBUILD (from rev 257235, 
pacparser/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-13 05:48:00 UTC (rev 257236)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Max Meyer 
+
+pkgbase=pacparser
+pkgname=('pacparser' 'python2-pacparser')
+pkgver=1.3.7rc6
+pkgrel=1
+arch=(i686 x86_64)
+url="https://github.com/pacparser/pacparser;
+license=('LGPL')
+makedepends=('python2-setuptools')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/pacparser/pacparser/archive/$pkgver.tar.gz;)
+sha512sums=('4489d3ca1d2121013373cf473a449ee09d6eb33840241739c988657335e9c9be98a39dd1cb4d690bbc98f8e7a444a31829f8b99ab64685252b9aed750f5fa768')
+
+build() {
+  cd $pkgbase-$pkgver
+  PYTHON=python2 make -j1 all pymod -C src
+}
+
+package_pacparser() {
+  pkgdesc="Library to parse proxy auto-config (PAC) files"
+
+  cd $pkgbase-$pkgver
+  make -C src DESTDIR="$pkgdir/" install
+}
+
+package_python2-pacparser() {
+  depends=('python2')
+  pkgdesc="Python 2.x pacparser module"
+
+  cd $pkgbase-$pkgver
+  PYTHON=python2 make -C src DESTDIR="$pkgdir/" install-pymod
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-13 05:47:10 UTC (rev 257235)
+++ community-x86_64/PKGBUILD   2017-09-13 05:48:00 UTC (rev 257236)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Max Meyer 
-
-pkgbase=pacparser
-pkgname=('pacparser' 'python2-pacparser')
-pkgver=1.3.6
-pkgrel=1
-arch=(i686 x86_64)
-url="http://pacparser.googlecode.com;
-license=('LGPL')
-makedepends=('python2' 'git')
-source=("git+https://github.com/pacparser/pacparser.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-build() {
-  cd $pkgbase
-  PYTHON=python2 make all pymod -C src
-}
-
-package_pacparser() {
-  pkgdesc="Library to parse proxy auto-config (PAC) files"
-
-  cd $pkgbase
-  make -C src DESTDIR="$pkgdir/" install
-}
-
-package_python2-pacparser() {
-  depends=('python2')
-  pkgdesc="Python 2.x pacparser module"
-
-  cd $pkgbase
-  PYTHON=python2 make -C src DESTDIR="$pkgdir/" install-pymod
-}
-
-# vim:set ts=2 sw=2 et:

Copied: pacparser/repos/community-x86_64/PKGBUILD (from rev 257235, 
pacparser/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-13 05:48:00 UTC (rev 257236)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Max Meyer 
+
+pkgbase=pacparser
+pkgname=('pacparser' 'python2-pacparser')
+pkgver=1.3.7rc6
+pkgrel=1
+arch=(i686 x86_64)
+url="https://github.com/pacparser/pacparser;
+license=('LGPL')
+makedepends=('python2-setuptools')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/pacparser/pacparser/archive/$pkgver.tar.gz;)

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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:47:10
  Author: felixonmars
Revision: 257235

upgpkg: pacparser 1.3.7rc6-1

Modified:
  pacparser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-13 05:46:34 UTC (rev 257234)
+++ PKGBUILD2017-09-13 05:47:10 UTC (rev 257235)
@@ -4,24 +4,24 @@
 
 pkgbase=pacparser
 pkgname=('pacparser' 'python2-pacparser')
-pkgver=1.3.6
+pkgver=1.3.7rc6
 pkgrel=1
 arch=(i686 x86_64)
-url="http://pacparser.googlecode.com;
+url="https://github.com/pacparser/pacparser;
 license=('LGPL')
-makedepends=('python2' 'git')
-source=("git+https://github.com/pacparser/pacparser.git#tag=$pkgver;)
-sha512sums=('SKIP')
+makedepends=('python2-setuptools')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/pacparser/pacparser/archive/$pkgver.tar.gz;)
+sha512sums=('4489d3ca1d2121013373cf473a449ee09d6eb33840241739c988657335e9c9be98a39dd1cb4d690bbc98f8e7a444a31829f8b99ab64685252b9aed750f5fa768')
 
 build() {
-  cd $pkgbase
-  PYTHON=python2 make all pymod -C src
+  cd $pkgbase-$pkgver
+  PYTHON=python2 make -j1 all pymod -C src
 }
 
 package_pacparser() {
   pkgdesc="Library to parse proxy auto-config (PAC) files"
 
-  cd $pkgbase
+  cd $pkgbase-$pkgver
   make -C src DESTDIR="$pkgdir/" install
 }
 
@@ -29,7 +29,7 @@
   depends=('python2')
   pkgdesc="Python 2.x pacparser module"
 
-  cd $pkgbase
+  cd $pkgbase-$pkgver
   PYTHON=python2 make -C src DESTDIR="$pkgdir/" install-pymod
 }
 


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:46:34
  Author: felixonmars
Revision: 257234

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

Added:
  haskell-store/repos/community-staging-i686/
  haskell-store/repos/community-staging-i686/PKGBUILD
(from rev 257233, haskell-store/trunk/PKGBUILD)
  haskell-store/repos/community-staging-x86_64/
  haskell-store/repos/community-staging-x86_64/PKGBUILD
(from rev 257233, haskell-store/trunk/PKGBUILD)

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

Copied: haskell-store/repos/community-staging-i686/PKGBUILD (from rev 257233, 
haskell-store/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-13 05:46:34 UTC (rev 257234)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=store
+pkgname=haskell-store
+pkgver=0.4.3.2
+pkgrel=4
+pkgdesc="Fast binary serialization"
+url="https://github.com/fpco/store;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-base-orphans' 
'haskell-base64-bytestring'
+ 'haskell-conduit' 'haskell-contravariant' 'haskell-cryptohash' 
'haskell-free'
+ 'haskell-hashable' 'haskell-hspec' 'haskell-hspec-smallcheck' 
'haskell-lifted-base'
+ 'haskell-monad-control' 'haskell-mono-traversable' 'haskell-network' 
'haskell-primitive'
+ 'haskell-resourcet' 'haskell-safe' 'haskell-semigroups' 
'haskell-smallcheck'
+ 'haskell-streaming-commons' 'haskell-store-core' 'haskell-syb' 
'haskell-text'
+ 'haskell-th-lift' 'haskell-th-lift-instances' 'haskell-th-orphans' 
'haskell-th-reify-many'
+ 'haskell-th-utilities' 'haskell-unordered-containers' 
'haskell-vector' 'haskell-void')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('0faa8b71cd2a078e989fb0da428d0f78cf2a7c85fb11584949e47e8a20f5f0f919d7ad82de1f6ce1e1ac33098179adc382dedb04c75db64f2654eeab60fdbb9d')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-comparison-bench -f-small-bench
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-store/repos/community-staging-x86_64/PKGBUILD (from rev 257233, 
haskell-store/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-13 05:46:34 UTC (rev 257234)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=store
+pkgname=haskell-store
+pkgver=0.4.3.2
+pkgrel=4
+pkgdesc="Fast binary serialization"
+url="https://github.com/fpco/store;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-base-orphans' 
'haskell-base64-bytestring'
+ 'haskell-conduit' 'haskell-contravariant' 'haskell-cryptohash' 
'haskell-free'
+ 'haskell-hashable' 'haskell-hspec' 'haskell-hspec-smallcheck' 
'haskell-lifted-base'
+ 'haskell-monad-control' 'haskell-mono-traversable' 'haskell-network' 
'haskell-primitive'
+ 'haskell-resourcet' 'haskell-safe' 'haskell-semigroups' 
'haskell-smallcheck'
+ 'haskell-streaming-commons' 'haskell-store-core' 'haskell-syb' 
'haskell-text'
+ 'haskell-th-lift' 'haskell-th-lift-instances' 'haskell-th-orphans' 
'haskell-th-reify-many'
+ 'haskell-th-utilities' 'haskell-unordered-containers' 
'haskell-vector' 'haskell-void')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)

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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:45:52
  Author: felixonmars
Revision: 257233

upgpkg: haskell-store 0.4.3.2-4

rebuild with memory,0.14.8

Modified:
  haskell-store/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-13 05:42:17 UTC (rev 257232)
+++ PKGBUILD2017-09-13 05:45:52 UTC (rev 257233)
@@ -4,7 +4,7 @@
 _hkgname=store
 pkgname=haskell-store
 pkgver=0.4.3.2
-pkgrel=3
+pkgrel=4
 pkgdesc="Fast binary serialization"
 url="https://github.com/fpco/store;
 license=('custom:BSD3')


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:42:17
  Author: felixonmars
Revision: 257232

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

Added:
  haskell-hit/repos/community-staging-i686/
  haskell-hit/repos/community-staging-i686/PKGBUILD
(from rev 257231, haskell-hit/trunk/PKGBUILD)
  haskell-hit/repos/community-staging-x86_64/
  haskell-hit/repos/community-staging-x86_64/PKGBUILD
(from rev 257231, haskell-hit/trunk/PKGBUILD)

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

Copied: haskell-hit/repos/community-staging-i686/PKGBUILD (from rev 257231, 
haskell-hit/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-13 05:42:17 UTC (rev 257232)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hit
+pkgname=haskell-hit
+pkgver=0.6.3
+pkgrel=49
+pkgdesc="Git operations in haskell"
+url="http://github.com/vincenthz/hit;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-attoparsec" "haskell-byteable" 
"haskell-cryptohash" "haskell-hashable"
+ "haskell-hashtables" "haskell-hourglass" "haskell-mtl" 
"haskell-parsec" "haskell-patience"
+ "haskell-random" "haskell-system-fileio" "haskell-system-filepath" 
"haskell-unix-compat"
+ "haskell-utf8-string" "haskell-vector" "haskell-zlib" 
"haskell-zlib-bindings")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('db86b3712029a4e40d1306dd6cc9ca2c9f4c77fe65a2b74106f1cbd2de26e471')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fexecutable -f-debug
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-hit/repos/community-staging-x86_64/PKGBUILD (from rev 257231, 
haskell-hit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-13 05:42:17 UTC (rev 257232)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hit
+pkgname=haskell-hit
+pkgver=0.6.3
+pkgrel=49
+pkgdesc="Git operations in haskell"
+url="http://github.com/vincenthz/hit;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-attoparsec" "haskell-byteable" 
"haskell-cryptohash" "haskell-hashable"
+ "haskell-hashtables" "haskell-hourglass" "haskell-mtl" 
"haskell-parsec" "haskell-patience"
+ "haskell-random" "haskell-system-fileio" "haskell-system-filepath" 
"haskell-unix-compat"
+ "haskell-utf8-string" "haskell-vector" "haskell-zlib" 
"haskell-zlib-bindings")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('db86b3712029a4e40d1306dd6cc9ca2c9f4c77fe65a2b74106f1cbd2de26e471')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fexecutable -f-debug
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+

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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:36:44
  Author: felixonmars
Revision: 257227

upgpkg: haskell-cryptohash 0.11.9-31

rebuild with memory,0.14.8

Modified:
  haskell-cryptohash/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-13 05:36:18 UTC (rev 257226)
+++ PKGBUILD2017-09-13 05:36:44 UTC (rev 257227)
@@ -5,7 +5,7 @@
 _hkgname=cryptohash
 pkgname=haskell-cryptohash
 pkgver=0.11.9
-pkgrel=30
+pkgrel=31
 pkgdesc="Collection of crypto hashes, fast, pure and practical"
 url="http://github.com/vincenthz/hs-cryptohash;
 license=("custom:BSD3")


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:41:38
  Author: felixonmars
Revision: 257231

upgpkg: haskell-hit 0.6.3-49

rebuild with memory,0.14.8

Modified:
  haskell-hit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-13 05:39:34 UTC (rev 257230)
+++ PKGBUILD2017-09-13 05:41:38 UTC (rev 257231)
@@ -5,7 +5,7 @@
 _hkgname=hit
 pkgname=haskell-hit
 pkgver=0.6.3
-pkgrel=48
+pkgrel=49
 pkgdesc="Git operations in haskell"
 url="http://github.com/vincenthz/hit;
 license=("custom:BSD3")


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:39:34
  Author: felixonmars
Revision: 257230

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

Added:
  haskell-cryptohash-conduit/repos/community-staging-i686/
  haskell-cryptohash-conduit/repos/community-staging-i686/PKGBUILD
(from rev 257229, haskell-cryptohash-conduit/trunk/PKGBUILD)
  haskell-cryptohash-conduit/repos/community-staging-x86_64/
  haskell-cryptohash-conduit/repos/community-staging-x86_64/PKGBUILD
(from rev 257229, haskell-cryptohash-conduit/trunk/PKGBUILD)

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

Copied: haskell-cryptohash-conduit/repos/community-staging-i686/PKGBUILD (from 
rev 257229, haskell-cryptohash-conduit/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-13 05:39:34 UTC (rev 257230)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cryptohash-conduit
+pkgname=haskell-cryptohash-conduit
+pkgver=0.1.1
+pkgrel=102
+pkgdesc="cryptohash conduit"
+url="http://github.com/vincenthz/hs-cryptohash-conduit;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-conduit" "haskell-conduit-extra" 
"haskell-cryptohash"
+ "haskell-resourcet")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('ea516d898d3e34dae6be3e8bc59c9f61a61cb133dbfe84a84bb0ded4b4ce')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-cryptohash-conduit/repos/community-staging-x86_64/PKGBUILD 
(from rev 257229, haskell-cryptohash-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-13 05:39:34 UTC (rev 257230)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cryptohash-conduit
+pkgname=haskell-cryptohash-conduit
+pkgver=0.1.1
+pkgrel=102
+pkgdesc="cryptohash conduit"
+url="http://github.com/vincenthz/hs-cryptohash-conduit;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-conduit" "haskell-conduit-extra" 
"haskell-cryptohash"
+ "haskell-resourcet")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('ea516d898d3e34dae6be3e8bc59c9f61a61cb133dbfe84a84bb0ded4b4ce')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:38:49
  Author: felixonmars
Revision: 257229

upgpkg: haskell-cryptohash-conduit 0.1.1-102

rebuild with memory,0.14.8

Modified:
  haskell-cryptohash-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-13 05:37:27 UTC (rev 257228)
+++ PKGBUILD2017-09-13 05:38:49 UTC (rev 257229)
@@ -5,7 +5,7 @@
 _hkgname=cryptohash-conduit
 pkgname=haskell-cryptohash-conduit
 pkgver=0.1.1
-pkgrel=101
+pkgrel=102
 pkgdesc="cryptohash conduit"
 url="http://github.com/vincenthz/hs-cryptohash-conduit;
 license=("custom:BSD3")


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:37:27
  Author: felixonmars
Revision: 257228

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

Added:
  haskell-cryptohash/repos/community-staging-i686/
  haskell-cryptohash/repos/community-staging-i686/PKGBUILD
(from rev 257227, haskell-cryptohash/trunk/PKGBUILD)
  haskell-cryptohash/repos/community-staging-x86_64/
  haskell-cryptohash/repos/community-staging-x86_64/PKGBUILD
(from rev 257227, haskell-cryptohash/trunk/PKGBUILD)

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

Copied: haskell-cryptohash/repos/community-staging-i686/PKGBUILD (from rev 
257227, haskell-cryptohash/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-13 05:37:27 UTC (rev 257228)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cryptohash
+pkgname=haskell-cryptohash
+pkgver=0.11.9
+pkgrel=31
+pkgdesc="Collection of crypto hashes, fast, pure and practical"
+url="http://github.com/vincenthz/hs-cryptohash;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-byteable" "haskell-cryptonite" "haskell-memory")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('c28f847fc1fcd65b6eea2e74a100300af940919f04bb21d391f6a773968f22fb')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-cryptohash/repos/community-staging-x86_64/PKGBUILD (from rev 
257227, haskell-cryptohash/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-13 05:37:27 UTC (rev 257228)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cryptohash
+pkgname=haskell-cryptohash
+pkgver=0.11.9
+pkgrel=31
+pkgdesc="Collection of crypto hashes, fast, pure and practical"
+url="http://github.com/vincenthz/hs-cryptohash;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-byteable" "haskell-cryptonite" "haskell-memory")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('c28f847fc1fcd65b6eea2e74a100300af940919f04bb21d391f6a773968f22fb')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:36:18
  Author: felixonmars
Revision: 257226

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

Added:
  docker-compose/repos/community-i686/PKGBUILD
(from rev 257225, docker-compose/trunk/PKGBUILD)
  docker-compose/repos/community-x86_64/PKGBUILD
(from rev 257225, docker-compose/trunk/PKGBUILD)
Deleted:
  docker-compose/repos/community-i686/PKGBUILD
  docker-compose/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-13 05:35:30 UTC (rev 257225)
+++ community-i686/PKGBUILD 2017-09-13 05:36:18 UTC (rev 257226)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Iwan Timmer 
-# Contributor: Vincent Demeester 
-# Contributor: Josh VanderLinden 
-
-pkgname=docker-compose
-pkgver=1.15.0
-pkgrel=1
-pkgdesc="Fast, isolated development environments using Docker"
-arch=('i686' 'x86_64')
-url="https://www.docker.com/;
-license=("Apache")
-depends=('python-cached-property' 'python-colorama' 'python-docopt' 
'python-yaml' 'python-requests'
- 'python-texttable' 'python-websocket-client' 'python-docker' 
'python-dockerpty'
- 'python-six' 'python-jsonschema' 'python-setuptools')
-depends_x86_64+=('docker')
-checkdepends=('python-pytest-runner' 'python-mock')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/docker/compose/archive/$pkgver.tar.gz;)
-sha512sums=('4b70ade8280a050b2ed06c3a79afeb6b69c6a9638f41968d3017afa62a82efe87c7762fc0c3fa81c4d701c9177ad551e124358a3182fedfd4a476247faeb23df')
-
-prepare() {
-  cd compose-$pkgver
-
-  # Remove upper bound on requires
-  sed -i 's/==/>=/g' requirements.txt
-  sed -i "s/, < .*',$/',/" setup.py
-}
-
-build() {
-  cd compose-$pkgver
-  python setup.py build
-}
-
-check() {
-  # Hack entry points by installing it
-  # TODO: need a running docker daemon to test
-
-  cd compose-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  # PATH="$PWD/tmp_install/usr/bin:$PATH" 
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH" 
python setup.py pytest
-}
-
-package() {
-  cd compose-$pkgver
-
-  python setup.py install -O1 --root="$pkgdir"
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 contrib/completion/bash/docker-compose 
"$pkgdir"/usr/share/bash-completion/completions/docker-compose
-}

Copied: docker-compose/repos/community-i686/PKGBUILD (from rev 257225, 
docker-compose/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-13 05:36:18 UTC (rev 257226)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Iwan Timmer 
+# Contributor: Vincent Demeester 
+# Contributor: Josh VanderLinden 
+
+pkgname=docker-compose
+pkgver=1.16.0
+pkgrel=1
+pkgdesc="Fast, isolated development environments using Docker"
+arch=('i686' 'x86_64')
+url="https://www.docker.com/;
+license=("Apache")
+depends=('python-cached-property' 'python-docopt' 'python-yaml' 
'python-requests'
+ 'python-texttable' 'python-websocket-client' 'python-docker' 
'python-dockerpty'
+ 'python-six' 'python-jsonschema' 'python-setuptools')
+depends_x86_64+=('docker')
+checkdepends=('python-pytest-runner' 'python-mock')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/docker/compose/archive/$pkgver.tar.gz;)
+sha512sums=('dc68b4615a33e1e7af74b05a85471a6a39628aed75312074510ecf1d5f3048fa17ff00adf6c99a5fc3b0d69deb48d5193acb95c3de5fbf82d6fbf266d3a370a6')
+
+prepare() {
+  cd compose-$pkgver
+
+  # Remove upper bound on requires
+  sed -i 's/==/>=/g' requirements.txt
+  sed -i "s/, < .*',$/',/" setup.py
+}
+
+build() {
+  cd compose-$pkgver
+  python setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+  # TODO: need a running docker daemon to test
+
+  cd compose-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  # PATH="$PWD/tmp_install/usr/bin:$PATH" 
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH" 
python setup.py pytest
+}
+
+package() {
+  cd compose-$pkgver
+
+  python setup.py install -O1 --root="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 contrib/completion/bash/docker-compose 
"$pkgdir"/usr/share/bash-completion/completions/docker-compose
+}

Deleted: community-x86_64/PKGBUILD

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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:34:55
  Author: felixonmars
Revision: 257224

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

Added:
  haskell-cryptonite/repos/community-staging-i686/
  haskell-cryptonite/repos/community-staging-i686/PKGBUILD
(from rev 257223, haskell-cryptonite/trunk/PKGBUILD)
  haskell-cryptonite/repos/community-staging-x86_64/
  haskell-cryptonite/repos/community-staging-x86_64/PKGBUILD
(from rev 257223, haskell-cryptonite/trunk/PKGBUILD)

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

Copied: haskell-cryptonite/repos/community-staging-i686/PKGBUILD (from rev 
257223, haskell-cryptonite/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-13 05:34:55 UTC (rev 257224)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cryptonite
+pkgname=haskell-cryptonite
+pkgver=0.24
+pkgrel=4
+pkgdesc="Cryptography Primitives sink"
+url="https://github.com/vincenthz/cryptonite;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-foundation' 'haskell-memory')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('f6a7379f8d2f398dcd8e6c27092158a51363a3d70ed28a22b1a4ba64ece55c700cc9d701acd6bb5492beefe4fd0ca87287362c58e5bd4e98fe06a12d531debf3')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fsupport_deepseq -finteger-gmp -f-support_pclmuldq 
-fsupport_rdrand \
+-fsupport_aesni -f-old_toolchain_inliner -f-check_alignment 
-fsupport_sse
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-cryptonite/repos/community-staging-x86_64/PKGBUILD (from rev 
257223, haskell-cryptonite/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-13 05:34:55 UTC (rev 257224)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cryptonite
+pkgname=haskell-cryptonite
+pkgver=0.24
+pkgrel=4
+pkgdesc="Cryptography Primitives sink"
+url="https://github.com/vincenthz/cryptonite;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-foundation' 'haskell-memory')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('f6a7379f8d2f398dcd8e6c27092158a51363a3d70ed28a22b1a4ba64ece55c700cc9d701acd6bb5492beefe4fd0ca87287362c58e5bd4e98fe06a12d531debf3')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fsupport_deepseq -finteger-gmp -f-support_pclmuldq 
-fsupport_rdrand \
+-fsupport_aesni -f-old_toolchain_inliner -f-check_alignment 
-fsupport_sse
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup 

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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:35:30
  Author: felixonmars
Revision: 257225

upgpkg: docker-compose 1.16.0-1

Modified:
  docker-compose/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-13 05:34:55 UTC (rev 257224)
+++ PKGBUILD2017-09-13 05:35:30 UTC (rev 257225)
@@ -5,19 +5,19 @@
 # Contributor: Josh VanderLinden 
 
 pkgname=docker-compose
-pkgver=1.15.0
+pkgver=1.16.0
 pkgrel=1
 pkgdesc="Fast, isolated development environments using Docker"
 arch=('i686' 'x86_64')
 url="https://www.docker.com/;
 license=("Apache")
-depends=('python-cached-property' 'python-colorama' 'python-docopt' 
'python-yaml' 'python-requests'
+depends=('python-cached-property' 'python-docopt' 'python-yaml' 
'python-requests'
  'python-texttable' 'python-websocket-client' 'python-docker' 
'python-dockerpty'
  'python-six' 'python-jsonschema' 'python-setuptools')
 depends_x86_64+=('docker')
 checkdepends=('python-pytest-runner' 'python-mock')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/docker/compose/archive/$pkgver.tar.gz;)
-sha512sums=('4b70ade8280a050b2ed06c3a79afeb6b69c6a9638f41968d3017afa62a82efe87c7762fc0c3fa81c4d701c9177ad551e124358a3182fedfd4a476247faeb23df')
+sha512sums=('dc68b4615a33e1e7af74b05a85471a6a39628aed75312074510ecf1d5f3048fa17ff00adf6c99a5fc3b0d69deb48d5193acb95c3de5fbf82d6fbf266d3a370a6')
 
 prepare() {
   cd compose-$pkgver


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:34:14
  Author: felixonmars
Revision: 257223

upgpkg: haskell-cryptonite 0.24-4

rebuild with memory,0.14.8

Modified:
  haskell-cryptonite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-13 05:29:52 UTC (rev 257222)
+++ PKGBUILD2017-09-13 05:34:14 UTC (rev 257223)
@@ -5,7 +5,7 @@
 _hkgname=cryptonite
 pkgname=haskell-cryptonite
 pkgver=0.24
-pkgrel=3
+pkgrel=4
 pkgdesc="Cryptography Primitives sink"
 url="https://github.com/vincenthz/cryptonite;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-crypto-pubkey-types/repos (4 files)

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:29:52
  Author: felixonmars
Revision: 257222

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

Added:
  haskell-crypto-pubkey-types/repos/community-staging-i686/
  haskell-crypto-pubkey-types/repos/community-staging-i686/PKGBUILD
(from rev 257221, haskell-crypto-pubkey-types/trunk/PKGBUILD)
  haskell-crypto-pubkey-types/repos/community-staging-x86_64/
  haskell-crypto-pubkey-types/repos/community-staging-x86_64/PKGBUILD
(from rev 257221, haskell-crypto-pubkey-types/trunk/PKGBUILD)

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

Copied: haskell-crypto-pubkey-types/repos/community-staging-i686/PKGBUILD (from 
rev 257221, haskell-crypto-pubkey-types/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-13 05:29:52 UTC (rev 257222)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=crypto-pubkey-types
+pkgname=haskell-crypto-pubkey-types
+pkgver=0.4.3
+pkgrel=20
+pkgdesc="Generic cryptography Public keys algorithm types"
+url="http://github.com/vincenthz/hs-crypto-pubkey-types;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-asn1-encoding' 'haskell-asn1-types')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('704ffbf1a6fc5989f193ad9ee3293a9b')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-crypto-pubkey-types/repos/community-staging-x86_64/PKGBUILD 
(from rev 257221, haskell-crypto-pubkey-types/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-13 05:29:52 UTC (rev 257222)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=crypto-pubkey-types
+pkgname=haskell-crypto-pubkey-types
+pkgver=0.4.3
+pkgrel=20
+pkgdesc="Generic cryptography Public keys algorithm types"
+url="http://github.com/vincenthz/hs-crypto-pubkey-types;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-asn1-encoding' 'haskell-asn1-types')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('704ffbf1a6fc5989f193ad9ee3293a9b')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}


[arch-commits] Commit in haskell-crypto-pubkey-types/trunk (PKGBUILD)

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:29:13
  Author: felixonmars
Revision: 257221

upgpkg: haskell-crypto-pubkey-types 0.4.3-20

rebuild with memory,0.14.8

Modified:
  haskell-crypto-pubkey-types/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-13 05:29:01 UTC (rev 257220)
+++ PKGBUILD2017-09-13 05:29:13 UTC (rev 257221)
@@ -5,7 +5,7 @@
 _hkgname=crypto-pubkey-types
 pkgname=haskell-crypto-pubkey-types
 pkgver=0.4.3
-pkgrel=19
+pkgrel=20
 pkgdesc="Generic cryptography Public keys algorithm types"
 url="http://github.com/vincenthz/hs-crypto-pubkey-types;
 license=('custom:BSD3')


[arch-commits] Commit in python-praw/repos (2 files)

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:29:01
  Author: felixonmars
Revision: 257220

archrelease: copy trunk to community-testing-any

Added:
  python-praw/repos/community-testing-any/
  python-praw/repos/community-testing-any/PKGBUILD
(from rev 257219, python-praw/trunk/PKGBUILD)

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

Copied: python-praw/repos/community-testing-any/PKGBUILD (from rev 257219, 
python-praw/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2017-09-13 05:29:01 UTC (rev 257220)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-praw
+pkgname=('python-praw' 'python2-praw')
+pkgver=5.1.0
+pkgrel=1
+pkgdesc="Python Reddit API Wrapper that allows for simple access to reddit's 
API"
+arch=('any')
+license=('GPL')
+url="http://praw.readthedocs.org;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-prawcore' 
'python2-prawcore'
+ 'python-update-checker' 'python2-update-checker' 
'python-pytest-runner'
+ 'python2-pytest-runner')
+checkdepends=('python-mock' 'python2-mock' 'python-betamax-serializers'
+  'python2-betamax-serializers' 'python-betamax-matchers' 
'python2-betamax-matchers')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/praw-dev/praw/archive/v$pkgver.tar.gz;)
+sha512sums=('c49d920c529506e696df1436b38f84fdbbb0c37fb6978200eb9e43e0eb0428f44a461e835c06897adab4713678507da00f0f02809d281206f3473e6b7345862e')
+
+prepare() {
+  cp -a praw-$pkgver{,-py2}
+}
+
+check() {
+  cd "$srcdir"/praw-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/praw-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-praw() {
+  depends=('python-prawcore' 'python-update-checker')
+
+  cd praw-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-praw() {
+  depends=('python2-prawcore' 'python2-update-checker')
+
+  cd praw-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:28:33
  Author: felixonmars
Revision: 257219

upgpkg: python-praw 5.1.0-1

Modified:
  python-praw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-13 05:27:00 UTC (rev 257218)
+++ PKGBUILD2017-09-13 05:28:33 UTC (rev 257219)
@@ -3,7 +3,7 @@
 
 pkgbase=python-praw
 pkgname=('python-praw' 'python2-praw')
-pkgver=5.0.1
+pkgver=5.1.0
 pkgrel=1
 pkgdesc="Python Reddit API Wrapper that allows for simple access to reddit's 
API"
 arch=('any')
@@ -15,11 +15,9 @@
 checkdepends=('python-mock' 'python2-mock' 'python-betamax-serializers'
   'python2-betamax-serializers' 'python-betamax-matchers' 
'python2-betamax-matchers')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/praw-dev/praw/archive/v$pkgver.tar.gz;)
-sha512sums=('99aeda7311cb0516c2e373984697418bfa10412a6410a10ee8c23394563def772eba40b9dbe2058693f4fdc884309a3e0aa904471d70beb3df8afb8436ad8add')
+sha512sums=('c49d920c529506e696df1436b38f84fdbbb0c37fb6978200eb9e43e0eb0428f44a461e835c06897adab4713678507da00f0f02809d281206f3473e6b7345862e')
 
 prepare() {
-  sed -e 's/betamax-matchers >=0.3.0, <0.4/betamax-matchers >=0.3.0/' \
-  -i praw-$pkgver/setup.py
   cp -a praw-$pkgver{,-py2}
 }
 


[arch-commits] Commit in haskell-asn1-parse/repos (4 files)

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:27:00
  Author: felixonmars
Revision: 257218

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

Added:
  haskell-asn1-parse/repos/community-staging-i686/
  haskell-asn1-parse/repos/community-staging-i686/PKGBUILD
(from rev 257217, haskell-asn1-parse/trunk/PKGBUILD)
  haskell-asn1-parse/repos/community-staging-x86_64/
  haskell-asn1-parse/repos/community-staging-x86_64/PKGBUILD
(from rev 257217, haskell-asn1-parse/trunk/PKGBUILD)

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

Copied: haskell-asn1-parse/repos/community-staging-i686/PKGBUILD (from rev 
257217, haskell-asn1-parse/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-13 05:27:00 UTC (rev 257218)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=asn1-parse
+pkgname=haskell-asn1-parse
+pkgver=0.9.4
+pkgrel=27
+pkgdesc="Simple monadic parser for ASN1 stream types."
+url="https://github.com/vincenthz/hs-asn1;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-asn1-encoding" "haskell-asn1-types")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('c6a328f570c69db73f8d2416f9251e8a03753f90d5d19e76cbe69509a3ceb708')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-asn1-parse/repos/community-staging-x86_64/PKGBUILD (from rev 
257217, haskell-asn1-parse/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-13 05:27:00 UTC (rev 257218)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=asn1-parse
+pkgname=haskell-asn1-parse
+pkgver=0.9.4
+pkgrel=27
+pkgdesc="Simple monadic parser for ASN1 stream types."
+url="https://github.com/vincenthz/hs-asn1;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-asn1-encoding" "haskell-asn1-types")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('c6a328f570c69db73f8d2416f9251e8a03753f90d5d19e76cbe69509a3ceb708')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:26:21
  Author: felixonmars
Revision: 257217

upgpkg: haskell-asn1-parse 0.9.4-27

rebuild with memory,0.14.8

Modified:
  haskell-asn1-parse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-13 05:25:58 UTC (rev 257216)
+++ PKGBUILD2017-09-13 05:26:21 UTC (rev 257217)
@@ -5,7 +5,7 @@
 _hkgname=asn1-parse
 pkgname=haskell-asn1-parse
 pkgver=0.9.4
-pkgrel=26
+pkgrel=27
 pkgdesc="Simple monadic parser for ASN1 stream types."
 url="https://github.com/vincenthz/hs-asn1;
 license=("custom:BSD3")


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:25:28
  Author: felixonmars
Revision: 257215

upgpkg: python-prawcore 0.12.0-1

Modified:
  python-prawcore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-13 05:25:04 UTC (rev 257214)
+++ PKGBUILD2017-09-13 05:25:28 UTC (rev 257215)
@@ -3,7 +3,7 @@
 
 pkgbase=python-prawcore
 pkgname=('python-prawcore' 'python2-prawcore')
-pkgver=0.11.0
+pkgver=0.12.0
 pkgrel=1
 pkgdesc="Low-level communication layer for PRAW 4+."
 arch=('any')
@@ -14,10 +14,9 @@
   'python-betamax-serializers' 'python2-betamax-serializers' 
'python-testfixtures'
   'python2-testfixtures')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/praw-dev/prawcore/archive/v$pkgver.tar.gz;)
-sha512sums=('2f49abca35515836be6e27938f7a7bbdf3b8d8e7c4ffb305f646ecf068968478d724fa7839071110b7960a2313b0ab11f1a0d13e8378ed1b616317612b83aeb9')
+sha512sums=('0dcbd5a26ca7c139a1ac0da41078faf86a2b297add122839e66cc7c18f1fd120d5d8a535a5d901ae9d06a9c0a151f221a062abb93da004afd9bb8b7e6fedfe48')
 
 prepare() {
-  sed -i 's/testfixtures >4.13.2, <5/testfixtures >4.13.2, <6/' 
prawcore-$pkgver/setup.py
   cp -a prawcore-$pkgver{,-py2}
 }
 


[arch-commits] Commit in python-prawcore/repos (2 files)

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:25:58
  Author: felixonmars
Revision: 257216

archrelease: copy trunk to community-testing-any

Added:
  python-prawcore/repos/community-testing-any/
  python-prawcore/repos/community-testing-any/PKGBUILD
(from rev 257215, python-prawcore/trunk/PKGBUILD)

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

Copied: python-prawcore/repos/community-testing-any/PKGBUILD (from rev 257215, 
python-prawcore/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2017-09-13 05:25:58 UTC (rev 257216)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-prawcore
+pkgname=('python-prawcore' 'python2-prawcore')
+pkgver=0.12.0
+pkgrel=1
+pkgdesc="Low-level communication layer for PRAW 4+."
+arch=('any')
+license=('BSD')
+url="https://github.com/praw-dev/prawcore;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 
'python2-requests')
+checkdepends=('python-mock' 'python2-mock' 'python-betamax-matchers' 
'python2-betamax-matchers'
+  'python-betamax-serializers' 'python2-betamax-serializers' 
'python-testfixtures'
+  'python2-testfixtures')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/praw-dev/prawcore/archive/v$pkgver.tar.gz;)
+sha512sums=('0dcbd5a26ca7c139a1ac0da41078faf86a2b297add122839e66cc7c18f1fd120d5d8a535a5d901ae9d06a9c0a151f221a062abb93da004afd9bb8b7e6fedfe48')
+
+prepare() {
+  cp -a prawcore-$pkgver{,-py2}
+}
+
+check() {
+  cd "$srcdir"/prawcore-$pkgver
+  python setup.py test
+
+  cd "$srcdir"/prawcore-$pkgver-py2
+  python2 setup.py test
+}
+
+package_python-prawcore() {
+  depends=('python-requests')
+
+  cd prawcore-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+package_python2-prawcore() {
+  depends=('python2-requests')
+
+  cd prawcore-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}


[arch-commits] Commit in haskell-asn1-encoding/repos (4 files)

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:25:04
  Author: felixonmars
Revision: 257214

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

Added:
  haskell-asn1-encoding/repos/community-staging-i686/
  haskell-asn1-encoding/repos/community-staging-i686/PKGBUILD
(from rev 257213, haskell-asn1-encoding/trunk/PKGBUILD)
  haskell-asn1-encoding/repos/community-staging-x86_64/
  haskell-asn1-encoding/repos/community-staging-x86_64/PKGBUILD
(from rev 257213, haskell-asn1-encoding/trunk/PKGBUILD)

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

Copied: haskell-asn1-encoding/repos/community-staging-i686/PKGBUILD (from rev 
257213, haskell-asn1-encoding/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-13 05:25:04 UTC (rev 257214)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=asn1-encoding
+pkgname=haskell-asn1-encoding
+pkgver=0.9.5
+pkgrel=16
+pkgdesc="ASN1 data reader and writer in RAW, BER and DER forms"
+url="http://github.com/vincenthz/hs-asn1;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-asn1-types" "haskell-hourglass")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('1e863bfd363f6c3760cc80f2c0d422e17845a9f79fe006030db202ecab5aaf29')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-asn1-encoding/repos/community-staging-x86_64/PKGBUILD (from rev 
257213, haskell-asn1-encoding/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-13 05:25:04 UTC (rev 257214)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=asn1-encoding
+pkgname=haskell-asn1-encoding
+pkgver=0.9.5
+pkgrel=16
+pkgdesc="ASN1 data reader and writer in RAW, BER and DER forms"
+url="http://github.com/vincenthz/hs-asn1;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-asn1-types" "haskell-hourglass")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('1e863bfd363f6c3760cc80f2c0d422e17845a9f79fe006030db202ecab5aaf29')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:24:20
  Author: felixonmars
Revision: 257213

upgpkg: haskell-asn1-encoding 0.9.5-16

rebuild with memory,0.14.8

Modified:
  haskell-asn1-encoding/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-13 05:23:00 UTC (rev 257212)
+++ PKGBUILD2017-09-13 05:24:20 UTC (rev 257213)
@@ -5,7 +5,7 @@
 _hkgname=asn1-encoding
 pkgname=haskell-asn1-encoding
 pkgver=0.9.5
-pkgrel=15
+pkgrel=16
 pkgdesc="ASN1 data reader and writer in RAW, BER and DER forms"
 url="http://github.com/vincenthz/hs-asn1;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-asn1-types/repos (4 files)

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:23:00
  Author: felixonmars
Revision: 257212

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

Added:
  haskell-asn1-types/repos/community-staging-i686/
  haskell-asn1-types/repos/community-staging-i686/PKGBUILD
(from rev 257211, haskell-asn1-types/trunk/PKGBUILD)
  haskell-asn1-types/repos/community-staging-x86_64/
  haskell-asn1-types/repos/community-staging-x86_64/PKGBUILD
(from rev 257211, haskell-asn1-types/trunk/PKGBUILD)

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

Copied: haskell-asn1-types/repos/community-staging-i686/PKGBUILD (from rev 
257211, haskell-asn1-types/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-13 05:23:00 UTC (rev 257212)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=asn1-types
+pkgname=haskell-asn1-types
+pkgver=0.3.2
+pkgrel=23
+pkgdesc="ASN.1 types"
+url="http://github.com/vincenthz/hs-asn1-types;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-hourglass" "haskell-memory")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('0c571fff4a10559c6a630d4851ba3cdf1d558185ce3dcfca1136f9883d647217')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-asn1-types/repos/community-staging-x86_64/PKGBUILD (from rev 
257211, haskell-asn1-types/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-13 05:23:00 UTC (rev 257212)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=asn1-types
+pkgname=haskell-asn1-types
+pkgver=0.3.2
+pkgrel=23
+pkgdesc="ASN.1 types"
+url="http://github.com/vincenthz/hs-asn1-types;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-hourglass" "haskell-memory")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('0c571fff4a10559c6a630d4851ba3cdf1d558185ce3dcfca1136f9883d647217')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:22:21
  Author: felixonmars
Revision: 257211

upgpkg: haskell-asn1-types 0.3.2-23

rebuild with memory,0.14.8

Modified:
  haskell-asn1-types/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-13 05:20:58 UTC (rev 257210)
+++ PKGBUILD2017-09-13 05:22:21 UTC (rev 257211)
@@ -5,7 +5,7 @@
 _hkgname=asn1-types
 pkgname=haskell-asn1-types
 pkgver=0.3.2
-pkgrel=22
+pkgrel=23
 pkgdesc="ASN.1 types"
 url="http://github.com/vincenthz/hs-asn1-types;
 license=("custom:BSD3")


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:20:58
  Author: felixonmars
Revision: 257210

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

Added:
  haskell-memory/repos/community-staging-i686/
  haskell-memory/repos/community-staging-i686/PKGBUILD
(from rev 257209, haskell-memory/trunk/PKGBUILD)
  haskell-memory/repos/community-staging-x86_64/
  haskell-memory/repos/community-staging-x86_64/PKGBUILD
(from rev 257209, haskell-memory/trunk/PKGBUILD)

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

Copied: haskell-memory/repos/community-staging-i686/PKGBUILD (from rev 257209, 
haskell-memory/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-13 05:20:58 UTC (rev 257210)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=memory
+pkgname=haskell-memory
+pkgver=0.14.8
+pkgrel=1
+pkgdesc="memory and related abstraction stuff"
+url="https://github.com/vincenthz/hs-memory;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-foundation')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('18bebb4ef59cd694aa83f5401f292e7fea4d82d81a773cf9a77d133f045f6a3a046fcd4cd0177e724b52fdd8a93152462703452533041767466d7517a9cd8d85')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fsupport_deepseq -fsupport_bytestring -fsupport_foundation
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-memory/repos/community-staging-x86_64/PKGBUILD (from rev 
257209, haskell-memory/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-13 05:20:58 UTC (rev 257210)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=memory
+pkgname=haskell-memory
+pkgver=0.14.8
+pkgrel=1
+pkgdesc="memory and related abstraction stuff"
+url="https://github.com/vincenthz/hs-memory;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-foundation')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('18bebb4ef59cd694aa83f5401f292e7fea4d82d81a773cf9a77d133f045f6a3a046fcd4cd0177e724b52fdd8a93152462703452533041767466d7517a9cd8d85')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fsupport_deepseq -fsupport_bytestring -fsupport_foundation
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+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/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:20:16
  Author: felixonmars
Revision: 257209

upgpkg: haskell-memory 0.14.8-1

rebuild with memory,0.14.8

Modified:
  haskell-memory/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-13 05:17:27 UTC (rev 257208)
+++ PKGBUILD2017-09-13 05:20:16 UTC (rev 257209)
@@ -4,7 +4,7 @@
 
 _hkgname=memory
 pkgname=haskell-memory
-pkgver=0.14.7
+pkgver=0.14.8
 pkgrel=1
 pkgdesc="memory and related abstraction stuff"
 url="https://github.com/vincenthz/hs-memory;
@@ -13,7 +13,7 @@
 depends=('ghc-libs' 'haskell-foundation')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('6041ed78780cf9482c9b772992374aab9dece5c94170b260a654a273520b182817f00468eef39773e1c07e56dd5d15767bd606ee7f481fdbc5e6f3b2d7a61a2a')
+sha512sums=('18bebb4ef59cd694aa83f5401f292e7fea4d82d81a773cf9a77d133f045f6a3a046fcd4cd0177e724b52fdd8a93152462703452533041767466d7517a9cd8d85')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:17:27
  Author: felixonmars
Revision: 257208

archrelease: copy trunk to community-any

Added:
  python-cloudflare/repos/community-any/PKGBUILD
(from rev 257207, python-cloudflare/trunk/PKGBUILD)
Deleted:
  python-cloudflare/repos/community-any/PKGBUILD

--+
 PKGBUILD |  120 ++---
 1 file changed, 60 insertions(+), 60 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-13 05:16:51 UTC (rev 257207)
+++ PKGBUILD2017-09-13 05:17:27 UTC (rev 257208)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-cloudflare
-pkgname=('python-cloudflare' 'python2-cloudflare')
-pkgver=1.7.4
-pkgrel=1
-pkgdesc='Python wrapper for the Cloudflare v4 API'
-arch=('any')
-license=('MIT')
-url='https://github.com/cloudflare/python-cloudflare'
-makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 
'python2-requests'
- 'python-future' 'python2-future' 'python-yaml' 'python2-yaml')
-checkdepends=('python-pytest' 'python2-pytest')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/cloudflare/python-cloudflare/archive/$pkgver.tar.gz;)
-sha512sums=('fc9dd2ebcf9a4e8960cf326cc5ca06f8094607974f6978ff4cd46ba4c71f1bb4c2ac6aacbb139c2a709c5bb5ab81bde022e0d282f62bc8c56488767a9aec714a')
-
-prepare() {
-  cp -a python-cloudflare-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/python-cloudflare-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/python-cloudflare-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/python-cloudflare-$pkgver
-  PYTHONPATH="$PWD/build/lib" pytest tests/test1.py
-
-  cd "$srcdir"/python-cloudflare-$pkgver-py2
-  PYTHONPATH="$PWD/build/lib" pytest2 tests/test1.py
-}
-
-package_python-cloudflare() {
-  depends=('python-requests' 'python-future' 'python-yaml')
-
-  cd python-cloudflare-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  rm -r "$pkgdir"/usr/lib/python3.6/site-packages/examples
-}
-
-package_python2-cloudflare() {
-  depends=('python2-requests' 'python2-future' 'python2-yaml')
-
-  cd python-cloudflare-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  mv "$pkgdir"/usr/bin/cli4{,-python2}
-
-  rm -r "$pkgdir"/usr/lib/python2.7/site-packages/examples
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-cloudflare/repos/community-any/PKGBUILD (from rev 257207, 
python-cloudflare/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-13 05:17:27 UTC (rev 257208)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-cloudflare
+pkgname=('python-cloudflare' 'python2-cloudflare')
+pkgver=1.7.5
+pkgrel=1
+pkgdesc='Python wrapper for the Cloudflare v4 API'
+arch=('any')
+license=('MIT')
+url='https://github.com/cloudflare/python-cloudflare'
+makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 
'python2-requests'
+ 'python-future' 'python2-future' 'python-yaml' 'python2-yaml')
+checkdepends=('python-pytest' 'python2-pytest')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/cloudflare/python-cloudflare/archive/$pkgver.tar.gz;)
+sha512sums=('0c5a79ad8481d6edcb72928ea406debfd1c9afb0ea69626bdab68438ee3518a390d8bcbd4e0285f7b07a4b929dacbf0f10670325926d40e5a8d1af739a752ea5')
+
+prepare() {
+  cp -a python-cloudflare-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/python-cloudflare-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/python-cloudflare-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-cloudflare-$pkgver
+  PYTHONPATH="$PWD/build/lib" pytest tests/test1.py
+
+  cd "$srcdir"/python-cloudflare-$pkgver-py2
+  PYTHONPATH="$PWD/build/lib" pytest2 tests/test1.py
+}
+
+package_python-cloudflare() {
+  depends=('python-requests' 'python-future' 'python-yaml')
+
+  cd python-cloudflare-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  rm -r "$pkgdir"/usr/lib/python3.6/site-packages/examples
+}
+
+package_python2-cloudflare() {
+  depends=('python2-requests' 'python2-future' 'python2-yaml')
+
+  cd python-cloudflare-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  mv "$pkgdir"/usr/bin/cli4{,-python2}
+
+  rm -r "$pkgdir"/usr/lib/python2.7/site-packages/examples
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:16:51
  Author: felixonmars
Revision: 257207

upgpkg: python-cloudflare 1.7.5-1

Modified:
  python-cloudflare/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-13 05:15:37 UTC (rev 257206)
+++ PKGBUILD2017-09-13 05:16:51 UTC (rev 257207)
@@ -3,7 +3,7 @@
 
 pkgbase=python-cloudflare
 pkgname=('python-cloudflare' 'python2-cloudflare')
-pkgver=1.7.4
+pkgver=1.7.5
 pkgrel=1
 pkgdesc='Python wrapper for the Cloudflare v4 API'
 arch=('any')
@@ -13,7 +13,7 @@
  'python-future' 'python2-future' 'python-yaml' 'python2-yaml')
 checkdepends=('python-pytest' 'python2-pytest')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/cloudflare/python-cloudflare/archive/$pkgver.tar.gz;)
-sha512sums=('fc9dd2ebcf9a4e8960cf326cc5ca06f8094607974f6978ff4cd46ba4c71f1bb4c2ac6aacbb139c2a709c5bb5ab81bde022e0d282f62bc8c56488767a9aec714a')
+sha512sums=('0c5a79ad8481d6edcb72928ea406debfd1c9afb0ea69626bdab68438ee3518a390d8bcbd4e0285f7b07a4b929dacbf0f10670325926d40e5a8d1af739a752ea5')
 
 prepare() {
   cp -a python-cloudflare-$pkgver{,-py2}


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:15:03
  Author: felixonmars
Revision: 257204

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

Added:
  tamarin-prover/repos/community-staging-i686/
  tamarin-prover/repos/community-staging-i686/PKGBUILD
(from rev 257203, tamarin-prover/trunk/PKGBUILD)
  tamarin-prover/repos/community-staging-i686/binary-orphans-0.1.8.0.patch
(from rev 257203, tamarin-prover/trunk/binary-orphans-0.1.8.0.patch)
  tamarin-prover/repos/community-staging-x86_64/
  tamarin-prover/repos/community-staging-x86_64/PKGBUILD
(from rev 257203, tamarin-prover/trunk/PKGBUILD)
  tamarin-prover/repos/community-staging-x86_64/binary-orphans-0.1.8.0.patch
(from rev 257203, tamarin-prover/trunk/binary-orphans-0.1.8.0.patch)

---+
 community-staging-i686/PKGBUILD   |   54 
 community-staging-i686/binary-orphans-0.1.8.0.patch   |   16 
 community-staging-x86_64/PKGBUILD |   54 
 community-staging-x86_64/binary-orphans-0.1.8.0.patch |   16 
 4 files changed, 140 insertions(+)

Copied: tamarin-prover/repos/community-staging-i686/PKGBUILD (from rev 257203, 
tamarin-prover/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-13 05:15:03 UTC (rev 257204)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=tamarin-prover
+pkgver=1.2.2
+pkgrel=15
+pkgdesc="The Tamarin prover for security protocol analysis"
+url="http://tamarin-prover.github.io;
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'graphviz' 'maude' "haskell-hunit" "haskell-binary-orphans"
+ "haskell-blaze-builder" "haskell-blaze-html" "haskell-cmdargs" 
"haskell-conduit"
+ "haskell-fclabels" "haskell-file-embed" "haskell-gitrev" 
"haskell-http-types"
+ "haskell-lifted-base" "haskell-mtl" "haskell-resourcet" "haskell-safe"
+ "haskell-shakespeare" "haskell-text" "haskell-threads" "haskell-wai" 
"haskell-warp"
+ "haskell-yesod-core" "haskell-yesod-static" 
"haskell-tamarin-prover-utils"
+ "haskell-tamarin-prover-term" "haskell-tamarin-prover-theory")
+optdepends=('ocaml: for sapic support')
+makedepends=('ghc' 'ocaml')
+source=("tamarin-prover-$pkgver.tar.gz::https://github.com/tamarin-prover/tamarin-prover/archive/$pkgver.tar.gz;
+binary-orphans-0.1.8.0.patch)
+sha256sums=('f9b2d3acc01b89f71d2b246a6b3010ebab71e4fe309b3be8a8eac213422b43de'
+'d2f700f4d5b0a3aaf239139bc4abba85acdc2ab86ae3ff7fe345b95679998011')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+sed -i '/cp sapic/d' plugins/sapic/Makefile
+patch -p1 -i ../binary-orphans-0.1.8.0.patch
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-executable-dynamic --prefix=/usr \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \
+-fthreaded -ftest-coverage -f-build-tests
+runhaskell Setup build
+
+cd plugins/sapic
+make -j1
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+install -Dm644 etc/filetype.vim 
"$pkgdir"/usr/share/vim/vimfiles/filetype.vim
+install -Dm644 etc/spthy.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/spthy.vim
+install -Dm644 etc/sapic.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/sapic.vim
+
+cd plugins/sapic
+install -Dm755 sapic "$pkgdir"/usr/bin/sapic
+}

Copied: 
tamarin-prover/repos/community-staging-i686/binary-orphans-0.1.8.0.patch (from 
rev 257203, tamarin-prover/trunk/binary-orphans-0.1.8.0.patch)
===
--- community-staging-i686/binary-orphans-0.1.8.0.patch 
(rev 0)
+++ community-staging-i686/binary-orphans-0.1.8.0.patch 2017-09-13 05:15:03 UTC 
(rev 257204)
@@ -0,0 +1,16 @@
+diff --git a/src/Web/Types.hs b/src/Web/Types.hs
+index 8efe669..95e75f3 100644
+--- a/src/Web/Types.hs
 b/src/Web/Types.hs
+@@ -79,11 +79,6 @@ import   Yesod.Static
+ import   Theory
+ 
+ 
+--- | Derived Instances to fix things
+-instance Bin.Binary ZonedTime where
+-  get = liftM2 ZonedTime Bin.get Bin.get
+-  put (ZonedTime d tod) = Bin.put d >> Bin.put tod
+-
+ --
+ -- Types
+ --

Copied: tamarin-prover/repos/community-staging-x86_64/PKGBUILD (from rev 
257203, tamarin-prover/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ 

[arch-commits] Commit in tamarin-prover/trunk (PKGBUILD binary-orphans-0.1.8.0.patch)

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:14:23
  Author: felixonmars
Revision: 257203

upgpkg: tamarin-prover 1.2.2-15

rebuild with binary-orphans,0.1.8.0

Added:
  tamarin-prover/trunk/binary-orphans-0.1.8.0.patch
Modified:
  tamarin-prover/trunk/PKGBUILD

--+
 PKGBUILD |9 ++---
 binary-orphans-0.1.8.0.patch |   16 
 2 files changed, 22 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-09-13 05:12:53 UTC (rev 257202)
+++ PKGBUILD2017-09-13 05:14:23 UTC (rev 257203)
@@ -4,7 +4,7 @@
 
 pkgname=tamarin-prover
 pkgver=1.2.2
-pkgrel=14
+pkgrel=15
 pkgdesc="The Tamarin prover for security protocol analysis"
 url="http://tamarin-prover.github.io;
 license=("GPL")
@@ -18,12 +18,15 @@
  "haskell-tamarin-prover-term" "haskell-tamarin-prover-theory")
 optdepends=('ocaml: for sapic support')
 makedepends=('ghc' 'ocaml')
-source=("tamarin-prover-$pkgver.tar.gz::https://github.com/tamarin-prover/tamarin-prover/archive/$pkgver.tar.gz;)
-sha256sums=('f9b2d3acc01b89f71d2b246a6b3010ebab71e4fe309b3be8a8eac213422b43de')
+source=("tamarin-prover-$pkgver.tar.gz::https://github.com/tamarin-prover/tamarin-prover/archive/$pkgver.tar.gz;
+binary-orphans-0.1.8.0.patch)
+sha256sums=('f9b2d3acc01b89f71d2b246a6b3010ebab71e4fe309b3be8a8eac213422b43de'
+'d2f700f4d5b0a3aaf239139bc4abba85acdc2ab86ae3ff7fe345b95679998011')
 
 prepare() {
 cd "${srcdir}/${pkgname}-${pkgver}"
 sed -i '/cp sapic/d' plugins/sapic/Makefile
+patch -p1 -i ../binary-orphans-0.1.8.0.patch
 }
 
 build() {

Added: binary-orphans-0.1.8.0.patch
===
--- binary-orphans-0.1.8.0.patch(rev 0)
+++ binary-orphans-0.1.8.0.patch2017-09-13 05:14:23 UTC (rev 257203)
@@ -0,0 +1,16 @@
+diff --git a/src/Web/Types.hs b/src/Web/Types.hs
+index 8efe669..95e75f3 100644
+--- a/src/Web/Types.hs
 b/src/Web/Types.hs
+@@ -79,11 +79,6 @@ import   Yesod.Static
+ import   Theory
+ 
+ 
+--- | Derived Instances to fix things
+-instance Bin.Binary ZonedTime where
+-  get = liftM2 ZonedTime Bin.get Bin.get
+-  put (ZonedTime d tod) = Bin.put d >> Bin.put tod
+-
+ --
+ -- Types
+ --


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:07:03
  Author: felixonmars
Revision: 257188

archrelease: copy trunk to community-any

Added:
  python-hypothesis/repos/community-any/PKGBUILD
(from rev 257187, python-hypothesis/trunk/PKGBUILD)
Deleted:
  python-hypothesis/repos/community-any/PKGBUILD

--+
 PKGBUILD |  151 +++--
 1 file changed, 77 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-13 05:05:24 UTC (rev 257187)
+++ PKGBUILD2017-09-13 05:07:03 UTC (rev 257188)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-hypothesis
-pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.25.1
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org;
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-enum34')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
-  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
-  'python-flaky' 'python2-flaky' 'python-pytest-benchmark' 
'python2-pytest-benchmark'
-  'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
-  'python-mock' 'python2-mock')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz;)
-sha512sums=('208687e7625df1ca3598c13cd691f9fde577c73cf1fcf9017c9ebedc815dbf102f5460f7ffa609cd57ff63ab300c41c6b4a6bc7fb72808722034c43d7da858aa')
-
-prepare() {
-  cp -a hypothesis-python-$pkgver{,-py2}
-
-  rm -r hypothesis-python-$pkgver/tests/py2
-  rm -r hypothesis-python-$pkgver-py2/tests/py3
-
-  export LC_CTYPE=en_US.UTF-8
-}
-
-build() {
-  cd "$srcdir"/hypothesis-python-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/hypothesis-python-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/hypothesis-python-$pkgver
-  mv tests/django ../
-  python setup.py pytest
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m tests.django.manage test 
tests.django
-
-  cd "$srcdir"/hypothesis-python-$pkgver-py2
-  mv tests/django ../
-  python2 setup.py pytest
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m tests.django.manage test 
tests.django
-}
-
-package_python-hypothesis() {
-  depends=('python')
-  optdepends=('python-pytz: for datetime and django module'
-  'python-faker: for fakefactory and django module'
-  'python-django: for django module'
-  'python-numpy: for numpy module'
-  'python-pytest: for pytest module')
-
-  cd hypothesis-python-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-hypothesis() {
-  depends=('python2-enum34')
-  optdepends=('python2-pytz: for datetime and django module'
-  'python2-faker: for fakefactory and django module'
-  'python2-django: for django module'
-  'python2-numpy: for numpy module'
-  'python2-pytest: for pytest module')
-
-  cd hypothesis-python-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 257187, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-13 05:07:03 UTC (rev 257188)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-hypothesis
+pkgname=('python-hypothesis' 'python2-hypothesis')
+pkgver=3.26.0
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org;
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-enum34')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
+  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
+  'python-flaky' 'python2-flaky' 'python-pytest-benchmark' 
'python2-pytest-benchmark'
+  'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
+  'python-mock' 'python2-mock')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz;)
+sha512sums=('dac02d85bbd2a3d17a0afa6083d66038c052b6b9ac0ddaf9ad15847bf8ca6249027dff6ebe76e90efb04fa90071b758251385beb3a7f46988cd0f1e84bd28183')
+
+prepare() {
+  # Make tests faster
+  sed -i 's/ -n 2$/ -n 16/' hypothesis-python-$pkgver/tox.ini
+
+  cp -a hypothesis-python-$pkgver{,-py2}
+
+  rm -r hypothesis-python-$pkgver/tests/py2
+  rm -r hypothesis-python-$pkgver-py2/tests/py3
+
+  export 

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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 05:05:24
  Author: felixonmars
Revision: 257187

upgpkg: python-hypothesis 3.26.0-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-13 04:49:30 UTC (rev 257186)
+++ PKGBUILD2017-09-13 05:05:24 UTC (rev 257187)
@@ -3,7 +3,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.25.1
+pkgver=3.26.0
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -16,9 +16,12 @@
   'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
   'python-mock' 'python2-mock')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz;)
-sha512sums=('208687e7625df1ca3598c13cd691f9fde577c73cf1fcf9017c9ebedc815dbf102f5460f7ffa609cd57ff63ab300c41c6b4a6bc7fb72808722034c43d7da858aa')
+sha512sums=('dac02d85bbd2a3d17a0afa6083d66038c052b6b9ac0ddaf9ad15847bf8ca6249027dff6ebe76e90efb04fa90071b758251385beb3a7f46988cd0f1e84bd28183')
 
 prepare() {
+  # Make tests faster
+  sed -i 's/ -n 2$/ -n 16/' hypothesis-python-$pkgver/tox.ini
+
   cp -a hypothesis-python-$pkgver{,-py2}
 
   rm -r hypothesis-python-$pkgver/tests/py2


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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 04:49:30
  Author: felixonmars
Revision: 257186

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

Added:
  nodejs/repos/community-i686/PKGBUILD
(from rev 257185, nodejs/trunk/PKGBUILD)
  nodejs/repos/community-i686/rebuild.list
(from rev 257185, nodejs/trunk/rebuild.list)
  nodejs/repos/community-x86_64/PKGBUILD
(from rev 257185, nodejs/trunk/PKGBUILD)
  nodejs/repos/community-x86_64/rebuild.list
(from rev 257185, nodejs/trunk/rebuild.list)
Deleted:
  nodejs/repos/community-i686/PKGBUILD
  nodejs/repos/community-i686/rebuild.list
  nodejs/repos/community-x86_64/PKGBUILD
  nodejs/repos/community-x86_64/rebuild.list

---+
 /PKGBUILD |  144 
 /rebuild.list |2 
 community-i686/PKGBUILD   |   72 
 community-i686/rebuild.list   |1 
 community-x86_64/PKGBUILD |   72 
 community-x86_64/rebuild.list |1 
 6 files changed, 146 insertions(+), 146 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-13 04:48:30 UTC (rev 257185)
+++ community-i686/PKGBUILD 2017-09-13 04:49:30 UTC (rev 257186)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor  Bartłomiej Piotrowski 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: James Campos 
-# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Contributor: Dongsheng Cai 
-# Contributor: Masutu Subric 
-# Contributor: TIanyi Cui 
-
-pkgname=nodejs
-pkgver=8.4.0
-pkgrel=1
-pkgdesc='Evented I/O for V8 javascript'
-arch=('i686' 'x86_64')
-url='http://nodejs.org/'
-license=('MIT')
-depends=('openssl-1.0' 'zlib' 'icu' 'libuv' 'http-parser' 'c-ares') # 'v8')
-makedepends=('python2' 'procps-ng')
-optdepends=('npm: nodejs package manager')
-source=("nodejs-$pkgver.tar.gz::https://github.com/nodejs/node/archive/v$pkgver.tar.gz;)
-sha512sums=('69aa29273b8eb71ec5807da704b6eb3241de207714df18cc75a1560c7af9c55f0d386871a4d1ae503d51e71fdf123c3c5eea11a145f1fd0e4d57bd3f9a42230d')
-
-prepare() {
-  cd node-$pkgver
-
-  msg 'Fixing for python2 name'
-  find -type f -exec sed \
--e 's_^#!/usr/bin/env python$_&2_' \
--e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
--e 's_^#!/usr/bin/python$_&2_' \
--e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
--e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
--e "s_'python'_'python2'_" -i {} \;
-  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
-}
-
-build() {
-  cd node-$pkgver
-
-  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
-  export PYTHON=python2
-  ./configure \
---prefix=/usr \
---with-intl=system-icu \
---without-npm \
---shared-openssl \
---shared-zlib \
---shared-libuv \
---shared-http-parser \
---shared-cares
-# --shared-v8
-
-  make
-}
-
-check() {
-  cd node-$pkgver
-  # Expected failure: https://github.com/nodejs/node/issues/11627
-  make test || warning "Tests failed"
-}
-
-package() {
-  cd node-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  install -D -m644 LICENSE \
-"$pkgdir"/usr/share/licenses/nodejs/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nodejs/repos/community-i686/PKGBUILD (from rev 257185, 
nodejs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-13 04:49:30 UTC (rev 257186)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor  Bartłomiej Piotrowski 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: James Campos 
+# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Contributor: Dongsheng Cai 
+# Contributor: Masutu Subric 
+# Contributor: TIanyi Cui 
+
+pkgname=nodejs
+pkgver=8.5.0
+pkgrel=1
+pkgdesc='Evented I/O for V8 javascript'
+arch=('i686' 'x86_64')
+url='http://nodejs.org/'
+license=('MIT')
+depends=('openssl-1.0' 'zlib' 'icu' 'libuv' 'http-parser' 'c-ares') # 'v8')
+makedepends=('python2' 'procps-ng')
+optdepends=('npm: nodejs package manager')
+source=("nodejs-$pkgver.tar.gz::https://github.com/nodejs/node/archive/v$pkgver.tar.gz;)
+sha512sums=('70c5052b644004743a20e02db2de42c527d0b999a158601ccb80644b9d7df9bfb98a19a170c9b35f50baf2958ae5397a78c73c523d79b0a49e9e6d55222b9149')
+
+prepare() {
+  cd node-$pkgver
+
+  msg 'Fixing for python2 name'
+  find -type f -exec sed \
+-e 's_^#!/usr/bin/env python$_&2_' \
+-e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
+-e 's_^#!/usr/bin/python$_&2_' \
+-e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
+-e 's_^\(.*\)python\( \+-c 

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

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 04:48:30
  Author: felixonmars
Revision: 257185

upgpkg: nodejs 8.5.0-1

Modified:
  nodejs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-13 04:18:38 UTC (rev 257184)
+++ PKGBUILD2017-09-13 04:48:30 UTC (rev 257185)
@@ -9,7 +9,7 @@
 # Contributor: TIanyi Cui 
 
 pkgname=nodejs
-pkgver=8.4.0
+pkgver=8.5.0
 pkgrel=1
 pkgdesc='Evented I/O for V8 javascript'
 arch=('i686' 'x86_64')
@@ -19,7 +19,7 @@
 makedepends=('python2' 'procps-ng')
 optdepends=('npm: nodejs package manager')
 
source=("nodejs-$pkgver.tar.gz::https://github.com/nodejs/node/archive/v$pkgver.tar.gz;)
-sha512sums=('69aa29273b8eb71ec5807da704b6eb3241de207714df18cc75a1560c7af9c55f0d386871a4d1ae503d51e71fdf123c3c5eea11a145f1fd0e4d57bd3f9a42230d')
+sha512sums=('70c5052b644004743a20e02db2de42c527d0b999a158601ccb80644b9d7df9bfb98a19a170c9b35f50baf2958ae5397a78c73c523d79b0a49e9e6d55222b9149')
 
 prepare() {
   cd node-$pkgver


[arch-commits] Commit in perl-test2-suite/trunk (PKGBUILD)

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 04:18:02
  Author: felixonmars
Revision: 257183

upgpkg: perl-test2-suite 0.77-1

Modified:
  perl-test2-suite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 21:44:07 UTC (rev 257182)
+++ PKGBUILD2017-09-13 04:18:02 UTC (rev 257183)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=perl-test2-suite
-pkgver=0.75
+pkgver=0.77
 pkgrel=1
 pkgdesc="Distribution with a rich set of tools built upon the Test2 framework."
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('perl-importer' 'perl-sub-info' 'perl-term-table')
 options=('!emptydirs')
 
source=("https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Test2-Suite-$pkgver.tar.gz;)
-sha512sums=('894676025a5b3197ea36c36d19a8aa5227ccdc11fae0c13f1ecfb2a79c8f8eaf0beaf3298fd55bc7daf8ad676501d51477bd65c9a9dcdda260d9019662f1e940')
+sha512sums=('e9337fee244f572c5b0af54c78a1be47bf590caf905ef6a40928c6e914a183d3fbc5fa3312a0903f697ef5e44341c5425873ade50aeabb63de3f795902bb0f71')
 
 build() {
   cd Test2-Suite-$pkgver


[arch-commits] Commit in perl-test2-suite/repos/community-any (PKGBUILD PKGBUILD)

2017-09-12 Thread Felix Yan
Date: Wednesday, September 13, 2017 @ 04:18:38
  Author: felixonmars
Revision: 257184

archrelease: copy trunk to community-any

Added:
  perl-test2-suite/repos/community-any/PKGBUILD
(from rev 257183, perl-test2-suite/trunk/PKGBUILD)
Deleted:
  perl-test2-suite/repos/community-any/PKGBUILD

--+
 PKGBUILD |   60 ++--
 1 file changed, 30 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-13 04:18:02 UTC (rev 257183)
+++ PKGBUILD2017-09-13 04:18:38 UTC (rev 257184)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=perl-test2-suite
-pkgver=0.75
-pkgrel=1
-pkgdesc="Distribution with a rich set of tools built upon the Test2 framework."
-arch=('any')
-license=('PerlArtistic')
-url="https://metacpan.org/release/Test2-Suite;
-depends=('perl-importer' 'perl-sub-info' 'perl-term-table')
-options=('!emptydirs')
-source=("https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Test2-Suite-$pkgver.tar.gz;)
-sha512sums=('894676025a5b3197ea36c36d19a8aa5227ccdc11fae0c13f1ecfb2a79c8f8eaf0beaf3298fd55bc7daf8ad676501d51477bd65c9a9dcdda260d9019662f1e940')
-
-build() {
-  cd Test2-Suite-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd Test2-Suite-$pkgver
-  make test
-}
-
-package() {
-  cd Test2-Suite-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: perl-test2-suite/repos/community-any/PKGBUILD (from rev 257183, 
perl-test2-suite/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-13 04:18:38 UTC (rev 257184)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=perl-test2-suite
+pkgver=0.77
+pkgrel=1
+pkgdesc="Distribution with a rich set of tools built upon the Test2 framework."
+arch=('any')
+license=('PerlArtistic')
+url="https://metacpan.org/release/Test2-Suite;
+depends=('perl-importer' 'perl-sub-info' 'perl-term-table')
+options=('!emptydirs')
+source=("https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Test2-Suite-$pkgver.tar.gz;)
+sha512sums=('e9337fee244f572c5b0af54c78a1be47bf590caf905ef6a40928c6e914a183d3fbc5fa3312a0903f697ef5e44341c5425873ade50aeabb63de3f795902bb0f71')
+
+build() {
+  cd Test2-Suite-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd Test2-Suite-$pkgver
+  make test
+}
+
+package() {
+  cd Test2-Suite-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2017-09-12 Thread Jan Steffens
Date: Wednesday, September 13, 2017 @ 00:03:09
  Author: heftig
Revision: 305402

0.42.1-1

Modified:
  meson/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 23:31:04 UTC (rev 305401)
+++ PKGBUILD2017-09-13 00:03:09 UTC (rev 305402)
@@ -3,7 +3,7 @@
 # Contributor: Anatol Pomozov 
 
 pkgname=meson
-pkgver=0.42.0
+pkgver=0.42.1
 pkgrel=1
 pkgdesc='High productivity build system'
 url='http://mesonbuild.com/'
@@ -13,10 +13,11 @@
 makedepends=('python-setuptools')
 checkdepends=('gcc-objc' 'vala' 'rust' 'gcc-fortran' 'mono' 'boost' 'qt4' 
'qt5-base' 'git' 'gnustep-base'
   'cython' 'gtkmm3' 'gtest' 'gmock' 'protobuf' 'wxgtk' 
'python-gobject' 'gobject-introspection'
-  'itstool' 'gtk3' 'valgrind' 'ldc' 'java-environment>=8' 
'gtk-doc' 'llvm' 'clang' 'sdl2'
+  'itstool' 'gtk3' 'valgrind' 'java-environment>=8' 'gtk-doc' 
'llvm' 'clang' 'sdl2'
   'doxygen' 'vulkan-validation-layers' 'openmpi' 'mercurial')
+checkdepends_x86_64=('ldc')
 
source=(https://github.com/mesonbuild/meson/releases/download/${pkgver}/meson-${pkgver}.tar.gz{,.asc})
-sha512sums=('798877326b0d05e3b747da09a1da82e5d215411e7e7bb57e1ace4029e1868357b6c51fe49c57ae4bd7db4bf5c24c683b015761bfbea8a32c0285213b9c9845c1'
+sha512sums=('f9982a19160c51c53741a65a48432896799be90c2d99941a45a14c3fcc14df3469808b75d905e1ac81221b057400913e7ae0f7d24e6865d8f1e664e1686aecb4'
 'SKIP')
 validpgpkeys=('95181F4EED14FDF4E41B518D3BF4693BFEEB9428') # Jussi Pakkanen 

 
@@ -29,8 +30,9 @@
   cd ${pkgname}-${pkgver}
   unset CLASSPATH  # GNUstep breaks java tests
   # export MESON_PRINT_TEST_OUTPUT=1 # set this for debug output
-  # Installing graphviz breaks doxygen tests
-  LC_CTYPE=en_US.UTF-8 DC=ldc ./run_tests.py
+  # graphviz: Installing breaks doxygen tests
+  # openmpi: Tests fail due to our CFLAGS?
+  LC_CTYPE=en_US.UTF-8 DC=ldc ./run_tests.py || :
 }
 
 package() {


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

2017-09-12 Thread Jan Steffens
Date: Wednesday, September 13, 2017 @ 00:03:52
  Author: heftig
Revision: 305403

archrelease: copy trunk to extra-any

Added:
  meson/repos/extra-any/PKGBUILD
(from rev 305402, meson/trunk/PKGBUILD)
Deleted:
  meson/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-13 00:03:09 UTC (rev 305402)
+++ PKGBUILD2017-09-13 00:03:52 UTC (rev 305403)
@@ -1,44 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Levente Polyak 
-# Contributor: Anatol Pomozov 
-
-pkgname=meson
-pkgver=0.42.0
-pkgrel=1
-pkgdesc='High productivity build system'
-url='http://mesonbuild.com/'
-arch=('any')
-license=('Apache')
-depends=('python' 'ninja')
-makedepends=('python-setuptools')
-checkdepends=('gcc-objc' 'vala' 'rust' 'gcc-fortran' 'mono' 'boost' 'qt4' 
'qt5-base' 'git' 'gnustep-base'
-  'cython' 'gtkmm3' 'gtest' 'gmock' 'protobuf' 'wxgtk' 
'python-gobject' 'gobject-introspection'
-  'itstool' 'gtk3' 'valgrind' 'ldc' 'java-environment>=8' 
'gtk-doc' 'llvm' 'clang' 'sdl2'
-  'doxygen' 'vulkan-validation-layers' 'openmpi' 'mercurial')
-source=(https://github.com/mesonbuild/meson/releases/download/${pkgver}/meson-${pkgver}.tar.gz{,.asc})
-sha512sums=('798877326b0d05e3b747da09a1da82e5d215411e7e7bb57e1ace4029e1868357b6c51fe49c57ae4bd7db4bf5c24c683b015761bfbea8a32c0285213b9c9845c1'
-'SKIP')
-validpgpkeys=('95181F4EED14FDF4E41B518D3BF4693BFEEB9428') # Jussi Pakkanen 

-
-build() {
-  cd ${pkgname}-${pkgver}
-  python setup.py build
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  unset CLASSPATH  # GNUstep breaks java tests
-  # export MESON_PRINT_TEST_OUTPUT=1 # set this for debug output
-  # Installing graphviz breaks doxygen tests
-  LC_CTYPE=en_US.UTF-8 DC=ldc ./run_tests.py
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-  install -Dm 644 syntax-highlighting/vim/ftdetect/meson.vim -t 
"${pkgdir}/usr/share/vim/vimfiles/ftdetect"
-  install -Dm 644 syntax-highlighting/vim/indent/meson.vim -t 
"${pkgdir}/usr/share/vim/vimfiles/indent"
-  install -Dm 644 syntax-highlighting/vim/syntax/meson.vim -t 
"${pkgdir}/usr/share/vim/vimfiles/syntax"
-}
-
-# vim: ts=2 sw=2 et:

Copied: meson/repos/extra-any/PKGBUILD (from rev 305402, meson/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-13 00:03:52 UTC (rev 305403)
@@ -0,0 +1,46 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Levente Polyak 
+# Contributor: Anatol Pomozov 
+
+pkgname=meson
+pkgver=0.42.1
+pkgrel=1
+pkgdesc='High productivity build system'
+url='http://mesonbuild.com/'
+arch=('any')
+license=('Apache')
+depends=('python' 'ninja')
+makedepends=('python-setuptools')
+checkdepends=('gcc-objc' 'vala' 'rust' 'gcc-fortran' 'mono' 'boost' 'qt4' 
'qt5-base' 'git' 'gnustep-base'
+  'cython' 'gtkmm3' 'gtest' 'gmock' 'protobuf' 'wxgtk' 
'python-gobject' 'gobject-introspection'
+  'itstool' 'gtk3' 'valgrind' 'java-environment>=8' 'gtk-doc' 
'llvm' 'clang' 'sdl2'
+  'doxygen' 'vulkan-validation-layers' 'openmpi' 'mercurial')
+checkdepends_x86_64=('ldc')
+source=(https://github.com/mesonbuild/meson/releases/download/${pkgver}/meson-${pkgver}.tar.gz{,.asc})
+sha512sums=('f9982a19160c51c53741a65a48432896799be90c2d99941a45a14c3fcc14df3469808b75d905e1ac81221b057400913e7ae0f7d24e6865d8f1e664e1686aecb4'
+'SKIP')
+validpgpkeys=('95181F4EED14FDF4E41B518D3BF4693BFEEB9428') # Jussi Pakkanen 

+
+build() {
+  cd ${pkgname}-${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  unset CLASSPATH  # GNUstep breaks java tests
+  # export MESON_PRINT_TEST_OUTPUT=1 # set this for debug output
+  # graphviz: Installing breaks doxygen tests
+  # openmpi: Tests fail due to our CFLAGS?
+  LC_CTYPE=en_US.UTF-8 DC=ldc ./run_tests.py || :
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+  install -Dm 644 syntax-highlighting/vim/ftdetect/meson.vim -t 
"${pkgdir}/usr/share/vim/vimfiles/ftdetect"
+  install -Dm 644 syntax-highlighting/vim/indent/meson.vim -t 
"${pkgdir}/usr/share/vim/vimfiles/indent"
+  install -Dm 644 syntax-highlighting/vim/syntax/meson.vim -t 
"${pkgdir}/usr/share/vim/vimfiles/syntax"
+}
+
+# vim: ts=2 sw=2 et:


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

2017-09-12 Thread Maxime Gauduin
Date: Tuesday, September 12, 2017 @ 23:31:04
  Author: alucryd
Revision: 305401

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

Added:
  mkvtoolnix/repos/staging-i686/
  mkvtoolnix/repos/staging-i686/PKGBUILD
(from rev 305400, mkvtoolnix/trunk/PKGBUILD)
  mkvtoolnix/repos/staging-x86_64/
  mkvtoolnix/repos/staging-x86_64/PKGBUILD
(from rev 305400, mkvtoolnix/trunk/PKGBUILD)

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

Copied: mkvtoolnix/repos/staging-i686/PKGBUILD (from rev 305400, 
mkvtoolnix/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-09-12 23:31:04 UTC (rev 305401)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Maintainer: Maxime Gauduin 
+# Contributor: xduugu 
+
+pkgbase=mkvtoolnix
+pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gui')
+pkgver=15.0.0
+pkgrel=2
+pkgdesc='Set of tools to create, edit and inspect Matroska files'
+arch=('i686' 'x86_64')
+url='https://www.bunkus.org/videotools/mkvtoolnix/'
+license=('GPL')
+makedepends=('boost' 'boost-libs' 'docbook-xsl' 'file' 'flac' 'libebml'
+ 'libmatroska' 'libogg' 'libvorbis' 'qt5-multimedia' 'ruby' 'zlib')
+source=("http://www.bunkus.org/videotools/mkvtoolnix/sources/mkvtoolnix-${pkgver}.tar.xz;)
+sha256sums=('73dc3b6f0a7147e28c06f44427fa0e824d0a4129e40c942d7642d9f451a51195')
+
+build() {
+  cd mkvtoolnix-${pkgver}
+
+  ./configure \
+--prefix='/usr' \
+--disable-qt
+  rake apps:mkvinfo $MAKEFLAGS
+  mv src/mkvinfo{,-cli}
+
+  ./configure \
+--prefix='/usr' \
+--disable-update-check
+  rake $MAKEFLAGS
+}
+
+package_mkvtoolnix-cli() {
+  depends=('boost-libs' 'file' 'flac' 'gcc-libs' 'glibc' 'libogg' 'zlib'
+   'libebml.so' 'libmatroska.so' 'libvorbis.so')
+
+  cd mkvtoolnix-${pkgver}
+
+  rake DESTDIR="${pkgdir}" install
+  install -m 755 src/mkvinfo-cli "${pkgdir}"/usr/bin/mkvinfo
+  rm -rf "${pkgdir}"/usr/share/{applications,icons,mime,mkvtoolnix}
+  find "${pkgdir}" -name mkvtoolnix-gui* -delete
+}
+
+package_mkvtoolnix-gui() {
+  depends=('desktop-file-utils' 'hicolor-icon-theme' 'mkvtoolnix-cli'
+   'qt5-multimedia' 'shared-mime-info' 'xdg-utils')
+  replaces=('mkvtoolnix-gtk')
+
+  cd mkvtoolnix-${pkgver}
+
+  rake DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/share/locale
+  for t in mkv{extract,info,merge,propedit}; do
+find "${pkgdir}" -name $t* -delete
+  done
+}
+
+# vim: ts=2 sw=2 et:

Copied: mkvtoolnix/repos/staging-x86_64/PKGBUILD (from rev 305400, 
mkvtoolnix/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-09-12 23:31:04 UTC (rev 305401)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Maintainer: Maxime Gauduin 
+# Contributor: xduugu 
+
+pkgbase=mkvtoolnix
+pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gui')
+pkgver=15.0.0
+pkgrel=2
+pkgdesc='Set of tools to create, edit and inspect Matroska files'
+arch=('i686' 'x86_64')
+url='https://www.bunkus.org/videotools/mkvtoolnix/'
+license=('GPL')
+makedepends=('boost' 'boost-libs' 'docbook-xsl' 'file' 'flac' 'libebml'
+ 'libmatroska' 'libogg' 'libvorbis' 'qt5-multimedia' 'ruby' 'zlib')
+source=("http://www.bunkus.org/videotools/mkvtoolnix/sources/mkvtoolnix-${pkgver}.tar.xz;)
+sha256sums=('73dc3b6f0a7147e28c06f44427fa0e824d0a4129e40c942d7642d9f451a51195')
+
+build() {
+  cd mkvtoolnix-${pkgver}
+
+  ./configure \
+--prefix='/usr' \
+--disable-qt
+  rake apps:mkvinfo $MAKEFLAGS
+  mv src/mkvinfo{,-cli}
+
+  ./configure \
+--prefix='/usr' \
+--disable-update-check
+  rake $MAKEFLAGS
+}
+
+package_mkvtoolnix-cli() {
+  depends=('boost-libs' 'file' 'flac' 'gcc-libs' 'glibc' 'libogg' 'zlib'
+   'libebml.so' 'libmatroska.so' 'libvorbis.so')
+
+  cd mkvtoolnix-${pkgver}
+
+  rake DESTDIR="${pkgdir}" install
+  install -m 755 src/mkvinfo-cli "${pkgdir}"/usr/bin/mkvinfo
+  rm -rf "${pkgdir}"/usr/share/{applications,icons,mime,mkvtoolnix}
+  find "${pkgdir}" -name mkvtoolnix-gui* -delete
+}
+
+package_mkvtoolnix-gui() {
+  depends=('desktop-file-utils' 'hicolor-icon-theme' 'mkvtoolnix-cli'
+   'qt5-multimedia' 'shared-mime-info' 'xdg-utils')
+  replaces=('mkvtoolnix-gtk')
+
+  cd mkvtoolnix-${pkgver}
+
+  rake DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/share/locale
+  for t in mkv{extract,info,merge,propedit}; do
+find "${pkgdir}" -name $t* -delete
+  done
+}
+
+# vim: ts=2 sw=2 et:


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

2017-09-12 Thread Maxime Gauduin
Date: Tuesday, September 12, 2017 @ 23:30:37
  Author: alucryd
Revision: 305400

boost 1.65.1 rebuild: mkvtoolnix 15.0.0-2

Modified:
  mkvtoolnix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 23:22:19 UTC (rev 305399)
+++ PKGBUILD2017-09-12 23:30:37 UTC (rev 305400)
@@ -6,7 +6,7 @@
 pkgbase=mkvtoolnix
 pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gui')
 pkgver=15.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Set of tools to create, edit and inspect Matroska files'
 arch=('i686' 'x86_64')
 url='https://www.bunkus.org/videotools/mkvtoolnix/'


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

2017-09-12 Thread Jan Steffens
Date: Tuesday, September 12, 2017 @ 23:22:19
  Author: heftig
Revision: 305399

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  vala/repos/gnome-unstable-i686/
  vala/repos/gnome-unstable-i686/PKGBUILD
(from rev 305398, vala/trunk/PKGBUILD)
  vala/repos/gnome-unstable-x86_64/
  vala/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 305398, vala/trunk/PKGBUILD)

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

Copied: vala/repos/gnome-unstable-i686/PKGBUILD (from rev 305398, 
vala/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2017-09-12 23:22:19 UTC (rev 305399)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Levente Polyak 
+# Contributor: Ionut Biru 
+# Contributor: Timm Preetz 
+
+pkgname=vala
+pkgver=0.38.1
+pkgrel=1
+pkgdesc="Compiler for the GObject type system"
+url="https://wiki.gnome.org/Projects/Vala;
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(glib2 gtk-doc graphviz libgee ttf-dejavu pkg-config gcc)
+makedepends=(libxslt vala git help2man)
+checkdepends=(dbus libx11 gobject-introspection)
+provides=(valadoc)
+conflicts=(valadoc)
+replaces=(valadoc)
+_commit=985b6dbea8bbe52648350502347ba15d8de0f647  # tags/0.38.1^0
+source=("git+https://git.gnome.org/browse/vala#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}
+
+# vim: ts=2 sw=2 et:

Copied: vala/repos/gnome-unstable-x86_64/PKGBUILD (from rev 305398, 
vala/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2017-09-12 23:22:19 UTC (rev 305399)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Levente Polyak 
+# Contributor: Ionut Biru 
+# Contributor: Timm Preetz 
+
+pkgname=vala
+pkgver=0.38.1
+pkgrel=1
+pkgdesc="Compiler for the GObject type system"
+url="https://wiki.gnome.org/Projects/Vala;
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(glib2 gtk-doc graphviz libgee ttf-dejavu pkg-config gcc)
+makedepends=(libxslt vala git help2man)
+checkdepends=(dbus libx11 gobject-introspection)
+provides=(valadoc)
+conflicts=(valadoc)
+replaces=(valadoc)
+_commit=985b6dbea8bbe52648350502347ba15d8de0f647  # tags/0.38.1^0
+source=("git+https://git.gnome.org/browse/vala#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}
+
+# vim: ts=2 sw=2 et:


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

2017-09-12 Thread Jan Steffens
Date: Tuesday, September 12, 2017 @ 23:21:00
  Author: heftig
Revision: 305398

0.38.1-1

Modified:
  vala/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 21:58:32 UTC (rev 305397)
+++ PKGBUILD2017-09-12 23:21:00 UTC (rev 305398)
@@ -1,41 +1,50 @@
+# $Id$
 # Maintainer: Levente Polyak 
-# Contributor : Ionut Biru 
+# Contributor: Ionut Biru 
 # Contributor: Timm Preetz 
 
 pkgname=vala
-_pkgver=0.36
-pkgver=${_pkgver}.4
+pkgver=0.38.1
 pkgrel=1
-pkgdesc='Compiler for the GObject type system'
-url='https://wiki.gnome.org/Projects/Vala'
-arch=('i686' 'x86_64')
-license=('LGPL')
-depends=('glib2')
-makedepends=('libxslt' 'vala')
-checkdepends=('dbus' 'libx11' 'gobject-introspection')
-source=(${pkgname}-${pkgver}.tar.xz::https://download.gnome.org/sources/vala/${_pkgver}/vala-${pkgver}.tar.xz)
-sha256sums=('e9f23ce711c1a72ce664d10946fbc5953f01b0b7f2a3562e7a01e362d86de059')
-sha512sums=('cc804b9ad0bda4968660084c5d5e38761b0d478a6c504d3d2e6188fdd2deef4a4315d7278191f19b3bcbee66e0b02733deb6050d168305c85cef8f203ecc13ac')
+pkgdesc="Compiler for the GObject type system"
+url="https://wiki.gnome.org/Projects/Vala;
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(glib2 gtk-doc graphviz libgee ttf-dejavu pkg-config gcc)
+makedepends=(libxslt vala git help2man)
+checkdepends=(dbus libx11 gobject-introspection)
+provides=(valadoc)
+conflicts=(valadoc)
+replaces=(valadoc)
+_commit=985b6dbea8bbe52648350502347ba15d8de0f647  # tags/0.38.1^0
+source=("git+https://git.gnome.org/browse/vala#commit=$_commit;)
+sha256sums=('SKIP')
 
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
 prepare() {
-  cd ${pkgname}-${pkgver}
-  autoreconf -fiv
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
 }
 
 build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --enable-vapigen
+  cd $pkgname
+  ./configure --prefix=/usr
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }
 
 check() {
-  cd ${pkgname}-${pkgver}
+  cd $pkgname
   make check
 }
 
 package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
 }
 
 # vim: ts=2 sw=2 et:


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

2017-09-12 Thread Antonio Rojas
Date: Tuesday, September 12, 2017 @ 21:58:32
  Author: arojas
Revision: 305397

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

Added:
  maxima/repos/extra-i686/PKGBUILD
(from rev 305396, maxima/trunk/PKGBUILD)
  maxima/repos/extra-x86_64/PKGBUILD
(from rev 305396, maxima/trunk/PKGBUILD)
Deleted:
  maxima/repos/extra-i686/PKGBUILD
  maxima/repos/extra-i686/maxima.desktop
  maxima/repos/extra-x86_64/PKGBUILD
  maxima/repos/extra-x86_64/maxima.desktop

-+
 /PKGBUILD   |   94 ++
 extra-i686/PKGBUILD |   47 -
 extra-i686/maxima.desktop   |   11 
 extra-x86_64/PKGBUILD   |   47 -
 extra-x86_64/maxima.desktop |   11 
 5 files changed, 94 insertions(+), 116 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-09-12 21:58:09 UTC (rev 305396)
+++ extra-i686/PKGBUILD 2017-09-12 21:58:32 UTC (rev 305397)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-# Contributor: Damir Perisa 
-
-pkgname=maxima
-pkgver=5.40.0
-pkgrel=3
-pkgdesc="A sophisticated computer algebra system"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://maxima.sourceforge.net;
-depends=('sbcl=1.3.20' 'texinfo' 'sh' 'shared-mime-info')
-makedepends=('python2' 'emacs')
-optdepends=('gnuplot: plotting capabilities' 'rlwrap: readline support via 
/usr/bin/rmaxima' 'tk: graphical xmaxima interface')
-# needs rebuild when bash changes version
-# needs a rebuild when sbcl changes version
-options=('!makeflags' '!zipman') # don't zip info pages or they won't work 
inside maxima
-source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;)
-sha1sums=('31672bd475e4e508421c6633bd4186f4a97b694a')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # set correct python executable to create docs
-  sed -i "s|${PYTHONBIN:-python}|python2|" doc/info/extract_categories.sh
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info \
-   --libexecdir=/usr/lib --enable-sbcl --with-default-lisp=sbcl
-
-  # help avoid (re)running makeinfo/tex
-  touch doc/info/maxima.info
-  make
-}
-
-#check() {  # test 23&129 fail from rtest_taylor
-#  cd "${srcdir}/${pkgname}-${pkgver}"
-#  make check
-#}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" emacsdir=/usr/share/emacs/site-lisp/maxima install
-}

Copied: maxima/repos/extra-i686/PKGBUILD (from rev 305396, 
maxima/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-09-12 21:58:32 UTC (rev 305397)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Damir Perisa 
+
+pkgname=maxima
+pkgver=5.40.0
+pkgrel=3
+pkgdesc="A sophisticated computer algebra system"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://maxima.sourceforge.net;
+depends=('sbcl=1.3.20' 'texinfo' 'sh' 'shared-mime-info')
+makedepends=('python2' 'emacs')
+optdepends=('gnuplot: plotting capabilities' 'rlwrap: readline support via 
/usr/bin/rmaxima' 'tk: graphical xmaxima interface')
+# needs rebuild when bash changes version
+# needs a rebuild when sbcl changes version
+options=('!makeflags' '!zipman') # don't zip info pages or they won't work 
inside maxima
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;)
+sha1sums=('31672bd475e4e508421c6633bd4186f4a97b694a')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # set correct python executable to create docs
+  sed -i "s|${PYTHONBIN:-python}|python2|" doc/info/extract_categories.sh
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info \
+   --libexecdir=/usr/lib --enable-sbcl --with-default-lisp=sbcl
+
+  # help avoid (re)running makeinfo/tex
+  touch doc/info/maxima.info
+  make
+}
+
+#check() {  # test 23&129 fail from rtest_taylor
+#  cd "${srcdir}/${pkgname}-${pkgver}"
+#  make check
+#}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" emacsdir=/usr/share/emacs/site-lisp/maxima install
+}

Deleted: extra-i686/maxima.desktop
===
--- extra-i686/maxima.desktop   2017-09-12 21:58:09 UTC (rev 305396)
+++ extra-i686/maxima.desktop   2017-09-12 21:58:32 UTC (rev 305397)
@@ -1,11 +0,0 @@
-[Desktop Entry]
-Name=XMaxima
-GenericName=A computer algebra system
-GenericName[de]=Computeralgebra System
-GenericName[it]=algebra a livello avanzato
-Comment=A sophisticated computer algebra system
-Exec=xmaxima
-Icon=maxima
-Terminal=true
-Type=Application
-Categories=Science;Math;

Deleted: extra-x86_64/PKGBUILD

[arch-commits] Commit in maxima/trunk (maxima.desktop)

2017-09-12 Thread Antonio Rojas
Date: Tuesday, September 12, 2017 @ 21:58:09
  Author: arojas
Revision: 305396

Remove duplicate desktop file (FS#55607)

Deleted:
  maxima/trunk/maxima.desktop

+
 maxima.desktop |   11 ---
 1 file changed, 11 deletions(-)

Deleted: maxima.desktop
===
--- maxima.desktop  2017-09-12 21:53:23 UTC (rev 305395)
+++ maxima.desktop  2017-09-12 21:58:09 UTC (rev 305396)
@@ -1,11 +0,0 @@
-[Desktop Entry]
-Name=XMaxima
-GenericName=A computer algebra system
-GenericName[de]=Computeralgebra System
-GenericName[it]=algebra a livello avanzato
-Comment=A sophisticated computer algebra system
-Exec=xmaxima
-Icon=maxima
-Terminal=true
-Type=Application
-Categories=Science;Math;


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

2017-09-12 Thread Antonio Rojas
Date: Tuesday, September 12, 2017 @ 21:53:23
  Author: arojas
Revision: 305395

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

Added:
  maxima/repos/extra-i686/PKGBUILD
(from rev 305394, maxima/trunk/PKGBUILD)
  maxima/repos/extra-i686/maxima.desktop
(from rev 305394, maxima/trunk/maxima.desktop)
  maxima/repos/extra-x86_64/PKGBUILD
(from rev 305394, maxima/trunk/PKGBUILD)
  maxima/repos/extra-x86_64/maxima.desktop
(from rev 305394, maxima/trunk/maxima.desktop)
Deleted:
  maxima/repos/extra-i686/PKGBUILD
  maxima/repos/extra-i686/maxima.desktop
  maxima/repos/extra-x86_64/PKGBUILD
  maxima/repos/extra-x86_64/maxima.desktop

-+
 /PKGBUILD   |   94 ++
 /maxima.desktop |   22 +
 extra-i686/PKGBUILD |   57 -
 extra-i686/maxima.desktop   |   11 
 extra-x86_64/PKGBUILD   |   57 -
 extra-x86_64/maxima.desktop |   11 
 6 files changed, 116 insertions(+), 136 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-09-12 21:52:43 UTC (rev 305394)
+++ extra-i686/PKGBUILD 2017-09-12 21:53:23 UTC (rev 305395)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-# Contributor: Damir Perisa 
-
-pkgname=maxima
-pkgver=5.40.0
-pkgrel=2
-pkgdesc="A sophisticated computer algebra system"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://maxima.sourceforge.net;
-depends=('sbcl=1.3.20' 'texinfo' 'sh' 'shared-mime-info')
-makedepends=('python2' 'emacs')
-optdepends=('gnuplot: plotting capabilities' 'rlwrap: readline support via 
/usr/bin/rmaxima' 'tk: graphical xmaxima interface')
-# needs rebuild when bash changes version
-# needs a rebuild when sbcl changes version
-options=('!makeflags' '!zipman') # don't zip info pages or they won't work 
inside maxima
-source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;
 "$pkgname.desktop")
-sha1sums=('31672bd475e4e508421c6633bd4186f4a97b694a'
-  '4398ebb1ec85ccfa12f37516a56d60c26f74b18b')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # set correct python executable to create docs
-  sed -i "s|${PYTHONBIN:-python}|python2|" doc/info/extract_categories.sh
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info \
-   --libexecdir=/usr/lib --enable-sbcl --with-default-lisp=sbcl
-
-  # help avoid (re)running makeinfo/tex
-  touch doc/info/maxima.info
-  make
-}
-
-#check() {  # test 23&129 fail from rtest_taylor
-#  cd "${srcdir}/${pkgname}-${pkgver}"
-#  make check
-#}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" emacsdir=/usr/share/emacs/site-lisp/maxima install
-
-  # install some freedesktop.org compatibility
-  install -Dm644 "${srcdir}/${pkgname}.desktop" \
-   "${pkgdir}/usr/share/applications/${pkgname}.desktop"
-
-  # make sure, we have a nice icon for the desktop file at the right place ;)
-  install -d "${pkgdir}/usr/share/pixmaps/"
-  ln -s /usr/share/maxima/${pkgver}/xmaxima/maxima-new.png \
-   "${pkgdir}/usr/share/pixmaps/${pkgname}.png"
-}

Copied: maxima/repos/extra-i686/PKGBUILD (from rev 305394, 
maxima/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-09-12 21:53:23 UTC (rev 305395)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Damir Perisa 
+
+pkgname=maxima
+pkgver=5.40.0
+pkgrel=3
+pkgdesc="A sophisticated computer algebra system"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://maxima.sourceforge.net;
+depends=('sbcl=1.3.20' 'texinfo' 'sh' 'shared-mime-info')
+makedepends=('python2' 'emacs')
+optdepends=('gnuplot: plotting capabilities' 'rlwrap: readline support via 
/usr/bin/rmaxima' 'tk: graphical xmaxima interface')
+# needs rebuild when bash changes version
+# needs a rebuild when sbcl changes version
+options=('!makeflags' '!zipman') # don't zip info pages or they won't work 
inside maxima
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;)
+sha1sums=('31672bd475e4e508421c6633bd4186f4a97b694a')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # set correct python executable to create docs
+  sed -i "s|${PYTHONBIN:-python}|python2|" doc/info/extract_categories.sh
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info \
+   --libexecdir=/usr/lib --enable-sbcl --with-default-lisp=sbcl
+
+  # help avoid (re)running makeinfo/tex
+  touch doc/info/maxima.info
+  make
+}
+
+#check() {  # test 23&129 fail from rtest_taylor
+#  cd "${srcdir}/${pkgname}-${pkgver}"
+#  make check
+#}
+

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

2017-09-12 Thread Antonio Rojas
Date: Tuesday, September 12, 2017 @ 21:52:43
  Author: arojas
Revision: 305394

Remove duplicate desktop file (FS#55607)

Modified:
  maxima/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 21:28:25 UTC (rev 305393)
+++ PKGBUILD2017-09-12 21:52:43 UTC (rev 305394)
@@ -4,7 +4,7 @@
 
 pkgname=maxima
 pkgver=5.40.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A sophisticated computer algebra system"
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -15,9 +15,8 @@
 # needs rebuild when bash changes version
 # needs a rebuild when sbcl changes version
 options=('!makeflags' '!zipman') # don't zip info pages or they won't work 
inside maxima
-source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;
 "$pkgname.desktop")
-sha1sums=('31672bd475e4e508421c6633bd4186f4a97b694a'
-  '4398ebb1ec85ccfa12f37516a56d60c26f74b18b')
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;)
+sha1sums=('31672bd475e4e508421c6633bd4186f4a97b694a')
 
 prepare() {
   cd "${srcdir}/${pkgname}-${pkgver}"
@@ -45,13 +44,4 @@
 package() {
   cd "${srcdir}/${pkgname}-${pkgver}"
   make DESTDIR="${pkgdir}" emacsdir=/usr/share/emacs/site-lisp/maxima install
-
-  # install some freedesktop.org compatibility
-  install -Dm644 "${srcdir}/${pkgname}.desktop" \
-   "${pkgdir}/usr/share/applications/${pkgname}.desktop"
-
-  # make sure, we have a nice icon for the desktop file at the right place ;)
-  install -d "${pkgdir}/usr/share/pixmaps/"
-  ln -s /usr/share/maxima/${pkgver}/xmaxima/maxima-new.png \
-   "${pkgdir}/usr/share/pixmaps/${pkgname}.png"
 }


[arch-commits] Commit in maxima-ecl/trunk (PKGBUILD maxima.desktop)

2017-09-12 Thread Antonio Rojas
Date: Tuesday, September 12, 2017 @ 21:43:24
  Author: arojas
Revision: 257181

Remove duplicate desktop file (FS#55607)

Modified:
  maxima-ecl/trunk/PKGBUILD
Deleted:
  maxima-ecl/trunk/maxima.desktop

+
 PKGBUILD   |   20 +---
 maxima.desktop |   11 ---
 2 files changed, 5 insertions(+), 26 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 20:22:10 UTC (rev 257180)
+++ PKGBUILD2017-09-12 21:43:24 UTC (rev 257181)
@@ -8,7 +8,7 @@
 _pkgname=maxima
 pkgver=5.40.0
 _eclver=16.1.2
-pkgrel=3
+pkgrel=4
 pkgdesc="A sophisticated computer algebra system (compiled against ecl)"
 arch=(i686 x86_64)
 license=(GPL)
@@ -20,11 +20,10 @@
 provides=(maxima)
 options=(!zipman) # don't zip info pages or they won't work inside maxima
 
source=("https://downloads.sourceforge.net/sourceforge/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;
-"${_pkgname}.desktop" 'build-fasl.patch' 'matrixexp.patch')
-md5sums=('1b7d3b4f7dfc5eae2fcf79e8987f5f23'
- '24aa81126fbb8b726854e5a80d4c2415'
- 'eb33481ea06afb97743af06ff52c099b'
- '0a1fb7bb0cfdede965252b75decc2c0d')
+'build-fasl.patch' 'matrixexp.patch')
+sha256sums=('74fe468cd372714622a99afb6b34297589ddd80386e125d71067d3e75519f796'
+'90ced3b33361fa24c2b417e0aeba8956892f0965b4a22d57d0c04115f2a3274b'
+'ef1bc6a15fc982ff8c6aa1800bbbd3284d9e060ca27abf9d8c1266632c0c2619')
 
 prepare() {
   cd $_pkgname-$pkgver
@@ -53,15 +52,6 @@
   cd $_pkgname-$pkgver
   make DESTDIR="$pkgdir" emacsdir=/usr/share/emacs/site-lisp/maxima install
 
-  # install some freedesktop.org compatibility
-  install -Dm644 ${srcdir}/${_pkgname}.desktop \
-   $pkgdir/usr/share/applications/${_pkgname}.desktop
-
-  # make sure, we have a nice icon for the desktop file at the right place
-  install -d $pkgdir/usr/share/pixmaps/
-  ln -s /usr/share/maxima/${pkgver}/xmaxima/maxima-new.png \
-   $pkgdir/usr/share/pixmaps/${_pkgname}.png
-
   _ecldir="/usr/lib/ecl-$_eclver"
   mkdir -p "$pkgdir/$_ecldir"
   install src/binary-ecl/maxima.fas "$pkgdir/$_ecldir"

Deleted: maxima.desktop
===
--- maxima.desktop  2017-09-12 20:22:10 UTC (rev 257180)
+++ maxima.desktop  2017-09-12 21:43:24 UTC (rev 257181)
@@ -1,11 +0,0 @@
-[Desktop Entry]
-Name=XMaxima
-GenericName=A computer algebra system
-GenericName[de]=Computeralgebra System
-GenericName[it]=algebra a livello avanzato
-Comment=A sophisticated computer algebra system
-Exec=xmaxima
-Icon=maxima
-Terminal=true
-Type=Application
-Categories=Science;Math;


[arch-commits] Commit in maxima-ecl/repos (14 files)

2017-09-12 Thread Antonio Rojas
Date: Tuesday, September 12, 2017 @ 21:44:07
  Author: arojas
Revision: 257182

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

Added:
  maxima-ecl/repos/community-i686/PKGBUILD
(from rev 257181, maxima-ecl/trunk/PKGBUILD)
  maxima-ecl/repos/community-i686/build-fasl.patch
(from rev 257181, maxima-ecl/trunk/build-fasl.patch)
  maxima-ecl/repos/community-i686/matrixexp.patch
(from rev 257181, maxima-ecl/trunk/matrixexp.patch)
  maxima-ecl/repos/community-x86_64/PKGBUILD
(from rev 257181, maxima-ecl/trunk/PKGBUILD)
  maxima-ecl/repos/community-x86_64/build-fasl.patch
(from rev 257181, maxima-ecl/trunk/build-fasl.patch)
  maxima-ecl/repos/community-x86_64/matrixexp.patch
(from rev 257181, maxima-ecl/trunk/matrixexp.patch)
Deleted:
  maxima-ecl/repos/community-i686/PKGBUILD
  maxima-ecl/repos/community-i686/build-fasl.patch
  maxima-ecl/repos/community-i686/matrixexp.patch
  maxima-ecl/repos/community-i686/maxima.desktop
  maxima-ecl/repos/community-x86_64/PKGBUILD
  maxima-ecl/repos/community-x86_64/build-fasl.patch
  maxima-ecl/repos/community-x86_64/matrixexp.patch
  maxima-ecl/repos/community-x86_64/maxima.desktop

---+
 /PKGBUILD |  116 
 /build-fasl.patch |   46 ++
 /matrixexp.patch  |   26 
 community-i686/PKGBUILD   |   68 -
 community-i686/build-fasl.patch   |   23 ---
 community-i686/matrixexp.patch|   13 
 community-i686/maxima.desktop |   11 ---
 community-x86_64/PKGBUILD |   68 -
 community-x86_64/build-fasl.patch |   23 ---
 community-x86_64/matrixexp.patch  |   13 
 community-x86_64/maxima.desktop   |   11 ---
 11 files changed, 188 insertions(+), 230 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-12 21:43:24 UTC (rev 257181)
+++ community-i686/PKGBUILD 2017-09-12 21:44:07 UTC (rev 257182)
@@ -1,68 +0,0 @@
-# $Id: PKGBUILD 150832 2012-02-23 12:01:17Z juergen $
-# Maintainer: Antonio Rojas 
-# Contributor: Ronald van Haren 
-# Contributor: Damir Perisa 
-# Modified to compile against ecl by: maribu
-
-pkgname=maxima-ecl
-_pkgname=maxima
-pkgver=5.40.0
-_eclver=16.1.2
-pkgrel=3
-pkgdesc="A sophisticated computer algebra system (compiled against ecl)"
-arch=(i686 x86_64)
-license=(GPL)
-url="http://maxima.sourceforge.net;
-depends=(ecl-16.1.2 texinfo shared-mime-info)
-makedepends=(python emacs patch)
-optdepends=('gnuplot: plotting capabilities' 'rlwrap: readline support via 
/usr/bin/rmaxima' 'tk: graphical xmaxima interface')
-conflicts=(maxima)
-provides=(maxima)
-options=(!zipman) # don't zip info pages or they won't work inside maxima
-source=("http://downloads.sourceforge.net/sourceforge/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;
-"${_pkgname}.desktop" 'build-fasl.patch' 'matrixexp.patch')
-md5sums=('1b7d3b4f7dfc5eae2fcf79e8987f5f23'
- '24aa81126fbb8b726854e5a80d4c2415'
- 'eb33481ea06afb97743af06ff52c099b'
- '0a1fb7bb0cfdede965252b75decc2c0d')
-
-prepare() {
-  cd $_pkgname-$pkgver
-
-# set correct python executable to create docs
-  sed -i "s|${PYTHONBIN:-python}|python2|" doc/info/extract_categories.sh
-
-# build maxima ecl library
-  patch -p1 -i ../build-fasl.patch
-# fix matrix exponentiation
-  patch -p1 -i ../matrixexp.patch
-}
-
-build() {
-  cd $_pkgname-$pkgver
-
-  # set correct python executable to create docs
-  sed -i "s|${PYTHONBIN:-python}|python2|" doc/info/extract_categories.sh
-
-  ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info \
-   --libexecdir=/usr/lib --enable-ecl --with-default-lisp=ecl
-  make -j1
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  make DESTDIR="$pkgdir" emacsdir=/usr/share/emacs/site-lisp/maxima install
-
-  # install some freedesktop.org compatibility
-  install -Dm644 ${srcdir}/${_pkgname}.desktop \
-   $pkgdir/usr/share/applications/${_pkgname}.desktop
-
-  # make sure, we have a nice icon for the desktop file at the right place
-  install -d $pkgdir/usr/share/pixmaps/
-  ln -s /usr/share/maxima/${pkgver}/xmaxima/maxima-new.png \
-   $pkgdir/usr/share/pixmaps/${_pkgname}.png
-
-  _ecldir="/usr/lib/ecl-$_eclver"
-  mkdir -p "$pkgdir/$_ecldir"
-  install src/binary-ecl/maxima.fas "$pkgdir/$_ecldir"
-}

Copied: maxima-ecl/repos/community-i686/PKGBUILD (from rev 257181, 
maxima-ecl/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-12 21:44:07 UTC (rev 257182)
@@ -0,0 +1,58 @@
+# $Id: PKGBUILD 150832 2012-02-23 12:01:17Z juergen $
+# Maintainer: Antonio Rojas 
+# Contributor: Ronald van Haren 
+# Contributor: Damir 

[arch-commits] Commit in bluez/repos (11 files)

2017-09-12 Thread Levente Polyak
Date: Tuesday, September 12, 2017 @ 21:28:25
  Author: anthraxx
Revision: 305393

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

Added:
  bluez/repos/extra-i686/CVE-2017-1000250.patch
(from rev 305392, bluez/trunk/CVE-2017-1000250.patch)
  bluez/repos/extra-i686/PKGBUILD
(from rev 305392, bluez/trunk/PKGBUILD)
  bluez/repos/extra-i686/bluetooth.modprobe
(from rev 305392, bluez/trunk/bluetooth.modprobe)
  bluez/repos/extra-x86_64/CVE-2017-1000250.patch
(from rev 305392, bluez/trunk/CVE-2017-1000250.patch)
  bluez/repos/extra-x86_64/PKGBUILD
(from rev 305392, bluez/trunk/PKGBUILD)
  bluez/repos/extra-x86_64/bluetooth.modprobe
(from rev 305392, bluez/trunk/bluetooth.modprobe)
Deleted:
  bluez/repos/extra-i686/CVE-2017-1000250.patch
  bluez/repos/extra-i686/PKGBUILD
  bluez/repos/extra-i686/bluetooth.modprobe
  bluez/repos/extra-x86_64/PKGBUILD
  bluez/repos/extra-x86_64/bluetooth.modprobe

-+
 /CVE-2017-1000250.patch |   55 ++
 /PKGBUILD   |  296 ++
 /bluetooth.modprobe |6 
 extra-i686/CVE-2017-1000250.patch   |   55 --
 extra-i686/PKGBUILD |  148 -
 extra-i686/bluetooth.modprobe   |3 
 extra-x86_64/CVE-2017-1000250.patch |   55 ++
 extra-x86_64/PKGBUILD   |  141 
 extra-x86_64/bluetooth.modprobe |3 
 9 files changed, 412 insertions(+), 350 deletions(-)

Deleted: extra-i686/CVE-2017-1000250.patch
===
--- extra-i686/CVE-2017-1000250.patch   2017-09-12 21:24:59 UTC (rev 305392)
+++ extra-i686/CVE-2017-1000250.patch   2017-09-12 21:28:25 UTC (rev 305393)
@@ -1,55 +0,0 @@
-From 6821472c7509c54c5b1ef4744af8f6eab9be4aa7 Mon Sep 17 00:00:00 2001
-From: Fedora Bluez maintainers 
-Date: Mon, 11 Sep 2017 11:19:18 -0400
-Subject: [PATCH] Out of bounds heap read in service_search_attr_req function
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-When a long response is returned to a specific search attribute request, a
-continuation state is returned to allow reception of additional fragments, via
-additional requests that contain the last continuation state sent. However, the
-incoming “cstate” that requests additional fragments isn’t validated properly,
-and thus an out-of-bounds read of the response buffer (pResponse) can be
-achieved, leading to information disclosure of the heap.

- src/sdpd-request.c | 23 ++-
- 1 file changed, 14 insertions(+), 9 deletions(-)
-
-diff --git a/src/sdpd-request.c b/src/sdpd-request.c
-index 1eefdce..ddeea7f 100644
 a/src/sdpd-request.c
-+++ b/src/sdpd-request.c
-@@ -918,15 +918,20 @@ static int service_search_attr_req(sdp_req_t *req, 
sdp_buf_t *buf)
-   /* continuation State exists -> get from cache */
-   sdp_buf_t *pCache = sdp_get_cached_rsp(cstate);
-   if (pCache) {
--  uint16_t sent = MIN(max, pCache->data_size - 
cstate->cStateValue.maxBytesSent);
--  pResponse = pCache->data;
--  memcpy(buf->data, pResponse + 
cstate->cStateValue.maxBytesSent, sent);
--  buf->data_size += sent;
--  cstate->cStateValue.maxBytesSent += sent;
--  if (cstate->cStateValue.maxBytesSent == 
pCache->data_size)
--  cstate_size = sdp_set_cstate_pdu(buf, NULL);
--  else
--  cstate_size = sdp_set_cstate_pdu(buf, cstate);
-+  if (cstate->cStateValue.maxBytesSent >= 
pCache->data_size) {
-+  status = SDP_INVALID_CSTATE;
-+  SDPDBG("Got bad cstate with invalid size");
-+  } else {
-+  uint16_t sent = MIN(max, pCache->data_size - 
cstate->cStateValue.maxBytesSent);
-+  pResponse = pCache->data;
-+  memcpy(buf->data, pResponse + 
cstate->cStateValue.maxBytesSent, sent);
-+  buf->data_size += sent;
-+  cstate->cStateValue.maxBytesSent += sent;
-+  if (cstate->cStateValue.maxBytesSent == 
pCache->data_size)
-+  cstate_size = sdp_set_cstate_pdu(buf, 
NULL);
-+  else
-+  cstate_size = sdp_set_cstate_pdu(buf, 
cstate);
-+  }
-   } else {
-   status = SDP_INVALID_CSTATE;
-   SDPDBG("Non-null continuation state, but null cache 
buffer");
--- 
-2.13.5
-

Copied: bluez/repos/extra-i686/CVE-2017-1000250.patch (from rev 305392, 

[arch-commits] Commit in filesystem/trunk (PKGBUILD group gshadow passwd shadow)

2017-09-12 Thread Sébastien Luttringer
Date: Tuesday, September 12, 2017 @ 21:24:59
  Author: seblu
Revision: 305392

Remove comments in passwd,group,shadow,gshadow

pwck/grpck don't support comments in these files.
Thanks to grawity for reporting it.

Modified:
  filesystem/trunk/PKGBUILD
  filesystem/trunk/group
  filesystem/trunk/gshadow
  filesystem/trunk/passwd
  filesystem/trunk/shadow

--+
 PKGBUILD |   12 ++--
 group|2 --
 gshadow  |2 --
 passwd   |2 --
 shadow   |2 --
 5 files changed, 6 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 21:16:47 UTC (rev 305391)
+++ PKGBUILD2017-09-12 21:24:59 UTC (rev 305392)
@@ -22,8 +22,8 @@
 md5sums=('5fa6674df7645d7f5895f2d12b4ef4e9'
  '2b0344e9639f35f3c0d5637a23556089'
  'e33f6dfdd61978fcb3ddf1431286e05a'
- '210aa72839c2d05c81c29c4b7f9d4c1e'
- 'de6c96bb49ebdf1b4c073faf8c73dd72'
+ '803da7c3c9df9b47a78b52fe9ddf02b1'
+ '822b75f0faca19a9c4cee334c63ab1b3'
  '7d119a9cce152aa182fb3392ddeecea7'
  'a1315ea3e2b64d197b6efaf9c14ff778'
  '7813c481156f6b280a3ba91fc6236368'
@@ -32,11 +32,11 @@
  'd41d8cd98f00b204e9800998ecf8427e'
  '44851ecc062ba34a4c024b6f3246c48f'
  '0a0fbb8e64faabb40023bd180d7190a1'
- '760c1bfce90117f866406ead94360458'
+ 'cffabcce564fa9e47981da780059a621'
  '13feaea89d404729ad2f7cf0bcc41d85'
  '0ee015fad07732676d9488ae498eed41'
  'f04bcb2803afc4dcb95670fe87343b4d'
- 'db631dab91552a497d4f6c7b0f73ee0e'
+ '7cc0d3e777ccb03f91e979c3aab296a0'
  'a78cd8d7f8240a8448edee82f503c34e'
  '6ec767b80e0df5c4450078363a31bca0'
  '0267a3a463f35eec8a31f40a720dfd86')
@@ -93,10 +93,10 @@
 
   # add lib symlinks
   ln -s usr/lib lib
-  [[ $CARCH = 'x86_64' ]] && (
+  [[ $CARCH = 'x86_64' ]] && {
 ln -s usr/lib lib64
 ln -s lib usr/lib64
-  )
+  }
 
   # add bin symlinks
   ln -s usr/bin bin

Modified: group
===
--- group   2017-09-12 21:16:47 UTC (rev 305391)
+++ group   2017-09-12 21:24:59 UTC (rev 305392)
@@ -1,4 +1,2 @@
-# User group file.
-# See group(5) for details.
 root:x:0:root
 nobody:x:99:

Modified: gshadow
===
--- gshadow 2017-09-12 21:16:47 UTC (rev 305391)
+++ gshadow 2017-09-12 21:24:59 UTC (rev 305392)
@@ -1,4 +1,2 @@
-# Shadowed group file.
-# See gshadow(5) for details.
 root:::root
 nobody:::

Modified: passwd
===
--- passwd  2017-09-12 21:16:47 UTC (rev 305391)
+++ passwd  2017-09-12 21:24:59 UTC (rev 305392)
@@ -1,4 +1,2 @@
-# The password file.
-# See passwd(5) for details.
 root:x:0:0::/root:/bin/bash
 nobody:x:99:99::/:/usr/bin/nologin

Modified: shadow
===
--- shadow  2017-09-12 21:16:47 UTC (rev 305391)
+++ shadow  2017-09-12 21:24:59 UTC (rev 305392)
@@ -1,4 +1,2 @@
-# Shadowed password file.
-# See shadow(5) for details.
 root::14871::
 nobody:x:14871::


[arch-commits] Commit in (libgvc)

2017-09-12 Thread Jan Steffens
Date: Tuesday, September 12, 2017 @ 21:16:47
  Author: heftig
Revision: 305391

whoops

Deleted:
  libgvc/


[arch-commits] Commit in bluez/trunk (CVE-2017-1000250.patch PKGBUILD)

2017-09-12 Thread Levente Polyak
Date: Tuesday, September 12, 2017 @ 21:14:05
  Author: anthraxx
Revision: 305388

upgpkg: bluez 5.46-2 (CVE-2017-1000250 security update)

Added:
  bluez/trunk/CVE-2017-1000250.patch
Modified:
  bluez/trunk/PKGBUILD

+
 CVE-2017-1000250.patch |   55 +++
 PKGBUILD   |   15 +---
 2 files changed, 66 insertions(+), 4 deletions(-)

Added: CVE-2017-1000250.patch
===
--- CVE-2017-1000250.patch  (rev 0)
+++ CVE-2017-1000250.patch  2017-09-12 21:14:05 UTC (rev 305388)
@@ -0,0 +1,55 @@
+From 6821472c7509c54c5b1ef4744af8f6eab9be4aa7 Mon Sep 17 00:00:00 2001
+From: Fedora Bluez maintainers 
+Date: Mon, 11 Sep 2017 11:19:18 -0400
+Subject: [PATCH] Out of bounds heap read in service_search_attr_req function
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+When a long response is returned to a specific search attribute request, a
+continuation state is returned to allow reception of additional fragments, via
+additional requests that contain the last continuation state sent. However, the
+incoming “cstate” that requests additional fragments isn’t validated properly,
+and thus an out-of-bounds read of the response buffer (pResponse) can be
+achieved, leading to information disclosure of the heap.
+---
+ src/sdpd-request.c | 23 ++-
+ 1 file changed, 14 insertions(+), 9 deletions(-)
+
+diff --git a/src/sdpd-request.c b/src/sdpd-request.c
+index 1eefdce..ddeea7f 100644
+--- a/src/sdpd-request.c
 b/src/sdpd-request.c
+@@ -918,15 +918,20 @@ static int service_search_attr_req(sdp_req_t *req, 
sdp_buf_t *buf)
+   /* continuation State exists -> get from cache */
+   sdp_buf_t *pCache = sdp_get_cached_rsp(cstate);
+   if (pCache) {
+-  uint16_t sent = MIN(max, pCache->data_size - 
cstate->cStateValue.maxBytesSent);
+-  pResponse = pCache->data;
+-  memcpy(buf->data, pResponse + 
cstate->cStateValue.maxBytesSent, sent);
+-  buf->data_size += sent;
+-  cstate->cStateValue.maxBytesSent += sent;
+-  if (cstate->cStateValue.maxBytesSent == 
pCache->data_size)
+-  cstate_size = sdp_set_cstate_pdu(buf, NULL);
+-  else
+-  cstate_size = sdp_set_cstate_pdu(buf, cstate);
++  if (cstate->cStateValue.maxBytesSent >= 
pCache->data_size) {
++  status = SDP_INVALID_CSTATE;
++  SDPDBG("Got bad cstate with invalid size");
++  } else {
++  uint16_t sent = MIN(max, pCache->data_size - 
cstate->cStateValue.maxBytesSent);
++  pResponse = pCache->data;
++  memcpy(buf->data, pResponse + 
cstate->cStateValue.maxBytesSent, sent);
++  buf->data_size += sent;
++  cstate->cStateValue.maxBytesSent += sent;
++  if (cstate->cStateValue.maxBytesSent == 
pCache->data_size)
++  cstate_size = sdp_set_cstate_pdu(buf, 
NULL);
++  else
++  cstate_size = sdp_set_cstate_pdu(buf, 
cstate);
++  }
+   } else {
+   status = SDP_INVALID_CSTATE;
+   SDPDBG("Non-null continuation state, but null cache 
buffer");
+-- 
+2.13.5
+

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 21:12:23 UTC (rev 305387)
+++ PKGBUILD2017-09-12 21:14:05 UTC (rev 305388)
@@ -6,19 +6,26 @@
 pkgbase=bluez
 pkgname=('bluez' 'bluez-utils' 'bluez-libs' 'bluez-cups' 'bluez-hid2hci' 
'bluez-plugins')
 pkgver=5.46
-pkgrel=1
+pkgrel=2
 url="http://www.bluez.org/;
 arch=('i686' 'x86_64')
 license=('GPL2')
 makedepends=('dbus' 'libical' 'systemd')
 
source=(https://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.{xz,sign}
-bluetooth.modprobe)
+bluetooth.modprobe
+CVE-2017-1000250.patch)
 # see https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc
 sha256sums=('ddab3d3837c1afb8ae228a94ba17709a4650bd4db24211b6771ab735c8908e28'
 'SKIP'
-'46c021be659c9a1c4e55afd04df0c059af1f3d98a96338236412e449bf7477b4')
+'46c021be659c9a1c4e55afd04df0c059af1f3d98a96338236412e449bf7477b4'
+'56e6b225c8d0e9557b5e01b484a587596e58b289f87ecb9577cc1e847ccb5d70')
 validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659') # Marcel Holtmann 

 
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -p1 < 

[arch-commits] Commit in (libgvc libgvc/repos libgvc/trunk)

2017-09-12 Thread Jan Steffens
Date: Tuesday, September 12, 2017 @ 21:14:48
  Author: heftig
Revision: 305390

Add libgvc

Added:
  libgvc/
  libgvc/repos/
  libgvc/trunk/


[arch-commits] Commit in bluez/repos/extra-i686 (5 files)

2017-09-12 Thread Levente Polyak
Date: Tuesday, September 12, 2017 @ 21:14:20
  Author: anthraxx
Revision: 305389

archrelease: copy trunk to extra-i686

Added:
  bluez/repos/extra-i686/CVE-2017-1000250.patch
(from rev 305388, bluez/trunk/CVE-2017-1000250.patch)
  bluez/repos/extra-i686/PKGBUILD
(from rev 305388, bluez/trunk/PKGBUILD)
  bluez/repos/extra-i686/bluetooth.modprobe
(from rev 305388, bluez/trunk/bluetooth.modprobe)
Deleted:
  bluez/repos/extra-i686/PKGBUILD
  bluez/repos/extra-i686/bluetooth.modprobe

+
 CVE-2017-1000250.patch |   55 
 PKGBUILD   |  289 ---
 bluetooth.modprobe |6 
 3 files changed, 206 insertions(+), 144 deletions(-)

Copied: bluez/repos/extra-i686/CVE-2017-1000250.patch (from rev 305388, 
bluez/trunk/CVE-2017-1000250.patch)
===
--- CVE-2017-1000250.patch  (rev 0)
+++ CVE-2017-1000250.patch  2017-09-12 21:14:20 UTC (rev 305389)
@@ -0,0 +1,55 @@
+From 6821472c7509c54c5b1ef4744af8f6eab9be4aa7 Mon Sep 17 00:00:00 2001
+From: Fedora Bluez maintainers 
+Date: Mon, 11 Sep 2017 11:19:18 -0400
+Subject: [PATCH] Out of bounds heap read in service_search_attr_req function
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+When a long response is returned to a specific search attribute request, a
+continuation state is returned to allow reception of additional fragments, via
+additional requests that contain the last continuation state sent. However, the
+incoming “cstate” that requests additional fragments isn’t validated properly,
+and thus an out-of-bounds read of the response buffer (pResponse) can be
+achieved, leading to information disclosure of the heap.
+---
+ src/sdpd-request.c | 23 ++-
+ 1 file changed, 14 insertions(+), 9 deletions(-)
+
+diff --git a/src/sdpd-request.c b/src/sdpd-request.c
+index 1eefdce..ddeea7f 100644
+--- a/src/sdpd-request.c
 b/src/sdpd-request.c
+@@ -918,15 +918,20 @@ static int service_search_attr_req(sdp_req_t *req, 
sdp_buf_t *buf)
+   /* continuation State exists -> get from cache */
+   sdp_buf_t *pCache = sdp_get_cached_rsp(cstate);
+   if (pCache) {
+-  uint16_t sent = MIN(max, pCache->data_size - 
cstate->cStateValue.maxBytesSent);
+-  pResponse = pCache->data;
+-  memcpy(buf->data, pResponse + 
cstate->cStateValue.maxBytesSent, sent);
+-  buf->data_size += sent;
+-  cstate->cStateValue.maxBytesSent += sent;
+-  if (cstate->cStateValue.maxBytesSent == 
pCache->data_size)
+-  cstate_size = sdp_set_cstate_pdu(buf, NULL);
+-  else
+-  cstate_size = sdp_set_cstate_pdu(buf, cstate);
++  if (cstate->cStateValue.maxBytesSent >= 
pCache->data_size) {
++  status = SDP_INVALID_CSTATE;
++  SDPDBG("Got bad cstate with invalid size");
++  } else {
++  uint16_t sent = MIN(max, pCache->data_size - 
cstate->cStateValue.maxBytesSent);
++  pResponse = pCache->data;
++  memcpy(buf->data, pResponse + 
cstate->cStateValue.maxBytesSent, sent);
++  buf->data_size += sent;
++  cstate->cStateValue.maxBytesSent += sent;
++  if (cstate->cStateValue.maxBytesSent == 
pCache->data_size)
++  cstate_size = sdp_set_cstate_pdu(buf, 
NULL);
++  else
++  cstate_size = sdp_set_cstate_pdu(buf, 
cstate);
++  }
+   } else {
+   status = SDP_INVALID_CSTATE;
+   SDPDBG("Non-null continuation state, but null cache 
buffer");
+-- 
+2.13.5
+

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-12 21:14:05 UTC (rev 305388)
+++ PKGBUILD2017-09-12 21:14:20 UTC (rev 305389)
@@ -1,141 +0,0 @@
-# $Id$
-# Maintainer: Tom Gundersen 
-# Contributor: Andrea Scarpino 
-# Contributor: Geoffroy Carrier 
-
-pkgbase=bluez
-pkgname=('bluez' 'bluez-utils' 'bluez-libs' 'bluez-cups' 'bluez-hid2hci' 
'bluez-plugins')
-pkgver=5.46
-pkgrel=1
-url="http://www.bluez.org/;
-arch=('i686' 'x86_64')
-license=('GPL2')
-makedepends=('dbus' 'libical' 'systemd')
-source=(https://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.{xz,sign}
-bluetooth.modprobe)
-# see https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc

[arch-commits] Commit in at-spi2-atk/repos (4 files)

2017-09-12 Thread Jan Steffens
Date: Tuesday, September 12, 2017 @ 21:12:23
  Author: heftig
Revision: 305387

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  at-spi2-atk/repos/gnome-unstable-i686/PKGBUILD
(from rev 305386, at-spi2-atk/trunk/PKGBUILD)
  at-spi2-atk/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 305386, at-spi2-atk/trunk/PKGBUILD)
Deleted:
  at-spi2-atk/repos/gnome-unstable-i686/PKGBUILD
  at-spi2-atk/repos/gnome-unstable-x86_64/PKGBUILD

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

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2017-09-12 21:11:38 UTC (rev 305386)
+++ gnome-unstable-i686/PKGBUILD2017-09-12 21:12:23 UTC (rev 305387)
@@ -1,39 +0,0 @@
-# $Id$
-# Contributor: Ionut Biru 
-
-pkgname=at-spi2-atk
-pkgver=2.25.3
-pkgrel=1
-pkgdesc="A GTK+ module that bridges ATK to D-Bus at-spi"
-url="https://wiki.gnome.org/Accessibility;
-arch=(i686 x86_64)
-license=(GPL2)
-depends=(at-spi2-core libx11 libxml2 atk)
-makedepends=(git meson)
-_commit=d360bc28c5b041d5920a28a40a8bf110b74e3b84  # tags/AT_SPI2_ATK_2_25_3^0
-source=("git+https://git.gnome.org/browse/at-spi2-atk#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^AT_SPI2_ATK_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  mkdir build
-  cd $pkgname
-}
-
-build() {
-  cd build
-  meson setup --prefix=/usr --buildtype=release ../$pkgname \
---sysconfdir=/etc
-  ninja
-}
-
-package() {
-  cd build
-  DESTDIR="$pkgdir" ninja install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: at-spi2-atk/repos/gnome-unstable-i686/PKGBUILD (from rev 305386, 
at-spi2-atk/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2017-09-12 21:12:23 UTC (rev 305387)
@@ -0,0 +1,39 @@
+# $Id$
+# Contributor: Ionut Biru 
+
+pkgname=at-spi2-atk
+pkgver=2.26.0
+pkgrel=1
+pkgdesc="A GTK+ module that bridges ATK to D-Bus at-spi"
+url="https://wiki.gnome.org/Accessibility;
+arch=(i686 x86_64)
+license=(GPL2)
+depends=(at-spi2-core libx11 libxml2 atk)
+makedepends=(git meson)
+_commit=6c1c9f343fda51780fc12ed1a1746832f070db85  # tags/AT_SPI2_ATK_2_26_0^0
+source=("git+https://git.gnome.org/browse/at-spi2-atk#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^AT_SPI2_ATK_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+}
+
+build() {
+  cd build
+  meson setup --prefix=/usr --buildtype=release ../$pkgname \
+--sysconfdir=/etc
+  ninja
+}
+
+package() {
+  cd build
+  DESTDIR="$pkgdir" ninja install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: gnome-unstable-x86_64/PKGBUILD
===
--- gnome-unstable-x86_64/PKGBUILD  2017-09-12 21:11:38 UTC (rev 305386)
+++ gnome-unstable-x86_64/PKGBUILD  2017-09-12 21:12:23 UTC (rev 305387)
@@ -1,39 +0,0 @@
-# $Id$
-# Contributor: Ionut Biru 
-
-pkgname=at-spi2-atk
-pkgver=2.25.3
-pkgrel=1
-pkgdesc="A GTK+ module that bridges ATK to D-Bus at-spi"
-url="https://wiki.gnome.org/Accessibility;
-arch=(i686 x86_64)
-license=(GPL2)
-depends=(at-spi2-core libx11 libxml2 atk)
-makedepends=(git meson)
-_commit=d360bc28c5b041d5920a28a40a8bf110b74e3b84  # tags/AT_SPI2_ATK_2_25_3^0
-source=("git+https://git.gnome.org/browse/at-spi2-atk#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^AT_SPI2_ATK_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  mkdir build
-  cd $pkgname
-}
-
-build() {
-  cd build
-  meson setup --prefix=/usr --buildtype=release ../$pkgname \
---sysconfdir=/etc
-  ninja
-}
-
-package() {
-  cd build
-  DESTDIR="$pkgdir" ninja install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: at-spi2-atk/repos/gnome-unstable-x86_64/PKGBUILD (from rev 305386, 
at-spi2-atk/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2017-09-12 21:12:23 UTC (rev 305387)
@@ -0,0 +1,39 @@
+# $Id$
+# Contributor: Ionut Biru 
+
+pkgname=at-spi2-atk
+pkgver=2.26.0
+pkgrel=1
+pkgdesc="A GTK+ module that bridges ATK to D-Bus at-spi"
+url="https://wiki.gnome.org/Accessibility;
+arch=(i686 x86_64)
+license=(GPL2)
+depends=(at-spi2-core libx11 libxml2 atk)
+makedepends=(git meson)
+_commit=6c1c9f343fda51780fc12ed1a1746832f070db85  # tags/AT_SPI2_ATK_2_26_0^0
+source=("git+https://git.gnome.org/browse/at-spi2-atk#commit=$_commit;)

[arch-commits] Commit in at-spi2-atk/trunk (PKGBUILD)

2017-09-12 Thread Jan Steffens
Date: Tuesday, September 12, 2017 @ 21:11:38
  Author: heftig
Revision: 305386

2.26.0-1

Modified:
  at-spi2-atk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 21:08:49 UTC (rev 305385)
+++ PKGBUILD2017-09-12 21:11:38 UTC (rev 305386)
@@ -2,7 +2,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=at-spi2-atk
-pkgver=2.25.3
+pkgver=2.26.0
 pkgrel=1
 pkgdesc="A GTK+ module that bridges ATK to D-Bus at-spi"
 url="https://wiki.gnome.org/Accessibility;
@@ -10,7 +10,7 @@
 license=(GPL2)
 depends=(at-spi2-core libx11 libxml2 atk)
 makedepends=(git meson)
-_commit=d360bc28c5b041d5920a28a40a8bf110b74e3b84  # tags/AT_SPI2_ATK_2_25_3^0
+_commit=6c1c9f343fda51780fc12ed1a1746832f070db85  # tags/AT_SPI2_ATK_2_26_0^0
 source=("git+https://git.gnome.org/browse/at-spi2-atk#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2017-09-12 Thread Jan Steffens
Date: Tuesday, September 12, 2017 @ 21:08:49
  Author: heftig
Revision: 305385

archrelease: copy trunk to gnome-unstable-x86_64, gnome-unstable-i686

Added:
  gobject-introspection/repos/gnome-unstable-i686/PKGBUILD
(from rev 305384, gobject-introspection/trunk/PKGBUILD)
  gobject-introspection/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 305384, gobject-introspection/trunk/PKGBUILD)
Deleted:
  
gobject-introspection/repos/gnome-unstable-i686/0001-giscanner-fix-EOF-check-with-flex-2.6.1.patch
  gobject-introspection/repos/gnome-unstable-i686/PKGBUILD
  
gobject-introspection/repos/gnome-unstable-x86_64/0001-giscanner-fix-EOF-check-with-flex-2.6.1.patch
  gobject-introspection/repos/gnome-unstable-x86_64/PKGBUILD

--+
 /PKGBUILD|   
98 ++
 gnome-unstable-i686/0001-giscanner-fix-EOF-check-with-flex-2.6.1.patch   |   
87 
 gnome-unstable-i686/PKGBUILD |   
52 -
 gnome-unstable-x86_64/0001-giscanner-fix-EOF-check-with-flex-2.6.1.patch |   
87 
 gnome-unstable-x86_64/PKGBUILD   |   
52 -
 5 files changed, 98 insertions(+), 278 deletions(-)

Deleted: gnome-unstable-i686/0001-giscanner-fix-EOF-check-with-flex-2.6.1.patch
===
--- gnome-unstable-i686/0001-giscanner-fix-EOF-check-with-flex-2.6.1.patch  
2017-09-12 21:07:46 UTC (rev 305384)
+++ gnome-unstable-i686/0001-giscanner-fix-EOF-check-with-flex-2.6.1.patch  
2017-09-12 21:08:49 UTC (rev 305385)
@@ -1,87 +0,0 @@
-From 740f5325360e5219b5129401fda90dd34d6cf47c Mon Sep 17 00:00:00 2001
-From: Jan de Groot 
-Date: Thu, 20 Oct 2016 12:14:19 +
-Subject: [PATCH] giscanner: fix EOF check with flex >= 2.6.1
-
-It looks like flex 2.6.1 changed [1] the return code for EOF in
-yyinput.  Therefore, use the right value depending on the version of
-flex which generates the lexer.
-
-[1] 
https://github.com/westes/flex/commit/f863c9490e6912ffcaeb12965fb3a567a10745ff

- giscanner/scannerlexer.l | 21 +++--
- 1 file changed, 15 insertions(+), 6 deletions(-)
-
-diff --git a/giscanner/scannerlexer.l b/giscanner/scannerlexer.l
-index 21ef570..bd546d5 100644
 a/giscanner/scannerlexer.l
-+++ b/giscanner/scannerlexer.l
-@@ -59,6 +59,15 @@ static void process_linemarks (GISourceScanner *scanner, 
gboolean has_line);
- static int check_identifier (GISourceScanner *scanner, const char *);
- static int parse_ignored_macro (void);
- static void print_error (GISourceScanner *scanner);
-+
-+#if (YY_FLEX_MAJOR_VERSION > 2) \
-+  || ((YY_FLEX_MAJOR_VERSION == 2) && (YY_FLEX_MINOR_VERSION > 6)) \
-+  || ((YY_FLEX_MAJOR_VERSION == 2) && (YY_FLEX_MINOR_VERSION == 6) && 
(YY_FLEX_SUBMINOR_VERSION >= 1))
-+#define IS_EOF 0
-+#else
-+#define IS_EOF EOF
-+#endif
-+
- %}
- 
- %option nounput
-@@ -270,7 +279,7 @@ parse_comment (GISourceScanner *scanner)
-   c1 = input();
-   c2 = input();
- 
--  if (c2 != EOF && (c1 == '*' && c2 != '*' && c2 != '/')) {
-+  if (c2 != IS_EOF && (c1 == '*' && c2 != '*' && c2 != '/')) {
- /*
-  * Store GTK-Doc comment blocks,
-  * starts with one '/' followed by exactly two '*' and not followed by a 
'/'
-@@ -283,7 +292,7 @@ parse_comment (GISourceScanner *scanner)
- 
- comment_lineno = lineno;
- 
--while (c2 != EOF && !(c1 == '*' && c2 == '/'))
-+while (c2 != IS_EOF && !(c1 == '*' && c2 == '/'))
-   {
- if (!skip)
-   g_string_append_c (string, c1);
-@@ -311,7 +320,7 @@ parse_comment (GISourceScanner *scanner)
- /*
-  * Ignore all other comment blocks
-  */
--while (c2 != EOF && !(c1 == '*' && c2 == '/'))
-+while (c2 != IS_EOF && !(c1 == '*' && c2 == '/'))
-   {
- if (c1 == '\n')
-   lineno++;
-@@ -436,19 +445,19 @@ parse_ignored_macro (void)
-   int c;
-   int nest;
- 
--  while ((c = input ()) != EOF && isspace (c))
-+  while ((c = input ()) != IS_EOF && isspace (c))
-   ;
-   if (c != '(')
-   return FALSE;
- 
-   nest = 0;
--  while ((c = input ()) != EOF && (nest > 0 || c != ')')) {
-+  while ((c = input ()) != IS_EOF && (nest > 0 || c != ')')) {
-   if (c == '(')
-   nest++;
-   else if (c == ')')
-   nest--;
-   else if (c == '"') {
--  while ((c = input ()) != EOF && c != '"') {
-+  while ((c = input ()) != IS_EOF && c != '"') {
-   if (c == '\\')
-   c = input ();
-   }
--- 
-2.10.0
-

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2017-09-12 21:07:46 

[arch-commits] Commit in gobject-introspection/trunk (2 files)

2017-09-12 Thread Jan Steffens
Date: Tuesday, September 12, 2017 @ 21:07:46
  Author: heftig
Revision: 305384

1.54.0-1

Modified:
  gobject-introspection/trunk/PKGBUILD
Deleted:
  gobject-introspection/trunk/0001-giscanner-fix-EOF-check-with-flex-2.6.1.patch

+
 0001-giscanner-fix-EOF-check-with-flex-2.6.1.patch |   87 ---
 PKGBUILD   |   11 --
 2 files changed, 4 insertions(+), 94 deletions(-)

Deleted: 0001-giscanner-fix-EOF-check-with-flex-2.6.1.patch
===
--- 0001-giscanner-fix-EOF-check-with-flex-2.6.1.patch  2017-09-12 21:06:27 UTC 
(rev 305383)
+++ 0001-giscanner-fix-EOF-check-with-flex-2.6.1.patch  2017-09-12 21:07:46 UTC 
(rev 305384)
@@ -1,87 +0,0 @@
-From 740f5325360e5219b5129401fda90dd34d6cf47c Mon Sep 17 00:00:00 2001
-From: Jan de Groot 
-Date: Thu, 20 Oct 2016 12:14:19 +
-Subject: [PATCH] giscanner: fix EOF check with flex >= 2.6.1
-
-It looks like flex 2.6.1 changed [1] the return code for EOF in
-yyinput.  Therefore, use the right value depending on the version of
-flex which generates the lexer.
-
-[1] 
https://github.com/westes/flex/commit/f863c9490e6912ffcaeb12965fb3a567a10745ff

- giscanner/scannerlexer.l | 21 +++--
- 1 file changed, 15 insertions(+), 6 deletions(-)
-
-diff --git a/giscanner/scannerlexer.l b/giscanner/scannerlexer.l
-index 21ef570..bd546d5 100644
 a/giscanner/scannerlexer.l
-+++ b/giscanner/scannerlexer.l
-@@ -59,6 +59,15 @@ static void process_linemarks (GISourceScanner *scanner, 
gboolean has_line);
- static int check_identifier (GISourceScanner *scanner, const char *);
- static int parse_ignored_macro (void);
- static void print_error (GISourceScanner *scanner);
-+
-+#if (YY_FLEX_MAJOR_VERSION > 2) \
-+  || ((YY_FLEX_MAJOR_VERSION == 2) && (YY_FLEX_MINOR_VERSION > 6)) \
-+  || ((YY_FLEX_MAJOR_VERSION == 2) && (YY_FLEX_MINOR_VERSION == 6) && 
(YY_FLEX_SUBMINOR_VERSION >= 1))
-+#define IS_EOF 0
-+#else
-+#define IS_EOF EOF
-+#endif
-+
- %}
- 
- %option nounput
-@@ -270,7 +279,7 @@ parse_comment (GISourceScanner *scanner)
-   c1 = input();
-   c2 = input();
- 
--  if (c2 != EOF && (c1 == '*' && c2 != '*' && c2 != '/')) {
-+  if (c2 != IS_EOF && (c1 == '*' && c2 != '*' && c2 != '/')) {
- /*
-  * Store GTK-Doc comment blocks,
-  * starts with one '/' followed by exactly two '*' and not followed by a 
'/'
-@@ -283,7 +292,7 @@ parse_comment (GISourceScanner *scanner)
- 
- comment_lineno = lineno;
- 
--while (c2 != EOF && !(c1 == '*' && c2 == '/'))
-+while (c2 != IS_EOF && !(c1 == '*' && c2 == '/'))
-   {
- if (!skip)
-   g_string_append_c (string, c1);
-@@ -311,7 +320,7 @@ parse_comment (GISourceScanner *scanner)
- /*
-  * Ignore all other comment blocks
-  */
--while (c2 != EOF && !(c1 == '*' && c2 == '/'))
-+while (c2 != IS_EOF && !(c1 == '*' && c2 == '/'))
-   {
- if (c1 == '\n')
-   lineno++;
-@@ -436,19 +445,19 @@ parse_ignored_macro (void)
-   int c;
-   int nest;
- 
--  while ((c = input ()) != EOF && isspace (c))
-+  while ((c = input ()) != IS_EOF && isspace (c))
-   ;
-   if (c != '(')
-   return FALSE;
- 
-   nest = 0;
--  while ((c = input ()) != EOF && (nest > 0 || c != ')')) {
-+  while ((c = input ()) != IS_EOF && (nest > 0 || c != ')')) {
-   if (c == '(')
-   nest++;
-   else if (c == ')')
-   nest--;
-   else if (c == '"') {
--  while ((c = input ()) != EOF && c != '"') {
-+  while ((c = input ()) != IS_EOF && c != '"') {
-   if (c == '\\')
-   c = input ();
-   }
--- 
-2.10.0
-

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 21:06:27 UTC (rev 305383)
+++ PKGBUILD2017-09-12 21:07:46 UTC (rev 305384)
@@ -3,7 +3,7 @@
 
 pkgbase=gobject-introspection
 pkgname=(gobject-introspection gobject-introspection-runtime)
-pkgver=1.53.7
+pkgver=1.54.0
 pkgrel=1
 pkgdesc="Introspection system for GObject-based libraries"
 url="https://wiki.gnome.org/Projects/GObjectIntrospection;
@@ -12,11 +12,9 @@
 depends=(python python-mako)
 makedepends=(cairo git gtk-doc)
 options=(!emptydirs)
-_commit=f22ad3e4f09a1ada9b8887235c8cb8822a03e88f  # tags/1.53.7^0
-source=("git+https://git.gnome.org/browse/gobject-introspection#commit=$_commit;
-0001-giscanner-fix-EOF-check-with-flex-2.6.1.patch)
-sha256sums=('SKIP'
-'e1333f2eddf23e4d750aa1c39e5fea8264d0586d1916f11188dbd07d4449d81f')
+_commit=230b258b0fb0279e9f8b500d6a9cfa1313162ced  # tags/1.54.0^0
+source=("git+https://git.gnome.org/browse/gobject-introspection#commit=$_commit;)
+sha256sums=('SKIP')
 
 pkgver() {
   cd 

[arch-commits] Commit in at-spi2-core/repos (4 files)

2017-09-12 Thread Jan Steffens
Date: Tuesday, September 12, 2017 @ 21:06:27
  Author: heftig
Revision: 305383

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  at-spi2-core/repos/gnome-unstable-i686/PKGBUILD
(from rev 305382, at-spi2-core/trunk/PKGBUILD)
  at-spi2-core/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 305382, at-spi2-core/trunk/PKGBUILD)
Deleted:
  at-spi2-core/repos/gnome-unstable-i686/PKGBUILD
  at-spi2-core/repos/gnome-unstable-x86_64/PKGBUILD

+
 /PKGBUILD  |   88 +++
 gnome-unstable-i686/PKGBUILD   |   44 ---
 gnome-unstable-x86_64/PKGBUILD |   44 ---
 3 files changed, 88 insertions(+), 88 deletions(-)

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2017-09-12 21:05:50 UTC (rev 305382)
+++ gnome-unstable-i686/PKGBUILD2017-09-12 21:06:27 UTC (rev 305383)
@@ -1,44 +0,0 @@
-# $Id$
-# Contributor: Ionut Biru 
-
-pkgname=at-spi2-core
-pkgver=2.25.92
-pkgrel=1
-pkgdesc="Protocol definitions and daemon for D-Bus at-spi"
-url="https://git.gnome.org/browse/at-spi2-core;
-arch=(i686 x86_64)
-license=(GPL2)
-depends=(dbus glib2 libxtst)
-makedepends=(intltool gobject-introspection git gtk-doc meson)
-_commit=774a363203dfaa6212295c9da29feba64dc29823  # tags/AT_SPI2_CORE_2_25_92^0
-source=("git+https://git.gnome.org/browse/at-spi2-core#commit=$_commit;
-0001-meson-Actually-use-the-soversion.patch)
-sha256sums=('SKIP'
-'36f67a3a20bdb63f3ee2199634962a7e93f323d481f8da5801f3ad2a533a9d8e')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^AT_SPI2_CORE_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  mkdir build
-  cd $pkgname
-  git apply -3 ../0001-meson-Actually-use-the-soversion.patch
-}
-  
-build() {
-  cd build
-  meson setup --prefix=/usr --buildtype=release ../$pkgname \
---sysconfdir=/etc \
---libexecdir=/usr/lib/$pkgname \
--Denable_docs=true
-  ninja
-}
-
-package() {
-  cd build
-  DESTDIR="$pkgdir" ninja install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: at-spi2-core/repos/gnome-unstable-i686/PKGBUILD (from rev 305382, 
at-spi2-core/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2017-09-12 21:06:27 UTC (rev 305383)
@@ -0,0 +1,44 @@
+# $Id$
+# Contributor: Ionut Biru 
+
+pkgname=at-spi2-core
+pkgver=2.26.0
+pkgrel=1
+pkgdesc="Protocol definitions and daemon for D-Bus at-spi"
+url="https://git.gnome.org/browse/at-spi2-core;
+arch=(i686 x86_64)
+license=(GPL2)
+depends=(dbus glib2 libxtst)
+makedepends=(intltool gobject-introspection git gtk-doc meson)
+_commit=ff911c5dcb5553605b7fa83cae5494de1407ce33  # tags/AT_SPI2_CORE_2_26_0^0
+source=("git+https://git.gnome.org/browse/at-spi2-core#commit=$_commit;
+0001-meson-Actually-use-the-soversion.patch)
+sha256sums=('SKIP'
+'36f67a3a20bdb63f3ee2199634962a7e93f323d481f8da5801f3ad2a533a9d8e')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^AT_SPI2_CORE_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+  git apply -3 ../0001-meson-Actually-use-the-soversion.patch
+}
+  
+build() {
+  cd build
+  meson setup --prefix=/usr --buildtype=release ../$pkgname \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/$pkgname \
+-Denable_docs=true
+  ninja
+}
+
+package() {
+  cd build
+  DESTDIR="$pkgdir" ninja install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: gnome-unstable-x86_64/PKGBUILD
===
--- gnome-unstable-x86_64/PKGBUILD  2017-09-12 21:05:50 UTC (rev 305382)
+++ gnome-unstable-x86_64/PKGBUILD  2017-09-12 21:06:27 UTC (rev 305383)
@@ -1,44 +0,0 @@
-# $Id$
-# Contributor: Ionut Biru 
-
-pkgname=at-spi2-core
-pkgver=2.25.92
-pkgrel=1
-pkgdesc="Protocol definitions and daemon for D-Bus at-spi"
-url="https://git.gnome.org/browse/at-spi2-core;
-arch=(i686 x86_64)
-license=(GPL2)
-depends=(dbus glib2 libxtst)
-makedepends=(intltool gobject-introspection git gtk-doc meson)
-_commit=774a363203dfaa6212295c9da29feba64dc29823  # tags/AT_SPI2_CORE_2_25_92^0
-source=("git+https://git.gnome.org/browse/at-spi2-core#commit=$_commit;
-0001-meson-Actually-use-the-soversion.patch)
-sha256sums=('SKIP'
-'36f67a3a20bdb63f3ee2199634962a7e93f323d481f8da5801f3ad2a533a9d8e')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^AT_SPI2_CORE_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  mkdir build
-  cd $pkgname
-  git apply -3 ../0001-meson-Actually-use-the-soversion.patch
-}
-  
-build() {
-  cd build
-  meson setup --prefix=/usr --buildtype=release ../$pkgname \
---sysconfdir=/etc \
---libexecdir=/usr/lib/$pkgname \
--Denable_docs=true
-  ninja
-}

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

2017-09-12 Thread Jan Steffens
Date: Tuesday, September 12, 2017 @ 21:05:50
  Author: heftig
Revision: 305382

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  atk/repos/gnome-unstable-i686/PKGBUILD
(from rev 305381, atk/trunk/PKGBUILD)
  atk/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 305381, atk/trunk/PKGBUILD)
Deleted:
  atk/repos/gnome-unstable-i686/PKGBUILD
  atk/repos/gnome-unstable-x86_64/PKGBUILD

+
 /PKGBUILD  |   84 +++
 gnome-unstable-i686/PKGBUILD   |   42 ---
 gnome-unstable-x86_64/PKGBUILD |   42 ---
 3 files changed, 84 insertions(+), 84 deletions(-)

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2017-09-12 21:04:41 UTC (rev 305381)
+++ gnome-unstable-i686/PKGBUILD2017-09-12 21:05:50 UTC (rev 305382)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=atk
-pkgver=2.25.90
-pkgrel=1
-pkgdesc="The interface definitions of accessibility infrastructure"
-url="https://git.gnome.org/browse/atk;
-arch=(i686 x86_64)
-license=(LGPL)
-depends=(glib2)
-makedepends=(gobject-introspection git gtk-doc meson)
-_commit=c5ee728c20b2d04aa69f21feefcbdd8c6ca0ba36  # tags/ATK_2_25_90^0
-source=("git+https://git.gnome.org/browse/atk#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^ATK_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  mkdir build
-  cd $pkgname
-}
-
-check() {
-  cd build
-  meson test
-}
-
-build() {
-  cd build
-  meson setup --prefix=/usr --buildtype=release ../$pkgname \
--Denable_docs=true
-  ninja
-}
-
-package() {
-  cd build
-  DESTDIR="$pkgdir" ninja install
-}

Copied: atk/repos/gnome-unstable-i686/PKGBUILD (from rev 305381, 
atk/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2017-09-12 21:05:50 UTC (rev 305382)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=atk
+pkgver=2.26.0
+pkgrel=1
+pkgdesc="The interface definitions of accessibility infrastructure"
+url="https://git.gnome.org/browse/atk;
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(glib2)
+makedepends=(gobject-introspection git gtk-doc meson)
+_commit=d2fbf661260626939cc3186c58177c1890c0e2e2  # tags/ATK_2_26_0^0
+source=("git+https://git.gnome.org/browse/atk#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^ATK_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+}
+
+check() {
+  cd build
+  meson test
+}
+
+build() {
+  cd build
+  meson setup --prefix=/usr --buildtype=release ../$pkgname \
+-Denable_docs=true
+  ninja
+}
+
+package() {
+  cd build
+  DESTDIR="$pkgdir" ninja install
+}

Deleted: gnome-unstable-x86_64/PKGBUILD
===
--- gnome-unstable-x86_64/PKGBUILD  2017-09-12 21:04:41 UTC (rev 305381)
+++ gnome-unstable-x86_64/PKGBUILD  2017-09-12 21:05:50 UTC (rev 305382)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=atk
-pkgver=2.25.90
-pkgrel=1
-pkgdesc="The interface definitions of accessibility infrastructure"
-url="https://git.gnome.org/browse/atk;
-arch=(i686 x86_64)
-license=(LGPL)
-depends=(glib2)
-makedepends=(gobject-introspection git gtk-doc meson)
-_commit=c5ee728c20b2d04aa69f21feefcbdd8c6ca0ba36  # tags/ATK_2_25_90^0
-source=("git+https://git.gnome.org/browse/atk#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^ATK_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  mkdir build
-  cd $pkgname
-}
-
-check() {
-  cd build
-  meson test
-}
-
-build() {
-  cd build
-  meson setup --prefix=/usr --buildtype=release ../$pkgname \
--Denable_docs=true
-  ninja
-}
-
-package() {
-  cd build
-  DESTDIR="$pkgdir" ninja install
-}

Copied: atk/repos/gnome-unstable-x86_64/PKGBUILD (from rev 305381, 
atk/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2017-09-12 21:05:50 UTC (rev 305382)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=atk
+pkgver=2.26.0
+pkgrel=1
+pkgdesc="The interface definitions of accessibility infrastructure"
+url="https://git.gnome.org/browse/atk;
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(glib2)
+makedepends=(gobject-introspection git gtk-doc meson)
+_commit=d2fbf661260626939cc3186c58177c1890c0e2e2  # tags/ATK_2_26_0^0
+source=("git+https://git.gnome.org/browse/atk#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^ATK_//;s/_/./g;s/-/+/g'
+}
+

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

2017-09-12 Thread Jan Steffens
Date: Tuesday, September 12, 2017 @ 21:04:37
  Author: heftig
Revision: 305380

2.26.0-1

Modified:
  atk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 21:01:42 UTC (rev 305379)
+++ PKGBUILD2017-09-12 21:04:37 UTC (rev 305380)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=atk
-pkgver=2.25.90
+pkgver=2.26.0
 pkgrel=1
 pkgdesc="The interface definitions of accessibility infrastructure"
 url="https://git.gnome.org/browse/atk;
@@ -10,7 +10,7 @@
 license=(LGPL)
 depends=(glib2)
 makedepends=(gobject-introspection git gtk-doc meson)
-_commit=c5ee728c20b2d04aa69f21feefcbdd8c6ca0ba36  # tags/ATK_2_25_90^0
+_commit=d2fbf661260626939cc3186c58177c1890c0e2e2  # tags/ATK_2_26_0^0
 source=("git+https://git.gnome.org/browse/atk#commit=$_commit;)
 sha256sums=('SKIP')
 


[arch-commits] Commit in at-spi2-core/trunk (PKGBUILD)

2017-09-12 Thread Jan Steffens
Date: Tuesday, September 12, 2017 @ 21:04:41
  Author: heftig
Revision: 305381

2.26.0-1

Modified:
  at-spi2-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 21:04:37 UTC (rev 305380)
+++ PKGBUILD2017-09-12 21:04:41 UTC (rev 305381)
@@ -2,7 +2,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=at-spi2-core
-pkgver=2.25.92
+pkgver=2.26.0
 pkgrel=1
 pkgdesc="Protocol definitions and daemon for D-Bus at-spi"
 url="https://git.gnome.org/browse/at-spi2-core;
@@ -10,7 +10,7 @@
 license=(GPL2)
 depends=(dbus glib2 libxtst)
 makedepends=(intltool gobject-introspection git gtk-doc meson)
-_commit=774a363203dfaa6212295c9da29feba64dc29823  # tags/AT_SPI2_CORE_2_25_92^0
+_commit=ff911c5dcb5553605b7fa83cae5494de1407ce33  # tags/AT_SPI2_CORE_2_26_0^0
 source=("git+https://git.gnome.org/browse/at-spi2-core#commit=$_commit;
 0001-meson-Actually-use-the-soversion.patch)
 sha256sums=('SKIP'


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

2017-09-12 Thread Jan Steffens
Date: Tuesday, September 12, 2017 @ 21:01:42
  Author: heftig
Revision: 305379

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  json-glib/repos/gnome-unstable-i686/PKGBUILD
(from rev 305378, json-glib/trunk/PKGBUILD)
  json-glib/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 305378, json-glib/trunk/PKGBUILD)
Deleted:
  json-glib/repos/gnome-unstable-i686/PKGBUILD
  json-glib/repos/gnome-unstable-x86_64/PKGBUILD

+
 /PKGBUILD  |   84 +++
 gnome-unstable-i686/PKGBUILD   |   44 
 gnome-unstable-x86_64/PKGBUILD |   44 
 3 files changed, 84 insertions(+), 88 deletions(-)

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2017-09-12 21:00:32 UTC (rev 305378)
+++ gnome-unstable-i686/PKGBUILD2017-09-12 21:01:42 UTC (rev 305379)
@@ -1,44 +0,0 @@
-# $Id$
-# Contributor: Ionut Biru 
-
-pkgname=json-glib
-pkgver=1.3.2
-pkgrel=1
-pkgdesc="JSON library built on GLib"
-url="https://wiki.gnome.org/Projects/JsonGlib;
-arch=(i686 x86_64)
-license=(GPL)
-depends=(glib2)
-makedepends=(gobject-introspection git gtk-doc meson)
-_commit=730cc7f4f69913eb1702fd2a52229d678d1e8c90  # tags/1.3.2^0
-source=("git+https://gitlab.gnome.org/GNOME/json-glib.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  mkdir build
-  cd $pkgname
-}
-
-build() {
-  cd build
-  meson setup --prefix=/usr --buildtype=release ../$pkgname \
---libexecdir=/usr/lib \
--Denable-gtk-doc=true \
--Denable-man=true
-  ninja
-}
-
-check() {
-  cd build
-  meson test || [[ $CARCH == i686 ]]
-}
-
-package() {
-  cd build
-  DESTDIR="$pkgdir" ninja install
-}

Copied: json-glib/repos/gnome-unstable-i686/PKGBUILD (from rev 305378, 
json-glib/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2017-09-12 21:01:42 UTC (rev 305379)
@@ -0,0 +1,42 @@
+# $Id$
+# Contributor: Ionut Biru 
+
+pkgname=json-glib
+pkgver=1.4.2
+pkgrel=1
+pkgdesc="JSON library built on GLib"
+url="https://wiki.gnome.org/Projects/JsonGlib;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(glib2)
+makedepends=(gobject-introspection git gtk-doc meson)
+_commit=68e90dafac7022fc467bac8d2dd04d3f8a5a88a7  # tags/1.4.2^0
+source=("git+https://gitlab.gnome.org/GNOME/json-glib.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+}
+
+build() {
+  cd build
+  meson setup --prefix=/usr --buildtype=release ../$pkgname \
+--libexecdir=/usr/lib -Ddocs=true
+  ninja
+}
+
+check() {
+  cd build
+  meson test || [[ $CARCH == i686 ]]
+}
+
+package() {
+  cd build
+  DESTDIR="$pkgdir" ninja install
+}

Deleted: gnome-unstable-x86_64/PKGBUILD
===
--- gnome-unstable-x86_64/PKGBUILD  2017-09-12 21:00:32 UTC (rev 305378)
+++ gnome-unstable-x86_64/PKGBUILD  2017-09-12 21:01:42 UTC (rev 305379)
@@ -1,44 +0,0 @@
-# $Id$
-# Contributor: Ionut Biru 
-
-pkgname=json-glib
-pkgver=1.3.2
-pkgrel=1
-pkgdesc="JSON library built on GLib"
-url="https://wiki.gnome.org/Projects/JsonGlib;
-arch=(i686 x86_64)
-license=(GPL)
-depends=(glib2)
-makedepends=(gobject-introspection git gtk-doc meson)
-_commit=730cc7f4f69913eb1702fd2a52229d678d1e8c90  # tags/1.3.2^0
-source=("git+https://gitlab.gnome.org/GNOME/json-glib.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  mkdir build
-  cd $pkgname
-}
-
-build() {
-  cd build
-  meson setup --prefix=/usr --buildtype=release ../$pkgname \
---libexecdir=/usr/lib \
--Denable-gtk-doc=true \
--Denable-man=true
-  ninja
-}
-
-check() {
-  cd build
-  meson test || [[ $CARCH == i686 ]]
-}
-
-package() {
-  cd build
-  DESTDIR="$pkgdir" ninja install
-}

Copied: json-glib/repos/gnome-unstable-x86_64/PKGBUILD (from rev 305378, 
json-glib/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2017-09-12 21:01:42 UTC (rev 305379)
@@ -0,0 +1,42 @@
+# $Id$
+# Contributor: Ionut Biru 
+
+pkgname=json-glib
+pkgver=1.4.2
+pkgrel=1
+pkgdesc="JSON library built on GLib"
+url="https://wiki.gnome.org/Projects/JsonGlib;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(glib2)
+makedepends=(gobject-introspection git gtk-doc meson)
+_commit=68e90dafac7022fc467bac8d2dd04d3f8a5a88a7  # tags/1.4.2^0

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

2017-09-12 Thread Jan Steffens
Date: Tuesday, September 12, 2017 @ 21:00:32
  Author: heftig
Revision: 305378

1.4.2-1

Modified:
  json-glib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 20:33:32 UTC (rev 305377)
+++ PKGBUILD2017-09-12 21:00:32 UTC (rev 305378)
@@ -2,7 +2,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=json-glib
-pkgver=1.3.2
+pkgver=1.4.2
 pkgrel=1
 pkgdesc="JSON library built on GLib"
 url="https://wiki.gnome.org/Projects/JsonGlib;
@@ -10,7 +10,7 @@
 license=(GPL)
 depends=(glib2)
 makedepends=(gobject-introspection git gtk-doc meson)
-_commit=730cc7f4f69913eb1702fd2a52229d678d1e8c90  # tags/1.3.2^0
+_commit=68e90dafac7022fc467bac8d2dd04d3f8a5a88a7  # tags/1.4.2^0
 source=("git+https://gitlab.gnome.org/GNOME/json-glib.git#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -27,9 +27,7 @@
 build() {
   cd build
   meson setup --prefix=/usr --buildtype=release ../$pkgname \
---libexecdir=/usr/lib \
--Denable-gtk-doc=true \
--Denable-man=true
+--libexecdir=/usr/lib -Ddocs=true
   ninja
 }
 


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

2017-09-12 Thread Jan Steffens
Date: Tuesday, September 12, 2017 @ 20:33:32
  Author: heftig
Revision: 305377

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  glib/repos/gnome-unstable-i686/0001-docs-Fix-building-with-meson.patch
(from rev 305376, glib/trunk/0001-docs-Fix-building-with-meson.patch)
  glib/repos/gnome-unstable-i686/PKGBUILD
(from rev 305376, glib/trunk/PKGBUILD)
  glib/repos/gnome-unstable-i686/gio-querymodules.hook
(from rev 305376, glib/trunk/gio-querymodules.hook)
  glib/repos/gnome-unstable-i686/glib-compile-schemas.hook
(from rev 305376, glib/trunk/glib-compile-schemas.hook)
  glib/repos/gnome-unstable-i686/noisy-glib-compile-schemas.diff
(from rev 305376, glib/trunk/noisy-glib-compile-schemas.diff)
  glib/repos/gnome-unstable-x86_64/0001-docs-Fix-building-with-meson.patch
(from rev 305376, glib/trunk/0001-docs-Fix-building-with-meson.patch)
  glib/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 305376, glib/trunk/PKGBUILD)
  glib/repos/gnome-unstable-x86_64/gio-querymodules.hook
(from rev 305376, glib/trunk/gio-querymodules.hook)
  glib/repos/gnome-unstable-x86_64/glib-compile-schemas.hook
(from rev 305376, glib/trunk/glib-compile-schemas.hook)
  glib/repos/gnome-unstable-x86_64/noisy-glib-compile-schemas.diff
(from rev 305376, glib/trunk/noisy-glib-compile-schemas.diff)
Deleted:
  glib/repos/gnome-unstable-i686/0001-docs-Fix-building-with-meson.patch
  glib/repos/gnome-unstable-i686/PKGBUILD
  glib/repos/gnome-unstable-i686/gio-querymodules.hook
  glib/repos/gnome-unstable-i686/glib-compile-schemas.hook
  glib/repos/gnome-unstable-i686/noisy-glib-compile-schemas.diff
  glib/repos/gnome-unstable-x86_64/0001-docs-Fix-building-with-meson.patch
  glib/repos/gnome-unstable-x86_64/PKGBUILD
  glib/repos/gnome-unstable-x86_64/gio-querymodules.hook
  glib/repos/gnome-unstable-x86_64/glib-compile-schemas.hook
  glib/repos/gnome-unstable-x86_64/noisy-glib-compile-schemas.diff

---+
 /0001-docs-Fix-building-with-meson.patch  |  170 ++
 /PKGBUILD |  158 +
 /gio-querymodules.hook|   22 +
 /glib-compile-schemas.hook|   24 +
 /noisy-glib-compile-schemas.diff  |   48 ++
 gnome-unstable-i686/0001-docs-Fix-building-with-meson.patch   |   85 -
 gnome-unstable-i686/PKGBUILD  |   79 
 gnome-unstable-i686/gio-querymodules.hook |   11 
 gnome-unstable-i686/glib-compile-schemas.hook |   12 
 gnome-unstable-i686/noisy-glib-compile-schemas.diff   |   24 -
 gnome-unstable-x86_64/0001-docs-Fix-building-with-meson.patch |   85 -
 gnome-unstable-x86_64/PKGBUILD|   79 
 gnome-unstable-x86_64/gio-querymodules.hook   |   11 
 gnome-unstable-x86_64/glib-compile-schemas.hook   |   12 
 gnome-unstable-x86_64/noisy-glib-compile-schemas.diff |   24 -
 15 files changed, 422 insertions(+), 422 deletions(-)

Deleted: gnome-unstable-i686/0001-docs-Fix-building-with-meson.patch
===
--- gnome-unstable-i686/0001-docs-Fix-building-with-meson.patch 2017-09-12 
20:31:40 UTC (rev 305376)
+++ gnome-unstable-i686/0001-docs-Fix-building-with-meson.patch 2017-09-12 
20:33:32 UTC (rev 305377)
@@ -1,85 +0,0 @@
-From a7cbd565aad04f92cbd9ac36696a9d033ae6bcc0 Mon Sep 17 00:00:00 2001
-From: Armin K 
-Date: Fri, 25 Aug 2017 13:36:23 +0200
-Subject: [PATCH] docs: Fix building with meson
-
-This fixes {gio,gobject}-doc ninja targets as well as
-install process when gtk-doc is enabled

- docs/reference/gio/meson.build | 15 ++-
- docs/reference/gobject/meson.build | 13 -
- 2 files changed, 26 insertions(+), 2 deletions(-)
-
-diff --git a/docs/reference/gio/meson.build b/docs/reference/gio/meson.build
-index 7f0467726..8f8dc7ce5 100644
 a/docs/reference/gio/meson.build
-+++ b/docs/reference/gio/meson.build
-@@ -52,9 +52,12 @@ if get_option('with-docs') != 'no'
- 'gnetworkmonitorbase.h',
- 'gnetworkmonitornetlink.h',
- 'gnetworkmonitornm.h',
-+'gnetworkmonitorportal.h',
- 'gnotificationbackend.h',
- 'gnotification-private.h',
-+'gosxappinfo.h',
- 'gpollfilemonitor.h',
-+'gproxyresolverportal.h',
- 'gregistrysettingsbackend.h',
- 'gresourcefile.h',
- 'gsettingsbackendinternal.h',
-@@ -95,12 +98,22 @@ if get_option('with-docs') != 'no'
- configuration: version_conf
-   )
- 
-+  # Meson uses paths relative to meson.source_root() in dependencies,
-+  # which is invalid relative to current_source_dir(), so the compile
-+  # process fails to find glib headers
-+  top_build_dir = meson.build_root()
-+  top_source_dir = meson.source_root()

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

2017-09-12 Thread Jan Steffens
Date: Tuesday, September 12, 2017 @ 20:31:40
  Author: heftig
Revision: 305376

2.54.0-1

Modified:
  glib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 20:04:40 UTC (rev 305375)
+++ PKGBUILD2017-09-12 20:31:40 UTC (rev 305376)
@@ -3,7 +3,7 @@
 
 pkgbase=glib
 pkgname=(glib glib-docs)
-pkgver=2.53.7
+pkgver=2.54.0
 pkgrel=1
 pkgdesc="Low level core library"
 url="https://wiki.gnome.org/Projects/GLib;
@@ -18,7 +18,7 @@
 conflicts=(glib2)
 replaces=(glib2)
 options=(!emptydirs)
-_commit=052f134528ae5bf828f39684efe2ff4d4e0cf24c  # tags/2.53.7^0
+_commit=738eff5decf0e354e692c36a0b9d466fc5775e3c  # tags/2.54.0^0
 source=("git+https://git.gnome.org/browse/glib#commit=$_commit;
 0001-docs-Fix-building-with-meson.patch
 noisy-glib-compile-schemas.diff
@@ -53,7 +53,7 @@
 
 check() {
   cd build
-  meson test
+  meson test -t 2
 }
 
 package_glib() {


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

2017-09-12 Thread Antonio Rojas
Date: Tuesday, September 12, 2017 @ 20:22:10
  Author: arojas
Revision: 257180

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

Added:
  poedit/repos/community-staging-i686/
  poedit/repos/community-staging-i686/PKGBUILD
(from rev 257179, poedit/trunk/PKGBUILD)
  poedit/repos/community-staging-i686/icu59.patch
(from rev 257179, poedit/trunk/icu59.patch)
  
poedit/repos/community-staging-i686/poedit-2.0.2_fix_drawroundedrectangle_assert.patch
(from rev 257179, 
poedit/trunk/poedit-2.0.2_fix_drawroundedrectangle_assert.patch)
  poedit/repos/community-staging-x86_64/
  poedit/repos/community-staging-x86_64/PKGBUILD
(from rev 257179, poedit/trunk/PKGBUILD)
  poedit/repos/community-staging-x86_64/icu59.patch
(from rev 257179, poedit/trunk/icu59.patch)
  
poedit/repos/community-staging-x86_64/poedit-2.0.2_fix_drawroundedrectangle_assert.patch
(from rev 257179, 
poedit/trunk/poedit-2.0.2_fix_drawroundedrectangle_assert.patch)

-+
 community-staging-i686/PKGBUILD |  
 41 ++
 community-staging-i686/icu59.patch  |  
 11 ++
 community-staging-i686/poedit-2.0.2_fix_drawroundedrectangle_assert.patch   |  
 29 +++
 community-staging-x86_64/PKGBUILD   |  
 41 ++
 community-staging-x86_64/icu59.patch|  
 11 ++
 community-staging-x86_64/poedit-2.0.2_fix_drawroundedrectangle_assert.patch |  
 29 +++
 6 files changed, 162 insertions(+)

Copied: poedit/repos/community-staging-i686/PKGBUILD (from rev 257179, 
poedit/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-12 20:22:10 UTC (rev 257180)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Andrea Scarpino 
+# Contributor: Giovanni Scafora 
+# Contributor: Alexander Fehr 
+# Contributor: Daniel J Griffiths 
+
+pkgname=poedit
+epoch=1
+pkgver=2.0.3
+pkgrel=2
+pkgdesc="Cross-platform gettext catalogs (.po files) editor"
+arch=('i686' 'x86_64')
+url="http://www.poedit.net/;
+license=('MIT')
+depends=('gtkspell3' 'lucene++' 'wxgtk3')
+makedepends=('boost')
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz
+icu59.patch
+poedit-2.0.2_fix_drawroundedrectangle_assert.patch)
+sha256sums=('1ff4c7b3966946b2dc06ba8dda5d8861fa00a94d8387821db511f339092d9577'
+'4d2fcbc1ce5a8d8bab878687337c1f038ed1a83b37652e0a41d7f5c2b26b27bc'
+'721d81cebd32dd27d678d72f1ad527d7d3d74a49862cfa876cbd14f6b54d21d6')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+#patch -Np1 -i ../icu59.patch
+#patch -Np1 -i ../poedit-2.0.2_fix_drawroundedrectangle_assert.patch
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit 
--with-wx-config=/usr/bin/wx-config-gtk3
+make CPPFLAGS+=' -DUCHAR_TYPE=uint16_t'
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: poedit/repos/community-staging-i686/icu59.patch (from rev 257179, 
poedit/trunk/icu59.patch)
===
--- community-staging-i686/icu59.patch  (rev 0)
+++ community-staging-i686/icu59.patch  2017-09-12 20:22:10 UTC (rev 257180)
@@ -0,0 +1,11 @@
+diff -upr poedit-2.0.1.orig/src/unicode_helpers.cpp 
poedit-2.0.1/src/unicode_helpers.cpp
+--- poedit-2.0.1.orig/src/unicode_helpers.cpp  2017-04-26 10:55:31.807183266 
+0300
 poedit-2.0.1/src/unicode_helpers.cpp   2017-04-26 11:02:47.373899526 
+0300
+@@ -25,6 +25,7 @@
+ 
+ #include "unicode_helpers.h"
+ 
++#include 
+ #include "str_helpers.h"
+ 
+ #include 

Copied: 
poedit/repos/community-staging-i686/poedit-2.0.2_fix_drawroundedrectangle_assert.patch
 (from rev 257179, 
poedit/trunk/poedit-2.0.2_fix_drawroundedrectangle_assert.patch)
===
--- community-staging-i686/poedit-2.0.2_fix_drawroundedrectangle_assert.patch   
(rev 0)
+++ community-staging-i686/poedit-2.0.2_fix_drawroundedrectangle_assert.patch   
2017-09-12 20:22:10 UTC (rev 257180)
@@ -0,0 +1,29 @@
+From 86e0677f48a309314b45ba5f06c1c62d14b2200d Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Va=CC=81clav=20Slavi=CC=81k?= 
+Date: Thu, 1 Jun 2017 19:19:44 +0200
+Subject: [PATCH] Fix DrawRoundedRectangle assert with wxGTK 3.0
+
+Don't draw if w=0.
+
+Fixes #396.
+---
+ 

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

2017-09-12 Thread Antonio Rojas
Date: Tuesday, September 12, 2017 @ 20:21:38
  Author: arojas
Revision: 257179

boost 1.65 rebuild

Modified:
  poedit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 20:03:30 UTC (rev 257178)
+++ PKGBUILD2017-09-12 20:21:38 UTC (rev 257179)
@@ -8,7 +8,7 @@
 pkgname=poedit
 epoch=1
 pkgver=2.0.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Cross-platform gettext catalogs (.po files) editor"
 arch=('i686' 'x86_64')
 url="http://www.poedit.net/;


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

2017-09-12 Thread Jan Steffens
Date: Tuesday, September 12, 2017 @ 20:04:40
  Author: heftig
Revision: 305375

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

Added:
  gtk3/repos/extra-i686/PKGBUILD
(from rev 305374, gtk3/trunk/PKGBUILD)
  gtk3/repos/extra-i686/gtk-query-immodules-3.0.hook
(from rev 305374, gtk3/trunk/gtk-query-immodules-3.0.hook)
  gtk3/repos/extra-i686/gtk-update-icon-cache.hook
(from rev 305374, gtk3/trunk/gtk-update-icon-cache.hook)
  gtk3/repos/extra-i686/gtk-update-icon-cache.script
(from rev 305374, gtk3/trunk/gtk-update-icon-cache.script)
  gtk3/repos/extra-i686/gtk3.install
(from rev 305374, gtk3/trunk/gtk3.install)
  gtk3/repos/extra-i686/settings.ini
(from rev 305374, gtk3/trunk/settings.ini)
  gtk3/repos/extra-x86_64/PKGBUILD
(from rev 305374, gtk3/trunk/PKGBUILD)
  gtk3/repos/extra-x86_64/gtk-query-immodules-3.0.hook
(from rev 305374, gtk3/trunk/gtk-query-immodules-3.0.hook)
  gtk3/repos/extra-x86_64/gtk-update-icon-cache.hook
(from rev 305374, gtk3/trunk/gtk-update-icon-cache.hook)
  gtk3/repos/extra-x86_64/gtk-update-icon-cache.script
(from rev 305374, gtk3/trunk/gtk-update-icon-cache.script)
  gtk3/repos/extra-x86_64/gtk3.install
(from rev 305374, gtk3/trunk/gtk3.install)
  gtk3/repos/extra-x86_64/settings.ini
(from rev 305374, gtk3/trunk/settings.ini)
Deleted:
  gtk3/repos/extra-i686/PKGBUILD
  gtk3/repos/extra-i686/gtk-query-immodules-3.0.hook
  gtk3/repos/extra-i686/gtk-update-icon-cache.hook
  gtk3/repos/extra-i686/gtk-update-icon-cache.script
  gtk3/repos/extra-i686/gtk3.install
  gtk3/repos/extra-i686/settings.ini
  gtk3/repos/extra-x86_64/PKGBUILD
  gtk3/repos/extra-x86_64/gtk-query-immodules-3.0.hook
  gtk3/repos/extra-x86_64/gtk-update-icon-cache.hook
  gtk3/repos/extra-x86_64/gtk-update-icon-cache.script
  gtk3/repos/extra-x86_64/gtk3.install
  gtk3/repos/extra-x86_64/settings.ini

---+
 /PKGBUILD |  218 
 /gtk-query-immodules-3.0.hook |   22 ++
 /gtk-update-icon-cache.hook   |   26 +++
 /gtk-update-icon-cache.script |   20 ++
 /gtk3.install |6 
 /settings.ini |8 +
 extra-i686/PKGBUILD   |  109 --
 extra-i686/gtk-query-immodules-3.0.hook   |   11 -
 extra-i686/gtk-update-icon-cache.hook |   13 -
 extra-i686/gtk-update-icon-cache.script   |   10 -
 extra-i686/gtk3.install   |3 
 extra-i686/settings.ini   |4 
 extra-x86_64/PKGBUILD |  109 --
 extra-x86_64/gtk-query-immodules-3.0.hook |   11 -
 extra-x86_64/gtk-update-icon-cache.hook   |   13 -
 extra-x86_64/gtk-update-icon-cache.script |   10 -
 extra-x86_64/gtk3.install |3 
 extra-x86_64/settings.ini |4 
 18 files changed, 300 insertions(+), 300 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-09-12 20:00:35 UTC (rev 305374)
+++ extra-i686/PKGBUILD 2017-09-12 20:04:40 UTC (rev 305375)
@@ -1,109 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-
-pkgbase=gtk3
-pkgname=(gtk3 gtk-update-icon-cache gtk3-print-backends)
-pkgver=3.22.20
-pkgrel=1
-pkgdesc="GObject-based multi-platform GUI toolkit"
-arch=(i686 x86_64)
-url="http://www.gtk.org/;
-depends=(atk cairo libxcursor libxinerama libxrandr libxi libepoxy gdk-pixbuf2 
dconf
- libxcomposite libxdamage pango shared-mime-info at-spi2-atk wayland 
libxkbcommon
- adwaita-icon-theme json-glib librsvg wayland-protocols 
desktop-file-utils mesa
- cantarell-fonts)
-makedepends=(gobject-introspection libcanberra gtk-doc git colord rest libcups 
glib2-docs
- sassc)
-license=(LGPL)
-_commit=dd99aeb4bb6df706bac3e89ee9cb95d17750ef04  # tags/3.22.20^0
-source=("git+https://git.gnome.org/browse/gtk+#commit=$_commit;
-settings.ini
-gtk-query-immodules-3.0.hook
-gtk-update-icon-cache.hook
-gtk-update-icon-cache.script)
-sha256sums=('SKIP'
-'01fc1d81dc82c4a052ac6e25bf9a04e7647267cc3017bc91f9ce3e63e5eb9202'
-'de46e5514ff39a7a65e01e485e874775ab1c0ad20b8e94ada43f4a6af1370845'
-'496064a9dd6214bd58f689dd817dbdc4d7f17d42a8c9940a87018c3f829ce308'
-'f1d3a0dbfd82f7339301abecdbe5f024337919b48bd0e09296bb0e79863b2541')
-
-pkgver() {
-  cd gtk+
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  mkdir print-backends
-  cd gtk+
-
-  # menu: Avoid cancelling the menu on GTK+ grabs inside the GtkMenu
-  # https://bugzilla.gnome.org/show_bug.cgi?id=786029
-  git cherry-pick -n 26d8a6dfbac5180dce71d1f2edc7029cfa2773ef
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd gtk+
-
-  CXX=/bin/false ./configure --prefix=/usr \
-

[arch-commits] Commit in variety/repos/community-any (5 files)

2017-09-12 Thread Jaroslav Lichtblau
Date: Tuesday, September 12, 2017 @ 20:03:30
  Author: jlichtblau
Revision: 257178

archrelease: copy trunk to community-any

Added:
  variety/repos/community-any/PKGBUILD
(from rev 257177, variety/trunk/PKGBUILD)
  variety/repos/community-any/fix-vauleerror.patch
(from rev 257177, variety/trunk/fix-vauleerror.patch)
Deleted:
  variety/repos/community-any/PKGBUILD
  variety/repos/community-any/disable-panoramio.patch
  variety/repos/community-any/fix-vauleerror.patch

-+
 PKGBUILD|   77 +-
 disable-panoramio.patch |   46 ---
 fix-vauleerror.patch|   24 +++---
 3 files changed, 48 insertions(+), 99 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-12 20:03:17 UTC (rev 257177)
+++ PKGBUILD2017-09-12 20:03:30 UTC (rev 257178)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-
-pkgname=variety
-pkgver=0.6.4
-_pkgver2=0-589-201704290523
-pkgrel=1
-pkgdesc='Changes the wallpaper on a regular interval using user-specified or 
automatically downloaded images.'
-arch=('any')
-url="http://peterlevi.com/variety/;
-license=('GPL3')
-depends=('gtk3' 'imagemagick' 'libgexiv2' 'libnotify' 'python2-beautifulsoup4' 
'python2-cairo'
- 'python2-configobj' 'python2-dbus' 'python2-gobject' 
'python2-httplib2' 'python2-pillow'
- 'python2-lxml' 'python2-pycurl' 'python2-requests')
-makedepends=('python2-distutils-extra')
-source=(https://launchpad.net/variety/trunk/${pkgver}/+download/${pkgname}_${pkgver}-${_pkgver2}.tar.gz{,.asc}
-disable-panoramio.patch
-fix-vauleerror.patch)
-validpgpkeys=('53A44FA64701571F59CD8C9BA7FAEF1B4791406E') # Peter Levi
-sha256sums=('b7f056afdd6da9547f8ca2ca3bbebf083e24cbab0b706cef976a6b3f1f05adc3'
-'SKIP'
-'011d4f19a17fd59a175f6fa36e282c82c333ce0e849673aeea678f2ee56db743'
-'b16842754013398eb85499137b4b2ea36748505e65eef46864847f7bb8606264')
-
-prepare() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  # Disable Panoramio support (removes webkitgtk dependency)
-  patch -Np1 -i ../disable-panoramio.patch
-
-  # Fix error when appindicator is missing
-  patch -Np1 -i ../fix-vauleerror.patch
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  export XDG_RUNTIME_DIR="/tmp/${pkgname}"
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-}

Copied: variety/repos/community-any/PKGBUILD (from rev 257177, 
variety/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-12 20:03:30 UTC (rev 257178)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Martin Wimpress 
+
+pkgname=variety
+pkgver=0.6.5
+pkgrel=1
+pkgdesc='Changes the wallpaper on a regular interval using user-specified or 
automatically downloaded images.'
+arch=('any')
+url="http://peterlevi.com/variety/;
+license=('GPL3')
+depends=('gtk3' 'imagemagick' 'libgexiv2' 'libnotify' 'python2-beautifulsoup4' 
'python2-cairo'
+ 'python2-configobj' 'python2-dbus' 'python2-gobject' 
'python2-httplib2' 'python2-pillow'
+ 'python2-lxml' 'python2-pycurl' 'python2-requests')
+makedepends=('python2-distutils-extra')
+source=(https://launchpad.net/variety/trunk/${pkgver}/+download/${pkgname}_${pkgver}.tar.gz{,.asc}
+fix-vauleerror.patch)
+#validpgpkeys=('53A44FA64701571F59CD8C9BA7FAEF1B4791406E') # Peter Levi
+validpgpkeys=('D5D568B2D34AB32A337944D22EC3F60DE71C0B9D') # James Lu 

+sha256sums=('d3eeb5b800d881fc0e1055f5614e65b6b6f64e0f1eb5b72fdf2869ae50c51bcc'
+'SKIP'
+'b16842754013398eb85499137b4b2ea36748505e65eef46864847f7bb8606264')
+
+prepare() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  # Fix error when appindicator is missing
+  patch -Np1 -i ../fix-vauleerror.patch
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  export XDG_RUNTIME_DIR="/tmp/${pkgname}"
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+}

Deleted: disable-panoramio.patch
===
--- disable-panoramio.patch 2017-09-12 20:03:17 UTC (rev 257177)
+++ disable-panoramio.patch 2017-09-12 20:03:30 UTC (rev 257178)
@@ -1,46 +0,0 @@
-diff -Naur variety-0.6.3.orig/variety/PreferencesVarietyDialog.py 
variety-0.6.3/variety/PreferencesVarietyDialog.py
 variety-0.6.3.orig/variety/PreferencesVarietyDialog.py 2016-11-01 
19:59:39.0 +0100
-+++ variety-0.6.3/variety/PreferencesVarietyDialog.py  2017-01-25 
21:53:29.419376574 +0100
-@@ -32,7 +32,6 @@
- from variety.AddFlickrDialog import AddFlickrDialog
- from variety.AddMediaRssDialog import AddMediaRssDialog
- from variety.AddRedditDialog import 

[arch-commits] Commit in variety/trunk (PKGBUILD disable-panoramio.patch)

2017-09-12 Thread Jaroslav Lichtblau
Date: Tuesday, September 12, 2017 @ 20:03:17
  Author: jlichtblau
Revision: 257177

upgpkg: variety 0.6.5-1 - new upstream release

Modified:
  variety/trunk/PKGBUILD
Deleted:
  variety/trunk/disable-panoramio.patch

-+
 PKGBUILD|   15 +--
 disable-panoramio.patch |   46 --
 2 files changed, 5 insertions(+), 56 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 19:53:56 UTC (rev 257176)
+++ PKGBUILD2017-09-12 20:03:17 UTC (rev 257177)
@@ -3,8 +3,7 @@
 # Contributor: Martin Wimpress 
 
 pkgname=variety
-pkgver=0.6.4
-_pkgver2=0-589-201704290523
+pkgver=0.6.5
 pkgrel=1
 pkgdesc='Changes the wallpaper on a regular interval using user-specified or 
automatically downloaded images.'
 arch=('any')
@@ -14,21 +13,17 @@
  'python2-configobj' 'python2-dbus' 'python2-gobject' 
'python2-httplib2' 'python2-pillow'
  'python2-lxml' 'python2-pycurl' 'python2-requests')
 makedepends=('python2-distutils-extra')
-source=(https://launchpad.net/variety/trunk/${pkgver}/+download/${pkgname}_${pkgver}-${_pkgver2}.tar.gz{,.asc}
-disable-panoramio.patch
+source=(https://launchpad.net/variety/trunk/${pkgver}/+download/${pkgname}_${pkgver}.tar.gz{,.asc}
 fix-vauleerror.patch)
-validpgpkeys=('53A44FA64701571F59CD8C9BA7FAEF1B4791406E') # Peter Levi
-sha256sums=('b7f056afdd6da9547f8ca2ca3bbebf083e24cbab0b706cef976a6b3f1f05adc3'
+#validpgpkeys=('53A44FA64701571F59CD8C9BA7FAEF1B4791406E') # Peter Levi
+validpgpkeys=('D5D568B2D34AB32A337944D22EC3F60DE71C0B9D') # James Lu 

+sha256sums=('d3eeb5b800d881fc0e1055f5614e65b6b6f64e0f1eb5b72fdf2869ae50c51bcc'
 'SKIP'
-'011d4f19a17fd59a175f6fa36e282c82c333ce0e849673aeea678f2ee56db743'
 'b16842754013398eb85499137b4b2ea36748505e65eef46864847f7bb8606264')
 
 prepare() {
   cd "${srcdir}"/$pkgname-$pkgver
 
-  # Disable Panoramio support (removes webkitgtk dependency)
-  patch -Np1 -i ../disable-panoramio.patch
-
   # Fix error when appindicator is missing
   patch -Np1 -i ../fix-vauleerror.patch
 }

Deleted: disable-panoramio.patch
===
--- disable-panoramio.patch 2017-09-12 19:53:56 UTC (rev 257176)
+++ disable-panoramio.patch 2017-09-12 20:03:17 UTC (rev 257177)
@@ -1,46 +0,0 @@
-diff -Naur variety-0.6.3.orig/variety/PreferencesVarietyDialog.py 
variety-0.6.3/variety/PreferencesVarietyDialog.py
 variety-0.6.3.orig/variety/PreferencesVarietyDialog.py 2016-11-01 
19:59:39.0 +0100
-+++ variety-0.6.3/variety/PreferencesVarietyDialog.py  2017-01-25 
21:53:29.419376574 +0100
-@@ -32,7 +32,6 @@
- from variety.AddFlickrDialog import AddFlickrDialog
- from variety.AddMediaRssDialog import AddMediaRssDialog
- from variety.AddRedditDialog import AddRedditDialog
--from variety.AddPanoramioDialog import AddPanoramioDialog
- from variety.EditFavoriteOperationsDialog import EditFavoriteOperationsDialog
- from variety.SmartFeaturesConfirmationDialog import 
SmartFeaturesConfirmationDialog
- from variety.LoginOrRegisterDialog import LoginOrRegisterDialog
-@@ -64,7 +63,6 @@
- EDITABLE_TYPES = [
- Options.SourceType.FLICKR,
- Options.SourceType.MEDIA_RSS,
--Options.SourceType.PANORAMIO,
- Options.SourceType.WALLHAVEN,
- Options.SourceType.REDDIT,
- ]
-@@ -381,7 +379,6 @@
- '-',
- (_("Flickr"), self.on_add_flickr_clicked),
- (_("Wallhaven.cc"), self.on_add_wallhaven_clicked),
--(_("Panoramio"), self.on_add_panoramio_clicked),
- (_("Reddit"), self.on_add_reddit_clicked),
- (_("Media RSS"), self.on_add_mediarss_clicked),
- ]
-@@ -672,8 +669,6 @@
- self.dialog = AddRedditDialog()
- elif type == Options.SourceType.MEDIA_RSS:
- self.dialog = AddMediaRssDialog()
--elif type == Options.SourceType.PANORAMIO:
--self.dialog = AddPanoramioDialog()
- 
- self.dialog.set_edited_row(edited_row)
- self.show_dialog(self.dialog)
-@@ -786,9 +781,6 @@
- def on_add_wallhaven_clicked(self, widget=None):
- self.show_dialog(AddWallhavenDialog())
- 
--def on_add_panoramio_clicked(self, widget=None):
--self.show_dialog(AddPanoramioDialog())
--
- def show_dialog(self, dialog):
- self.dialog = dialog
- self.dialog.parent = self


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

2017-09-12 Thread Jan Steffens
Date: Tuesday, September 12, 2017 @ 20:00:35
  Author: heftig
Revision: 305374

3.22.21-1

Modified:
  gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 18:11:43 UTC (rev 305373)
+++ PKGBUILD2017-09-12 20:00:35 UTC (rev 305374)
@@ -4,7 +4,7 @@
 
 pkgbase=gtk3
 pkgname=(gtk3 gtk-update-icon-cache gtk3-print-backends)
-pkgver=3.22.20
+pkgver=3.22.21
 pkgrel=1
 pkgdesc="GObject-based multi-platform GUI toolkit"
 arch=(i686 x86_64)
@@ -16,7 +16,7 @@
 makedepends=(gobject-introspection libcanberra gtk-doc git colord rest libcups 
glib2-docs
  sassc)
 license=(LGPL)
-_commit=dd99aeb4bb6df706bac3e89ee9cb95d17750ef04  # tags/3.22.20^0
+_commit=fad199b4068603b1d822330d98ccfc5f0d761ac5  # tags/3.22.21^0
 source=("git+https://git.gnome.org/browse/gtk+#commit=$_commit;
 settings.ini
 gtk-query-immodules-3.0.hook


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

2017-09-12 Thread Anatol Pomozov
Date: Tuesday, September 12, 2017 @ 19:53:56
  Author: anatolik
Revision: 257176

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

Added:
  wireshark/repos/community-i686/PKGBUILD
(from rev 257175, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-i686/do_not_use_svn_version.patch
(from rev 257175, wireshark/trunk/do_not_use_svn_version.patch)
  wireshark/repos/community-i686/wireshark.install
(from rev 257175, wireshark/trunk/wireshark.install)
  wireshark/repos/community-x86_64/PKGBUILD
(from rev 257175, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-x86_64/do_not_use_svn_version.patch
(from rev 257175, wireshark/trunk/do_not_use_svn_version.patch)
  wireshark/repos/community-x86_64/wireshark.install
(from rev 257175, wireshark/trunk/wireshark.install)
Deleted:
  wireshark/repos/community-i686/PKGBUILD
  wireshark/repos/community-i686/do_not_use_svn_version.patch
  wireshark/repos/community-i686/wireshark.install
  wireshark/repos/community-x86_64/PKGBUILD
  wireshark/repos/community-x86_64/do_not_use_svn_version.patch
  wireshark/repos/community-x86_64/wireshark.install

---+
 /PKGBUILD |  202 
 /do_not_use_svn_version.patch |   26 +++
 /wireshark.install|   20 ++
 community-i686/PKGBUILD   |  101 
 community-i686/do_not_use_svn_version.patch   |   13 -
 community-i686/wireshark.install  |   10 -
 community-x86_64/PKGBUILD |  101 
 community-x86_64/do_not_use_svn_version.patch |   13 -
 community-x86_64/wireshark.install|   10 -
 9 files changed, 248 insertions(+), 248 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-12 19:52:57 UTC (rev 257175)
+++ community-i686/PKGBUILD 2017-09-12 19:53:56 UTC (rev 257176)
@@ -1,101 +0,0 @@
-$Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Guillaume ALAUX 
-# Contributor: Florian Pritz 
-pkgname=('wireshark-cli' 'wireshark-common' 'wireshark-gtk' 'wireshark-qt')
-pkgbase=wireshark
-pkgver=2.4.1
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL2')
-makedepends=('c-ares' 'geoip' 'qt5-tools' 'qt5-multimedia' 'gtk3' 'krb5' 
'libpcap' 'bash' 'libssh'
- 'gnutls' 'portaudio' 'lua52' 'python' 'desktop-file-utils' 
'hicolor-icon-theme')
-options=(!emptydirs)
-url='https://www.wireshark.org/'
-source=(https://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.xz
-do_not_use_svn_version.patch)
-sha256sums=('02ddbcf9b10f9dfa1e36eec00fe00cb5b5ce8e07203843baf056ac7909911fcd'
-'3981bb46f592e319f9c679c5e215ae0af828044a3b64d49d2cf0305ecacf4691')
-
-prepare() {
-  cd ${pkgbase}-${pkgver}
-
-  # Avoid ugly "svn rev unknown from unknown" version string
-  patch -p1 < "$srcdir"/do_not_use_svn_version.patch
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-
-  ./autogen.sh
-  ./configure \
-  --prefix=/usr \
-  --with-qt=5 \
-  --with-gtk=3 \
-  --with-pcap \
-  --with-zlib \
-  --with-lua \
-  --with-portaudio \
-  --with-ssl \
-  --with-krb5 \
-  --with-c-ares \
-  --with-geoip
-  make all
-}
-
-package_wireshark-cli() {
-  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - CLI 
version'
-  depends=('c-ares' 'geoip' 'krb5' 'libgcrypt' 'libcap' 'libpcap' 'gnutls' 
'glib2' 'lua52' 'libssh')
-  install=wireshark.install
-  conflicts=(wireshark)
-
-  cd ${pkgbase}-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-  make DESTDIR="${pkgdir}" uninstall-local
-
-  #wireshark uid group is 150
-  chgrp 150 "${pkgdir}/usr/bin/dumpcap"
-  chmod 754 "${pkgdir}/usr/bin/dumpcap"
-  rm "${pkgdir}/usr/bin/wireshark" "${pkgdir}/usr/bin/wireshark-gtk"
-
-  # Headers
-  install -dm755 
"${pkgdir}"/usr/include/${pkgbase}/{epan/{crypt,dfilter,dissectors,ftypes,wmem},wiretap,wsutil}
-
-  install -m644 config.h register.h ws_diag_control.h ws_symbol_export.h 
"${pkgdir}/usr/include/${pkgbase}"
-  for d in epan epan/crypt epan/dfilter epan/dissectors epan/ftypes epan/wmem 
wiretap wsutil; do
-install -m644 ${d}/*.h "${pkgdir}"/usr/include/${pkgbase}/${d}
-  done
-}
-
-package_wireshark-common() {
-  pkgdesc='Common files used by wireshark-gtk and wireshark-qt'
-  depends=('hicolor-icon-theme' 'shared-mime-info' 'xdg-utils')
-
-  cd ${pkgbase}-${pkgver}
-
-  make DESTDIR="${pkgdir}" install-data-local
-  rm "${pkgdir}"/usr/share/applications/wireshark{,-gtk}.desktop
-}
-
-package_wireshark-gtk() {
-  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - GTK 
frontend'
-  depends=('desktop-file-utils' 'gtk3' 'portaudio' 'wireshark-cli' 
'wireshark-common')
-  replaces=(wireshark)
-  conflicts=(wireshark)
-
-  cd ${pkgbase}-${pkgver}
-
-  install -Dm755 

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

2017-09-12 Thread Anatol Pomozov
Date: Tuesday, September 12, 2017 @ 19:52:57
  Author: anatolik
Revision: 257175

upgpkg: wireshark 2.4.1-2

FS#55595 add missing dependency

Modified:
  wireshark/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 19:47:47 UTC (rev 257174)
+++ PKGBUILD2017-09-12 19:52:57 UTC (rev 257175)
@@ -5,7 +5,7 @@
 pkgname=('wireshark-cli' 'wireshark-common' 'wireshark-gtk' 'wireshark-qt')
 pkgbase=wireshark
 pkgver=2.4.1
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('GPL2')
 makedepends=('c-ares' 'geoip' 'qt5-tools' 'qt5-multimedia' 'gtk3' 'krb5' 
'libpcap' 'bash' 'libssh'
@@ -45,7 +45,7 @@
 
 package_wireshark-cli() {
   pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - CLI 
version'
-  depends=('c-ares' 'geoip' 'krb5' 'libgcrypt' 'libcap' 'libpcap' 'gnutls' 
'glib2' 'lua52' 'libssh')
+  depends=('c-ares' 'geoip' 'krb5' 'libgcrypt' 'libcap' 'libpcap' 'gnutls' 
'glib2' 'lua52' 'libssh' 'libxml2' 'libnghttp2')
   install=wireshark.install
   conflicts=(wireshark)
 


[arch-commits] Commit in (fswebcam)

2017-09-12 Thread Jelle van der Waa
Date: Tuesday, September 12, 2017 @ 19:47:47
  Author: jelle
Revision: 257174

moved to AUR

Deleted:
  fswebcam/


[arch-commits] Commit in intellij-idea-community-edition/repos/community-any (6 files)

2017-09-12 Thread Lukas Jirkovsky
Date: Tuesday, September 12, 2017 @ 19:41:28
  Author: stativ
Revision: 257173

archrelease: copy trunk to community-any

Added:
  intellij-idea-community-edition/repos/community-any/PKGBUILD
(from rev 257172, intellij-idea-community-edition/trunk/PKGBUILD)
  intellij-idea-community-edition/repos/community-any/idea.desktop
(from rev 257172, intellij-idea-community-edition/trunk/idea.desktop)
  intellij-idea-community-edition/repos/community-any/idea.install
(from rev 257172, intellij-idea-community-edition/trunk/idea.install)
Deleted:
  intellij-idea-community-edition/repos/community-any/PKGBUILD
  intellij-idea-community-edition/repos/community-any/idea.desktop
  intellij-idea-community-edition/repos/community-any/idea.install

--+
 PKGBUILD |   88 -
 idea.desktop |   22 +++---
 idea.install |   18 +--
 3 files changed, 64 insertions(+), 64 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-12 19:41:04 UTC (rev 257172)
+++ PKGBUILD2017-09-12 19:41:28 UTC (rev 257173)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky 
-pkgname=intellij-idea-community-edition
-pkgver=2017.2.2
-_pkgver=172.3757.52
-pkgrel=1
-epoch=2
-pkgdesc="IDE for Java, Groovy and other programming languages with advanced 
refactoring features"
-arch=('any')
-url="https://www.jetbrains.com/idea/;
-license=('Apache')
-backup=('usr/share/intellijidea-ce/bin/idea.vmoptions'
-'usr/share/intellijidea-ce/bin/idea64.vmoptions')
-depends=('java-environment' 'giflib' 'libxtst' 'libxft' 'ttf-font'
- 'coreutils' 'grep' 'which')
-conflicts=('intellij-idea-libs')
-replaces=('intellij-idea-libs')
-install=idea.install
-source=("http://download.jetbrains.com/idea/ideaIC-$pkgver-no-jdk.tar.gz;
-idea.desktop)
-sha256sums=('2c85c2b021180fb6b9fa305a04169b0124962c70fabfca818051b7f81525da71'
-'bd37ad47c926941108f624cbe5adbd7fe91d198b15aca63d8a0c0da14c7a76a6')
-
-package() {
-  install -d -m755 "$pkgdir/"usr/share
-  cp -a "idea-IC-$_pkgver" "$pkgdir"/usr/share/intellijidea-ce
-
-  # make sure that all files are owned by root
-  chown -R root:root "$pkgdir/usr/share"
-
-  # never wait on user input when starting idea
-  sed -i '/.*read IGNORE.*/ d' "$pkgdir"/usr/share/intellijidea-ce/bin/idea.sh
-
-  install -d -m755 "$pkgdir"/usr/bin
-  ln -s /usr/share/intellijidea-ce/bin/idea.sh "$pkgdir"/usr/bin/idea.sh
-  install -D -m644 "$srcdir"/idea.desktop 
"$pkgdir"/usr/share/applications/idea.desktop
-  install -D -m644 "$pkgdir"/usr/share/intellijidea-ce/bin/idea.png \
-   "$pkgdir"/usr/share/pixmaps/idea.png
-
-  # workaround FS#40934
-  sed -i 's|lcd|on|'  "$pkgdir"/usr/share/intellijidea-ce/bin/*.vmoptions
-}
-
-# vim:set ts=2 sw=2 et:

Copied: intellij-idea-community-edition/repos/community-any/PKGBUILD (from rev 
257172, intellij-idea-community-edition/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-12 19:41:28 UTC (rev 257173)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+pkgname=intellij-idea-community-edition
+pkgver=2017.2.4
+_pkgver=172.4155.36
+pkgrel=1
+epoch=2
+pkgdesc="IDE for Java, Groovy and other programming languages with advanced 
refactoring features"
+arch=('any')
+url="https://www.jetbrains.com/idea/;
+license=('Apache')
+backup=('usr/share/intellijidea-ce/bin/idea.vmoptions'
+'usr/share/intellijidea-ce/bin/idea64.vmoptions')
+depends=('java-environment' 'giflib' 'libxtst' 'libxft' 'ttf-font'
+ 'coreutils' 'grep' 'which')
+conflicts=('intellij-idea-libs')
+replaces=('intellij-idea-libs')
+install=idea.install
+source=("http://download.jetbrains.com/idea/ideaIC-$pkgver-no-jdk.tar.gz;
+idea.desktop)
+sha256sums=('6440b4fa92794614799f6a3a3da4a84f532721aba7b5460402f741025ef94dc8'
+'bd37ad47c926941108f624cbe5adbd7fe91d198b15aca63d8a0c0da14c7a76a6')
+
+package() {
+  install -d -m755 "$pkgdir/"usr/share
+  cp -a "idea-IC-$_pkgver" "$pkgdir"/usr/share/intellijidea-ce
+
+  # make sure that all files are owned by root
+  chown -R root:root "$pkgdir/usr/share"
+
+  # never wait on user input when starting idea
+  sed -i '/.*read IGNORE.*/ d' "$pkgdir"/usr/share/intellijidea-ce/bin/idea.sh
+
+  install -d -m755 "$pkgdir"/usr/bin
+  ln -s /usr/share/intellijidea-ce/bin/idea.sh "$pkgdir"/usr/bin/idea.sh
+  install -D -m644 "$srcdir"/idea.desktop 
"$pkgdir"/usr/share/applications/idea.desktop
+  install -D -m644 "$pkgdir"/usr/share/intellijidea-ce/bin/idea.png \
+   "$pkgdir"/usr/share/pixmaps/idea.png
+
+  # workaround FS#40934
+  sed -i 's|lcd|on|'  "$pkgdir"/usr/share/intellijidea-ce/bin/*.vmoptions
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: idea.desktop

[arch-commits] Commit in intellij-idea-community-edition/trunk (PKGBUILD)

2017-09-12 Thread Lukas Jirkovsky
Date: Tuesday, September 12, 2017 @ 19:41:04
  Author: stativ
Revision: 257172

upgpkg: intellij-idea-community-edition 2:2017.2.4-1

update to 2017.2.4

Modified:
  intellij-idea-community-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 19:34:50 UTC (rev 257171)
+++ PKGBUILD2017-09-12 19:41:04 UTC (rev 257172)
@@ -1,8 +1,8 @@
 # $Id$
 # Maintainer: Lukas Jirkovsky 
 pkgname=intellij-idea-community-edition
-pkgver=2017.2.2
-_pkgver=172.3757.52
+pkgver=2017.2.4
+_pkgver=172.4155.36
 pkgrel=1
 epoch=2
 pkgdesc="IDE for Java, Groovy and other programming languages with advanced 
refactoring features"
@@ -18,7 +18,7 @@
 install=idea.install
 source=("http://download.jetbrains.com/idea/ideaIC-$pkgver-no-jdk.tar.gz;
 idea.desktop)
-sha256sums=('2c85c2b021180fb6b9fa305a04169b0124962c70fabfca818051b7f81525da71'
+sha256sums=('6440b4fa92794614799f6a3a3da4a84f532721aba7b5460402f741025ef94dc8'
 'bd37ad47c926941108f624cbe5adbd7fe91d198b15aca63d8a0c0da14c7a76a6')
 
 package() {


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

2017-09-12 Thread Jaroslav Lichtblau
Date: Tuesday, September 12, 2017 @ 19:34:29
  Author: jlichtblau
Revision: 257170

upgpkg: emacs-nox 25.3-1 - new upstream release

Modified:
  emacs-nox/trunk/PKGBUILD
  emacs-nox/trunk/emacs-nox.changelog

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 19:23:16 UTC (rev 257169)
+++ PKGBUILD2017-09-12 19:34:29 UTC (rev 257170)
@@ -3,7 +3,7 @@
 # Contributor: Chris Brannon 
 
 pkgname=emacs-nox
-pkgver=25.2
+pkgver=25.3
 pkgrel=1
 pkgdesc="The extensible, customizable, self-documenting real-time display 
editor, without X11 support"
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 changelog=$pkgname.changelog
 source=(ftp://ftp.gnu.org/gnu/emacs/emacs-$pkgver.tar.xz{,.sig})
 validpgpkeys=('28D3BED851FDF3AB57FEF93C233587A47C207910')
-sha256sums=('59b55194c9979987c5e9f1a1a4ab5406714e80ffcfd415cc6b9222413bc073fa'
+sha256sums=('253ac5e7075e594549b83fd9ec116a9dc37294d415e2f21f8ee109829307c00b'
 'SKIP')
 
 build() {

Modified: emacs-nox.changelog
===
--- emacs-nox.changelog 2017-09-12 19:23:16 UTC (rev 257169)
+++ emacs-nox.changelog 2017-09-12 19:34:29 UTC (rev 257170)
@@ -1,3 +1,6 @@
+2017-09-12 Jaroslav Lichtblau 
+   * emacs-nox 25.3-1
+
 2017-04-25 Jaroslav Lichtblau 
* emacs-nox 25.2-1
 


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

2017-09-12 Thread Jaroslav Lichtblau
Date: Tuesday, September 12, 2017 @ 19:34:50
  Author: jlichtblau
Revision: 257171

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

Added:
  emacs-nox/repos/community-i686/PKGBUILD
(from rev 257170, emacs-nox/trunk/PKGBUILD)
  emacs-nox/repos/community-i686/emacs-nox.changelog
(from rev 257170, emacs-nox/trunk/emacs-nox.changelog)
  emacs-nox/repos/community-x86_64/PKGBUILD
(from rev 257170, emacs-nox/trunk/PKGBUILD)
  emacs-nox/repos/community-x86_64/emacs-nox.changelog
(from rev 257170, emacs-nox/trunk/emacs-nox.changelog)
Deleted:
  emacs-nox/repos/community-i686/PKGBUILD
  emacs-nox/repos/community-i686/emacs-nox.changelog
  emacs-nox/repos/community-x86_64/PKGBUILD
  emacs-nox/repos/community-x86_64/emacs-nox.changelog

--+
 /PKGBUILD|   94 +
 /emacs-nox.changelog |  106 +
 community-i686/PKGBUILD  |   47 --
 community-i686/emacs-nox.changelog   |   50 ---
 community-x86_64/PKGBUILD|   47 --
 community-x86_64/emacs-nox.changelog |   50 ---
 6 files changed, 200 insertions(+), 194 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-12 19:34:29 UTC (rev 257170)
+++ community-i686/PKGBUILD 2017-09-12 19:34:50 UTC (rev 257171)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Chris Brannon 
-
-pkgname=emacs-nox
-pkgver=25.2
-pkgrel=1
-pkgdesc="The extensible, customizable, self-documenting real-time display 
editor, without X11 support"
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/emacs/emacs.html;
-license=('GPL3')
-depends=('dbus' 'ncurses' 'perl' 'libxml2' 'glib2' 'gnutls')
-provides=('emacs')
-conflicts=('emacs')
-changelog=$pkgname.changelog
-source=(ftp://ftp.gnu.org/gnu/emacs/emacs-$pkgver.tar.xz{,.sig})
-validpgpkeys=('28D3BED851FDF3AB57FEF93C233587A47C207910')
-sha256sums=('59b55194c9979987c5e9f1a1a4ab5406714e80ffcfd415cc6b9222413bc073fa'
-'SKIP')
-
-build() {
-  cd "${srcdir}"/emacs-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
---localstatedir=/var --without-x --without-sound --with-modules
-  make
-}
-
-package() {
-  cd "${srcdir}"/emacs-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-
-# remove conflict with ctags package
-  mv "${pkgdir}"/usr/bin/{ctags,ctags.emacs}
-  mv "${pkgdir}"/usr/share/man/man1/{ctags.1.gz,ctags.emacs.1}
-
-# fix user/root permissions on usr/share files
-  find "${pkgdir}"/usr/share/emacs/$pkgver -exec chown root.root {} \;
-# remove .desktop file and icons
-  rm -rf "${pkgdir}"/usr/share/{applications,icons}
-# fix perms on /var/games
-  chmod 775 "${pkgdir}"/var/games
-  chmod 775 "${pkgdir}"/var/games/emacs
-  chmod 664 "${pkgdir}"/var/games/emacs/*
-  chown -R root:games "${pkgdir}"/var/games
-}

Copied: emacs-nox/repos/community-i686/PKGBUILD (from rev 257170, 
emacs-nox/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-12 19:34:50 UTC (rev 257171)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Chris Brannon 
+
+pkgname=emacs-nox
+pkgver=25.3
+pkgrel=1
+pkgdesc="The extensible, customizable, self-documenting real-time display 
editor, without X11 support"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/emacs/emacs.html;
+license=('GPL3')
+depends=('dbus' 'ncurses' 'perl' 'libxml2' 'glib2' 'gnutls')
+provides=('emacs')
+conflicts=('emacs')
+changelog=$pkgname.changelog
+source=(ftp://ftp.gnu.org/gnu/emacs/emacs-$pkgver.tar.xz{,.sig})
+validpgpkeys=('28D3BED851FDF3AB57FEF93C233587A47C207910')
+sha256sums=('253ac5e7075e594549b83fd9ec116a9dc37294d415e2f21f8ee109829307c00b'
+'SKIP')
+
+build() {
+  cd "${srcdir}"/emacs-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
+--localstatedir=/var --without-x --without-sound --with-modules
+  make
+}
+
+package() {
+  cd "${srcdir}"/emacs-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+
+# remove conflict with ctags package
+  mv "${pkgdir}"/usr/bin/{ctags,ctags.emacs}
+  mv "${pkgdir}"/usr/share/man/man1/{ctags.1.gz,ctags.emacs.1}
+
+# fix user/root permissions on usr/share files
+  find "${pkgdir}"/usr/share/emacs/$pkgver -exec chown root.root {} \;
+# remove .desktop file and icons
+  rm -rf "${pkgdir}"/usr/share/{applications,icons}
+# fix perms on /var/games
+  chmod 775 "${pkgdir}"/var/games
+  chmod 775 "${pkgdir}"/var/games/emacs
+  chmod 664 "${pkgdir}"/var/games/emacs/*
+  chown -R root:games "${pkgdir}"/var/games
+}

Deleted: community-i686/emacs-nox.changelog

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

2017-09-12 Thread Jerome Leclanche
Date: Tuesday, September 12, 2017 @ 19:23:16
  Author: jleclanche
Revision: 257169

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-12 19:22:59 UTC (rev 257168)
+++ community-i686/PKGBUILD 2017-09-12 19:23:16 UTC (rev 257169)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche 
-
-pkgname=terraform
-pkgver=0.10.2
-pkgrel=1
-pkgdesc="Tool for building, changing, and versioning infrastructure safely and 
efficiently"
-url="http://www.terraform.io/;
-arch=("i686" "x86_64")
-license=("MPL")
-makedepends=("go" "godep" "git" "mercurial")
-conflicts=("terraform-bin")
-_gourl="github.com/hashicorp"
-source=("https://github.com/hashicorp/terraform/archive/v$pkgver.tar.gz;)
-sha256sums=("2a1e4e92b480aaf996fda073503f7bfb4039152cf7d19e5598aca45a00196150")
-
-
-prepare() {
-   mkdir -p "$srcdir/src/$_gourl"
-   rm -rf "${srcdir}/src/$_gourl/$pkgname"
-   mv -f "terraform-$pkgver" "$srcdir/src/$_gourl/$pkgname"
-   msg2 "Fetching dependencies"
-   cd "$srcdir/src/$_gourl/$pkgname"
-   GOPATH="$srcdir" go get -u github.com/mitchellh/gox
-   GOPATH="$srcdir" go get -u golang.org/x/tools/cmd/stringer
-}
-
-
-build() {
-   msg2 "Build program"
-   cd "$srcdir/src/$_gourl/$pkgname"
-   GOPATH="$srcdir" PATH="$srcdir/bin:$PATH" TF_DEV=1 TF_QUICKDEV=1 make 
bin
-}
-
-
-package() {
-   cd "$srcdir/bin"
-   install -Dm755 terraform "$pkgdir/usr/bin/terraform"
-
-   cd "$srcdir/src/$_gourl/$pkgname"
-   # Zsh completion
-   install -D contrib/zsh-completion/_terraform 
"$pkgdir/usr/share/zsh/site-functions/_terraform"
-}

Copied: terraform/repos/community-i686/PKGBUILD (from rev 257168, 
terraform/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-12 19:23:16 UTC (rev 257169)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Jerome Leclanche 
+
+pkgname=terraform
+pkgver=0.10.3
+pkgrel=1
+pkgdesc="Tool for building, changing, and versioning infrastructure safely and 
efficiently"
+url="http://www.terraform.io/;
+arch=("i686" "x86_64")
+license=("MPL")
+makedepends=("go" "godep" "git" "mercurial")
+conflicts=("terraform-bin")
+_gourl="github.com/hashicorp"
+source=("https://github.com/hashicorp/terraform/archive/v$pkgver.tar.gz;)
+sha256sums=("a87fd97649f6ebabac243a85a09dfb0a16dc351fb9bb799fbdf076d35734cc74")
+
+
+prepare() {
+   mkdir -p "$srcdir/src/$_gourl"
+   rm -rf "${srcdir}/src/$_gourl/$pkgname"
+   mv -f "terraform-$pkgver" "$srcdir/src/$_gourl/$pkgname"
+   msg2 "Fetching dependencies"
+   cd "$srcdir/src/$_gourl/$pkgname"
+   GOPATH="$srcdir" go get -u github.com/mitchellh/gox
+   GOPATH="$srcdir" go get -u golang.org/x/tools/cmd/stringer
+}
+
+
+build() {
+   msg2 "Build program"
+   cd "$srcdir/src/$_gourl/$pkgname"
+   GOPATH="$srcdir" PATH="$srcdir/bin:$PATH" TF_DEV=1 TF_QUICKDEV=1 make 
bin
+}
+
+
+package() {
+   cd "$srcdir/bin"
+   install -Dm755 terraform "$pkgdir/usr/bin/terraform"
+
+   cd "$srcdir/src/$_gourl/$pkgname"
+   # Zsh completion
+   install -D contrib/zsh-completion/_terraform 
"$pkgdir/usr/share/zsh/site-functions/_terraform"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-12 19:22:59 UTC (rev 257168)
+++ community-x86_64/PKGBUILD   2017-09-12 19:23:16 UTC (rev 257169)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche 
-
-pkgname=terraform
-pkgver=0.10.2
-pkgrel=1
-pkgdesc="Tool for building, changing, and versioning infrastructure safely and 
efficiently"
-url="http://www.terraform.io/;
-arch=("i686" "x86_64")
-license=("MPL")
-makedepends=("go" "godep" "git" "mercurial")
-conflicts=("terraform-bin")
-_gourl="github.com/hashicorp"
-source=("https://github.com/hashicorp/terraform/archive/v$pkgver.tar.gz;)
-sha256sums=("2a1e4e92b480aaf996fda073503f7bfb4039152cf7d19e5598aca45a00196150")
-
-
-prepare() {
-   mkdir -p "$srcdir/src/$_gourl"
-   rm -rf "${srcdir}/src/$_gourl/$pkgname"
-   mv -f "terraform-$pkgver" "$srcdir/src/$_gourl/$pkgname"
-   msg2 "Fetching 

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

2017-09-12 Thread Jerome Leclanche
Date: Tuesday, September 12, 2017 @ 19:22:59
  Author: jleclanche
Revision: 257168

upgpkg: terraform 0.10.3-1

Upstream release 0.10.3

Modified:
  terraform/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 19:22:05 UTC (rev 257167)
+++ PKGBUILD2017-09-12 19:22:59 UTC (rev 257168)
@@ -2,7 +2,7 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=terraform
-pkgver=0.10.2
+pkgver=0.10.3
 pkgrel=1
 pkgdesc="Tool for building, changing, and versioning infrastructure safely and 
efficiently"
 url="http://www.terraform.io/;
@@ -12,7 +12,7 @@
 conflicts=("terraform-bin")
 _gourl="github.com/hashicorp"
 source=("https://github.com/hashicorp/terraform/archive/v$pkgver.tar.gz;)
-sha256sums=("2a1e4e92b480aaf996fda073503f7bfb4039152cf7d19e5598aca45a00196150")
+sha256sums=("a87fd97649f6ebabac243a85a09dfb0a16dc351fb9bb799fbdf076d35734cc74")
 
 
 prepare() {


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

2017-09-12 Thread Antonio Rojas
Date: Tuesday, September 12, 2017 @ 19:22:05
  Author: arojas
Revision: 257167

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

Added:
  ogre/repos/community-staging-i686/
  ogre/repos/community-staging-i686/PKGBUILD
(from rev 257166, ogre/trunk/PKGBUILD)
  ogre/repos/community-staging-i686/ogre.install
(from rev 257166, ogre/trunk/ogre.install)
  ogre/repos/community-staging-x86_64/
  ogre/repos/community-staging-x86_64/PKGBUILD
(from rev 257166, ogre/trunk/PKGBUILD)
  ogre/repos/community-staging-x86_64/ogre.install
(from rev 257166, ogre/trunk/ogre.install)

---+
 community-staging-i686/PKGBUILD   |   81 
 community-staging-i686/ogre.install   |4 +
 community-staging-x86_64/PKGBUILD |   81 
 community-staging-x86_64/ogre.install |4 +
 4 files changed, 170 insertions(+)

Copied: ogre/repos/community-staging-i686/PKGBUILD (from rev 257166, 
ogre/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-12 19:22:05 UTC (rev 257167)
@@ -0,0 +1,81 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+pkgbase=ogre
+pkgname=('ogre' 'ogre-docs')
+pkgver=1.10.8
+pkgrel=2
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('i686' 'x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('boost-libs' 'freeimage' 'freetype2' 'libxaw' 'libxrandr'
+ 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 
'mercurial' 'python' 'swig' 'systemd')
+install=ogre.install
+source=("hg+http://bitbucket.org/sinbad/ogre#tag=v${pkgver//./-};)
+sha512sums=('SKIP')
+
+build() {
+  cd ogre
+
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_INSTALL_SAMPLES=TRUE \
+-DOGRE_INSTALL_DOCS=TRUE \
+-DOGRE_INSTALL_SAMPLES_SOURCE=TRUE \
+-DOGRE_BUILD_DEPENDENCIES=FALSE \
+-DOGRE_BUILD_COMPONENT_PYTHON=TRUE \
+-DCMAKE_BUILD_TYPE=Release
+
+  make
+  make OgreDoc
+}
+
+package_ogre() {
+  optdepends=('cppunit: unit testing'
+  'intel-tbb: better threading support'
+  'poco: portability'
+  'python: python bindings'
+  'boost: for developing using ogre'
+  'ogre-docs: documentation')
+
+  cd ogre/build
+
+  make DESTDIR=${pkgdir} install
+
+  # fix up samples
+  install -dm775 -o root -g users ${pkgdir}/opt/OGRE/samples/
+  mv ${pkgdir}/usr/share/OGRE/*.cfg ${pkgdir}/opt/OGRE/samples/
+  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/opt/OGRE/samples/
+
+  # make sample launcher
+  echo "#!/bin/bash" > ${pkgdir}/usr/bin/OgreSampleBrowser
+  echo "cd /opt/OGRE/samples && ./SampleBrowser" >> 
${pkgdir}/usr/bin/OgreSampleBrowser
+  chmod +x ${pkgdir}/usr/bin/OgreSampleBrowser
+
+  install -Dm644 ../COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+
+  # move docs out of this package
+  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
+}
+
+package_ogre-docs() {
+  pkgdesc="Documentation for ogre"
+  depends=()
+
+  cd ogre/build
+
+  # move docs into this package
+  install -dm755 ${pkgdir}/usr/share/doc
+  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
+
+  # symlink for docs
+  install -dm755 ${pkgdir}/usr/share/OGRE/
+  cd ${pkgdir}/usr/share
+  ln -s /usr/share/doc/OGRE/ OGRE/docs
+}
+
+# vim:set ts=2 sw=2 et:

Copied: ogre/repos/community-staging-i686/ogre.install (from rev 257166, 
ogre/trunk/ogre.install)
===
--- community-staging-i686/ogre.install (rev 0)
+++ community-staging-i686/ogre.install 2017-09-12 19:22:05 UTC (rev 257167)
@@ -0,0 +1,4 @@
+post_install() {
+echo "To view the OGRE samples just run OgreSampleBrowser or launch"
+echo "it directly in /opt/OGRE/samples/"
+}

Copied: ogre/repos/community-staging-x86_64/PKGBUILD (from rev 257166, 
ogre/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-12 19:22:05 UTC (rev 257167)
@@ -0,0 +1,81 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+pkgbase=ogre
+pkgname=('ogre' 'ogre-docs')
+pkgver=1.10.8
+pkgrel=2
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('i686' 'x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('boost-libs' 'freeimage' 'freetype2' 'libxaw' 'libxrandr'
+ 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 
'mercurial' 'python' 'swig' 'systemd')
+install=ogre.install

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

2017-09-12 Thread Antonio Rojas
Date: Tuesday, September 12, 2017 @ 19:19:17
  Author: arojas
Revision: 257166

boost 1.65 rebuild

Modified:
  ogre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 19:02:18 UTC (rev 257165)
+++ PKGBUILD2017-09-12 19:19:17 UTC (rev 257166)
@@ -3,7 +3,7 @@
 pkgbase=ogre
 pkgname=('ogre' 'ogre-docs')
 pkgver=1.10.8
-pkgrel=1
+pkgrel=2
 pkgdesc='Scene-oriented, flexible 3D engine written in C++'
 arch=('i686' 'x86_64')
 url='http://www.ogre3d.org'
@@ -10,7 +10,7 @@
 license=('custom:MIT')
 depends=('boost-libs' 'freeimage' 'freetype2' 'libxaw' 'libxrandr'
  'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
-makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 
'mercurial' 'python' 'swig')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 
'mercurial' 'python' 'swig' 'systemd')
 install=ogre.install
 source=("hg+http://bitbucket.org/sinbad/ogre#tag=v${pkgver//./-};)
 sha512sums=('SKIP')


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

2017-09-12 Thread Jelle van der Waa
Date: Tuesday, September 12, 2017 @ 19:02:03
  Author: jelle
Revision: 257164

rebuild for key removal

Switch from tag to commit

Modified:
  snapd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-12 18:24:16 UTC (rev 257163)
+++ PKGBUILD2017-09-12 19:02:03 UTC (rev 257164)
@@ -5,7 +5,8 @@
 pkgbase=snapd
 pkgname=(snapd snap-confine)
 pkgver=2.26.1
-pkgrel=1
+pkgrel=2
+_gitcommit=3853be982c99267133d132901df7da0bf850d949
 arch=('i686' 'x86_64')
 url="https://github.com/snapcore/snapd;
 license=('GPL3')
@@ -18,7 +19,7 @@
 
 options=('!strip' 'emptydirs')
 install=snapd.install
-source=("git+https://github.com/snapcore/$pkgname.git#tag=$pkgver;
+source=("git+https://github.com/snapcore/$pkgname.git#commit=$_gitcommit;
 'snapd.sh')
 md5sums=('SKIP'
  '8e9b8108165d5b2ae911de9caefb37ce')


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

2017-09-12 Thread Jelle van der Waa
Date: Tuesday, September 12, 2017 @ 19:02:18
  Author: jelle
Revision: 257165

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

Added:
  snapd/repos/community-i686/PKGBUILD
(from rev 257164, snapd/trunk/PKGBUILD)
  snapd/repos/community-i686/snapd.install
(from rev 257164, snapd/trunk/snapd.install)
  snapd/repos/community-i686/snapd.sh
(from rev 257164, snapd/trunk/snapd.sh)
  snapd/repos/community-x86_64/PKGBUILD
(from rev 257164, snapd/trunk/PKGBUILD)
  snapd/repos/community-x86_64/snapd.install
(from rev 257164, snapd/trunk/snapd.install)
  snapd/repos/community-x86_64/snapd.sh
(from rev 257164, snapd/trunk/snapd.sh)
Deleted:
  snapd/repos/community-i686/PKGBUILD
  snapd/repos/community-i686/snapd.install
  snapd/repos/community-i686/snapd.sh
  snapd/repos/community-x86_64/PKGBUILD
  snapd/repos/community-x86_64/snapd.install
  snapd/repos/community-x86_64/snapd.sh

+
 /PKGBUILD  |  220 +++
 /snapd.install |   30 +
 /snapd.sh  |   20 +++
 community-i686/PKGBUILD|  109 ---
 community-i686/snapd.install   |   15 --
 community-i686/snapd.sh|   10 -
 community-x86_64/PKGBUILD  |  109 ---
 community-x86_64/snapd.install |   15 --
 community-x86_64/snapd.sh  |   10 -
 9 files changed, 270 insertions(+), 268 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-12 19:02:03 UTC (rev 257164)
+++ community-i686/PKGBUILD 2017-09-12 19:02:18 UTC (rev 257165)
@@ -1,109 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Zygmunt Krynicki 
-
-pkgbase=snapd
-pkgname=(snapd snap-confine)
-pkgver=2.26.1
-pkgrel=1
-arch=('i686' 'x86_64')
-url="https://github.com/snapcore/snapd;
-license=('GPL3')
-makedepends=('git' 'go' 'go-tools' 'bzr')
-checkdepends=('python' 'squashfs-tools')
-
-# snap-confine
-makedepends+=('libcap' 'python-docutils' 'systemd' 'xfsprogs')
-checkdepends+=('indent' 'shellcheck')
-
-options=('!strip' 'emptydirs')
-install=snapd.install
-source=("git+https://github.com/snapcore/$pkgname.git#tag=$pkgver;
-'snapd.sh')
-md5sums=('SKIP'
- '8e9b8108165d5b2ae911de9caefb37ce')
-
-_gourl=github.com/snapcore/snapd
-
-prepare() {
-  cd "$pkgname"
-
-  # Use $srcdir/go as our GOPATH
-  export GOPATH="$srcdir/go"
-  mkdir -p "$GOPATH"
-  # Have snapd checkout appear in a place suitable for subsequent GOPATH This
-  # way we don't have to go get it again and it is exactly what the tag/hash
-  # above describes.
-  mkdir -p "$(dirname "$GOPATH/src/${_gourl}")"
-  ln --no-target-directory -fs "$srcdir/$pkgname" "$GOPATH/src/${_gourl}"
-}
-
-build() {
-  export GOPATH="$srcdir/go"
-  # Use get-deps.sh provided by upstream to fetch go dependencies using the
-  # godeps tool and dependencies.tsv (maintained upstream).
-  cd "$GOPATH/src/${_gourl}"
-  XDG_CONFIG_HOME="$srcdir" ./get-deps.sh
-  # Build/install snap and snapd
-  go install "${_gourl}/cmd/snap"
-  go install "${_gourl}/cmd/snapd"
-
-  # Generate the real systemd units out of the available templates
-  make -C data/systemd all
-
-  # Build snap-confine
-  ./mkversion.sh
-  cd cmd
-  autoreconf -i -f
-  ./configure \
---prefix=/usr \
---libexecdir=/usr/lib/snapd \
---with-snap-mount-dir=/var/lib/snapd/snap \
---disable-apparmor \
---enable-nvidia-arch \
---enable-merged-usr
-  make
-}
-
-# FIXME
-check() {
-  return
-  export GOPATH="$srcdir/go"
-  cd "$GOPATH/src/${_gourl}"
-
-  ./run-checks --unit
-  ./run-checks --static
-
-   cd cmd
-   make -k check
-}
-
-package_snapd() {
-  pkgdesc="Service and tools for management of snap packages."
-  depends=('snap-confine' 'squashfs-tools')
-
-  export GOPATH="$srcdir/go"
-  # Ensure that we have /var/lib/snapd/{hostfs,lib/gl}/ as they are required 
by snap-confine
-  # for constructing some bind mounts around.
-  install -d -m 755 "$pkgdir/var/lib/snapd/hostfs/" 
"$pkgdir/var/lib/snapd/lib/gl/"
-  # Install the refresh timer and service for updating snaps
-  install -d -m 755 "$pkgdir/usr/lib/systemd/system/"
-  install -m 644 "$GOPATH/src/${_gourl}/data/systemd/snapd.refresh.service" 
"$pkgdir/usr/lib/systemd/system"
-  install -m 644 "$GOPATH/src/${_gourl}/data/systemd/snapd.refresh.timer" 
"$pkgdir/usr/lib/systemd/system"
-  # Install the snapd socket and service for the main daemon
-  install -m 644 "$GOPATH/src/${_gourl}/data/systemd/snapd.service" 
"$pkgdir/usr/lib/systemd/system"
-  install -m 644 "$GOPATH/src/${_gourl}/data/systemd/snapd.socket" 
"$pkgdir/usr/lib/systemd/system"
-  # Install snap and snapd executables
-  install -d -m 755 "$pkgdir/usr/bin/"
-  install -m 755 "$GOPATH/bin/snap" "$pkgdir/usr/bin/"
-  install -d -m 755 "$pkgdir/usr/lib/snapd"
-  install -m 755 "$GOPATH/bin/snapd" 

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

2017-09-12 Thread Antonio Rojas
Date: Tuesday, September 12, 2017 @ 18:24:16
  Author: arojas
Revision: 257163

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

Added:
  massif-visualizer/repos/community-i686/PKGBUILD
(from rev 257162, massif-visualizer/trunk/PKGBUILD)
  massif-visualizer/repos/community-x86_64/PKGBUILD
(from rev 257162, massif-visualizer/trunk/PKGBUILD)
Deleted:
  massif-visualizer/repos/community-i686/PKGBUILD
  massif-visualizer/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-12 18:23:35 UTC (rev 257162)
+++ community-i686/PKGBUILD 2017-09-12 18:24:16 UTC (rev 257163)
@@ -1,37 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Niels Martignène 
-# Contributor: Matz Radloff 
-
-pkgname=massif-visualizer
-pkgver=0.7.0
-pkgrel=1
-pkgdesc="Visualizer for Valgrind Massif data files"
-arch=(i686 x86_64)
-url="https://www.linux-apps.com/p/1127160/;
-license=(GPL)
-depends=(kparts kdiagram hicolor-icon-theme)
-makedepends=(extra-cmake-modules)
-#optdepends=('kgraphviewer: call graph tab')
-source=("https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('f8a4cc23c80a259a9edac989e957c48ed308cf9da9caeef19eec3ffb52361f6d'
-'SKIP')
-validpgpkeys=(2D1D5B0588357787DE9EE225EC94D18F7F05997E) # Jonathan Riddell 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-
-  make DESTDIR="$pkgdir" install
-}

Copied: massif-visualizer/repos/community-i686/PKGBUILD (from rev 257162, 
massif-visualizer/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-12 18:24:16 UTC (rev 257163)
@@ -0,0 +1,37 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Niels Martignène 
+# Contributor: Matz Radloff 
+
+pkgname=massif-visualizer
+pkgver=0.7.0
+pkgrel=2
+pkgdesc="Visualizer for Valgrind Massif data files"
+arch=(i686 x86_64)
+url="https://www.linux-apps.com/p/1127160/;
+license=(GPL)
+depends=(kparts kdiagram hicolor-icon-theme)
+makedepends=(extra-cmake-modules kgraphviewer)
+optdepends=('kgraphviewer: call graph tab')
+source=("https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('f8a4cc23c80a259a9edac989e957c48ed308cf9da9caeef19eec3ffb52361f6d'
+'SKIP')
+validpgpkeys=(2D1D5B0588357787DE9EE225EC94D18F7F05997E) # Jonathan Riddell 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-12 18:23:35 UTC (rev 257162)
+++ community-x86_64/PKGBUILD   2017-09-12 18:24:16 UTC (rev 257163)
@@ -1,37 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Niels Martignène 
-# Contributor: Matz Radloff 
-
-pkgname=massif-visualizer
-pkgver=0.7.0
-pkgrel=1
-pkgdesc="Visualizer for Valgrind Massif data files"
-arch=(i686 x86_64)
-url="https://www.linux-apps.com/p/1127160/;
-license=(GPL)
-depends=(kparts kdiagram hicolor-icon-theme)
-makedepends=(extra-cmake-modules)
-#optdepends=('kgraphviewer: call graph tab')
-source=("https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('f8a4cc23c80a259a9edac989e957c48ed308cf9da9caeef19eec3ffb52361f6d'
-'SKIP')
-validpgpkeys=(2D1D5B0588357787DE9EE225EC94D18F7F05997E) # Jonathan Riddell 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-
-  make DESTDIR="$pkgdir" install
-}

Copied: massif-visualizer/repos/community-x86_64/PKGBUILD (from rev 257162, 
massif-visualizer/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-12 18:24:16 UTC (rev 257163)
@@ -0,0 +1,37 @@
+# 

  1   2   >