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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 05:52:44
  Author: felixonmars
Revision: 216377

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

Added:
  haskell-monad-journal/repos/community-staging-i686/
  haskell-monad-journal/repos/community-staging-i686/PKGBUILD
(from rev 216376, haskell-monad-journal/trunk/PKGBUILD)
  haskell-monad-journal/repos/community-staging-x86_64/
  haskell-monad-journal/repos/community-staging-x86_64/PKGBUILD
(from rev 216376, haskell-monad-journal/trunk/PKGBUILD)

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

Copied: haskell-monad-journal/repos/community-staging-i686/PKGBUILD (from rev 
216376, haskell-monad-journal/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-15 05:52:44 UTC (rev 216377)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=monad-journal
+pkgname=haskell-monad-journal
+pkgver=0.7.2
+pkgrel=13
+pkgdesc="Pure logger typeclass and monad transformer"
+url="http://github.com/phaazon/monad-journal;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-either" "haskell-monad-control" "haskell-mtl"
+ "haskell-transformers-base")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('72b1a676bd994198544c4861a05b1d1b4f7ae55ea35a837cace539b8d6c69d08')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-monad-journal/repos/community-staging-x86_64/PKGBUILD (from rev 
216376, haskell-monad-journal/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-15 05:52:44 UTC (rev 216377)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=monad-journal
+pkgname=haskell-monad-journal
+pkgver=0.7.2
+pkgrel=13
+pkgdesc="Pure logger typeclass and monad transformer"
+url="http://github.com/phaazon/monad-journal;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-either" "haskell-monad-control" "haskell-mtl"
+ "haskell-transformers-base")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('72b1a676bd994198544c4861a05b1d1b4f7ae55ea35a837cace539b8d6c69d08')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"

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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 05:52:21
  Author: felixonmars
Revision: 216376

upgpkg: haskell-monad-journal 0.7.2-13

rebuild with MonadRandom,0.5.1

Modified:
  haskell-monad-journal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-15 05:50:43 UTC (rev 216375)
+++ PKGBUILD2017-03-15 05:52:21 UTC (rev 216376)
@@ -5,7 +5,7 @@
 _hkgname=monad-journal
 pkgname=haskell-monad-journal
 pkgver=0.7.2
-pkgrel=12
+pkgrel=13
 pkgdesc="Pure logger typeclass and monad transformer"
 url="http://github.com/phaazon/monad-journal;
 license=("custom:BSD3")


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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 05:50:43
  Author: felixonmars
Revision: 216375

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

Added:
  haskell-hasql-transaction/repos/community-staging-i686/
  haskell-hasql-transaction/repos/community-staging-i686/PKGBUILD
(from rev 216374, haskell-hasql-transaction/trunk/PKGBUILD)
  haskell-hasql-transaction/repos/community-staging-x86_64/
  haskell-hasql-transaction/repos/community-staging-x86_64/PKGBUILD
(from rev 216374, haskell-hasql-transaction/trunk/PKGBUILD)

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

Copied: haskell-hasql-transaction/repos/community-staging-i686/PKGBUILD (from 
rev 216374, haskell-hasql-transaction/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-15 05:50:43 UTC (rev 216375)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=hasql-transaction
+pkgname=haskell-hasql-transaction
+pkgver=0.5
+pkgrel=3
+pkgdesc="A composable abstraction over the retryable transactions for Hasql"
+url="https://github.com/nikita-volkov/hasql-transaction;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-base-prelude' 'haskell-bytestring-tree-builder'
+ 'haskell-contravariant' 'haskell-contravariant-extras' 
'haskell-hasql' 'haskell-mtl')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('ed40b30813c53012e492e286744c9609')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-hasql-transaction/repos/community-staging-x86_64/PKGBUILD (from 
rev 216374, haskell-hasql-transaction/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-15 05:50:43 UTC (rev 216375)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=hasql-transaction
+pkgname=haskell-hasql-transaction
+pkgver=0.5
+pkgrel=3
+pkgdesc="A composable abstraction over the retryable transactions for Hasql"
+url="https://github.com/nikita-volkov/hasql-transaction;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-base-prelude' 'haskell-bytestring-tree-builder'
+ 'haskell-contravariant' 'haskell-contravariant-extras' 
'haskell-hasql' 'haskell-mtl')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('ed40b30813c53012e492e286744c9609')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy 

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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 05:50:20
  Author: felixonmars
Revision: 216374

upgpkg: haskell-hasql-transaction 0.5-3

rebuild with MonadRandom,0.5.1

Modified:
  haskell-hasql-transaction/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-15 05:48:26 UTC (rev 216373)
+++ PKGBUILD2017-03-15 05:50:20 UTC (rev 216374)
@@ -4,7 +4,7 @@
 _hkgname=hasql-transaction
 pkgname=haskell-hasql-transaction
 pkgver=0.5
-pkgrel=2
+pkgrel=3
 pkgdesc="A composable abstraction over the retryable transactions for Hasql"
 url="https://github.com/nikita-volkov/hasql-transaction;
 license=('MIT')


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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 05:48:00
  Author: felixonmars
Revision: 216372

upgpkg: haskell-hasql-pool 0.4.1-21

rebuild with MonadRandom,0.5.1

Modified:
  haskell-hasql-pool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-15 05:46:06 UTC (rev 216371)
+++ PKGBUILD2017-03-15 05:48:00 UTC (rev 216372)
@@ -5,7 +5,7 @@
 _hkgname=hasql-pool
 pkgname=haskell-hasql-pool
 pkgver=0.4.1
-pkgrel=20
+pkgrel=21
 pkgdesc="A pool of connections for Hasql"
 url="https://github.com/nikita-volkov/hasql-pool;
 license=('MIT')


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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 05:48:26
  Author: felixonmars
Revision: 216373

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

Added:
  haskell-hasql-pool/repos/community-staging-i686/
  haskell-hasql-pool/repos/community-staging-i686/PKGBUILD
(from rev 216372, haskell-hasql-pool/trunk/PKGBUILD)
  haskell-hasql-pool/repos/community-staging-x86_64/
  haskell-hasql-pool/repos/community-staging-x86_64/PKGBUILD
(from rev 216372, haskell-hasql-pool/trunk/PKGBUILD)

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

Copied: haskell-hasql-pool/repos/community-staging-i686/PKGBUILD (from rev 
216372, haskell-hasql-pool/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-15 05:48:26 UTC (rev 216373)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=hasql-pool
+pkgname=haskell-hasql-pool
+pkgver=0.4.1
+pkgrel=21
+pkgdesc="A pool of connections for Hasql"
+url="https://github.com/nikita-volkov/hasql-pool;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-base-prelude' 'haskell-hasql' 
'haskell-resource-pool')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('c0fcb158ccfc72f1101d9a9289ade442')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-hasql-pool/repos/community-staging-x86_64/PKGBUILD (from rev 
216372, haskell-hasql-pool/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-15 05:48:26 UTC (rev 216373)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=hasql-pool
+pkgname=haskell-hasql-pool
+pkgver=0.4.1
+pkgrel=21
+pkgdesc="A pool of connections for Hasql"
+url="https://github.com/nikita-volkov/hasql-pool;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-base-prelude' 'haskell-hasql' 
'haskell-resource-pool')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('c0fcb158ccfc72f1101d9a9289ade442')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 05:46:06
  Author: felixonmars
Revision: 216371

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

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

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

Copied: haskell-hasql/repos/community-staging-i686/PKGBUILD (from rev 216370, 
haskell-hasql/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-15 05:46:06 UTC (rev 216371)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=hasql
+pkgname=haskell-hasql
+pkgver=0.19.16
+pkgrel=6
+pkgdesc="An efficient PostgreSQL driver and a flexible mapping API"
+url="https://github.com/nikita-volkov/hasql;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-base-prelude'
+ 'haskell-bytestring-tree-builder' 'haskell-contravariant' 
'haskell-contravariant-extras'
+ 'haskell-data-default-class' 'haskell-dlist' 'haskell-either' 
'haskell-hashable'
+ 'haskell-hashtables' 'haskell-loch-th' 'haskell-mtl' 
'haskell-placeholders'
+ 'haskell-postgresql-binary' 'haskell-postgresql-libpq' 
'haskell-profunctors'
+ 'haskell-scientific' 'haskell-semigroups' 'haskell-text' 
'haskell-uuid' 'haskell-vector')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('2fc8daab5aa053898743c0b2c1ae18a8')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-hasql/repos/community-staging-x86_64/PKGBUILD (from rev 216370, 
haskell-hasql/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-15 05:46:06 UTC (rev 216371)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=hasql
+pkgname=haskell-hasql
+pkgver=0.19.16
+pkgrel=6
+pkgdesc="An efficient PostgreSQL driver and a flexible mapping API"
+url="https://github.com/nikita-volkov/hasql;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-base-prelude'
+ 'haskell-bytestring-tree-builder' 'haskell-contravariant' 
'haskell-contravariant-extras'
+ 'haskell-data-default-class' 'haskell-dlist' 'haskell-either' 
'haskell-hashable'
+ 'haskell-hashtables' 'haskell-loch-th' 'haskell-mtl' 
'haskell-placeholders'
+ 'haskell-postgresql-binary' 'haskell-postgresql-libpq' 
'haskell-profunctors'
+ 'haskell-scientific' 'haskell-semigroups' 'haskell-text' 
'haskell-uuid' 'haskell-vector')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('2fc8daab5aa053898743c0b2c1ae18a8')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell 

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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 05:45:42
  Author: felixonmars
Revision: 216370

upgpkg: haskell-hasql 0.19.16-6

rebuild with MonadRandom,0.5.1

Modified:
  haskell-hasql/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-15 05:41:55 UTC (rev 216369)
+++ PKGBUILD2017-03-15 05:45:42 UTC (rev 216370)
@@ -5,7 +5,7 @@
 _hkgname=hasql
 pkgname=haskell-hasql
 pkgver=0.19.16
-pkgrel=5
+pkgrel=6
 pkgdesc="An efficient PostgreSQL driver and a flexible mapping API"
 url="https://github.com/nikita-volkov/hasql;
 license=('MIT')


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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 05:41:55
  Author: felixonmars
Revision: 216369

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

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

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

Copied: cgrep/repos/community-staging-i686/PKGBUILD (from rev 216368, 
cgrep/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-15 05:41:55 UTC (rev 216369)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=cgrep
+pkgver=6.6.16
+pkgrel=20
+pkgdesc="A context-aware grep for source codes"
+url="http://awgn.github.io/cgrep/;
+license=("GPL2")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi' 'pcre')
+makedepends=("ghc=8.0.1" "haskell-ansi-terminal" "haskell-async" 
"haskell-cmdargs" "haskell-dlist"
+ "haskell-either" "haskell-mtl" "haskell-regex-base" 
"haskell-regex-pcre"
+ "haskell-regex-posix" "haskell-safe" "haskell-split" "haskell-stm"
+ "haskell-stringsearch" "haskell-unix-compat" 
"haskell-unicode-show"
+ "haskell-unordered-containers" "haskell-utf8-string")
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('7161e331f409ee95abfab14f720ad300ce4c9bd37a9fae74de6643c0f30b134b')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/${pkgname}"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+}

Copied: cgrep/repos/community-staging-x86_64/PKGBUILD (from rev 216368, 
cgrep/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-15 05:41:55 UTC (rev 216369)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=cgrep
+pkgver=6.6.16
+pkgrel=20
+pkgdesc="A context-aware grep for source codes"
+url="http://awgn.github.io/cgrep/;
+license=("GPL2")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi' 'pcre')
+makedepends=("ghc=8.0.1" "haskell-ansi-terminal" "haskell-async" 
"haskell-cmdargs" "haskell-dlist"
+ "haskell-either" "haskell-mtl" "haskell-regex-base" 
"haskell-regex-pcre"
+ "haskell-regex-posix" "haskell-safe" "haskell-split" "haskell-stm"
+ "haskell-stringsearch" "haskell-unix-compat" 
"haskell-unicode-show"
+ "haskell-unordered-containers" "haskell-utf8-string")
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('7161e331f409ee95abfab14f720ad300ce4c9bd37a9fae74de6643c0f30b134b')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/${pkgname}"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+}


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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 05:41:31
  Author: felixonmars
Revision: 216368

upgpkg: cgrep 6.6.16-20

rebuild with MonadRandom,0.5.1

Modified:
  cgrep/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-15 05:39:27 UTC (rev 216367)
+++ PKGBUILD2017-03-15 05:41:31 UTC (rev 216368)
@@ -4,7 +4,7 @@
 
 pkgname=cgrep
 pkgver=6.6.16
-pkgrel=19
+pkgrel=20
 pkgdesc="A context-aware grep for source codes"
 url="http://awgn.github.io/cgrep/;
 license=("GPL2")


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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 05:39:27
  Author: felixonmars
Revision: 216367

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

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

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

Copied: haskell-either/repos/community-staging-i686/PKGBUILD (from rev 216366, 
haskell-either/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-15 05:39:27 UTC (rev 216367)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=either
+pkgname=haskell-either
+pkgver=4.4.1.1
+pkgrel=13
+pkgdesc="An either monad transformer"
+url="http://github.com/ekmett/either/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-bifunctors" "haskell-exceptions" "haskell-free"
+ "haskell-mmorph" "haskell-monad-control" "haskell-monadrandom"
+ "haskell-mtl" "haskell-profunctors" "haskell-semigroupoids"
+ "haskell-semigroups" "haskell-transformers-base")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('b087cb0fb63fec2fbdcac05fef0d03751daef5deb86cda3c732b9a6a31e634d3')
+
+prepare() {
+sed -i 's/MonadRandom   >= 0.1 && < 0.5,/MonadRandom   >= 0.1  
   \&\& < 0.6,/' ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-either/repos/community-staging-x86_64/PKGBUILD (from rev 
216366, haskell-either/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-15 05:39:27 UTC (rev 216367)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=either
+pkgname=haskell-either
+pkgver=4.4.1.1
+pkgrel=13
+pkgdesc="An either monad transformer"
+url="http://github.com/ekmett/either/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-bifunctors" "haskell-exceptions" "haskell-free"
+ "haskell-mmorph" "haskell-monad-control" "haskell-monadrandom"
+ "haskell-mtl" "haskell-profunctors" "haskell-semigroupoids"
+ "haskell-semigroups" "haskell-transformers-base")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('b087cb0fb63fec2fbdcac05fef0d03751daef5deb86cda3c732b9a6a31e634d3')
+
+prepare() {
+sed -i 's/MonadRandom   >= 0.1 && < 0.5,/MonadRandom   >= 0.1  
   \&\& < 0.6,/' ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* 

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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 05:39:03
  Author: felixonmars
Revision: 216366

upgpkg: haskell-either 4.4.1.1-13

rebuild with MonadRandom,0.5.1

Modified:
  haskell-either/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-15 03:48:10 UTC (rev 216365)
+++ PKGBUILD2017-03-15 05:39:03 UTC (rev 216366)
@@ -5,7 +5,7 @@
 _hkgname=either
 pkgname=haskell-either
 pkgver=4.4.1.1
-pkgrel=12
+pkgrel=13
 pkgdesc="An either monad transformer"
 url="http://github.com/ekmett/either/;
 license=("custom:BSD3")
@@ -17,9 +17,13 @@
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
 sha256sums=('b087cb0fb63fec2fbdcac05fef0d03751daef5deb86cda3c732b9a6a31e634d3')
 
+prepare() {
+sed -i 's/MonadRandom   >= 0.1 && < 0.5,/MonadRandom   >= 0.1  
   \&\& < 0.6,/' ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"
-
+
 runhaskell Setup configure -O --enable-library-profiling --enable-shared \
 --prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
 --libsubdir=\$compiler/site-local/\$pkgid
@@ -33,7 +37,7 @@
 
 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"
 install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"


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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 03:48:10
  Author: felixonmars
Revision: 216365

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

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

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

Copied: haskell-monadrandom/repos/community-staging-i686/PKGBUILD (from rev 
216364, haskell-monadrandom/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-15 03:48:10 UTC (rev 216365)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=MonadRandom
+pkgname=haskell-monadrandom
+pkgver=0.5.1
+pkgrel=1
+pkgdesc="Random-number generation monad."
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-mtl" "haskell-primitive" "haskell-random"
+ "haskell-transformers-compat")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('9e3f0f92807285302036dc504066ae6d968c8b0b4c25d9360888f31fe1730d87')
+
+prepare() {
+sed -i '/fail/d' ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-monadrandom/repos/community-staging-x86_64/PKGBUILD (from rev 
216364, haskell-monadrandom/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-15 03:48:10 UTC (rev 216365)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=MonadRandom
+pkgname=haskell-monadrandom
+pkgver=0.5.1
+pkgrel=1
+pkgdesc="Random-number generation monad."
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-mtl" "haskell-primitive" "haskell-random"
+ "haskell-transformers-compat")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('9e3f0f92807285302036dc504066ae6d968c8b0b4c25d9360888f31fe1730d87')
+
+prepare() {
+sed -i '/fail/d' ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 

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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 03:47:48
  Author: felixonmars
Revision: 216364

upgpkg: haskell-monadrandom 0.5.1-1

rebuild with MonadRandom,0.5.1

Modified:
  haskell-monadrandom/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-15 03:45:33 UTC (rev 216363)
+++ PKGBUILD2017-03-15 03:47:48 UTC (rev 216364)
@@ -4,19 +4,24 @@
 
 _hkgname=MonadRandom
 pkgname=haskell-monadrandom
-pkgver=0.4.2.3
-pkgrel=2
+pkgver=0.5.1
+pkgrel=1
 pkgdesc="Random-number generation monad."
-url="http://hackage.haskell.org/package/${_hkgname};
+url="https://hackage.haskell.org/package/${_hkgname};
 license=("custom")
 arch=('i686' 'x86_64')
-depends=("ghc=8.0.1" "haskell-mtl" "haskell-random" 
"haskell-transformers-compat")
-source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha256sums=('de40b12a70ec6425a9e54b33e2ac652e14d7c005a3b46d701d1e5696b98636c0')
+depends=("ghc=8.0.1" "haskell-mtl" "haskell-primitive" "haskell-random"
+ "haskell-transformers-compat")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('9e3f0f92807285302036dc504066ae6d968c8b0b4c25d9360888f31fe1730d87')
 
+prepare() {
+sed -i '/fail/d' ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"
-
+
 runhaskell Setup configure -O --enable-library-profiling --enable-shared \
 --prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
 --libsubdir=\$compiler/site-local/\$pkgid
@@ -30,7 +35,7 @@
 
 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"
 install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"


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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 03:45:33
  Author: felixonmars
Revision: 216363

enable twisted tests

Modified:
  python-pytest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-15 03:25:02 UTC (rev 216362)
+++ PKGBUILD2017-03-15 03:45:33 UTC (rev 216363)
@@ -14,7 +14,7 @@
  'python-pluggy' 'python2-pluggy')
 checkdepends=('lsof' 'python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-tox'
   'python2-tox' 'python-yaml' 'python2-yaml' # 'python-pexpect' 
'python2-pexpect'
-  'python-pytest-xdist' 'python2-pytest-xdist' # 'python-twisted' 
'python2-twisted'
+  'python-pytest-xdist' 'python2-pytest-xdist' 'python-twisted' 
'python2-twisted'
   'python-requests' 'python2-requests' 'python-hypothesis' 
'python2-hypothesis')
 source=("git+https://github.com/pytest-dev/pytest.git#tag=$pkgver;)
 sha512sums=('SKIP')


[arch-commits] Commit in perl-xml-libxml/repos (8 files)

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 03:36:02
  Author: felixonmars
Revision: 290850

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

Added:
  perl-xml-libxml/repos/extra-i686/PKGBUILD
(from rev 290849, perl-xml-libxml/trunk/PKGBUILD)
  perl-xml-libxml/repos/extra-i686/perl-xml-libxml.install
(from rev 290849, perl-xml-libxml/trunk/perl-xml-libxml.install)
  perl-xml-libxml/repos/extra-x86_64/PKGBUILD
(from rev 290849, perl-xml-libxml/trunk/PKGBUILD)
  perl-xml-libxml/repos/extra-x86_64/perl-xml-libxml.install
(from rev 290849, perl-xml-libxml/trunk/perl-xml-libxml.install)
Deleted:
  perl-xml-libxml/repos/extra-i686/PKGBUILD
  perl-xml-libxml/repos/extra-i686/perl-xml-libxml.install
  perl-xml-libxml/repos/extra-x86_64/PKGBUILD
  perl-xml-libxml/repos/extra-x86_64/perl-xml-libxml.install

--+
 /PKGBUILD|   88 +
 /perl-xml-libxml.install |   46 +
 extra-i686/PKGBUILD  |   44 
 extra-i686/perl-xml-libxml.install   |   23 
 extra-x86_64/PKGBUILD|   44 
 extra-x86_64/perl-xml-libxml.install |   23 
 6 files changed, 134 insertions(+), 134 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-03-15 03:35:32 UTC (rev 290849)
+++ extra-i686/PKGBUILD 2017-03-15 03:36:02 UTC (rev 290850)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Jonathan Steel 
-# Contributor: Justin "juster" Davis 
-# Contributor: François Charette 
-
-pkgname=perl-xml-libxml
-pkgver=2.0128
-pkgrel=1
-pkgdesc="Interface to the libxml library"
-arch=('i686' 'x86_64')
-url="http://search.cpan.org/dist/XML-LibXML;
-license=('GPL')
-depends=('libxml2' 'perl-xml-sax' 'perl-xml-namespacesupport')
-checkdepends=('perl-test-pod' 'perl-test-leaktrace' 'perl-cpan-changes' 
'perl-uri')
-provides=('perl-libxml' 'perl-xml-libxml-common')
-replaces=('perl-libxml' 'perl-xml-libxml-common')
-options=('!emptydirs')
-install=perl-xml-libxml.install
-source=(http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXML-$pkgver.tar.gz)
-md5sums=('9904690371679e082ff2c23677b6c90e')
-
-build() {
-  cd "$srcdir"/XML-LibXML-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd "$srcdir"/XML-LibXML-$pkgver
-  make test
-}
-
-package() {
-  cd "$srcdir"/XML-LibXML-$pkgver
-  make pure_install doc_install DESTDIR="$pkgdir"/
-# template start; name=perl-binary-module-dependency; version=1;
-if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
-   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
-   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
-   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
-fi
-# template end;
-}

Copied: perl-xml-libxml/repos/extra-i686/PKGBUILD (from rev 290849, 
perl-xml-libxml/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-03-15 03:36:02 UTC (rev 290850)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Jonathan Steel 
+# Contributor: Justin "juster" Davis 
+# Contributor: François Charette 
+
+pkgname=perl-xml-libxml
+pkgver=2.0129
+pkgrel=1
+pkgdesc="Interface to the libxml library"
+arch=('i686' 'x86_64')
+url="http://search.cpan.org/dist/XML-LibXML;
+license=('GPL')
+depends=('libxml2' 'perl-xml-sax' 'perl-xml-namespacesupport')
+checkdepends=('perl-test-pod' 'perl-test-leaktrace' 'perl-cpan-changes' 
'perl-uri')
+provides=('perl-libxml' 'perl-xml-libxml-common')
+replaces=('perl-libxml' 'perl-xml-libxml-common')
+options=('!emptydirs')
+install=perl-xml-libxml.install
+source=(http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXML-$pkgver.tar.gz)
+md5sums=('5806b69d54a2d7884b8d22b395888436')
+
+build() {
+  cd "$srcdir"/XML-LibXML-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd "$srcdir"/XML-LibXML-$pkgver
+  make test
+}
+
+package() {
+  cd "$srcdir"/XML-LibXML-$pkgver
+  make pure_install doc_install DESTDIR="$pkgdir"/
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
+   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
+   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
+   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
+fi
+# template end;
+}

Deleted: extra-i686/perl-xml-libxml.install
===
--- extra-i686/perl-xml-libxml.install  2017-03-15 03:35:32 UTC (rev 290849)
+++ 

[arch-commits] Commit in perl-xml-libxml/trunk (PKGBUILD)

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 03:35:32
  Author: felixonmars
Revision: 290849

upgpkg: perl-xml-libxml 2.0129-1

Modified:
  perl-xml-libxml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 22:20:24 UTC (rev 290848)
+++ PKGBUILD2017-03-15 03:35:32 UTC (rev 290849)
@@ -5,7 +5,7 @@
 # Contributor: François Charette 
 
 pkgname=perl-xml-libxml
-pkgver=2.0128
+pkgver=2.0129
 pkgrel=1
 pkgdesc="Interface to the libxml library"
 arch=('i686' 'x86_64')
@@ -18,7 +18,7 @@
 options=('!emptydirs')
 install=perl-xml-libxml.install
 source=(http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXML-$pkgver.tar.gz)
-md5sums=('9904690371679e082ff2c23677b6c90e')
+md5sums=('5806b69d54a2d7884b8d22b395888436')
 
 build() {
   cd "$srcdir"/XML-LibXML-$pkgver


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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 03:25:02
  Author: felixonmars
Revision: 216362

archrelease: copy trunk to community-any

Added:
  python2-monotonic/repos/community-any/PKGBUILD
(from rev 216361, python2-monotonic/trunk/PKGBUILD)
Deleted:
  python2-monotonic/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-15 03:24:45 UTC (rev 216361)
+++ PKGBUILD2017-03-15 03:25:02 UTC (rev 216362)
@@ -1,21 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=python2-monotonic
-pkgver=1.2
-pkgrel=1
-pkgdesc="An implementation of time.monotonic() for Python 2 & < 3.3"
-arch=('any')
-url='http://pypi.python.org/pypi/monotonic'
-license=('Apache')
-depends=('python2')
-makedepends=('python2-setuptools' 'git')
-source=("git+https://github.com/atdt/monotonic#tag=$pkgver;)
-sha256sums=('SKIP')
-
-package() {
-  cd monotonic
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}
-
-# vim: ts=2 sw=2 et:

Copied: python2-monotonic/repos/community-any/PKGBUILD (from rev 216361, 
python2-monotonic/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-15 03:25:02 UTC (rev 216362)
@@ -0,0 +1,21 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=python2-monotonic
+pkgver=1.3
+pkgrel=1
+pkgdesc="An implementation of time.monotonic() for Python 2 & < 3.3"
+arch=('any')
+url='http://pypi.python.org/pypi/monotonic'
+license=('Apache')
+depends=('python2')
+makedepends=('python2-setuptools' 'git')
+source=("git+https://github.com/atdt/monotonic#tag=$pkgver;)
+sha256sums=('SKIP')
+
+package() {
+  cd monotonic
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim: ts=2 sw=2 et:


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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 03:24:45
  Author: felixonmars
Revision: 216361

upgpkg: python2-monotonic 1.3-1

Modified:
  python2-monotonic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-15 03:24:25 UTC (rev 216360)
+++ PKGBUILD2017-03-15 03:24:45 UTC (rev 216361)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python2-monotonic
-pkgver=1.2
+pkgver=1.3
 pkgrel=1
 pkgdesc="An implementation of time.monotonic() for Python 2 & < 3.3"
 arch=('any')


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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 03:24:25
  Author: felixonmars
Revision: 216360

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  126 ++---
 1 file changed, 63 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-15 03:24:08 UTC (rev 216359)
+++ PKGBUILD2017-03-15 03:24:25 UTC (rev 216360)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Felix Kaiser 
-
-pkgbase=python-pytest
-pkgname=('python-pytest' 'python2-pytest')
-pkgver=3.0.6
-pkgrel=1
-pkgdesc="Simple powerful testing with Python"
-arch=('any')
-license=('MIT')
-url="http://pytest.org/;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-py' 'python2-py' 
'git'
- 'python-pluggy' 'python2-pluggy')
-checkdepends=('lsof' 'python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-tox'
-  'python2-tox' 'python-yaml' 'python2-yaml' # 'python-pexpect' 
'python2-pexpect'
-  'python-pytest-xdist' 'python2-pytest-xdist' # 'python-twisted' 
'python2-twisted'
-  'python-requests' 'python2-requests' 'python-hypothesis' 
'python2-hypothesis')
-source=("git+https://github.com/pytest-dev/pytest.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  # Remove bundled pluggy - disabled for now as it will break tests
-  # rm -r pytest/_pytest/vendored_packages
-  # sed -i "s/'_pytest.vendored_packages'//" pytest/setup.py
-
-  cp -a pytest{,-py2}
-}
-
-build() {
-  cd "$srcdir"/pytest
-  python setup.py build
-
-  cd "$srcdir"/pytest-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/pytest
-  python setup.py test
-
-  cd "$srcdir"/pytest-py2
-  python2 setup.py test
-}
-
-package_python-pytest() {
-  depends=('python-py' 'python-setuptools') # 'python-pluggy')
-
-  cd pytest
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-pytest() {
-  depends=('python2-py' 'python2-setuptools') # 'python2-pluggy')
-
-  cd pytest-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  mv "$pkgdir"/usr/bin/py.test{,2}
-  mv "$pkgdir"/usr/bin/pytest{,2}
-}

Copied: python-pytest/repos/community-any/PKGBUILD (from rev 216359, 
python-pytest/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-15 03:24:25 UTC (rev 216360)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Felix Kaiser 
+
+pkgbase=python-pytest
+pkgname=('python-pytest' 'python2-pytest')
+pkgver=3.0.7
+pkgrel=1
+pkgdesc="Simple powerful testing with Python"
+arch=('any')
+license=('MIT')
+url="http://pytest.org/;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-py' 'python2-py' 
'git'
+ 'python-pluggy' 'python2-pluggy')
+checkdepends=('lsof' 'python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-tox'
+  'python2-tox' 'python-yaml' 'python2-yaml' # 'python-pexpect' 
'python2-pexpect'
+  'python-pytest-xdist' 'python2-pytest-xdist' # 'python-twisted' 
'python2-twisted'
+  'python-requests' 'python2-requests' 'python-hypothesis' 
'python2-hypothesis')
+source=("git+https://github.com/pytest-dev/pytest.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  # Remove bundled pluggy - disabled for now as it will break tests
+  # rm -r pytest/_pytest/vendored_packages
+  # sed -i "s/'_pytest.vendored_packages'//" pytest/setup.py
+
+  cp -a pytest{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pytest
+  python setup.py build
+
+  cd "$srcdir"/pytest-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/pytest
+  python setup.py test
+
+  cd "$srcdir"/pytest-py2
+  python2 setup.py test
+}
+
+package_python-pytest() {
+  depends=('python-py' 'python-setuptools') # 'python-pluggy')
+
+  cd pytest
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pytest() {
+  depends=('python2-py' 'python2-setuptools') # 'python2-pluggy')
+
+  cd pytest-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  mv "$pkgdir"/usr/bin/py.test{,2}
+  mv "$pkgdir"/usr/bin/pytest{,2}
+}


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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 03:24:08
  Author: felixonmars
Revision: 216359

upgpkg: python-pytest 3.0.7-1

Modified:
  python-pytest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-15 03:23:27 UTC (rev 216358)
+++ PKGBUILD2017-03-15 03:24:08 UTC (rev 216359)
@@ -4,7 +4,7 @@
 
 pkgbase=python-pytest
 pkgname=('python-pytest' 'python2-pytest')
-pkgver=3.0.6
+pkgver=3.0.7
 pkgrel=1
 pkgdesc="Simple powerful testing with Python"
 arch=('any')


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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 03:23:27
  Author: felixonmars
Revision: 216358

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

Added:
  deepin-music/repos/community-i686/PKGBUILD
(from rev 216357, deepin-music/trunk/PKGBUILD)
  deepin-music/repos/community-x86_64/PKGBUILD
(from rev 216357, deepin-music/trunk/PKGBUILD)
Deleted:
  deepin-music/repos/community-i686/PKGBUILD
  deepin-music/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-15 03:22:53 UTC (rev 216357)
+++ community-i686/PKGBUILD 2017-03-15 03:23:27 UTC (rev 216358)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-music
-pkgver=3.0.1
-pkgrel=2
-pkgdesc='Awesome music player with brilliant and tweakful UI Deepin-UI based.'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/deepin-music;
-license=('GPL3')
-depends=('deepin-tool-kit' 'ffmpeg' 'qt5-svg' 'taglib' 'gst-plugins-bad')
-makedepends=('qt5-tools' 'git')
-groups=('deepin-extra')
-source=("git+https://github.com/linuxdeepin/deepin-music.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-prepare() {
-  sed -i 's/-0-2//g' deepin-music/music-player/music-player.pro
-}
-
-build() {
-  cd deepin-music
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd deepin-music
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-music/repos/community-i686/PKGBUILD (from rev 216357, 
deepin-music/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-15 03:23:27 UTC (rev 216358)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-music
+pkgver=3.0.5
+pkgrel=1
+pkgdesc='Awesome music player with brilliant and tweakful UI Deepin-UI based.'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/deepin-music;
+license=('GPL3')
+depends=('deepin-tool-kit' 'ffmpeg' 'taglib' 'libcue' 'qt5-svg' 
'gst-plugins-bad')
+makedepends=('qt5-tools' 'git')
+groups=('deepin-extra')
+source=("git+https://github.com/linuxdeepin/deepin-music.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  sed -i 's/-0-2//g' deepin-music/music-player/music-player.pro
+}
+
+build() {
+  cd deepin-music
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd deepin-music
+  make INSTALL_ROOT="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-03-15 03:22:53 UTC (rev 216357)
+++ community-x86_64/PKGBUILD   2017-03-15 03:23:27 UTC (rev 216358)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-music
-pkgver=3.0.1
-pkgrel=2
-pkgdesc='Awesome music player with brilliant and tweakful UI Deepin-UI based.'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/deepin-music;
-license=('GPL3')
-depends=('deepin-tool-kit' 'ffmpeg' 'qt5-svg' 'taglib' 'gst-plugins-bad')
-makedepends=('qt5-tools' 'git')
-groups=('deepin-extra')
-source=("git+https://github.com/linuxdeepin/deepin-music.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-prepare() {
-  sed -i 's/-0-2//g' deepin-music/music-player/music-player.pro
-}
-
-build() {
-  cd deepin-music
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd deepin-music
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-music/repos/community-x86_64/PKGBUILD (from rev 216357, 
deepin-music/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-03-15 03:23:27 UTC (rev 216358)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-music
+pkgver=3.0.5
+pkgrel=1
+pkgdesc='Awesome music player with brilliant and tweakful UI Deepin-UI based.'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/deepin-music;
+license=('GPL3')
+depends=('deepin-tool-kit' 'ffmpeg' 'taglib' 'libcue' 'qt5-svg' 
'gst-plugins-bad')
+makedepends=('qt5-tools' 'git')
+groups=('deepin-extra')
+source=("git+https://github.com/linuxdeepin/deepin-music.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  sed -i 

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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 03:22:53
  Author: felixonmars
Revision: 216357

upgpkg: deepin-music 3.0.5-1

Modified:
  deepin-music/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-15 03:18:55 UTC (rev 216356)
+++ PKGBUILD2017-03-15 03:22:53 UTC (rev 216357)
@@ -4,13 +4,13 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-music
-pkgver=3.0.1
-pkgrel=2
+pkgver=3.0.5
+pkgrel=1
 pkgdesc='Awesome music player with brilliant and tweakful UI Deepin-UI based.'
 arch=('i686' 'x86_64')
 url="https://github.com/linuxdeepin/deepin-music;
 license=('GPL3')
-depends=('deepin-tool-kit' 'ffmpeg' 'qt5-svg' 'taglib' 'gst-plugins-bad')
+depends=('deepin-tool-kit' 'ffmpeg' 'taglib' 'libcue' 'qt5-svg' 
'gst-plugins-bad')
 makedepends=('qt5-tools' 'git')
 groups=('deepin-extra')
 source=("git+https://github.com/linuxdeepin/deepin-music.git#tag=$pkgver;)


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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 03:18:55
  Author: felixonmars
Revision: 216356

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-15 03:18:21 UTC (rev 216355)
+++ community-i686/PKGBUILD 2017-03-15 03:18:55 UTC (rev 216356)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=dtksettings
-pkgver=0.1.4
-pkgrel=1
-pkgdesc='DtkSettings is a powerfull tool to generation config form json.'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dtksettings;
-license=('GPL3')
-depends=('qt5-base')
-makedepends=('qt5-tools' 'git')
-source=("git+https://github.com/linuxdeepin/dtksettings.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd dtksettings
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dtksettings
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: dtksettings/repos/community-i686/PKGBUILD (from rev 216355, 
dtksettings/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-15 03:18:55 UTC (rev 216356)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=dtksettings
+pkgver=0.1.5
+pkgrel=1
+pkgdesc='DtkSettings is a powerfull tool to generation config form json.'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dtksettings;
+license=('GPL3')
+depends=('qt5-base')
+makedepends=('qt5-tools' 'git')
+source=("git+https://github.com/linuxdeepin/dtksettings.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd dtksettings
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dtksettings
+  make INSTALL_ROOT="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-03-15 03:18:21 UTC (rev 216355)
+++ community-x86_64/PKGBUILD   2017-03-15 03:18:55 UTC (rev 216356)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=dtksettings
-pkgver=0.1.4
-pkgrel=1
-pkgdesc='DtkSettings is a powerfull tool to generation config form json.'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dtksettings;
-license=('GPL3')
-depends=('qt5-base')
-makedepends=('qt5-tools' 'git')
-source=("git+https://github.com/linuxdeepin/dtksettings.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd dtksettings
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dtksettings
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: dtksettings/repos/community-x86_64/PKGBUILD (from rev 216355, 
dtksettings/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-03-15 03:18:55 UTC (rev 216356)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=dtksettings
+pkgver=0.1.5
+pkgrel=1
+pkgdesc='DtkSettings is a powerfull tool to generation config form json.'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dtksettings;
+license=('GPL3')
+depends=('qt5-base')
+makedepends=('qt5-tools' 'git')
+source=("git+https://github.com/linuxdeepin/dtksettings.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd dtksettings
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dtksettings
+  make INSTALL_ROOT="$pkgdir" install
+}


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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 03:18:21
  Author: felixonmars
Revision: 216355

upgpkg: dtksettings 0.1.5-1

Modified:
  dtksettings/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-15 03:17:37 UTC (rev 216354)
+++ PKGBUILD2017-03-15 03:18:21 UTC (rev 216355)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=dtksettings
-pkgver=0.1.4
+pkgver=0.1.5
 pkgrel=1
 pkgdesc='DtkSettings is a powerfull tool to generation config form json.'
 arch=('i686' 'x86_64')


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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 03:17:37
  Author: felixonmars
Revision: 216354

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 216353, thefuck/trunk/PKGBUILD)
Deleted:
  thefuck/repos/community-any/PKGBUILD

--+
 PKGBUILD |   84 ++---
 1 file changed, 42 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-15 03:17:19 UTC (rev 216353)
+++ PKGBUILD2017-03-15 03:17:37 UTC (rev 216354)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=thefuck
-pkgver=3.14
-pkgrel=1
-pkgdesc="Magnificent app which corrects your previous console command"
-arch=('any')
-url="https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-psutil' 'python-six' 'python-colorama' 
'python-decorator')
-makedepends=('git' 'python-pip')
-checkdepends=('python-pytest-mock' 'python-mock' 'python-pexpect')
-source=("git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-
-  # Hack distribution test by installing it and set PYTHONPATH afterwards
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-
-  # Hack $HOME as it's / in the chroot and not writable
-  cp tests/test_conf.py "$srcdir/test_conf.py.bak"
-  sed -i "s|data = {}|data = {'HOME': '$srcdir'}|" tests/test_conf.py
-  LC_CTYPE=en_US.utf8 
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH" 
py.test tests
-  mv "$srcdir/test_conf.py.bak" tests/test_conf.py
-}
-
-package() {
-  cd thefuck
-  python setup.py install -O1 --prefix=/usr --root="$pkgdir"
-
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 216353, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-15 03:17:37 UTC (rev 216354)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=thefuck
+pkgver=3.15
+pkgrel=1
+pkgdesc="Magnificent app which corrects your previous console command"
+arch=('any')
+url="https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-psutil' 'python-six' 'python-colorama' 
'python-decorator')
+makedepends=('git' 'python-pip')
+checkdepends=('python-pytest-mock' 'python-mock' 'python-pexpect')
+source=("git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+
+  # Hack distribution test by installing it and set PYTHONPATH afterwards
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+
+  # Hack $HOME as it's / in the chroot and not writable
+  cp tests/test_conf.py "$srcdir/test_conf.py.bak"
+  sed -i "s|data = {}|data = {'HOME': '$srcdir'}|" tests/test_conf.py
+  LC_CTYPE=en_US.utf8 
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH" 
py.test tests
+  mv "$srcdir/test_conf.py.bak" tests/test_conf.py
+}
+
+package() {
+  cd thefuck
+  python setup.py install -O1 --prefix=/usr --root="$pkgdir"
+
+  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 03:17:19
  Author: felixonmars
Revision: 216353

upgpkg: thefuck 3.15-1

Modified:
  thefuck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-15 03:11:51 UTC (rev 216352)
+++ PKGBUILD2017-03-15 03:17:19 UTC (rev 216353)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=thefuck
-pkgver=3.14
+pkgver=3.15
 pkgrel=1
 pkgdesc="Magnificent app which corrects your previous console command"
 arch=('any')


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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 03:11:51
  Author: felixonmars
Revision: 216352

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

Added:
  deepin-screen-recorder/repos/community-i686/PKGBUILD
(from rev 216351, deepin-screen-recorder/trunk/PKGBUILD)
  deepin-screen-recorder/repos/community-x86_64/PKGBUILD
(from rev 216351, deepin-screen-recorder/trunk/PKGBUILD)
Deleted:
  deepin-screen-recorder/repos/community-i686/PKGBUILD
  deepin-screen-recorder/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-15 03:11:21 UTC (rev 216351)
+++ community-i686/PKGBUILD 2017-03-15 03:11:51 UTC (rev 216352)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-screen-recorder
-pkgver=1.5
-pkgrel=1
-pkgdesc='Deepin Screen Recorder'
-arch=('i686' 'x86_64')
-url="https://github.com/manateelazycat/deepin-screen-recorder;
-license=('GPL3')
-depends=('deepin-tool-kit' 'byzanz' 'ffmpeg')
-makedepends=('git' 'qt5-tools')
-groups=('deepin-extras')
-source=("git+https://github.com/manateelazycat/deepin-screen-recorder.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build(){
-  cd deepin-screen-recorder
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd deepin-screen-recorder
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-screen-recorder/repos/community-i686/PKGBUILD (from rev 216351, 
deepin-screen-recorder/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-15 03:11:51 UTC (rev 216352)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-screen-recorder
+pkgver=1.6
+pkgrel=1
+pkgdesc='Deepin Screen Recorder'
+arch=('i686' 'x86_64')
+url="https://github.com/manateelazycat/deepin-screen-recorder;
+license=('GPL3')
+depends=('deepin-tool-kit' 'byzanz' 'ffmpeg')
+makedepends=('git' 'qt5-tools')
+groups=('deepin-extras')
+source=("git+https://github.com/manateelazycat/deepin-screen-recorder.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build(){
+  cd deepin-screen-recorder
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd deepin-screen-recorder
+  make INSTALL_ROOT="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-03-15 03:11:21 UTC (rev 216351)
+++ community-x86_64/PKGBUILD   2017-03-15 03:11:51 UTC (rev 216352)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-screen-recorder
-pkgver=1.5
-pkgrel=1
-pkgdesc='Deepin Screen Recorder'
-arch=('i686' 'x86_64')
-url="https://github.com/manateelazycat/deepin-screen-recorder;
-license=('GPL3')
-depends=('deepin-tool-kit' 'byzanz' 'ffmpeg')
-makedepends=('git' 'qt5-tools')
-groups=('deepin-extras')
-source=("git+https://github.com/manateelazycat/deepin-screen-recorder.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build(){
-  cd deepin-screen-recorder
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd deepin-screen-recorder
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-screen-recorder/repos/community-x86_64/PKGBUILD (from rev 
216351, deepin-screen-recorder/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-03-15 03:11:51 UTC (rev 216352)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-screen-recorder
+pkgver=1.6
+pkgrel=1
+pkgdesc='Deepin Screen Recorder'
+arch=('i686' 'x86_64')
+url="https://github.com/manateelazycat/deepin-screen-recorder;
+license=('GPL3')
+depends=('deepin-tool-kit' 'byzanz' 'ffmpeg')
+makedepends=('git' 'qt5-tools')
+groups=('deepin-extras')
+source=("git+https://github.com/manateelazycat/deepin-screen-recorder.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build(){
+  cd deepin-screen-recorder
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd deepin-screen-recorder
+  make INSTALL_ROOT="${pkgdir}" install
+}


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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 03:11:21
  Author: felixonmars
Revision: 216351

upgpkg: deepin-screen-recorder 1.6-1

Modified:
  deepin-screen-recorder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-15 03:04:18 UTC (rev 216350)
+++ PKGBUILD2017-03-15 03:11:21 UTC (rev 216351)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-screen-recorder
-pkgver=1.5
+pkgver=1.6
 pkgrel=1
 pkgdesc='Deepin Screen Recorder'
 arch=('i686' 'x86_64')


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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 03:04:18
  Author: felixonmars
Revision: 216350

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

Added:
  deepin-desktop/repos/community-i686/PKGBUILD
(from rev 216349, deepin-desktop/trunk/PKGBUILD)
  deepin-desktop/repos/community-x86_64/PKGBUILD
(from rev 216349, deepin-desktop/trunk/PKGBUILD)
Deleted:
  deepin-desktop/repos/community-i686/PKGBUILD
  deepin-desktop/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-15 03:03:43 UTC (rev 216349)
+++ community-i686/PKGBUILD 2017-03-15 03:04:18 UTC (rev 216350)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-desktop
-pkgver=4.0.4
-pkgrel=2
-pkgdesc='Deepin desktop-environment - Desktop module'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-desktop;
-license=('GPL3')
-depends=('gsettings-qt' 'deepin-daemon' 'deepin-tool-kit' 'startdde' 
'deepin-dock' 'gtk2' 'qt5-svg'
- 'qt5-x11extras' 'libqtxdg' 'deepin-file-manager' 
'deepin-qt5integration')
-makedepends=('git' 'boost' 'qt5-tools')
-conflicts=('dde-desktop')
-replaces=('dde-desktop')
-groups=('deepin')
-source=("git+https://cr.deepin.io/dde/dde-desktop.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-prepare() {
-  sed -i 's/-0-2//g' dde-desktop/build.pri
-}
-
-build() {
-  cd dde-desktop
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-desktop
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-desktop/repos/community-i686/PKGBUILD (from rev 216349, 
deepin-desktop/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-15 03:04:18 UTC (rev 216350)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-desktop
+pkgver=4.0.5
+pkgrel=1
+pkgdesc='Deepin desktop-environment - Desktop module'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-desktop;
+license=('GPL3')
+depends=('gsettings-qt' 'deepin-daemon' 'deepin-tool-kit' 'startdde' 
'deepin-dock' 'gtk2' 'qt5-svg'
+ 'qt5-x11extras' 'libqtxdg' 'deepin-file-manager' 
'deepin-qt5integration')
+makedepends=('git' 'boost' 'qt5-tools')
+conflicts=('dde-desktop')
+replaces=('dde-desktop')
+groups=('deepin')
+source=("git+https://cr.deepin.io/dde/dde-desktop.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  sed -i 's/-0-2//g' dde-desktop/build.pri
+}
+
+build() {
+  cd dde-desktop
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-desktop
+  make INSTALL_ROOT="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-03-15 03:03:43 UTC (rev 216349)
+++ community-x86_64/PKGBUILD   2017-03-15 03:04:18 UTC (rev 216350)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-desktop
-pkgver=4.0.4
-pkgrel=2
-pkgdesc='Deepin desktop-environment - Desktop module'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-desktop;
-license=('GPL3')
-depends=('gsettings-qt' 'deepin-daemon' 'deepin-tool-kit' 'startdde' 
'deepin-dock' 'gtk2' 'qt5-svg'
- 'qt5-x11extras' 'libqtxdg' 'deepin-file-manager' 
'deepin-qt5integration')
-makedepends=('git' 'boost' 'qt5-tools')
-conflicts=('dde-desktop')
-replaces=('dde-desktop')
-groups=('deepin')
-source=("git+https://cr.deepin.io/dde/dde-desktop.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-prepare() {
-  sed -i 's/-0-2//g' dde-desktop/build.pri
-}
-
-build() {
-  cd dde-desktop
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-desktop
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-desktop/repos/community-x86_64/PKGBUILD (from rev 216349, 
deepin-desktop/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-03-15 03:04:18 UTC (rev 216350)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-desktop
+pkgver=4.0.5
+pkgrel=1
+pkgdesc='Deepin desktop-environment - Desktop module'
+arch=('i686' 'x86_64')

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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 03:03:43
  Author: felixonmars
Revision: 216349

upgpkg: deepin-desktop 4.0.5-1

Modified:
  deepin-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-15 02:58:26 UTC (rev 216348)
+++ PKGBUILD2017-03-15 03:03:43 UTC (rev 216349)
@@ -4,8 +4,8 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-desktop
-pkgver=4.0.4
-pkgrel=2
+pkgver=4.0.5
+pkgrel=1
 pkgdesc='Deepin desktop-environment - Desktop module'
 arch=('i686' 'x86_64')
 url="https://github.com/linuxdeepin/dde-desktop;


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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 02:58:26
  Author: felixonmars
Revision: 216348

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-15 02:57:49 UTC (rev 216347)
+++ community-i686/PKGBUILD 2017-03-15 02:58:26 UTC (rev 216348)
@@ -1,71 +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=7.7.2
-pkgrel=1
-pkgdesc='Evented I/O for V8 javascript'
-arch=('i686' 'x86_64')
-url='http://nodejs.org/'
-license=('MIT')
-depends=('openssl' 'zlib' 'icu' 'libuv' 'http-parser' 'c-ares') # 'v8')
-makedepends=('python2' 'procps-ng' 'git')
-optdepends=('npm: nodejs package manager')
-source=("nodejs::git+https://github.com/nodejs/node.git#tag=v$pkgver;)
-sha256sums=('SKIP')
-
-prepare() {
-  cd nodejs
-
-  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 nodejs
-
-  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 nodejs
-  # Expected failure: https://github.com/nodejs/node/issues/11627
-  make test || warning "Tests failed"
-}
-
-package() {
-  cd nodejs
-
-  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 216347, 
nodejs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-15 02:58:26 UTC (rev 216348)
@@ -0,0 +1,71 @@
+# $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=7.7.3
+pkgrel=1
+pkgdesc='Evented I/O for V8 javascript'
+arch=('i686' 'x86_64')
+url='http://nodejs.org/'
+license=('MIT')
+depends=('openssl' 'zlib' 'icu' 'libuv' 'http-parser' 'c-ares') # 'v8')
+makedepends=('python2' 'procps-ng' 'git')
+optdepends=('npm: nodejs package manager')
+source=("nodejs::git+https://github.com/nodejs/node.git#tag=v$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  cd nodejs
+
+  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 nodejs
+
+  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 nodejs
+  # Expected failure: https://github.com/nodejs/node/issues/11627
+  make test || warning "Tests failed"
+}
+
+package() {
+  cd nodejs
+
+  make DESTDIR="$pkgdir" install
+
+  install -D -m644 LICENSE \
+"$pkgdir"/usr/share/licenses/nodejs/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD

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

2017-03-14 Thread Felix Yan
Date: Wednesday, March 15, 2017 @ 02:57:49
  Author: felixonmars
Revision: 216347

upgpkg: nodejs 7.7.3-1

Modified:
  nodejs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-15 00:16:33 UTC (rev 216346)
+++ PKGBUILD2017-03-15 02:57:49 UTC (rev 216347)
@@ -9,7 +9,7 @@
 # Contributor: TIanyi Cui 
 
 pkgname=nodejs
-pkgver=7.7.2
+pkgver=7.7.3
 pkgrel=1
 pkgdesc='Evented I/O for V8 javascript'
 arch=('i686' 'x86_64')


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

2017-03-14 Thread Levente Polyak
Date: Tuesday, March 14, 2017 @ 22:27:09
  Author: anthraxx
Revision: 216327

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

Added:
  cjdns/repos/community-i686/PKGBUILD
(from rev 216326, cjdns/trunk/PKGBUILD)
  cjdns/repos/community-i686/cjdns.install
(from rev 216326, cjdns/trunk/cjdns.install)
  cjdns/repos/community-x86_64/PKGBUILD
(from rev 216326, cjdns/trunk/PKGBUILD)
  cjdns/repos/community-x86_64/cjdns.install
(from rev 216326, cjdns/trunk/cjdns.install)
Deleted:
  cjdns/repos/community-i686/PKGBUILD
  cjdns/repos/community-i686/cjdns.install
  cjdns/repos/community-x86_64/PKGBUILD
  cjdns/repos/community-x86_64/cjdns.install

+
 /PKGBUILD  |   96 +++
 /cjdns.install |   52 +
 community-i686/PKGBUILD|   45 --
 community-i686/cjdns.install   |   26 --
 community-x86_64/PKGBUILD  |   45 --
 community-x86_64/cjdns.install |   26 --
 6 files changed, 148 insertions(+), 142 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-14 22:26:59 UTC (rev 216326)
+++ community-i686/PKGBUILD 2017-03-14 22:27:09 UTC (rev 216327)
@@ -1,45 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Kevin MacMartin 
-# Contributor: openfbt
-# Contributor: Werecat
-# Contributor: Xyne
-
-pkgname=cjdns
-pkgver=19.1
-pkgrel=1
-pkgdesc='Routing engine designed for security, scalability, speed and ease of 
use'
-url='https://github.com/cjdelisle/cjdns'
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('glibc' 'sh')
-makedepends=('nodejs' 'python2')
-install=cjdns.install
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/cjdelisle/${pkgname}/archive/cjdns-v${pkgver}.tar.gz)
-sha256sums=('53c568a500215b055a9894178eb4477bd93a6e1abf751d0bc5ef2a03ea01a188')
-sha512sums=('9c29bf1d136237bd60e125718bdd2c6d7f5a651d51af50aea3173eed1626a402dac5a2a72f9fb129fc9af24c3b67472a1dfe7b2b6a09bb28d01a120fc667b206')
-
-build() {
-  cd ${pkgname}-${pkgname}-v${pkgver}
-  CJDNS_RELEASE_VERSION="${pkgver}" bash 'do'
-}
-
-package() {
-  cd ${pkgname}-${pkgname}-v${pkgver}
-  install -Dm 755 cjdroute "${pkgdir}/usr/bin/cjdroute"
-  install -Dm 644 contrib/systemd/${pkgname}.service 
"${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
-  install -Dm 644 contrib/systemd/${pkgname}-resume.service 
"${pkgdir}/usr/lib/systemd/system/${pkgname}-resume.service"
-  install -Dm 644 doc/man/cjdroute.conf.5 
"${pkgdir}/usr/share/man/man5/cjdroute.conf.5"
-  install -Dm 644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm 644 -t "${pkgdir}/usr/share/doc/${pkgname}" \
-doc/admin-api.md \
-doc/configure.md \
-doc/djc_layer_model.md \
-doc/nat-gateway.md \
-doc/network-services.md \
-doc/non-root-user.md \
-doc/security_specification.md \
-doc/shorewall_and_vpn_gateway_howto.md \
-doc/tunnel.md
-}
-
-# vim: ts=2 sw=2 et:

Copied: cjdns/repos/community-i686/PKGBUILD (from rev 216326, 
cjdns/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-14 22:27:09 UTC (rev 216327)
@@ -0,0 +1,48 @@
+# Maintainer: Levente Polyak 
+# Contributor: Kevin MacMartin 
+# Contributor: openfbt
+# Contributor: Werecat
+# Contributor: Xyne
+
+pkgname=cjdns
+pkgver=19.1
+pkgrel=2
+pkgdesc='Routing engine designed for security, scalability, speed and ease of 
use'
+url='https://github.com/cjdelisle/cjdns'
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('glibc' 'sh')
+optdepends=('nodejs: optional utilities support')
+makedepends=('nodejs' 'python2')
+install=cjdns.install
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/cjdelisle/${pkgname}/archive/cjdns-v${pkgver}.tar.gz)
+sha256sums=('53c568a500215b055a9894178eb4477bd93a6e1abf751d0bc5ef2a03ea01a188')
+sha512sums=('9c29bf1d136237bd60e125718bdd2c6d7f5a651d51af50aea3173eed1626a402dac5a2a72f9fb129fc9af24c3b67472a1dfe7b2b6a09bb28d01a120fc667b206')
+
+build() {
+  cd ${pkgname}-${pkgname}-v${pkgver}
+  CJDNS_RELEASE_VERSION="${pkgver}" \
+node ./node_build/make.js
+}
+
+package() {
+  cd ${pkgname}-${pkgname}-v${pkgver}
+  install -Dm 755 cjdroute "${pkgdir}/usr/bin/cjdroute"
+  install -Dm 644 contrib/systemd/${pkgname}.service 
"${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
+  install -Dm 644 contrib/systemd/${pkgname}-resume.service 
"${pkgdir}/usr/lib/systemd/system/${pkgname}-resume.service"
+  install -Dm 644 doc/man/cjdroute.conf.5 
"${pkgdir}/usr/share/man/man5/cjdroute.conf.5"
+  install -Dm 644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
+  install -Dm 644 -t 

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

2017-03-14 Thread Levente Polyak
Date: Tuesday, March 14, 2017 @ 22:26:59
  Author: anthraxx
Revision: 216326

upgpkg: cjdns 19.1-2 (less noisy install and added opt tools)

Modified:
  cjdns/trunk/PKGBUILD
  cjdns/trunk/cjdns.install

---+
 PKGBUILD  |7 +--
 cjdns.install |   10 +-
 2 files changed, 10 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 20:34:07 UTC (rev 216325)
+++ PKGBUILD2017-03-14 22:26:59 UTC (rev 216326)
@@ -6,12 +6,13 @@
 
 pkgname=cjdns
 pkgver=19.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Routing engine designed for security, scalability, speed and ease of 
use'
 url='https://github.com/cjdelisle/cjdns'
 arch=('i686' 'x86_64')
 license=('GPL3')
 depends=('glibc' 'sh')
+optdepends=('nodejs: optional utilities support')
 makedepends=('nodejs' 'python2')
 install=cjdns.install
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/cjdelisle/${pkgname}/archive/cjdns-v${pkgver}.tar.gz)
@@ -20,7 +21,8 @@
 
 build() {
   cd ${pkgname}-${pkgname}-v${pkgver}
-  CJDNS_RELEASE_VERSION="${pkgver}" bash 'do'
+  CJDNS_RELEASE_VERSION="${pkgver}" \
+node ./node_build/make.js
 }
 
 package() {
@@ -40,6 +42,7 @@
 doc/security_specification.md \
 doc/shorewall_and_vpn_gateway_howto.md \
 doc/tunnel.md
+  cp -a tools "${pkgdir}/usr/lib/${pkgname}"
 }
 
 # vim: ts=2 sw=2 et:

Modified: cjdns.install
===
--- cjdns.install   2017-03-14 20:34:07 UTC (rev 216325)
+++ cjdns.install   2017-03-14 22:26:59 UTC (rev 216326)
@@ -4,19 +4,19 @@
 
   if [[ ! -e "${config_path}" ]] ; then
 echo "Generating ${config_file}... "
-(umask 077 && cjdroute --genconf > "${config_path}") || 
+(umask 077 && cjdroute --genconf > "${config_path}") ||
   echo "ERROR: Failed to generate and install ${config_file}"
 echo "
 >>> The keys in ${config_path} have been autogenerated during
->>> install, they are not defaults and do not need to be overwritten."
-  fi
-  echo "
+>>> install, they are not defaults and do not need to be overwritten.
+
 >>> Protect ${config_path}! A lost conf file means you have
 >>> lost your password and connections and anyone who connected
 >>> to you will no longer be able to connect. A *compromised*
 >>> conf file means that other people can impersonate you on
 >>> the network.
-  "
+"
+  fi
 }
 
 post_upgrade() {


[arch-commits] Commit in noto-fonts/repos/extra-any (5 files)

2017-03-14 Thread Antonio Rojas
Date: Tuesday, March 14, 2017 @ 22:20:24
  Author: arojas
Revision: 290848

archrelease: copy trunk to extra-any

Added:
  noto-fonts/repos/extra-any/66-noto-mono.conf
(from rev 290847, noto-fonts/trunk/66-noto-mono.conf)
  noto-fonts/repos/extra-any/66-noto-sans.conf
(from rev 290847, noto-fonts/trunk/66-noto-sans.conf)
  noto-fonts/repos/extra-any/66-noto-serif.conf
(from rev 290847, noto-fonts/trunk/66-noto-serif.conf)
  noto-fonts/repos/extra-any/PKGBUILD
(from rev 290847, noto-fonts/trunk/PKGBUILD)
Deleted:
  noto-fonts/repos/extra-any/PKGBUILD

+
 66-noto-mono.conf  |   16 +
 66-noto-sans.conf  |   16 +
 66-noto-serif.conf |   16 +
 PKGBUILD   |   84 +++
 4 files changed, 94 insertions(+), 38 deletions(-)

Copied: noto-fonts/repos/extra-any/66-noto-mono.conf (from rev 290847, 
noto-fonts/trunk/66-noto-mono.conf)
===
--- 66-noto-mono.conf   (rev 0)
+++ 66-noto-mono.conf   2017-03-14 22:20:24 UTC (rev 290848)
@@ -0,0 +1,16 @@
+
+
+
+  
+monospace
+
+  Noto Mono
+
+  
+  
+Noto Mono
+
+  monospace
+
+  
+

Copied: noto-fonts/repos/extra-any/66-noto-sans.conf (from rev 290847, 
noto-fonts/trunk/66-noto-sans.conf)
===
--- 66-noto-sans.conf   (rev 0)
+++ 66-noto-sans.conf   2017-03-14 22:20:24 UTC (rev 290848)
@@ -0,0 +1,16 @@
+
+
+
+  
+sans-serif
+
+  Noto Sans
+
+  
+  
+Noto Sans
+
+  sans-serif
+
+  
+

Copied: noto-fonts/repos/extra-any/66-noto-serif.conf (from rev 290847, 
noto-fonts/trunk/66-noto-serif.conf)
===
--- 66-noto-serif.conf  (rev 0)
+++ 66-noto-serif.conf  2017-03-14 22:20:24 UTC (rev 290848)
@@ -0,0 +1,16 @@
+
+
+
+  
+serif
+
+  Noto Serif
+
+  
+  
+Noto Serif
+
+  serif
+
+  
+

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-14 22:19:20 UTC (rev 290847)
+++ PKGBUILD2017-03-14 22:20:24 UTC (rev 290848)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgbase=noto-fonts
-pkgname=(noto-fonts ttf-croscore)
-_pkgver=2017-03-07
-_commit=60aa0da2ee84b11e78725b4577edc2e80b009d56  # master
-pkgver=${_pkgver//-}
-pkgrel=1
-pkgdesc="Google Noto TTF fonts"
-arch=(any)
-url="https://www.google.com/get/noto/;
-license=(custom:SIL)
-provides=(ttf-font)
-source=("$pkgbase-$_commit.tar.gz::https://github.com/googlei18n/noto-fonts/archive/$_commit.tar.gz;)
-sha256sums=('9d74d9fa04dfa182b8fa1a3caca3b65cc929b76e169bf59c6ce8c78b9c08be82')
-
-package_noto-fonts() {
-  optdepends=('noto-fonts-cjk: CJK characters' 'noto-fonts-emoji: Emoji 
characters')
-
-  cd $pkgbase-*/
-  mkdir -p "$pkgdir"/usr/share/fonts/noto
-  install -m644 unhinted/Noto*.tt[fc] "$pkgdir"/usr/share/fonts/noto
-  install -m644 hinted/Noto*.tt[fc] "$pkgdir"/usr/share/fonts/noto
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/noto-fonts/LICENSE
-
-  # Already in NotoSans-*.ttc
-  rm "$pkgdir"/usr/share/fonts/noto/NotoSans{,UI}-*.ttf
-}
-
-package_ttf-croscore() {
-  pkgdesc='Chrome OS core fonts'
-
-  cd $pkgbase-*/
-  mkdir -p "$pkgdir"/usr/share/fonts/TTF
-  install -m644 hinted/{Arimo,Cousine,Tinos}*.ttf "$pkgdir"/usr/share/fonts/TTF
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/ttf-croscore/LICENSE
-}

Copied: noto-fonts/repos/extra-any/PKGBUILD (from rev 290847, 
noto-fonts/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-14 22:20:24 UTC (rev 290848)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgbase=noto-fonts
+pkgname=(noto-fonts ttf-croscore)
+_pkgver=2017-03-07
+_commit=60aa0da2ee84b11e78725b4577edc2e80b009d56  # master
+pkgver=${_pkgver//-}
+pkgrel=2
+pkgdesc="Google Noto TTF fonts"
+arch=(any)
+url="https://www.google.com/get/noto/;
+license=(custom:SIL)
+provides=(ttf-font)
+source=("$pkgbase-$_commit.tar.gz::https://github.com/googlei18n/noto-fonts/archive/$_commit.tar.gz;
+66-noto-sans.conf 66-noto-serif.conf 66-noto-mono.conf)
+sha256sums=('9d74d9fa04dfa182b8fa1a3caca3b65cc929b76e169bf59c6ce8c78b9c08be82'
+'65ff237a579d438eb1b1c90bf25b5818e15ab019dbbfed2fc283b9cd12e5177f'
+'27419c0557d05e13edbb244cd06a62d921c271c6c2f07126856519869035776e'
+'8c541eab8b44f6c7b02e981a4fbbd082eb6c1aa8285e11dede5f0a3ec0617772')
+
+package_noto-fonts() {
+  optdepends=('noto-fonts-cjk: CJK characters' 'noto-fonts-emoji: Emoji 
characters')
+
+  cd $pkgbase-*/
+  mkdir -p "$pkgdir"/usr/share/fonts/noto
+  install -m644 unhinted/Noto*.tt[fc] "$pkgdir"/usr/share/fonts/noto
+  

[arch-commits] Commit in noto-fonts/trunk (4 files)

2017-03-14 Thread Antonio Rojas
Date: Tuesday, March 14, 2017 @ 22:19:20
  Author: arojas
Revision: 290847

Add fontconfig files (FS#53302)

Added:
  noto-fonts/trunk/66-noto-mono.conf
  noto-fonts/trunk/66-noto-sans.conf
  noto-fonts/trunk/66-noto-serif.conf
Modified:
  noto-fonts/trunk/PKGBUILD

+
 66-noto-mono.conf  |   16 
 66-noto-sans.conf  |   16 
 66-noto-serif.conf |   16 
 PKGBUILD   |   14 +++---
 4 files changed, 59 insertions(+), 3 deletions(-)

Added: 66-noto-mono.conf
===
--- 66-noto-mono.conf   (rev 0)
+++ 66-noto-mono.conf   2017-03-14 22:19:20 UTC (rev 290847)
@@ -0,0 +1,16 @@
+
+
+
+  
+monospace
+
+  Noto Mono
+
+  
+  
+Noto Mono
+
+  monospace
+
+  
+

Added: 66-noto-sans.conf
===
--- 66-noto-sans.conf   (rev 0)
+++ 66-noto-sans.conf   2017-03-14 22:19:20 UTC (rev 290847)
@@ -0,0 +1,16 @@
+
+
+
+  
+sans-serif
+
+  Noto Sans
+
+  
+  
+Noto Sans
+
+  sans-serif
+
+  
+

Added: 66-noto-serif.conf
===
--- 66-noto-serif.conf  (rev 0)
+++ 66-noto-serif.conf  2017-03-14 22:19:20 UTC (rev 290847)
@@ -0,0 +1,16 @@
+
+
+
+  
+serif
+
+  Noto Serif
+
+  
+  
+Noto Serif
+
+  serif
+
+  
+

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 21:33:00 UTC (rev 290846)
+++ PKGBUILD2017-03-14 22:19:20 UTC (rev 290847)
@@ -6,14 +6,18 @@
 _pkgver=2017-03-07
 _commit=60aa0da2ee84b11e78725b4577edc2e80b009d56  # master
 pkgver=${_pkgver//-}
-pkgrel=1
+pkgrel=2
 pkgdesc="Google Noto TTF fonts"
 arch=(any)
 url="https://www.google.com/get/noto/;
 license=(custom:SIL)
 provides=(ttf-font)
-source=("$pkgbase-$_commit.tar.gz::https://github.com/googlei18n/noto-fonts/archive/$_commit.tar.gz;)
-sha256sums=('9d74d9fa04dfa182b8fa1a3caca3b65cc929b76e169bf59c6ce8c78b9c08be82')
+source=("$pkgbase-$_commit.tar.gz::https://github.com/googlei18n/noto-fonts/archive/$_commit.tar.gz;
+66-noto-sans.conf 66-noto-serif.conf 66-noto-mono.conf)
+sha256sums=('9d74d9fa04dfa182b8fa1a3caca3b65cc929b76e169bf59c6ce8c78b9c08be82'
+'65ff237a579d438eb1b1c90bf25b5818e15ab019dbbfed2fc283b9cd12e5177f'
+'27419c0557d05e13edbb244cd06a62d921c271c6c2f07126856519869035776e'
+'8c541eab8b44f6c7b02e981a4fbbd082eb6c1aa8285e11dede5f0a3ec0617772')
 
 package_noto-fonts() {
   optdepends=('noto-fonts-cjk: CJK characters' 'noto-fonts-emoji: Emoji 
characters')
@@ -26,6 +30,10 @@
 
   # Already in NotoSans-*.ttc
   rm "$pkgdir"/usr/share/fonts/noto/NotoSans{,UI}-*.ttf
+
+  # Install fontconfig files
+  mkdir -p "$pkgdir"/etc/fonts/conf.avail
+  install -m644 "$srcdir"/*.conf "$pkgdir"/etc/fonts/conf.avail/
 }
 
 package_ttf-croscore() {


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

2017-03-14 Thread Jelle van der Waa
Date: Tuesday, March 14, 2017 @ 21:33:00
  Author: jelle
Revision: 290846

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

Added:
  mutt/repos/staging-i686/
  mutt/repos/staging-i686/PKGBUILD
(from rev 290845, mutt/trunk/PKGBUILD)
  mutt/repos/staging-x86_64/
  mutt/repos/staging-x86_64/PKGBUILD
(from rev 290845, mutt/trunk/PKGBUILD)

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

Copied: mutt/repos/staging-i686/PKGBUILD (from rev 290845, mutt/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-03-14 21:33:00 UTC (rev 290846)
@@ -0,0 +1,49 @@
+# $Id$
+# Contributor: tobias [tobias [at] archlinux.org]
+# Maintainer: Gaetan Bisson 
+
+pkgname=mutt
+pkgver=1.8.0
+pkgrel=2
+pkgdesc='Small but very powerful text-based mail client'
+url='http://www.mutt.org/'
+license=('GPL')
+backup=('etc/Muttrc')
+arch=('i686' 'x86_64')
+optdepends=('smtp-forwarder: to send mail')
+depends=('gpgme' 'ncurses' 'openssl' 'libsasl' 'gdbm' 'libidn' 'mime-types' 
'krb5')
+source=("http://ftp.mutt.org/pub/mutt/${pkgname}-${pkgver}.tar.gz"{,.asc})
+sha256sums=('45841eda12804b460260adff8f3f39cc977744e832486a3c49e182eda967adab'
+'SKIP')
+validpgpkeys=('8975A9B33AA37910385C5308ADEF768480316BDA')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --enable-gpgme \
+   --enable-pop \
+   --enable-imap \
+   --enable-smtp \
+   --enable-hcache \
+   --enable-sidebar \
+   --with-curses=/usr \
+   --with-regex \
+   --with-gss=/usr \
+   --with-ssl=/usr \
+   --with-sasl \
+   --with-idn \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+
+   rm "${pkgdir}"/etc/mime.types{,.dist}
+   rm "${pkgdir}"/usr/bin/{flea,muttbug}
+   rm "${pkgdir}"/usr/share/man/man1/{flea,muttbug}.1
+   install -Dm644 contrib/gpg.rc "${pkgdir}"/etc/Muttrc.gpg.dist
+}

Copied: mutt/repos/staging-x86_64/PKGBUILD (from rev 290845, 
mutt/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-03-14 21:33:00 UTC (rev 290846)
@@ -0,0 +1,49 @@
+# $Id$
+# Contributor: tobias [tobias [at] archlinux.org]
+# Maintainer: Gaetan Bisson 
+
+pkgname=mutt
+pkgver=1.8.0
+pkgrel=2
+pkgdesc='Small but very powerful text-based mail client'
+url='http://www.mutt.org/'
+license=('GPL')
+backup=('etc/Muttrc')
+arch=('i686' 'x86_64')
+optdepends=('smtp-forwarder: to send mail')
+depends=('gpgme' 'ncurses' 'openssl' 'libsasl' 'gdbm' 'libidn' 'mime-types' 
'krb5')
+source=("http://ftp.mutt.org/pub/mutt/${pkgname}-${pkgver}.tar.gz"{,.asc})
+sha256sums=('45841eda12804b460260adff8f3f39cc977744e832486a3c49e182eda967adab'
+'SKIP')
+validpgpkeys=('8975A9B33AA37910385C5308ADEF768480316BDA')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --enable-gpgme \
+   --enable-pop \
+   --enable-imap \
+   --enable-smtp \
+   --enable-hcache \
+   --enable-sidebar \
+   --with-curses=/usr \
+   --with-regex \
+   --with-gss=/usr \
+   --with-ssl=/usr \
+   --with-sasl \
+   --with-idn \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+
+   rm "${pkgdir}"/etc/mime.types{,.dist}
+   rm "${pkgdir}"/usr/bin/{flea,muttbug}
+   rm "${pkgdir}"/usr/share/man/man1/{flea,muttbug}.1
+   install -Dm644 contrib/gpg.rc "${pkgdir}"/etc/Muttrc.gpg.dist
+}


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

2017-03-14 Thread Jelle van der Waa
Date: Tuesday, March 14, 2017 @ 21:32:51
  Author: jelle
Revision: 290845

upgpkg: mutt 1.8.0-2

openssl 1.1.0 rebuild

Modified:
  mutt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 21:28:54 UTC (rev 290844)
+++ PKGBUILD2017-03-14 21:32:51 UTC (rev 290845)
@@ -4,7 +4,7 @@
 
 pkgname=mutt
 pkgver=1.8.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Small but very powerful text-based mail client'
 url='http://www.mutt.org/'
 license=('GPL')


[arch-commits] Commit in bind/repos (38 files)

2017-03-14 Thread Sébastien Luttringer
Date: Tuesday, March 14, 2017 @ 21:28:54
  Author: seblu
Revision: 290844

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

Added:
  bind/repos/extra-i686/01-seccomp.patch
(from rev 290843, bind/trunk/01-seccomp.patch)
  bind/repos/extra-i686/127.0.0.zone
(from rev 290843, bind/trunk/127.0.0.zone)
  bind/repos/extra-i686/PKGBUILD
(from rev 290843, bind/trunk/PKGBUILD)
  bind/repos/extra-i686/empty.zone
(from rev 290843, bind/trunk/empty.zone)
  bind/repos/extra-i686/localhost.ip6.zone
(from rev 290843, bind/trunk/localhost.ip6.zone)
  bind/repos/extra-i686/localhost.zone
(from rev 290843, bind/trunk/localhost.zone)
  bind/repos/extra-i686/named.conf
(from rev 290843, bind/trunk/named.conf)
  bind/repos/extra-i686/named.service
(from rev 290843, bind/trunk/named.service)
  bind/repos/extra-i686/sysusers.conf
(from rev 290843, bind/trunk/sysusers.conf)
  bind/repos/extra-i686/tmpfiles.conf
(from rev 290843, bind/trunk/tmpfiles.conf)
  bind/repos/extra-x86_64/01-seccomp.patch
(from rev 290843, bind/trunk/01-seccomp.patch)
  bind/repos/extra-x86_64/127.0.0.zone
(from rev 290843, bind/trunk/127.0.0.zone)
  bind/repos/extra-x86_64/PKGBUILD
(from rev 290843, bind/trunk/PKGBUILD)
  bind/repos/extra-x86_64/empty.zone
(from rev 290843, bind/trunk/empty.zone)
  bind/repos/extra-x86_64/localhost.ip6.zone
(from rev 290843, bind/trunk/localhost.ip6.zone)
  bind/repos/extra-x86_64/localhost.zone
(from rev 290843, bind/trunk/localhost.zone)
  bind/repos/extra-x86_64/named.conf
(from rev 290843, bind/trunk/named.conf)
  bind/repos/extra-x86_64/named.service
(from rev 290843, bind/trunk/named.service)
  bind/repos/extra-x86_64/sysusers.conf
(from rev 290843, bind/trunk/sysusers.conf)
  bind/repos/extra-x86_64/tmpfiles.conf
(from rev 290843, bind/trunk/tmpfiles.conf)
Deleted:
  bind/repos/extra-i686/127.0.0.zone
  bind/repos/extra-i686/PKGBUILD
  bind/repos/extra-i686/empty.zone
  bind/repos/extra-i686/localhost.ip6.zone
  bind/repos/extra-i686/localhost.zone
  bind/repos/extra-i686/named.conf
  bind/repos/extra-i686/named.service
  bind/repos/extra-i686/sysusers.conf
  bind/repos/extra-i686/tmpfiles.conf
  bind/repos/extra-x86_64/127.0.0.zone
  bind/repos/extra-x86_64/PKGBUILD
  bind/repos/extra-x86_64/empty.zone
  bind/repos/extra-x86_64/localhost.ip6.zone
  bind/repos/extra-x86_64/localhost.zone
  bind/repos/extra-x86_64/named.conf
  bind/repos/extra-x86_64/named.service
  bind/repos/extra-x86_64/sysusers.conf
  bind/repos/extra-x86_64/tmpfiles.conf

-+
 /127.0.0.zone   |   20 ++
 /PKGBUILD   |  268 ++
 /empty.zone |   16 ++
 /localhost.ip6.zone |   20 ++
 /localhost.zone |   22 +++
 /named.conf |  144 
 /named.service  |   20 ++
 /sysusers.conf  |2 
 /tmpfiles.conf  |2 
 extra-i686/01-seccomp.patch |   39 +
 extra-i686/127.0.0.zone |   10 -
 extra-i686/PKGBUILD |  123 -
 extra-i686/empty.zone   |8 -
 extra-i686/localhost.ip6.zone   |   10 -
 extra-i686/localhost.zone   |   11 -
 extra-i686/named.conf   |   72 --
 extra-i686/named.service|   10 -
 extra-i686/sysusers.conf|1 
 extra-i686/tmpfiles.conf|1 
 extra-x86_64/01-seccomp.patch   |   39 +
 extra-x86_64/127.0.0.zone   |   10 -
 extra-x86_64/PKGBUILD   |  123 -
 extra-x86_64/empty.zone |8 -
 extra-x86_64/localhost.ip6.zone |   10 -
 extra-x86_64/localhost.zone |   11 -
 extra-x86_64/named.conf |   72 --
 extra-x86_64/named.service  |   10 -
 extra-x86_64/sysusers.conf  |1 
 extra-x86_64/tmpfiles.conf  |1 
 29 files changed, 592 insertions(+), 492 deletions(-)

Copied: bind/repos/extra-i686/01-seccomp.patch (from rev 290843, 
bind/trunk/01-seccomp.patch)
===
--- extra-i686/01-seccomp.patch (rev 0)
+++ extra-i686/01-seccomp.patch 2017-03-14 21:28:54 UTC (rev 290844)
@@ -0,0 +1,39 @@
+# 
https://github.com/voidlinux/void-packages/blob/master/srcpkgs/bind/patches/seccomp.patch
+--- a/bin/named/include/named/seccomp.h.orig
 b/bin/named/include/named/seccomp.h
+@@ -57,6 +57,8 @@
+   SCMP_SYS(rt_sigsuspend),
+   SCMP_SYS(fstat),
+   SCMP_SYS(epoll_ctl),
+   SCMP_SYS(gettimeofday),
++  SCMP_SYS(getpid),
++  SCMP_SYS(getrandom),
+   SCMP_SYS(unlink),
+   SCMP_SYS(socket),
+@@ -121,6 +123,8 @@
+   "fstat",
+   "epoll_ctl",
+   "gettimeofday",
++  "getpid",
++  "getrandom",
+   "unlink",
+   "socket",
+   "sendto",
+@@ -190,6 +194,8 @@
+   SCMP_SYS(fstat64),
+   SCMP_SYS(epoll_ctl),
+   

[arch-commits] Commit in bind/trunk (01-seccomp.patch PKGBUILD)

2017-03-14 Thread Sébastien Luttringer
Date: Tuesday, March 14, 2017 @ 21:27:15
  Author: seblu
Revision: 290843

upgpkg: bind 9.11.0.P3-3

- fix FS#53240

Added:
  bind/trunk/01-seccomp.patch
Modified:
  bind/trunk/PKGBUILD

--+
 01-seccomp.patch |   39 +++
 PKGBUILD |   19 +++
 2 files changed, 54 insertions(+), 4 deletions(-)

Added: 01-seccomp.patch
===
--- 01-seccomp.patch(rev 0)
+++ 01-seccomp.patch2017-03-14 21:27:15 UTC (rev 290843)
@@ -0,0 +1,39 @@
+# 
https://github.com/voidlinux/void-packages/blob/master/srcpkgs/bind/patches/seccomp.patch
+--- a/bin/named/include/named/seccomp.h.orig
 b/bin/named/include/named/seccomp.h
+@@ -57,6 +57,8 @@
+   SCMP_SYS(rt_sigsuspend),
+   SCMP_SYS(fstat),
+   SCMP_SYS(epoll_ctl),
+   SCMP_SYS(gettimeofday),
++  SCMP_SYS(getpid),
++  SCMP_SYS(getrandom),
+   SCMP_SYS(unlink),
+   SCMP_SYS(socket),
+@@ -121,6 +123,8 @@
+   "fstat",
+   "epoll_ctl",
+   "gettimeofday",
++  "getpid",
++  "getrandom",
+   "unlink",
+   "socket",
+   "sendto",
+@@ -190,6 +194,8 @@
+   SCMP_SYS(fstat64),
+   SCMP_SYS(epoll_ctl),
+   SCMP_SYS(gettimeofday),
++  SCMP_SYS(getpid),
++  SCMP_SYS(getrandom),
+   SCMP_SYS(unlink),
+ #ifndef ISC_PLATFORM_USETHREADS
+   SCMP_SYS(fcntl64),
+@@ -226,6 +232,8 @@
+   "fstat64",
+   "epoll_ctl",
+   "gettimeofday",
++  "getpid",
++  "getrandom",
+   "unlink",
+ #ifndef ISC_PLATFORM_USETHREADS
+   "fcntl64",

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 20:26:40 UTC (rev 290842)
+++ PKGBUILD2017-03-14 21:27:15 UTC (rev 290843)
@@ -8,7 +8,7 @@
 pkgname=(bind bind-tools)
 _pkgver=9.11.0-P3
 pkgver=${_pkgver//-/.}
-pkgrel=2
+pkgrel=3
 url='https://www.isc.org/software/bind/'
 license=('custom:ISC')
 arch=('i686' 'x86_64')
@@ -27,7 +27,8 @@
 'localhost.zone'
 'localhost.ip6.zone'
 '127.0.0.zone'
-'empty.zone')
+'empty.zone'
+'01-seccomp.patch')
 sha1sums=('87d604061b23757dd746902ee66cd95545d5872f'
   'SKIP'
   'c5a2bcd9b0f009ae71f3a03fbdbe012196962a11'
@@ -37,13 +38,23 @@
   '6704303a6ed431a29b1d8fe7b12decd4d1f2f50f'
   '52da8f1c0247a11b16daa4e03d920e8f09315cbe'
   '9c33726088342207ad06d33b2c13408290a0c8ad'
-  '4f4457b310cbbeadca2272eced062a9c2b2b42fe')
+  '4f4457b310cbbeadca2272eced062a9c2b2b42fe'
+  'b1130c6d3ecab96291108194ec9490df3322aabe')
 
 prepare() {
   msg2 'Getting a fresh version of root DNS'
   # no more using source array, lack of versioning.
-  curl -o root.hint http://www.internic.net/zones/named.root
+  curl -o root.hint https://www.internic.net/zones/named.root
   [[ -s root.hint ]]
+  cd bind-$_pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename in "${source[@]}"; do
+if [[ "$filename" =~ \.patch$ ]]; then
+  msg2 "Applying patch ${filename##*/}"
+  patch -p1 -N -i "$srcdir/${filename##*/}"
+fi
+  done
 }
 
 build() {


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

2017-03-14 Thread Antonio Rojas
Date: Tuesday, March 14, 2017 @ 20:34:07
  Author: arojas
Revision: 216325

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-14 20:32:41 UTC (rev 216324)
+++ community-i686/PKGBUILD 2017-03-14 20:34:07 UTC (rev 216325)
@@ -1,35 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=polymake
-pkgver=3.0r2
-pkgrel=1
-pkgdesc="Open source software for research in polyhedral geometry"
-arch=(i686 x86_64)
-url="https://polymake.org/;
-license=(GPL)
-depends=(gmp perl-xml-writer perl-xml-libxml perl-xml-libxslt 
perl-term-readline-gnu)
-makedepends=(normaliz cddlib lrs bliss-graphs ppl apache-ant singular boost)
-optdepends=('singular: ideal library' 'ppl: polytope library' 'java-runtime: 
java module')
-source=("https://polymake.org/lib/exe/fetch.php/download/polymake-$pkgver-minimal.tar.bz2;)
-md5sums=('c1f5d71cdd86d0339c3e642494d6ac67')
-
-prepare() {
-  cd polymake-3.0
-# fix lrs headers location
-  sed -e 's|lrslib.h|lrslib/lrslib.h|g' -i 
bundled/lrs/apps/polytope/src/lrs_interface.cc \
-  -i bundled/group/external/sympol/sympol/raycomputationlrs.cpp
-  sed -e 's|||g' -e 
's|\$lrs_path\/include|$lrs_path/include/lrslib|g' -i bundled/lrs/configure.pl
-# fix singular detection
-  sed -e 's|lresources|lsingular_resources|g' -i bundled/singular/configure.pl
-}
-
-build() {
-  cd polymake-3.0
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd polymake-3.0
-  make DESTDIR="$pkgdir" install
-}

Copied: polymake/repos/community-i686/PKGBUILD (from rev 216324, 
polymake/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-14 20:34:07 UTC (rev 216325)
@@ -0,0 +1,35 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=polymake
+pkgver=3.0r2
+pkgrel=2
+pkgdesc="Open source software for research in polyhedral geometry"
+arch=(i686 x86_64)
+url="https://polymake.org/;
+license=(GPL)
+depends=(gmp perl-xml-writer perl-xml-libxml perl-xml-libxslt 
perl-term-readline-gnu)
+makedepends=(normaliz cddlib lrs bliss-graphs ppl apache-ant boost) # singular
+optdepends=('singular: ideal library' 'ppl: polytope library' 'java-runtime: 
java module')
+source=("https://polymake.org/lib/exe/fetch.php/download/polymake-$pkgver-minimal.tar.bz2;)
+md5sums=('c1f5d71cdd86d0339c3e642494d6ac67')
+
+prepare() {
+  cd polymake-3.0
+# fix lrs headers location
+  sed -e 's|lrslib.h|lrslib/lrslib.h|g' -i 
bundled/lrs/apps/polytope/src/lrs_interface.cc \
+  -i bundled/group/external/sympol/sympol/raycomputationlrs.cpp
+  sed -e 's|||g' -e 
's|\$lrs_path\/include|$lrs_path/include/lrslib|g' -i bundled/lrs/configure.pl
+# fix singular detection
+  sed -e 's|lresources|lsingular_resources|g' -i bundled/singular/configure.pl
+}
+
+build() {
+  cd polymake-3.0
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd polymake-3.0
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-03-14 20:32:41 UTC (rev 216324)
+++ community-x86_64/PKGBUILD   2017-03-14 20:34:07 UTC (rev 216325)
@@ -1,35 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=polymake
-pkgver=3.0r2
-pkgrel=1
-pkgdesc="Open source software for research in polyhedral geometry"
-arch=(i686 x86_64)
-url="https://polymake.org/;
-license=(GPL)
-depends=(gmp perl-xml-writer perl-xml-libxml perl-xml-libxslt 
perl-term-readline-gnu)
-makedepends=(normaliz cddlib lrs bliss-graphs ppl apache-ant singular boost)
-optdepends=('singular: ideal library' 'ppl: polytope library' 'java-runtime: 
java module')
-source=("https://polymake.org/lib/exe/fetch.php/download/polymake-$pkgver-minimal.tar.bz2;)
-md5sums=('c1f5d71cdd86d0339c3e642494d6ac67')
-
-prepare() {
-  cd polymake-3.0
-# fix lrs headers location
-  sed -e 's|lrslib.h|lrslib/lrslib.h|g' -i 
bundled/lrs/apps/polytope/src/lrs_interface.cc \
-  -i bundled/group/external/sympol/sympol/raycomputationlrs.cpp
-  sed -e 's|||g' -e 
's|\$lrs_path\/include|$lrs_path/include/lrslib|g' -i bundled/lrs/configure.pl
-# fix singular detection
-  sed -e 's|lresources|lsingular_resources|g' -i bundled/singular/configure.pl
-}
-

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

2017-03-14 Thread Antonio Rojas
Date: Tuesday, March 14, 2017 @ 20:32:41
  Author: arojas
Revision: 216324

Rebuild against perl 5.24.1 (FS#53308), disable singular support (doesn't build 
with 4.1.0p2)

Modified:
  polymake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 19:26:11 UTC (rev 216323)
+++ PKGBUILD2017-03-14 20:32:41 UTC (rev 216324)
@@ -2,13 +2,13 @@
 
 pkgname=polymake
 pkgver=3.0r2
-pkgrel=1
+pkgrel=2
 pkgdesc="Open source software for research in polyhedral geometry"
 arch=(i686 x86_64)
 url="https://polymake.org/;
 license=(GPL)
 depends=(gmp perl-xml-writer perl-xml-libxml perl-xml-libxslt 
perl-term-readline-gnu)
-makedepends=(normaliz cddlib lrs bliss-graphs ppl apache-ant singular boost)
+makedepends=(normaliz cddlib lrs bliss-graphs ppl apache-ant boost) # singular
 optdepends=('singular: ideal library' 'ppl: polytope library' 'java-runtime: 
java module')
 
source=("https://polymake.org/lib/exe/fetch.php/download/polymake-$pkgver-minimal.tar.bz2;)
 md5sums=('c1f5d71cdd86d0339c3e642494d6ac67')


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

2017-03-14 Thread Jelle van der Waa
Date: Tuesday, March 14, 2017 @ 20:26:28
  Author: jelle
Revision: 290841

upgpkg: nmap 7.40-2

openssl 1.1.0 rebuild

Modified:
  nmap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 18:34:13 UTC (rev 290840)
+++ PKGBUILD2017-03-14 20:26:28 UTC (rev 290841)
@@ -5,7 +5,7 @@
 
 pkgname=nmap
 pkgver=7.40
-pkgrel=1
+pkgrel=2
 pkgdesc='Utility for network discovery and security auditing'
 url='http://nmap.org/'
 arch=('i686' 'x86_64')


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

2017-03-14 Thread Jelle van der Waa
Date: Tuesday, March 14, 2017 @ 20:26:40
  Author: jelle
Revision: 290842

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

Added:
  nmap/repos/staging-i686/
  nmap/repos/staging-i686/PKGBUILD
(from rev 290841, nmap/trunk/PKGBUILD)
  nmap/repos/staging-x86_64/
  nmap/repos/staging-x86_64/PKGBUILD
(from rev 290841, nmap/trunk/PKGBUILD)

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

Copied: nmap/repos/staging-i686/PKGBUILD (from rev 290841, nmap/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-03-14 20:26:40 UTC (rev 290842)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Angel Velasquez 
+# Contributor: Hugo Doria 
+
+pkgname=nmap
+pkgver=7.40
+pkgrel=2
+pkgdesc='Utility for network discovery and security auditing'
+url='http://nmap.org/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('pygtk')
+optdepends=('pygtk: zenmap'
+'sudo: privilege escalation for zenmap'
+'xterm: privilege escalation for zenmap'
+'kde-cli-tools: privilege escalation for zenmap'
+'gksu: privilege escalation for zenmap')
+depends=('pcre' 'openssl' 'lua52')
+validpgpkeys=('436D66AB9A798425FDA0E3F801AF9F036B9355D0')
+source=("https://nmap.org/dist/${pkgname}-${pkgver}.tar.bz2;
+"https://nmap.org/dist/sigs/${pkgname}-${pkgver}.tar.bz2.asc;)
+sha256sums=('9e14665fffd054554d129d62c13ad95a7b5c7a046daa2290501909e65f4d3188'
+'SKIP')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   export PYTHON=python2
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib \
+   --mandir=/usr/share/man \
+   --with-libpcap=included \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   rm "${pkgdir}"/usr/bin/uninstall_*
+   install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+   python2 -m compileall 
"${pkgdir}"/usr/lib/python2.7/site-packages/zenmapCore
+}

Copied: nmap/repos/staging-x86_64/PKGBUILD (from rev 290841, 
nmap/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-03-14 20:26:40 UTC (rev 290842)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Angel Velasquez 
+# Contributor: Hugo Doria 
+
+pkgname=nmap
+pkgver=7.40
+pkgrel=2
+pkgdesc='Utility for network discovery and security auditing'
+url='http://nmap.org/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('pygtk')
+optdepends=('pygtk: zenmap'
+'sudo: privilege escalation for zenmap'
+'xterm: privilege escalation for zenmap'
+'kde-cli-tools: privilege escalation for zenmap'
+'gksu: privilege escalation for zenmap')
+depends=('pcre' 'openssl' 'lua52')
+validpgpkeys=('436D66AB9A798425FDA0E3F801AF9F036B9355D0')
+source=("https://nmap.org/dist/${pkgname}-${pkgver}.tar.bz2;
+"https://nmap.org/dist/sigs/${pkgname}-${pkgver}.tar.bz2.asc;)
+sha256sums=('9e14665fffd054554d129d62c13ad95a7b5c7a046daa2290501909e65f4d3188'
+'SKIP')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   export PYTHON=python2
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib \
+   --mandir=/usr/share/man \
+   --with-libpcap=included \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   rm "${pkgdir}"/usr/bin/uninstall_*
+   install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+   python2 -m compileall 
"${pkgdir}"/usr/lib/python2.7/site-packages/zenmapCore
+}


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

2017-03-14 Thread Sven-Hendrik Haase
Date: Tuesday, March 14, 2017 @ 19:26:11
  Author: svenstaro
Revision: 216323

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

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

-+
 /PKGBUILD   |  172 ++
 /emscripten.install |   22 
 /emscripten.sh  |   14 ++
 community-i686/PKGBUILD |   86 -
 community-i686/emscripten.install   |   11 --
 community-i686/emscripten.sh|7 -
 community-x86_64/PKGBUILD   |   86 -
 community-x86_64/emscripten.install |   11 --
 community-x86_64/emscripten.sh  |7 -
 9 files changed, 208 insertions(+), 208 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-14 19:25:57 UTC (rev 216322)
+++ community-i686/PKGBUILD 2017-03-14 19:26:11 UTC (rev 216323)
@@ -1,86 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: carstene1ns  - http://git.io/ctPKG
-# Contributor: Stefan Husmann 
-# Contributor: Vlad Kolotvin 
-
-pkgname=emscripten
-pkgver=1.37.3
-pkgrel=1
-pkgdesc="LLVM-based project that compiles C and C++ into highly-optimizable 
JavaScript for the web"
-arch=('i686' 'x86_64')
-url="http://emscripten.org;
-license=('custom')
-depends=('nodejs' 'python2')
-makedepends=('cmake' 'libxml2')
-optdepends=('java-environment: for using clojure'
-'ruby: for using websockify addon')
-install=$pkgname.install
-source=(emscripten-$pkgver.tar.gz::"https://github.com/kripken/emscripten/archive/$pkgver.tar.gz;
-
emscripten-fastcomp-$pkgver.tar.gz::"https://github.com/kripken/emscripten-fastcomp/archive/$pkgver.tar.gz;
-
emscripten-fastcomp-clang-$pkgver.tar.gz::"https://github.com/kripken/emscripten-fastcomp-clang/archive/$pkgver.tar.gz;
-"emscripten.sh")
-sha512sums=('d31712a7490423251a773f19be55661d175a89391458292d7aaafb7f557fa8baad73ba7ed335d5da775a9ba29256329b5a5d5034929b7fae3d4dc83e3432e85c'
-
'd1bd8c1358522b95dc2ca992d6f0e2aee6fdc209a8baa58ac7312633a1346dc301b2bda0add9cc3c4b576fce4ff17a6dd54fd93655f731e7395d21288d4f6b54'
-
'75fea6fdcfea1577333a9ab77b3081db79c07e483e78a27d1a6056163050f3f923d5ad88a24e85bef70561f5197c80eaa8b2fec87e4d24810fe7a926ff7d2319'
-
'52007717c21c22f5d9f027268de2516e969f2ffb8e37121f75ca2697b7ddcde6c0be9636d19df7b3c2e89bc769f5361750c62f9fcb84d224cde3c8626bc9c93b')
-
-prepare() {
-  cd emscripten-fastcomp-$pkgver
-
-  # reset folder for out-of-source build
-  rm -rf build
-  mkdir build
-
-  # put clang source into the right place (http://git.io/i1GBkg)
-  rm -rf tools/clang
-  ln -s "$srcdir"/emscripten-fastcomp-clang-$pkgver tools/clang
-
-  # python2 shebang fixes
-  cd ../emscripten-$pkgver
-  sed '1s|python$|python2|' -i $(find third_party tools -name \*.py) emrun
-
-  # adapt config file template to use our custom environment variable and path
-  sed -e "s|getenv('LLVM')|getenv('EMSCRIPTEN_FASTCOMP')|" \
--e 's|{{{ LLVM_ROOT }}}|/usr/lib/emscripten-fastcomp|' \
--i tools/settings_template_readonly.py
-}
-
-build() {
-  cd emscripten-fastcomp-$pkgver/build
-
-  CC=gcc CXX=g++ cmake .. -DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=YES \
--DLLVM_TARGETS_TO_BUILD="X86;JSBackend" \
--DLLVM_BUILD_RUNTIME=OFF \
--DLLVM_INCLUDE_EXAMPLES=OFF \
--DLLVM_INCLUDE_TESTS=OFF \
--DCLANG_INCLUDE_TESTS=OFF
-  make
-}
-
-package() {
-  # exported variables
-  install -Dm755 "$srcdir"/emscripten.sh "$pkgdir"/etc/profile.d/emscripten.sh
-
-  # LLVM-backend, TODO: include only needed tools
-  cd "$srcdir"/emscripten-fastcomp-$pkgver
-  install -Dm644 emscripten-version.txt 
"$pkgdir"/usr/lib/emscripten-fastcomp/emscripten-version.txt
-  install -m755 build/bin/* "$pkgdir"/usr/lib/emscripten-fastcomp
-
-  # copy structure
-  cd "$srcdir"/emscripten-$pkgver
-  install -d 

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

2017-03-14 Thread Sven-Hendrik Haase
Date: Tuesday, March 14, 2017 @ 19:25:57
  Author: svenstaro
Revision: 216322

upgpkg: emscripten 1.37.5-1

upstream release 1.37.5

Modified:
  emscripten/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 17:28:43 UTC (rev 216321)
+++ PKGBUILD2017-03-14 19:25:57 UTC (rev 216322)
@@ -4,7 +4,7 @@
 # Contributor: Vlad Kolotvin 
 
 pkgname=emscripten
-pkgver=1.37.3
+pkgver=1.37.5
 pkgrel=1
 pkgdesc="LLVM-based project that compiles C and C++ into highly-optimizable 
JavaScript for the web"
 arch=('i686' 'x86_64')
@@ -19,9 +19,9 @@
 
emscripten-fastcomp-$pkgver.tar.gz::"https://github.com/kripken/emscripten-fastcomp/archive/$pkgver.tar.gz;
 
emscripten-fastcomp-clang-$pkgver.tar.gz::"https://github.com/kripken/emscripten-fastcomp-clang/archive/$pkgver.tar.gz;
 "emscripten.sh")
-sha512sums=('d31712a7490423251a773f19be55661d175a89391458292d7aaafb7f557fa8baad73ba7ed335d5da775a9ba29256329b5a5d5034929b7fae3d4dc83e3432e85c'
-
'd1bd8c1358522b95dc2ca992d6f0e2aee6fdc209a8baa58ac7312633a1346dc301b2bda0add9cc3c4b576fce4ff17a6dd54fd93655f731e7395d21288d4f6b54'
-
'75fea6fdcfea1577333a9ab77b3081db79c07e483e78a27d1a6056163050f3f923d5ad88a24e85bef70561f5197c80eaa8b2fec87e4d24810fe7a926ff7d2319'
+sha512sums=('2951474f300178044435fc5ce7930bdb0ddc2d6c4206e71e04b4323dac627ab444fcfe8fc4be71a25be1b3632c1132bc5ff2441b08cf3e6325e104c55fdfa78c'
+
'f91e7d250bec3c19c3c47f13a2dbbc83247770d8c02b84578fc5eedd2747764946c3efc3c1f4e52a3c2373ee072f4bb2fce4156f49acdbc8b6600598e7c72c83'
+
'fb46c8a813d1381cd95b486faaee90b4e035ecce2ca534c6362dad6e5d527cdcfabc790f98983a26f9c22b3be04b09d4ba9e5eb565c3ddccafb4ae6d24b027c3'
 
'52007717c21c22f5d9f027268de2516e969f2ffb8e37121f75ca2697b7ddcde6c0be9636d19df7b3c2e89bc769f5361750c62f9fcb84d224cde3c8626bc9c93b')
 
 prepare() {


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

2017-03-14 Thread Antonio Rojas
Date: Tuesday, March 14, 2017 @ 18:34:13
  Author: arojas
Revision: 290840

khtml is needed for Plan (FS#53310)

Modified:
  calligra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 17:20:54 UTC (rev 290839)
+++ PKGBUILD2017-03-14 18:34:13 UTC (rev 290840)
@@ -12,7 +12,7 @@
 url='http://www.calligra-suite.org/'
 license=('FDL1.2' 'GPL2' 'LGPL')
 depends=('kcmutils' 'knotifyconfig' 'kross' 'ktexteditor' 'threadweaver' 
'kactivities' 'kdiagram' 'kreport' 'libspnav'
- 'gsl' 'openexr' 'kcontacts' 'kcalcore' 'qca-qt5' 'poppler-qt5' 
'libodfgen' 'qt5-webkit' 'cauchy')
+ 'gsl' 'openexr' 'kcontacts' 'kcalcore' 'qca-qt5' 'poppler-qt5' 
'libodfgen' 'qt5-webkit' 'cauchy' 'khtml')
 makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'kdesignerplugin' 
'khtml' 'boost' 'openjpeg'
  'libwpg' 'okular' 'eigen' 'marble-common' 'pstoedit' 'libvisio' 
'libetonyek' 'libodfgen' 'libwps' 'vc')
 optdepends=('libwpg: Corel WordPerfect Graphics image importer'
@@ -21,7 +21,6 @@
 'libetonyek: Apple Keynote import filter'
 'pstoedit: EPS to SVG filter'
 'poppler: PDF to SVG filter'
-'khtml: HTML to ODS filter'
 'openjpeg: PDF to SVG filer')
 conflicts=('calligra-devtools' 'calligra-extras' 'calligra-filters' 
'calligra-karbon' 'karbon' 'calligra-libs' 'calligra-plan'
   'calligra-plugins' 'calligra-sheets' 'calligra-stage' 
'calligra-words' 'calligra-l10n' 'calligra-meta'


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

2017-03-14 Thread Felix Yan
Date: Tuesday, March 14, 2017 @ 17:28:43
  Author: felixonmars
Revision: 216321

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

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

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

Copied: hoogle/repos/community-staging-i686/PKGBUILD (from rev 216320, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-14 17:28:43 UTC (rev 216321)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.9
+pkgrel=25
+pkgdesc="Haskell API Search"
+url="http://www.haskell.org/hoogle/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi' 'zlib')
+makedepends=("ghc=8.0.1" "haskell-quickcheck" "haskell-aeson" 
"haskell-cmdargs" "haskell-conduit"
+ "haskell-conduit-extra" "haskell-connection" "haskell-extra" 
"haskell-src-exts"
+ "haskell-http-conduit" "haskell-http-types" "haskell-js-flot" 
"haskell-js-jquery"
+ "haskell-mmap" "haskell-network" "haskell-network-uri" 
"haskell-old-locale"
+ "haskell-process-extras" "haskell-resourcet" "haskell-tar" 
"haskell-text"
+ "haskell-uniplate" "haskell-utf8-string" "haskell-vector" 
"haskell-wai"
+ "haskell-wai-logger" "haskell-warp" "haskell-warp-tls" 
"haskell-zlib")
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('93f584c5f7fc6a57ee50803ae8df5e6c41051a3177044b273cb7fbcd39d11874')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \
+-fnetwork-uri
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+}

Copied: hoogle/repos/community-staging-x86_64/PKGBUILD (from rev 216320, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-14 17:28:43 UTC (rev 216321)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.9
+pkgrel=25
+pkgdesc="Haskell API Search"
+url="http://www.haskell.org/hoogle/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi' 'zlib')
+makedepends=("ghc=8.0.1" "haskell-quickcheck" "haskell-aeson" 
"haskell-cmdargs" "haskell-conduit"
+ "haskell-conduit-extra" "haskell-connection" "haskell-extra" 
"haskell-src-exts"
+ "haskell-http-conduit" "haskell-http-types" "haskell-js-flot" 
"haskell-js-jquery"
+ "haskell-mmap" "haskell-network" "haskell-network-uri" 
"haskell-old-locale"
+ "haskell-process-extras" "haskell-resourcet" "haskell-tar" 
"haskell-text"
+ "haskell-uniplate" "haskell-utf8-string" "haskell-vector" 
"haskell-wai"
+ "haskell-wai-logger" "haskell-warp" "haskell-warp-tls" 
"haskell-zlib")
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('93f584c5f7fc6a57ee50803ae8df5e6c41051a3177044b273cb7fbcd39d11874')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \
+-fnetwork-uri
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+}


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

2017-03-14 Thread Felix Yan
Date: Tuesday, March 14, 2017 @ 17:28:17
  Author: felixonmars
Revision: 216320

upgpkg: hoogle 5.0.9-25

rebuild with tls,1.3.10

Modified:
  hoogle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 17:21:07 UTC (rev 216319)
+++ PKGBUILD2017-03-14 17:28:17 UTC (rev 216320)
@@ -4,7 +4,7 @@
 
 pkgname=hoogle
 pkgver=5.0.9
-pkgrel=24
+pkgrel=25
 pkgdesc="Haskell API Search"
 url="http://www.haskell.org/hoogle/;
 license=("custom:BSD3")


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

2017-03-14 Thread Felix Yan
Date: Tuesday, March 14, 2017 @ 17:21:07
  Author: felixonmars
Revision: 216319

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

Added:
  git-annex/repos/community-staging-i686/
  git-annex/repos/community-staging-i686/PKGBUILD
(from rev 216318, git-annex/trunk/PKGBUILD)
  git-annex/repos/community-staging-x86_64/
  git-annex/repos/community-staging-x86_64/PKGBUILD
(from rev 216318, git-annex/trunk/PKGBUILD)

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

Copied: git-annex/repos/community-staging-i686/PKGBUILD (from rev 216318, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-14 17:21:07 UTC (rev 216319)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20170301.1
+pkgrel=14
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('git' 'rsync' 'libxml2' 'gsasl' 'file')
+makedepends=("ghc=8.0.1" "git" "haskell-aeson" "haskell-async" "haskell-aws" 
"haskell-blaze-builder"
+ "haskell-bloomfilter" "haskell-byteable" 
"haskell-case-insensitive"
+ "haskell-clientsession" "haskell-concurrent-output" 
"haskell-conduit"
+ "haskell-crypto-api" "haskell-cryptonite" "haskell-data-default" 
"haskell-dav"
+ "haskell-dbus" "haskell-disk-free-space" "haskell-dlist" 
"haskell-dns"
+ "haskell-edit-distance" "haskell-esqueleto" "haskell-exceptions" 
"haskell-fdo-notify"
+ "haskell-feed" "haskell-hinotify" "haskell-hslogger" 
"haskell-http-client"
+ "haskell-http-conduit" "haskell-http-types" "haskell-ifelse" 
"haskell-magic"
+ "haskell-missingh" "haskell-monad-control" "haskell-monad-logger" 
"haskell-mountpoints"
+ "haskell-mtl" "haskell-network" "haskell-network-info" 
"haskell-network-multicast"
+ "haskell-network-uri" "haskell-old-locale" 
"haskell-optparse-applicative"
+ "haskell-path-pieces" "haskell-persistent" 
"haskell-persistent-sqlite"
+ "haskell-persistent-template" "haskell-quickcheck" 
"haskell-random"
+ "haskell-regex-tdfa" "haskell-resourcet" "haskell-safesemaphore" 
"haskell-sandi"
+ "haskell-securemem" "haskell-shakespeare" "haskell-socks" 
"haskell-stm"
+ "haskell-stm-chans" "haskell-tasty" "haskell-tasty-hunit" 
"haskell-tasty-quickcheck"
+ "haskell-tasty-rerun" "haskell-text" "haskell-torrent" 
"haskell-unix-compat"
+ "haskell-unordered-containers" "haskell-utf8-string" 
"haskell-uuid" "haskell-wai"
+ "haskell-wai-extra" "haskell-warp" "haskell-warp-tls" 
"haskell-yesod"
+ "haskell-yesod-core" "haskell-yesod-default" "haskell-yesod-form"
+ "haskell-yesod-static")
+source=("git+https://git.joeyh.name/git/git-annex.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd git-annex
+  
+  runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/$pkgname" \
+-fnetwork-uri -fconcurrentoutput -ftorrentparser \
+-ftestsuite -f-androidsplice -f-android -fproduction -fpairing -fwebapp \
+-fassistant -fwebdav -fs3 -f-benchmark -fdbus -fmagicmime
+  runhaskell Setup build
+}
+
+package() {
+  cd git-annex
+  runhaskell Setup copy --destdir="$pkgdir"
+  make DESTDIR="$pkgdir" install-misc
+
+  rm "$pkgdir"/usr/share/doc/git-annex/COPYRIGHT
+  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
+}

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 216318, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-14 17:21:07 UTC (rev 216319)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20170301.1
+pkgrel=14
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('git' 'rsync' 'libxml2' 'gsasl' 'file')
+makedepends=("ghc=8.0.1" "git" "haskell-aeson" "haskell-async" "haskell-aws" 
"haskell-blaze-builder"
+ "haskell-bloomfilter" "haskell-byteable" 
"haskell-case-insensitive"
+ "haskell-clientsession" "haskell-concurrent-output" 
"haskell-conduit"
+ "haskell-crypto-api" "haskell-cryptonite" 

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

2017-03-14 Thread Felix Yan
Date: Tuesday, March 14, 2017 @ 17:20:39
  Author: felixonmars
Revision: 216318

upgpkg: git-annex 6.20170301.1-14

rebuild with tls,1.3.10

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 17:05:40 UTC (rev 216317)
+++ PKGBUILD2017-03-14 17:20:39 UTC (rev 216318)
@@ -4,7 +4,7 @@
 
 pkgname=git-annex
 pkgver=6.20170301.1
-pkgrel=13
+pkgrel=14
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/;
 license=("AGPL3")


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

2017-03-14 Thread Florian Pritz
Date: Tuesday, March 14, 2017 @ 17:20:49
  Author: bluewind
Revision: 290838

upgpkg: netctl 1.13-1

upstream update

Modified:
  netctl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 15:42:50 UTC (rev 290837)
+++ PKGBUILD2017-03-14 17:20:49 UTC (rev 290838)
@@ -1,8 +1,8 @@
 # Maintainer: Jouke Witteveen 
 
 pkgname=netctl
-pkgver=1.12
-pkgrel=2
+pkgver=1.13
+pkgrel=1
 pkgdesc='Profile based systemd network management'
 url='http://projects.archlinux.org/netctl.git/'
 license=('GPL')
@@ -21,8 +21,8 @@
)
 
source=(https://sources.archlinux.org/other/packages/netctl/netctl-${pkgver}.tar.xz{,.sig})
 arch=('any')
-md5sums=('8b7ccdfb585ea50f5b9022c265ba8c96'
- 'ce7b66719f03fd71142658abb103bd5a')
+md5sums=('a8ae5a62d10d7660bb2dd43faee8b794'
+ 'SKIP')
 validpgpkeys=('CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E')  # Florian Pritz
 
 package() {


[arch-commits] Commit in netctl/repos (testing-any testing-any/PKGBUILD)

2017-03-14 Thread Florian Pritz
Date: Tuesday, March 14, 2017 @ 17:20:54
  Author: bluewind
Revision: 290839

archrelease: copy trunk to testing-any

Added:
  netctl/repos/testing-any/
  netctl/repos/testing-any/PKGBUILD
(from rev 290838, netctl/trunk/PKGBUILD)

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

Copied: netctl/repos/testing-any/PKGBUILD (from rev 290838, 
netctl/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2017-03-14 17:20:54 UTC (rev 290839)
@@ -0,0 +1,36 @@
+# Maintainer: Jouke Witteveen 
+
+pkgname=netctl
+pkgver=1.13
+pkgrel=1
+pkgdesc='Profile based systemd network management'
+url='http://projects.archlinux.org/netctl.git/'
+license=('GPL')
+groups=('base')
+depends=('coreutils' 'iproute2' 'openresolv' 'systemd')
+# The source tarball includes pre-built (using asciidoc) documentation.
+makedepends=('pkg-config')
+optdepends=('dialog: for the menu based wifi assistant'
+'dhclient: for DHCP support (or dhcpcd)'
+'dhcpcd: for DHCP support (or dhclient)'
+'wpa_supplicant: for wireless networking support'
+'ifplugd: for automatic wired connections through netctl-ifplugd'
+'wpa_actiond: for automatic wireless connections through 
netctl-auto'
+'ppp: for PPP connections'
+'openvswitch: for Open vSwitch connections'
+   )
+source=(https://sources.archlinux.org/other/packages/netctl/netctl-${pkgver}.tar.xz{,.sig})
+arch=('any')
+md5sums=('a8ae5a62d10d7660bb2dd43faee8b794'
+ 'SKIP')
+validpgpkeys=('CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E')  # Florian Pritz
+
+package() {
+  cd "$srcdir/netctl-${pkgver}"
+  make DESTDIR="$pkgdir" install
+
+  # Shell Completion
+  install -D -m644 contrib/bash-completion 
"$pkgdir/usr/share/bash-completion/completions/netctl"
+  install -D -m644 contrib/zsh-completion 
"$pkgdir/usr/share/zsh/site-functions/_netctl"
+}
+


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

2017-03-14 Thread Jelle van der Waa
Date: Tuesday, March 14, 2017 @ 17:05:40
  Author: jelle
Revision: 216317

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

Added:
  python-psutil/repos/community-i686/PKGBUILD
(from rev 216316, python-psutil/trunk/PKGBUILD)
  python-psutil/repos/community-x86_64/PKGBUILD
(from rev 216316, python-psutil/trunk/PKGBUILD)
Deleted:
  python-psutil/repos/community-i686/PKGBUILD
  python-psutil/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-14 17:05:30 UTC (rev 216316)
+++ community-i686/PKGBUILD 2017-03-14 17:05:40 UTC (rev 216317)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-pkgbase=python-psutil
-pkgname=('python-psutil' 'python2-psutil')
-pkgver=5.1.3
-pkgrel=1
-arch=('i686' 'x86_64')
-url='https://github.com/giampaolo/psutil'
-license=('custom: BSD')
-makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
-checkdepends=('net-tools' 'procps-ng' 'python2-nose')
-source=("https://github.com/giampaolo/psutil/archive/release-$pkgver.tar.gz;)
-md5sums=('8fd2236682052f4356a1b8a38341a012')
-
-build() {
-  cd psutil-release-$pkgver
-
-  msg2 python
-  python setup.py build --build-lib=build/python
-
-  msg2 python2
-  python2 setup.py build --build-lib=build/python2
-  find build/python2 -type f -exec \
-sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
-}
-
-check() {
-  cd psutil-release-$pkgver
-
-  msg2 python
-  export PYTHONPATH="$PWD/build/python"
-  # FIXME: requires 
https://github.com/giampaolo/psutil/issues/538#issuecomment-68549637 to be 
resolved.
-  #python psutil/tests/runner.py
-
-
-  msg2 python2
-  export PYTHONPATH="$PWD/build/python2"
-  #python2 psutil/tests/runner.py
-}
-
-package_python-psutil() {
-  pkgdesc='A cross-platform process and system utilities module for Python'
-  depends=('glibc' 'python')
-
-  cd psutil-release-$pkgver
-  python setup.py build --build-lib=build/python \
-  install --root="$pkgdir" --optimize=1
-  install -D -m 644 LICENSE "$pkgdir/"usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-psutil() {
-  pkgdesc='A cross-platform process and system utilities module for Python2'
-  depends=('glibc' 'python2')
-
-  cd psutil-release-$pkgver
-  python2 setup.py build --build-lib=build/python2 \
-   install --root="$pkgdir" --optimize=1
-  install -D -m 644 LICENSE "$pkgdir/"usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-psutil/repos/community-i686/PKGBUILD (from rev 216316, 
python-psutil/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-14 17:05:40 UTC (rev 216317)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+pkgbase=python-psutil
+pkgname=('python-psutil' 'python2-psutil')
+pkgver=5.2.0
+pkgrel=1
+arch=('i686' 'x86_64')
+url='https://github.com/giampaolo/psutil'
+license=('custom: BSD')
+makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
+checkdepends=('net-tools' 'procps-ng' 'python2-nose')
+source=("https://github.com/giampaolo/psutil/archive/release-$pkgver.tar.gz;)
+md5sums=('4380b76365ff55b5de0aa1d1578e700c')
+
+build() {
+  cd psutil-release-$pkgver
+
+  msg2 python
+  python setup.py build --build-lib=build/python
+
+  msg2 python2
+  python2 setup.py build --build-lib=build/python2
+  find build/python2 -type f -exec \
+sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
+}
+
+check() {
+  cd psutil-release-$pkgver
+
+  msg2 python
+  export PYTHONPATH="$PWD/build/python"
+  # FIXME: requires 
https://github.com/giampaolo/psutil/issues/538#issuecomment-68549637 to be 
resolved.
+  #python psutil/tests/runner.py
+
+
+  msg2 python2
+  export PYTHONPATH="$PWD/build/python2"
+  #python2 psutil/tests/runner.py
+}
+
+package_python-psutil() {
+  pkgdesc='A cross-platform process and system utilities module for Python'
+  depends=('glibc' 'python')
+
+  cd psutil-release-$pkgver
+  python setup.py build --build-lib=build/python \
+  install --root="$pkgdir" --optimize=1
+  install -D -m 644 LICENSE "$pkgdir/"usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-psutil() {
+  pkgdesc='A cross-platform process and system utilities module for Python2'
+  depends=('glibc' 'python2')
+
+  cd psutil-release-$pkgver
+  python2 setup.py build --build-lib=build/python2 \
+   install --root="$pkgdir" --optimize=1
+  install -D -m 644 LICENSE "$pkgdir/"usr/share/licenses/$pkgname/LICENSE

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

2017-03-14 Thread Jelle van der Waa
Date: Tuesday, March 14, 2017 @ 17:05:30
  Author: jelle
Revision: 216316

upgpkg: python-psutil 5.2.0-1

Modified:
  python-psutil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 17:05:15 UTC (rev 216315)
+++ PKGBUILD2017-03-14 17:05:30 UTC (rev 216316)
@@ -3,7 +3,7 @@
 
 pkgbase=python-psutil
 pkgname=('python-psutil' 'python2-psutil')
-pkgver=5.1.3
+pkgver=5.2.0
 pkgrel=1
 arch=('i686' 'x86_64')
 url='https://github.com/giampaolo/psutil'
@@ -11,7 +11,7 @@
 makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
 checkdepends=('net-tools' 'procps-ng' 'python2-nose')
 source=("https://github.com/giampaolo/psutil/archive/release-$pkgver.tar.gz;)
-md5sums=('8fd2236682052f4356a1b8a38341a012')
+md5sums=('4380b76365ff55b5de0aa1d1578e700c')
 
 build() {
   cd psutil-release-$pkgver


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

2017-03-14 Thread Felix Yan
Date: Tuesday, March 14, 2017 @ 17:05:15
  Author: felixonmars
Revision: 216315

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

Added:
  haskell-warp-tls/repos/community-staging-i686/
  haskell-warp-tls/repos/community-staging-i686/PKGBUILD
(from rev 216314, haskell-warp-tls/trunk/PKGBUILD)
  haskell-warp-tls/repos/community-staging-x86_64/
  haskell-warp-tls/repos/community-staging-x86_64/PKGBUILD
(from rev 216314, haskell-warp-tls/trunk/PKGBUILD)

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

Copied: haskell-warp-tls/repos/community-staging-i686/PKGBUILD (from rev 
216314, haskell-warp-tls/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-14 17:05:15 UTC (rev 216315)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=warp-tls
+pkgname=haskell-warp-tls
+pkgver=3.2.3
+pkgrel=7
+pkgdesc="HTTP over TLS support for Warp via the TLS package"
+url="http://github.com/yesodweb/wai;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-cryptonite" "haskell-data-default-class" 
"haskell-network"
+ "haskell-streaming-commons" "haskell-tls" "haskell-wai" 
"haskell-warp")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('f5c4c871fee62021a7b3b22d1f2af3543843a0c54632da6f7be9ef58e65fa292')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-warp-tls/repos/community-staging-x86_64/PKGBUILD (from rev 
216314, haskell-warp-tls/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-14 17:05:15 UTC (rev 216315)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=warp-tls
+pkgname=haskell-warp-tls
+pkgver=3.2.3
+pkgrel=7
+pkgdesc="HTTP over TLS support for Warp via the TLS package"
+url="http://github.com/yesodweb/wai;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-cryptonite" "haskell-data-default-class" 
"haskell-network"
+ "haskell-streaming-commons" "haskell-tls" "haskell-wai" 
"haskell-warp")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('f5c4c871fee62021a7b3b22d1f2af3543843a0c54632da6f7be9ef58e65fa292')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy 

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

2017-03-14 Thread Felix Yan
Date: Tuesday, March 14, 2017 @ 17:04:46
  Author: felixonmars
Revision: 216314

upgpkg: haskell-warp-tls 3.2.3-7

rebuild with tls,1.3.10

Modified:
  haskell-warp-tls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 17:01:24 UTC (rev 216313)
+++ PKGBUILD2017-03-14 17:04:46 UTC (rev 216314)
@@ -5,7 +5,7 @@
 _hkgname=warp-tls
 pkgname=haskell-warp-tls
 pkgver=3.2.3
-pkgrel=6
+pkgrel=7
 pkgdesc="HTTP over TLS support for Warp via the TLS package"
 url="http://github.com/yesodweb/wai;
 license=("MIT")


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

2017-03-14 Thread Felix Yan
Date: Tuesday, March 14, 2017 @ 17:01:24
  Author: felixonmars
Revision: 216313

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

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

+
 community-staging-i686/PKGBUILD|   83 +++
 community-staging-i686/stack.install   |4 +
 community-staging-x86_64/PKGBUILD  |   83 +++
 community-staging-x86_64/stack.install |4 +
 4 files changed, 174 insertions(+)

Copied: stack/repos/community-staging-i686/PKGBUILD (from rev 216312, 
stack/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-14 17:01:24 UTC (rev 216313)
@@ -0,0 +1,83 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=stack
+pkgname=(stack haskell-stack)
+pkgver=1.3.2
+pkgrel=61
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-annotated-wl-pprint" 
"haskell-ansi-terminal"
+ "haskell-async" "haskell-attoparsec" "haskell-base-compat" 
"haskell-base16-bytestring"
+ "haskell-base64-bytestring" "haskell-binary-tagged" 
"haskell-blaze-builder"
+ "haskell-byteable" "haskell-clock" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptohash" "haskell-cryptohash-conduit" 
"haskell-either" "haskell-errors"
+ "haskell-exceptions" "haskell-extra" "haskell-fast-logger" 
"haskell-file-embed"
+ "haskell-filelock" "haskell-fsnotify" "haskell-generic-deriving" 
"haskell-gitrev"
+ "haskell-hashable" "haskell-hastache" "haskell-hit" 
"haskell-http-client"
+ "haskell-http-client-tls" "haskell-http-conduit" 
"haskell-http-types" "haskell-hpack"
+ "haskell-lifted-async" "haskell-lifted-base" "haskell-microlens"
+ "haskell-monad-control" "haskell-monad-logger" 
"haskell-monad-unlift" "haskell-mtl"
+ "haskell-open-browser" "haskell-optparse-applicative" 
"haskell-optparse-simple"
+ "haskell-path" "haskell-path-io" "haskell-persistent" 
"haskell-persistent-sqlite"
+ "haskell-persistent-template" "haskell-pid1" 
"haskell-project-template"
+ "haskell-regex-applicative-text" "haskell-resourcet" 
"haskell-retry" "haskell-safe"
+ "haskell-safe-exceptions" "haskell-semigroups" "haskell-split" 
"haskell-stm"
+ "haskell-store" "haskell-streaming-commons" "haskell-tar" 
"haskell-temporary"
+ "haskell-text" "haskell-text-binary" "haskell-text-metrics" 
"haskell-tls"
+ "haskell-transformers-base" "haskell-unicode-transforms" 
"haskell-unix-compat"
+ "haskell-unordered-containers" "haskell-vector" 
"haskell-vector-binary-instances"
+ "haskell-yaml" "haskell-zip-archive" "haskell-zlib")
+source=("https://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('488b9292ea605c92f6ebf79b233e8e374d857b21053051cb44b305dad8f0d3f7')
+
+prepare() {
+sed -i 's/hpack >=0.14.0 && <0.16,/hpack >=0.14.0 \&\& <0.17,/' 
${pkgbase}-${pkgver}/${pkgbase}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package_stack() {
+depends=('gmp' 'libffi' 'zlib')
+optdepends=('ghc')
+install="stack.install"
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+install -Dm644 

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

2017-03-14 Thread Felix Yan
Date: Tuesday, March 14, 2017 @ 17:00:54
  Author: felixonmars
Revision: 216312

upgpkg: stack 1.3.2-61

rebuild with tls,1.3.10

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 16:09:16 UTC (rev 216311)
+++ PKGBUILD2017-03-14 17:00:54 UTC (rev 216312)
@@ -5,7 +5,7 @@
 pkgbase=stack
 pkgname=(stack haskell-stack)
 pkgver=1.3.2
-pkgrel=60
+pkgrel=61
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("custom:BSD3")


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

2017-03-14 Thread Felix Yan
Date: Tuesday, March 14, 2017 @ 16:09:16
  Author: felixonmars
Revision: 216311

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

Added:
  purescript/repos/community-staging-i686/
  purescript/repos/community-staging-i686/PKGBUILD
(from rev 216310, purescript/trunk/PKGBUILD)
  purescript/repos/community-staging-i686/http-client-0.5.patch
(from rev 216310, purescript/trunk/http-client-0.5.patch)
  purescript/repos/community-staging-x86_64/
  purescript/repos/community-staging-x86_64/PKGBUILD
(from rev 216310, purescript/trunk/PKGBUILD)
  purescript/repos/community-staging-x86_64/http-client-0.5.patch
(from rev 216310, purescript/trunk/http-client-0.5.patch)

+
 community-staging-i686/PKGBUILD|   57 ++
 community-staging-i686/http-client-0.5.patch   |   90 +++
 community-staging-x86_64/PKGBUILD  |   57 ++
 community-staging-x86_64/http-client-0.5.patch |   90 +++
 4 files changed, 294 insertions(+)

Copied: purescript/repos/community-staging-i686/PKGBUILD (from rev 216310, 
purescript/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-14 16:09:16 UTC (rev 216311)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=purescript
+pkgver=0.10.7
+pkgrel=14
+pkgdesc="PureScript Programming Language Compiler"
+url="http://www.purescript.org/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi' 'zlib')
+makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-aeson-better-errors" 
"haskell-aeson-pretty"
+ "haskell-ansi-terminal" "haskell-ansi-wl-pprint" 
"haskell-base-compat"
+ "haskell-blaze-html" "haskell-bower-json" "haskell-boxes" 
"haskell-cheapskate"
+ "haskell-clock" "haskell-data-ordlist" "haskell-dlist" 
"haskell-edit-distance"
+ "haskell-file-embed" "haskell-foldl" "haskell-fsnotify" 
"haskell-glob"
+ "haskell-http-client" "haskell-http-types" 
"haskell-language-javascript"
+ "haskell-lens" "haskell-lifted-base" "haskell-monad-control" 
"haskell-monad-logger"
+ "haskell-mtl" "haskell-optparse-applicative" "haskell-parallel" 
"haskell-parsec"
+ "haskell-pattern-arrows" "haskell-pipes" "haskell-pipes-http" 
"haskell-protolude"
+ "haskell-regex-tdfa" "haskell-safe" "haskell-semigroups" 
"haskell-sourcemap"
+ "haskell-spdx" "haskell-split" "haskell-stm" "haskell-syb" 
"haskell-system-filepath"
+ "haskell-text" "haskell-transformers-base" 
"haskell-transformers-compat"
+ "haskell-turtle" "haskell-unordered-containers" 
"haskell-utf8-string"
+ "haskell-vector" "haskell-wai" "haskell-wai-websockets" 
"haskell-warp"
+ "haskell-websockets")
+optdepends=('pulp: for development environment')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;
+http-client-0.5.patch)
+sha256sums=('85dff2f4b6916e9d45b6a1b2674dc6c91c56ac6c1597f627d5f1cbee9d0b3a9d'
+'2e8ac0165d8dfde7f2ec27f4b77fb4139a435cf2148d3853ec95455334601b03')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+patch -p1 -i ../http-client-0.5.patch
+
+sed -e 's/pipes >= 4.0.0 && < 4.3.0,/pipes >= 4.0.0 \&\& < 4.4.0,/' \
+-e 's/websockets >= 0.9 && <0.10/websockets >= 0.9 \&\& <0.11/' \
+-e 's/aeson >= 0.8 && < 1.0,/aeson >= 0.8,/' \
+-i purescript.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgbase" \
+--libsubdir=\$compiler/site-local/\$pkgid
+LC_CTYPE=en_US.UTF-8 runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share}
+}

Copied: purescript/repos/community-staging-i686/http-client-0.5.patch (from rev 
216310, purescript/trunk/http-client-0.5.patch)
===
--- community-staging-i686/http-client-0.5.patch
(rev 0)
+++ community-staging-i686/http-client-0.5.patch2017-03-14 16:09:16 UTC 
(rev 216311)
@@ -0,0 +1,90 @@
+From e0527fb7f10721870014d7c08b1a2f8f5bf2edcf Mon Sep 17 00:00:00 2001
+From: Oleg Grenrus 
+Date: Mon, 22 Aug 2016 17:51:42 +0300
+Subject: [PATCH] Support http-client-0.5
+
+---
+ purescript.cabal   |  2 +-
+ src/Language/PureScript/Ide/Pursuit.hs | 44 --
+ stack.yaml  

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

2017-03-14 Thread Felix Yan
Date: Tuesday, March 14, 2017 @ 16:08:49
  Author: felixonmars
Revision: 216310

upgpkg: purescript 0.10.7-14

rebuild with tls,1.3.10

Modified:
  purescript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 16:06:37 UTC (rev 216309)
+++ PKGBUILD2017-03-14 16:08:49 UTC (rev 216310)
@@ -4,7 +4,7 @@
 
 pkgname=purescript
 pkgver=0.10.7
-pkgrel=13
+pkgrel=14
 pkgdesc="PureScript Programming Language Compiler"
 url="http://www.purescript.org/;
 license=("custom:BSD3")


[arch-commits] Commit in open-vm-tools/repos (28 files)

2017-03-14 Thread Sergej Pupykin
Date: Tuesday, March 14, 2017 @ 16:06:37
  Author: spupykin
Revision: 216309

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

Added:
  open-vm-tools/repos/community-staging-i686/PKGBUILD
(from rev 216308, open-vm-tools/trunk/PKGBUILD)
  open-vm-tools/repos/community-staging-i686/network-script
(from rev 216308, open-vm-tools/trunk/network-script)
  open-vm-tools/repos/community-staging-i686/tools.conf
(from rev 216308, open-vm-tools/trunk/tools.conf)
  open-vm-tools/repos/community-staging-i686/vmtoolsd.service
(from rev 216308, open-vm-tools/trunk/vmtoolsd.service)
  open-vm-tools/repos/community-staging-i686/vmware-guestd
(from rev 216308, open-vm-tools/trunk/vmware-guestd)
  open-vm-tools/repos/community-staging-i686/vmware-vmblock-fuse.service
(from rev 216308, open-vm-tools/trunk/vmware-vmblock-fuse.service)
  open-vm-tools/repos/community-staging-i686/xautostart.conf
(from rev 216308, open-vm-tools/trunk/xautostart.conf)
  open-vm-tools/repos/community-staging-x86_64/PKGBUILD
(from rev 216308, open-vm-tools/trunk/PKGBUILD)
  open-vm-tools/repos/community-staging-x86_64/network-script
(from rev 216308, open-vm-tools/trunk/network-script)
  open-vm-tools/repos/community-staging-x86_64/tools.conf
(from rev 216308, open-vm-tools/trunk/tools.conf)
  open-vm-tools/repos/community-staging-x86_64/vmtoolsd.service
(from rev 216308, open-vm-tools/trunk/vmtoolsd.service)
  open-vm-tools/repos/community-staging-x86_64/vmware-guestd
(from rev 216308, open-vm-tools/trunk/vmware-guestd)
  open-vm-tools/repos/community-staging-x86_64/vmware-vmblock-fuse.service
(from rev 216308, open-vm-tools/trunk/vmware-vmblock-fuse.service)
  open-vm-tools/repos/community-staging-x86_64/xautostart.conf
(from rev 216308, open-vm-tools/trunk/xautostart.conf)
Deleted:
  open-vm-tools/repos/community-staging-i686/PKGBUILD
  open-vm-tools/repos/community-staging-i686/network-script
  open-vm-tools/repos/community-staging-i686/tools.conf
  open-vm-tools/repos/community-staging-i686/vmtoolsd.service
  open-vm-tools/repos/community-staging-i686/vmware-guestd
  open-vm-tools/repos/community-staging-i686/vmware-vmblock-fuse.service
  open-vm-tools/repos/community-staging-i686/xautostart.conf
  open-vm-tools/repos/community-staging-x86_64/PKGBUILD
  open-vm-tools/repos/community-staging-x86_64/network-script
  open-vm-tools/repos/community-staging-x86_64/tools.conf
  open-vm-tools/repos/community-staging-x86_64/vmtoolsd.service
  open-vm-tools/repos/community-staging-x86_64/vmware-guestd
  open-vm-tools/repos/community-staging-x86_64/vmware-vmblock-fuse.service
  open-vm-tools/repos/community-staging-x86_64/xautostart.conf

--+
 /PKGBUILD|  178 +++
 /network-script  |  390 +
 /tools.conf  |2 
 /vmtoolsd.service|   18 
 /vmware-guestd   |   12 
 /vmware-vmblock-fuse.service |   24 +
 /xautostart.conf |   12 
 community-staging-i686/PKGBUILD  |   89 ---
 community-staging-i686/network-script|  195 
 community-staging-i686/tools.conf|1 
 community-staging-i686/vmtoolsd.service  |9 
 community-staging-i686/vmware-guestd |6 
 community-staging-i686/vmware-vmblock-fuse.service   |   12 
 community-staging-i686/xautostart.conf   |6 
 community-staging-x86_64/PKGBUILD|   89 ---
 community-staging-x86_64/network-script  |  195 
 community-staging-x86_64/tools.conf  |1 
 community-staging-x86_64/vmtoolsd.service|9 
 community-staging-x86_64/vmware-guestd   |6 
 community-staging-x86_64/vmware-vmblock-fuse.service |   12 
 community-staging-x86_64/xautostart.conf |6 
 21 files changed, 636 insertions(+), 636 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2017-03-14 15:55:57 UTC (rev 216308)
+++ community-staging-i686/PKGBUILD 2017-03-14 16:06:37 UTC (rev 216309)
@@ -1,89 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Krzysztof Raczkowski 
-
-pkgname=open-vm-tools
-epoch=6
-pkgver=10.1.0
-pkgrel=3
-pkgdesc="The Open Virtual Machine Tools (open-vm-tools) are the open source 
implementation of VMware Tools"
-arch=('i686' 'x86_64')
-url="https://github.com/vmware/open-vm-tools;
-license=('LGPL')
-depends=('libdnet' 'icu' 'procps-ng' 'uriparser' 'libsigc++' 'libxss'
-'iproute2' 'fuse2' 'lsb-release' 'libmspack')
-makedepends=('chrpath' 

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

2017-03-14 Thread Levente Polyak
Date: Tuesday, March 14, 2017 @ 15:50:00
  Author: anthraxx
Revision: 216300

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

Added:
  synergy/repos/community-i686/PKGBUILD
(from rev 216299, synergy/trunk/PKGBUILD)
  synergy/repos/community-i686/synergys.service
(from rev 216299, synergy/trunk/synergys.service)
  synergy/repos/community-i686/synergys.socket
(from rev 216299, synergy/trunk/synergys.socket)
  synergy/repos/community-i686/system-gtest.patch
(from rev 216299, synergy/trunk/system-gtest.patch)
  synergy/repos/community-x86_64/PKGBUILD
(from rev 216299, synergy/trunk/PKGBUILD)
  synergy/repos/community-x86_64/synergys.service
(from rev 216299, synergy/trunk/synergys.service)
  synergy/repos/community-x86_64/synergys.socket
(from rev 216299, synergy/trunk/synergys.socket)
  synergy/repos/community-x86_64/system-gtest.patch
(from rev 216299, synergy/trunk/system-gtest.patch)
Deleted:
  synergy/repos/community-i686/PKGBUILD
  synergy/repos/community-i686/synergys.service
  synergy/repos/community-i686/synergys.socket
  synergy/repos/community-i686/system-gtest.patch
  synergy/repos/community-x86_64/PKGBUILD
  synergy/repos/community-x86_64/synergys.service
  synergy/repos/community-x86_64/synergys.socket
  synergy/repos/community-x86_64/system-gtest.patch

-+
 /PKGBUILD   |  166 +
 /synergys.service   |   20 +++
 /synergys.socket|   18 ++
 /system-gtest.patch |  220 ++
 community-i686/PKGBUILD |   83 
 community-i686/synergys.service |   10 -
 community-i686/synergys.socket  |9 -
 community-i686/system-gtest.patch   |  110 -
 community-x86_64/PKGBUILD   |   83 
 community-x86_64/synergys.service   |   10 -
 community-x86_64/synergys.socket|9 -
 community-x86_64/system-gtest.patch |  110 -
 12 files changed, 424 insertions(+), 424 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-14 15:49:47 UTC (rev 216299)
+++ community-i686/PKGBUILD 2017-03-14 15:50:00 UTC (rev 216300)
@@ -1,83 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Jelle van der Waa 
-# Contributor: Stéphane Gaudreault 
-# Contributor: Dale Blount 
-# Contributor: Michael Düll 
-
-# I would just like to take a minute here and state that synergy is
-# some of the worst packaged software ever. They BUNDLE a fucking
-# zip for cryptopp and do not provide an option to use a system-
-# installed version of that library. They change around paths every
-# update and just generally don't seem to care much.
-pkgname=synergy
-pkgver=1.8.7
-pkgrel=1
-pkgdesc='Share a single mouse and keyboard between multiple computers'
-url='https://symless.com/synergy/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('gcc-libs' 'libxtst' 'libxinerama' 'libxkbcommon-x11' 'avahi' 'curl' 
'openssl')
-makedepends=('libxt' 'cmake' 'qt5-base' 'gmock' 'gtest')
-optdepends=('qt5-base: gui support')
-source=(synergy-${pkgver}.tar.gz::https://github.com/symless/synergy/archive/v${pkgver}-stable.tar.gz
-system-gtest.patch
-synergys.socket
-synergys.service)
-sha512sums=('2c86d2adb7424d2ea36d0c6b88500379d353c9d3086e2dd4aa1f0919d731d13e224c44e19eaf8c6ffcd7ac232fdfbd4f8b11f76f09e537dd4f0932359527db6d'
-
'4bef039f59b565d08079a8187df76f9773cfddeb81376ccc42f5570049389f114559721ed7b0464c4a4d1431ba72a736b11755573019583d0075d9da08c03ed2'
-
'f9c124533dfd01b5036b7f4b06f7f86f69165e88b9146ff17798377119eb9f1a4666f3b2ee9840bc436558d715cdbfe2fdfd7624348fae64871f785a1a62'
-
'9663a11b915e10e60317e732a4d1191e8f8ff19176994c27dd20aa445daab7565bd624e5575c9c639d144293879fbe8376834a076723f778fd322ebd1c9f2029')
-
-prepare() {
-  cd synergy-${pkgver}-stable
-  mkdir build
-  # get rid of shitty bundled gtest and gmock
-  patch -p1 < "${srcdir}/system-gtest.patch"
-}
-
-build() {
-  cd synergy-${pkgver}-stable
-
-  msg2 "Building core..."
-  (cd build
-cmake -DCMAKE_INSTALL_PREFIX=/usr ..
-# unittests don't pass with optimization (segfault on nullptr)
-sed 's|\-O2|\-O0|g' -i 
src/test/unittests/CMakeFiles/unittests.dir/{flags.make,link.txt}
-make
-  )
-
-  msg2 "Building GUI..."
-  (cd src/gui
-qmake
-make
-  )
-}
-
-check() {
-  cd synergy-${pkgver}-stable
-  ./bin/unittests
-}
-
-package() {
-  cd synergy-${pkgver}-stable
-
-  # install binary
-  install -Dm 755 bin/{synergy,synergyc,synergyd,synergys,syntool,usynergy} -t 
"${pkgdir}/usr/bin"
-
-  # install config
-  install -Dm 644 doc/${pkgname}.conf* -t "${pkgdir}/etc"
-
-  # install 

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

2017-03-14 Thread Sergej Pupykin
Date: Tuesday, March 14, 2017 @ 15:55:57
  Author: spupykin
Revision: 216308

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

Added:
  freeradius/repos/community-staging-i686/PKGBUILD
(from rev 216307, freeradius/trunk/PKGBUILD)
  freeradius/repos/community-staging-i686/freeradius-openssl-1.1.patch
(from rev 216307, freeradius/trunk/freeradius-openssl-1.1.patch)
  freeradius/repos/community-staging-i686/freeradius.install
(from rev 216307, freeradius/trunk/freeradius.install)
  freeradius/repos/community-staging-i686/freeradius.service
(from rev 216307, freeradius/trunk/freeradius.service)
  freeradius/repos/community-staging-i686/freeradius.tmpfiles
(from rev 216307, freeradius/trunk/freeradius.tmpfiles)
  freeradius/repos/community-staging-x86_64/PKGBUILD
(from rev 216307, freeradius/trunk/PKGBUILD)
  freeradius/repos/community-staging-x86_64/freeradius-openssl-1.1.patch
(from rev 216307, freeradius/trunk/freeradius-openssl-1.1.patch)
  freeradius/repos/community-staging-x86_64/freeradius.install
(from rev 216307, freeradius/trunk/freeradius.install)
  freeradius/repos/community-staging-x86_64/freeradius.service
(from rev 216307, freeradius/trunk/freeradius.service)
  freeradius/repos/community-staging-x86_64/freeradius.tmpfiles
(from rev 216307, freeradius/trunk/freeradius.tmpfiles)
Deleted:
  freeradius/repos/community-staging-i686/PKGBUILD
  freeradius/repos/community-staging-i686/freeradius-openssl-1.1.patch
  freeradius/repos/community-staging-i686/freeradius.install
  freeradius/repos/community-staging-i686/freeradius.service
  freeradius/repos/community-staging-i686/freeradius.tmpfiles
  freeradius/repos/community-staging-x86_64/PKGBUILD
  freeradius/repos/community-staging-x86_64/freeradius-openssl-1.1.patch
  freeradius/repos/community-staging-x86_64/freeradius.install
  freeradius/repos/community-staging-x86_64/freeradius.service
  freeradius/repos/community-staging-x86_64/freeradius.tmpfiles

---+
 /PKGBUILD |  126 
 /freeradius-openssl-1.1.patch |12568 
 /freeradius.install   |   32 
 /freeradius.service   |   30 
 /freeradius.tmpfiles  |2 
 community-staging-i686/PKGBUILD   |   63 
 community-staging-i686/freeradius-openssl-1.1.patch   | 6284 
 community-staging-i686/freeradius.install |   16 
 community-staging-i686/freeradius.service |   15 
 community-staging-i686/freeradius.tmpfiles|1 
 community-staging-x86_64/PKGBUILD |   63 
 community-staging-x86_64/freeradius-openssl-1.1.patch | 6284 
 community-staging-x86_64/freeradius.install   |   16 
 community-staging-x86_64/freeradius.service   |   15 
 community-staging-x86_64/freeradius.tmpfiles  |1 
 15 files changed, 12758 insertions(+), 12758 deletions(-)

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


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

2017-03-14 Thread Sergej Pupykin
Date: Tuesday, March 14, 2017 @ 15:55:34
  Author: spupykin
Revision: 216307

upgpkg: freeradius 3.0.13-1

Modified:
  freeradius/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 15:53:06 UTC (rev 216306)
+++ PKGBUILD2017-03-14 15:55:34 UTC (rev 216307)
@@ -4,8 +4,8 @@
 # Contributor: Daniel Micay 
 
 pkgname=freeradius
-pkgver=3.0.12
-pkgrel=6
+pkgver=3.0.13
+pkgrel=1
 pkgdesc="The premier open source RADIUS server"
 arch=('i686' 'x86_64')
 url="http://www.freeradius.org/;
@@ -21,14 +21,14 @@
 source=("ftp://ftp.freeradius.org/pub/radius/freeradius-server-$pkgver.tar.bz2;
freeradius.tmpfiles
freeradius.service freeradius-openssl-1.1.patch)
-md5sums=('108a5c12cff8d92b0f905c74841e29c5'
- 'f959e89812bedfc9f8308076f78cd74e'
- 'e3f18e3a25df3b692e59f60605354708'
- '1f9c9dd5340096200058638b27c68e3f')
+sha256sums=('b3be0d8849878c31af0a5375d20b7b20c9d1c1572e89dc3f22992824cefffb84'
+'08a084e143b263e8acbb8e4740a485f868647e047f3b6ae72b9b925d0416714f'
+'968cfd22f59e2a8ebe44955251a1f510fcdfdeba901798e12d3646d4439e0b1c'
+'406d22b7e15017163f3736a0a91c6ef8c327fd5a19af74b3519d16a4f7f205fd')
 
 prepare() {
   cd freeradius-server-$pkgver
-  patch -p1 -i ../freeradius-openssl-1.1.patch
+#  patch -p1 -i ../freeradius-openssl-1.1.patch
 }
 
 build() {


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

2017-03-14 Thread Levente Polyak
Date: Tuesday, March 14, 2017 @ 15:53:06
  Author: anthraxx
Revision: 216306

archrelease: copy trunk to community-any

Added:
  sqlmap/repos/community-any/PKGBUILD
(from rev 216305, sqlmap/trunk/PKGBUILD)
Deleted:
  sqlmap/repos/community-any/PKGBUILD

--+
 PKGBUILD |  102 ++---
 1 file changed, 51 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-14 15:52:59 UTC (rev 216305)
+++ PKGBUILD2017-03-14 15:53:06 UTC (rev 216306)
@@ -1,51 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Evan Teitelman 
-# Contributor: fxbru 
-
-pkgname=sqlmap
-pkgver=1.1.2
-pkgrel=1
-pkgdesc='Automatic SQL injection and database takeover tool'
-url='http://sqlmap.org'
-arch=('any')
-license=('GPL2')
-depends=('python2' 'sh')
-backup=('etc/sqlmap.conf')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/sqlmapproject/sqlmap/archive/${pkgver}.tar.gz)
-sha512sums=('355fafb79d1d0a6d6d752ce13af95a816a637a81e950fe673f4a624cee45c1b506f7defb1cb4bfb884841f36f18f693f54e43c2a86b1242dbde1aeecbc647548')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  python2 -m compileall .
-  python2 -O -m compileall .
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  install -d "${pkgdir}/etc"
-  install -d "${pkgdir}/usr/bin"
-  install -d "${pkgdir}/opt/${pkgname}"
-  install -d "${pkgdir}/usr/share/doc"
-
-  mv doc "${pkgdir}/usr/share/doc/${pkgname}"
-  mv sqlmap.conf "${pkgdir}/etc/sqlmap.conf"
-  ln -sf /etc/sqlmap.conf "${pkgdir}/opt/${pkgname}/sqlmap.conf"
-  cp -a --no-preserve=ownership * "${pkgdir}/opt/${pkgname}"
-
-  cat > "${pkgdir}/usr/bin/sqlmap" << EOF
-#!/bin/sh
-cd /opt/${pkgname}
-python2 sqlmap.py "\$@"
-EOF
-  cat > "${pkgdir}/usr/bin/sqlmapapi" << EOF
-#!/bin/sh
-cd /opt/${pkgname}
-python2 sqlmapapi.py "\$@"
-EOF
-
-  chmod 755 "${pkgdir}/usr/bin/sqlmap"
-  chmod 755 "${pkgdir}/usr/bin/sqlmapapi"
-}
-
-# vim: ts=2 sw=2 et:

Copied: sqlmap/repos/community-any/PKGBUILD (from rev 216305, 
sqlmap/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-14 15:53:06 UTC (rev 216306)
@@ -0,0 +1,51 @@
+# Maintainer: Levente Polyak 
+# Contributor: Evan Teitelman 
+# Contributor: fxbru 
+
+pkgname=sqlmap
+pkgver=1.1.3
+pkgrel=1
+pkgdesc='Automatic SQL injection and database takeover tool'
+url='http://sqlmap.org'
+arch=('any')
+license=('GPL2')
+depends=('python2' 'sh')
+backup=('etc/sqlmap.conf')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/sqlmapproject/sqlmap/archive/${pkgver}.tar.gz)
+sha512sums=('0e0bcf33103379d3d304a4f0510652dea028569d744690f7beb5667c94ab453bd756c88f5c7b33cb392b5a0750be270903dc36c0dfe4fa840b518ce2bc4932a4')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  python2 -m compileall .
+  python2 -O -m compileall .
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  install -d "${pkgdir}/etc"
+  install -d "${pkgdir}/usr/bin"
+  install -d "${pkgdir}/opt/${pkgname}"
+  install -d "${pkgdir}/usr/share/doc"
+
+  mv doc "${pkgdir}/usr/share/doc/${pkgname}"
+  mv sqlmap.conf "${pkgdir}/etc/sqlmap.conf"
+  ln -sf /etc/sqlmap.conf "${pkgdir}/opt/${pkgname}/sqlmap.conf"
+  cp -a --no-preserve=ownership * "${pkgdir}/opt/${pkgname}"
+
+  cat > "${pkgdir}/usr/bin/sqlmap" << EOF
+#!/bin/sh
+cd /opt/${pkgname}
+python2 sqlmap.py "\$@"
+EOF
+  cat > "${pkgdir}/usr/bin/sqlmapapi" << EOF
+#!/bin/sh
+cd /opt/${pkgname}
+python2 sqlmapapi.py "\$@"
+EOF
+
+  chmod 755 "${pkgdir}/usr/bin/sqlmap"
+  chmod 755 "${pkgdir}/usr/bin/sqlmapapi"
+}
+
+# vim: ts=2 sw=2 et:


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

2017-03-14 Thread Levente Polyak
Date: Tuesday, March 14, 2017 @ 15:52:59
  Author: anthraxx
Revision: 216305

upgpkg: sqlmap 1.1.3-1

Modified:
  sqlmap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 15:51:32 UTC (rev 216304)
+++ PKGBUILD2017-03-14 15:52:59 UTC (rev 216305)
@@ -3,7 +3,7 @@
 # Contributor: fxbru 
 
 pkgname=sqlmap
-pkgver=1.1.2
+pkgver=1.1.3
 pkgrel=1
 pkgdesc='Automatic SQL injection and database takeover tool'
 url='http://sqlmap.org'
@@ -12,7 +12,7 @@
 depends=('python2' 'sh')
 backup=('etc/sqlmap.conf')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/sqlmapproject/sqlmap/archive/${pkgver}.tar.gz)
-sha512sums=('355fafb79d1d0a6d6d752ce13af95a816a637a81e950fe673f4a624cee45c1b506f7defb1cb4bfb884841f36f18f693f54e43c2a86b1242dbde1aeecbc647548')
+sha512sums=('0e0bcf33103379d3d304a4f0510652dea028569d744690f7beb5667c94ab453bd756c88f5c7b33cb392b5a0750be270903dc36c0dfe4fa840b518ce2bc4932a4')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2017-03-14 Thread Sergej Pupykin
Date: Tuesday, March 14, 2017 @ 15:51:32
  Author: spupykin
Revision: 216304

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

Added:
  ziproxy/repos/community-i686/PKGBUILD
(from rev 216303, ziproxy/trunk/PKGBUILD)
  ziproxy/repos/community-i686/build-fix.patch
(from rev 216303, ziproxy/trunk/build-fix.patch)
  ziproxy/repos/community-i686/ziproxy.install
(from rev 216303, ziproxy/trunk/ziproxy.install)
  ziproxy/repos/community-i686/ziproxy.logrotate
(from rev 216303, ziproxy/trunk/ziproxy.logrotate)
  ziproxy/repos/community-i686/ziproxy.xinetd
(from rev 216303, ziproxy/trunk/ziproxy.xinetd)
  ziproxy/repos/community-x86_64/PKGBUILD
(from rev 216303, ziproxy/trunk/PKGBUILD)
  ziproxy/repos/community-x86_64/build-fix.patch
(from rev 216303, ziproxy/trunk/build-fix.patch)
  ziproxy/repos/community-x86_64/ziproxy.install
(from rev 216303, ziproxy/trunk/ziproxy.install)
  ziproxy/repos/community-x86_64/ziproxy.logrotate
(from rev 216303, ziproxy/trunk/ziproxy.logrotate)
  ziproxy/repos/community-x86_64/ziproxy.xinetd
(from rev 216303, ziproxy/trunk/ziproxy.xinetd)
Deleted:
  ziproxy/repos/community-i686/PKGBUILD
  ziproxy/repos/community-i686/build-fix.patch
  ziproxy/repos/community-i686/ziproxy.install
  ziproxy/repos/community-i686/ziproxy.logrotate
  ziproxy/repos/community-i686/ziproxy.xinetd
  ziproxy/repos/community-x86_64/PKGBUILD
  ziproxy/repos/community-x86_64/build-fix.patch
  ziproxy/repos/community-x86_64/ziproxy.install
  ziproxy/repos/community-x86_64/ziproxy.logrotate
  ziproxy/repos/community-x86_64/ziproxy.xinetd

+
 /PKGBUILD  |  122 +++
 /build-fix.patch   |   64 ++
 /ziproxy.install   |   32 +
 /ziproxy.logrotate |   26 +++
 /ziproxy.xinetd|   28 
 community-i686/PKGBUILD|   61 -
 community-i686/build-fix.patch |   44 
 community-i686/ziproxy.install |   16 
 community-i686/ziproxy.logrotate   |   13 ---
 community-i686/ziproxy.xinetd  |   14 
 community-x86_64/PKGBUILD  |   61 -
 community-x86_64/build-fix.patch   |   44 
 community-x86_64/ziproxy.install   |   16 
 community-x86_64/ziproxy.logrotate |   13 ---
 community-x86_64/ziproxy.xinetd|   14 
 15 files changed, 272 insertions(+), 296 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-14 15:51:07 UTC (rev 216303)
+++ community-i686/PKGBUILD 2017-03-14 15:51:32 UTC (rev 216304)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Yejun Yang yejunx AT gmail DOT com
-
-pkgname=ziproxy
-pkgver=3.3.0
-pkgrel=8
-pkgdesc="forwarding, non-caching, compressing HTTP proxy server"
-arch=('i686' 'x86_64')
-url="http://ziproxy.sourceforge.net/;
-license=('GPL2')
-depends=('giflib' 'libpng' 'libjpeg' 'zlib' 'jasper' 'libsasl')
-backup=(etc/ziproxy/ziproxy.conf
-   etc/ziproxy/bo_exception.list
-   etc/ziproxy/http.passwd
-   etc/ziproxy/noprocess.list
-   etc/ziproxy/replace.list
-   etc/xinetd.d/ziproxy
-   var/lib/ziproxy/error/400.html
-   var/lib/ziproxy/error/404.html
-   var/lib/ziproxy/error/407.html
-   var/lib/ziproxy/error/408.html
-   var/lib/ziproxy/error/409.html
-   var/lib/ziproxy/error/500.html
-   var/lib/ziproxy/error/503.html)
-install=ziproxy.install
-source=(http://downloads.sourceforge.net/project/ziproxy/ziproxy/ziproxy-$pkgver/ziproxy-$pkgver.tar.bz2
-   ziproxy.logrotate
-   ziproxy.xinetd
-   build-fix.patch)
-md5sums=('a8fda01591d455bb23c64c9c5ed3980d'
- 'feb35264391c790cedd5e995182b5ff5'
- '3d2f9208b5ab6738c136049e1fd2e433'
- '353850d5a45f2382c11e673e0de38b72')
-
-prepare() {
-  cd "$srcdir"/$pkgname-$pkgver
-  sed -i '1,1i#include ' src/qparser.c
-  patch -p1 <"$srcdir"/build-fix.patch
-}
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  [ -f Makefile ] || ./configure --prefix=/usr --with-jasper
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  install -d "$pkgdir"/var/lib/ziproxy/error
-  install -d "$pkgdir"/etc/conf.d
-
-  sed -i 's#var/ziproxy#var/lib/ziproxy#' etc/ziproxy/ziproxy.conf
-  cp -a etc/ziproxy "$pkgdir"/etc/ziproxy
-  install -m644 var/ziproxy/error/* "$pkgdir"/var/lib/ziproxy/error
-  echo "ZIPROXY_ARGS=\"-c /etc/ziproxy/ziproxy.conf\"" 
>"$pkgdir"/etc/conf.d/ziproxy
-  install -Dm0644 "$srcdir"/ziproxy.logrotate "$pkgdir"/etc/logrotate.d/ziproxy
-  install -Dm0644 "$srcdir"/ziproxy.xinetd "$pkgdir"/etc/xinetd.d/ziproxy
-}

Copied: ziproxy/repos/community-i686/PKGBUILD (from rev 216303, 
ziproxy/trunk/PKGBUILD)

[arch-commits] Commit in ziproxy/trunk (PKGBUILD build-fix.patch)

2017-03-14 Thread Sergej Pupykin
Date: Tuesday, March 14, 2017 @ 15:51:07
  Author: spupykin
Revision: 216303

upgpkg: ziproxy 3.3.1-1

Modified:
  ziproxy/trunk/PKGBUILD
  ziproxy/trunk/build-fix.patch

-+
 PKGBUILD|   14 +++---
 build-fix.patch |   12 
 2 files changed, 7 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 15:50:27 UTC (rev 216302)
+++ PKGBUILD2017-03-14 15:51:07 UTC (rev 216303)
@@ -3,8 +3,8 @@
 # Contributor: Yejun Yang yejunx AT gmail DOT com
 
 pkgname=ziproxy
-pkgver=3.3.0
-pkgrel=8
+pkgver=3.3.1
+pkgrel=1
 pkgdesc="forwarding, non-caching, compressing HTTP proxy server"
 arch=('i686' 'x86_64')
 url="http://ziproxy.sourceforge.net/;
@@ -28,14 +28,14 @@
ziproxy.logrotate
ziproxy.xinetd
build-fix.patch)
-md5sums=('a8fda01591d455bb23c64c9c5ed3980d'
- 'feb35264391c790cedd5e995182b5ff5'
- '3d2f9208b5ab6738c136049e1fd2e433'
- '353850d5a45f2382c11e673e0de38b72')
+sha256sums=('c39c6148840cdaa867d4dd3ad41d39be345494b2048b86ec899d0c075e56874d'
+'6087c75dc9a9d493365bb599bf4dcb72fab95da54ea9b75418616cf0cd9be5e3'
+'27c2ce6207c24e1af5bc1cb7b350ef5ca12ea3bdaf7b5f10f00251ec1292c3a0'
+'dd462a5604aba5bfea8e12a4abe6db317f8d45bc7614696e6d7379cf8120a616')
 
 prepare() {
   cd "$srcdir"/$pkgname-$pkgver
-  sed -i '1,1i#include ' src/qparser.c
+#  sed -i '1,1i#include ' src/qparser.c
   patch -p1 <"$srcdir"/build-fix.patch
 }
 

Modified: build-fix.patch
===
--- build-fix.patch 2017-03-14 15:50:27 UTC (rev 216302)
+++ build-fix.patch 2017-03-14 15:51:07 UTC (rev 216303)
@@ -30,15 +30,3 @@
return IMG_RET_OK;
  }
  
-diff -wbBur ziproxy-3.3.0/src/qparser.c ziproxy-3.3.0.my/src/qparser.c
 ziproxy-3.3.0/src/qparser.c2013-01-04 20:48:50.0 +0400
-+++ ziproxy-3.3.0.my/src/qparser.c 2014-09-30 18:28:34.772237049 +0400
-@@ -32,7 +33,7 @@
- // #ifdef __GLIBC__
- // #define _GNU_SOURCE
- // #else
--#define QP_BUILD_STRNDUP
-+//#define QP_BUILD_STRNDUP
- // #endif
- 
- #include 


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

2017-03-14 Thread Levente Polyak
Date: Tuesday, March 14, 2017 @ 15:50:27
  Author: anthraxx
Revision: 216302

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-14 15:50:16 UTC (rev 216301)
+++ community-i686/PKGBUILD 2017-03-14 15:50:27 UTC (rev 216302)
@@ -1,35 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Sam Stuewe 
-
-pkgname=hashcat
-pkgver=3.30
-pkgrel=1
-pkgdesc='Multithreaded advanced password recovery utility'
-url='https://hashcat.net/hashcat'
-arch=('i686' 'x86_64')
-depends=('gmp' 'opencl-icd-loader')
-optdepends=('libxnvctrl: NVIDIA X driver configuration support')
-makedepends=('opencl-headers')
-license=('MIT')
-source=(https://hashcat.net/files/${pkgname}-${pkgver}.tar.gz{,.asc})
-sha512sums=('9c87978c72a595babec964e0c9ee506fdc24c870966dabf3854996808c910af369329e95932e1833a917a316441a83d6ba5cfff0f54bb5d8f9af6981243746cb'
-'SKIP')
-validpgpkeys=('A70833229D040B4199CC00523C17DA8B8A16544F') # Hashcat signing 
key 
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  sed 's|-Wl,-rpath .||g' -i src/Makefile
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make PREFIX=/usr
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" PREFIX=/usr install
-  install -Dm 644 docs/license.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim: ts=2 sw=2 et:

Copied: hashcat/repos/community-i686/PKGBUILD (from rev 216301, 
hashcat/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-14 15:50:27 UTC (rev 216302)
@@ -0,0 +1,30 @@
+# Maintainer: Levente Polyak 
+# Contributor: Sam Stuewe 
+
+pkgname=hashcat
+pkgver=3.40
+pkgrel=1
+pkgdesc='Multithreaded advanced password recovery utility'
+url='https://hashcat.net/hashcat'
+arch=('i686' 'x86_64')
+depends=('gmp' 'opencl-icd-loader')
+optdepends=('libxnvctrl: NVIDIA X driver configuration support')
+makedepends=('opencl-headers')
+license=('MIT')
+source=(https://hashcat.net/files/${pkgname}-${pkgver}.tar.gz{,.asc})
+sha512sums=('fd8d1927703cfe56c7708c460cc142de4ce64d96b651ed68817b70e6a53cac376a191d16752cbb7cabfcb0230299301173a5eda6c27e6188e79b5d83d758378e'
+'SKIP')
+validpgpkeys=('A70833229D040B4199CC00523C17DA8B8A16544F') # Hashcat signing 
key 
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make PREFIX=/usr SHARED=1
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" PREFIX=/usr SHARED=1 install
+  install -Dm 644 docs/license.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-03-14 15:50:16 UTC (rev 216301)
+++ community-x86_64/PKGBUILD   2017-03-14 15:50:27 UTC (rev 216302)
@@ -1,35 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Sam Stuewe 
-
-pkgname=hashcat
-pkgver=3.30
-pkgrel=1
-pkgdesc='Multithreaded advanced password recovery utility'
-url='https://hashcat.net/hashcat'
-arch=('i686' 'x86_64')
-depends=('gmp' 'opencl-icd-loader')
-optdepends=('libxnvctrl: NVIDIA X driver configuration support')
-makedepends=('opencl-headers')
-license=('MIT')
-source=(https://hashcat.net/files/${pkgname}-${pkgver}.tar.gz{,.asc})
-sha512sums=('9c87978c72a595babec964e0c9ee506fdc24c870966dabf3854996808c910af369329e95932e1833a917a316441a83d6ba5cfff0f54bb5d8f9af6981243746cb'
-'SKIP')
-validpgpkeys=('A70833229D040B4199CC00523C17DA8B8A16544F') # Hashcat signing 
key 
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  sed 's|-Wl,-rpath .||g' -i src/Makefile
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make PREFIX=/usr
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" PREFIX=/usr install
-  install -Dm 644 docs/license.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim: ts=2 sw=2 et:

Copied: hashcat/repos/community-x86_64/PKGBUILD (from rev 216301, 
hashcat/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD  

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

2017-03-14 Thread Levente Polyak
Date: Tuesday, March 14, 2017 @ 15:49:47
  Author: anthraxx
Revision: 216299

upgpkg: synergy 1.8.8-1

Modified:
  synergy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 15:47:42 UTC (rev 216298)
+++ PKGBUILD2017-03-14 15:49:47 UTC (rev 216299)
@@ -11,7 +11,7 @@
 # installed version of that library. They change around paths every
 # update and just generally don't seem to care much.
 pkgname=synergy
-pkgver=1.8.7
+pkgver=1.8.8
 pkgrel=1
 pkgdesc='Share a single mouse and keyboard between multiple computers'
 url='https://symless.com/synergy/'
@@ -24,7 +24,7 @@
 system-gtest.patch
 synergys.socket
 synergys.service)
-sha512sums=('2c86d2adb7424d2ea36d0c6b88500379d353c9d3086e2dd4aa1f0919d731d13e224c44e19eaf8c6ffcd7ac232fdfbd4f8b11f76f09e537dd4f0932359527db6d'
+sha512sums=('b4909930af7da10d877297e674df4c042ec54333eed585334da4a8c834c0ca3ad7c93fd2436c7d8d2f0e9e039d7bd385bb9e8a8c706750cbab3c3664a9b16bc6'
 
'4bef039f59b565d08079a8187df76f9773cfddeb81376ccc42f5570049389f114559721ed7b0464c4a4d1431ba72a736b11755573019583d0075d9da08c03ed2'
 
'f9c124533dfd01b5036b7f4b06f7f86f69165e88b9146ff17798377119eb9f1a4666f3b2ee9840bc436558d715cdbfe2fdfd7624348fae64871f785a1a62'
 
'9663a11b915e10e60317e732a4d1191e8f8ff19176994c27dd20aa445daab7565bd624e5575c9c639d144293879fbe8376834a076723f778fd322ebd1c9f2029')


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

2017-03-14 Thread Levente Polyak
Date: Tuesday, March 14, 2017 @ 15:50:16
  Author: anthraxx
Revision: 216301

upgpkg: hashcat 3.40-1

Modified:
  hashcat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 15:50:00 UTC (rev 216300)
+++ PKGBUILD2017-03-14 15:50:16 UTC (rev 216301)
@@ -2,7 +2,7 @@
 # Contributor: Sam Stuewe 
 
 pkgname=hashcat
-pkgver=3.30
+pkgver=3.40
 pkgrel=1
 pkgdesc='Multithreaded advanced password recovery utility'
 url='https://hashcat.net/hashcat'
@@ -12,23 +12,18 @@
 makedepends=('opencl-headers')
 license=('MIT')
 source=(https://hashcat.net/files/${pkgname}-${pkgver}.tar.gz{,.asc})
-sha512sums=('9c87978c72a595babec964e0c9ee506fdc24c870966dabf3854996808c910af369329e95932e1833a917a316441a83d6ba5cfff0f54bb5d8f9af6981243746cb'
+sha512sums=('fd8d1927703cfe56c7708c460cc142de4ce64d96b651ed68817b70e6a53cac376a191d16752cbb7cabfcb0230299301173a5eda6c27e6188e79b5d83d758378e'
 'SKIP')
 validpgpkeys=('A70833229D040B4199CC00523C17DA8B8A16544F') # Hashcat signing 
key 
 
-prepare() {
-  cd ${pkgname}-${pkgver}
-  sed 's|-Wl,-rpath .||g' -i src/Makefile
-}
-
 build() {
   cd ${pkgname}-${pkgver}
-  make PREFIX=/usr
+  make PREFIX=/usr SHARED=1
 }
 
 package() {
   cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" PREFIX=/usr install
+  make DESTDIR="${pkgdir}" PREFIX=/usr SHARED=1 install
   install -Dm 644 docs/license.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }
 


[arch-commits] Commit in ziproxy/repos (staging-i686 staging-x86_64)

2017-03-14 Thread Sergej Pupykin
Date: Tuesday, March 14, 2017 @ 15:47:42
  Author: spupykin
Revision: 216298

clean up

Deleted:
  ziproxy/repos/staging-i686/
  ziproxy/repos/staging-x86_64/


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

2017-03-14 Thread Felix Yan
Date: Tuesday, March 14, 2017 @ 15:43:12
  Author: felixonmars
Revision: 216297

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

Added:
  haskell-pipes-http/repos/community-staging-i686/
  haskell-pipes-http/repos/community-staging-i686/PKGBUILD
(from rev 216296, haskell-pipes-http/trunk/PKGBUILD)
  haskell-pipes-http/repos/community-staging-x86_64/
  haskell-pipes-http/repos/community-staging-x86_64/PKGBUILD
(from rev 216296, haskell-pipes-http/trunk/PKGBUILD)

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

Copied: haskell-pipes-http/repos/community-staging-i686/PKGBUILD (from rev 
216296, haskell-pipes-http/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-14 15:43:12 UTC (rev 216297)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pipes-http
+pkgname=haskell-pipes-http
+pkgver=1.0.5
+pkgrel=16
+pkgdesc="HTTP client with pipes interface"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-http-client" "haskell-http-client-tls" 
"haskell-pipes")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('49a196466de1638f3806a49bf10fef9eb3c06456ababf09ffd025b6b64f23055')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-pipes-http/repos/community-staging-x86_64/PKGBUILD (from rev 
216296, haskell-pipes-http/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-14 15:43:12 UTC (rev 216297)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pipes-http
+pkgname=haskell-pipes-http
+pkgver=1.0.5
+pkgrel=16
+pkgdesc="HTTP client with pipes interface"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-http-client" "haskell-http-client-tls" 
"haskell-pipes")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('49a196466de1638f3806a49bf10fef9eb3c06456ababf09ffd025b6b64f23055')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f 

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

2017-03-14 Thread Felix Yan
Date: Tuesday, March 14, 2017 @ 15:42:45
  Author: felixonmars
Revision: 216296

upgpkg: haskell-pipes-http 1.0.5-16

rebuild with tls,1.3.10

Modified:
  haskell-pipes-http/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 15:40:29 UTC (rev 216295)
+++ PKGBUILD2017-03-14 15:42:45 UTC (rev 216296)
@@ -5,7 +5,7 @@
 _hkgname=pipes-http
 pkgname=haskell-pipes-http
 pkgver=1.0.5
-pkgrel=15
+pkgrel=16
 pkgdesc="HTTP client with pipes interface"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("custom:BSD3")


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

2017-03-14 Thread Felix Yan
Date: Tuesday, March 14, 2017 @ 15:40:29
  Author: felixonmars
Revision: 216295

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

Added:
  pandoc-crossref/repos/community-staging-i686/
  pandoc-crossref/repos/community-staging-i686/PKGBUILD
(from rev 216294, pandoc-crossref/trunk/PKGBUILD)
  pandoc-crossref/repos/community-staging-x86_64/
  pandoc-crossref/repos/community-staging-x86_64/PKGBUILD
(from rev 216294, pandoc-crossref/trunk/PKGBUILD)

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

Copied: pandoc-crossref/repos/community-staging-i686/PKGBUILD (from rev 216294, 
pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-14 15:40:29 UTC (rev 216295)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc-crossref
+pkgname=(pandoc-crossref haskell-pandoc-crossref)
+pkgver=0.2.5.0
+pkgrel=9
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgbase};
+license=("GPL2")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-data-default" "haskell-data-accessor" 
"haskell-data-accessor-template"
+ "haskell-data-accessor-transformers" "haskell-mtl" 
"haskell-pandoc" "haskell-pandoc-types"
+ "haskell-roman-numerals" "haskell-syb" "haskell-utility-ht")
+source=("https://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('d4d93bbe448e2cf187a0b7bcc605d0445e28021e4e31bfef890b93bee2b28491')
+
+prepare() {
+sed -i 's/pandoc >= 1.17.1 && <1.19/pandoc >= 1.17.1 \&\& <1.20/' 
${pkgbase}-${pkgver}/${pkgbase}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgname" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package_pandoc-crossref() {
+depends=('pandoc')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share}
+}
+
+package_haskell-pandoc-crossref() {
+pkgdesc="Pandoc filter for cross-references (docs and libraries)"
+depends=("${makedepends[@]}" 'pandoc-crossref')
+
+cd "${srcdir}/${pkgbase}-${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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgbase}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${pkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/bin
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.md"
+}

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
216294, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-14 15:40:29 UTC (rev 216295)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc-crossref
+pkgname=(pandoc-crossref haskell-pandoc-crossref)
+pkgver=0.2.5.0
+pkgrel=9
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgbase};
+license=("GPL2")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-data-default" "haskell-data-accessor" 
"haskell-data-accessor-template"
+ "haskell-data-accessor-transformers" "haskell-mtl" 
"haskell-pandoc" "haskell-pandoc-types"
+ "haskell-roman-numerals" "haskell-syb" "haskell-utility-ht")
+source=("https://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('d4d93bbe448e2cf187a0b7bcc605d0445e28021e4e31bfef890b93bee2b28491')
+
+prepare() {
+sed -i 's/pandoc >= 1.17.1 && <1.19/pandoc >= 1.17.1 \&\& <1.20/' 
${pkgbase}-${pkgver}/${pkgbase}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+

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

2017-03-14 Thread Felix Yan
Date: Tuesday, March 14, 2017 @ 15:40:03
  Author: felixonmars
Revision: 216294

upgpkg: pandoc-crossref 0.2.5.0-9

rebuild with tls,1.3.10

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 15:34:03 UTC (rev 216293)
+++ PKGBUILD2017-03-14 15:40:03 UTC (rev 216294)
@@ -5,7 +5,7 @@
 pkgbase=pandoc-crossref
 pkgname=(pandoc-crossref haskell-pandoc-crossref)
 pkgver=0.2.5.0
-pkgrel=8
+pkgrel=9
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgbase};
 license=("GPL2")


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

2017-03-14 Thread Felix Yan
Date: Tuesday, March 14, 2017 @ 15:34:03
  Author: felixonmars
Revision: 216293

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

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

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

Copied: haskell-hakyll/repos/community-staging-i686/PKGBUILD (from rev 216292, 
haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-14 15:34:03 UTC (rev 216293)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.9.5.1
+pkgrel=21
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-blaze-html" "haskell-blaze-markup" 
"haskell-cryptohash"
+ "haskell-data-default" "haskell-fsnotify" "haskell-http-conduit" 
"haskell-http-types"
+ "haskell-lrucache" "haskell-mtl" "haskell-network" 
"haskell-network-uri"
+ "haskell-optparse-applicative" "haskell-pandoc" 
"haskell-pandoc-citeproc" "haskell-parsec"
+ "haskell-random" "haskell-regex-base" "haskell-regex-tdfa" 
"haskell-resourcet"
+ "haskell-scientific" "haskell-system-filepath" "haskell-tagsoup" 
"haskell-text"
+ "haskell-time-locale-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-wai"
+ "haskell-wai-app-static" "haskell-warp" "haskell-yaml")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('8deca33939717372ca227559dfe82aa0b02af49b19e9ea60051f555dcee2cfe6')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -fwatchserver -fpreviewserver
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
216292, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-14 15:34:03 UTC (rev 216293)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.9.5.1
+pkgrel=21
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-blaze-html" "haskell-blaze-markup" 
"haskell-cryptohash"
+ "haskell-data-default" "haskell-fsnotify" "haskell-http-conduit" 
"haskell-http-types"
+ "haskell-lrucache" "haskell-mtl" "haskell-network" 
"haskell-network-uri"
+ "haskell-optparse-applicative" "haskell-pandoc" 
"haskell-pandoc-citeproc" "haskell-parsec"
+ "haskell-random" "haskell-regex-base" "haskell-regex-tdfa" 
"haskell-resourcet"
+ "haskell-scientific" "haskell-system-filepath" "haskell-tagsoup" 
"haskell-text"
+ "haskell-time-locale-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-wai"
+ "haskell-wai-app-static" "haskell-warp" "haskell-yaml")

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

2017-03-14 Thread Felix Yan
Date: Tuesday, March 14, 2017 @ 15:33:37
  Author: felixonmars
Revision: 216292

upgpkg: haskell-hakyll 4.9.5.1-21

rebuild with tls,1.3.10

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 15:27:03 UTC (rev 216291)
+++ PKGBUILD2017-03-14 15:33:37 UTC (rev 216292)
@@ -5,7 +5,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.9.5.1
-pkgrel=20
+pkgrel=21
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll;
 license=("custom:BSD3")


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

2017-03-14 Thread Felix Yan
Date: Tuesday, March 14, 2017 @ 15:27:03
  Author: felixonmars
Revision: 216291

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

Added:
  pandoc-citeproc/repos/community-staging-i686/
  pandoc-citeproc/repos/community-staging-i686/PKGBUILD
(from rev 216290, pandoc-citeproc/trunk/PKGBUILD)
  pandoc-citeproc/repos/community-staging-x86_64/
  pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD
(from rev 216290, pandoc-citeproc/trunk/PKGBUILD)

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

Copied: pandoc-citeproc/repos/community-staging-i686/PKGBUILD (from rev 216290, 
pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-14 15:27:03 UTC (rev 216291)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc-citeproc
+pkgname=(pandoc-citeproc haskell-pandoc-citeproc)
+pkgver=0.10.4.1
+pkgrel=14
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/${pkgbase};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-aeson-pretty" 
"haskell-attoparsec"
+ "haskell-data-default" "haskell-hs-bibutils" "haskell-mtl"
+ "haskell-old-locale" "haskell-pandoc" "haskell-pandoc-types" 
"haskell-parsec"
+ "haskell-rfc5051" "haskell-setenv" "haskell-split" "haskell-syb"
+ "haskell-tagsoup" "haskell-temporary" "haskell-text" 
"haskell-text-icu"
+ "haskell-unordered-containers" "haskell-vector" 
"haskell-xml-conduit" "haskell-yaml")
+source=("https://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('6e6b0a89a831f9bfaa33dc0f3dff1792ee1626a5e66e1bd34da9447cd3c7de51')
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgbase" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-debug -f-test_citeproc -funicode_collation -f-embed_data_files 
-fbibutils
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package_pandoc-citeproc() {
+depends=('pandoc' 'icu')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_haskell-pandoc-citeproc() {
+pkgdesc="Supports using pandoc with citeproc (docs and libraries)"
+depends=("${makedepends[@]}" 'pandoc-citeproc')
+
+cd "${srcdir}/${pkgbase}-${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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgbase}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${pkgbase}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/share/{pandoc-citeproc,man} "$pkgdir"/usr/bin
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
216290, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-14 15:27:03 UTC (rev 216291)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc-citeproc
+pkgname=(pandoc-citeproc haskell-pandoc-citeproc)
+pkgver=0.10.4.1
+pkgrel=14
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/${pkgbase};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-aeson-pretty" 
"haskell-attoparsec"
+ "haskell-data-default" "haskell-hs-bibutils" "haskell-mtl"
+ "haskell-old-locale" "haskell-pandoc" "haskell-pandoc-types" 
"haskell-parsec"
+ "haskell-rfc5051" "haskell-setenv" "haskell-split" "haskell-syb"
+ "haskell-tagsoup" "haskell-temporary" "haskell-text" 
"haskell-text-icu"

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

2017-03-14 Thread Felix Yan
Date: Tuesday, March 14, 2017 @ 15:26:35
  Author: felixonmars
Revision: 216290

upgpkg: pandoc-citeproc 0.10.4.1-14

rebuild with tls,1.3.10

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 15:13:41 UTC (rev 216289)
+++ PKGBUILD2017-03-14 15:26:35 UTC (rev 216290)
@@ -5,7 +5,7 @@
 pkgbase=pandoc-citeproc
 pkgname=(pandoc-citeproc haskell-pandoc-citeproc)
 pkgver=0.10.4.1
-pkgrel=13
+pkgrel=14
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/${pkgbase};
 license=("custom:BSD3")


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

2017-03-14 Thread Felix Yan
Date: Tuesday, March 14, 2017 @ 15:13:41
  Author: felixonmars
Revision: 216289

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

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

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

Copied: pandoc/repos/community-staging-i686/PKGBUILD (from rev 216288, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-14 15:13:41 UTC (rev 216289)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc
+pkgname=(pandoc haskell-pandoc)
+pkgver=1.19.2.1
+pkgrel=23
+pkgdesc="Conversion between markup formats"
+url="http://pandoc.org;
+license=("GPL")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-http" "haskell-juicypixels" "haskell-sha" 
"haskell-aeson"
+ "haskell-base64-bytestring" "haskell-blaze-html" 
"haskell-blaze-markup"
+ "haskell-cmark" "haskell-data-default" "haskell-doctemplates" 
"haskell-mtl"
+ "haskell-extensible-exceptions" "haskell-filemanip" 
"haskell-haddock-library"
+ "haskell-skylighting" "haskell-hslua" "haskell-http-client" 
"haskell-syb"
+ "haskell-http-client-tls" "haskell-http-types"  "haskell-text" 
"haskell-texmath"
+ "haskell-network" "haskell-old-time" "haskell-pandoc-types" 
"haskell-parsec"
+ "haskell-random" "haskell-scientific" "haskell-tagsoup" 
"haskell-temporary"
+ "haskell-network-uri" "haskell-unordered-containers" 
"haskell-zip-archive"
+ "haskell-vector" "haskell-xml" "haskell-yaml" "haskell-zlib")
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('08692f3d77bf95bb9ba3407f7af26de7c23134e7efcdafad0bdaf9050e2c7801')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgname" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-old-locale -fnetwork-uri -fhttps -f-trypandoc 
-f-embed_data_files -f-weigh-pandoc
+runhaskell Setup build
+
+runhaskell Setup haddock --hoogle --html
+
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package_pandoc() {
+depends=('gmp' 'libffi' 'zlib' 'pcre' 'cmark')
+optdepends=('pandoc-citeproc: for citation rendering with pandoc-citeproc 
filter'
+'texlive-core: for pdf output')
+replaces=('pandoc-static')
+conflicts=('pandoc-static')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+}
+
+package_haskell-pandoc() {
+pkgdesc="Conversion between markup formats (docs and libraries)"
+depends=("${makedepends[@]}" 'pandoc')
+
+cd "${srcdir}/${pkgbase}-${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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${pkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/share/{pandoc,man} "$pkgdir"/usr/bin
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING.md"
+}

Copied: pandoc/repos/community-staging-x86_64/PKGBUILD (from rev 216288, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-14 15:13:41 UTC (rev 216289)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc
+pkgname=(pandoc haskell-pandoc)
+pkgver=1.19.2.1
+pkgrel=23
+pkgdesc="Conversion between markup formats"
+url="http://pandoc.org;
+license=("GPL")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-http" "haskell-juicypixels" "haskell-sha" 
"haskell-aeson"
+ "haskell-base64-bytestring" 

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

2017-03-14 Thread Felix Yan
Date: Tuesday, March 14, 2017 @ 15:13:14
  Author: felixonmars
Revision: 216288

upgpkg: pandoc 1.19.2.1-23

rebuild with tls,1.3.10

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 15:03:40 UTC (rev 216287)
+++ PKGBUILD2017-03-14 15:13:14 UTC (rev 216288)
@@ -5,7 +5,7 @@
 pkgbase=pandoc
 pkgname=(pandoc haskell-pandoc)
 pkgver=1.19.2.1
-pkgrel=22
+pkgrel=23
 pkgdesc="Conversion between markup formats"
 url="http://pandoc.org;
 license=("GPL")


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

2017-03-14 Thread Levente Polyak
Date: Tuesday, March 14, 2017 @ 15:03:40
  Author: anthraxx
Revision: 216287

archrelease: copy trunk to community-any

Added:
  lynis/repos/community-any/PKGBUILD
(from rev 216286, lynis/trunk/PKGBUILD)
Deleted:
  lynis/repos/community-any/PKGBUILD

--+
 PKGBUILD |  104 ++---
 1 file changed, 52 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-14 15:03:33 UTC (rev 216286)
+++ PKGBUILD2017-03-14 15:03:40 UTC (rev 216287)
@@ -1,52 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Sébastien Luttringer 
-
-pkgname=lynis
-pkgver=2.4.2
-pkgrel=1
-pkgdesc='Security and system auditing tool to harden Unix/Linux systems'
-url='https://cisofy.com/lynis/'
-arch=('any')
-license=('GPL3')
-backup=('etc/lynis/default.prf')
-depends=('sh' 'awk')
-optdepends=('net-tools: networking tests'
-'bind-tools: nameserver tests'
-'iptables: firewall tests'
-'bash-completion: completion for bash')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/CISOfy/${pkgname}/archive/${pkgver}.tar.gz)
-sha512sums=('51b469c63ef7970511e32eb41ef7eeeff0724edea395b6b42d5e9c79159cea64e7450f140dea16fec49a0bae58a123a7d554872aecdf6a94cdc4b7fae86d2673')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  sed -e 's|/path/to/lynis|/usr/bin/lynis|g' -i extras/systemd/lynis.service
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  # binary
-  install -Dm 755 "${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-
-  # profile
-  install -Dm 644 default.prf "${pkgdir}/etc/${pkgname}/default.prf"
-
-  # plugins, include, db
-  install -d "${pkgdir}/usr/share/${pkgname}"
-  cp -ra db include plugins "${pkgdir}/usr/share/${pkgname}"
-
-  # doc files
-  install -Dm 644 README INSTALL CHANGELOG.md FAQ \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 "${pkgname}.8" -t "${pkgdir}/usr/share/man/man8"
-
-  # completion
-  install -Dm 644 extras/bash_completion.d/${pkgname} \
--t "${pkgdir}/usr/share/bash-completion/completions"
-
-  # systemd
-  install -Dm 644 extras/systemd/{lynis.service,lynis.timer} \
--t "${pkgdir}/usr/lib/systemd/system"
-}
-
-# vim: ts=2 sw=2 et:

Copied: lynis/repos/community-any/PKGBUILD (from rev 216286, 
lynis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-14 15:03:40 UTC (rev 216287)
@@ -0,0 +1,52 @@
+# Maintainer: Levente Polyak 
+# Contributor: Sébastien Luttringer 
+
+pkgname=lynis
+pkgver=2.4.5
+pkgrel=1
+pkgdesc='Security and system auditing tool to harden Unix/Linux systems'
+url='https://cisofy.com/lynis/'
+arch=('any')
+license=('GPL3')
+backup=('etc/lynis/default.prf')
+depends=('sh' 'awk')
+optdepends=('net-tools: networking tests'
+'bind-tools: nameserver tests'
+'iptables: firewall tests'
+'bash-completion: completion for bash')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/CISOfy/lynis/archive/${pkgver}.tar.gz)
+sha512sums=('683f5696b0d0288e017a5760a8baca4f6d78fd9b2ae571eb114224d28217ff58b8a8db56d382817d7ad98dc920eb0531f15fc2f25969d38adc9cbee1f7e4511a')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -e 's|/path/to/lynis|/usr/bin/lynis|g' -i extras/systemd/lynis.service
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  # binary
+  install -Dm 755 lynis -t "${pkgdir}/usr/bin"
+
+  # profile
+  install -Dm 644 default.prf -t "${pkgdir}/etc/${pkgname}"
+
+  # plugins, include, db
+  install -d "${pkgdir}/usr/share/${pkgname}"
+  cp -ra db include plugins "${pkgdir}/usr/share/${pkgname}"
+
+  # doc files
+  install -Dm 644 README INSTALL CHANGELOG.md FAQ \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 "${pkgname}.8" -t "${pkgdir}/usr/share/man/man8"
+
+  # completion
+  install -Dm 644 extras/bash_completion.d/${pkgname} \
+-t "${pkgdir}/usr/share/bash-completion/completions"
+
+  # systemd
+  install -Dm 644 extras/systemd/{lynis.service,lynis.timer} \
+-t "${pkgdir}/usr/lib/systemd/system"
+}
+
+# vim: ts=2 sw=2 et:


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

2017-03-14 Thread Levente Polyak
Date: Tuesday, March 14, 2017 @ 15:03:33
  Author: anthraxx
Revision: 216286

upgpkg: lynis 2.4.5-1

Modified:
  lynis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 14:55:59 UTC (rev 216285)
+++ PKGBUILD2017-03-14 15:03:33 UTC (rev 216286)
@@ -2,7 +2,7 @@
 # Contributor: Sébastien Luttringer 
 
 pkgname=lynis
-pkgver=2.4.2
+pkgver=2.4.5
 pkgrel=1
 pkgdesc='Security and system auditing tool to harden Unix/Linux systems'
 url='https://cisofy.com/lynis/'
@@ -14,8 +14,8 @@
 'bind-tools: nameserver tests'
 'iptables: firewall tests'
 'bash-completion: completion for bash')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/CISOfy/${pkgname}/archive/${pkgver}.tar.gz)
-sha512sums=('51b469c63ef7970511e32eb41ef7eeeff0724edea395b6b42d5e9c79159cea64e7450f140dea16fec49a0bae58a123a7d554872aecdf6a94cdc4b7fae86d2673')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/CISOfy/lynis/archive/${pkgver}.tar.gz)
+sha512sums=('683f5696b0d0288e017a5760a8baca4f6d78fd9b2ae571eb114224d28217ff58b8a8db56d382817d7ad98dc920eb0531f15fc2f25969d38adc9cbee1f7e4511a')
 
 prepare() {
   cd ${pkgname}-${pkgver}
@@ -26,10 +26,10 @@
   cd ${pkgname}-${pkgver}
 
   # binary
-  install -Dm 755 "${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+  install -Dm 755 lynis -t "${pkgdir}/usr/bin"
 
   # profile
-  install -Dm 644 default.prf "${pkgdir}/etc/${pkgname}/default.prf"
+  install -Dm 644 default.prf -t "${pkgdir}/etc/${pkgname}"
 
   # plugins, include, db
   install -d "${pkgdir}/usr/share/${pkgname}"


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

2017-03-14 Thread Jonathan Steel
Date: Tuesday, March 14, 2017 @ 14:53:55
  Author: jsteel
Revision: 216282

upgpkg: hiera 3.3.1-1

Modified:
  hiera/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 14:49:57 UTC (rev 216281)
+++ PKGBUILD2017-03-14 14:53:55 UTC (rev 216282)
@@ -2,7 +2,7 @@
 # Maintainer: Jonathan Steel 
 
 pkgname=hiera
-pkgver=3.3.0
+pkgver=3.3.1
 pkgrel=1
 pkgdesc="Lightweight pluggable hierarchical database"
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('ruby')
 backup=('etc/hiera.yaml')
 source=(https://downloads.puppetlabs.com/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('02c42d601828071ce81c6ba2ac21338c')
+md5sums=('7709ff00fa7c6bbda92e2abd42c2618c')
 
 package() {
   cd $pkgname-$pkgver


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

2017-03-14 Thread Jonathan Steel
Date: Tuesday, March 14, 2017 @ 14:54:04
  Author: jsteel
Revision: 216283

archrelease: copy trunk to community-testing-any

Added:
  hiera/repos/community-testing-any/
  hiera/repos/community-testing-any/PKGBUILD
(from rev 216282, hiera/trunk/PKGBUILD)

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

Copied: hiera/repos/community-testing-any/PKGBUILD (from rev 216282, 
hiera/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2017-03-14 14:54:04 UTC (rev 216283)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Jonathan Steel 
+
+pkgname=hiera
+pkgver=3.3.1
+pkgrel=1
+pkgdesc="Lightweight pluggable hierarchical database"
+arch=('any')
+url="http://projects.puppetlabs.com/projects/hiera;
+license=('APACHE')
+depends=('ruby')
+backup=('etc/hiera.yaml')
+source=(https://downloads.puppetlabs.com/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('7709ff00fa7c6bbda92e2abd42c2618c')
+
+package() {
+  cd $pkgname-$pkgver
+
+  ruby install.rb --destdir="$pkgdir" --sitelibdir="$( ruby -e \
+'puts RbConfig::CONFIG["vendorlibdir"]' )" --mandir=/
+
+  install -d "$pkgdir"/var/lib/hiera/
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in puppet/repos (3 files)

2017-03-14 Thread Jonathan Steel
Date: Tuesday, March 14, 2017 @ 14:55:59
  Author: jsteel
Revision: 216285

archrelease: copy trunk to community-testing-any

Added:
  puppet/repos/community-testing-any/
  puppet/repos/community-testing-any/PKGBUILD
(from rev 216284, puppet/trunk/PKGBUILD)
  puppet/repos/community-testing-any/puppet.install
(from rev 216284, puppet/trunk/puppet.install)

+
 PKGBUILD   |   65 +++
 puppet.install |   20 
 2 files changed, 85 insertions(+)

Copied: puppet/repos/community-testing-any/PKGBUILD (from rev 216284, 
puppet/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2017-03-14 14:55:59 UTC (rev 216285)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Jonathan Steel 
+# Contributor: Greg Sutcliffe 
+# Contributor: Hyacinthe Cartiaux 
+# Contributor: Thomas S Hatch 
+# Contributor: Xavion 
+# Contributor: Miah Johnson 
+# Contributor: Dave Simons 
+# Contributor: Niels Abspoel 
+
+pkgname=puppet
+pkgver=4.9.4
+pkgrel=1
+pkgdesc="Server automation framework and application"
+arch=('any')
+url="http://puppetlabs.com/puppet/puppet-open-source;
+license=('Apache')
+depends=('facter' 'hiera')
+optdepends=('ruby-shadow: user password management')
+backup=('etc/puppetlabs/puppet/auth.conf'
+'etc/puppetlabs/puppet/puppet.conf')
+install=$pkgname.install
+source=(https://downloads.puppetlabs.com/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('65aa4806e00cf3fd2868cb4213c06f00')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # FS#45044: fix file location
+  sed -i 's_/opt/puppetlabs/puppet_/usr_' ext/systemd/puppet.service
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  ruby install.rb --destdir="$pkgdir" --sitelibdir="$( ruby -e \
+'puts RbConfig::CONFIG["vendorlibdir"]' )"
+
+  install -d "$pkgdir"/{var/lib/$pkgname,usr/lib/tmpfiles.d}
+
+  echo "d /run/puppetlabs 0755 $pkgname $pkgname -" > \
+"$pkgdir"/usr/lib/tmpfiles.d/$pkgname.conf
+
+  # systemd
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/ext/systemd/$pkgname.service \
+"$pkgdir"/usr/lib/systemd/system/$pkgname.service
+
+  # vim and emacs
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/ext/vim/ftdetect/$pkgname.vim \
+"$pkgdir"/usr/share/vim/vimfiles/ftdetect/$pkgname.vim
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/ext/vim/syntax/$pkgname.vim \
+"$pkgdir"/usr/share/vim/vimfiles/syntax/$pkgname.vim
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/ext/emacs/$pkgname-mode.el \
+"$pkgdir"/usr/share/emacs/site-lisp/$pkgname-mode.el
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/ext/emacs/$pkgname-mode-init.el \
+"$pkgdir"/usr/share/emacs/site-lisp/site-start.d/$pkgname-mode-init.el
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  # Match permissions that puppet sets when running
+  chmod 775 "$pkgdir"/var/lib/puppet
+  chmod 750 "$pkgdir"/var/log/puppetlabs/puppet
+
+  rm -r "$pkgdir"/var/run
+}

Copied: puppet/repos/community-testing-any/puppet.install (from rev 216284, 
puppet/trunk/puppet.install)
===
--- community-testing-any/puppet.install(rev 0)
+++ community-testing-any/puppet.install2017-03-14 14:55:59 UTC (rev 
216285)
@@ -0,0 +1,20 @@
+pre_install() {
+  getent group puppet &>/dev/null || groupadd -r puppet -g 52
+  getent passwd puppet &>/dev/null || useradd -r -u 52 -g puppet \
+-d /var/lib/puppet -s /usr/bin/nologin -c "Puppet" puppet
+}
+
+pre_upgrade() {
+  pre_install
+
+  # puppetmaster has been dropped
+  if [[ -f /run/puppetlabs/master.pid ]]; then
+systemctl stop puppetmaster
+  fi
+}
+
+pre_remove() {
+  if [[ -f /run/puppetlabs/agent.pid ]]; then
+systemctl stop puppet
+  fi
+}


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

2017-03-14 Thread Jonathan Steel
Date: Tuesday, March 14, 2017 @ 14:55:43
  Author: jsteel
Revision: 216284

upgpkg: puppet 4.9.4-1

Modified:
  puppet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 14:54:04 UTC (rev 216283)
+++ PKGBUILD2017-03-14 14:55:43 UTC (rev 216284)
@@ -9,7 +9,7 @@
 # Contributor: Niels Abspoel 
 
 pkgname=puppet
-pkgver=4.9.3
+pkgver=4.9.4
 pkgrel=1
 pkgdesc="Server automation framework and application"
 arch=('any')
@@ -21,7 +21,7 @@
 'etc/puppetlabs/puppet/puppet.conf')
 install=$pkgname.install
 source=(https://downloads.puppetlabs.com/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('6f8f9783daba8d4377a179ee9a705f01')
+md5sums=('65aa4806e00cf3fd2868cb4213c06f00')
 
 prepare() {
   cd $pkgname-$pkgver


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

2017-03-14 Thread Felix Yan
Date: Tuesday, March 14, 2017 @ 14:49:57
  Author: felixonmars
Revision: 216281

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

Added:
  haskell-yesod-auth/repos/community-staging-i686/
  haskell-yesod-auth/repos/community-staging-i686/PKGBUILD
(from rev 216280, haskell-yesod-auth/trunk/PKGBUILD)
  haskell-yesod-auth/repos/community-staging-x86_64/
  haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD
(from rev 216280, haskell-yesod-auth/trunk/PKGBUILD)

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

Copied: haskell-yesod-auth/repos/community-staging-i686/PKGBUILD (from rev 
216280, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-14 14:49:57 UTC (rev 216281)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.4.17
+pkgrel=9
+pkgdesc="Authentication for Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-authenticate" 
"haskell-base16-bytestring"
+ "haskell-base64-bytestring" "haskell-blaze-builder" 
"haskell-blaze-html"
+ "haskell-blaze-markup" "haskell-byteable" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptohash" "haskell-data-default" "haskell-email-validate"
+ "haskell-file-embed" "haskell-http-client" "haskell-http-conduit"
+ "haskell-http-types" "haskell-lifted-base" "haskell-mime-mail" 
"haskell-network-uri"
+ "haskell-nonce" "haskell-persistent" "haskell-persistent-template" 
"haskell-random"
+ "haskell-resourcet" "haskell-safe" "haskell-shakespeare" 
"haskell-text"
+ "haskell-unordered-containers" "haskell-wai" "haskell-yesod-core" 
"haskell-yesod-form"
+ "haskell-yesod-persistent")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('444a9b4b913e5f7addb1b9c5aa778f32d2b9e040d9b1c4d8a232fae908392891')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+LC_CTYPE=en_US.UTF-8 runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD (from rev 
216280, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-14 14:49:57 UTC (rev 216281)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.4.17
+pkgrel=9
+pkgdesc="Authentication for Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-authenticate" 
"haskell-base16-bytestring"
+ "haskell-base64-bytestring" "haskell-blaze-builder" 
"haskell-blaze-html"
+ "haskell-blaze-markup" "haskell-byteable" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptohash" "haskell-data-default" "haskell-email-validate"
+ "haskell-file-embed" "haskell-http-client" "haskell-http-conduit"
+ "haskell-http-types" "haskell-lifted-base" "haskell-mime-mail" 
"haskell-network-uri"
+ "haskell-nonce" "haskell-persistent" "haskell-persistent-template" 
"haskell-random"
+ "haskell-resourcet" "haskell-safe" "haskell-shakespeare" 

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

2017-03-14 Thread Felix Yan
Date: Tuesday, March 14, 2017 @ 14:49:29
  Author: felixonmars
Revision: 216280

upgpkg: haskell-yesod-auth 1.4.17-9

rebuild with tls,1.3.10

Modified:
  haskell-yesod-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 14:41:11 UTC (rev 216279)
+++ PKGBUILD2017-03-14 14:49:29 UTC (rev 216280)
@@ -5,7 +5,7 @@
 _hkgname=yesod-auth
 pkgname=haskell-yesod-auth
 pkgver=1.4.17
-pkgrel=8
+pkgrel=9
 pkgdesc="Authentication for Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2017-03-14 Thread Levente Polyak
Date: Tuesday, March 14, 2017 @ 14:48:24
  Author: anthraxx
Revision: 290834

upgpkg: jasper 2.0.12-1

Modified:
  jasper/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 11:39:19 UTC (rev 290833)
+++ PKGBUILD2017-03-14 14:48:24 UTC (rev 290834)
@@ -3,7 +3,7 @@
 
 pkgbase=jasper
 pkgname=('jasper' 'jasper-doc')
-pkgver=2.0.10
+pkgver=2.0.12
 pkgrel=1
 pkgdesc='Software-based implementation of the codec specified in the emerging 
JPEG-2000 Part-1 standard'
 url='http://www.ece.uvic.ca/~mdadams/jasper/'
@@ -13,7 +13,7 @@
 options=('staticlibs')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/mdadams/jasper/archive/version-${pkgver}.tar.gz
 jasper-1.900.1-fix-filename-buffer-overflow.patch)
-sha512sums=('8f96f72b73197088ff28364c7b4db79745a3188aa9be888ad3b211541bb4d1e45f23604b36d0b6c4176a432c2da888d1e31f119279aaab73e09430699e036859'
+sha512sums=('a30898359d85e6580772f5164c188e2e170500fa4b98c8831aa63aa87cb661b88952b278e390497571f9ebf9286855a8aa946037692309ba5f41cffe265a'
 
'b8d798bf75523c5db263783e42c653dd0cb03deee90be32eddf878bb6893cca02abadd94de6a8c737a5b7fe76f7fb245979f010765e6a95fc520b215e3a2a7f0')
 
 prepare() {


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

2017-03-14 Thread Levente Polyak
Date: Tuesday, March 14, 2017 @ 14:48:36
  Author: anthraxx
Revision: 290835

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

Added:
  jasper/repos/extra-i686/PKGBUILD
(from rev 290834, jasper/trunk/PKGBUILD)
  jasper/repos/extra-i686/jasper-1.900.1-fix-filename-buffer-overflow.patch
(from rev 290834, 
jasper/trunk/jasper-1.900.1-fix-filename-buffer-overflow.patch)
  jasper/repos/extra-x86_64/PKGBUILD
(from rev 290834, jasper/trunk/PKGBUILD)
  jasper/repos/extra-x86_64/jasper-1.900.1-fix-filename-buffer-overflow.patch
(from rev 290834, 
jasper/trunk/jasper-1.900.1-fix-filename-buffer-overflow.patch)
Deleted:
  jasper/repos/extra-i686/PKGBUILD
  jasper/repos/extra-i686/jasper-1.900.1-fix-filename-buffer-overflow.patch
  jasper/repos/extra-x86_64/PKGBUILD
  jasper/repos/extra-x86_64/jasper-1.900.1-fix-filename-buffer-overflow.patch

+
 /PKGBUILD  |  150 
++
 /jasper-1.900.1-fix-filename-buffer-overflow.patch |   74 
 extra-i686/PKGBUILD|   75 -
 extra-i686/jasper-1.900.1-fix-filename-buffer-overflow.patch   |   37 --
 extra-x86_64/PKGBUILD  |   75 -
 extra-x86_64/jasper-1.900.1-fix-filename-buffer-overflow.patch |   37 --
 6 files changed, 224 insertions(+), 224 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-03-14 14:48:24 UTC (rev 290834)
+++ extra-i686/PKGBUILD 2017-03-14 14:48:36 UTC (rev 290835)
@@ -1,75 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Eric Bélanger 
-
-pkgbase=jasper
-pkgname=('jasper' 'jasper-doc')
-pkgver=2.0.10
-pkgrel=1
-pkgdesc='Software-based implementation of the codec specified in the emerging 
JPEG-2000 Part-1 standard'
-url='http://www.ece.uvic.ca/~mdadams/jasper/'
-arch=('i686' 'x86_64')
-license=('custom:JasPer2.0')
-makedepends=('libjpeg' 'freeglut' 'libxmu' 'glu' 'cmake' 'doxygen')
-options=('staticlibs')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/mdadams/jasper/archive/version-${pkgver}.tar.gz
-jasper-1.900.1-fix-filename-buffer-overflow.patch)
-sha512sums=('8f96f72b73197088ff28364c7b4db79745a3188aa9be888ad3b211541bb4d1e45f23604b36d0b6c4176a432c2da888d1e31f119279aaab73e09430699e036859'
-
'b8d798bf75523c5db263783e42c653dd0cb03deee90be32eddf878bb6893cca02abadd94de6a8c737a5b7fe76f7fb245979f010765e6a95fc520b215e3a2a7f0')
-
-prepare() {
-  cd ${pkgbase}-version-${pkgver}
-  patch -p1 < "${srcdir}/jasper-1.900.1-fix-filename-buffer-overflow.patch"
-  sed -r 's|(CMAKE_SKIP_BUILD_RPATH) FALSE|\1 TRUE|g' -i CMakeLists.txt
-  mkdir -p build-shared build-static
-}
-
-build() {
-  cd ${pkgbase}-version-${pkgver}
-  local options=(
--DCMAKE_INSTALL_PREFIX=/usr
--DCMAKE_INSTALL_LIBDIR=lib
--DCMAKE_BUILD_TYPE=Release
--DJAS_ENABLE_OPENGL=ON
--DJAS_ENABLE_LIBJPEG=ON
--DJAS_ENABLE_AUTOMATIC_DEPENDENCIES=OFF
--DCMAKE_SKIP_RPATH=ON
-  )
-  msg2 "Building static lib..."
-  (cd build-static
-cmake ${options[@]} -DJAS_ENABLE_SHARED=OFF ..
-make
-  )
-  msg2 "Building shared lib..."
-  (cd build-shared
-cmake ${options[@]} -DJAS_ENABLE_SHARED=ON ..
-make
-  )
-}
-
-check() {
-  cd ${pkgbase}-version-${pkgver}/build-static
-  make -j1 test
-}
-
-package_jasper() {
-  depends=('libjpeg')
-  optdepends=('jasper-doc: documentation'
-  'freeglut: jiv support'
-  'glu: jiv support')
-  cd ${pkgbase}-version-${pkgver}
-  make -C build-static DESTDIR="${pkgdir}" install
-  make -C build-shared DESTDIR="${pkgdir}" install
-  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -r "${pkgdir}/usr/share/doc"
-}
-
-package_jasper-doc() {
-  pkgdesc+=' (documentation)'
-  optdepends=('jasper')
-  cd ${pkgbase}-version-${pkgver}
-  make -C build-shared DESTDIR="${pkgdir}" install
-  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  rm -rf "${pkgdir}/usr/"{bin,include,lib,share/man}
-}
-
-# vim: ts=2 sw=2 et:

Copied: jasper/repos/extra-i686/PKGBUILD (from rev 290834, 
jasper/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-03-14 14:48:36 UTC (rev 290835)
@@ -0,0 +1,75 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Eric Bélanger 
+
+pkgbase=jasper
+pkgname=('jasper' 'jasper-doc')
+pkgver=2.0.12
+pkgrel=1
+pkgdesc='Software-based implementation of the codec specified in the emerging 
JPEG-2000 Part-1 standard'
+url='http://www.ece.uvic.ca/~mdadams/jasper/'
+arch=('i686' 'x86_64')
+license=('custom:JasPer2.0')
+makedepends=('libjpeg' 'freeglut' 'libxmu' 'glu' 'cmake' 'doxygen')

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

2017-03-14 Thread Felix Yan
Date: Tuesday, March 14, 2017 @ 14:41:11
  Author: felixonmars
Revision: 216279

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

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

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

Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 216278, 
haskell-aws/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-14 14:41:11 UTC (rev 216279)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aws
+pkgname=haskell-aws
+pkgver=0.16
+pkgrel=9
+pkgdesc="Amazon Web Services (AWS) for Haskell"
+url="http://github.com/aristidb/aws;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" 
"haskell-base16-bytestring"
+ "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable"
+ "haskell-case-insensitive" "haskell-cereal" "haskell-conduit"
+ "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default"
+ "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base"
+ "haskell-monad-control" "haskell-mtl" "haskell-network" 
"haskell-old-locale"
+ "haskell-resourcet" "haskell-safe" "haskell-scientific" 
"haskell-tagged"
+ "haskell-text" "haskell-unordered-containers" "haskell-utf8-string"
+ "haskell-vector" "haskell-xml-conduit")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('84b5c60227f3c9eddc0abf0881aee22443fc4a211b8a95f18be628eaa492209c')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-examples
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 216278, 
haskell-aws/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-14 14:41:11 UTC (rev 216279)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aws
+pkgname=haskell-aws
+pkgver=0.16
+pkgrel=9
+pkgdesc="Amazon Web Services (AWS) for Haskell"
+url="http://github.com/aristidb/aws;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" 
"haskell-base16-bytestring"
+ "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable"
+ "haskell-case-insensitive" "haskell-cereal" "haskell-conduit"
+ "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default"
+ "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base"
+ "haskell-monad-control" "haskell-mtl" "haskell-network" 
"haskell-old-locale"
+ "haskell-resourcet" "haskell-safe" "haskell-scientific" 
"haskell-tagged"
+ "haskell-text" "haskell-unordered-containers" "haskell-utf8-string"
+ "haskell-vector" "haskell-xml-conduit")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('84b5c60227f3c9eddc0abf0881aee22443fc4a211b8a95f18be628eaa492209c')
+
+build() {
+

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

2017-03-14 Thread Felix Yan
Date: Tuesday, March 14, 2017 @ 14:40:44
  Author: felixonmars
Revision: 216278

upgpkg: haskell-aws 0.16-9

rebuild with tls,1.3.10

Modified:
  haskell-aws/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 14:35:02 UTC (rev 216277)
+++ PKGBUILD2017-03-14 14:40:44 UTC (rev 216278)
@@ -5,7 +5,7 @@
 _hkgname=aws
 pkgname=haskell-aws
 pkgver=0.16
-pkgrel=8
+pkgrel=9
 pkgdesc="Amazon Web Services (AWS) for Haskell"
 url="http://github.com/aristidb/aws;
 license=("custom:BSD3")


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

2017-03-14 Thread Jonathan Steel
Date: Tuesday, March 14, 2017 @ 14:35:02
  Author: jsteel
Revision: 216277

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

Added:
  facter/repos/community-testing-i686/
  facter/repos/community-testing-i686/PKGBUILD
(from rev 216276, facter/trunk/PKGBUILD)
  facter/repos/community-testing-x86_64/
  facter/repos/community-testing-x86_64/PKGBUILD
(from rev 216276, facter/trunk/PKGBUILD)

---+
 community-testing-i686/PKGBUILD   |   53 
 community-testing-x86_64/PKGBUILD |   53 
 2 files changed, 106 insertions(+)

Copied: facter/repos/community-testing-i686/PKGBUILD (from rev 216276, 
facter/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-03-14 14:35:02 UTC (rev 216277)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Jonathan Steel 
+# Contributor: Greg Sutcliffe 
+# Contributor: Hyacinthe Cartiaux 
+# Contributor: Thomas S Hatch 
+# Contributor: Dave Simons 
+# Contributor: Niels Abspoel 
+
+pkgname=facter
+pkgver=3.6.2
+pkgrel=1
+pkgdesc="Collect and display system facts"
+arch=('i686' 'x86_64')
+url="http://puppetlabs.com/facter;
+license=('APACHE')
+depends=('ruby' 'yaml-cpp' 'boost-libs' 'curl')
+makedepends=('boost' 'cmake' 'java-environment' 'leatherman' 'cpp-hocon')
+optdepends=('java-environment: jruby support')
+replaces=('cfacter')
+source=(http://downloads.puppetlabs.com/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('ef01ddd49e91cf59eccb59865372b09c')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Replace rb_data_object_alloc symbol with rb_data_object_wrap
+  # https://tickets.puppetlabs.com/browse/FACT-1291
+  sed -i 's/rb_data_object_alloc/rb_data_object_wrap/g' \
+$( grep -rl rb_data_object_alloc lib/src/ruby )
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  JAVA_HOME=/usr/lib/jvm/default cmake -DCMAKE_INSTALL_PREFIX=/usr
+
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+
+  # TODO: Investigate why tests fail on i686 most of the time with Ruby 2.3.0
+  make test || [[ $CARCH == i686 ]]
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make install DESTDIR="$pkgdir"
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: facter/repos/community-testing-x86_64/PKGBUILD (from rev 216276, 
facter/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-03-14 14:35:02 UTC (rev 216277)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Jonathan Steel 
+# Contributor: Greg Sutcliffe 
+# Contributor: Hyacinthe Cartiaux 
+# Contributor: Thomas S Hatch 
+# Contributor: Dave Simons 
+# Contributor: Niels Abspoel 
+
+pkgname=facter
+pkgver=3.6.2
+pkgrel=1
+pkgdesc="Collect and display system facts"
+arch=('i686' 'x86_64')
+url="http://puppetlabs.com/facter;
+license=('APACHE')
+depends=('ruby' 'yaml-cpp' 'boost-libs' 'curl')
+makedepends=('boost' 'cmake' 'java-environment' 'leatherman' 'cpp-hocon')
+optdepends=('java-environment: jruby support')
+replaces=('cfacter')
+source=(http://downloads.puppetlabs.com/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('ef01ddd49e91cf59eccb59865372b09c')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Replace rb_data_object_alloc symbol with rb_data_object_wrap
+  # https://tickets.puppetlabs.com/browse/FACT-1291
+  sed -i 's/rb_data_object_alloc/rb_data_object_wrap/g' \
+$( grep -rl rb_data_object_alloc lib/src/ruby )
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  JAVA_HOME=/usr/lib/jvm/default cmake -DCMAKE_INSTALL_PREFIX=/usr
+
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+
+  # TODO: Investigate why tests fail on i686 most of the time with Ruby 2.3.0
+  make test || [[ $CARCH == i686 ]]
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make install DESTDIR="$pkgdir"
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2017-03-14 Thread Jonathan Steel
Date: Tuesday, March 14, 2017 @ 14:34:51
  Author: jsteel
Revision: 216276

upgpkg: facter 3.6.2-1

Modified:
  facter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 14:30:56 UTC (rev 216275)
+++ PKGBUILD2017-03-14 14:34:51 UTC (rev 216276)
@@ -7,7 +7,7 @@
 # Contributor: Niels Abspoel 
 
 pkgname=facter
-pkgver=3.6.1
+pkgver=3.6.2
 pkgrel=1
 pkgdesc="Collect and display system facts"
 arch=('i686' 'x86_64')
@@ -18,7 +18,7 @@
 optdepends=('java-environment: jruby support')
 replaces=('cfacter')
 source=(http://downloads.puppetlabs.com/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('0f991a440acaf106702eaf1a319ee493')
+md5sums=('ef01ddd49e91cf59eccb59865372b09c')
 
 prepare() {
   cd $pkgname-$pkgver


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

2017-03-14 Thread Jonathan Steel
Date: Tuesday, March 14, 2017 @ 14:30:38
  Author: jsteel
Revision: 216273

upgpkg: leatherman 0.11.1-1

Modified:
  leatherman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-14 14:30:17 UTC (rev 216272)
+++ PKGBUILD2017-03-14 14:30:38 UTC (rev 216273)
@@ -1,7 +1,7 @@
 # Maintainer: Jonathan Steel 
 
 pkgname=leatherman
-pkgver=0.11.0
+pkgver=0.11.1
 pkgrel=1
 pkgdesc="Collection of C++ and CMake utility libraries"
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 checkdepends=('ruby')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/puppetlabs/leatherman/archive/$pkgver.tar.gz
 ruby-2.4.patch)
-md5sums=('8ea6260b8138ee9b1210cf46673d308a'
+md5sums=('d4533726589e89f3aae20df027cd1ea3'
  'eb63e7694bd15e779ddc7b146adaad90')
 
 prepare() {


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

2017-03-14 Thread Jonathan Steel
Date: Tuesday, March 14, 2017 @ 14:30:56
  Author: jsteel
Revision: 216275

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

Added:
  leatherman/repos/community-i686/PKGBUILD
(from rev 216274, leatherman/trunk/PKGBUILD)
  leatherman/repos/community-i686/ruby-2.4.patch
(from rev 216274, leatherman/trunk/ruby-2.4.patch)
  leatherman/repos/community-x86_64/PKGBUILD
(from rev 216274, leatherman/trunk/PKGBUILD)
  leatherman/repos/community-x86_64/ruby-2.4.patch
(from rev 216274, leatherman/trunk/ruby-2.4.patch)
Deleted:
  leatherman/repos/community-i686/PKGBUILD
  leatherman/repos/community-i686/ruby-2.4.patch
  leatherman/repos/community-x86_64/PKGBUILD
  leatherman/repos/community-x86_64/ruby-2.4.patch

-+
 /PKGBUILD   |   96 
 /ruby-2.4.patch |  126 ++
 community-i686/PKGBUILD |   48 --
 community-i686/ruby-2.4.patch   |   63 ---
 community-x86_64/PKGBUILD   |   48 --
 community-x86_64/ruby-2.4.patch |   63 ---
 6 files changed, 222 insertions(+), 222 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-14 14:30:43 UTC (rev 216274)
+++ community-i686/PKGBUILD 2017-03-14 14:30:56 UTC (rev 216275)
@@ -1,48 +0,0 @@
-# Maintainer: Jonathan Steel 
-
-pkgname=leatherman
-pkgver=0.11.0
-pkgrel=1
-pkgdesc="Collection of C++ and CMake utility libraries"
-arch=('i686' 'x86_64')
-url="https://github.com/puppetlabs/leatherman;
-license=('APACHE')
-makedepends=('boost' 'cmake' 'rapidjson')
-checkdepends=('ruby')
-source=($pkgname-$pkgver.tar.gz::https://github.com/puppetlabs/leatherman/archive/$pkgver.tar.gz
-ruby-2.4.patch)
-md5sums=('8ea6260b8138ee9b1210cf46673d308a'
- 'eb63e7694bd15e779ddc7b146adaad90')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Ruby 2.3 fix: replace rb_data_object_alloc symbol with rb_data_object_wrap
-  sed -i 's/rb_data_object_alloc/rb_data_object_wrap/g' \
-$( grep -rl rb_data_object_alloc ruby )
-
-  # (LTH-124) Fix for ruby-2.4 related API changes
-  patch -p1 -i ../ruby-2.4.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr
-
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-
-  make test
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make install DESTDIR="$pkgdir"
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: leatherman/repos/community-i686/PKGBUILD (from rev 216274, 
leatherman/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-14 14:30:56 UTC (rev 216275)
@@ -0,0 +1,48 @@
+# Maintainer: Jonathan Steel 
+
+pkgname=leatherman
+pkgver=0.11.1
+pkgrel=1
+pkgdesc="Collection of C++ and CMake utility libraries"
+arch=('i686' 'x86_64')
+url="https://github.com/puppetlabs/leatherman;
+license=('APACHE')
+makedepends=('boost' 'cmake' 'rapidjson')
+checkdepends=('ruby')
+source=($pkgname-$pkgver.tar.gz::https://github.com/puppetlabs/leatherman/archive/$pkgver.tar.gz
+ruby-2.4.patch)
+md5sums=('d4533726589e89f3aae20df027cd1ea3'
+ 'eb63e7694bd15e779ddc7b146adaad90')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Ruby 2.3 fix: replace rb_data_object_alloc symbol with rb_data_object_wrap
+  sed -i 's/rb_data_object_alloc/rb_data_object_wrap/g' \
+$( grep -rl rb_data_object_alloc ruby )
+
+  # (LTH-124) Fix for ruby-2.4 related API changes
+  patch -p1 -i ../ruby-2.4.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr
+
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+
+  make test
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make install DESTDIR="$pkgdir"
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: community-i686/ruby-2.4.patch
===
--- community-i686/ruby-2.4.patch   2017-03-14 14:30:43 UTC (rev 216274)
+++ community-i686/ruby-2.4.patch   2017-03-14 14:30:56 UTC (rev 216275)
@@ -1,63 +0,0 @@
-diff --git a/ruby/inc/leatherman/ruby/api.hpp 
b/ruby/inc/leatherman/ruby/api.hpp
-index 32117c6..4f6c0ba 100644
 a/ruby/inc/leatherman/ruby/api.hpp
-+++ b/ruby/inc/leatherman/ruby/api.hpp
-@@ -412,15 +412,11 @@ namespace leatherman {  namespace ruby {
- /**
-  * See MRI documentation.
-  */
--VALUE* const rb_cFixnum;
-+VALUE* const rb_cInteger;
- /**
-  * See MRI documentation.
-  */
- VALUE* const rb_cFloat;
--/**
-- * See MRI documentation.
-- */
--VALUE* const rb_cBignum;
- 
- /**
-  * See MRI documentation.
-diff --git a/ruby/src/api.cc b/ruby/src/api.cc
-index 

  1   2   3   >