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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:00:21
  Author: felixonmars
Revision: 372170

upgpkg: haskell-haddock-library 1.6.0-6

rebuild with StateVar 1.1.1.1

Modified:
  haskell-haddock-library/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 06:59:00 UTC (rev 372169)
+++ PKGBUILD2018-08-17 07:00:21 UTC (rev 372170)
@@ -4,7 +4,7 @@
 _hkgname=haddock-library
 pkgname=haskell-haddock-library
 pkgver=1.6.0
-pkgrel=5
+pkgrel=6
 pkgdesc="A documentation-generation tool for Haskell libraries"
 url="https://www.haskell.org/haddock/";
 license=("custom:BSD3")


[arch-commits] Commit in haskell-haddock-library/repos (2 files)

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:00:41
  Author: felixonmars
Revision: 372171

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-haddock-library/repos/community-staging-x86_64/
  haskell-haddock-library/repos/community-staging-x86_64/PKGBUILD
(from rev 372170, haskell-haddock-library/trunk/PKGBUILD)

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

Copied: haskell-haddock-library/repos/community-staging-x86_64/PKGBUILD (from 
rev 372170, haskell-haddock-library/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:00:41 UTC (rev 372171)
@@ -0,0 +1,50 @@
+# $Id: PKGBUILD 124882 2014-12-29 22:07:40Z spupykin $
+# Maintainer: Sergej Pupykin 
+
+_hkgname=haddock-library
+pkgname=haskell-haddock-library
+pkgver=1.6.0
+pkgrel=6
+pkgdesc="A documentation-generation tool for Haskell libraries"
+url="https://www.haskell.org/haddock/";
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-base-compat' 'haskell-hspec' 
'haskell-hspec-discover'
+ 'haskell-quickcheck' 'haskell-optparse-applicative' 
'haskell-tree-diff')
+source=("https://hackage.haskell.org/packages/archive/haddock-library/${pkgver}/haddock-library-${pkgver}.tar.gz";)
+sha512sums=('e24906db32b740da99b048127e166ce57c0fd7bb14d8d6f34f4b94d8583387aa11b5cb6a734eddc91602037612b0fd725c95d2d37aca539c1be8dfd70d6e8a73')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/\^>=/>=/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+# TODO: doesn't look like my fault :/
+runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:02:00
  Author: felixonmars
Revision: 372172

upgpkg: haskell-turtle 1.5.10-18

rebuild with StateVar 1.1.1.1

Modified:
  haskell-turtle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:00:41 UTC (rev 372171)
+++ PKGBUILD2018-08-17 07:02:00 UTC (rev 372172)
@@ -5,7 +5,7 @@
 _hkgname=turtle
 pkgname=haskell-turtle
 pkgver=1.5.10
-pkgrel=17
+pkgrel=18
 pkgdesc="Shell programming, Haskell-style"
 url="https://github.com/Gabriel439/Haskell-Turtle-Library";
 license=('custom:BSD3')


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:02:21
  Author: felixonmars
Revision: 372173

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-turtle/repos/community-staging-x86_64/
  haskell-turtle/repos/community-staging-x86_64/PKGBUILD
(from rev 372172, haskell-turtle/trunk/PKGBUILD)

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

Copied: haskell-turtle/repos/community-staging-x86_64/PKGBUILD (from rev 
372172, haskell-turtle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:02:21 UTC (rev 372173)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=turtle
+pkgname=haskell-turtle
+pkgver=1.5.10
+pkgrel=18
+pkgdesc="Shell programming, Haskell-style"
+url="https://github.com/Gabriel439/Haskell-Turtle-Library";
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ansi-wl-pprint' 'haskell-async' 'haskell-clock' 
'haskell-exceptions'
+ 'haskell-foldl' 'haskell-hostname' 'haskell-managed' 
'haskell-optparse-applicative'
+ 'haskell-optional-args' 'haskell-system-fileio' 
'haskell-system-filepath'
+ 'haskell-temporary' 'haskell-unix-compat')
+makedepends=('ghc' 'haskell-doctest')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('50746c89867a20b34fc8955a9a61a40d696f304c51cb1f5217fb2332aa85205f4c3893034133c609082858a95bddfa62f0dddc109784dee1d53543fcc76e3f1d')
+
+prepare() {
+sed -i 's/]/, "-dynamic"]/' $_hkgname-$pkgver/test/Main.hs
+sed -i '/semigroups/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:03:03
  Author: felixonmars
Revision: 372174

upgpkg: haskell-vector-instances 3.4-81

rebuild with StateVar 1.1.1.1

Modified:
  haskell-vector-instances/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:02:21 UTC (rev 372173)
+++ PKGBUILD2018-08-17 07:03:03 UTC (rev 372174)
@@ -5,7 +5,7 @@
 _hkgname=vector-instances
 pkgname=haskell-vector-instances
 pkgver=3.4
-pkgrel=80
+pkgrel=81
 pkgdesc="Orphan Instances for \'Data.Vector\'"
 url="https://github.com/ekmett/vector-instances";
 license=("custom:BSD3")


[arch-commits] Commit in haskell-vector-instances/repos (2 files)

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:03:23
  Author: felixonmars
Revision: 372175

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-vector-instances/repos/community-staging-x86_64/
  haskell-vector-instances/repos/community-staging-x86_64/PKGBUILD
(from rev 372174, haskell-vector-instances/trunk/PKGBUILD)

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

Copied: haskell-vector-instances/repos/community-staging-x86_64/PKGBUILD (from 
rev 372174, haskell-vector-instances/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:03:23 UTC (rev 372175)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vector-instances
+pkgname=haskell-vector-instances
+pkgver=3.4
+pkgrel=81
+pkgdesc="Orphan Instances for \'Data.Vector\'"
+url="https://github.com/ekmett/vector-instances";
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-comonad" "haskell-hashable" "haskell-keys" 
"haskell-pointed"
+ "haskell-semigroupoids" "haskell-vector")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('67ffd6b941909bda1b6f26c8c7579fc495267425461f15f20bbaecf22b67d3dbf4ee88eb2ac76232f47917c26558eb325fedfe8ffc97368bbe1ad90fb427a7b1')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fhashable
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:04:00
  Author: felixonmars
Revision: 372176

upgpkg: haskell-wai-conduit 3.0.0.4-55

rebuild with StateVar 1.1.1.1

Modified:
  haskell-wai-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:03:23 UTC (rev 372175)
+++ PKGBUILD2018-08-17 07:04:00 UTC (rev 372176)
@@ -5,7 +5,7 @@
 _hkgname=wai-conduit
 pkgname=haskell-wai-conduit
 pkgver=3.0.0.4
-pkgrel=54
+pkgrel=55
 pkgdesc="Conduit wrappers for WAI"
 url="https://github.com/yesodweb/wai";
 license=("MIT")


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:04:21
  Author: felixonmars
Revision: 372177

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wai-conduit/repos/community-staging-x86_64/
  haskell-wai-conduit/repos/community-staging-x86_64/PKGBUILD
(from rev 372176, haskell-wai-conduit/trunk/PKGBUILD)

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

Copied: haskell-wai-conduit/repos/community-staging-x86_64/PKGBUILD (from rev 
372176, haskell-wai-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:04:21 UTC (rev 372177)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-conduit
+pkgname=haskell-wai-conduit
+pkgver=3.0.0.4
+pkgrel=55
+pkgdesc="Conduit wrappers for WAI"
+url="https://github.com/yesodweb/wai";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-conduit' 'haskell-http-types' 'haskell-wai')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('49f1a2b53912a899b4cf427a72ab7c34994fd86810e5345233de34a611c71b970ff09e8fa33c93803950c2991a7c22c9b0b6d277fc9aca64bb599af60415ae70')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:05:52
  Author: felixonmars
Revision: 372178

upgpkg: haskell-warp 3.2.23-13

rebuild with StateVar 1.1.1.1

Modified:
  haskell-warp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:04:21 UTC (rev 372177)
+++ PKGBUILD2018-08-17 07:05:52 UTC (rev 372178)
@@ -5,7 +5,7 @@
 _hkgname=warp
 pkgname=haskell-warp
 pkgver=3.2.23
-pkgrel=12
+pkgrel=13
 pkgdesc="A fast, light-weight web server for WAI applications."
 url="https://github.com/yesodweb/wai";
 license=("MIT")


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:06:13
  Author: felixonmars
Revision: 372179

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-warp/repos/community-staging-x86_64/PKGBUILD (from rev 372178, 
haskell-warp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:06:13 UTC (rev 372179)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=warp
+pkgname=haskell-warp
+pkgver=3.2.23
+pkgrel=13
+pkgdesc="A fast, light-weight web server for WAI applications."
+url="https://github.com/yesodweb/wai";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-auto-update' 
'haskell-bsb-http-chunked'
+ 'haskell-case-insensitive' 'haskell-hashable' 'haskell-http-date' 
'haskell-http-types'
+ 'haskell-http2' 'haskell-iproute' 'haskell-network' 
'haskell-simple-sendfile'
+ 'haskell-streaming-commons' 'haskell-unix-compat' 'haskell-vault'
+ 'haskell-wai' 'haskell-word8')
+makedepends=('ghc' 'haskell-doctest' 'haskell-http-client' 'haskell-hspec' 
'haskell-hunit'
+ 'haskell-lifted-base' 'haskell-quickcheck' 'haskell-silently')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('839f6a484731233f086df167634cdf6d156da72163e2088cf9a5812d982833035778a23ef8fcdcca44e3cff3d63602688ad9c42812219c84ece30ebd1d5c1636')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-warp-debug -fallow-sendfilefd -f-network-bytestring
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:07:26
  Author: felixonmars
Revision: 372180

upgpkg: haskell-http 4000.3.12-39

rebuild with StateVar 1.1.1.1

Modified:
  haskell-http/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:06:13 UTC (rev 372179)
+++ PKGBUILD2018-08-17 07:07:26 UTC (rev 372180)
@@ -5,7 +5,7 @@
 _hkgname=HTTP
 pkgname=haskell-http
 pkgver=4000.3.12
-pkgrel=38
+pkgrel=39
 pkgdesc="A library for client-side HTTP"
 url="https://hackage.haskell.org/package/${_hkgname}";
 license=('custom:BSD3')


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:07:46
  Author: felixonmars
Revision: 372181

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-http/repos/community-staging-x86_64/PKGBUILD (from rev 372180, 
haskell-http/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:07:46 UTC (rev 372181)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=HTTP
+pkgname=haskell-http
+pkgver=4000.3.12
+pkgrel=39
+pkgdesc="A library for client-side HTTP"
+url="https://hackage.haskell.org/package/${_hkgname}";
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-network' 'haskell-network-uri')
+makedepends=('ghc' 'haskell-hunit' 'haskell-httpd-shed' 'haskell-puremd5' 
'haskell-split'
+ 'haskell-test-framework' 'haskell-test-framework-hunit' 
'haskell-case-insensitive'
+ 'haskell-http-types' 'haskell-wai' 'haskell-warp' 
'haskell-conduit'
+ 'haskell-conduit-extra')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('684741c017fd39c6a7ff1d75f182b465938d5c2a2abe92a0fcaec69a46fc11e59234c1b666ecf28465333df34ea267443fd56abaa38db21479cbcc19e286781e')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-mtl1 -f-warn-as-error -f-conduit10 -fwarp-tests -fnetwork-uri
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:11:09
  Author: felixonmars
Revision: 372182

upgpkg: cabal-install 2.2.0.0-59

rebuild with StateVar 1.1.1.1

Modified:
  cabal-install/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:07:46 UTC (rev 372181)
+++ PKGBUILD2018-08-17 07:11:09 UTC (rev 372182)
@@ -6,7 +6,7 @@
 
 pkgname=cabal-install
 pkgver=2.2.0.0
-pkgrel=58
+pkgrel=59
 pkgdesc="The command-line interface for Cabal and Hackage."
 url="https://hackage.haskell.org/package/cabal-install";
 license=('custom:BSD3')


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:11:32
  Author: felixonmars
Revision: 372183

archrelease: copy trunk to community-staging-x86_64

Added:
  cabal-install/repos/community-staging-x86_64/
  cabal-install/repos/community-staging-x86_64/PKGBUILD
(from rev 372182, cabal-install/trunk/PKGBUILD)

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

Copied: cabal-install/repos/community-staging-x86_64/PKGBUILD (from rev 372182, 
cabal-install/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:11:32 UTC (rev 372183)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Arch Haskell Team 
+
+pkgname=cabal-install
+pkgver=2.2.0.0
+pkgrel=59
+pkgdesc="The command-line interface for Cabal and Hackage."
+url="https://hackage.haskell.org/package/cabal-install";
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-base16-bytestring' 
'haskell-cryptohash-sha256'
+ 'haskell-echo' 'haskell-edit-distance' 'haskell-hackage-security' 
'haskell-hashable'
+ 'haskell-http' 'haskell-network' 'haskell-network-uri' 
'haskell-random' 'haskell-resolv'
+ 'haskell-tar' 'haskell-zlib')
+makedepends=('ghc' 'haskell-pretty-show' 'haskell-quickcheck' 'haskell-tagged' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/package/cabal-install-${pkgver}/cabal-install-${pkgver}.tar.gz";)
+sha512sums=('1b8c31dee09332808bc727322e1e0ca6aaa8c818c5172f412a9d56e8474c93cc814cab6d0cb776a5d0bb94155c023a098872fb91329ff6377278f891f06686f2')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i 's/<.*2.7/<3/' $pkgname.cabal
+}
+
+build() {
+  cd "${srcdir}/$pkgname-$pkgver"
+
+  runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla \
+--docdir="/usr/share/doc/${pkgname}" --enable-tests \
+-fnetwork-uri -fnative-dns -f-debug-expensive-assertions 
-f-debug-conflict-sets \
+-f-debug-tracetree -f-monolithic -f-lib
+  runhaskell Setup build
+}
+
+check() {
+  cd $pkgname-$pkgver
+  runhaskell Setup test || warning "TODO: pass -dynamic somewhere"
+}
+
+package() {
+  cd "${srcdir}/$pkgname-$pkgver"
+  runhaskell Setup copy --destdir="${pkgdir}"
+
+  install -Dm644 LICENSE \
+"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  install -Dm644 bash-completion/cabal \
+"${pkgdir}/usr/share/bash-completion/completions/cabal"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:18:18
  Author: felixonmars
Revision: 372184

upgpkg: pigar 0.9.0-1

Modified:
  pigar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:11:32 UTC (rev 372183)
+++ PKGBUILD2018-08-17 07:18:18 UTC (rev 372184)
@@ -3,16 +3,16 @@
 
 pkgbase=pigar
 pkgname=("pigar" "python2-pigar")
-pkgver=0.7.2
-pkgrel=2
+pkgver=0.9.0
+pkgrel=1
 pkgdesc="A fantastic tool to generate requirements for your Python project, 
and more than that"
 arch=('any')
 url="https://github.com/Damnever/pigar";
 license=('BSD')
 makedepends=('python-setuptools' 'python2-setuptools' 'python-colorama' 
'python2-colorama'
- 'python2-futures' 'python-gevent' 'python2-gevent')
+ 'python2-futures' 'python-requests' 'python2-requests')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/Damnever/pigar/archive/v$pkgver.tar.gz";)
-sha512sums=('cf1d7035c2f2ed20eef43dc8870401dfdf984cab91c26420bdbf9259400268145db89dc791526b2953267dee57f3d589bc68fa5608a2a8951e6326b825cc4fd0')
+sha512sums=('c1d5b0145bb9b3f964af103146946fe99f1324bff03468bfc3c4316e266456422f2c1a7d8a6304a5b3e6812d2c3bcdc23d501afb013d90277321b22e075dd7e7')
 
 prepare() {
   cp -a pigar-$pkgver{,-py2}
@@ -35,7 +35,7 @@
 }
 
 package_pigar() {
-  depends=('python-setuptools' 'python-colorama' 'python-gevent')
+  depends=('python-setuptools' 'python-colorama' 'python-requests')
 
   cd pigar-$pkgver
   python3 setup.py install -O1 --root="$pkgdir"
@@ -44,7 +44,7 @@
 }
 
 package_python2-pigar() {
-  depends=('python2-setuptools' 'python2-colorama' 'python2-gevent' 
'python2-futures')
+  depends=('python2-setuptools' 'python2-colorama' 'python2-requests' 
'python2-futures')
 
   cd pigar-$pkgver-py2
   python2 setup.py install -O1 --root="$pkgdir"


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:18:44
  Author: felixonmars
Revision: 372185

archrelease: copy trunk to community-any

Added:
  pigar/repos/community-any/PKGBUILD
(from rev 372184, pigar/trunk/PKGBUILD)
Deleted:
  pigar/repos/community-any/PKGBUILD

--+
 PKGBUILD |  112 ++---
 1 file changed, 56 insertions(+), 56 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-17 07:18:18 UTC (rev 372184)
+++ PKGBUILD2018-08-17 07:18:44 UTC (rev 372185)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=pigar
-pkgname=("pigar" "python2-pigar")
-pkgver=0.7.2
-pkgrel=2
-pkgdesc="A fantastic tool to generate requirements for your Python project, 
and more than that"
-arch=('any')
-url="https://github.com/Damnever/pigar";
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-colorama' 
'python2-colorama'
- 'python2-futures' 'python-gevent' 'python2-gevent')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/Damnever/pigar/archive/v$pkgver.tar.gz";)
-sha512sums=('cf1d7035c2f2ed20eef43dc8870401dfdf984cab91c26420bdbf9259400268145db89dc791526b2953267dee57f3d589bc68fa5608a2a8951e6326b825cc4fd0')
-
-prepare() {
-  cp -a pigar-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/pigar-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/pigar-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/pigar-$pkgver
-  python -m unittest discover pigar/tests/ -t . -v
-
-  cd "$srcdir"/pigar-$pkgver-py2
-  python2 -m unittest discover pigar/tests/ -t . -v
-}
-
-package_pigar() {
-  depends=('python-setuptools' 'python-colorama' 'python-gevent')
-
-  cd pigar-$pkgver
-  python3 setup.py install -O1 --root="$pkgdir"
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-pigar() {
-  depends=('python2-setuptools' 'python2-colorama' 'python2-gevent' 
'python2-futures')
-
-  cd pigar-$pkgver-py2
-  python2 setup.py install -O1 --root="$pkgdir"
-  mv "$pkgdir"/usr/bin/pigar{,2}
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: pigar/repos/community-any/PKGBUILD (from rev 372184, 
pigar/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-17 07:18:44 UTC (rev 372185)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=pigar
+pkgname=("pigar" "python2-pigar")
+pkgver=0.9.0
+pkgrel=1
+pkgdesc="A fantastic tool to generate requirements for your Python project, 
and more than that"
+arch=('any')
+url="https://github.com/Damnever/pigar";
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-colorama' 
'python2-colorama'
+ 'python2-futures' 'python-requests' 'python2-requests')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/Damnever/pigar/archive/v$pkgver.tar.gz";)
+sha512sums=('c1d5b0145bb9b3f964af103146946fe99f1324bff03468bfc3c4316e266456422f2c1a7d8a6304a5b3e6812d2c3bcdc23d501afb013d90277321b22e075dd7e7')
+
+prepare() {
+  cp -a pigar-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pigar-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/pigar-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/pigar-$pkgver
+  python -m unittest discover pigar/tests/ -t . -v
+
+  cd "$srcdir"/pigar-$pkgver-py2
+  python2 -m unittest discover pigar/tests/ -t . -v
+}
+
+package_pigar() {
+  depends=('python-setuptools' 'python-colorama' 'python-requests')
+
+  cd pigar-$pkgver
+  python3 setup.py install -O1 --root="$pkgdir"
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pigar() {
+  depends=('python2-setuptools' 'python2-colorama' 'python2-requests' 
'python2-futures')
+
+  cd pigar-$pkgver-py2
+  python2 setup.py install -O1 --root="$pkgdir"
+  mv "$pkgdir"/usr/bin/pigar{,2}
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:21:31
  Author: felixonmars
Revision: 372186

upgpkg: darcs 2.14.1-38

rebuild with StateVar 1.1.1.1

Modified:
  darcs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:18:44 UTC (rev 372185)
+++ PKGBUILD2018-08-17 07:21:31 UTC (rev 372186)
@@ -4,7 +4,7 @@
 
 pkgname=darcs
 pkgver=2.14.1
-pkgrel=37
+pkgrel=38
 pkgdesc="A distributed, interactive, smart revision control system"
 url="http://darcs.net";
 license=("GPL2")


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:21:52
  Author: felixonmars
Revision: 372187

archrelease: copy trunk to community-staging-x86_64

Added:
  darcs/repos/community-staging-x86_64/
  darcs/repos/community-staging-x86_64/PKGBUILD
(from rev 372186, darcs/trunk/PKGBUILD)

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

Copied: darcs/repos/community-staging-x86_64/PKGBUILD (from rev 372186, 
darcs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:21:52 UTC (rev 372187)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=darcs
+pkgver=2.14.1
+pkgrel=38
+pkgdesc="A distributed, interactive, smart revision control system"
+url="http://darcs.net";
+license=("GPL2")
+arch=('x86_64')
+depends=('curl' 'ghc-libs' 'haskell-async' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-cryptohash' 'haskell-data-ordlist' 'haskell-fgl' 
'haskell-graphviz'
+ 'haskell-hashable' 'haskell-html' 'haskell-http' 'haskell-knob' 
'haskell-mmap'
+ 'haskell-network' 'haskell-network-uri' 'haskell-old-time'
+ 'haskell-sandi' 'haskell-random' 'haskell-regex-applicative' 
'haskell-regex-compat-tdfa'
+ 'haskell-tar' 'haskell-unix-compat' 'haskell-utf8-string'
+ 'haskell-vector' 'haskell-zip-archive' 'haskell-zlib')
+makedepends=('ghc' 'haskell-cmdargs' 'haskell-findbin' 'haskell-hunit' 
'haskell-quickcheck'
+ 'haskell-shelly' 'haskell-split' 'haskell-test-framework'
+ 'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('8daea7bdbe8ed5bc67ef2c44918b431a8fc6b2703068200fba338b9c051b4bafed0a1ec9dcec5a58b1530ce4a4231e3c4ecc00bd509cde9ef95d895719e89346')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -e 's/^ghc /ghc -dynamic /' \
+-e 's/ ghc / ghc -dynamic /' \
+-i tests/*.sh tests/lib
+}
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcurl -fpkgconfig -f-static -fterminfo -fthreaded -fexecutable \
+-f-rts -foptimize -f-warn-as-error -f-libiconv
+LD_LIBRARY_PATH="$srcdir"/$pkgname-$pkgver/dist/build runhaskell Setup 
build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+chmod 644 "${pkgdir}/usr/share/man/man1/darcs.1"
+
+install -Dm644 contrib/darcs_completion 
"${pkgdir}/usr/share/bash-completion/completions/darcs"
+install -Dm644 contrib/_darcs.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_darcs"
+}


[arch-commits] Commit in haskell-js-jquery/repos (2 files)

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:23:18
  Author: felixonmars
Revision: 372189

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-js-jquery/repos/community-staging-x86_64/
  haskell-js-jquery/repos/community-staging-x86_64/PKGBUILD
(from rev 372188, haskell-js-jquery/trunk/PKGBUILD)

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

Copied: haskell-js-jquery/repos/community-staging-x86_64/PKGBUILD (from rev 
372188, haskell-js-jquery/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:23:18 UTC (rev 372189)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=js-jquery
+pkgname=haskell-js-jquery
+pkgver=3.3.1
+pkgrel=109
+pkgdesc="Obtain minified jQuery code"
+url="https://github.com/ndmitchell/js-jquery#readme";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-http')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('359a4342bc5156d5360385a478e235def04db0381cc48f342baac5018e91350dce760adb9b9ada796bc6341d5629f807672f629ee127faefe521801d62bb')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:22:57
  Author: felixonmars
Revision: 372188

upgpkg: haskell-js-jquery 3.3.1-109

rebuild with StateVar 1.1.1.1

Modified:
  haskell-js-jquery/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:21:52 UTC (rev 372187)
+++ PKGBUILD2018-08-17 07:22:57 UTC (rev 372188)
@@ -5,7 +5,7 @@
 _hkgname=js-jquery
 pkgname=haskell-js-jquery
 pkgver=3.3.1
-pkgrel=108
+pkgrel=109
 pkgdesc="Obtain minified jQuery code"
 url="https://github.com/ndmitchell/js-jquery#readme";
 license=("MIT")


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:25:00
  Author: felixonmars
Revision: 372190

upgpkg: haskell-criterion 1.5.1.0-5

rebuild with StateVar 1.1.1.1

Modified:
  haskell-criterion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:23:18 UTC (rev 372189)
+++ PKGBUILD2018-08-17 07:25:00 UTC (rev 372190)
@@ -5,7 +5,7 @@
 _hkgname=criterion
 pkgname=haskell-criterion
 pkgver=1.5.1.0
-pkgrel=4
+pkgrel=5
 pkgdesc="Robust, reliable performance measurement and analysis"
 url="http://www.serpentine.com/criterion";
 license=("custom:BSD3")


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:25:23
  Author: felixonmars
Revision: 372191

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-criterion/repos/community-staging-x86_64/
  haskell-criterion/repos/community-staging-x86_64/PKGBUILD
(from rev 372190, haskell-criterion/trunk/PKGBUILD)

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

Copied: haskell-criterion/repos/community-staging-x86_64/PKGBUILD (from rev 
372190, haskell-criterion/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:25:23 UTC (rev 372191)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=criterion
+pkgname=haskell-criterion
+pkgver=1.5.1.0
+pkgrel=5
+pkgdesc="Robust, reliable performance measurement and analysis"
+url="http://www.serpentine.com/criterion";
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-wl-pprint' 
'haskell-base-compat-batteries'
+ 'haskell-cassava' 'haskell-code-page' 'haskell-criterion-measurement' 
'haskell-exceptions'
+ 'haskell-glob' 'haskell-js-flot' 'haskell-js-jquery' 
'haskell-microstache'
+ 'haskell-mwc-random' 'haskell-optparse-applicative' 
'haskell-statistics'
+ 'haskell-transformers-compat' 'haskell-vector' 
'haskell-vector-algorithms')
+makedepends=('ghc' 'haskell-base-compat' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('a32d36e4a5e3b598f9cc90fb2fac063cb7caaa4683c2bf99d1d5a615c850999a95a2a9b14b58f5855029140a714f45c33cead9dfe94eddc0aa63c45ed091')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e '/semigroups/d' -e 's/optparse-applicative >= 
0.13,/optparse-applicative >= 0.13/' \
+   -e 's/parsec >= 3.1.0/,parsec >= 3.1.0/' -e '/fail/d' 
$_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-fast -f-embed-data-files
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:26:07
  Author: felixonmars
Revision: 372192

upgpkg: docker-machine 0.15.0-1

Modified:
  docker-machine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:25:23 UTC (rev 372191)
+++ PKGBUILD2018-08-17 07:26:07 UTC (rev 372192)
@@ -3,7 +3,7 @@
 # Contributor: Dmitry Chusovitin 
 
 pkgname=docker-machine
-pkgver=0.14.0
+pkgver=0.15.0
 pkgrel=1
 pkgdesc='Machine management for a container-centric world'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 makedepends=('go-pie')
 optdepends=('net-tools: required for VirtualBox driver')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/docker/machine/archive/v$pkgver.tar.gz";)
-sha512sums=('8c2e6ee045c5f243da7f3556422a47432c163b0617d882fa1eafb2d35e3c3f3fe3172e8cd3a39d149bcf0f30f75bb76bd591d8342b1e9c212277a103853df668')
+sha512sums=('b902eab09bbf866158bf4eb2a496d14c332742079373f217e0eac4644cc2482b4245cf5ee9905e84f696afc276490e04afdc1003ac2b7095d0fb7bd93a03c96a')
 
 prepare() {
   export GOPATH="$srcdir/build"
@@ -26,7 +26,7 @@
 
 build() {
   cd machine-$pkgver
-  go build -o bin/docker-machine cmd/machine.go # -gccgoflags "$CFLAGS 
$LDFLAGS"
+  go build -o bin/docker-machine cmd/docker-machine/machine.go # -gccgoflags 
"$CFLAGS $LDFLAGS"
 }
 
 package() {


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:26:33
  Author: felixonmars
Revision: 372193

archrelease: copy trunk to community-x86_64

Added:
  docker-machine/repos/community-x86_64/PKGBUILD
(from rev 372192, docker-machine/trunk/PKGBUILD)
Deleted:
  docker-machine/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   76 ++---
 1 file changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-17 07:26:07 UTC (rev 372192)
+++ PKGBUILD2018-08-17 07:26:33 UTC (rev 372193)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Dmitry Chusovitin 
-
-pkgname=docker-machine
-pkgver=0.14.0
-pkgrel=1
-pkgdesc='Machine management for a container-centric world'
-arch=('x86_64')
-url='https://github.com/docker/machine'
-license=('Apache')
-depends=('glibc')
-optdepends=('net-tools: for VirtualBox support')
-makedepends=('go-pie')
-optdepends=('net-tools: required for VirtualBox driver')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/docker/machine/archive/v$pkgver.tar.gz";)
-sha512sums=('8c2e6ee045c5f243da7f3556422a47432c163b0617d882fa1eafb2d35e3c3f3fe3172e8cd3a39d149bcf0f30f75bb76bd591d8342b1e9c212277a103853df668')
-
-prepare() {
-  export GOPATH="$srcdir/build"
-  mkdir -p build/src
-  mv machine-$pkgver/vendor/* build/src/
-  mkdir -p build/src/github.com/docker
-  ln -s "$srcdir"/machine-$pkgver build/src/github.com/docker/machine
-}
-
-build() {
-  cd machine-$pkgver
-  go build -o bin/docker-machine cmd/machine.go # -gccgoflags "$CFLAGS 
$LDFLAGS"
-}
-
-package() {
-  cd machine-$pkgver
-  install -Dm755 bin/docker-machine "$pkgdir"/usr/bin/docker-machine
-  install -Dm644 contrib/completion/bash/docker-machine.bash 
"$pkgdir"/usr/share/bash-completion/completions/docker-machine
-  install -Dm644 contrib/completion/zsh/_docker-machine 
"$pkgdir"/usr/share/zsh/site-functions/_docker-machine
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: docker-machine/repos/community-x86_64/PKGBUILD (from rev 372192, 
docker-machine/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-17 07:26:33 UTC (rev 372193)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Dmitry Chusovitin 
+
+pkgname=docker-machine
+pkgver=0.15.0
+pkgrel=1
+pkgdesc='Machine management for a container-centric world'
+arch=('x86_64')
+url='https://github.com/docker/machine'
+license=('Apache')
+depends=('glibc')
+optdepends=('net-tools: for VirtualBox support')
+makedepends=('go-pie')
+optdepends=('net-tools: required for VirtualBox driver')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/docker/machine/archive/v$pkgver.tar.gz";)
+sha512sums=('b902eab09bbf866158bf4eb2a496d14c332742079373f217e0eac4644cc2482b4245cf5ee9905e84f696afc276490e04afdc1003ac2b7095d0fb7bd93a03c96a')
+
+prepare() {
+  export GOPATH="$srcdir/build"
+  mkdir -p build/src
+  mv machine-$pkgver/vendor/* build/src/
+  mkdir -p build/src/github.com/docker
+  ln -s "$srcdir"/machine-$pkgver build/src/github.com/docker/machine
+}
+
+build() {
+  cd machine-$pkgver
+  go build -o bin/docker-machine cmd/docker-machine/machine.go # -gccgoflags 
"$CFLAGS $LDFLAGS"
+}
+
+package() {
+  cd machine-$pkgver
+  install -Dm755 bin/docker-machine "$pkgdir"/usr/bin/docker-machine
+  install -Dm644 contrib/completion/bash/docker-machine.bash 
"$pkgdir"/usr/share/bash-completion/completions/docker-machine
+  install -Dm644 contrib/completion/zsh/_docker-machine 
"$pkgdir"/usr/share/zsh/site-functions/_docker-machine
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:27:21
  Author: felixonmars
Revision: 372194

upgpkg: python-elasticsearch 6.3.1-1

Modified:
  python-elasticsearch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:26:33 UTC (rev 372193)
+++ PKGBUILD2018-08-17 07:27:21 UTC (rev 372194)
@@ -3,8 +3,8 @@
 
 pkgbase=python-elasticsearch
 pkgname=('python-elasticsearch' 'python2-elasticsearch')
-pkgver=6.3.0
-pkgrel=2
+pkgver=6.3.1
+pkgrel=1
 arch=('any')
 pkgdesc='Python client for Elasticsearch'
 url='https://github.com/elastic/elasticsearch-py'
@@ -14,7 +14,7 @@
   'python2-coverage' 'python-mock' 'python2-mock' 'python-pyaml' 
'python2-pyaml'
   'python-nosexcover' 'python2-nosexcover')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/elastic/elasticsearch-py/archive/$pkgver.tar.gz";)
-sha512sums=('ee60840b7e9706141a650821f705f1bb92fe3c4c282ecad71b3912ad25025519f456b45af85109a900094a53c47c374e450d771c1ef3a3690400272c6f8a47bc')
+sha512sums=('b975a6b446b760bf62289e855768a26b9e104aba9cd399cf275f59f2755efa00bd55c99a746751dad2f7a18f581a1b124c1bb9b91f5c3dc9fb00138c9d198aea')
 
 prepare() {
   sed -i 's/urllib3<.*,>/urllib3>/' elasticsearch-py-$pkgver/setup.py
@@ -32,10 +32,10 @@
 check() {
   cd "$srcdir"/elasticsearch-py-$pkgver
   # https://github.com/elastic/elasticsearch-py/issues/816
-  # python setup.py nosetests
+  # python setup.py test
 
   cd "$srcdir"/elasticsearch-py-$pkgver-py2
-  python2 setup.py nosetests
+  # python2 setup.py test
 }
 
 package_python-elasticsearch() {


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:28:08
  Author: felixonmars
Revision: 372196

upgpkg: python-prawcore 1.0.0-1

Modified:
  python-prawcore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:27:47 UTC (rev 372195)
+++ PKGBUILD2018-08-17 07:28:08 UTC (rev 372196)
@@ -3,8 +3,8 @@
 
 pkgbase=python-prawcore
 pkgname=('python-prawcore' 'python2-prawcore')
-pkgver=0.14.0
-pkgrel=2
+pkgver=1.0.0
+pkgrel=1
 pkgdesc="Low-level communication layer for PRAW 4+."
 arch=('any')
 license=('BSD')
@@ -14,7 +14,7 @@
   'python-betamax-serializers' 'python2-betamax-serializers' 
'python-testfixtures'
   'python2-testfixtures')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/praw-dev/prawcore/archive/v$pkgver.tar.gz";)
-sha512sums=('9d9a48f81d1c44166c37d166d8042864fed1f3b05f1fcd4d7959a7e7b60669d33bd551314a0874adf3f8e2a348dbef401e4effb1456f2293feaea1c31a3331af')
+sha512sums=('01ba210b56aedb8f697f13650ac2a763ef034e668ee9a84962e1567cada894adf6088a536d32b67d44edfbbec24aed6c86d33aa56d003593961346e1319de69c')
 
 prepare() {
   cp -a prawcore-$pkgver{,-py2}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:27:47
  Author: felixonmars
Revision: 372195

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  106 ++---
 1 file changed, 53 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-17 07:27:21 UTC (rev 372194)
+++ PKGBUILD2018-08-17 07:27:47 UTC (rev 372195)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-elasticsearch
-pkgname=('python-elasticsearch' 'python2-elasticsearch')
-pkgver=6.3.0
-pkgrel=2
-arch=('any')
-pkgdesc='Python client for Elasticsearch'
-url='https://github.com/elastic/elasticsearch-py'
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-urllib3' 
'python2-urllib3')
-checkdepends=('python-nose' 'python2-nose' 'python-requests' 
'python2-requests' 'python-coverage'
-  'python2-coverage' 'python-mock' 'python2-mock' 'python-pyaml' 
'python2-pyaml'
-  'python-nosexcover' 'python2-nosexcover')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/elastic/elasticsearch-py/archive/$pkgver.tar.gz";)
-sha512sums=('ee60840b7e9706141a650821f705f1bb92fe3c4c282ecad71b3912ad25025519f456b45af85109a900094a53c47c374e450d771c1ef3a3690400272c6f8a47bc')
-
-prepare() {
-  sed -i 's/urllib3<.*,>/urllib3>/' elasticsearch-py-$pkgver/setup.py
-  cp -a elasticsearch-py-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/elasticsearch-py-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/elasticsearch-py-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/elasticsearch-py-$pkgver
-  # https://github.com/elastic/elasticsearch-py/issues/816
-  # python setup.py nosetests
-
-  cd "$srcdir"/elasticsearch-py-$pkgver-py2
-  python2 setup.py nosetests
-}
-
-package_python-elasticsearch() {
-  depends=('python-urllib3')
-
-  cd elasticsearch-py-$pkgver
-  python setup.py install --root "$pkgdir" --optimize=1
-}
-
-package_python2-elasticsearch() {
-  depends=('python2-urllib3')
-
-  cd elasticsearch-py-$pkgver-py2
-  python2 setup.py install --root "$pkgdir" --optimize=1
-}

Copied: python-elasticsearch/repos/community-any/PKGBUILD (from rev 372194, 
python-elasticsearch/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-17 07:27:47 UTC (rev 372195)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-elasticsearch
+pkgname=('python-elasticsearch' 'python2-elasticsearch')
+pkgver=6.3.1
+pkgrel=1
+arch=('any')
+pkgdesc='Python client for Elasticsearch'
+url='https://github.com/elastic/elasticsearch-py'
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-urllib3' 
'python2-urllib3')
+checkdepends=('python-nose' 'python2-nose' 'python-requests' 
'python2-requests' 'python-coverage'
+  'python2-coverage' 'python-mock' 'python2-mock' 'python-pyaml' 
'python2-pyaml'
+  'python-nosexcover' 'python2-nosexcover')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/elastic/elasticsearch-py/archive/$pkgver.tar.gz";)
+sha512sums=('b975a6b446b760bf62289e855768a26b9e104aba9cd399cf275f59f2755efa00bd55c99a746751dad2f7a18f581a1b124c1bb9b91f5c3dc9fb00138c9d198aea')
+
+prepare() {
+  sed -i 's/urllib3<.*,>/urllib3>/' elasticsearch-py-$pkgver/setup.py
+  cp -a elasticsearch-py-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/elasticsearch-py-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/elasticsearch-py-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/elasticsearch-py-$pkgver
+  # https://github.com/elastic/elasticsearch-py/issues/816
+  # python setup.py test
+
+  cd "$srcdir"/elasticsearch-py-$pkgver-py2
+  # python2 setup.py test
+}
+
+package_python-elasticsearch() {
+  depends=('python-urllib3')
+
+  cd elasticsearch-py-$pkgver
+  python setup.py install --root "$pkgdir" --optimize=1
+}
+
+package_python2-elasticsearch() {
+  depends=('python2-urllib3')
+
+  cd elasticsearch-py-$pkgver-py2
+  python2 setup.py install --root "$pkgdir" --optimize=1
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:28:33
  Author: felixonmars
Revision: 372197

archrelease: copy trunk to community-testing-any

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

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

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


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:32:14
  Author: felixonmars
Revision: 372199

upgpkg: python-pyperclip 1.6.4-1

Modified:
  python-pyperclip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:32:09 UTC (rev 372198)
+++ PKGBUILD2018-08-17 07:32:14 UTC (rev 372199)
@@ -5,9 +5,9 @@
 
 pkgbase=python-pyperclip
 pkgname=('python-pyperclip' 'python2-pyperclip')
-pkgver=1.6.2
-_commit=2f11f6302492e2dfc6b1a91eb9d5c0a6b68a71d5
-pkgrel=2
+pkgver=1.6.4
+_commit=16b1f5b7ece36a08adc5ddec1ef6b1b0aa9de77f
+pkgrel=1
 pkgdesc="A cross-platform clipboard module for Python"
 arch=('any')
 url="https://github.com/asweigart/pyperclip";
@@ -16,7 +16,7 @@
 # GTK/Qt tests crash xvfb, and Klipper tests require a running klipper
 checkdepends=('xorg-server-xvfb' 'python-pytest' 'python2-pytest' 'xsel' 
'xclip')
 
source=("$pkgbase-$_commit.tar.gz::https://github.com/asweigart/pyperclip/archive/$_commit.tar.gz";)
-sha512sums=('2383a5b7e13cc810522acd84b894b608c5eba74ea99a7d9e588ee3d9f5324a8d9a0023e6fe6d9d3163aeac8898fb3e0fa416589fbe99e12e9c7ba0e7fe3ba52d')
+sha512sums=('2e8213503d83e9e4e676eefd2336cfa2d92b8c7e28c4d0100361ae9814d1378f70c2b6e9112fb29ed68aa7af95b7fc0784f2c927304bde175b21cbfdc94f8bd6')
 
 prepare() {
   mv pyperclip-{$_commit,$pkgver}
@@ -28,7 +28,7 @@
   PYTHONPATH="$PWD/build/lib:$PYTHONPATH" xvfb-run py.test
 
   cd "$srcdir"/pyperclip-$pkgver-py2
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" xvfb-run py.test2
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" xvfb-run py.test2 || warning 
"https://github.com/asweigart/pyperclip/issues/129";
 }
 
 package_python-pyperclip() {


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:32:09
  Author: felixonmars
Revision: 372198

upgpkg: haskell-shake 0.16.4-73

rebuild with StateVar 1.1.1.1

Modified:
  haskell-shake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:28:33 UTC (rev 372197)
+++ PKGBUILD2018-08-17 07:32:09 UTC (rev 372198)
@@ -5,7 +5,7 @@
 _hkgname=shake
 pkgname=haskell-shake
 pkgver=0.16.4
-pkgrel=72
+pkgrel=73
 pkgdesc="Build system library, like Make, but more accurate dependencies."
 url="http://shakebuild.com";
 license=("custom:BSD3")


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:32:40
  Author: felixonmars
Revision: 372201

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  118 ++---
 1 file changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-17 07:32:31 UTC (rev 372200)
+++ PKGBUILD2018-08-17 07:32:40 UTC (rev 372201)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Jim Bridgewater 
-# Contributor: delta48 
-
-pkgbase=python-pyperclip
-pkgname=('python-pyperclip' 'python2-pyperclip')
-pkgver=1.6.2
-_commit=2f11f6302492e2dfc6b1a91eb9d5c0a6b68a71d5
-pkgrel=2
-pkgdesc="A cross-platform clipboard module for Python"
-arch=('any')
-url="https://github.com/asweigart/pyperclip";
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools')
-# GTK/Qt tests crash xvfb, and Klipper tests require a running klipper
-checkdepends=('xorg-server-xvfb' 'python-pytest' 'python2-pytest' 'xsel' 
'xclip')
-source=("$pkgbase-$_commit.tar.gz::https://github.com/asweigart/pyperclip/archive/$_commit.tar.gz";)
-sha512sums=('2383a5b7e13cc810522acd84b894b608c5eba74ea99a7d9e588ee3d9f5324a8d9a0023e6fe6d9d3163aeac8898fb3e0fa416589fbe99e12e9c7ba0e7fe3ba52d')
-
-prepare() {
-  mv pyperclip-{$_commit,$pkgver}
-  cp -a pyperclip-$pkgver{,-py2}
-}
-
-check() {
-  cd "$srcdir"/pyperclip-$pkgver
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" xvfb-run py.test
-
-  cd "$srcdir"/pyperclip-$pkgver-py2
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" xvfb-run py.test2
-}
-
-package_python-pyperclip() {
-  depends=('python')
-  optdepends=('xclip: xclip backend'
-  'xsel: xsel backend'
-  'python-pyqt4: qt backend'
-  'plasma-workspace: klipper backend')
-
-  cd "$srcdir"/pyperclip-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-}
-
-package_python2-pyperclip() {
-  depends=('python2')
-  optdepends=('xclip: xclip backend'
-  'xsel: xsel backend'
-  'python2-pyqt4: qt backend'
-  'plasma-workspace: klipper backend'
-  'pygtk: gtk backend')
-
-  cd "$srcdir"/pyperclip-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pyperclip/repos/community-any/PKGBUILD (from rev 372200, 
python-pyperclip/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-17 07:32:40 UTC (rev 372201)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Jim Bridgewater 
+# Contributor: delta48 
+
+pkgbase=python-pyperclip
+pkgname=('python-pyperclip' 'python2-pyperclip')
+pkgver=1.6.4
+_commit=16b1f5b7ece36a08adc5ddec1ef6b1b0aa9de77f
+pkgrel=1
+pkgdesc="A cross-platform clipboard module for Python"
+arch=('any')
+url="https://github.com/asweigart/pyperclip";
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools')
+# GTK/Qt tests crash xvfb, and Klipper tests require a running klipper
+checkdepends=('xorg-server-xvfb' 'python-pytest' 'python2-pytest' 'xsel' 
'xclip')
+source=("$pkgbase-$_commit.tar.gz::https://github.com/asweigart/pyperclip/archive/$_commit.tar.gz";)
+sha512sums=('2e8213503d83e9e4e676eefd2336cfa2d92b8c7e28c4d0100361ae9814d1378f70c2b6e9112fb29ed68aa7af95b7fc0784f2c927304bde175b21cbfdc94f8bd6')
+
+prepare() {
+  mv pyperclip-{$_commit,$pkgver}
+  cp -a pyperclip-$pkgver{,-py2}
+}
+
+check() {
+  cd "$srcdir"/pyperclip-$pkgver
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" xvfb-run py.test
+
+  cd "$srcdir"/pyperclip-$pkgver-py2
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" xvfb-run py.test2 || warning 
"https://github.com/asweigart/pyperclip/issues/129";
+}
+
+package_python-pyperclip() {
+  depends=('python')
+  optdepends=('xclip: xclip backend'
+  'xsel: xsel backend'
+  'python-pyqt4: qt backend'
+  'plasma-workspace: klipper backend')
+
+  cd "$srcdir"/pyperclip-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+package_python2-pyperclip() {
+  depends=('python2')
+  optdepends=('xclip: xclip backend'
+  'xsel: xsel backend'
+  'python2-pyqt4: qt backend'
+  'plasma-workspace: klipper backend'
+  'pygtk: gtk backend')
+
+  cd "$srcdir"/pyperclip-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+# vim:set ts=2

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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:32:31
  Author: felixonmars
Revision: 372200

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-shake/repos/community-staging-x86_64/
  haskell-shake/repos/community-staging-x86_64/PKGBUILD
(from rev 372199, haskell-shake/trunk/PKGBUILD)

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

Copied: haskell-shake/repos/community-staging-x86_64/PKGBUILD (from rev 372199, 
haskell-shake/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:32:31 UTC (rev 372200)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=shake
+pkgname=haskell-shake
+pkgver=0.16.4
+pkgrel=73
+pkgdesc="Build system library, like Make, but more accurate dependencies."
+url="http://shakebuild.com";
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-extra' 'haskell-hashable' 'haskell-js-flot' 
'haskell-js-jquery'
+ 'haskell-primitive' 'haskell-random' 'haskell-unordered-containers' 
'haskell-utf8-string')
+makedepends=('ghc' 'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('4a517a3730836d5e31c700e455f738d7798460525efdb25499b52fd579dfaaad9d3758fa924b720e1a6c803419eeefdbcc52cec5d60cb5917ae6334454935246')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/ghc --make/ghc -dynamic --make/' src/Test/Command.hs
+sed -e 's/runhaskell Setup.hs configure/runhaskell Setup.hs configure 
--enable-executable-dynamic --disable-library-vanilla/' \
+-e 's/ghc -fno-code/ghc -dynamic -fno-code/' \
+-i src/Test/Docs.hs
+sed -i 's/cmd "ghc" flags/cmd "ghc" "-dynamic" flags/' src/Test/Self.hs
+sed -i 's/ghc --make/ghc -dynamic --make/' docs/manual/build.sh
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname"  --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-portable
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:33:20
  Author: felixonmars
Revision: 372202

upgpkg: python-praw 6.0.0-1

Modified:
  python-praw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:32:40 UTC (rev 372201)
+++ PKGBUILD2018-08-17 07:33:20 UTC (rev 372202)
@@ -3,8 +3,8 @@
 
 pkgbase=python-praw
 pkgname=('python-praw' 'python2-praw')
-pkgver=5.4.0
-pkgrel=2
+pkgver=6.0.0
+pkgrel=1
 pkgdesc="Python Reddit API Wrapper that allows for simple access to reddit's 
API"
 arch=('any')
 license=('GPL')
@@ -15,7 +15,7 @@
 checkdepends=('python-mock' 'python2-mock' 'python-betamax-serializers'
   'python2-betamax-serializers' 'python-betamax-matchers' 
'python2-betamax-matchers')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/praw-dev/praw/archive/v$pkgver.tar.gz";)
-sha512sums=('dbbc5ced2e5131eee9f6c76ce342bc8ab5cae6d25495ebcf8b85b8b85c2eec90628dd5516caacad7aae1faa844c73d083402ce6f3750b5918283662d7f54ebe8')
+sha512sums=('a276fbd3635618094cdfd8824239630405551a632ec00457636466b9dbfb250e3d0362df82c3034c667a3ede91d15d16baadaad4f9f9dec15a35ef26fe36f974')
 
 prepare() {
   cp -a praw-$pkgver{,-py2}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:33:44
  Author: felixonmars
Revision: 372204

archrelease: copy trunk to community-testing-any

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

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

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


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:33:34
  Author: felixonmars
Revision: 372203

upgpkg: haskell-wai-app-static 3.1.6.2-87

rebuild with StateVar 1.1.1.1

Modified:
  haskell-wai-app-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:33:20 UTC (rev 372202)
+++ PKGBUILD2018-08-17 07:33:34 UTC (rev 372203)
@@ -5,7 +5,7 @@
 _hkgname=wai-app-static
 pkgname=haskell-wai-app-static
 pkgver=3.1.6.2
-pkgrel=86
+pkgrel=87
 pkgdesc="WAI application for static serving"
 url="http://www.yesodweb.com/book/web-application-interface";
 license=("MIT")


[arch-commits] Commit in haskell-wai-app-static/repos (2 files)

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:33:57
  Author: felixonmars
Revision: 372205

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wai-app-static/repos/community-staging-x86_64/
  haskell-wai-app-static/repos/community-staging-x86_64/PKGBUILD
(from rev 372204, haskell-wai-app-static/trunk/PKGBUILD)

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

Copied: haskell-wai-app-static/repos/community-staging-x86_64/PKGBUILD (from 
rev 372204, haskell-wai-app-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:33:57 UTC (rev 372205)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-app-static
+pkgname=haskell-wai-app-static
+pkgver=3.1.6.2
+pkgrel=87
+pkgdesc="WAI application for static serving"
+url="http://www.yesodweb.com/book/web-application-interface";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptonite'
+ 'haskell-file-embed' 'haskell-http-date' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-mime-types' 'haskell-old-locale' 
'haskell-optparse-applicative'
+ 'haskell-unix-compat' 'haskell-unordered-containers' 'haskell-wai' 
'haskell-wai-extra'
+ 'haskell-warp' 'haskell-zlib')
+makedepends=('ghc' 'haskell-hspec' 'haskell-mockery' 'haskell-network' 
'haskell-temporary')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('20c79810096f12d3901af3474a5ef4fe2385e639f97f2de803b09902d115321e3be7544cc3741b52b75a2710a0141bc19cb611fd4e6248ec60d11b522b9cb59c')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-print
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:35:40
  Author: felixonmars
Revision: 372206

upgpkg: haskell-hjsonschema 1.9.0-68

rebuild with StateVar 1.1.1.1

Modified:
  haskell-hjsonschema/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:33:57 UTC (rev 372205)
+++ PKGBUILD2018-08-17 07:35:40 UTC (rev 372206)
@@ -5,7 +5,7 @@
 _hkgname=hjsonschema
 pkgname=haskell-hjsonschema
 pkgver=1.9.0
-pkgrel=67
+pkgrel=68
 pkgdesc="JSON Schema library"
 url="https://github.com/seagreen/hjsonschema";
 license=("MIT")


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:36:05
  Author: felixonmars
Revision: 372207

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hjsonschema/repos/community-staging-x86_64/
  haskell-hjsonschema/repos/community-staging-x86_64/PKGBUILD
(from rev 372206, haskell-hjsonschema/trunk/PKGBUILD)

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

Copied: haskell-hjsonschema/repos/community-staging-x86_64/PKGBUILD (from rev 
372206, haskell-hjsonschema/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:36:05 UTC (rev 372207)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hjsonschema
+pkgname=haskell-hjsonschema
+pkgver=1.9.0
+pkgrel=68
+pkgdesc="JSON Schema library"
+url="https://github.com/seagreen/hjsonschema";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-file-embed' 'haskell-hashable' 
'haskell-hjsonpointer'
+ 'haskell-http-client' 'haskell-http-client-tls' 'haskell-http-types' 
'haskell-pcre-heavy'
+ 'haskell-profunctors' 'haskell-protolude' 'haskell-quickcheck' 
'haskell-safe-exceptions'
+ 'haskell-scientific' 'haskell-unordered-containers' 'haskell-vector')
+makedepends=('ghc' 'haskell-hspec' 'haskell-wai-app-static' 'haskell-warp')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('c71f4f23453abbb7e5c3b8a04e9fd2bea560e03ccf590fbad3739f609fe0e4e5292acfe94204b2d52d30f8fda8cc1c94edac41d5095f6be1c4cf8c05ec08e273')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test || warning "json-schema.org is NXDOMAIN as of 
2018-06-03"
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "MIT-LICENSE.txt" 
"${pkgdir}/usr/share/licenses/${pkgname}/MIT-LICENSE.txt"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/MIT-LICENSE.txt"
+}


[arch-commits] Commit in cantata/trunk (PKGBUILD cantata-no-samba.patch)

2018-08-17 Thread Antonio Rojas via arch-commits
Date: Friday, August 17, 2018 @ 07:37:37
  Author: arojas
Revision: 372208

Update to 2.3.2

Modified:
  cantata/trunk/PKGBUILD
Deleted:
  cantata/trunk/cantata-no-samba.patch

+
 PKGBUILD   |   15 
 cantata-no-samba.patch | 2751 ---
 2 files changed, 5 insertions(+), 2761 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:36:05 UTC (rev 372207)
+++ PKGBUILD2018-08-17 07:37:37 UTC (rev 372208)
@@ -6,26 +6,21 @@
 # Contributor: MisterFred 
 
 pkgname=cantata
-pkgver=2.3.1
-pkgrel=2
+pkgver=2.3.2
+pkgrel=1
 pkgdesc='Qt5 client for the music player daemon (MPD)'
 arch=(x86_64)
 url='https://github.com/CDrummond/cantata'
 license=(GPL)
-depends=(libmtp libmusicbrainz5 mpg123 vlc taglib-extras media-player-info 
libcdio-paranoia udisks2)
+depends=(libmtp libmusicbrainz5 mpg123 qt5-multimedia qt5-svg taglib-extras 
media-player-info libcdio-paranoia udisks2)
 optdepends=('perl-uri: dynamic playlist' 'mpd: playback' 'ffmpeg: ReplayGain 
support' 'libebur128: ReplayGain support'
 'sshfs: remote devices support')
 makedepends=(cmake qt5-tools ffmpeg libebur128)
-source=("https://github.com/CDrummond/cantata/releases/download/v$pkgver/$pkgname-$pkgver.tar.bz2";
-cantata-no-samba.patch)
-sha256sums=('5b1e563ec125d57296495d0f8f97eeecf0b2260aa50b35bae7cab221d7914eb4'
-'171368534670dca28b864d242df20a670343d360b2aff40f9cf73f79ee8a5b99')
+source=("https://github.com/CDrummond/cantata/releases/download/v$pkgver/$pkgname-$pkgver.tar.bz2";)
+sha256sums=('505d19ce1a1eca4c3254f9f8374249d5742b58186eb67344c96ee01134ac47e0')
 
 prepare() {
   mkdir -p build
-
-  cd $pkgname-$pkgver
-  patch -p1 -i ../cantata-no-samba.patch # Remove Samba share mounting code 
due to security issues
 }
 
 build() {

Deleted: cantata-no-samba.patch
===
--- cantata-no-samba.patch  2018-08-17 07:36:05 UTC (rev 372207)
+++ cantata-no-samba.patch  2018-08-17 07:37:37 UTC (rev 372208)
@@ -1,2751 +0,0 @@
-From afc4f8315d3e96574925fb530a7004cc9e6ce3d3 Mon Sep 17 00:00:00 2001
-From: Craig Drummond 
-Date: Fri, 15 Jun 2018 17:48:11 +0100
-Subject: [PATCH] Remove internal Samba shre mounting code, this had some
- privilege escalation issues, and is not well tested
-

- CMakeLists.txt |  10 +-
- ChangeLog  |   2 +
- devices/avahi/CMakeLists.txt   |   8 -
- devices/avahi/avahi.cpp|  97 
- devices/avahi/avahi.h  |  59 -
- devices/avahi/avahiservice.cpp |  82 ---
- devices/avahi/avahiservice.h   |  60 -
- devices/avahi/org.freedesktop.Avahi.Server.OLD.xml | 218 --
- devices/avahi/org.freedesktop.Avahi.Server.xml | 218 --
- .../avahi/org.freedesktop.Avahi.ServiceBrowser.xml |  59 -
- .../org.freedesktop.Avahi.ServiceResolver.OLD.xml  |  58 -
- .../org.freedesktop.Avahi.ServiceResolver.xml  |  58 -
- devices/mounter/CMakeLists.txt |  14 --
- devices/mounter/main.cpp   |  33 ---
- devices/mounter/mount.cifs.wrapper |   8 -
- devices/mounter/mounter.cpp| 249 -
- devices/mounter/mounter.h  |  69 --
- devices/mounter/mpd.cantata.mounter.conf   |  17 --
- devices/mounter/mpd.cantata.mounter.service.cmake  |   4 -
- devices/mounter/mpd.cantata.mounter.xml|  28 ---
- devices/remotedevicepropertieswidget.cpp   |  97 +---
- devices/remotedevicepropertieswidget.ui| 219 +-
- devices/remotefsdevice.cpp | 109 +
- devices/remotefsdevice.h   |  11 -
- translations/blank.ts  |  12 +-
- translations/cantata_cs.ts |  26 +--
- translations/cantata_da.ts |  14 +-
- translations/cantata_de.ts |  22 +-
- translations/cantata_en_GB.ts  |  12 +-
- translations/cantata_es.ts |  20 +-
- translations/cantata_fr.ts |  22 +-
- translations/cantata_hu.ts |  26 +--
- translations/cantata_it.ts |  14 +-
- translations/cantata_ja.ts |  26 +--
- translations/cantata_ko.ts |  26 +--
- translations/cantata_pl.ts |  26 +--
- translations/cantata_ru.ts |  26 +--
- translations/cantata_zh_CN.ts  |  20 +-
- 38 files changed, 45 insertions(+), 2034 deletions(-)
- delete mode 100644 devices/avahi/CMakeLists

[arch-commits] Commit in haskell-servant-server/repos (2 files)

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:38:01
  Author: felixonmars
Revision: 372210

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-servant-server/repos/community-staging-x86_64/
  haskell-servant-server/repos/community-staging-x86_64/PKGBUILD
(from rev 372209, haskell-servant-server/trunk/PKGBUILD)

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

Copied: haskell-servant-server/repos/community-staging-x86_64/PKGBUILD (from 
rev 372209, haskell-servant-server/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:38:01 UTC (rev 372210)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=servant-server
+pkgname=haskell-servant-server
+pkgver=0.13.0.1
+pkgrel=65
+pkgdesc="A family of combinators for defining webservices APIs and serving 
them"
+url="http://haskell-servant.readthedocs.org/";
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-compat' 'haskell-aeson' 'haskell-attoparsec'
+ 'haskell-base64-bytestring' 'haskell-exceptions' 
'haskell-http-api-data'
+ 'haskell-http-media' 'haskell-http-types' 'haskell-network-uri' 
'haskell-monad-control'
+ 'haskell-network' 'haskell-safe' 'haskell-servant' 'haskell-split'
+ 'haskell-string-conversions' 'haskell-system-filepath' 
'haskell-resourcet' 'haskell-tagged'
+ 'haskell-transformers-base' 'haskell-transformers-compat' 
'haskell-wai'
+ 'haskell-wai-app-static' 'haskell-warp' 'haskell-word8')
+makedepends=('ghc' 'haskell-cabal-doctest' 'haskell-doctest' 'haskell-hspec' 
'haskell-hspec-wai'
+ 'haskell-should-not-typecheck' 'haskell-quickcheck' 
'haskell-wai-extra'
+ 'haskell-temporary')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('45e6b8eb9b60efc1bfe046d3e7c93eac4a7c8f9a9f199dd13bcde16a4ba11ad63e3a31c05f056ed1e8266e45307f37982ab9723bb2721978881312521f264d1d')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e 's/<.*2.7/<3/' -e 's/<.*0.16/<1/' -e 's/<.*1.4/<2/' 
$_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:37:39
  Author: felixonmars
Revision: 372209

upgpkg: haskell-servant-server 0.13.0.1-65

rebuild with StateVar 1.1.1.1

Modified:
  haskell-servant-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:37:37 UTC (rev 372208)
+++ PKGBUILD2018-08-17 07:37:39 UTC (rev 372209)
@@ -5,7 +5,7 @@
 _hkgname=servant-server
 pkgname=haskell-servant-server
 pkgver=0.13.0.1
-pkgrel=64
+pkgrel=65
 pkgdesc="A family of combinators for defining webservices APIs and serving 
them"
 url="http://haskell-servant.readthedocs.org/";
 license=("custom:BSD3")


[arch-commits] Commit in cantata/repos/community-x86_64 (3 files)

2018-08-17 Thread Antonio Rojas via arch-commits
Date: Friday, August 17, 2018 @ 07:38:07
  Author: arojas
Revision: 372211

archrelease: copy trunk to community-x86_64

Added:
  cantata/repos/community-x86_64/PKGBUILD
(from rev 372209, cantata/trunk/PKGBUILD)
Deleted:
  cantata/repos/community-x86_64/PKGBUILD
  cantata/repos/community-x86_64/cantata-no-samba.patch

+
 PKGBUILD   |   77 -
 cantata-no-samba.patch | 2751 ---
 2 files changed, 36 insertions(+), 2792 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-17 07:38:01 UTC (rev 372210)
+++ PKGBUILD2018-08-17 07:38:07 UTC (rev 372211)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor:  Federico Cinelli 
-# Contributor: Andrea Scarpino 
-# Contributor: Mcder3 
-# Contributor: MisterFred 
-
-pkgname=cantata
-pkgver=2.3.1
-pkgrel=2
-pkgdesc='Qt5 client for the music player daemon (MPD)'
-arch=(x86_64)
-url='https://github.com/CDrummond/cantata'
-license=(GPL)
-depends=(libmtp libmusicbrainz5 mpg123 vlc taglib-extras media-player-info 
libcdio-paranoia udisks2)
-optdepends=('perl-uri: dynamic playlist' 'mpd: playback' 'ffmpeg: ReplayGain 
support' 'libebur128: ReplayGain support'
-'sshfs: remote devices support')
-makedepends=(cmake qt5-tools ffmpeg libebur128)
-source=("https://github.com/CDrummond/cantata/releases/download/v$pkgver/$pkgname-$pkgver.tar.bz2";
-cantata-no-samba.patch)
-sha256sums=('5b1e563ec125d57296495d0f8f97eeecf0b2260aa50b35bae7cab221d7914eb4'
-'171368534670dca28b864d242df20a670343d360b2aff40f9cf73f79ee8a5b99')
-
-prepare() {
-  mkdir -p build
-
-  cd $pkgname-$pkgver
-  patch -p1 -i ../cantata-no-samba.patch # Remove Samba share mounting code 
due to security issues
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: cantata/repos/community-x86_64/PKGBUILD (from rev 372209, 
cantata/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-17 07:38:07 UTC (rev 372211)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor:  Federico Cinelli 
+# Contributor: Andrea Scarpino 
+# Contributor: Mcder3 
+# Contributor: MisterFred 
+
+pkgname=cantata
+pkgver=2.3.2
+pkgrel=1
+pkgdesc='Qt5 client for the music player daemon (MPD)'
+arch=(x86_64)
+url='https://github.com/CDrummond/cantata'
+license=(GPL)
+depends=(libmtp libmusicbrainz5 mpg123 qt5-multimedia qt5-svg taglib-extras 
media-player-info libcdio-paranoia udisks2)
+optdepends=('perl-uri: dynamic playlist' 'mpd: playback' 'ffmpeg: ReplayGain 
support' 'libebur128: ReplayGain support'
+'sshfs: remote devices support')
+makedepends=(cmake qt5-tools ffmpeg libebur128)
+source=("https://github.com/CDrummond/cantata/releases/download/v$pkgver/$pkgname-$pkgver.tar.bz2";)
+sha256sums=('505d19ce1a1eca4c3254f9f8374249d5742b58186eb67344c96ee01134ac47e0')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: cantata-no-samba.patch
===
--- cantata-no-samba.patch  2018-08-17 07:38:01 UTC (rev 372210)
+++ cantata-no-samba.patch  2018-08-17 07:38:07 UTC (rev 372211)
@@ -1,2751 +0,0 @@
-From afc4f8315d3e96574925fb530a7004cc9e6ce3d3 Mon Sep 17 00:00:00 2001
-From: Craig Drummond 
-Date: Fri, 15 Jun 2018 17:48:11 +0100
-Subject: [PATCH] Remove internal Samba shre mounting code, this had some
- privilege escalation issues, and is not well tested
-

- CMakeLists.txt |  10 +-
- ChangeLog  |   2 +
- devices/avahi/CMakeLists.txt   |   8 -
- devices/avahi/avahi.cpp|  97 
- devices/avahi/avahi.h  |  59 -
- devices/avahi/avahiservice.cpp |  82 ---
- devices/avahi/avahiservice.h   |  60 -
- devices/avahi/org.freedesktop.Avahi.Server.OLD.xml | 218 --
- devices/avahi/org.freedesktop.Avahi.Server.xml | 218 --
- .../avahi/org.freedesktop.Avahi.ServiceBrowser.xml |  59 -
- .../org.freedesktop.Avahi.ServiceResolver.OLD.xml  |  58 -
- .../org.freedesktop.Avahi.ServiceResolver.xml  |  58 -
- devices/mounter/CMakeLists.txt |  14 --
- devices/mounter/main.cpp   |  33 ---
- devices/mounter/mount.cifs.wrapper |   8 -
- devices/mounter/mounter.cpp| 249 -
- devices/mounter/mounter.h  |  69 --
- device

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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:38:43
  Author: felixonmars
Revision: 372212

upgpkg: haskell-wai-handler-launch 3.0.2.4-53

rebuild with StateVar 1.1.1.1

Modified:
  haskell-wai-handler-launch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:38:07 UTC (rev 372211)
+++ PKGBUILD2018-08-17 07:38:43 UTC (rev 372212)
@@ -5,7 +5,7 @@
 _hkgname=wai-handler-launch
 pkgname=haskell-wai-handler-launch
 pkgver=3.0.2.4
-pkgrel=52
+pkgrel=53
 pkgdesc="Launch a web app in the default browser."
 url="https://github.com/yesodweb/wai";
 license=("MIT")


[arch-commits] Commit in haskell-wai-handler-launch/repos (2 files)

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:39:05
  Author: felixonmars
Revision: 372213

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wai-handler-launch/repos/community-staging-x86_64/
  haskell-wai-handler-launch/repos/community-staging-x86_64/PKGBUILD
(from rev 372212, haskell-wai-handler-launch/trunk/PKGBUILD)

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

Copied: haskell-wai-handler-launch/repos/community-staging-x86_64/PKGBUILD 
(from rev 372212, haskell-wai-handler-launch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:39:05 UTC (rev 372213)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-handler-launch
+pkgname=haskell-wai-handler-launch
+pkgver=3.0.2.4
+pkgrel=53
+pkgdesc="Launch a web app in the default browser."
+url="https://github.com/yesodweb/wai";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-wai' 'haskell-warp' 'haskell-http-types' 
'haskell-streaming-commons'
+ 'haskell-async')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('77a8047201687a56d19c70f70e4fcac9c81c2a4f0ec9bbccad8730de5d74582f52c79c62feb73ebcb4c870435cb1393c2d5fba90c9c952eff8ff3a675eab73fb')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:39:47
  Author: felixonmars
Revision: 372214

upgpkg: haskell-warp-tls 3.2.4.3-67

rebuild with StateVar 1.1.1.1

Modified:
  haskell-warp-tls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:39:05 UTC (rev 372213)
+++ PKGBUILD2018-08-17 07:39:47 UTC (rev 372214)
@@ -5,7 +5,7 @@
 _hkgname=warp-tls
 pkgname=haskell-warp-tls
 pkgver=3.2.4.3
-pkgrel=66
+pkgrel=67
 pkgdesc="HTTP over TLS support for Warp via the TLS package"
 url="https://github.com/yesodweb/wai";
 license=("MIT")


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:40:09
  Author: felixonmars
Revision: 372215

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-warp-tls/repos/community-staging-x86_64/PKGBUILD (from rev 
372214, haskell-warp-tls/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:40:09 UTC (rev 372215)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=warp-tls
+pkgname=haskell-warp-tls
+pkgver=3.2.4.3
+pkgrel=67
+pkgdesc="HTTP over TLS support for Warp via the TLS package"
+url="https://github.com/yesodweb/wai";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-cryptonite" "haskell-data-default-class" 
"haskell-network"
+ "haskell-streaming-commons" "haskell-tls" 
"haskell-tls-session-manager" "haskell-wai"
+ "haskell-warp")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('bed1a501d7885b1a37768b59d73916c36aa554e71ad89608a11224f7c4b7e016cd65652f6bb0da153bcdc3e4a089f03850546b02ed5ace808e8a8a8fc74b4028')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:41:34
  Author: felixonmars
Revision: 372217

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-http-conduit/repos/community-staging-x86_64/
  haskell-http-conduit/repos/community-staging-x86_64/PKGBUILD
(from rev 372216, haskell-http-conduit/trunk/PKGBUILD)

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

Copied: haskell-http-conduit/repos/community-staging-x86_64/PKGBUILD (from rev 
372216, haskell-http-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:41:34 UTC (rev 372217)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-conduit
+pkgname=haskell-http-conduit
+pkgver=2.3.2
+pkgrel=29
+pkgdesc="HTTP client package with conduit interface and HTTPS support"
+url="http://www.yesodweb.com/book/http-conduit";
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-types' 'haskell-resourcet' 
'haskell-unliftio-core')
+makedepends=('ghc' 'haskell-blaze-builder' 'haskell-case-insensitive' 
'haskell-connection'
+ 'haskell-cookie' 'haskell-data-default-class' 'haskell-hunit' 
'haskell-hspec'
+ 'haskell-lifted-base' 'haskell-network' 
'haskell-streaming-commons' 'haskell-temporary'
+ 'haskell-unliftio' 'haskell-utf8-string' 'haskell-wai' 
'haskell-wai-conduit'
+ 'haskell-warp' 'haskell-warp-tls')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('5c62f8f43c27645ad8b938ab9cfc6654f1c191dabe38f547a9dfd0b82964de514e8f89fc14a94319aa6bd6d6f223f6aa81001ee1c519c141acb9516b505bf03b')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:41:11
  Author: felixonmars
Revision: 372216

upgpkg: haskell-http-conduit 2.3.2-29

rebuild with StateVar 1.1.1.1

Modified:
  haskell-http-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:40:09 UTC (rev 372215)
+++ PKGBUILD2018-08-17 07:41:11 UTC (rev 372216)
@@ -5,7 +5,7 @@
 _hkgname=http-conduit
 pkgname=haskell-http-conduit
 pkgver=2.3.2
-pkgrel=28
+pkgrel=29
 pkgdesc="HTTP client package with conduit interface and HTTPS support"
 url="http://www.yesodweb.com/book/http-conduit";
 license=("custom:BSD3")


[arch-commits] Commit in haskell-wl-pprint-extras/trunk (PKGBUILD)

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:42:13
  Author: felixonmars
Revision: 372218

upgpkg: haskell-wl-pprint-extras 3.5.0.5-66

rebuild with StateVar 1.1.1.1

Modified:
  haskell-wl-pprint-extras/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:41:34 UTC (rev 372217)
+++ PKGBUILD2018-08-17 07:42:13 UTC (rev 372218)
@@ -4,7 +4,7 @@
 _hkgname=wl-pprint-extras
 pkgname=haskell-wl-pprint-extras
 pkgver=3.5.0.5
-pkgrel=65
+pkgrel=66
 pkgdesc="A free monad based on the Wadler/Leijen pretty printer"
 url="https://github.com/ekmett/wl-pprint-extras/";
 license=('custom:BSD3')


[arch-commits] Commit in haskell-wl-pprint-extras/repos (2 files)

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:42:35
  Author: felixonmars
Revision: 372219

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wl-pprint-extras/repos/community-staging-x86_64/
  haskell-wl-pprint-extras/repos/community-staging-x86_64/PKGBUILD
(from rev 372218, haskell-wl-pprint-extras/trunk/PKGBUILD)

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

Copied: haskell-wl-pprint-extras/repos/community-staging-x86_64/PKGBUILD (from 
rev 372218, haskell-wl-pprint-extras/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:42:35 UTC (rev 372219)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=wl-pprint-extras
+pkgname=haskell-wl-pprint-extras
+pkgver=3.5.0.5
+pkgrel=66
+pkgdesc="A free monad based on the Wadler/Leijen pretty printer"
+url="https://github.com/ekmett/wl-pprint-extras/";
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-semigroupoids' 'haskell-utf8-string')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('705107842ccbf4eb23d0b9e8069fd4d5bb1b03ffecbf9efaa8a579fd977380913d590fa370cc42476d5b28fde98fc44e7879fe343f761cd1751ebeb0b8c0e242')
+
+prepare() {
+sed -e '/nats/d' -e '/semigroups/d' -i 
${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:44:32
  Author: felixonmars
Revision: 372220

upgpkg: haskell-hopenpgp 2.7.2-6

rebuild with StateVar 1.1.1.1

Modified:
  haskell-hopenpgp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:42:35 UTC (rev 372219)
+++ PKGBUILD2018-08-17 07:44:32 UTC (rev 372220)
@@ -4,7 +4,7 @@
 _hkgname=hOpenPGP
 pkgname=haskell-hopenpgp
 pkgver=2.7.2
-pkgrel=5
+pkgrel=6
 pkgdesc="Native Haskell implementation of OpenPGP (RFC4880)"
 url="http://floss.scru.org/hOpenPGP/";
 license=('MIT')


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:44:55
  Author: felixonmars
Revision: 372221

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hopenpgp/repos/community-staging-x86_64/
  haskell-hopenpgp/repos/community-staging-x86_64/PKGBUILD
(from rev 372220, haskell-hopenpgp/trunk/PKGBUILD)

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

Copied: haskell-hopenpgp/repos/community-staging-x86_64/PKGBUILD (from rev 
372220, haskell-hopenpgp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:44:55 UTC (rev 372221)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=hOpenPGP
+pkgname=haskell-hopenpgp
+pkgver=2.7.2
+pkgrel=6
+pkgdesc="Native Haskell implementation of OpenPGP (RFC4880)"
+url="http://floss.scru.org/hOpenPGP/";
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-asn1-encoding' 
'haskell-attoparsec'
+ 'haskell-base16-bytestring' 'haskell-base64-bytestring' 
'haskell-bifunctors'
+ 'haskell-bzlib' 'haskell-binary-conduit' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-crypto-cipher-types' 'haskell-errors' 
'haskell-hashable'
+ 'haskell-incremental-parser' 'haskell-ixset-typed' 'haskell-lens' 
'haskell-memory'
+ 'haskell-monad-loops' 'haskell-nettle' 'haskell-network-uri' 
'haskell-newtype'
+ 'haskell-openpgp-asciiarmor' 'haskell-prettyprinter' 
'haskell-resourcet' 'haskell-split'
+ 'haskell-time-locale-compat' 'haskell-unliftio-core' 
'haskell-unordered-containers'
+ 'haskell-wl-pprint-extras' 'haskell-zlib')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('b2cd045d5f221d853f7bab690d703275af7315bef4eaa8e350168475efd39ce801feb4bbd33c1c4af2a57077f9091d0e6e28e582fd71e50c42ebf8a2dca2e2a8')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in haskell-wl-pprint-terminfo/trunk (PKGBUILD)

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:45:53
  Author: felixonmars
Revision: 37

upgpkg: haskell-wl-pprint-terminfo 3.7.1.4-66

rebuild with StateVar 1.1.1.1

Modified:
  haskell-wl-pprint-terminfo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:44:55 UTC (rev 372221)
+++ PKGBUILD2018-08-17 07:45:53 UTC (rev 37)
@@ -4,7 +4,7 @@
 _hkgname=wl-pprint-terminfo
 pkgname=haskell-wl-pprint-terminfo
 pkgver=3.7.1.4
-pkgrel=65
+pkgrel=66
 pkgdesc="A color pretty printer with terminfo support"
 url="https://github.com/ekmett/wl-pprint-terminfo/";
 license=('custom:BSD3')


[arch-commits] Commit in haskell-wl-pprint-terminfo/repos (2 files)

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:46:16
  Author: felixonmars
Revision: 372224

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wl-pprint-terminfo/repos/community-staging-x86_64/
  haskell-wl-pprint-terminfo/repos/community-staging-x86_64/PKGBUILD
(from rev 372223, haskell-wl-pprint-terminfo/trunk/PKGBUILD)

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

Copied: haskell-wl-pprint-terminfo/repos/community-staging-x86_64/PKGBUILD 
(from rev 372223, haskell-wl-pprint-terminfo/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:46:16 UTC (rev 372224)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=wl-pprint-terminfo
+pkgname=haskell-wl-pprint-terminfo
+pkgver=3.7.1.4
+pkgrel=66
+pkgdesc="A color pretty printer with terminfo support"
+url="https://github.com/ekmett/wl-pprint-terminfo/";
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-wl-pprint-extras')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('1f2a7bd195732fe297c49c50b59812190d5698efa7c2e9b2fbcfbbae71523c25dfcc2a0f098aebe22453cd867bc40480100c8231a6f43a7bd46202f3dcd924b3')
+
+prepare() {
+sed -e '/nats/d' -e '/semigroups/d' -i 
${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fCursed
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:46:06
  Author: felixonmars
Revision: 372223

upgpkg: cmark-gfm 0.28.3.gfm.14-1

Modified:
  cmark-gfm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:45:53 UTC (rev 37)
+++ PKGBUILD2018-08-17 07:46:06 UTC (rev 372223)
@@ -3,7 +3,7 @@
 # Contributor: Veeti Paananen 
 
 pkgname=cmark-gfm
-pkgver=0.28.0.gfm.11
+pkgver=0.28.3.gfm.14
 pkgrel=1
 pkgdesc="GitHub's fork of cmark, a CommonMark parsing and rendering library 
and program in C"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('glibc')
 makedepends=('cmake' 'python')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/github/cmark/archive/$pkgver.tar.gz";)
-sha512sums=('5c67752fec5a0bad5c95691de680f36dfd4d35705b44f506669dfdcace338372613683268a6aaabc5b4a20153c22c1ae74a8757034a5aafead6aa13067cc2c1f')
+sha512sums=('37ecb67a07923fd218ddde5dab7d40b3dc84de9a430c9e139b22d58a3c6b1f56eb658014c8dd613d70c2291221fc64d6374c89898f7cd4004621b2633ac3d89c')
 
 prepare() {
   mkdir -p build


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:46:43
  Author: felixonmars
Revision: 372225

archrelease: copy trunk to community-x86_64

Added:
  cmark-gfm/repos/community-x86_64/PKGBUILD
(from rev 372224, cmark-gfm/trunk/PKGBUILD)
Deleted:
  cmark-gfm/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-17 07:46:16 UTC (rev 372224)
+++ PKGBUILD2018-08-17 07:46:43 UTC (rev 372225)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Veeti Paananen 
-
-pkgname=cmark-gfm
-pkgver=0.28.0.gfm.11
-pkgrel=1
-pkgdesc="GitHub's fork of cmark, a CommonMark parsing and rendering library 
and program in C"
-arch=('i686' 'x86_64')
-url="https://github.com/github/cmark";
-license=('custom:BSD2')
-depends=('glibc')
-makedepends=('cmake' 'python')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/github/cmark/archive/$pkgver.tar.gz";)
-sha512sums=('5c67752fec5a0bad5c95691de680f36dfd4d35705b44f506669dfdcace338372613683268a6aaabc5b4a20153c22c1ae74a8757034a5aafead6aa13067cc2c1f')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib 
../cmark-$pkgver
-  make
-}
-
-check() {
-  cd build
-  make test
-}
-
-package() {
-  cd build
-  make install DESTDIR="$pkgdir"
-
-  install -D -m 644 "$srcdir"/cmark-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/COPYING
-}

Copied: cmark-gfm/repos/community-x86_64/PKGBUILD (from rev 372224, 
cmark-gfm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-17 07:46:43 UTC (rev 372225)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Veeti Paananen 
+
+pkgname=cmark-gfm
+pkgver=0.28.3.gfm.14
+pkgrel=1
+pkgdesc="GitHub's fork of cmark, a CommonMark parsing and rendering library 
and program in C"
+arch=('x86_64')
+url="https://github.com/github/cmark";
+license=('custom:BSD2')
+depends=('glibc')
+makedepends=('cmake' 'python')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/github/cmark/archive/$pkgver.tar.gz";)
+sha512sums=('37ecb67a07923fd218ddde5dab7d40b3dc84de9a430c9e139b22d58a3c6b1f56eb658014c8dd613d70c2291221fc64d6374c89898f7cd4004621b2633ac3d89c')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib 
../cmark-$pkgver
+  make
+}
+
+check() {
+  cd build
+  make test
+}
+
+package() {
+  cd build
+  make install DESTDIR="$pkgdir"
+
+  install -D -m 644 "$srcdir"/cmark-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:47:01
  Author: felixonmars
Revision: 372226

upgpkg: python-tornado 5.1.0-2

fix dependency on python2-futures (FS#59555)

Modified:
  python-tornado/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:46:43 UTC (rev 372225)
+++ PKGBUILD2018-08-17 07:47:01 UTC (rev 372226)
@@ -5,15 +5,15 @@
 pkgbase=python-tornado
 pkgname=('python-tornado' 'python2-tornado')
 pkgver=5.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc='open source version of the scalable, non-blocking web server and 
tools'
 arch=('x86_64')
 url='http://www.tornadoweb.org/'
 license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-futures' 
'python2-singledispatch'
+ 'python2-backports-abc')
 checkdepends=('python-pycurl' 'python2-pycurl' 'python-mock' 'python2-mock' 
'python-twisted'
-  'python2-twisted' 'python2-futures' 'python2-singledispatch' 
'python2-backports-abc'
-  'python2-trollius' 'python2-monotonic')
+  'python2-twisted'  'python2-trollius' 'python2-monotonic')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/tornadoweb/tornado/archive/v$pkgver.tar.gz";)
 
sha512sums=('7960449ebae76501aa0ae08e3ec9a89f4de2b47a497253477c82acbf5f6f54415587fb921b619271b751312049dbb3334ff59867a536da9c71b7bd6684b9d9d9')
 
@@ -77,9 +77,8 @@
 }
 
 package_python2-tornado() {
-  depends=('python2-singledispatch' 'python2-backports-abc')
-  optdepends=('python2-futures: recommended thread pool and for 
tornado.netutil.ThreadedResolver'
-  'python2-monotonic: enable support for a monotonic clock'
+  depends=('python2-futures' 'python2-singledispatch' 'python2-backports-abc')
+  optdepends=('python2-monotonic: enable support for a monotonic clock'
   'python2-pycurl: for tornado.curl_httpclient'
   'python2-twisted: for tornado.platform.twisted')
   # 'python2-pycares: an alternative non-blocking DNS resolver'


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:47:29
  Author: felixonmars
Revision: 372227

archrelease: copy trunk to community-x86_64

Added:
  python-tornado/repos/community-x86_64/PKGBUILD
(from rev 372226, python-tornado/trunk/PKGBUILD)
Deleted:
  python-tornado/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-17 07:47:01 UTC (rev 372226)
+++ PKGBUILD2018-08-17 07:47:29 UTC (rev 372227)
@@ -1,89 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-
-pkgbase=python-tornado
-pkgname=('python-tornado' 'python2-tornado')
-pkgver=5.1.0
-pkgrel=1
-pkgdesc='open source version of the scalable, non-blocking web server and 
tools'
-arch=('x86_64')
-url='http://www.tornadoweb.org/'
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pycurl' 'python2-pycurl' 'python-mock' 'python2-mock' 
'python-twisted'
-  'python2-twisted' 'python2-futures' 'python2-singledispatch' 
'python2-backports-abc'
-  'python2-trollius' 'python2-monotonic')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/tornadoweb/tornado/archive/v$pkgver.tar.gz";)
-sha512sums=('7960449ebae76501aa0ae08e3ec9a89f4de2b47a497253477c82acbf5f6f54415587fb921b619271b751312049dbb3334ff59867a536da9c71b7bd6684b9d9d9')
-
-prepare() {
-  cd "$srcdir"
-  cp -a tornado-$pkgver{,-py2}
-
-  # python -> python2 rename
-  find tornado-$pkgver-py2 -name '*py' -exec sed -e 's_#!/usr/bin/env 
python_&2_' -i {} \;
-
-  export TORNADO_EXTENSION=1
-}
-
-build() {
-  cd tornado-$pkgver
-  python setup.py build
-
-  cd ../tornado-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # As of 4.5.3, ignoring test failures about resolving "localhost"
-  (
-cd tornado-$pkgver
-python setup.py install --root="$PWD/tmp_install" --optimize=1
-export 
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.7/site-packages:$PYTHONPATH"
-cd tmp_install
-python -m tornado.test.runtests
-python -m tornado.test.runtests 
--ioloop=tornado.platform.select.SelectIOLoop
-python -m tornado.test.runtests 
--httpclient=tornado.curl_httpclient.CurlAsyncHTTPClient
-python -m tornado.test.runtests --ioloop_time_monotonic
-python -m tornado.test.runtests 
--ioloop=tornado.platform.twisted.TwistedIOLoop
-python -m tornado.test.runtests 
--ioloop=tornado.platform.asyncio.AsyncIOLoop
-python -m tornado.test.runtests --resolver=tornado.netutil.ThreadedResolver
-  ) || warning "Tests failed"
-
-  (
-cd tornado-$pkgver-py2
-python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-export 
PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH"
-cd tmp_install
-python2 -m tornado.test.runtests
-python2 -m tornado.test.runtests 
--ioloop=tornado.platform.select.SelectIOLoop
-python2 -m tornado.test.runtests 
--httpclient=tornado.curl_httpclient.CurlAsyncHTTPClient
-python2 -m tornado.test.runtests --ioloop_time_monotonic
-python2 -m tornado.test.runtests 
--ioloop=tornado.platform.twisted.TwistedIOLoop
-python2 -m tornado.test.runtests 
--ioloop=tornado.platform.asyncio.AsyncIOLoop
-python2 -m tornado.test.runtests 
--resolver=tornado.netutil.ThreadedResolver
-  ) || warning "Tests failed"
-}
-
-package_python-tornado() {
-  depends=('python')
-  optdepends=('python-pycurl: for tornado.curl_httpclient'
-  'python-twisted: for tornado.platform.twisted')
-  # 'python-pycares: an alternative non-blocking DNS resolver'
-
-  cd tornado-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-tornado() {
-  depends=('python2-singledispatch' 'python2-backports-abc')
-  optdepends=('python2-futures: recommended thread pool and for 
tornado.netutil.ThreadedResolver'
-  'python2-monotonic: enable support for a monotonic clock'
-  'python2-pycurl: for tornado.curl_httpclient'
-  'python2-twisted: for tornado.platform.twisted')
-  # 'python2-pycares: an alternative non-blocking DNS resolver'
-
-  cd tornado-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-tornado/repos/community-x86_64/PKGBUILD (from rev 372226, 
python-tornado/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-17 07:47:29 UTC (rev 372227)
@@ -0,0 +1,88 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+
+pkgbase=python-tornado
+pkgname=('python-tornado' 'python2-tornado')
+pkgver=5.1.0
+pkgrel=2
+pkgdesc='open source version of the scalable, non-blocking web server and 
tools'
+arch=('x86_64')
+url='http://www.tornadowe

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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:48:49
  Author: felixonmars
Revision: 372229

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wreq/repos/community-staging-x86_64/
  haskell-wreq/repos/community-staging-x86_64/PKGBUILD
(from rev 372228, haskell-wreq/trunk/PKGBUILD)

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

Copied: haskell-wreq/repos/community-staging-x86_64/PKGBUILD (from rev 372228, 
haskell-wreq/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:48:49 UTC (rev 372229)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=wreq
+pkgname=haskell-wreq
+pkgver=0.5.2.1
+pkgrel=49
+pkgdesc="An easy-to-use HTTP client library."
+url="https://github.com/bos/wreq";
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-authenticate-oauth'
+ 'haskell-base16-bytestring' 'haskell-case-insensitive' 
'haskell-cryptonite'
+ 'haskell-exceptions' 'haskell-hashable' 'haskell-http-client' 
'haskell-http-client-tls'
+ 'haskell-http-types' 'haskell-lens' 'haskell-lens-aeson' 
'haskell-memory'
+ 'haskell-mime-types' 'haskell-psqueues' 'haskell-time-locale-compat'
+ 'haskell-unordered-containers' 'haskell-aeson-pretty' 
'haskell-base64-bytestring'
+ 'haskell-snap-core' 'haskell-snap-server' 'haskell-unix-compat' 
'haskell-uuid')
+makedepends=('ghc' 'haskell-cabal-doctest' 'haskell-doctest' 'haskell-hunit' 
'haskell-quickcheck'
+ 'haskell-network-info' 'haskell-temporary' 
'haskell-test-framework'
+ 'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2' 'haskell-vector')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('4054c9951417e65ad7b215f1fdfa497513daa52b18242b4c20ea14a76030ba91a34fed664bd3bd06f6a62a38c3d5d09ada171ad3ca1d43928c709ffc44560b2f')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fdoctest -f-aws -fhttpbin -f-developer
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE.md" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.md"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:48:25
  Author: felixonmars
Revision: 372228

upgpkg: haskell-wreq 0.5.2.1-49

rebuild with StateVar 1.1.1.1

Modified:
  haskell-wreq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:47:29 UTC (rev 372227)
+++ PKGBUILD2018-08-17 07:48:25 UTC (rev 372228)
@@ -4,7 +4,7 @@
 _hkgname=wreq
 pkgname=haskell-wreq
 pkgver=0.5.2.1
-pkgrel=48
+pkgrel=49
 pkgdesc="An easy-to-use HTTP client library."
 url="https://github.com/bos/wreq";
 license=('custom:BSD3')


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:49:42
  Author: felixonmars
Revision: 372230

upgpkg: haskell-xcffib 0.6.0-59

rebuild with StateVar 1.1.1.1

Modified:
  haskell-xcffib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:48:49 UTC (rev 372229)
+++ PKGBUILD2018-08-17 07:49:42 UTC (rev 372230)
@@ -4,7 +4,7 @@
 _hkgname=xcffib
 pkgname=haskell-xcffib
 pkgver=0.6.0
-pkgrel=58
+pkgrel=59
 pkgdesc="A cffi-based python binding for X"
 url="https://github.com/tych0/xcffib";
 license=('Apache')


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:50:04
  Author: felixonmars
Revision: 372231

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-xcffib/repos/community-staging-x86_64/
  haskell-xcffib/repos/community-staging-x86_64/PKGBUILD
(from rev 372230, haskell-xcffib/trunk/PKGBUILD)

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

Copied: haskell-xcffib/repos/community-staging-x86_64/PKGBUILD (from rev 
372230, haskell-xcffib/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:50:04 UTC (rev 372231)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=xcffib
+pkgname=haskell-xcffib
+pkgver=0.6.0
+pkgrel=59
+pkgdesc="A cffi-based python binding for X"
+url="https://github.com/tych0/xcffib";
+license=('Apache')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-either' 'haskell-filemanip' 
'haskell-language-python'
+ 'haskell-optparse-applicative' 'haskell-split' 'haskell-xcb-types')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('99f391e5495ec1bfdef7707b49a783568b8ce610e2a5acb885bb8cb9b9c6608068667291d6b67732ec7b28c820b3cee76fb40cb96a2c952600d6763edf9251dc')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:51:11
  Author: felixonmars
Revision: 372232

upgpkg: haskell-xml-conduit 1.8.0-48

rebuild with StateVar 1.1.1.1

Modified:
  haskell-xml-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:50:04 UTC (rev 372231)
+++ PKGBUILD2018-08-17 07:51:11 UTC (rev 372232)
@@ -5,7 +5,7 @@
 _hkgname=xml-conduit
 pkgname=haskell-xml-conduit
 pkgver=1.8.0
-pkgrel=47
+pkgrel=48
 pkgdesc="Pure-Haskell utilities for dealing with XML with the conduit package."
 url="https://github.com/snoyberg/xml";
 license=("MIT")


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:51:33
  Author: felixonmars
Revision: 372233

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-xml-conduit/repos/community-staging-x86_64/
  haskell-xml-conduit/repos/community-staging-x86_64/PKGBUILD
(from rev 372232, haskell-xml-conduit/trunk/PKGBUILD)

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

Copied: haskell-xml-conduit/repos/community-staging-x86_64/PKGBUILD (from rev 
372232, haskell-xml-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:51:33 UTC (rev 372233)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=xml-conduit
+pkgname=haskell-xml-conduit
+pkgver=1.8.0
+pkgrel=48
+pkgdesc="Pure-Haskell utilities for dealing with XML with the conduit package."
+url="https://github.com/snoyberg/xml";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-blaze-markup' 
'haskell-conduit'
+ 'haskell-conduit-extra' 'haskell-data-default-class' 
'haskell-monad-control'
+ 'haskell-resourcet' 'haskell-blaze-html' 'haskell-xml-types')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hunit')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('d6ffdba6db52cef4d11c8f7a49f357c3698673e8f5648c6f43510c5d55fcb0a7ba84e03340f7c84260bbeb026641a16e14d420b07f4845425d001462641c3bcd')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:53:53
  Author: felixonmars
Revision: 372234

upgpkg: haskell-aws 0.20-63

rebuild with StateVar 1.1.1.1

Modified:
  haskell-aws/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:51:33 UTC (rev 372233)
+++ PKGBUILD2018-08-17 07:53:53 UTC (rev 372234)
@@ -5,7 +5,7 @@
 _hkgname=aws
 pkgname=haskell-aws
 pkgver=0.20
-pkgrel=62
+pkgrel=63
 pkgdesc="Amazon Web Services (AWS) for Haskell"
 url="https://github.com/aristidb/aws";
 license=("custom:BSD3")


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:54:15
  Author: felixonmars
Revision: 372235

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 372234, 
haskell-aws/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:54:15 UTC (rev 372235)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aws
+pkgname=haskell-aws
+pkgver=0.20
+pkgrel=63
+pkgdesc="Amazon Web Services (AWS) for Haskell"
+url="https://github.com/aristidb/aws";
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' '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-cryptonite' 'haskell-data-default' 'haskell-exceptions' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-lifted-base' 'haskell-memory' 
'haskell-monad-control'
+ 'haskell-network' 'haskell-old-locale' 'haskell-resourcet' 
'haskell-safe'
+ 'haskell-scientific' 'haskell-tagged' 'haskell-unordered-containers'
+ 'haskell-utf8-string' 'haskell-vector' 'haskell-xml-conduit')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-errors' 'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-quickcheck-instances' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 
'haskell-transformers-base')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('b6c9b78c1918fc01057ac3c9f57c98d0d796a228b2efce7f4b8763e6ba86fdad0e29637359a1f2f830adb19cdaade20c4eb08bbe9259bbc79da718771ac5f821')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-examples
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test || warning "Requires AWS credentials to test"
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:55:40
  Author: felixonmars
Revision: 372237

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-feed/repos/community-staging-x86_64/
  haskell-feed/repos/community-staging-x86_64/PKGBUILD
(from rev 372236, haskell-feed/trunk/PKGBUILD)

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

Copied: haskell-feed/repos/community-staging-x86_64/PKGBUILD (from rev 372236, 
haskell-feed/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:55:40 UTC (rev 372237)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=feed
+pkgname=haskell-feed
+pkgver=1.0.0.0
+pkgrel=99
+pkgdesc="Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds."
+url="https://github.com/bergmark/feed";
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-compat' 'haskell-old-locale' 
'haskell-old-time' 'haskell-safe'
+ 'haskell-time-locale-compat' 'haskell-utf8-string' 'haskell-xml-types'
+ 'haskell-xml-conduit')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('dfda1387e2af46fa703634ae3988c243c59bf0c00eefe5ed193c51d5c18131221fa20cfb83404e7c227a2962e4d621186579f7c2d9353d19c01d9277de13ae4d')
+
+prepare() {
+sed -e 's/, xml-conduit >= 1.3 && < 1.6/, xml-conduit >= 1.3/' \
+-e 's/<.*4.11/<5/' -e 's/==.*0.9./==0.10./' \
+-i $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:55:18
  Author: felixonmars
Revision: 372236

upgpkg: haskell-feed 1.0.0.0-99

rebuild with StateVar 1.1.1.1

Modified:
  haskell-feed/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:54:15 UTC (rev 372235)
+++ PKGBUILD2018-08-17 07:55:18 UTC (rev 372236)
@@ -5,7 +5,7 @@
 _hkgname=feed
 pkgname=haskell-feed
 pkgver=1.0.0.0
-pkgrel=98
+pkgrel=99
 pkgdesc="Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds."
 url="https://github.com/bergmark/feed";
 license=("custom:BSD3")


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:56:32
  Author: felixonmars
Revision: 372239

upgpkg: haskell-html-conduit 1.3.1-28

rebuild with StateVar 1.1.1.1

Modified:
  haskell-html-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:55:51 UTC (rev 372238)
+++ PKGBUILD2018-08-17 07:56:32 UTC (rev 372239)
@@ -4,7 +4,7 @@
 _hkgname=html-conduit
 pkgname=haskell-html-conduit
 pkgver=1.3.1
-pkgrel=27
+pkgrel=28
 pkgdesc="Parse HTML documents using xml-conduit datatypes"
 url="https://github.com/snoyberg/xml";
 license=('MIT')


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:56:54
  Author: felixonmars
Revision: 372240

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-html-conduit/repos/community-staging-x86_64/
  haskell-html-conduit/repos/community-staging-x86_64/PKGBUILD
(from rev 372239, haskell-html-conduit/trunk/PKGBUILD)

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

Copied: haskell-html-conduit/repos/community-staging-x86_64/PKGBUILD (from rev 
372239, haskell-html-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:56:54 UTC (rev 372240)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=html-conduit
+pkgname=haskell-html-conduit
+pkgver=1.3.1
+pkgrel=28
+pkgdesc="Parse HTML documents using xml-conduit datatypes"
+url="https://github.com/snoyberg/xml";
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-resourcet' 'haskell-conduit' 'haskell-xml-conduit'
+ 'haskell-attoparsec' 'haskell-conduit-extra' 'haskell-xml-types')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hunit')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('2f6e77f7894459f724ffd1357545eedafcd820160de7bff71f775cc38189ddd78df735c0349ac0ebbf22def2f915e62df795ef32ea1652dc72cd0fa811d76dbf')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:57:47
  Author: felixonmars
Revision: 372241

upgpkg: haskell-tagstream-conduit 0.5.5.3-193

rebuild with StateVar 1.1.1.1

Modified:
  haskell-tagstream-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:56:54 UTC (rev 372240)
+++ PKGBUILD2018-08-17 07:57:47 UTC (rev 372241)
@@ -5,7 +5,7 @@
 _hkgname=tagstream-conduit
 pkgname=haskell-tagstream-conduit
 pkgver=0.5.5.3
-pkgrel=192
+pkgrel=193
 pkgdesc="Streamlined html tag parser"
 url="https://github.com/yihuang/tagstream-conduit";
 license=("custom:BSD3")


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:58:08
  Author: felixonmars
Revision: 372242

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-tagstream-conduit/repos/community-staging-x86_64/
  haskell-tagstream-conduit/repos/community-staging-x86_64/PKGBUILD
(from rev 372241, haskell-tagstream-conduit/trunk/PKGBUILD)

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

Copied: haskell-tagstream-conduit/repos/community-staging-x86_64/PKGBUILD (from 
rev 372241, haskell-tagstream-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:58:08 UTC (rev 372242)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tagstream-conduit
+pkgname=haskell-tagstream-conduit
+pkgver=0.5.5.3
+pkgrel=193
+pkgdesc="Streamlined html tag parser"
+url="https://github.com/yihuang/tagstream-conduit";
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-attoparsec" "haskell-blaze-builder" 
"haskell-case-insensitive"
+ "haskell-conduit" "haskell-conduit-extra" "haskell-data-default" 
"haskell-resourcet"
+ "haskell-xml-conduit")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('84625975df6c6c315011ebfd63d551b22c00927fa9add390d9e723bc104d4a7881743aaf6bceae0ff42efc6056a314baddb594fd5e39333ea7ff6cbcf154')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:59:20
  Author: felixonmars
Revision: 372245

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-authenticate/repos/community-staging-x86_64/
  haskell-authenticate/repos/community-staging-x86_64/PKGBUILD
(from rev 372244, haskell-authenticate/trunk/PKGBUILD)

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

Copied: haskell-authenticate/repos/community-staging-x86_64/PKGBUILD (from rev 
372244, haskell-authenticate/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 07:59:20 UTC (rev 372245)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=authenticate
+pkgname=haskell-authenticate
+pkgver=1.3.4
+pkgrel=155
+pkgdesc="Authentication methods for Haskell web applications."
+url="https://github.com/yesodweb/authenticate";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-blaze-builder'
+ 'haskell-case-insensitive' 'haskell-conduit' 'haskell-http-conduit' 
'haskell-http-types'
+ 'haskell-network-uri' 'haskell-resourcet' 'haskell-tagstream-conduit'
+ 'haskell-unordered-containers' 'haskell-xml-conduit')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('a6e5a9f4c20ca2bb980958c0cc6273492a6488a3f7c1954170bb8b40e46a4c2f7b607c961506e11ddc5421289c907148c1bc70b855bd16664bc1153ef7865571')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Antonio Rojas via arch-commits
Date: Friday, August 17, 2018 @ 07:59:10
  Author: arojas
Revision: 372244

Update to 2.9.1

Modified:
  gammaray/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:58:59 UTC (rev 372243)
+++ PKGBUILD2018-08-17 07:59:10 UTC (rev 372244)
@@ -1,21 +1,22 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=gammaray
-pkgver=2.9.0
-pkgrel=3
+pkgver=2.9.1
+pkgrel=1
 pkgdesc="A tool for examining the internals of a Qt application and to some 
extent also manipulate it"
 arch=(x86_64)
 url="http://www.kdab.com/gammaray/";
 license=(GPL)
-depends=(syntax-highlighting qt5-script qt5-tools qt5-svg qt5-3d)
-makedepends=(cmake kcoreaddons qt5-wayland qt5-webengine qt5-scxml 
qt5-location qt5-connectivity doxygen)
+depends=(syntax-highlighting qt5-tools qt5-svg qt5-3d)
+makedepends=(cmake kcoreaddons qt5-script qt5-wayland qt5-webengine qt5-scxml 
qt5-location qt5-connectivity doxygen)
 optdepends=('qt5-wayland: Wayland compositor inspector plugin'
 'qt5-webengine: web inspector plugin'
 'qt5-scxml: state machine viewer plugin'
 'qt5-connectivity: bluetooth plugin'
+'qt5-script: script engine debugger plugin'
 'kcoreaddons: KJob tracker plugin')
 
source=(https://github.com/KDAB/GammaRay/releases/download/v$pkgver/gammaray-$pkgver.tar.gz{,.asc})
-sha256sums=('5ab3fb4ac3d7e82f37ed7c62e063505d52334338460cf31d91c99d485d1d7bc2'
+sha256sums=('ba1f6f2b777c550511a17f704b9c340df139de8ba8fa0d72782ea51d0086fa47'
 'SKIP')
 validpgpkeys=(E86C000370B1B9E2A9191AD53DBFB6882C9358FB) # KDAB Products 

 


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 07:58:59
  Author: felixonmars
Revision: 372243

upgpkg: haskell-authenticate 1.3.4-155

rebuild with StateVar 1.1.1.1

Modified:
  haskell-authenticate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:58:08 UTC (rev 372242)
+++ PKGBUILD2018-08-17 07:58:59 UTC (rev 372243)
@@ -5,7 +5,7 @@
 _hkgname=authenticate
 pkgname=haskell-authenticate
 pkgver=1.3.4
-pkgrel=154
+pkgrel=155
 pkgdesc="Authentication methods for Haskell web applications."
 url="https://github.com/yesodweb/authenticate";
 license=("MIT")


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

2018-08-17 Thread Antonio Rojas via arch-commits
Date: Friday, August 17, 2018 @ 07:59:35
  Author: arojas
Revision: 372246

archrelease: copy trunk to community-x86_64

Added:
  gammaray/repos/community-x86_64/PKGBUILD
(from rev 372245, gammaray/trunk/PKGBUILD)
Deleted:
  gammaray/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-17 07:59:20 UTC (rev 372245)
+++ PKGBUILD2018-08-17 07:59:35 UTC (rev 372246)
@@ -1,42 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=gammaray
-pkgver=2.9.0
-pkgrel=3
-pkgdesc="A tool for examining the internals of a Qt application and to some 
extent also manipulate it"
-arch=(x86_64)
-url="http://www.kdab.com/gammaray/";
-license=(GPL)
-depends=(syntax-highlighting qt5-script qt5-tools qt5-svg qt5-3d)
-makedepends=(cmake kcoreaddons qt5-wayland qt5-webengine qt5-scxml 
qt5-location qt5-connectivity doxygen)
-optdepends=('qt5-wayland: Wayland compositor inspector plugin'
-'qt5-webengine: web inspector plugin'
-'qt5-scxml: state machine viewer plugin'
-'qt5-connectivity: bluetooth plugin'
-'kcoreaddons: KJob tracker plugin')
-source=(https://github.com/KDAB/GammaRay/releases/download/v$pkgver/gammaray-$pkgver.tar.gz{,.asc})
-sha256sums=('5ab3fb4ac3d7e82f37ed7c62e063505d52334338460cf31d91c99d485d1d7bc2'
-'SKIP')
-validpgpkeys=(E86C000370B1B9E2A9191AD53DBFB6882C9358FB) # KDAB Products 

-
-prepare() {
-  mkdir -p build
-
-# Fix plugin install dir
-  sed -e 's|plugins/gammaray|lib/qt/plugins/gammaray|' -i 
$pkgname-$pkgver/CMakeLists.txt
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DGAMMARAY_INSTALL_QT_LAYOUT=ON \
--DPLUGIN_INSTALL_DIR=/usr/lib/qt/plugins/gammaray
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: gammaray/repos/community-x86_64/PKGBUILD (from rev 372245, 
gammaray/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-17 07:59:35 UTC (rev 372246)
@@ -0,0 +1,43 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=gammaray
+pkgver=2.9.1
+pkgrel=1
+pkgdesc="A tool for examining the internals of a Qt application and to some 
extent also manipulate it"
+arch=(x86_64)
+url="http://www.kdab.com/gammaray/";
+license=(GPL)
+depends=(syntax-highlighting qt5-tools qt5-svg qt5-3d)
+makedepends=(cmake kcoreaddons qt5-script qt5-wayland qt5-webengine qt5-scxml 
qt5-location qt5-connectivity doxygen)
+optdepends=('qt5-wayland: Wayland compositor inspector plugin'
+'qt5-webengine: web inspector plugin'
+'qt5-scxml: state machine viewer plugin'
+'qt5-connectivity: bluetooth plugin'
+'qt5-script: script engine debugger plugin'
+'kcoreaddons: KJob tracker plugin')
+source=(https://github.com/KDAB/GammaRay/releases/download/v$pkgver/gammaray-$pkgver.tar.gz{,.asc})
+sha256sums=('ba1f6f2b777c550511a17f704b9c340df139de8ba8fa0d72782ea51d0086fa47'
+'SKIP')
+validpgpkeys=(E86C000370B1B9E2A9191AD53DBFB6882C9358FB) # KDAB Products 

+
+prepare() {
+  mkdir -p build
+
+# Fix plugin install dir
+  sed -e 's|plugins/gammaray|lib/qt/plugins/gammaray|' -i 
$pkgname-$pkgver/CMakeLists.txt
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DGAMMARAY_INSTALL_QT_LAYOUT=ON \
+-DPLUGIN_INSTALL_DIR=/usr/lib/qt/plugins/gammaray
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in haskell-xml-hamlet/repos (2 files)

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 08:00:43
  Author: felixonmars
Revision: 372248

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-xml-hamlet/repos/community-staging-x86_64/
  haskell-xml-hamlet/repos/community-staging-x86_64/PKGBUILD
(from rev 372247, haskell-xml-hamlet/trunk/PKGBUILD)

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

Copied: haskell-xml-hamlet/repos/community-staging-x86_64/PKGBUILD (from rev 
372247, haskell-xml-hamlet/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 08:00:43 UTC (rev 372248)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=xml-hamlet
+pkgname=haskell-xml-hamlet
+pkgver=0.5.0
+pkgrel=42
+pkgdesc="Hamlet-style quasiquoter for XML content"
+url="http://www.yesodweb.com/";
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-shakespeare"
+ "haskell-xml-conduit")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('6ab50b237e13f5d41f311fe30477c5ecef43af7400e6994652b384b8b91a0007facd7051d2651dac6836356fad6a764dfc2793338b7c0a8c20e83009a0a673ce')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 08:00:17
  Author: felixonmars
Revision: 372247

upgpkg: haskell-xml-hamlet 0.5.0-42

rebuild with StateVar 1.1.1.1

Modified:
  haskell-xml-hamlet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 07:59:35 UTC (rev 372246)
+++ PKGBUILD2018-08-17 08:00:17 UTC (rev 372247)
@@ -5,7 +5,7 @@
 _hkgname=xml-hamlet
 pkgname=haskell-xml-hamlet
 pkgver=0.5.0
-pkgrel=41
+pkgrel=42
 pkgdesc="Hamlet-style quasiquoter for XML content"
 url="http://www.yesodweb.com/";
 license=("custom:BSD3")


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 08:01:41
  Author: felixonmars
Revision: 372249

upgpkg: haskell-dav 1.3.2-110

rebuild with StateVar 1.1.1.1

Modified:
  haskell-dav/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 08:00:43 UTC (rev 372248)
+++ PKGBUILD2018-08-17 08:01:41 UTC (rev 372249)
@@ -5,7 +5,7 @@
 _hkgname=DAV
 pkgname=haskell-dav
 pkgver=1.3.2
-pkgrel=109
+pkgrel=110
 pkgdesc="RFC 4918 WebDAV support"
 url="http://floss.scru.org/hDAV";
 license=("GPL3")


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 08:02:02
  Author: felixonmars
Revision: 372250

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-dav/repos/community-staging-x86_64/
  haskell-dav/repos/community-staging-x86_64/PKGBUILD
(from rev 372249, haskell-dav/trunk/PKGBUILD)

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

Copied: haskell-dav/repos/community-staging-x86_64/PKGBUILD (from rev 372249, 
haskell-dav/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 08:02:02 UTC (rev 372250)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=DAV
+pkgname=haskell-dav
+pkgver=1.3.2
+pkgrel=110
+pkgdesc="RFC 4918 WebDAV support"
+url="http://floss.scru.org/hDAV";
+license=("GPL3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-case-insensitive" "haskell-data-default" 
"haskell-exceptions"
+ "haskell-haskeline" "haskell-http-client" "haskell-http-client-tls" 
"haskell-http-types"
+ "haskell-lens" "haskell-network" "haskell-network-uri"
+ "haskell-optparse-applicative" "haskell-transformers-base" 
"haskell-transformers-compat"
+ "haskell-utf8-string" "haskell-xml-conduit" "haskell-xml-hamlet")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('8dd729c09f7b415dda13948bbd533606a7ccf45eb933fd6e984539f76defa8f938e6ec0c954c0955630182ee014fd611bd8a4e8a70fc863253d9a3f6a229c497')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri -f-mtl-compat
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 08:03:17
  Author: felixonmars
Revision: 372251

upgpkg: haskell-yaml 0.9.0-12

rebuild with StateVar 1.1.1.1

Modified:
  haskell-yaml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 08:02:02 UTC (rev 372250)
+++ PKGBUILD2018-08-17 08:03:17 UTC (rev 372251)
@@ -5,7 +5,7 @@
 _hkgname=yaml
 pkgname=haskell-yaml
 pkgver=0.9.0
-pkgrel=11
+pkgrel=12
 pkgdesc="Support for parsing and rendering YAML documents."
 url="https://github.com/snoyberg/yaml/";
 license=("custom:BSD3")


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 08:03:39
  Author: felixonmars
Revision: 372252

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yaml/repos/community-staging-x86_64/
  haskell-yaml/repos/community-staging-x86_64/PKGBUILD
(from rev 372251, haskell-yaml/trunk/PKGBUILD)

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

Copied: haskell-yaml/repos/community-staging-x86_64/PKGBUILD (from rev 372251, 
haskell-yaml/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 08:03:39 UTC (rev 372252)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yaml
+pkgname=haskell-yaml
+pkgver=0.9.0
+pkgrel=12
+pkgdesc="Support for parsing and rendering YAML documents."
+url="https://github.com/snoyberg/yaml/";
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 'haskell-conduit' 
'haskell-vector'
+ 'haskell-resourcet' 'haskell-scientific' 
'haskell-unordered-containers')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hunit' 'haskell-mockery' 
'haskell-base-compat'
+ 'haskell-temporary')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('f43f3d8aded68bba8434cbfc1d0e10341060d8059d3cdd13e91218cad44e458d23c023e56f1d24ac3c8a1f847fa1022371d719055668c798277b7c1b68354e5f')
+
+prepare() {
+sed -e '/semigroups/d' -i ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-no-unicode -f-system-libyaml -f-no-exe -fno-examples
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 08:04:41
  Author: felixonmars
Revision: 372253

upgpkg: cgrep 6.6.25-64

rebuild with StateVar 1.1.1.1

Modified:
  cgrep/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 08:03:39 UTC (rev 372252)
+++ PKGBUILD2018-08-17 08:04:41 UTC (rev 372253)
@@ -4,7 +4,7 @@
 
 pkgname=cgrep
 pkgver=6.6.25
-pkgrel=63
+pkgrel=64
 pkgdesc="A context-aware grep for source codes"
 url="http://awgn.github.io/cgrep/";
 license=("GPL2")


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 08:05:02
  Author: felixonmars
Revision: 372254

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: cgrep/repos/community-staging-x86_64/PKGBUILD (from rev 372253, 
cgrep/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 08:05:02 UTC (rev 372254)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=cgrep
+pkgver=6.6.25
+pkgrel=64
+pkgdesc="A context-aware grep for source codes"
+url="http://awgn.github.io/cgrep/";
+license=("GPL2")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 'haskell-async' 
'haskell-cmdargs'
+ 'haskell-dlist' 'haskell-either' 'haskell-exceptions' 
'haskell-regex-base'
+ 'haskell-regex-pcre' 'haskell-regex-posix' 'haskell-safe' 
'haskell-split'
+ 'haskell-stringsearch' 'haskell-unix-compat' 'haskell-unicode-show'
+ 'haskell-unordered-containers' 'haskell-utf8-string' 'haskell-yaml')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('d3b5a9c249034de37645cfcd6711d701dc5e51fd35f1d5a2c77e9a0c470965f9d268ea3ee523fdc92029e5161688122ed8e04590ca81c7b7b601abec5b2e5e42')
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--docdir="/usr/share/doc/${pkgname}"
+runhaskell Setup build
+}
+
+package() {
+cd $pkgname-$pkgver
+runhaskell Setup copy --destdir="$pkgdir"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 08:07:28
  Author: felixonmars
Revision: 372256

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hpack/repos/community-staging-x86_64/
  haskell-hpack/repos/community-staging-x86_64/PKGBUILD
(from rev 372255, haskell-hpack/trunk/PKGBUILD)

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

Copied: haskell-hpack/repos/community-staging-x86_64/PKGBUILD (from rev 372255, 
haskell-hpack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 08:07:28 UTC (rev 372256)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+# Contributor: Daniel Micay 
+
+pkgname=haskell-hpack
+_hkgname=hpack
+pkgver=0.29.6
+pkgrel=5
+pkgdesc="A modern format for Haskell packages"
+url="https://github.com/sol/hpack#readme";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-bifunctors' 'haskell-cryptonite' 
'haskell-glob'
+ 'haskell-http-client' 'haskell-http-client-tls' 'haskell-http-types'
+ 'haskell-infer-license' 'haskell-scientific' 
'haskell-unordered-containers'
+ 'haskell-vector' 'haskell-yaml')
+makedepends=('ghc' 'haskell-hunit' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-interpolate'
+ 'haskell-mockery' 'haskell-temporary')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz";)
+sha512sums=('a45a45738dff32eaf0df74efc5454e9398a56b49909c0d78274431c2968523e9c602c016fd44f2b75f6a07cfeb1291c8608ce14bb0f9c08e9c35b10e55c34980')
+
+build() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -f "$pkgdir/usr/share/doc/$pkgname/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 08:07:06
  Author: felixonmars
Revision: 372255

upgpkg: haskell-hpack 0.29.6-5

rebuild with StateVar 1.1.1.1

Modified:
  haskell-hpack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 08:05:02 UTC (rev 372254)
+++ PKGBUILD2018-08-17 08:07:06 UTC (rev 372255)
@@ -6,7 +6,7 @@
 pkgname=haskell-hpack
 _hkgname=hpack
 pkgver=0.29.6
-pkgrel=4
+pkgrel=5
 pkgdesc="A modern format for Haskell packages"
 url="https://github.com/sol/hpack#readme";
 license=("MIT")


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 08:08:41
  Author: felixonmars
Revision: 372257

upgpkg: haskell-mustache 2.3.0-66

rebuild with StateVar 1.1.1.1

Modified:
  haskell-mustache/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 08:07:28 UTC (rev 372256)
+++ PKGBUILD2018-08-17 08:08:41 UTC (rev 372257)
@@ -4,7 +4,7 @@
 _hkgname=mustache
 pkgname=haskell-mustache
 pkgver=2.3.0
-pkgrel=65
+pkgrel=66
 pkgdesc="A mustache template parser library."
 url="https://github.com/JustusAdam/mustache";
 license=('custom:BSD3')


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 08:09:02
  Author: felixonmars
Revision: 372258

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-mustache/repos/community-staging-x86_64/
  haskell-mustache/repos/community-staging-x86_64/PKGBUILD
(from rev 372257, haskell-mustache/trunk/PKGBUILD)

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

Copied: haskell-mustache/repos/community-staging-x86_64/PKGBUILD (from rev 
372257, haskell-mustache/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 08:09:02 UTC (rev 372258)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=mustache
+pkgname=haskell-mustache
+pkgver=2.3.0
+pkgrel=66
+pkgdesc="A mustache template parser library."
+url="https://github.com/JustusAdam/mustache";
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-either' 
'haskell-unordered-containers' 'haskell-vector'
+ 'haskell-scientific' 'haskell-th-lift' 'haskell-cmdargs' 
'haskell-yaml')
+makedepends=('ghc' 'haskell-hspec' 'haskell-base-unicode-symbols' 
'haskell-wreq' 'haskell-zlib'
+ 'haskell-tar' 'haskell-lens' 'haskell-temporary')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('bdefb406a44bb3648ca7129128767be04c780d967757385770111a0da8f91ff7165213038e8abc7799b28b66eb7d2f47383346837fad7e6327dad7aa714971f6')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in (4 files)

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 08:10:42
  Author: felixonmars
Revision: 372261

addpkg: python-semver 2.8.1-1

Added:
  python-semver/
  python-semver/repos/
  python-semver/trunk/
  python-semver/trunk/PKGBUILD

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

Added: python-semver/trunk/PKGBUILD
===
--- python-semver/trunk/PKGBUILD(rev 0)
+++ python-semver/trunk/PKGBUILD2018-08-17 08:10:42 UTC (rev 372261)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-semver
+pkgname=(python-semver python2-semver)
+pkgver=2.8.1
+pkgrel=1
+pkgdesc="Python helper for Semantic Versioning"
+url="https://github.com/k-bx/semver";
+license=('BSD')
+arch=('any')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/k-bx/python-semver/archive/$pkgver.tar.gz";)
+sha512sums=('a457b1a170b309ee563955e4c506de56a061acd4e7e92a58fd8bd78801e33207fbc5e0e026fc0ea243301bf9ecfe0b219c0d95681aa10066480cbd3974e17d3a')
+
+prepare() {
+  sed -i '/tests_require/d' python-semver-$pkgver/setup.py
+  cp -a python-semver-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/python-semver-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/python-semver-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-semver-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/python-semver-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-semver() {
+  depends=('python')
+
+  cd python-semver-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+package_python2-semver() {
+  depends=('python2')
+
+  cd python-semver-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}


Property changes on: python-semver/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in haskell-yesod-core/repos (2 files)

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 08:10:40
  Author: felixonmars
Revision: 372260

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-core/repos/community-staging-x86_64/
  haskell-yesod-core/repos/community-staging-x86_64/PKGBUILD
(from rev 372259, haskell-yesod-core/trunk/PKGBUILD)

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

Copied: haskell-yesod-core/repos/community-staging-x86_64/PKGBUILD (from rev 
372259, haskell-yesod-core/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 08:10:40 UTC (rev 372260)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-core
+pkgname=haskell-yesod-core
+pkgver=1.6.6
+pkgrel=17
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-auto-update' 'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-byteable' 'haskell-case-insensitive' 
'haskell-cereal'
+ 'haskell-clientsession' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cookie'
+ 'haskell-fast-logger' 'haskell-http-types'
+ 'haskell-monad-logger' 'haskell-old-locale' 'haskell-path-pieces' 
'haskell-primitive'
+ 'haskell-random' 'haskell-resourcet' 'haskell-rio' 
'haskell-shakespeare'
+ 'haskell-unix-compat' 'haskell-unliftio' 
'haskell-unordered-containers' 'haskell-vector'
+ 'haskell-wai' 'haskell-wai-extra' 'haskell-wai-logger' 'haskell-warp' 
'haskell-word8')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('30e5b14249e80fd8eb311eed9bc47a638dd9bef88e91e3f68a26d6ad0a251754396d7e2b0fbc84ffdbb9540e2a60b4cd561039f0d8112c0705dae14f549e2ffd')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 08:10:18
  Author: felixonmars
Revision: 372259

upgpkg: haskell-yesod-core 1.6.6-17

rebuild with StateVar 1.1.1.1

Modified:
  haskell-yesod-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 08:09:02 UTC (rev 372258)
+++ PKGBUILD2018-08-17 08:10:18 UTC (rev 372259)
@@ -5,7 +5,7 @@
 _hkgname=yesod-core
 pkgname=haskell-yesod-core
 pkgver=1.6.6
-pkgrel=16
+pkgrel=17
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/";
 license=("MIT")


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 08:11:10
  Author: felixonmars
Revision: 372262

archrelease: copy trunk to community-any

Added:
  python-semver/repos/community-any/
  python-semver/repos/community-any/PKGBUILD
(from rev 372261, python-semver/trunk/PKGBUILD)

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

Copied: python-semver/repos/community-any/PKGBUILD (from rev 372261, 
python-semver/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2018-08-17 08:11:10 UTC (rev 372262)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-semver
+pkgname=(python-semver python2-semver)
+pkgver=2.8.1
+pkgrel=1
+pkgdesc="Python helper for Semantic Versioning"
+url="https://github.com/k-bx/semver";
+license=('BSD')
+arch=('any')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/k-bx/python-semver/archive/$pkgver.tar.gz";)
+sha512sums=('a457b1a170b309ee563955e4c506de56a061acd4e7e92a58fd8bd78801e33207fbc5e0e026fc0ea243301bf9ecfe0b219c0d95681aa10066480cbd3974e17d3a')
+
+prepare() {
+  sed -i '/tests_require/d' python-semver-$pkgver/setup.py
+  cp -a python-semver-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/python-semver-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/python-semver-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-semver-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/python-semver-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-semver() {
+  depends=('python')
+
+  cd python-semver-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+package_python2-semver() {
+  depends=('python2')
+
+  cd python-semver-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 08:11:40
  Author: felixonmars
Revision: 372263

upgpkg: haskell-yesod-default 1.2.0-372

rebuild with StateVar 1.1.1.1

Modified:
  haskell-yesod-default/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 08:11:10 UTC (rev 372262)
+++ PKGBUILD2018-08-17 08:11:40 UTC (rev 372263)
@@ -5,7 +5,7 @@
 _hkgname=yesod-default
 pkgname=haskell-yesod-default
 pkgver=1.2.0
-pkgrel=371
+pkgrel=372
 pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
 url="http://www.yesodweb.com/";
 license=("MIT")


[arch-commits] Commit in haskell-yesod-default/repos (2 files)

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 08:12:01
  Author: felixonmars
Revision: 372264

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-default/repos/community-staging-x86_64/
  haskell-yesod-default/repos/community-staging-x86_64/PKGBUILD
(from rev 372263, haskell-yesod-default/trunk/PKGBUILD)

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

Copied: haskell-yesod-default/repos/community-staging-x86_64/PKGBUILD (from rev 
372263, haskell-yesod-default/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 08:12:01 UTC (rev 372264)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-default
+pkgname=haskell-yesod-default
+pkgver=1.2.0
+pkgrel=372
+pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
+url="http://www.yesodweb.com/";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-yesod-core")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha256sums=('f39ae1953a95c1919a9dd214d93bf81078b1dcbbac737dc9bb7339dbad9dda96')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 08:13:02
  Author: felixonmars
Revision: 372265

upgpkg: haskell-yesod-persistent 1.6.0-77

rebuild with StateVar 1.1.1.1

Modified:
  haskell-yesod-persistent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 08:12:01 UTC (rev 372264)
+++ PKGBUILD2018-08-17 08:13:02 UTC (rev 372265)
@@ -5,7 +5,7 @@
 _hkgname=yesod-persistent
 pkgname=haskell-yesod-persistent
 pkgver=1.6.0
-pkgrel=76
+pkgrel=77
 pkgdesc="Some helpers for using Persistent from Yesod."
 url="http://www.yesodweb.com/";
 license=("MIT")


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 08:13:23
  Author: felixonmars
Revision: 372266

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-persistent/repos/community-staging-x86_64/
  haskell-yesod-persistent/repos/community-staging-x86_64/PKGBUILD
(from rev 372265, haskell-yesod-persistent/trunk/PKGBUILD)

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

Copied: haskell-yesod-persistent/repos/community-staging-x86_64/PKGBUILD (from 
rev 372265, haskell-yesod-persistent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 08:13:23 UTC (rev 372266)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-persistent
+pkgname=haskell-yesod-persistent
+pkgver=1.6.0
+pkgrel=77
+pkgdesc="Some helpers for using Persistent from Yesod."
+url="http://www.yesodweb.com/";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-blaze-builder" "haskell-conduit" 
"haskell-persistent"
+ "haskell-persistent-template" "haskell-resource-pool" 
"haskell-resourcet"
+ "haskell-yesod-core")
+makedepends=('ghc' 'haskell-hspec' 'haskell-wai-extra' 
'haskell-persistent-sqlite')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('8000d9f9a3406aff157652989946b915ba54e4241e59afc29c51c647f5c45d05cad7d46a92423fa3811a9a6238f6a4a759320309b337d369346fe5470d927982')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-08-17 Thread Antonio Rojas via arch-commits
Date: Friday, August 17, 2018 @ 08:14:47
  Author: arojas
Revision: 331626

Update to 7.0.8.10

Modified:
  imagemagick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 05:43:04 UTC (rev 331625)
+++ PKGBUILD2018-08-17 08:14:47 UTC (rev 331626)
@@ -3,8 +3,8 @@
 
 pkgbase=imagemagick
 pkgname=(libmagick imagemagick imagemagick-doc)
-pkgver=7.0.8.8
-pkgrel=2
+pkgver=7.0.8.10
+pkgrel=1
 pkgdesc="An image viewing/manipulation program"
 url="https://www.imagemagick.org/";
 arch=(x86_64)
@@ -17,7 +17,7 @@
 _tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
 source=(https://www.imagemagick.org/download/releases/$_tarname.tar.xz{,.asc}
 arch-fonts.diff)
-sha256sums=('148b9f3f9c8ab9898aa97f89dfc17bda9a5bc00674d62562057e84e3d03f'
+sha256sums=('d5309031d59130befa283266011efaab15b1e113f1a218a4ba24c821cd906472'
 'SKIP'
 'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
 validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae


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

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 08:14:43
  Author: felixonmars
Revision: 372267

upgpkg: haskell-yesod-form 1.6.2-18

rebuild with StateVar 1.1.1.1

Modified:
  haskell-yesod-form/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-17 08:13:23 UTC (rev 372266)
+++ PKGBUILD2018-08-17 08:14:43 UTC (rev 372267)
@@ -5,7 +5,7 @@
 _hkgname=yesod-form
 pkgname=haskell-yesod-form
 pkgver=1.6.2
-pkgrel=17
+pkgrel=18
 pkgdesc="Form handling support for Yesod Web Framework"
 url="http://www.yesodweb.com/";
 license=("MIT")


[arch-commits] Commit in haskell-yesod-form/repos (2 files)

2018-08-17 Thread Felix Yan via arch-commits
Date: Friday, August 17, 2018 @ 08:15:04
  Author: felixonmars
Revision: 372268

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-form/repos/community-staging-x86_64/
  haskell-yesod-form/repos/community-staging-x86_64/PKGBUILD
(from rev 372267, haskell-yesod-form/trunk/PKGBUILD)

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

Copied: haskell-yesod-form/repos/community-staging-x86_64/PKGBUILD (from rev 
372267, haskell-yesod-form/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-17 08:15:04 UTC (rev 372268)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-form
+pkgname=haskell-yesod-form
+pkgver=1.6.2
+pkgrel=18
+pkgdesc="Form handling support for Yesod Web Framework"
+url="http://www.yesodweb.com/";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-blaze-builder' 'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-byteable' 'haskell-data-default' 
'haskell-email-validate'
+ 'haskell-network-uri' 'haskell-persistent' 'haskell-resourcet' 
'haskell-shakespeare'
+ 'haskell-wai' 'haskell-xss-sanitize' 'haskell-yesod-core' 
'haskell-yesod-persistent')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('2859cdecd06a60db5ada2acbf2fcfef2157068a3193d92870a7bf59d815f63b80bd2c9440dd7e305551372420b757040be9d3bffa1285a23c4b67f2fef34fd97')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in imagemagick/repos/extra-x86_64 (4 files)

2018-08-17 Thread Antonio Rojas via arch-commits
Date: Friday, August 17, 2018 @ 08:15:18
  Author: arojas
Revision: 331627

archrelease: copy trunk to extra-x86_64

Added:
  imagemagick/repos/extra-x86_64/PKGBUILD
(from rev 331626, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/extra-x86_64/arch-fonts.diff
(from rev 331626, imagemagick/trunk/arch-fonts.diff)
Deleted:
  imagemagick/repos/extra-x86_64/PKGBUILD
  imagemagick/repos/extra-x86_64/arch-fonts.diff

-+
 PKGBUILD|  268 +++---
 arch-fonts.diff |  214 +--
 2 files changed, 241 insertions(+), 241 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-17 08:14:47 UTC (rev 331626)
+++ PKGBUILD2018-08-17 08:15:18 UTC (rev 331627)
@@ -1,134 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgbase=imagemagick
-pkgname=(libmagick imagemagick imagemagick-doc)
-pkgver=7.0.8.8
-pkgrel=2
-pkgdesc="An image viewing/manipulation program"
-url="https://www.imagemagick.org/";
-arch=(x86_64)
-license=(custom)
-depends=(libltdl lcms2 fontconfig libxext liblqr libraqm libpng libxml2)
-makedepends=(ghostscript openexr libwmf librsvg libxml2 openjpeg2 libraw 
opencl-headers libwebp
- chrpath ocl-icd glu ghostpcl ghostxps libheif)
-checkdepends=(gsfonts ttf-dejavu)
-_relname=ImageMagick-${pkgver%%.*}
-_tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
-source=(https://www.imagemagick.org/download/releases/$_tarname.tar.xz{,.asc}
-arch-fonts.diff)
-sha256sums=('148b9f3f9c8ab9898aa97f89dfc17bda9a5bc00674d62562057e84e3d03f'
-'SKIP'
-'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
-validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae
-
-shopt -s extglob
-
-prepare() {
-  mkdir -p binpkg/usr/lib/pkgconfig {binpkg,docpkg}/usr/share
-
-  cd $_tarname
-
-  # Fix up typemaps to match our packages, where possible
-  patch -Np1 -i ../arch-fonts.diff
-
-  # Don't run auto(re)conf; assumes use of git
-}
-
-build() {
-  cd $_tarname
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---with-dejavu-font-dir=/usr/share/fonts/TTF \
---with-gs-font-dir=/usr/share/fonts/gsfonts \
-PSDelegate=/usr/bin/gs \
-XPSDelegate=/usr/bin/gxps \
-PCLDelegate=/usr/bin/gpcl6 \
---enable-hdri \
---enable-opencl \
---with-gslib \
---with-lqr \
---with-modules \
---with-openexr \
---with-openjp2 \
---with-perl \
---with-perl-options=INSTALLDIRS=vendor \
---with-rsvg \
---with-webp \
---with-wmf \
---with-xml \
---without-autotrace \
---without-djvu \
---without-dps \
---without-fftw \
---without-fpx \
---without-gcc-arch \
---without-gvc \
---without-jbig
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() (
-  cd $_tarname
-  ulimit -n 4096
-  make check
-)
-
-package_libmagick() {
-  pkgdesc+=" (library)"
-  optdepends=('ghostscript: PS/PDF support'
-  'libheif: HEIF support'
-  'libraw: DNG support'
-  'librsvg: SVG support'
-  'libwebp: WEBP support'
-  'libwmf: WMF support'
-  'libxml2: Magick Scripting Language'
-  'ocl-icd: OpenCL support'
-  'openexr: OpenEXR support'
-  'openjpeg2: JPEG2000 support'
-  'pango: Text rendering')
-  
backup=(etc/$_relname/{coder,colors,delegates,log,magic,mime,policy,quantization-table,thresholds,type,type-{dejavu,ghostscript}}.xml)
-  options=('!emptydirs' libtool)
-
-  cd $_tarname
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/etc/$_relname/type-{apple,urw-base35,windows}.xml
-  rm "$pkgdir"/usr/lib/*.la
-
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
-
-# Split 'imagemagick'
-  cd ../binpkg
-  mv "$pkgdir/usr/bin" usr/
-  mv "$pkgdir/usr/lib/perl5" usr/lib/
-  mv "$pkgdir/usr/share/man" usr/share/
-
-# Split docs
-  mv "$pkgdir/usr/share/doc" "$srcdir/docpkg/usr/share/"
-}
-
-package_imagemagick() {
-  depends=("libmagick=$pkgver-$pkgrel")
-  optdepends=('imagemagick-doc: manual and API docs')
-  options=('!emptydirs')
-
-  mv binpkg/* "$pkgdir"
-
-  find "$pkgdir/usr/lib/perl5" -name '*.so' -exec chrpath -d {} +
-
-  cd $_tarname
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
-}
-
-package_imagemagick-doc() {
-  pkgdesc+=" (manual and API docs)"
-  depends=()
-
-  mv docpkg/* "$pkgdir"
-
-  cd $_tarname
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
-}

Copied: imagemagick/repos/extra-x86_64/PKGBUILD (from rev 331626, 
imagemagick/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-17 08:15:18 UTC (rev 331627)
@@ -0,0 +1,134 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgbase=imag

  1   2   3   4   5   6   7   >