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

2019-05-22 Thread Levente Polyak via arch-commits
Date: Wednesday, May 22, 2019 @ 21:44:08
  Author: anthraxx
Revision: 468748

archrelease: copy trunk to community-any

Added:
  catch2/repos/community-any/PKGBUILD
(from rev 468747, catch2/trunk/PKGBUILD)
Deleted:
  catch2/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-22 21:44:04 UTC (rev 468747)
+++ PKGBUILD2019-05-22 21:44:08 UTC (rev 468748)
@@ -1,42 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-# Maintainer: Levente Polyak 
-# Contributor: Bart Verhagen 
-
-pkgname=catch2
-pkgver=2.7.1
-pkgrel=1
-pkgdesc="Modern, C++-native, header-only, test framework for unit-tests, TDD 
and BDD"
-arch=('any')
-url="https://github.com/catchorg/catch2";
-license=('Boost')
-makedepends=('cmake' 'python') # python seems to be necessary for building 
tests (FS#60273)
-source=("https://github.com/catchorg/Catch2/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz";)
-sha256sums=('04b303517284572c277597004a33c3f8c02a4d12ba73d5a4cb73b4a369dfef0b')
-
-build() {
-  cd Catch2-$pkgver
-
-  mkdir -p build
-  cd build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCATCH_USE_VALGRIND=OFF \
--DCATCH_BUILD_EXAMPLES=OFF \
--DCATCH_ENABLE_COVERAGE=OFF \
--DCATCH_ENABLE_WERROR=OFF \
--DBUILD_TESTING=ON
-  make
-}
-
-check() {
-  cd Catch2-$pkgver/build
-  make test
-}
-
-package() {
-  cd Catch2-$pkgver/build
-  make DESTDIR="$pkgdir" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: catch2/repos/community-any/PKGBUILD (from rev 468747, 
catch2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-22 21:44:08 UTC (rev 468748)
@@ -0,0 +1,42 @@
+# Maintainer: Baptiste Jonglez 
+# Maintainer: Levente Polyak 
+# Contributor: Bart Verhagen 
+
+pkgname=catch2
+pkgver=2.7.2
+pkgrel=1
+pkgdesc="Modern, C++-native, header-only, test framework for unit-tests, TDD 
and BDD"
+arch=('any')
+url="https://github.com/catchorg/catch2";
+license=('Boost')
+makedepends=('cmake' 'python') # python seems to be necessary for building 
tests (FS#60273)
+source=("https://github.com/catchorg/Catch2/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha256sums=('9f4116da13d8402b5145f95ab91ae0173cd27b804152d3bb2d4f9b6e64852af7')
+
+build() {
+  cd Catch2-$pkgver
+
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCATCH_USE_VALGRIND=OFF \
+-DCATCH_BUILD_EXAMPLES=OFF \
+-DCATCH_ENABLE_COVERAGE=OFF \
+-DCATCH_ENABLE_WERROR=OFF \
+-DBUILD_TESTING=ON
+  make
+}
+
+check() {
+  cd Catch2-$pkgver/build
+  make test
+}
+
+package() {
+  cd Catch2-$pkgver/build
+  make DESTDIR="$pkgdir" install
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in libseccomp/repos (extra-x86_64 extra-x86_64/PKGBUILD)

2019-05-22 Thread Levente Polyak via arch-commits
Date: Wednesday, May 22, 2019 @ 21:43:18
  Author: anthraxx
Revision: 353880

archrelease: copy trunk to extra-x86_64

Added:
  libseccomp/repos/extra-x86_64/
  libseccomp/repos/extra-x86_64/PKGBUILD
(from rev 353879, libseccomp/trunk/PKGBUILD)

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

Copied: libseccomp/repos/extra-x86_64/PKGBUILD (from rev 353879, 
libseccomp/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2019-05-22 21:43:18 UTC (rev 353880)
@@ -0,0 +1,38 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Tobias Powalowski 
+# Contributor: Daniel Micay 
+# Contributor: Patryk Kowalczyk < patryk at kowalczyk dot ws>
+
+pkgname=libseccomp
+pkgver=2.4.1
+pkgrel=1
+pkgdesc='Enhanced seccomp library'
+arch=('x86_64')
+license=('LGPL2.1')
+url="https://github.com/seccomp/libseccomp";
+depends=('glibc')
+checkdepends=('valgrind')
+provides=('libseccomp.so')
+source=(https://github.com/seccomp/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz{,.asc})
+sha256sums=('1ca3735249af66a1b2f762fe6e710fcc294ad7185f1cc961e5bd83f9988006e8'
+'SKIP')
+validpgpkeys=('7100AADFAE6E6E940D2E0AD655E45A5AE8CA7C8A') # Paul Moore 

+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 CHANGELOG README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-05-22 Thread Levente Polyak via arch-commits
Date: Wednesday, May 22, 2019 @ 21:43:15
  Author: anthraxx
Revision: 353879

upgpkg: libseccomp 2.4.1-1

Modified:
  libseccomp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:05:05 UTC (rev 353878)
+++ PKGBUILD2019-05-22 21:43:15 UTC (rev 353879)
@@ -4,7 +4,7 @@
 # Contributor: Patryk Kowalczyk < patryk at kowalczyk dot ws>
 
 pkgname=libseccomp
-pkgver=2.4.0
+pkgver=2.4.1
 pkgrel=1
 pkgdesc='Enhanced seccomp library'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 checkdepends=('valgrind')
 provides=('libseccomp.so')
 
source=(https://github.com/seccomp/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz{,.asc})
-sha256sums=('2e74c7e8b54b340ad5d472e59286c6758e1e1e96c6b43c3dbdc8ddafbf0e525d'
+sha256sums=('1ca3735249af66a1b2f762fe6e710fcc294ad7185f1cc961e5bd83f9988006e8'
 'SKIP')
 validpgpkeys=('7100AADFAE6E6E940D2E0AD655E45A5AE8CA7C8A') # Paul Moore 

 


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

2019-05-22 Thread Levente Polyak via arch-commits
Date: Wednesday, May 22, 2019 @ 21:40:39
  Author: anthraxx
Revision: 468745

upgpkg: impacket 0.9.19-1

Modified:
  impacket/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:39:28 UTC (rev 468744)
+++ PKGBUILD2019-05-22 21:40:39 UTC (rev 468745)
@@ -3,7 +3,7 @@
 # Contributor: Paolo Giangrandi 
 
 pkgname=impacket
-pkgver=0.9.18
+pkgver=0.9.19
 pkgrel=1
 pkgdesc='Collection of classes for working with network protocols'
 url='https://github.com/CoreSecurity/impacket'
@@ -12,7 +12,7 @@
 depends=('python2-crypto' 'python2-pyasn1' 'python2-pcapy' 'python2-pyopenssl' 
'python2-six' 'python2-ldap3' 'python2-flask')
 checkdepends=('python2-pytest' 'python2-pytest-runner')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/CoreSecurity/impacket/archive/impacket_${pkgver//./_}.tar.gz)
-sha512sums=('c8ed7b45c2abbf97f722624bb28f3c9040dd15ec4b53b7128851a96f716463d7a8453cc6b9af80cd7b5693a3d868cca6c10304c90f06030a87a273a6dda57873')
+sha512sums=('92866065e8d30fc0c586cbb073836cbdaa9e685b386588570f74d1f59aa8e6182b67b1ba11d77465a52063baa8f0da76080030bfc71ce2d67dc3bb03abe3e352')
 
 prepare() {
   cd ${pkgname}-${pkgname}_${pkgver//./_}


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

2019-05-22 Thread Levente Polyak via arch-commits
Date: Wednesday, May 22, 2019 @ 21:40:43
  Author: anthraxx
Revision: 468746

archrelease: copy trunk to community-any

Added:
  impacket/repos/community-any/PKGBUILD
(from rev 468745, impacket/trunk/PKGBUILD)
Deleted:
  impacket/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-22 21:40:39 UTC (rev 468745)
+++ PKGBUILD2019-05-22 21:40:43 UTC (rev 468746)
@@ -1,43 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Sirat18 
-# Contributor: Paolo Giangrandi 
-
-pkgname=impacket
-pkgver=0.9.18
-pkgrel=1
-pkgdesc='Collection of classes for working with network protocols'
-url='https://github.com/CoreSecurity/impacket'
-arch=('any')
-license=('Apache')
-depends=('python2-crypto' 'python2-pyasn1' 'python2-pcapy' 'python2-pyopenssl' 
'python2-six' 'python2-ldap3' 'python2-flask')
-checkdepends=('python2-pytest' 'python2-pytest-runner')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/CoreSecurity/impacket/archive/impacket_${pkgver//./_}.tar.gz)
-sha512sums=('c8ed7b45c2abbf97f722624bb28f3c9040dd15ec4b53b7128851a96f716463d7a8453cc6b9af80cd7b5693a3d868cca6c10304c90f06030a87a273a6dda57873')
-
-prepare() {
-  cd ${pkgname}-${pkgname}_${pkgver//./_}
-  find . -type f -exec sed -r 's|(#!/usr/bin/(env )?python)$|\12|' -i '{}' \;
-}
-
-package() {
-  cd ${pkgname}-${pkgname}_${pkgver//./_}
-  python2 setup.py build
-}
-
-check() {
-  cd ${pkgname}-${pkgname}_${pkgver//./_}
-  python2 setup.py test
-  PYTHONPATH="./impacket:${PYTHONPATH}" \
-PYTHONDONTWRITEBYTECODE=1 \
-py.test2 tests/ImpactPacket
-}
-
-package() {
-  cd ${pkgname}-${pkgname}_${pkgver//./_}
-  python2 setup.py install -O1 --root="${pkgdir}"
-  install -Dm 644 ChangeLog -t "${pkgdir}/usr/share/doc/${pkgname}"
-  local PYTHONVERSION="$(python2 -c 'import sys; 
print("{}.{}".format(sys.version_info.major, sys.version_info.minor))')"
-  ln -s "/usr/lib/python${PYTHONVERSION}/site-packages/impacket/examples" 
"${pkgdir}/usr/share/doc/${pkgname}/examples"
-}
-
-# vim: ts=2 sw=2 et:

Copied: impacket/repos/community-any/PKGBUILD (from rev 468745, 
impacket/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-22 21:40:43 UTC (rev 468746)
@@ -0,0 +1,43 @@
+# Maintainer: Levente Polyak 
+# Contributor: Sirat18 
+# Contributor: Paolo Giangrandi 
+
+pkgname=impacket
+pkgver=0.9.19
+pkgrel=1
+pkgdesc='Collection of classes for working with network protocols'
+url='https://github.com/CoreSecurity/impacket'
+arch=('any')
+license=('Apache')
+depends=('python2-crypto' 'python2-pyasn1' 'python2-pcapy' 'python2-pyopenssl' 
'python2-six' 'python2-ldap3' 'python2-flask')
+checkdepends=('python2-pytest' 'python2-pytest-runner')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/CoreSecurity/impacket/archive/impacket_${pkgver//./_}.tar.gz)
+sha512sums=('92866065e8d30fc0c586cbb073836cbdaa9e685b386588570f74d1f59aa8e6182b67b1ba11d77465a52063baa8f0da76080030bfc71ce2d67dc3bb03abe3e352')
+
+prepare() {
+  cd ${pkgname}-${pkgname}_${pkgver//./_}
+  find . -type f -exec sed -r 's|(#!/usr/bin/(env )?python)$|\12|' -i '{}' \;
+}
+
+package() {
+  cd ${pkgname}-${pkgname}_${pkgver//./_}
+  python2 setup.py build
+}
+
+check() {
+  cd ${pkgname}-${pkgname}_${pkgver//./_}
+  python2 setup.py test
+  PYTHONPATH="./impacket:${PYTHONPATH}" \
+PYTHONDONTWRITEBYTECODE=1 \
+py.test2 tests/ImpactPacket
+}
+
+package() {
+  cd ${pkgname}-${pkgname}_${pkgver//./_}
+  python2 setup.py install -O1 --root="${pkgdir}"
+  install -Dm 644 ChangeLog -t "${pkgdir}/usr/share/doc/${pkgname}"
+  local PYTHONVERSION="$(python2 -c 'import sys; 
print("{}.{}".format(sys.version_info.major, sys.version_info.minor))')"
+  ln -s "/usr/lib/python${PYTHONVERSION}/site-packages/impacket/examples" 
"${pkgdir}/usr/share/doc/${pkgname}/examples"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:39:18
  Author: felixonmars
Revision: 468743

upgpkg: cabal-install 2.4.0.0-86

rebuild with tasty-quickcheck 0.10.1

Modified:
  cabal-install/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:38:50 UTC (rev 468742)
+++ PKGBUILD2019-05-22 21:39:18 UTC (rev 468743)
@@ -5,7 +5,7 @@
 
 pkgname=cabal-install
 pkgver=2.4.0.0
-pkgrel=85
+pkgrel=86
 pkgdesc="The command-line interface for Cabal and Hackage."
 url="https://hackage.haskell.org/package/cabal-install";
 license=('BSD')


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:39:28
  Author: felixonmars
Revision: 468744

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 468743, cabal-install/trunk/PKGBUILD)

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

Copied: cabal-install/repos/community-staging-x86_64/PKGBUILD (from rev 468743, 
cabal-install/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 21:39:28 UTC (rev 468744)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Arch Haskell Team 
+
+pkgname=cabal-install
+pkgver=2.4.0.0
+pkgrel=86
+pkgdesc="The command-line interface for Cabal and Hackage."
+url="https://hackage.haskell.org/package/cabal-install";
+license=('BSD')
+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' 'haskell-zip-archive')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/package/cabal-install-${pkgver}/cabal-install-${pkgver}.tar.gz";)
+sha512sums=('caf49ec35d5665164b76db3a6219c0409243fb80fd7a740a91933732fbb26fc3efef88ddc3d769a76d0f76811ea83a6a7effdab5ad8264da808d4469c9faf125')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i -e 's/< *0.4/<1/' -e 's/< *2.8/<4/' $pkgname.cabal
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla \
+--docdir="/usr/share/doc/${pkgname}"
+  runhaskell Setup build
+}
+
+package() {
+  cd $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 cjdns/trunk (PKGBUILD)

2019-05-22 Thread Levente Polyak via arch-commits
Date: Wednesday, May 22, 2019 @ 21:38:45
  Author: anthraxx
Revision: 468741

upgpkg: cjdns 20.3-1

Modified:
  cjdns/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:36:53 UTC (rev 468740)
+++ PKGBUILD2019-05-22 21:38:45 UTC (rev 468741)
@@ -5,7 +5,7 @@
 # Contributor: Xyne
 
 pkgname=cjdns
-pkgver=20.2
+pkgver=20.3
 pkgrel=1
 pkgdesc='Routing engine designed for security, scalability, speed and ease of 
use'
 url='https://github.com/cjdelisle/cjdns'
@@ -16,8 +16,8 @@
 makedepends=('nodejs' 'python2')
 install=cjdns.install
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/cjdelisle/${pkgname}/archive/cjdns-v${pkgver}.tar.gz)
-sha256sums=('b114f4e89c971d2c288e3d8265396248a37134895b0e0468bf55030de84b4d2a')
-sha512sums=('31edd3ff7e62bfe2ab555da1e34d4b900829180d9558eecdd93a3d726126067c8094419683f047abdcabc444e3b2ae933a68ca4fa1b535731f977e07983b7d39')
+sha256sums=('e8ca2cc5d5ba71e39a702299106dd2a965005703284cec91b3e94691cdce6f65')
+sha512sums=('ae38b33b47a567893e63bc925c91d07b5554f0c7147f90429cac41cfe35a429f507e3adc9463175a1714140169eaae370ab8c8255e82ddd9b2b32f09adae1cea')
 
 build() {
   cd ${pkgname}-${pkgname}-v${pkgver}


[arch-commits] Commit in cjdns/repos/community-x86_64 (4 files)

2019-05-22 Thread Levente Polyak via arch-commits
Date: Wednesday, May 22, 2019 @ 21:38:50
  Author: anthraxx
Revision: 468742

archrelease: copy trunk to community-x86_64

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

---+
 PKGBUILD  |  100 
 cjdns.install |   52 ++---
 2 files changed, 76 insertions(+), 76 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-22 21:38:45 UTC (rev 468741)
+++ PKGBUILD2019-05-22 21:38:50 UTC (rev 468742)
@@ -1,50 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Kevin MacMartin 
-# Contributor: openfbt
-# Contributor: Werecat
-# Contributor: Xyne
-
-pkgname=cjdns
-pkgver=20.2
-pkgrel=1
-pkgdesc='Routing engine designed for security, scalability, speed and ease of 
use'
-url='https://github.com/cjdelisle/cjdns'
-arch=('x86_64')
-license=('GPL3')
-depends=('glibc' 'sh')
-optdepends=('nodejs: optional utilities support')
-makedepends=('nodejs' 'python2')
-install=cjdns.install
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/cjdelisle/${pkgname}/archive/cjdns-v${pkgver}.tar.gz)
-sha256sums=('b114f4e89c971d2c288e3d8265396248a37134895b0e0468bf55030de84b4d2a')
-sha512sums=('31edd3ff7e62bfe2ab555da1e34d4b900829180d9558eecdd93a3d726126067c8094419683f047abdcabc444e3b2ae933a68ca4fa1b535731f977e07983b7d39')
-
-build() {
-  cd ${pkgname}-${pkgname}-v${pkgver}
-  # Pretend to be cross compiling so -march=native is not set.
-  CROSS="true" CJDNS_RELEASE_VERSION="${pkgver}" \
-node ./node_build/make.js
-}
-
-package() {
-  cd ${pkgname}-${pkgname}-v${pkgver}
-  install -Dm 755 cjdroute -t "${pkgdir}/usr/bin"
-  install -Dm 644 contrib/systemd/{cjdns,cjdns-resume}.service \
--t "${pkgdir}/usr/lib/systemd/system"
-  install -Dm 644 doc/man/cjdroute.conf.5 -t "${pkgdir}/usr/share/man/man5"
-  install -Dm 644 -t "${pkgdir}/usr/share/doc/${pkgname}" \
-README.md \
-doc/admin-api.md \
-doc/configure.md \
-doc/djc_layer_model.md \
-doc/nat-gateway.md \
-doc/network-services.md \
-doc/non-root-user.md \
-doc/security_specification.md \
-doc/shorewall_and_vpn_gateway_howto.md \
-doc/tunnel.md
-  cp -a tools "${pkgdir}/usr/lib/${pkgname}"
-  cp -a node_modules "${pkgdir}/usr/lib/${pkgname}/node_modules"
-}
-
-# vim: ts=2 sw=2 et:

Copied: cjdns/repos/community-x86_64/PKGBUILD (from rev 468741, 
cjdns/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-22 21:38:50 UTC (rev 468742)
@@ -0,0 +1,50 @@
+# Maintainer: Levente Polyak 
+# Contributor: Kevin MacMartin 
+# Contributor: openfbt
+# Contributor: Werecat
+# Contributor: Xyne
+
+pkgname=cjdns
+pkgver=20.3
+pkgrel=1
+pkgdesc='Routing engine designed for security, scalability, speed and ease of 
use'
+url='https://github.com/cjdelisle/cjdns'
+arch=('x86_64')
+license=('GPL3')
+depends=('glibc' 'sh')
+optdepends=('nodejs: optional utilities support')
+makedepends=('nodejs' 'python2')
+install=cjdns.install
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/cjdelisle/${pkgname}/archive/cjdns-v${pkgver}.tar.gz)
+sha256sums=('e8ca2cc5d5ba71e39a702299106dd2a965005703284cec91b3e94691cdce6f65')
+sha512sums=('ae38b33b47a567893e63bc925c91d07b5554f0c7147f90429cac41cfe35a429f507e3adc9463175a1714140169eaae370ab8c8255e82ddd9b2b32f09adae1cea')
+
+build() {
+  cd ${pkgname}-${pkgname}-v${pkgver}
+  # Pretend to be cross compiling so -march=native is not set.
+  CROSS="true" CJDNS_RELEASE_VERSION="${pkgver}" \
+node ./node_build/make.js
+}
+
+package() {
+  cd ${pkgname}-${pkgname}-v${pkgver}
+  install -Dm 755 cjdroute -t "${pkgdir}/usr/bin"
+  install -Dm 644 contrib/systemd/{cjdns,cjdns-resume}.service \
+-t "${pkgdir}/usr/lib/systemd/system"
+  install -Dm 644 doc/man/cjdroute.conf.5 -t "${pkgdir}/usr/share/man/man5"
+  install -Dm 644 -t "${pkgdir}/usr/share/doc/${pkgname}" \
+README.md \
+doc/admin-api.md \
+doc/configure.md \
+doc/djc_layer_model.md \
+doc/nat-gateway.md \
+doc/network-services.md \
+doc/non-root-user.md \
+doc/security_specification.md \
+doc/shorewall_and_vpn_gateway_howto.md \
+doc/tunnel.md
+  cp -a tools "${pkgdir}/usr/lib/${pkgname}"
+  cp -a node_modules "${pkgdir}/usr/lib/${pkgname}/node_modules"
+}
+
+# vim: ts=2 sw=2 et:

Deleted: cjdns.install
===
--- cjdns.install   2019-05-22 21:38:45 UTC (rev 468741)
+++ cjdns.install   2019-05-22 21:38:50 UTC (rev 468742)
@@ -1,26 +0,0 @@
-post_install() {
-  local config_file="cjdroute.conf"
-  local config_path="/etc/${config_file}"
-
-  if [[ ! -e "${co

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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:36:41
  Author: felixonmars
Revision: 468739

upgpkg: dart 2.3.1-1

Modified:
  dart/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:36:03 UTC (rev 468738)
+++ PKGBUILD2019-05-22 21:36:41 UTC (rev 468739)
@@ -6,7 +6,7 @@
 # Contributor: Julien Nicoulaud 
 
 pkgname=dart
-pkgver=2.3.0
+pkgver=2.3.1
 pkgrel=1
 pkgdesc='The dart programming language SDK'
 arch=('x86_64')
@@ -15,7 +15,7 @@
 makedepends=('setconf')
 options=('!strip')
 
source_x86_64+=("$pkgname-$pkgver-64.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip";)
-sha512sums_x86_64=('71e6d211a9a32d1566c3f098e55fc2fe8db9e5574cbccd4b41d3a45ec4bfccc16ad785c27438814a6ac54b80d223bcee8235bfea78b227ab49ba2a9ca0a2ca1e')
+sha512sums_x86_64=('9115883a89e015e43eb2a3fd24b547a3667f79aee62c8c649107818aa7241a0eb26b9f87c0b07dd7528238f68ba5bd6063719e0780d847e45d5ca67e1600fe5c')
 
 prepare() {
   # Fix permissions


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:36:53
  Author: felixonmars
Revision: 468740

archrelease: copy trunk to community-x86_64

Added:
  dart/repos/community-x86_64/PKGBUILD
(from rev 468739, dart/trunk/PKGBUILD)
Deleted:
  dart/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  122 ++---
 1 file changed, 61 insertions(+), 61 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-22 21:36:41 UTC (rev 468739)
+++ PKGBUILD2019-05-22 21:36:53 UTC (rev 468740)
@@ -1,61 +0,0 @@
-# Maintainer: Alexander Rødseth 
-# Maintainer: Felix Yan 
-# Contributor: T. Jameson Little 
-# Contributor: Usagi Ito 
-# Contributor: siasia 
-# Contributor: Julien Nicoulaud 
-
-pkgname=dart
-pkgver=2.3.0
-pkgrel=1
-pkgdesc='The dart programming language SDK'
-arch=('x86_64')
-url='http://www.dartlang.org/'
-license=('BSD')
-makedepends=('setconf')
-options=('!strip')
-source_x86_64+=("$pkgname-$pkgver-64.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip";)
-sha512sums_x86_64=('71e6d211a9a32d1566c3f098e55fc2fe8db9e5574cbccd4b41d3a45ec4bfccc16ad785c27438814a6ac54b80d223bcee8235bfea78b227ab49ba2a9ca0a2ca1e')
-
-prepare() {
-  # Fix permissions
-  find "$pkgname-sdk" -type d -exec chmod 0755 '{}' + \
--or -type f -exec chmod 0644 '{}' +
-  chmod +x "$pkgname-sdk/bin/"*
-
-  cd "$pkgname-sdk/bin"
-
-  # Configure paths
-  for _f in dart2js dartanalyzer pub dartfmt dartdevc dartdoc; do
-setconf $_f BIN_DIR "/opt/$pkgname-sdk/bin"
-setconf $_f PROG_NAME "/opt/$pkgname-sdk/bin/$_f"
-setconf $_f SDK_DIR "/opt/$pkgname-sdk/"
-  done
-
-  # Extract license (AUTHORS and LICENSE files are missing)
-  head -n5 "../include/dart_api.h" > ../../LICENSE
-}
-
-package() {
-  # Create directories
-  install -d "$pkgdir"{"/opt/$pkgname-sdk",/usr/{bin,"share/doc/$pkgname-sdk"}}
-
-  # Package the files
-  cp -a "$pkgname-sdk/"* "$pkgdir/opt/$pkgname-sdk/"
-
-  # Set up symbolic links for the executables
-  for f in dart dart2js dartanalyzer pub dartfmt dartdevc dartdoc; do
-ln -s "/opt/$pkgname-sdk/bin/$f" "$pkgdir/usr/bin/$f"
-  done
-
-  # Package samples and documentation
-  for f in samples about.html about_files; do
-echo mv "$pkgdir/opt/$pkgname-sdk/$f" "$pkgdir/usr/share/doc/$pkgname/"
-  done
-
-  # BSD License
-  install -Dm644 LICENSE \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dart/repos/community-x86_64/PKGBUILD (from rev 468739, 
dart/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-22 21:36:53 UTC (rev 468740)
@@ -0,0 +1,61 @@
+# Maintainer: Alexander Rødseth 
+# Maintainer: Felix Yan 
+# Contributor: T. Jameson Little 
+# Contributor: Usagi Ito 
+# Contributor: siasia 
+# Contributor: Julien Nicoulaud 
+
+pkgname=dart
+pkgver=2.3.1
+pkgrel=1
+pkgdesc='The dart programming language SDK'
+arch=('x86_64')
+url='http://www.dartlang.org/'
+license=('BSD')
+makedepends=('setconf')
+options=('!strip')
+source_x86_64+=("$pkgname-$pkgver-64.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip";)
+sha512sums_x86_64=('9115883a89e015e43eb2a3fd24b547a3667f79aee62c8c649107818aa7241a0eb26b9f87c0b07dd7528238f68ba5bd6063719e0780d847e45d5ca67e1600fe5c')
+
+prepare() {
+  # Fix permissions
+  find "$pkgname-sdk" -type d -exec chmod 0755 '{}' + \
+-or -type f -exec chmod 0644 '{}' +
+  chmod +x "$pkgname-sdk/bin/"*
+
+  cd "$pkgname-sdk/bin"
+
+  # Configure paths
+  for _f in dart2js dartanalyzer pub dartfmt dartdevc dartdoc; do
+setconf $_f BIN_DIR "/opt/$pkgname-sdk/bin"
+setconf $_f PROG_NAME "/opt/$pkgname-sdk/bin/$_f"
+setconf $_f SDK_DIR "/opt/$pkgname-sdk/"
+  done
+
+  # Extract license (AUTHORS and LICENSE files are missing)
+  head -n5 "../include/dart_api.h" > ../../LICENSE
+}
+
+package() {
+  # Create directories
+  install -d "$pkgdir"{"/opt/$pkgname-sdk",/usr/{bin,"share/doc/$pkgname-sdk"}}
+
+  # Package the files
+  cp -a "$pkgname-sdk/"* "$pkgdir/opt/$pkgname-sdk/"
+
+  # Set up symbolic links for the executables
+  for f in dart dart2js dartanalyzer pub dartfmt dartdevc dartdoc; do
+ln -s "/opt/$pkgname-sdk/bin/$f" "$pkgdir/usr/bin/$f"
+  done
+
+  # Package samples and documentation
+  for f in samples about.html about_files; do
+echo mv "$pkgdir/opt/$pkgname-sdk/$f" "$pkgdir/usr/share/doc/$pkgname/"
+  done
+
+  # BSD License
+  install -Dm644 LICENSE \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:36:03
  Author: felixonmars
Revision: 468738

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 468737, haskell-http/trunk/PKGBUILD)

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

Copied: haskell-http/repos/community-staging-x86_64/PKGBUILD (from rev 468737, 
haskell-http/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 21:36:03 UTC (rev 468738)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=HTTP
+pkgname=haskell-http
+pkgver=4000.3.13
+pkgrel=30
+pkgdesc="A library for client-side HTTP"
+url="https://hackage.haskell.org/package/${_hkgname}";
+license=('BSD')
+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=('97eae7fce52f497a15ba2257358daa5c6c0f4d8f4343c39cfb596f13972b8bdeb3455e807a97b507e4a2ca7c90b9c6fa08b67d21ddace08805946a6142c0ec7a')
+
+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 haskell-http/trunk (PKGBUILD)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:35:53
  Author: felixonmars
Revision: 468737

upgpkg: haskell-http 4000.3.13-30

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-http/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:35:00 UTC (rev 468736)
+++ PKGBUILD2019-05-22 21:35:53 UTC (rev 468737)
@@ -4,7 +4,7 @@
 _hkgname=HTTP
 pkgname=haskell-http
 pkgver=4000.3.13
-pkgrel=29
+pkgrel=30
 pkgdesc="A library for client-side HTTP"
 url="https://hackage.haskell.org/package/${_hkgname}";
 license=('BSD')


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:35:00
  Author: felixonmars
Revision: 468736

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 468735, haskell-warp/trunk/PKGBUILD)

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

Copied: haskell-warp/repos/community-staging-x86_64/PKGBUILD (from rev 468735, 
haskell-warp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 21:35:00 UTC (rev 468736)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=warp
+pkgname=haskell-warp
+pkgver=3.2.27
+pkgrel=14
+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')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('34d66ba4dc7be03215ad22f6f47e5d7b1786227c416e49b2a97f5a252cfa0b3edfdf6a76390065c26dbfac728c837eecc57493055f28bc4137945343f8d435b0')
+
+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-warp/trunk (PKGBUILD)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:34:49
  Author: felixonmars
Revision: 468735

upgpkg: haskell-warp 3.2.27-14

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-warp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:33:25 UTC (rev 468734)
+++ PKGBUILD2019-05-22 21:34:49 UTC (rev 468735)
@@ -4,7 +4,7 @@
 _hkgname=warp
 pkgname=haskell-warp
 pkgver=3.2.27
-pkgrel=13
+pkgrel=14
 pkgdesc="A fast, light-weight web server for WAI applications."
 url="https://github.com/yesodweb/wai";
 license=("MIT")


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:33:25
  Author: felixonmars
Revision: 468734

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hspec-wai-json/repos/community-staging-x86_64/
  haskell-hspec-wai-json/repos/community-staging-x86_64/PKGBUILD
(from rev 468733, haskell-hspec-wai-json/trunk/PKGBUILD)

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

Copied: haskell-hspec-wai-json/repos/community-staging-x86_64/PKGBUILD (from 
rev 468733, haskell-hspec-wai-json/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 21:33:25 UTC (rev 468734)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hspec-wai-json
+pkgname=haskell-hspec-wai-json
+pkgver=0.9.2
+pkgrel=37
+pkgdesc="Testing JSON APIs with hspec-wai"
+url="https://github.com/hspec/hspec-wai";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-qq' 
'haskell-case-insensitive'
+ 'haskell-hspec-wai')
+makedepends=('ghc' 'haskell-hspec')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('244d94f9099199a32f0de0412b053ad0d968c88b725f476414707caf95caaaedc07d7d5a301fb4aeaf6586cef54effd93f8ca1cf053031219ca1e0a08bcfb0b7')
+
+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-hspec-wai-json/trunk (PKGBUILD)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:33:15
  Author: felixonmars
Revision: 468733

upgpkg: haskell-hspec-wai-json 0.9.2-37

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-hspec-wai-json/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:32:32 UTC (rev 468732)
+++ PKGBUILD2019-05-22 21:33:15 UTC (rev 468733)
@@ -4,7 +4,7 @@
 _hkgname=hspec-wai-json
 pkgname=haskell-hspec-wai-json
 pkgver=0.9.2
-pkgrel=36
+pkgrel=37
 pkgdesc="Testing JSON APIs with hspec-wai"
 url="https://github.com/hspec/hspec-wai";
 license=("MIT")


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:32:32
  Author: felixonmars
Revision: 468732

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hspec-wai/repos/community-staging-x86_64/PKGBUILD (from rev 
468731, haskell-hspec-wai/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 21:32:32 UTC (rev 468732)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hspec-wai
+pkgname=haskell-hspec-wai
+pkgver=0.9.2
+pkgrel=30
+pkgdesc="Experimental Hspec support for testing WAI applications"
+url="https://github.com/hspec/hspec-wai";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-base-compat' 
'haskell-case-insensitive'
+ 'haskell-hspec' 'haskell-hspec-core' 'haskell-hspec-expectations' 
'haskell-http-types'
+ 'haskell-wai' 'haskell-wai-extra')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('a3a6a24fc948d924f60f55da7d133446c57549f9967a47adafa8f8df057370472348f9413477a4f78f5068233a6b103396810e611161735ec75f87b6d9673edb')
+
+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-hspec-wai/trunk (PKGBUILD)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:32:22
  Author: felixonmars
Revision: 468731

upgpkg: haskell-hspec-wai 0.9.2-30

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-hspec-wai/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:32:03 UTC (rev 468730)
+++ PKGBUILD2019-05-22 21:32:22 UTC (rev 468731)
@@ -4,7 +4,7 @@
 _hkgname=hspec-wai
 pkgname=haskell-hspec-wai
 pkgver=0.9.2
-pkgrel=29
+pkgrel=30
 pkgdesc="Experimental Hspec support for testing WAI applications"
 url="https://github.com/hspec/hspec-wai";
 license=("MIT")


[arch-commits] Commit in lib32-lz4/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2019-05-22 Thread Levente Polyak via arch-commits
Date: Wednesday, May 22, 2019 @ 21:32:03
  Author: anthraxx
Revision: 468730

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-lz4/repos/multilib-x86_64/PKGBUILD
(from rev 468729, lib32-lz4/trunk/PKGBUILD)
Deleted:
  lib32-lz4/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-22 21:31:58 UTC (rev 468729)
+++ PKGBUILD2019-05-22 21:32:03 UTC (rev 468730)
@@ -1,54 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Sébastien Luttringer
-
-_pkgname=lz4
-pkgname=lib32-lz4
-_gitcommit=641b453d9db536ee020851bfcb1dc39f61006f0a
-pkgver=1.8.3
-pkgrel=1
-pkgdesc='Extremely fast compression algorithm (32-bit)'
-url='https://www.lz4.org/'
-arch=('x86_64')
-license=('GPL2')
-makedepends=('git')
-checkdepends=('diffutils')
-depends=('lz4' 'lib32-glibc')
-source=("git+https://github.com/lz4/lz4.git#commit=${_gitcommit}?signed";)
-sha512sums=('SKIP')
-validpgpkeys=('5DE3E0509C47EA3CF04A42D34AEE18F83AFDEB23') # GitHub (web-flow 
commit signing) 
-
-pkgver() {
-  cd ${_pkgname}
-  git describe --tags --always|sed 's/^v//;s/-/./g'
-}
-
-build() {
-  cd ${_pkgname}
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-  # do not use the main makefile, it calls sub make with -e
-  # exported CLFAGS by makepkg break the version. see FS#50071
-  make -C lib PREFIX=/usr
-  make -C programs PREFIX=/usr lz4 lz4c
-}
-
-check() {
-  rm -f passwd.lz4
-  ${_pkgname}/programs/lz4 /etc/passwd passwd.lz4
-  ${_pkgname}/programs/lz4 -d passwd.lz4 passwd
-  diff -q /etc/passwd passwd
-  rm passwd
-}
-
-package() {
-  cd ${_pkgname}
-  make install \
-PREFIX=/usr \
-LIBDIR=/usr/lib32 \
-PKGCONFIGDIR=/usr/lib32/pkgconfig \
-DESTDIR="${pkgdir}"
-  rm -rf "${pkgdir}"/usr/{share,include,bin}
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-lz4/repos/multilib-x86_64/PKGBUILD (from rev 468729, 
lib32-lz4/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-22 21:32:03 UTC (rev 468730)
@@ -0,0 +1,54 @@
+# Maintainer: Levente Polyak 
+# Contributor: Sébastien Luttringer
+
+_pkgname=lz4
+pkgname=lib32-lz4
+_gitcommit=398e36c756a3067de8e2b35dd380baef040dfe0d
+pkgver=1.9.1
+pkgrel=1
+pkgdesc='Extremely fast compression algorithm (32-bit)'
+url='https://www.lz4.org/'
+arch=('x86_64')
+license=('GPL2')
+makedepends=('git')
+checkdepends=('diffutils')
+depends=('lz4' 'lib32-glibc')
+source=("git+https://github.com/lz4/lz4.git#commit=${_gitcommit}?signed";)
+sha512sums=('SKIP')
+validpgpkeys=('5DE3E0509C47EA3CF04A42D34AEE18F83AFDEB23') # GitHub (web-flow 
commit signing) 
+
+pkgver() {
+  cd ${_pkgname}
+  git describe --tags --always|sed 's/^v//;s/-/./g'
+}
+
+build() {
+  cd ${_pkgname}
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+  # do not use the main makefile, it calls sub make with -e
+  # exported CLFAGS by makepkg break the version. see FS#50071
+  make -C lib PREFIX=/usr
+  make -C programs PREFIX=/usr lz4 lz4c
+}
+
+check() {
+  rm -f passwd.lz4
+  ${_pkgname}/programs/lz4 /etc/passwd passwd.lz4
+  ${_pkgname}/programs/lz4 -d passwd.lz4 passwd
+  diff -q /etc/passwd passwd
+  rm passwd
+}
+
+package() {
+  cd ${_pkgname}
+  make install \
+PREFIX=/usr \
+LIBDIR=/usr/lib32 \
+PKGCONFIGDIR=/usr/lib32/pkgconfig \
+DESTDIR="${pkgdir}"
+  rm -rf "${pkgdir}"/usr/{share,include,bin}
+}
+
+# vim: ts=2 sw=2 et:


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

2019-05-22 Thread Levente Polyak via arch-commits
Date: Wednesday, May 22, 2019 @ 21:31:58
  Author: anthraxx
Revision: 468729

upgpkg: lib32-lz4 1.9.1-1

Modified:
  lib32-lz4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:31:38 UTC (rev 468728)
+++ PKGBUILD2019-05-22 21:31:58 UTC (rev 468729)
@@ -3,8 +3,8 @@
 
 _pkgname=lz4
 pkgname=lib32-lz4
-_gitcommit=641b453d9db536ee020851bfcb1dc39f61006f0a
-pkgver=1.8.3
+_gitcommit=398e36c756a3067de8e2b35dd380baef040dfe0d
+pkgver=1.9.1
 pkgrel=1
 pkgdesc='Extremely fast compression algorithm (32-bit)'
 url='https://www.lz4.org/'


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:31:38
  Author: felixonmars
Revision: 468728

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-wai-extra/repos/community-staging-x86_64/PKGBUILD (from rev 
468727, haskell-wai-extra/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 21:31:38 UTC (rev 468728)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-extra
+pkgname=haskell-wai-extra
+pkgver=3.0.26
+pkgrel=5
+pkgdesc="Provides some basic WAI handlers and middleware."
+url="https://github.com/yesodweb/wai";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 
'haskell-base64-bytestring'
+ 'haskell-case-insensitive' 'haskell-cookie' 
'haskell-data-default-class'
+ 'haskell-fast-logger' 'haskell-http-types' 'haskell-http2' 
'haskell-iproute'
+ 'haskell-network' 'haskell-old-locale' 'haskell-resourcet' 
'haskell-streaming-commons'
+ 'haskell-unix-compat' 'haskell-vault' 'haskell-void' 'haskell-wai'
+ 'haskell-wai-logger' 'haskell-word8' 'haskell-zlib')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hunit')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('c5534b8f67fd33c1cbe15581ee8622797f626499709a588f34d324e233a7adc45c264c69ad5214427a0b8e77fc78f1571f8501cf25bacf10fbc43593079d583f')
+
+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-build-example
+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-wai-extra/trunk (PKGBUILD)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:31:27
  Author: felixonmars
Revision: 468727

upgpkg: haskell-wai-extra 3.0.26-5

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-wai-extra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:30:28 UTC (rev 468726)
+++ PKGBUILD2019-05-22 21:31:27 UTC (rev 468727)
@@ -4,7 +4,7 @@
 _hkgname=wai-extra
 pkgname=haskell-wai-extra
 pkgver=3.0.26
-pkgrel=4
+pkgrel=5
 pkgdesc="Provides some basic WAI handlers and middleware."
 url="https://github.com/yesodweb/wai";
 license=("MIT")


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:30:18
  Author: felixonmars
Revision: 468725

upgpkg: haskell-wai-logger 2.3.4-35

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-wai-logger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:29:39 UTC (rev 468724)
+++ PKGBUILD2019-05-22 21:30:18 UTC (rev 468725)
@@ -4,7 +4,7 @@
 _hkgname=wai-logger
 pkgname=haskell-wai-logger
 pkgver=2.3.4
-pkgrel=34
+pkgrel=35
 pkgdesc="A logging system for WAI"
 url="https://hackage.haskell.org/package/${_hkgname}";
 license=("BSD")


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:29:39
  Author: felixonmars
Revision: 468724

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-wai-cors/repos/community-staging-x86_64/PKGBUILD (from rev 
468723, haskell-wai-cors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 21:29:39 UTC (rev 468724)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-cors
+pkgname=haskell-wai-cors
+pkgver=0.2.6
+pkgrel=90
+pkgdesc="CORS for WAI"
+url="https://github.com/larskuhtz/wai-cors";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-attoparsec" "haskell-base-unicode-symbols" 
"haskell-case-insensitive"
+ "haskell-http-types" "haskell-wai")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('aa1454096e6243edd48cf52d2e9ad27f174fe934b2256c58bec84c6da2de899e523ff70af783e458fe5f95d51371d2111d8f979cc89a0ecbf646b23a74ae6617')
+
+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-wai-logger/repos (2 files)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:30:28
  Author: felixonmars
Revision: 468726

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-wai-logger/repos/community-staging-x86_64/PKGBUILD (from rev 
468725, haskell-wai-logger/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 21:30:28 UTC (rev 468726)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-logger
+pkgname=haskell-wai-logger
+pkgver=2.3.4
+pkgrel=35
+pkgdesc="A logging system for WAI"
+url="https://hackage.haskell.org/package/${_hkgname}";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-byteorder' 'haskell-fast-logger'
+ 'haskell-http-types' 'haskell-network' 'haskell-wai')
+makedepends=('ghc' 'haskell-cabal-doctest' 'haskell-doctest')
+checkdepends=('haskell-wai-extra')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('458c54db0a4c3d2f4ac165c3c5b392551e19624b099336dd63042210e72e195fa763b11e305753846307eac210d666501aea9408107f801e6663b4fb5995da27')
+
+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-wai-cors/trunk (PKGBUILD)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:29:29
  Author: felixonmars
Revision: 468723

upgpkg: haskell-wai-cors 0.2.6-90

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-wai-cors/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:28:56 UTC (rev 468722)
+++ PKGBUILD2019-05-22 21:29:29 UTC (rev 468723)
@@ -4,7 +4,7 @@
 _hkgname=wai-cors
 pkgname=haskell-wai-cors
 pkgver=0.2.6
-pkgrel=89
+pkgrel=90
 pkgdesc="CORS for WAI"
 url="https://github.com/larskuhtz/wai-cors";
 license=("MIT")


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:28:56
  Author: felixonmars
Revision: 468722

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-uri-bytestring/repos/community-staging-x86_64/
  haskell-uri-bytestring/repos/community-staging-x86_64/PKGBUILD
(from rev 468721, haskell-uri-bytestring/trunk/PKGBUILD)

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

Copied: haskell-uri-bytestring/repos/community-staging-x86_64/PKGBUILD (from 
rev 468721, haskell-uri-bytestring/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 21:28:56 UTC (rev 468722)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+
+_hkgname=uri-bytestring
+pkgname=haskell-uri-bytestring
+pkgver=0.3.2.1
+pkgrel=27
+pkgdesc="Haskell URI parsing as ByteStrings"
+url="https://github.com/Soostone/uri-bytestring";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-blaze-builder' 
'haskell-th-lift-instances')
+makedepends=('ghc' 'haskell-hunit' 'haskell-quickcheck' 'haskell-tasty' 
'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck' 'haskell-base-compat' 
'haskell-quickcheck-instances'
+ 'haskell-generics-sop')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('78c97321fad344502f6d144e763d1a5406c1d8cde7164470e9803b9d5e214d7aaea8430fc8a594d733ddc773cf59a8e050dd2a514e0d1e9eaeebf15f40fe74a8')
+
+prepare() {
+sed -e '/, semigroups/d' -i ${_hkgname}-${pkgver}/${_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 --disable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-lib-Werror
+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
+# https://github.com/Soostone/uri-bytestring/issues/50
+# 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-uri-bytestring/trunk (PKGBUILD)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:28:46
  Author: felixonmars
Revision: 468721

upgpkg: haskell-uri-bytestring 0.3.2.1-27

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-uri-bytestring/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:28:06 UTC (rev 468720)
+++ PKGBUILD2019-05-22 21:28:46 UTC (rev 468721)
@@ -3,7 +3,7 @@
 _hkgname=uri-bytestring
 pkgname=haskell-uri-bytestring
 pkgver=0.3.2.1
-pkgrel=26
+pkgrel=27
 pkgdesc="Haskell URI parsing as ByteStrings"
 url="https://github.com/Soostone/uri-bytestring";
 license=('BSD')


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:28:06
  Author: felixonmars
Revision: 468720

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 468719, haskell-haddock-library/trunk/PKGBUILD)

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

Copied: haskell-haddock-library/repos/community-staging-x86_64/PKGBUILD (from 
rev 468719, haskell-haddock-library/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 21:28:06 UTC (rev 468720)
@@ -0,0 +1,48 @@
+# Maintainer: Sergej Pupykin 
+
+_hkgname=haddock-library
+pkgname=haskell-haddock-library
+pkgver=1.7.0
+pkgrel=44
+pkgdesc="A documentation-generation tool for Haskell libraries"
+url="https://www.haskell.org/haddock/";
+license=("BSD")
+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=('ae4a3e2e02a866399623349c69b19738b371c574a72b2616f74c9b8fa2acdc04dfb20b7ef6cdd32709b474c0c99d27a49a810b7c58f68d8eb6bea7244323c30c')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e 's/>= 2.11/>= 2.12/' -e 's/< *2.6/<3/' $_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-haddock-library/trunk (PKGBUILD)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:27:55
  Author: felixonmars
Revision: 468719

upgpkg: haskell-haddock-library 1.7.0-44

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-haddock-library/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:26:55 UTC (rev 468718)
+++ PKGBUILD2019-05-22 21:27:55 UTC (rev 468719)
@@ -3,7 +3,7 @@
 _hkgname=haddock-library
 pkgname=haskell-haddock-library
 pkgver=1.7.0
-pkgrel=43
+pkgrel=44
 pkgdesc="A documentation-generation tool for Haskell libraries"
 url="https://www.haskell.org/haddock/";
 license=("BSD")


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:26:55
  Author: felixonmars
Revision: 468718

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-tree-diff/repos/community-staging-x86_64/
  haskell-tree-diff/repos/community-staging-x86_64/PKGBUILD
(from rev 468717, haskell-tree-diff/trunk/PKGBUILD)

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

Copied: haskell-tree-diff/repos/community-staging-x86_64/PKGBUILD (from rev 
468717, haskell-tree-diff/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 21:26:55 UTC (rev 468718)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=tree-diff
+pkgname=haskell-tree-diff
+pkgver=0.0.2.1
+pkgrel=7
+pkgdesc="Diffing of (expression) trees"
+url="https://github.com/phadej/tree-diff";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-base-compat' 'haskell-generics-sop' 'haskell-hashable' 
'haskell-memotrie'
+ 'haskell-parsers' 'haskell-quickcheck' 'haskell-scientific' 
'haskell-tagged'
+ 'haskell-unordered-containers' 'haskell-uuid-types' 'haskell-vector')
+makedepends=('ghc' 'haskell-trifecta' 'haskell-tasty' 'haskell-tasty-golden'
+ 'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('5dbfa198f28b54673d658d16dc5fdeb8d59717b2ecf27aa5a3c867dafd103618c11c27470699b232eec6f6a217b11b9b479ef5233b1f1d0b8e2cba4f968843f4')
+
+prepare() {
+cd $_hkgname-$pkgver
+echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+}
+
+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-tree-diff/trunk (PKGBUILD)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:26:44
  Author: felixonmars
Revision: 468717

upgpkg: haskell-tree-diff 0.0.2.1-7

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-tree-diff/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:25:49 UTC (rev 468716)
+++ PKGBUILD2019-05-22 21:26:44 UTC (rev 468717)
@@ -3,7 +3,7 @@
 _hkgname=tree-diff
 pkgname=haskell-tree-diff
 pkgver=0.0.2.1
-pkgrel=6
+pkgrel=7
 pkgdesc="Diffing of (expression) trees"
 url="https://github.com/phadej/tree-diff";
 license=('BSD')


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:25:39
  Author: felixonmars
Revision: 468715

upgpkg: haskell-trifecta 2-38

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-trifecta/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:24:25 UTC (rev 468714)
+++ PKGBUILD2019-05-22 21:25:39 UTC (rev 468715)
@@ -4,7 +4,7 @@
 _hkgname=trifecta
 pkgname=haskell-trifecta
 pkgver=2
-pkgrel=37
+pkgrel=38
 pkgdesc="A modern parser combinator library with convenient diagnostics"
 url="https://github.com/ekmett/trifecta/";
 license=("BSD")


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:25:49
  Author: felixonmars
Revision: 468716

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-trifecta/repos/community-staging-x86_64/PKGBUILD (from rev 
468715, haskell-trifecta/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 21:25:49 UTC (rev 468716)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=trifecta
+pkgname=haskell-trifecta
+pkgver=2
+pkgrel=38
+pkgdesc="A modern parser combinator library with convenient diagnostics"
+url="https://github.com/ekmett/trifecta/";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-ansi-terminal" "haskell-ansi-wl-pprint" 
"haskell-blaze-builder"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-charset" 
"haskell-comonad"
+ "haskell-fingertree" "haskell-hashable" "haskell-lens" 
"haskell-parsers"
+ "haskell-profunctors" "haskell-reducers" 
"haskell-unordered-containers"
+ "haskell-utf8-string")
+makedepends=('ghc' 'haskell-cabal-doctest' 'haskell-doctest' 
'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('41d5790efef0e6c138dcd2306b1369ba91e4db5a7f0b2a9c51eb11f83908925989ec8b71ce4a61e77ac34b42f635195674497a4d170102e588b3a9fa38d1b0bc')
+
+prepare() {
+sed -i '/semigroups/d' $_hkgname-$pkgver/$_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-hledger-lib/repos (2 files)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:24:25
  Author: felixonmars
Revision: 468714

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hledger-lib/repos/community-staging-x86_64/
  haskell-hledger-lib/repos/community-staging-x86_64/PKGBUILD
(from rev 468713, haskell-hledger-lib/trunk/PKGBUILD)

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

Copied: haskell-hledger-lib/repos/community-staging-x86_64/PKGBUILD (from rev 
468713, haskell-hledger-lib/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 21:24:25 UTC (rev 468714)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hledger-lib
+pkgname=haskell-hledger-lib
+pkgver=1.14.1
+pkgrel=20
+pkgdesc="Core data types, parsers and functionality for the hledger accounting 
tools"
+url="http://hledger.org";
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-base-compat-batteries' 
'haskell-blaze-markup'
+ 'haskell-call-stack' 'haskell-cassava' 'haskell-cassava-megaparsec' 
'haskell-cmdargs'
+ 'haskell-data-default' 'haskell-decimal' 'haskell-easytest' 
'haskell-extra'
+ 'haskell-file-embed' 'haskell-glob' 'haskell-hashtables' 
'haskell-megaparsec'
+ 'haskell-old-time' 'haskell-parser-combinators' 'haskell-pretty-show' 
'haskell-regex-tdfa'
+ 'haskell-safe' 'haskell-split' 'haskell-tabular' 'haskell-uglymemo' 
'haskell-utf8-string')
+makedepends=('ghc' 'haskell-doctest')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('1f639631233b31889e67f3fd83f9ec1244f48f0d752247f6959a537ef2be1edfe3dbd5796099f36bb82974ac4b6d6a67b28283b25d15f2bcc68a29c4f1383676')
+
+prepare() {
+# It does nothing
+sed -e '/mtl-compat/d' \
+-i ${_hkgname}-${pkgver}/${_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"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:24:15
  Author: felixonmars
Revision: 468713

upgpkg: haskell-hledger-lib 1.14.1-20

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-hledger-lib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:22:24 UTC (rev 468712)
+++ PKGBUILD2019-05-22 21:24:15 UTC (rev 468713)
@@ -4,7 +4,7 @@
 _hkgname=hledger-lib
 pkgname=haskell-hledger-lib
 pkgver=1.14.1
-pkgrel=19
+pkgrel=20
 pkgdesc="Core data types, parsers and functionality for the hledger accounting 
tools"
 url="http://hledger.org";
 license=("GPL")


[arch-commits] Commit in lib32-zstd/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2019-05-22 Thread Levente Polyak via arch-commits
Date: Wednesday, May 22, 2019 @ 21:22:24
  Author: anthraxx
Revision: 468712

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-zstd/repos/multilib-x86_64/PKGBUILD
(from rev 468711, lib32-zstd/trunk/PKGBUILD)
Deleted:
  lib32-zstd/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-22 21:22:20 UTC (rev 468711)
+++ PKGBUILD2019-05-22 21:22:24 UTC (rev 468712)
@@ -1,47 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor:  Bartłomiej Piotrowski 
-# Contributor: Andrzej Giniewicz 
-# Contributor: Johan Förberg 
-
-_pkgname=zstd
-pkgname=lib32-zstd
-pkgver=1.3.8
-pkgrel=1
-pkgdesc='Zstandard - Fast real-time compression algorithm (32-bit)'
-url='https://www.zstd.net/'
-arch=('x86_64')
-license=('BSD' 'GPL2')
-depends=('zstd' 'lib32-zlib' 'lib32-xz' 'lib32-lz4')
-makedepends=('gtest')
-source=(https://github.com/facebook/zstd/releases/download/v${pkgver}/zstd-${pkgver}.tar.gz)
-sha256sums=('293fa004dfacfbe90b42660c474920ff27093e3fb6c99f7b76e6083b21d6d48e')
-
-build() {
-  cd ${_pkgname}-${pkgver}
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-  make
-  make zstdmt
-  make -C contrib/pzstd
-}
-
-check() {
-  cd ${_pkgname}-${pkgver}
-  make check
-  make -C contrib/pzstd test
-}
-
-package() {
-  cd ${_pkgname}-${pkgver}
-  make \
-PREFIX=/usr \
-LIBDIR=/usr/lib32 \
-PKGCONFIGDIR=/usr/lib32/pkgconfig \
-DESTDIR="${pkgdir}" \
-install
-  rm -rf "${pkgdir}"/usr/{share,include,bin}
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-zstd/repos/multilib-x86_64/PKGBUILD (from rev 468711, 
lib32-zstd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-22 21:22:24 UTC (rev 468712)
@@ -0,0 +1,48 @@
+# Maintainer: Levente Polyak 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Andrzej Giniewicz 
+# Contributor: Johan Förberg 
+
+_pkgname=zstd
+pkgname=lib32-zstd
+pkgver=1.4.0
+pkgrel=1
+pkgdesc='Zstandard - Fast real-time compression algorithm (32-bit)'
+url='https://www.zstd.net/'
+arch=('x86_64')
+license=('BSD' 'GPL2')
+depends=('zstd' 'lib32-zlib' 'lib32-xz' 'lib32-lz4')
+makedepends=('gtest')
+source=(https://github.com/facebook/zstd/releases/download/v${pkgver}/zstd-${pkgver}.tar.gz)
+sha256sums=('7f323f0e0c18488748f3d9b2d4353f00e904ea2ccd0372ea04d7f77aa1156557')
+sha512sums=('ef6d95639593fed3cfb9ff4f1527c4ba38658e42f16eb3369b2a4bbe150905751bb71c6e3fe9c8bbdfceee26a540ae3e41bd0f0bc692d36db444b7da65a6e304')
+
+build() {
+  cd ${_pkgname}-${pkgver}
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+  make
+  make zstdmt
+  make -C contrib/pzstd
+}
+
+check() {
+  cd ${_pkgname}-${pkgver}
+  make check
+  make -C contrib/pzstd test
+}
+
+package() {
+  cd ${_pkgname}-${pkgver}
+  make \
+PREFIX=/usr \
+LIBDIR=/usr/lib32 \
+PKGCONFIGDIR=/usr/lib32/pkgconfig \
+DESTDIR="${pkgdir}" \
+install
+  rm -rf "${pkgdir}"/usr/{share,include,bin}
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-05-22 Thread Levente Polyak via arch-commits
Date: Wednesday, May 22, 2019 @ 21:22:20
  Author: anthraxx
Revision: 468711

upgpkg: lib32-zstd 1.4.0-1

Modified:
  lib32-zstd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:20:31 UTC (rev 468710)
+++ PKGBUILD2019-05-22 21:22:20 UTC (rev 468711)
@@ -5,7 +5,7 @@
 
 _pkgname=zstd
 pkgname=lib32-zstd
-pkgver=1.3.8
+pkgver=1.4.0
 pkgrel=1
 pkgdesc='Zstandard - Fast real-time compression algorithm (32-bit)'
 url='https://www.zstd.net/'
@@ -14,7 +14,8 @@
 depends=('zstd' 'lib32-zlib' 'lib32-xz' 'lib32-lz4')
 makedepends=('gtest')
 
source=(https://github.com/facebook/zstd/releases/download/v${pkgver}/zstd-${pkgver}.tar.gz)
-sha256sums=('293fa004dfacfbe90b42660c474920ff27093e3fb6c99f7b76e6083b21d6d48e')
+sha256sums=('7f323f0e0c18488748f3d9b2d4353f00e904ea2ccd0372ea04d7f77aa1156557')
+sha512sums=('ef6d95639593fed3cfb9ff4f1527c4ba38658e42f16eb3369b2a4bbe150905751bb71c6e3fe9c8bbdfceee26a540ae3e41bd0f0bc692d36db444b7da65a6e304')
 
 build() {
   cd ${_pkgname}-${pkgver}


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

2019-05-22 Thread Levente Polyak via arch-commits
Date: Wednesday, May 22, 2019 @ 21:20:31
  Author: anthraxx
Revision: 468710

archrelease: copy trunk to community-any

Added:
  pegtl/repos/community-any/PKGBUILD
(from rev 468709, pegtl/trunk/PKGBUILD)
Deleted:
  pegtl/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-22 21:20:27 UTC (rev 468709)
+++ PKGBUILD2019-05-22 21:20:31 UTC (rev 468710)
@@ -1,50 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=pegtl
-_gitcommit=ea09eb9fa66e328087ba9f6c00963343936053ca
-pkgver=2.7.1
-pkgrel=2
-pkgdesc='Parsing Expression Grammar Template Library'
-url='https://github.com/taocpp/PEGTL'
-arch=('any')
-license=('MIT')
-makedepends=('git' 'cmake')
-source=(${pkgname}::"git+https://github.com/taocpp/PEGTL#commit=${_gitcommit}?signed";)
-sha512sums=('SKIP')
-validpgpkeys=('3AC06334B62566C11A5912FB014C496DEC39EB21') # Daniel Frey 

-
-pkgver() {
-  cd ${pkgname}
-  git describe --tags --always|sed 's/^v//;s/-/+/g'
-}
-
-prepare() {
-  cd ${pkgname}
-  mkdir -p build
-}
-
-build() {
-  cd ${pkgname}/build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DPEGTL_INSTALL_DOC_DIR=share/doc/${pkgname} \
--DPEGTL_INSTALL_CMAKE_DIR=lib/cmake/${pkgname} \
--DPEGTL_BUILD_EXAMPLES=OFF \
--DPEGTL_BUILD_TESTS=ON
-  make
-}
-
-check() {
-  cd ${pkgname}/build
-  ctest
-}
-
-package() {
-  cd ${pkgname}
-  make -C build DESTDIR="${pkgdir}" install
-  install -Dpm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dpm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: pegtl/repos/community-any/PKGBUILD (from rev 468709, 
pegtl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-22 21:20:31 UTC (rev 468710)
@@ -0,0 +1,50 @@
+# Maintainer: Levente Polyak 
+
+pkgname=pegtl
+_gitcommit=3132d6418f176e77c7f173515b9c2d64e3af9e1f
+pkgver=2.8.0
+pkgrel=1
+pkgdesc='Parsing Expression Grammar Template Library'
+url='https://github.com/taocpp/PEGTL'
+arch=('any')
+license=('MIT')
+makedepends=('git' 'cmake')
+source=(${pkgname}::"git+https://github.com/taocpp/PEGTL#commit=${_gitcommit}?signed";)
+sha512sums=('SKIP')
+validpgpkeys=('3AC06334B62566C11A5912FB014C496DEC39EB21') # Daniel Frey 

+
+pkgver() {
+  cd ${pkgname}
+  git describe --tags --always|sed 's/^v//;s/-/+/g'
+}
+
+prepare() {
+  cd ${pkgname}
+  mkdir -p build
+}
+
+build() {
+  cd ${pkgname}/build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DPEGTL_INSTALL_DOC_DIR=share/doc/${pkgname} \
+-DPEGTL_INSTALL_CMAKE_DIR=lib/cmake/${pkgname} \
+-DPEGTL_BUILD_EXAMPLES=OFF \
+-DPEGTL_BUILD_TESTS=ON
+  make
+}
+
+check() {
+  cd ${pkgname}/build
+  ctest
+}
+
+package() {
+  cd ${pkgname}
+  make -C build DESTDIR="${pkgdir}" install
+  install -Dpm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dpm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-05-22 Thread Levente Polyak via arch-commits
Date: Wednesday, May 22, 2019 @ 21:20:27
  Author: anthraxx
Revision: 468709

upgpkg: pegtl 2.8.0-1

Modified:
  pegtl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:18:39 UTC (rev 468708)
+++ PKGBUILD2019-05-22 21:20:27 UTC (rev 468709)
@@ -1,9 +1,9 @@
 # Maintainer: Levente Polyak 
 
 pkgname=pegtl
-_gitcommit=ea09eb9fa66e328087ba9f6c00963343936053ca
-pkgver=2.7.1
-pkgrel=2
+_gitcommit=3132d6418f176e77c7f173515b9c2d64e3af9e1f
+pkgver=2.8.0
+pkgrel=1
 pkgdesc='Parsing Expression Grammar Template Library'
 url='https://github.com/taocpp/PEGTL'
 arch=('any')


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

2019-05-22 Thread Levente Polyak via arch-commits
Date: Wednesday, May 22, 2019 @ 21:18:39
  Author: anthraxx
Revision: 468708

archrelease: copy trunk to community-x86_64

Added:
  pdfcrack/repos/community-x86_64/PKGBUILD
(from rev 468707, pdfcrack/trunk/PKGBUILD)
Deleted:
  pdfcrack/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-22 21:18:35 UTC (rev 468707)
+++ PKGBUILD2019-05-22 21:18:39 UTC (rev 468708)
@@ -1,31 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Lukas Jirkovsky 
-
-pkgname=pdfcrack
-pkgver=0.16
-pkgrel=2
-pkgdesc='Password recovery tool for PDF-files'
-url='http://pdfcrack.sourceforge.net/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('glibc')
-source=(https://downloads.sourceforge.net/pdfcrack/pdfcrack-${pkgver}.tar.gz{,.asc})
-sha256sums=('7865b203074ccfd5c612c8ce00c46ffcb4fabaa26154ce9304dfc668c7cb73ef'
-'SKIP')
-sha512sums=('460113f28249d1ea1cefc6dac8ff22b33849ccff50f61830144e41eeec47c4b9113845bb955d26757adb0552d8c0dfa43b3f5666c1419afe4063037a1e1c933d'
-'SKIP')
-validpgpkeys=('987AEFC56E70D68440C0D45149241DE2BA57F699') # "Henning Norén 
"
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm 755 pdfcrack -t "${pkgdir}/usr/bin"
-  install -Dm 644 README changelog -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 pdfcrack.1 -t "${pkgdir}/usr/share/man/man1"
-}
-
-# vim: ts=2 sw=2 et:

Copied: pdfcrack/repos/community-x86_64/PKGBUILD (from rev 468707, 
pdfcrack/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-22 21:18:39 UTC (rev 468708)
@@ -0,0 +1,34 @@
+# Maintainer: Levente Polyak 
+# Contributor: Lukas Jirkovsky 
+
+pkgname=pdfcrack
+pkgver=0.17
+pkgrel=1
+pkgdesc='Password recovery tool for PDF-files'
+url='http://pdfcrack.sourceforge.net/'
+arch=('x86_64')
+license=('GPL2')
+depends=('glibc')
+source=(https://downloads.sourceforge.net/pdfcrack/pdfcrack-${pkgver}.tar.gz{,.asc})
+sha256sums=('561bb1ee21005b6a9cf09771571836de6625ad6c52822b08eaf33b9f32ef0e96'
+'SKIP')
+sha512sums=('a7d41383b53d57a8d6cce6e7da9ccc8d3cb30833d9451ce1554c8f04286dc64336313591b5b579a1a3402ccc317c96356e5124aa7f43022bbede0ee9b1d5c0c5'
+'SKIP')
+validpgpkeys=(
+  '987AEFC56E70D68440C0D45149241DE2BA57F699' # Henning Norén 

+  'AC49CA5B95335D6DAF85BAC563EFAA4606037EB3' # Henning Norén 

+)
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 755 pdfcrack -t "${pkgdir}/usr/bin"
+  install -Dm 644 README changelog -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 pdfcrack.1 -t "${pkgdir}/usr/share/man/man1"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-05-22 Thread Levente Polyak via arch-commits
Date: Wednesday, May 22, 2019 @ 21:18:35
  Author: anthraxx
Revision: 468707

upgpkg: pdfcrack 0.17-1

Modified:
  pdfcrack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:18:12 UTC (rev 468706)
+++ PKGBUILD2019-05-22 21:18:35 UTC (rev 468707)
@@ -2,8 +2,8 @@
 # Contributor: Lukas Jirkovsky 
 
 pkgname=pdfcrack
-pkgver=0.16
-pkgrel=2
+pkgver=0.17
+pkgrel=1
 pkgdesc='Password recovery tool for PDF-files'
 url='http://pdfcrack.sourceforge.net/'
 arch=('x86_64')
@@ -10,11 +10,14 @@
 license=('GPL2')
 depends=('glibc')
 
source=(https://downloads.sourceforge.net/pdfcrack/pdfcrack-${pkgver}.tar.gz{,.asc})
-sha256sums=('7865b203074ccfd5c612c8ce00c46ffcb4fabaa26154ce9304dfc668c7cb73ef'
+sha256sums=('561bb1ee21005b6a9cf09771571836de6625ad6c52822b08eaf33b9f32ef0e96'
 'SKIP')
-sha512sums=('460113f28249d1ea1cefc6dac8ff22b33849ccff50f61830144e41eeec47c4b9113845bb955d26757adb0552d8c0dfa43b3f5666c1419afe4063037a1e1c933d'
+sha512sums=('a7d41383b53d57a8d6cce6e7da9ccc8d3cb30833d9451ce1554c8f04286dc64336313591b5b579a1a3402ccc317c96356e5124aa7f43022bbede0ee9b1d5c0c5'
 'SKIP')
-validpgpkeys=('987AEFC56E70D68440C0D45149241DE2BA57F699') # "Henning Norén 
"
+validpgpkeys=(
+  '987AEFC56E70D68440C0D45149241DE2BA57F699' # Henning Norén 

+  'AC49CA5B95335D6DAF85BAC563EFAA4606037EB3' # Henning Norén 

+)
 
 build() {
   cd ${pkgname}-${pkgver}


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:18:12
  Author: felixonmars
Revision: 468706

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-cassava-megaparsec/repos/community-staging-x86_64/
  haskell-cassava-megaparsec/repos/community-staging-x86_64/PKGBUILD
(from rev 468705, haskell-cassava-megaparsec/trunk/PKGBUILD)

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

Copied: haskell-cassava-megaparsec/repos/community-staging-x86_64/PKGBUILD 
(from rev 468705, haskell-cassava-megaparsec/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 21:18:12 UTC (rev 468706)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=cassava-megaparsec
+pkgname=haskell-cassava-megaparsec
+pkgver=2.0.0
+pkgrel=23
+pkgdesc="Megaparsec parser of CSV files that plays nicely with Cassava"
+url="https://github.com/stackbuilders/cassava-megaparsec";
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-cassava' 'haskell-megaparsec' 
'haskell-unordered-containers'
+ 'haskell-vector')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hspec-megaparsec')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('5d33e84549a1ea04a794f8fe2f6052a9cc82c0444b3608a2f98005aa0437b9c944a9d0b4096f31ed30dd2aaa15428cbd8671dc303cd4ea8c2418343893801863')
+
+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.md" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.md"
+}


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:18:02
  Author: felixonmars
Revision: 468705

upgpkg: haskell-cassava-megaparsec 2.0.0-23

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-cassava-megaparsec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:17:17 UTC (rev 468704)
+++ PKGBUILD2019-05-22 21:18:02 UTC (rev 468705)
@@ -3,7 +3,7 @@
 _hkgname=cassava-megaparsec
 pkgname=haskell-cassava-megaparsec
 pkgver=2.0.0
-pkgrel=22
+pkgrel=23
 pkgdesc="Megaparsec parser of CSV files that plays nicely with Cassava"
 url="https://github.com/stackbuilders/cassava-megaparsec";
 license=('MIT')


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:17:17
  Author: felixonmars
Revision: 468704

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-cassava/repos/community-staging-x86_64/PKGBUILD (from rev 
468703, haskell-cassava/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 21:17:17 UTC (rev 468704)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cassava
+pkgname=haskell-cassava
+pkgver=0.5.1.0
+pkgrel=66
+pkgdesc="A CSV parsing and encoding library"
+url="https://github.com/tibbe/cassava";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-attoparsec" "haskell-hashable" "haskell-only" 
"haskell-scientific"
+ "haskell-text-short" "haskell-unordered-containers" "haskell-vector")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('74853c6d0f837826613cf2a0249a25e940faa283e89bca017fa9812551bffd428dc9af9a2d0ba082866243521fab9820f478fce1f28d276ae988d4a6331754e6')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *0.6/<1/' $_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 \
+-f-bytestring--LT-0_10_4
+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-cassava/trunk (PKGBUILD)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:17:07
  Author: felixonmars
Revision: 468703

upgpkg: haskell-cassava 0.5.1.0-66

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-cassava/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:16:13 UTC (rev 468702)
+++ PKGBUILD2019-05-22 21:17:07 UTC (rev 468703)
@@ -4,7 +4,7 @@
 _hkgname=cassava
 pkgname=haskell-cassava
 pkgver=0.5.1.0
-pkgrel=65
+pkgrel=66
 pkgdesc="A CSV parsing and encoding library"
 url="https://github.com/tibbe/cassava";
 license=("BSD")


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:16:13
  Author: felixonmars
Revision: 468702

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-text-short/repos/community-staging-x86_64/
  haskell-text-short/repos/community-staging-x86_64/PKGBUILD
(from rev 468701, haskell-text-short/trunk/PKGBUILD)

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

Copied: haskell-text-short/repos/community-staging-x86_64/PKGBUILD (from rev 
468701, haskell-text-short/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 21:16:13 UTC (rev 468702)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=text-short
+pkgname=haskell-text-short
+pkgver=0.1.2
+pkgrel=51
+pkgdesc="Memory-efficient representation of Unicode text strings"
+url="https://github.com/hvr/text-short";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hashable')
+makedepends=('ghc' 'haskell-quickcheck-instances' 'haskell-tasty' 
'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('f0d454f4146bfa220ff02e9e76ae366c5f6d5b4253296e8f96299ed3f30b9b982d5daca6f50b0681b6ccf5fba7103914f6a8688d0da89740dcd71d1eda9c9851')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e 's/<.*1.1/<2/' -e 's/< *4.12/<5/' $_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 \
+-f-asserts
+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-text-short/trunk (PKGBUILD)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:16:03
  Author: felixonmars
Revision: 468701

upgpkg: haskell-text-short 0.1.2-51

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-text-short/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:15:24 UTC (rev 468700)
+++ PKGBUILD2019-05-22 21:16:03 UTC (rev 468701)
@@ -4,7 +4,7 @@
 _hkgname=text-short
 pkgname=haskell-text-short
 pkgver=0.1.2
-pkgrel=50
+pkgrel=51
 pkgdesc="Memory-efficient representation of Unicode text strings"
 url="https://github.com/hvr/text-short";
 license=("BSD")


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

2019-05-22 Thread Levente Polyak via arch-commits
Date: Wednesday, May 22, 2019 @ 21:15:03
  Author: anthraxx
Revision: 468698

archrelease: copy trunk to community-x86_64

Added:
  powerdns-recursor/repos/community-x86_64/PKGBUILD
(from rev 468697, powerdns-recursor/trunk/PKGBUILD)
Deleted:
  powerdns-recursor/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-22 21:14:50 UTC (rev 468697)
+++ PKGBUILD2019-05-22 21:15:03 UTC (rev 468698)
@@ -1,47 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Alexander Rødseth 
-# Contributor: Jan de Groot 
-# Contributor: Jan Steffens 
-# Contributor: Remi Gacogne 
-
-pkgname=powerdns-recursor
-pkgver=4.1.11
-pkgrel=2
-pkgdesc='Resolving DNS server'
-url='https://www.powerdns.com/'
-arch=('x86_64')
-license=('GPL2')
-depends=('gcc-libs' 'boost-libs' 'libsodium' 'systemd-libs' 'lua' 'openssl' 
'protobuf'
- 'libboost_context.so')
-makedepends=('boost' 'inetutils' 'pandoc' 'ragel' 'systemd')
-provides=('pdns-recursor')
-conflicts=('pdns-recursor')
-backup=('etc/powerdns/recursor.conf')
-source=(https://downloads.powerdns.com/releases/pdns-recursor-${pkgver}.tar.bz2{,.asc})
-sha512sums=('6041d31f0a517786f44a7fa22c7bfa94d5d4bdc3a7f349d2b47bc66be87404fe8eaf76f45ca18ef8ab96a45c0271f46fdba93a51fbda2542a3ad96e10f51c1d1'
-'SKIP')
-validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7'  # Pieter Lexis 

-  'FBAE0323821C7706A5CA151BDCF513FA7EED19F3'  # Peter van Dijk 

-  '16E12866B7738C73976A57436FFC33439B0D04DF') # Winkels, Erik 

-
-build() {
-  cd pdns-recursor-${pkgver}
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc/powerdns \
---disable-silent-rules \
---enable-reproducible \
---enable-systemd \
---enable-protobuf \
---enable-libsodium
-  make
-}
-
-package() {
-  cd pdns-recursor-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  mv "${pkgdir}/etc/powerdns/recursor.conf"{-dist,}
-}
-
-# vim: ts=2 sw=2 et:

Copied: powerdns-recursor/repos/community-x86_64/PKGBUILD (from rev 468697, 
powerdns-recursor/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-22 21:15:03 UTC (rev 468698)
@@ -0,0 +1,47 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander Rødseth 
+# Contributor: Jan de Groot 
+# Contributor: Jan Steffens 
+# Contributor: Remi Gacogne 
+
+pkgname=powerdns-recursor
+pkgver=4.1.13
+pkgrel=1
+pkgdesc='Resolving DNS server'
+url='https://www.powerdns.com/'
+arch=('x86_64')
+license=('GPL2')
+depends=('gcc-libs' 'boost-libs' 'libsodium' 'systemd-libs' 'lua' 'openssl' 
'protobuf'
+ 'libboost_context.so')
+makedepends=('boost' 'inetutils' 'pandoc' 'ragel' 'systemd')
+provides=('pdns-recursor')
+conflicts=('pdns-recursor')
+backup=('etc/powerdns/recursor.conf')
+source=(https://downloads.powerdns.com/releases/pdns-recursor-${pkgver}.tar.bz2{,.asc})
+sha512sums=('3b64caf291b80e1b0d024d607fc7e0fe8d51450a687a1090f0d0f7aab1a42a73fb31576a0acfddcee3f9c476f8bb0ac192a937f9c3481bef8031d34866b5f430'
+'SKIP')
+validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7'  # Pieter Lexis 

+  'FBAE0323821C7706A5CA151BDCF513FA7EED19F3'  # Peter van Dijk 

+  '16E12866B7738C73976A57436FFC33439B0D04DF') # Winkels, Erik 

+
+build() {
+  cd pdns-recursor-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc/powerdns \
+--disable-silent-rules \
+--enable-reproducible \
+--enable-systemd \
+--enable-protobuf \
+--enable-libsodium
+  make
+}
+
+package() {
+  cd pdns-recursor-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  mv "${pkgdir}/etc/powerdns/recursor.conf"{-dist,}
+}
+
+# vim: ts=2 sw=2 et:


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

2019-05-22 Thread Jerome Leclanche via arch-commits
Date: Wednesday, May 22, 2019 @ 21:15:24
  Author: jleclanche
Revision: 468700

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-22 21:15:11 UTC (rev 468699)
+++ PKGBUILD2019-05-22 21:15:24 UTC (rev 468700)
@@ -1,34 +0,0 @@
-# Maintainer: Jerome Leclanche 
-# Maintainer: Christian Rebischke 
-
-pkgname=terraform
-pkgver=0.11.14
-pkgrel=1
-pkgdesc="Tool for building, changing, and versioning infrastructure safely and 
efficiently"
-url="https://www.terraform.io/";
-arch=("x86_64")
-license=("MPL")
-makedepends=("go-pie")
-source=("$pkgname-$pkgver.tar.gz::https://github.com/hashicorp/terraform/archive/v$pkgver.tar.gz";)
-sha256sums=('50b75c94c4d3bfe44cfc12c740126747b6b34c014602777154356caa85a783f4')
-
-
-prepare() {
-   export GOPATH="${srcdir}"
-   export PATH="$PATH:$GOPATH/bin"
-   mkdir -p src/github.com/hashicorp/
-   mv "${pkgname}-${pkgver}" src/github.com/hashicorp/${pkgname}
-}
-
-
-build() {
-   cd src/github.com/hashicorp/"${pkgname}"
-   go build -o terraform-binary
-}
-
-
-package() {
-   cd src/github.com/hashicorp/"${pkgname}"
-   install -Dm755 terraform-binary "$pkgdir/usr/bin/terraform"
-   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: terraform/repos/community-x86_64/PKGBUILD (from rev 468699, 
terraform/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-22 21:15:24 UTC (rev 468700)
@@ -0,0 +1,34 @@
+# Maintainer: Jerome Leclanche 
+# Maintainer: Christian Rebischke 
+
+pkgname=terraform
+pkgver=0.12.0
+pkgrel=1
+pkgdesc="Tool for building, changing, and versioning infrastructure safely and 
efficiently"
+url="https://www.terraform.io/";
+arch=("x86_64")
+license=("MPL")
+makedepends=("go-pie")
+source=("$pkgname-$pkgver.tar.gz::https://github.com/hashicorp/terraform/archive/v$pkgver.tar.gz";)
+sha256sums=("0e13fec7d1ecde21369f2ae9eeb06405c078d392cb373a43e8fe34a6a373417d")
+
+
+prepare() {
+   export GOPATH="${srcdir}"
+   export PATH="$PATH:$GOPATH/bin"
+   mkdir -p src/github.com/hashicorp/
+   mv "${pkgname}-${pkgver}" src/github.com/hashicorp/${pkgname}
+}
+
+
+build() {
+   cd src/github.com/hashicorp/"${pkgname}"
+   go build -o terraform-binary
+}
+
+
+package() {
+   cd src/github.com/hashicorp/"${pkgname}"
+   install -Dm755 terraform-binary "$pkgdir/usr/bin/terraform"
+   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2019-05-22 Thread Jerome Leclanche via arch-commits
Date: Wednesday, May 22, 2019 @ 21:15:11
  Author: jleclanche
Revision: 468699

upgpkg: terraform 0.12.0-1

Upstream release 0.12.0

Modified:
  terraform/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:15:03 UTC (rev 468698)
+++ PKGBUILD2019-05-22 21:15:11 UTC (rev 468699)
@@ -2,7 +2,7 @@
 # Maintainer: Christian Rebischke 
 
 pkgname=terraform
-pkgver=0.11.14
+pkgver=0.12.0
 pkgrel=1
 pkgdesc="Tool for building, changing, and versioning infrastructure safely and 
efficiently"
 url="https://www.terraform.io/";
@@ -10,7 +10,7 @@
 license=("MPL")
 makedepends=("go-pie")
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/hashicorp/terraform/archive/v$pkgver.tar.gz";)
-sha256sums=('50b75c94c4d3bfe44cfc12c740126747b6b34c014602777154356caa85a783f4')
+sha256sums=("0e13fec7d1ecde21369f2ae9eeb06405c078d392cb373a43e8fe34a6a373417d")
 
 
 prepare() {


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

2019-05-22 Thread Levente Polyak via arch-commits
Date: Wednesday, May 22, 2019 @ 21:14:50
  Author: anthraxx
Revision: 468697

upgpkg: powerdns-recursor 4.1.13-1

Modified:
  powerdns-recursor/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:13:21 UTC (rev 468696)
+++ PKGBUILD2019-05-22 21:14:50 UTC (rev 468697)
@@ -5,8 +5,8 @@
 # Contributor: Remi Gacogne 
 
 pkgname=powerdns-recursor
-pkgver=4.1.11
-pkgrel=2
+pkgver=4.1.13
+pkgrel=1
 pkgdesc='Resolving DNS server'
 url='https://www.powerdns.com/'
 arch=('x86_64')
@@ -18,7 +18,7 @@
 conflicts=('pdns-recursor')
 backup=('etc/powerdns/recursor.conf')
 
source=(https://downloads.powerdns.com/releases/pdns-recursor-${pkgver}.tar.bz2{,.asc})
-sha512sums=('6041d31f0a517786f44a7fa22c7bfa94d5d4bdc3a7f349d2b47bc66be87404fe8eaf76f45ca18ef8ab96a45c0271f46fdba93a51fbda2542a3ad96e10f51c1d1'
+sha512sums=('3b64caf291b80e1b0d024d607fc7e0fe8d51450a687a1090f0d0f7aab1a42a73fb31576a0acfddcee3f9c476f8bb0ac192a937f9c3481bef8031d34866b5f430'
 'SKIP')
 validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7'  # Pieter Lexis 

   'FBAE0323821C7706A5CA151BDCF513FA7EED19F3'  # Peter van Dijk 



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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:13:21
  Author: felixonmars
Revision: 468696

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hasql-transaction/repos/community-staging-x86_64/PKGBUILD (from 
rev 468695, haskell-hasql-transaction/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 21:13:21 UTC (rev 468696)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hasql-transaction
+pkgname=haskell-hasql-transaction
+pkgver=0.7.1
+pkgrel=24
+pkgdesc="A composable abstraction over the retryable transactions for Hasql"
+url="https://github.com/nikita-volkov/hasql-transaction";
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-bytestring-tree-builder' 'haskell-contravariant'
+ 'haskell-contravariant-extras' 'haskell-hasql')
+makedepends=('ghc' 'haskell-async' 'haskell-rebase')
+checkdepends=('postgresql' 'pifpaf')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('f27d2da378e6415eed2bc56eb586e197fed91a2ff82273e73edc85e48c89cefcb9569d8c1e6d8cf670a05440d7dbdfe563ac42f1e297b8b6cd2b8b502af356ea')
+
+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
+
+eval $(pifpaf run postgresql --host 127.0.0.1 --port 5432)
+createuser -s postgres
+runhaskell Setup test
+pifpaf_stop
+}
+
+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-hasql-transaction/trunk (PKGBUILD)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:13:11
  Author: felixonmars
Revision: 468695

upgpkg: haskell-hasql-transaction 0.7.1-24

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-hasql-transaction/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:12:24 UTC (rev 468694)
+++ PKGBUILD2019-05-22 21:13:11 UTC (rev 468695)
@@ -3,7 +3,7 @@
 _hkgname=hasql-transaction
 pkgname=haskell-hasql-transaction
 pkgver=0.7.1
-pkgrel=23
+pkgrel=24
 pkgdesc="A composable abstraction over the retryable transactions for Hasql"
 url="https://github.com/nikita-volkov/hasql-transaction";
 license=('MIT')


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:12:24
  Author: felixonmars
Revision: 468694

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hasql-pool/repos/community-staging-x86_64/PKGBUILD (from rev 
468693, haskell-hasql-pool/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 21:12:24 UTC (rev 468694)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=hasql-pool
+pkgname=haskell-hasql-pool
+pkgver=0.5.0.2
+pkgrel=6
+pkgdesc="A pool of connections for Hasql"
+url="https://github.com/nikita-volkov/hasql-pool";
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-prelude' 'haskell-hasql' 
'haskell-resource-pool')
+makedepends=('ghc' 'haskell-hspec')
+checkdepends=('pifpaf' 'postgresql')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('6dfdcb29ce29be83e7b5ee6e443ede8ba1d993a20416c41a653aa8e643d187359a79afad15b195a271a24116776d869aba12645b034141e74f5272b22472b8c3')
+
+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
+
+eval $(pifpaf run postgresql --host 127.0.0.1 --port 5432)
+createuser -s postgres
+runhaskell Setup test
+pifpaf_stop
+}
+
+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-hasql-pool/trunk (PKGBUILD)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:12:14
  Author: felixonmars
Revision: 468693

upgpkg: haskell-hasql-pool 0.5.0.2-6

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-hasql-pool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:11:27 UTC (rev 468692)
+++ PKGBUILD2019-05-22 21:12:14 UTC (rev 468693)
@@ -4,7 +4,7 @@
 _hkgname=hasql-pool
 pkgname=haskell-hasql-pool
 pkgver=0.5.0.2
-pkgrel=5
+pkgrel=6
 pkgdesc="A pool of connections for Hasql"
 url="https://github.com/nikita-volkov/hasql-pool";
 license=('MIT')


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:11:27
  Author: felixonmars
Revision: 468692

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hasql/repos/community-staging-x86_64/PKGBUILD (from rev 468691, 
haskell-hasql/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 21:11:27 UTC (rev 468692)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=hasql
+pkgname=haskell-hasql
+pkgver=1.3.0.3
+pkgrel=77
+pkgdesc="An efficient PostgreSQL driver and a flexible mapping API"
+url="https://github.com/nikita-volkov/hasql";
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-base-prelude' 
'haskell-bytestring-strict-builder'
+ 'haskell-contravariant' 'haskell-contravariant-extras' 
'haskell-data-default-class'
+ 'haskell-dlist' 'haskell-hashable' 'haskell-hashtables' 
'haskell-loch-th'
+ 'haskell-placeholders' 'haskell-postgresql-binary' 
'haskell-postgresql-libpq'
+ 'haskell-profunctors' 'haskell-text-builder' 'haskell-vector')
+makedepends=('ghc' 'haskell-bug' 'haskell-tasty' 'haskell-tasty-quickcheck' 
'haskell-tasty-hunit'
+ 'haskell-quickcheck-instances' 'haskell-quickcheck' 
'haskell-rerebase')
+checkdepends=('postgresql' 'pifpaf')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('fb951f3c7f09b7bc9ba62afc01c25dea7b839d3da21065bb4bba923a96ecd9b53074650084db846e00f3bb27de638e7dd776b081346919b4e92c5d1aac405336')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/<.*0.6/<1/' $_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
+
+eval $(pifpaf run postgresql --host 127.0.0.1 --port 5432)
+createuser -s postgres
+runhaskell Setup test
+pifpaf_stop
+}
+
+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-hasql/trunk (PKGBUILD)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:11:16
  Author: felixonmars
Revision: 468691

upgpkg: haskell-hasql 1.3.0.3-77

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-hasql/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:10:01 UTC (rev 468690)
+++ PKGBUILD2019-05-22 21:11:16 UTC (rev 468691)
@@ -4,7 +4,7 @@
 _hkgname=hasql
 pkgname=haskell-hasql
 pkgver=1.3.0.3
-pkgrel=76
+pkgrel=77
 pkgdesc="An efficient PostgreSQL driver and a flexible mapping API"
 url="https://github.com/nikita-volkov/hasql";
 license=('MIT')


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:10:01
  Author: felixonmars
Revision: 468690

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-text-builder/repos/community-staging-x86_64/
  haskell-text-builder/repos/community-staging-x86_64/PKGBUILD
(from rev 468689, haskell-text-builder/trunk/PKGBUILD)

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

Copied: haskell-text-builder/repos/community-staging-x86_64/PKGBUILD (from rev 
468689, haskell-text-builder/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 21:10:01 UTC (rev 468690)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+
+_hkgname=text-builder
+pkgname=haskell-text-builder
+pkgver=0.6.5.1
+pkgrel=5
+pkgdesc="An efficient strict text builder"
+url="https://github.com/nikita-volkov/text-builder";
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-prelude' 'haskell-deferred-folds')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-quickcheck-instances' 
'haskell-rerebase'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('40cf3ebcf8bb22af0db4f88c205a2d4f8b3b246aaf3f238d55ecd353413cdff073707aeff4aab7b11026e5edcd469d015f58eb103575cb5e81fc3827948ba1bb')
+
+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 --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-text-builder/trunk (PKGBUILD)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:09:50
  Author: felixonmars
Revision: 468689

upgpkg: haskell-text-builder 0.6.5.1-5

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-text-builder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:09:05 UTC (rev 468688)
+++ PKGBUILD2019-05-22 21:09:50 UTC (rev 468689)
@@ -3,7 +3,7 @@
 _hkgname=text-builder
 pkgname=haskell-text-builder
 pkgver=0.6.5.1
-pkgrel=4
+pkgrel=5
 pkgdesc="An efficient strict text builder"
 url="https://github.com/nikita-volkov/text-builder";
 license=('MIT')


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:08:55
  Author: felixonmars
Revision: 468687

upgpkg: haskell-texmath 0.11.2.2-17

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-texmath/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 21:06:36 UTC (rev 468686)
+++ PKGBUILD2019-05-22 21:08:55 UTC (rev 468687)
@@ -4,7 +4,7 @@
 _hkgname=texmath
 pkgname=haskell-texmath
 pkgver=0.11.2.2
-pkgrel=16
+pkgrel=17
 pkgdesc="Conversion between formats used to represent mathematics."
 url="https://github.com/jgm/texmath";
 license=("GPL2")


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:09:05
  Author: felixonmars
Revision: 468688

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-texmath/repos/community-staging-x86_64/PKGBUILD (from rev 
468687, haskell-texmath/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 21:09:05 UTC (rev 468688)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=texmath
+pkgname=haskell-texmath
+pkgver=0.11.2.2
+pkgrel=17
+pkgdesc="Conversion between formats used to represent mathematics."
+url="https://github.com/jgm/texmath";
+license=("GPL2")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-network-uri' 'haskell-pandoc-types'
+ 'haskell-syb' 'haskell-xml')
+makedepends=('ghc' 'haskell-split' 'haskell-temporary' 'haskell-utf8-string')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('510022f5ac25852dd3ffe51a1a700e69a4d1c8b685709e50f87afaa93b4f6490fe220fe50bb42b3978cf98eab8e1534acedb0fdaa74b49ec5688f9b040620916')
+
+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 \
+-fnetwork-uri -f-executable
+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-tamarin-prover-theory/trunk (PKGBUILD)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:06:26
  Author: felixonmars
Revision: 468685

upgpkg: haskell-tamarin-prover-theory 1.4.1-22

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-tamarin-prover-theory/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 20:32:19 UTC (rev 468684)
+++ PKGBUILD2019-05-22 21:06:26 UTC (rev 468685)
@@ -4,7 +4,7 @@
 _hkgname=tamarin-prover-theory
 pkgname=haskell-tamarin-prover-theory
 pkgver=1.4.1
-pkgrel=21
+pkgrel=22
 pkgdesc="Security protocol types and constraint solver library for the tamarin 
prover"
 url="http://www.infsec.ethz.ch/research/software/tamarin";
 license=("GPL")


[arch-commits] Commit in haskell-tamarin-prover-theory/repos (2 files)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 21:06:36
  Author: felixonmars
Revision: 468686

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-tamarin-prover-theory/repos/community-staging-x86_64/
  haskell-tamarin-prover-theory/repos/community-staging-x86_64/PKGBUILD
(from rev 468685, haskell-tamarin-prover-theory/trunk/PKGBUILD)

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

Copied: haskell-tamarin-prover-theory/repos/community-staging-x86_64/PKGBUILD 
(from rev 468685, haskell-tamarin-prover-theory/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 21:06:36 UTC (rev 468686)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tamarin-prover-theory
+pkgname=haskell-tamarin-prover-theory
+pkgver=1.4.1
+pkgrel=22
+pkgdesc="Security protocol types and constraint solver library for the tamarin 
prover"
+url="http://www.infsec.ethz.ch/research/software/tamarin";
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 'haskell-dlist' 
'haskell-fclabels'
+ 'haskell-parallel' 'haskell-safe'
+ 'haskell-uniplate' 'haskell-tamarin-prover-utils' 
'haskell-tamarin-prover-term')
+makedepends=('ghc')
+source=("tamarin-prover-$pkgver.tar.gz::https://github.com/tamarin-prover/tamarin-prover/archive/$pkgver.tar.gz";)
+sha512sums=('4d3aeae02be5d430bff6c55d78656e3c9a648674d235bfeb36ce227a39abd3054a132b99ff8040abf05d8e26506fe85d21ecfb6fce73062dd45b5ba98d941144')
+
+build() {
+cd "${srcdir}/tamarin-prover-${pkgver}/lib/theory"
+
+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
+# haddock failed to generate
+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}/tamarin-prover-${pkgver}/lib/theory"
+
+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"
+}


[arch-commits] Commit in linux-hardened/repos/extra-x86_64 (12 files)

2019-05-22 Thread Levente Polyak via arch-commits
Date: Wednesday, May 22, 2019 @ 21:05:05
  Author: anthraxx
Revision: 353878

archrelease: copy trunk to extra-x86_64

Added:
  linux-hardened/repos/extra-x86_64/60-linux.hook
(from rev 353877, linux-hardened/trunk/60-linux.hook)
  linux-hardened/repos/extra-x86_64/90-linux.hook
(from rev 353877, linux-hardened/trunk/90-linux.hook)
  linux-hardened/repos/extra-x86_64/PKGBUILD
(from rev 353877, linux-hardened/trunk/PKGBUILD)
  linux-hardened/repos/extra-x86_64/config.x86_64
(from rev 353877, linux-hardened/trunk/config.x86_64)
  linux-hardened/repos/extra-x86_64/linux.install
(from rev 353877, linux-hardened/trunk/linux.install)
  linux-hardened/repos/extra-x86_64/linux.preset
(from rev 353877, linux-hardened/trunk/linux.preset)
Deleted:
  linux-hardened/repos/extra-x86_64/60-linux.hook
  linux-hardened/repos/extra-x86_64/90-linux.hook
  linux-hardened/repos/extra-x86_64/PKGBUILD
  linux-hardened/repos/extra-x86_64/config.x86_64
  linux-hardened/repos/extra-x86_64/linux.install
  linux-hardened/repos/extra-x86_64/linux.preset

---+
 60-linux.hook |   24 
 90-linux.hook |   22 
 PKGBUILD  |  480 -
 config.x86_64 |19856 
 linux.install |   26 
 linux.preset  |   28 
 6 files changed, 10218 insertions(+), 10218 deletions(-)

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


[arch-commits] Commit in linux-hardened/trunk (PKGBUILD config.x86_64)

2019-05-22 Thread Levente Polyak via arch-commits
Date: Wednesday, May 22, 2019 @ 21:04:58
  Author: anthraxx
Revision: 353877

upgpkg: linux-hardened 5.0.18.a-1

Modified:
  linux-hardened/trunk/PKGBUILD
  linux-hardened/trunk/config.x86_64

---+
 PKGBUILD  |8 
 config.x86_64 |2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 20:55:01 UTC (rev 353876)
+++ PKGBUILD2019-05-22 21:04:58 UTC (rev 353877)
@@ -4,7 +4,7 @@
 # Contributor: Thomas Baechler 
 
 pkgbase=linux-hardened
-_pkgver=5.0.17
+_pkgver=5.0.18
 _hardenedver=a
 _srcname=linux-${_pkgver}
 pkgver=${_pkgver}.${_hardenedver}
@@ -23,11 +23,11 @@
 linux.preset   # standard config files for mkinitcpio ramdisk
 )
 replaces=('linux-grsec')
-sha256sums=('ab37029bdc9a4e3fc5dc2cc6f6e8f506a62fa42f68e50897c24fc9dbba789629'
+sha256sums=('7fbd0b3d90a7a28a013f1e3f006c02235c12b41fd020460722a0b7c9936db0d8'
 'SKIP'
-'12a6c606905b4b425fc1e883e67cf5a0f28730fa4ae72637740ac98176b8aae6'
+'e9c0b0d389c166ea6f2c0e5d526d294a5fa39ddc04a6733c2aa2fd5c60962269'
 'SKIP'
-'8c3c3e320f549ba189c5dd993520715aa7e14ac09b46de41ab5f4e202cdf'
+'4552a47128889708014a7162199c8afab3f1f06f3c35d7f2f92208f71128fff4'
 'ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21'
 'c043f3033bb781e2688794a59f6d1f7ed49ef9b13eb77ff9a425df33a244a636'
 'ad6344badc91ad0630caacde83f7f9b97276f80d26a20619a87952be65492c65')

Modified: config.x86_64
===
--- config.x86_64   2019-05-22 20:55:01 UTC (rev 353876)
+++ config.x86_64   2019-05-22 21:04:58 UTC (rev 353877)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.0.17 Kernel Configuration
+# Linux/x86 5.0.18 Kernel Configuration
 #
 
 #


[arch-commits] Commit in postgresql/repos/extra-x86_64 (18 files)

2019-05-22 Thread Levente Polyak via arch-commits
Date: Wednesday, May 22, 2019 @ 20:55:01
  Author: anthraxx
Revision: 353876

archrelease: copy trunk to extra-x86_64

Added:
  postgresql/repos/extra-x86_64/PKGBUILD
(from rev 353875, postgresql/trunk/PKGBUILD)
  postgresql/repos/extra-x86_64/postgresql-check-db-dir
(from rev 353875, postgresql/trunk/postgresql-check-db-dir)
  postgresql/repos/extra-x86_64/postgresql-perl-rpath.patch
(from rev 353875, postgresql/trunk/postgresql-perl-rpath.patch)
  postgresql/repos/extra-x86_64/postgresql-run-socket.patch
(from rev 353875, postgresql/trunk/postgresql-run-socket.patch)
  postgresql/repos/extra-x86_64/postgresql.logrotate
(from rev 353875, postgresql/trunk/postgresql.logrotate)
  postgresql/repos/extra-x86_64/postgresql.pam
(from rev 353875, postgresql/trunk/postgresql.pam)
  postgresql/repos/extra-x86_64/postgresql.service
(from rev 353875, postgresql/trunk/postgresql.service)
  postgresql/repos/extra-x86_64/postgresql.sysusers
(from rev 353875, postgresql/trunk/postgresql.sysusers)
  postgresql/repos/extra-x86_64/postgresql.tmpfiles
(from rev 353875, postgresql/trunk/postgresql.tmpfiles)
Deleted:
  postgresql/repos/extra-x86_64/PKGBUILD
  postgresql/repos/extra-x86_64/postgresql-check-db-dir
  postgresql/repos/extra-x86_64/postgresql-perl-rpath.patch
  postgresql/repos/extra-x86_64/postgresql-run-socket.patch
  postgresql/repos/extra-x86_64/postgresql.logrotate
  postgresql/repos/extra-x86_64/postgresql.pam
  postgresql/repos/extra-x86_64/postgresql.service
  postgresql/repos/extra-x86_64/postgresql.sysusers
  postgresql/repos/extra-x86_64/postgresql.tmpfiles

-+
 PKGBUILD|  438 +-
 postgresql-check-db-dir |   98 -
 postgresql-perl-rpath.patch |   26 +-
 postgresql-run-socket.patch |   24 +-
 postgresql.logrotate|8 
 postgresql.pam  |6 
 postgresql.service  |   70 +++---
 postgresql.sysusers |2 
 postgresql.tmpfiles |2 
 9 files changed, 337 insertions(+), 337 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-22 20:54:52 UTC (rev 353875)
+++ PKGBUILD2019-05-22 20:55:01 UTC (rev 353876)
@@ -1,219 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Dan McGee 
-
-pkgbase=postgresql
-pkgname=('postgresql-libs' 'postgresql-docs' 'postgresql')
-pkgver=11.2
-_majorver=${pkgver%.*}
-pkgrel=3
-pkgdesc='Sophisticated object-relational DBMS'
-url='https://www.postgresql.org/'
-arch=('x86_64')
-license=('custom:PostgreSQL')
-makedepends=('krb5' 'libxml2' 'python' 'python2' 'perl' 'tcl>=8.6.0' 
'openssl>=1.0.0'
- 'pam' 'zlib' 'icu' 'systemd' 'libldap' 'llvm' 'clang')
-source=(https://ftp.postgresql.org/pub/source/v${pkgver}/postgresql-${pkgver}.tar.bz2
-postgresql-run-socket.patch
-postgresql-perl-rpath.patch
-postgresql.pam
-postgresql.logrotate
-postgresql.service
-postgresql-check-db-dir
-postgresql.sysusers
-postgresql.tmpfiles)
-sha256sums=('2676b9ce09c21978032070b6794696e0aa5a476e3d21d60afc036dc0a9c09405'
-'8538619cb8bea51078b605ad64fe22abd6050373c7ae3ad6595178da52f6a7d9'
-'5f73b54ca6206bd2c469c507830261ebd167baca074698d8889d769c33f98a31'
-'57dfd072fd7ef0018c6b0a798367aac1abb5979060ff3f9df22d1048bb71c0d5'
-'6abb842764bbed74ea4a269d24f1e73d1c0b1d8ecd6e2e6fb5fb10590298605e'
-'ad025a5fb623b1a1e9dff0cc62cc63f66244bb27d81370a6251aa29e8574be94'
-'2bbd8c4e51b70223d274fef3a167af096f44af3d3c41ae505ad11c606674e7c5'
-'7fa8f0ef3f9d40abd4749cc327c2f52478cb6dfb6e2405bd0279c95e9ff99f12'
-'ff7c84f78f73b87ade8e2d91d2958808be5a9af79c8b13430238ae953c7fe853')
-sha512sums=('dae00a543fdeed36bc338abd4ccfd9fe9a8b6b2b7eaa00b1078e4f27802de75a461c27da2800bc9dd64e658681e5787bd03764bde79940656cae1e8c8716f011'
-
'031efe12d18ce386989062327cdbbe611c5ef1f94e4e1bead502304cb3e2d410af533d3c7f1109d24f9da9708214fe32f9a10ba373a3ca8d507bdb521fbb75f7'
-
'38302242b30c01c7981574ed28d9cbd9dc73bf6b56ba3a032afb5d0885ae83e5aa72ce578bf2422214dfa6c46f09d0bdd7cccaeb3c25d58754eb1a34f8bf5615'
-
'1e6183ab0eb812b3ef687ac2c26ce78f7cb30540f606d20023669ac00ba04075487fb72e4dc89cc05dab0269ff6aca98fc1167cc75669c225b88b592482fbf67'
-
'9ab4da01337ffbab8faec0e220aaa2a642dbfeccf7232ef2645bdc2177a953f17ee3cc14a4d8f8ebd064e1dae8b3dba6029adbffb8afaabea383963213941ba8'
-
'acd60166ff513b16778705e824944945cd0a98abc519fa5f0232252e0e9c85460c6f8b85459d9692d1f3df1caaaf8909c3e7f785be99c2d3fb98a10b2641a795'
-
'73af1cd31638791f81aa2623d51188364107a57b55e4deba6691cd99e96ae5ea0dd94b25a0e95d9e21ac64f36f71919a05cd31233c754bde025215a5a02e055c'
-
'36f7a5d38370fdc4d4267fd5a8a8330f152a1077bf0f065b89d4a7b8112ccd42be2c46c863791b77de02013f28275a42219f4236e7cb837c3f8cfd5fcc

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

2019-05-22 Thread Levente Polyak via arch-commits
Date: Wednesday, May 22, 2019 @ 20:54:52
  Author: anthraxx
Revision: 353875

upgpkg: postgresql 11.3-1

Modified:
  postgresql/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 20:26:51 UTC (rev 353874)
+++ PKGBUILD2019-05-22 20:54:52 UTC (rev 353875)
@@ -3,9 +3,9 @@
 
 pkgbase=postgresql
 pkgname=('postgresql-libs' 'postgresql-docs' 'postgresql')
-pkgver=11.2
+pkgver=11.3
 _majorver=${pkgver%.*}
-pkgrel=3
+pkgrel=1
 pkgdesc='Sophisticated object-relational DBMS'
 url='https://www.postgresql.org/'
 arch=('x86_64')
@@ -21,7 +21,7 @@
 postgresql-check-db-dir
 postgresql.sysusers
 postgresql.tmpfiles)
-sha256sums=('2676b9ce09c21978032070b6794696e0aa5a476e3d21d60afc036dc0a9c09405'
+sha256sums=('2a85e082fc225944821dfd23990e32dfcd2284c19060864b0ad4ca537d30522d'
 '8538619cb8bea51078b605ad64fe22abd6050373c7ae3ad6595178da52f6a7d9'
 '5f73b54ca6206bd2c469c507830261ebd167baca074698d8889d769c33f98a31'
 '57dfd072fd7ef0018c6b0a798367aac1abb5979060ff3f9df22d1048bb71c0d5'
@@ -30,7 +30,7 @@
 '2bbd8c4e51b70223d274fef3a167af096f44af3d3c41ae505ad11c606674e7c5'
 '7fa8f0ef3f9d40abd4749cc327c2f52478cb6dfb6e2405bd0279c95e9ff99f12'
 'ff7c84f78f73b87ade8e2d91d2958808be5a9af79c8b13430238ae953c7fe853')
-sha512sums=('dae00a543fdeed36bc338abd4ccfd9fe9a8b6b2b7eaa00b1078e4f27802de75a461c27da2800bc9dd64e658681e5787bd03764bde79940656cae1e8c8716f011'
+sha512sums=('03269bb88f44f3a81d5e3a8ca2fe59f63f784436840f08870b2e539755629cbde8ac288e0bb4472ee93294a88b37b814ddff48444254c1a3f7a10b4bb64f7133'
 
'031efe12d18ce386989062327cdbbe611c5ef1f94e4e1bead502304cb3e2d410af533d3c7f1109d24f9da9708214fe32f9a10ba373a3ca8d507bdb521fbb75f7'
 
'38302242b30c01c7981574ed28d9cbd9dc73bf6b56ba3a032afb5d0885ae83e5aa72ce578bf2422214dfa6c46f09d0bdd7cccaeb3c25d58754eb1a34f8bf5615'
 
'1e6183ab0eb812b3ef687ac2c26ce78f7cb30540f606d20023669ac00ba04075487fb72e4dc89cc05dab0269ff6aca98fc1167cc75669c225b88b592482fbf67'


[arch-commits] Commit in haskell-tamarin-prover-term/repos (2 files)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 20:32:19
  Author: felixonmars
Revision: 468684

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-tamarin-prover-term/repos/community-staging-x86_64/
  haskell-tamarin-prover-term/repos/community-staging-x86_64/PKGBUILD
(from rev 468683, haskell-tamarin-prover-term/trunk/PKGBUILD)

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

Copied: haskell-tamarin-prover-term/repos/community-staging-x86_64/PKGBUILD 
(from rev 468683, haskell-tamarin-prover-term/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 20:32:19 UTC (rev 468684)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tamarin-prover-term
+pkgname=haskell-tamarin-prover-term
+pkgver=1.4.1
+pkgrel=16
+pkgdesc="Term manipulation library for the tamarin prover"
+url="http://www.infsec.ethz.ch/research/software/tamarin";
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hunit' 'haskell-attoparsec' 'haskell-dlist'
+ 'haskell-safe' 'haskell-tamarin-prover-utils')
+makedepends=('ghc')
+source=("tamarin-prover-$pkgver.tar.gz::https://github.com/tamarin-prover/tamarin-prover/archive/$pkgver.tar.gz";)
+sha512sums=('4d3aeae02be5d430bff6c55d78656e3c9a648674d235bfeb36ce227a39abd3054a132b99ff8040abf05d8e26506fe85d21ecfb6fce73062dd45b5ba98d941144')
+
+build() {
+cd "${srcdir}/tamarin-prover-${pkgver}/lib/term"
+
+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}/tamarin-prover-${pkgver}/lib/term"
+
+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"
+}


[arch-commits] Commit in haskell-tamarin-prover-term/trunk (PKGBUILD)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 20:32:07
  Author: felixonmars
Revision: 468683

upgpkg: haskell-tamarin-prover-term 1.4.1-16

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-tamarin-prover-term/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 20:31:03 UTC (rev 468682)
+++ PKGBUILD2019-05-22 20:32:07 UTC (rev 468683)
@@ -4,7 +4,7 @@
 _hkgname=tamarin-prover-term
 pkgname=haskell-tamarin-prover-term
 pkgver=1.4.1
-pkgrel=15
+pkgrel=16
 pkgdesc="Term manipulation library for the tamarin prover"
 url="http://www.infsec.ethz.ch/research/software/tamarin";
 license=("GPL")


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 20:30:51
  Author: felixonmars
Revision: 468681

upgpkg: haskell-servant-swagger 1.1.7-40

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-servant-swagger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 20:29:38 UTC (rev 468680)
+++ PKGBUILD2019-05-22 20:30:51 UTC (rev 468681)
@@ -4,7 +4,7 @@
 _hkgname=servant-swagger
 pkgname=haskell-servant-swagger
 pkgver=1.1.7
-pkgrel=39
+pkgrel=40
 pkgdesc="Generate Swagger specification for your servant API."
 url="https://github.com/haskell-servant/servant-swagger";
 license=("BSD")


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 20:31:03
  Author: felixonmars
Revision: 468682

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-servant-swagger/repos/community-staging-x86_64/PKGBUILD (from 
rev 468681, haskell-servant-swagger/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 20:31:03 UTC (rev 468682)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=servant-swagger
+pkgname=haskell-servant-swagger
+pkgver=1.1.7
+pkgrel=40
+pkgdesc="Generate Swagger specification for your servant API."
+url="https://github.com/haskell-servant/servant-swagger";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 'haskell-http-media'
+ 'haskell-insert-ordered-containers' 'haskell-lens' 'haskell-servant'
+ 'haskell-singleton-bool' 'haskell-swagger2' 
'haskell-unordered-containers'
+ 'haskell-hspec' 'haskell-quickcheck')
+makedepends=('ghc' 'haskell-base-compat' 'haskell-cabal-doctest' 
'haskell-doctest'
+ 'haskell-hspec-discover' 'haskell-utf8-string')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('1c9d6a481a361950cb6f345af37698f686a00a66b534cf729aef735fd5fa3720eced7a67b837d03af4b230c7ef6683eb226e00d455cba7fddb9e57cb26763183')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e 's/< *2.7/<3/' -e 's/>=2.3/>=2.2/' -e 's/< *0.16/<1/' -e 's/< 
*0.8/<1/' $_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 || 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-swagger2/repos (3 files)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 20:29:38
  Author: felixonmars
Revision: 468680

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-swagger2/repos/community-staging-x86_64/
  haskell-swagger2/repos/community-staging-x86_64/PKGBUILD
(from rev 468679, haskell-swagger2/trunk/PKGBUILD)
  haskell-swagger2/repos/community-staging-x86_64/generics-sop-0.5.patch
(from rev 468679, haskell-swagger2/trunk/generics-sop-0.5.patch)

+
 PKGBUILD   |   57 +
 generics-sop-0.5.patch |   59 +++
 2 files changed, 116 insertions(+)

Copied: haskell-swagger2/repos/community-staging-x86_64/PKGBUILD (from rev 
468679, haskell-swagger2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 20:29:38 UTC (rev 468680)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=swagger2
+pkgname=haskell-swagger2
+pkgver=2.3.1.1
+pkgrel=33
+pkgdesc="Swagger 2.0 data model"
+url="https://github.com/GetShopTV/swagger2";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-base-compat-batteries' 
'haskell-cookie'
+ 'haskell-hashable' 'haskell-generics-sop' 'haskell-http-media'
+ 'haskell-insert-ordered-containers' 'haskell-lens' 'haskell-network' 
'haskell-quickcheck'
+ 'haskell-scientific' 'haskell-transformers-compat' 
'haskell-unordered-containers'
+ 'haskell-vector' 'haskell-uuid-types')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hunit' 
'haskell-quickcheck-instances'
+ 'haskell-hspec-discover' 'haskell-doctest' 
'haskell-cabal-doctest' 'haskell-glob'
+ 'haskell-utf8-string')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";
+generics-sop-0.5.patch)
+sha512sums=('1834e75cc6c8ff8287605e93d2b4d665b7d8de7e7e00f6537d25e0f54934c85e5431e5f2f1beb5264382c4b81f5ed19cc2b7af1f9323ebee9502e19d73d49fc1'
+
'8f1b74df57a090f5cb1cfb9551288dc6ade326c486ebb432767bfb1a0571ff1104269b19b4e2fbed8c5427cd432b3d0c1d18adb19f971b5fd441affbc88c27b6')
+
+prepare() {
+cd $_hkgname-$pkgver
+patch -p1 -i ../generics-sop-0.5.patch
+sed -i 's/< *0.8/<1/' $_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"
+}

Copied: haskell-swagger2/repos/community-staging-x86_64/generics-sop-0.5.patch 
(from rev 468679, haskell-swagger2/trunk/generics-sop-0.5.patch)
===
--- community-staging-x86_64/generics-sop-0.5.patch 
(rev 0)
+++ community-staging-x86_64/generics-sop-0.5.patch 2019-05-22 20:29:38 UTC 
(rev 468680)
@@ -0,0 +1,59 @@
+commit 96420ab204b6079eef1331faecf80fa73476c206
+Author: Felix Yan 
+Date:   Fri May 17 03:19:47 2019 +0800
+
+Fix compatibility with generics-sop 0.5
+
+diff --git a/src/Data/Swagger/Internal/AesonUtils.hs 
b/src/Data/Swagger/Internal/AesonUtils.hs
+index c1280f0..c785e76 100644
+--- a/src/Data/Swagger/Internal/AesonUtils.hs
 b/src/Data/Swagger/Internal/AesonUtils.hs
+@@ -144,7 +144,11 @@ sopSwaggerGenericToJSON'
+ -> DatatypeInfo '[xs]
+ -> POP Maybe '[xs]
+ -> [Pair]
++#if MIN_VERSION_generics_sop(0,5,0)
++sopSwaggerGenericToJSON' opts (SOP (Z fields)) (ADT _ _ (Record _ fieldsInfo 
:* Nil) _) (POP (defs :* Nil)) =
++#else
+ sopSwaggerGenericToJSON' opts (SOP (Z fields)) (ADT _ _ (Record _ fieldsInfo 
:* Nil)) (POP (defs :* Nil)) =
++#endif
+ sopSwaggerGenericToJSON'' opts fields fieldsInfo defs
+ sopSwaggerGenericToJSON' _ _ _ _ = error "sopSwaggerGenericToJSON: 
unsupported type"
+ 
+@@ -220,7 +224,11 @@ sopSwaggerGenericParseJSON'
+ -> DatatypeInfo '[xs]
+ -> POP Maybe '[xs]
+ -> Parser (SOP I '[xs])
++#if MIN_VERSION_generics_sop(0,5,0)
+

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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 20:29:23
  Author: felixonmars
Revision: 468679

upgpkg: haskell-swagger2 2.3.1.1-33

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-swagger2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 20:25:54 UTC (rev 468678)
+++ PKGBUILD2019-05-22 20:29:23 UTC (rev 468679)
@@ -4,7 +4,7 @@
 _hkgname=swagger2
 pkgname=haskell-swagger2
 pkgver=2.3.1.1
-pkgrel=32
+pkgrel=33
 pkgdesc="Swagger 2.0 data model"
 url="https://github.com/GetShopTV/swagger2";
 license=("BSD")


[arch-commits] Commit in perl-alien-build/repos/extra-any (PKGBUILD PKGBUILD)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 20:26:51
  Author: felixonmars
Revision: 353874

archrelease: copy trunk to extra-any

Added:
  perl-alien-build/repos/extra-any/PKGBUILD
(from rev 353873, perl-alien-build/trunk/PKGBUILD)
Deleted:
  perl-alien-build/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-22 20:26:37 UTC (rev 353873)
+++ PKGBUILD2019-05-22 20:26:51 UTC (rev 353874)
@@ -1,33 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=perl-alien-build
-pkgver=1.73
-pkgrel=1
-pkgdesc="Build external dependencies for use in CPAN"
-arch=('any')
-license=('PerlArtistic')
-url="https://metacpan.org/release/Alien-Build";
-depends=('perl-capture-tiny' 'perl-ffi-checklib' 'perl-file-chdir' 
'perl-file-which'
- 'perl-path-tiny')
-makedepends=('perl-test2-suite')
-checkdepends=('perl-alien-base-modulebuild' 'perl-alien-cmake3' 
'perl-env-shellwords'
-  'perl-pkgconfig' 'perl-pkgconfig-libpkgconf' 'perl-readonly' 
'perl-sort-versions')
-options=('!emptydirs')
-source=("https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/Alien-Build-$pkgver.tar.gz";)
-sha512sums=('d7f0f63d67150f8d1bb418309a828bc8e0a1d6f69c5ab8f5d1cf727495c07a3a22e5175e305e84a8721fc4c7b15f3494b3eb31eaf4fc1b7fe21ec1bba0702023')
-
-build() {
-  cd Alien-Build-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd Alien-Build-$pkgver
-  make test
-}
-
-package() {
-  cd Alien-Build-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: perl-alien-build/repos/extra-any/PKGBUILD (from rev 353873, 
perl-alien-build/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-22 20:26:51 UTC (rev 353874)
@@ -0,0 +1,33 @@
+# Maintainer: Felix Yan 
+
+pkgname=perl-alien-build
+pkgver=1.74
+pkgrel=1
+pkgdesc="Build external dependencies for use in CPAN"
+arch=('any')
+license=('PerlArtistic')
+url="https://metacpan.org/release/Alien-Build";
+depends=('perl-capture-tiny' 'perl-ffi-checklib' 'perl-file-chdir' 
'perl-file-which'
+ 'perl-path-tiny')
+makedepends=('perl-test2-suite')
+checkdepends=('perl-alien-base-modulebuild' 'perl-alien-cmake3' 
'perl-env-shellwords'
+  'perl-pkgconfig' 'perl-pkgconfig-libpkgconf' 'perl-readonly' 
'perl-sort-versions')
+options=('!emptydirs')
+source=("https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/Alien-Build-$pkgver.tar.gz";)
+sha512sums=('8e77a762e3e1ff14cef7d3cbcdc4471787be821ac7264a2dccf231679cc82b06de5022979b3e3783e434e271eb15ceff4ec9eaf45216a34b9a75466695bde1c8')
+
+build() {
+  cd Alien-Build-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd Alien-Build-$pkgver
+  make test
+}
+
+package() {
+  cd Alien-Build-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in perl-alien-build/trunk (PKGBUILD)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 20:26:37
  Author: felixonmars
Revision: 353873

upgpkg: perl-alien-build 1.74-1

Modified:
  perl-alien-build/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 19:24:48 UTC (rev 353872)
+++ PKGBUILD2019-05-22 20:26:37 UTC (rev 353873)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=perl-alien-build
-pkgver=1.73
+pkgver=1.74
 pkgrel=1
 pkgdesc="Build external dependencies for use in CPAN"
 arch=('any')
@@ -14,7 +14,7 @@
   'perl-pkgconfig' 'perl-pkgconfig-libpkgconf' 'perl-readonly' 
'perl-sort-versions')
 options=('!emptydirs')
 
source=("https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/Alien-Build-$pkgver.tar.gz";)
-sha512sums=('d7f0f63d67150f8d1bb418309a828bc8e0a1d6f69c5ab8f5d1cf727495c07a3a22e5175e305e84a8721fc4c7b15f3494b3eb31eaf4fc1b7fe21ec1bba0702023')
+sha512sums=('8e77a762e3e1ff14cef7d3cbcdc4471787be821ac7264a2dccf231679cc82b06de5022979b3e3783e434e271eb15ceff4ec9eaf45216a34b9a75466695bde1c8')
 
 build() {
   cd Alien-Build-$pkgver


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 20:25:54
  Author: felixonmars
Revision: 468678

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-statistics/repos/community-staging-x86_64/PKGBUILD (from rev 
468677, haskell-statistics/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 20:25:54 UTC (rev 468678)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=statistics
+pkgname=haskell-statistics
+pkgver=0.15.0.0
+pkgrel=21
+pkgdesc="A library of statistical types, data, and functions"
+url="https://github.com/bos/statistics";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-base-orphans' 
'haskell-data-default-class'
+ 'haskell-dense-linear-algebra' 'haskell-math-functions' 
'haskell-monad-par'
+ 'haskell-mwc-random' 'haskell-primitive' 'haskell-vector' 
'haskell-vector-algorithms'
+ 'haskell-vector-binary-instances' 'haskell-vector-th-unbox')
+makedepends=('ghc' 'haskell-hunit' 'haskell-quickcheck' 'haskell-erf' 
'haskell-ieee754'
+ 'haskell-test-framework' 'haskell-test-framework-hunit'
+ 'haskell-test-framework-quickcheck2')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('89b44ab8662308dc17769c47c9791b1b673fd3736348ef0e005b0e00ec120145ee8a1174d2e5a92fdb6e00fd441e389407cdcbd99c55b6523cc79ba82949')
+
+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 || 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-statistics/trunk (PKGBUILD)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 20:25:42
  Author: felixonmars
Revision: 468677

upgpkg: haskell-statistics 0.15.0.0-21

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-statistics/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 20:22:29 UTC (rev 468676)
+++ PKGBUILD2019-05-22 20:25:42 UTC (rev 468677)
@@ -4,7 +4,7 @@
 _hkgname=statistics
 pkgname=haskell-statistics
 pkgver=0.15.0.0
-pkgrel=20
+pkgrel=21
 pkgdesc="A library of statistical types, data, and functions"
 url="https://github.com/bos/statistics";
 license=("BSD")


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 20:22:29
  Author: felixonmars
Revision: 468676

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-spdx/repos/community-staging-x86_64/PKGBUILD (from rev 468675, 
haskell-spdx/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 20:22:29 UTC (rev 468676)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=spdx
+pkgname=haskell-spdx
+pkgver=1
+pkgrel=12
+pkgdesc="SPDX license expression language, Extras"
+url="https://github.com/phadej/spdx";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-base-compat' 'haskell-tasty' 
'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('abd0bdbfbe62f515a1bf706e8235b20ccc8f703f14f95fe231c065fc94a39c1a77a4d8f01907113cb895108d5331c65492831ffdda1f1c8bdff71af8687d')
+
+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
+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-spdx/trunk (PKGBUILD)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 20:22:16
  Author: felixonmars
Revision: 468675

upgpkg: haskell-spdx 1-12

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-spdx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 20:21:40 UTC (rev 468674)
+++ PKGBUILD2019-05-22 20:22:16 UTC (rev 468675)
@@ -4,7 +4,7 @@
 _hkgname=spdx
 pkgname=haskell-spdx
 pkgver=1
-pkgrel=11
+pkgrel=12
 pkgdesc="SPDX license expression language, Extras"
 url="https://github.com/phadej/spdx";
 license=("BSD")


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 20:21:40
  Author: felixonmars
Revision: 468674

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-sourcemap/repos/community-staging-x86_64/PKGBUILD (from rev 
468673, haskell-sourcemap/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 20:21:40 UTC (rev 468674)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=sourcemap
+pkgname=haskell-sourcemap
+pkgver=0.1.6
+pkgrel=125
+pkgdesc="Implementation of source maps as proposed by Google and Mozilla."
+url="https://hackage.haskell.org/package/${_hkgname}";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-attoparsec" 
"haskell-unordered-containers"
+ "haskell-utf8-string")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha256sums=('b9a04cccb4fe7eea8b37a2eaf2bc776eae5640038ab76fb948c5a3ea09a9ce7a')
+
+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-sourcemap/trunk (PKGBUILD)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 20:21:27
  Author: felixonmars
Revision: 468673

upgpkg: haskell-sourcemap 0.1.6-125

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-sourcemap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 20:20:52 UTC (rev 468672)
+++ PKGBUILD2019-05-22 20:21:27 UTC (rev 468673)
@@ -4,7 +4,7 @@
 _hkgname=sourcemap
 pkgname=haskell-sourcemap
 pkgver=0.1.6
-pkgrel=124
+pkgrel=125
 pkgdesc="Implementation of source maps as proposed by Google and Mozilla."
 url="https://hackage.haskell.org/package/${_hkgname}";
 license=("BSD")


[arch-commits] Commit in haskell-snap-server/repos/community-staging-x86_64 (2 files)

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 20:20:52
  Author: felixonmars
Revision: 468672

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-snap-server/repos/community-staging-x86_64/PKGBUILD
(from rev 468671, haskell-snap-server/trunk/PKGBUILD)
Deleted:
  haskell-snap-server/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-22 20:20:38 UTC (rev 468671)
+++ PKGBUILD2019-05-22 20:20:52 UTC (rev 468672)
@@ -1,60 +0,0 @@
-# Maintainer: Felix Yan 
-
-_hkgname=snap-server
-pkgname=haskell-snap-server
-pkgver=1.1.1.1
-pkgrel=33
-pkgdesc="A web server for the Snap Framework"
-url="https://github.com/snapframework/snap-server";
-license=('BSD')
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-attoparsec' 'haskell-blaze-builder' 
'haskell-case-insensitive'
- 'haskell-clock' 'haskell-io-streams' 'haskell-io-streams-haproxy' 
'haskell-lifted-base'
- 'haskell-network' 'haskell-old-locale' 'haskell-snap-core' 
'haskell-unix-compat'
- 'haskell-vector')
-makedepends=('ghc')
-checkdepends=('haskell-base16-bytestring' 'haskell-monad-control' 
'haskell-random'
-  'haskell-threads' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-http-streams'
-  'haskell-http-common' 'haskell-parallel' 'haskell-test-framework'
-  'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2')
-source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('ed39f3ab22880b4651173c5942b10d17d8b3ecf734bd3e3c1724e8fe90303a41fb69543bf4e4868416bf596db34584c17065d960d07f0247364aca8a6f20bab1')
-
-prepare() {
-cd $_hkgname-$pkgver
-sed -i -e '/bytestring-builder/d' $_hkgname.cabal
-}
-
-build() {
-cd $_hkgname-$pkgver
-
-if (( CHECKFUNC )); then
-_opts=('--enable-tests')
-else
-_opts=('--disable-tests')
-fi
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
---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"
-}

Copied: haskell-snap-server/repos/community-staging-x86_64/PKGBUILD (from rev 
468671, haskell-snap-server/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-22 20:20:52 UTC (rev 468672)
@@ -0,0 +1,60 @@
+# Maintainer: Felix Yan 
+
+_hkgname=snap-server
+pkgname=haskell-snap-server
+pkgver=1.1.1.1
+pkgrel=34
+pkgdesc="A web server for the Snap Framework"
+url="https://github.com/snapframework/snap-server";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-blaze-builder' 
'haskell-case-insensitive'
+ 'haskell-clock' 'haskell-io-streams' 'haskell-io-streams-haproxy' 
'haskell-lifted-base'
+ 'haskell-network' 'haskell-old-locale' 'haskell-snap-core' 
'haskell-unix-compat'
+ 'haskell-vector')
+makedepends=('ghc')
+checkdepends=('haskell-base16-bytestring' 'haskell-monad-control' 
'haskell-random'
+  'haskell-threads' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-http-streams'
+  'haskell-http-common' 'haskell-parallel' 'haskell-test-framework'
+  'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('ed39f3ab22880b4651173c5942b10d17d8b3ecf734bd3e3c1724e8fe90303a41fb69543bf4e4868416bf596db34584c17065d960d07f0247364aca8a6f20bab1')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e '/bytestring-builder/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=

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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 20:20:38
  Author: felixonmars
Revision: 468671

upgpkg: haskell-snap-server 1.1.1.1-34

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-snap-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 20:18:20 UTC (rev 468670)
+++ PKGBUILD2019-05-22 20:20:38 UTC (rev 468671)
@@ -3,7 +3,7 @@
 _hkgname=snap-server
 pkgname=haskell-snap-server
 pkgver=1.1.1.1
-pkgrel=33
+pkgrel=34
 pkgdesc="A web server for the Snap Framework"
 url="https://github.com/snapframework/snap-server";
 license=('BSD')


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 20:18:20
  Author: felixonmars
Revision: 468670

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-http-streams/repos/community-staging-x86_64/PKGBUILD (from rev 
468669, haskell-http-streams/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-05-22 20:18:20 UTC (rev 468670)
@@ -0,0 +1,59 @@
+# Maintainer: Felix Yan 
+
+_hkgname=http-streams
+pkgname=haskell-http-streams
+pkgver=0.8.6.1
+pkgrel=115
+pkgdesc="An HTTP client using io-streams"
+url="https://github.com/afcowie/http-streams";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-blaze-builder'
+ 'haskell-case-insensitive' 'haskell-io-streams' 'haskell-hsopenssl'
+ 'haskell-openssl-streams' 'haskell-unordered-containers' 
'haskell-aeson'
+ 'haskell-http-common' 'haskell-network' 'haskell-network-uri')
+makedepends=('ghc')
+checkdepends=('haskell-hunit' 'haskell-aeson-pretty' 'haskell-hspec'
+ 'haskell-hspec-expectations' 'haskell-snap-core' 
'haskell-snap-server'
+ 'haskell-system-fileio' 'haskell-system-filepath')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('76f6aa750974cdca834dfa7de79ebf22faa1cd0a40426d4df19f24b0699ce2d86a0b1f512846da4daf52f210607ed823690bab3fd1bb7ebe117f705a92d4a3b4')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/<.*1.1/<2/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--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 "LICENCE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENCE"
+}


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

2019-05-22 Thread Felix Yan via arch-commits
Date: Wednesday, May 22, 2019 @ 20:18:07
  Author: felixonmars
Revision: 468669

upgpkg: haskell-http-streams 0.8.6.1-115

rebuild with tasty-quickcheck 0.10.1

Modified:
  haskell-http-streams/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 19:47:15 UTC (rev 468668)
+++ PKGBUILD2019-05-22 20:18:07 UTC (rev 468669)
@@ -3,7 +3,7 @@
 _hkgname=http-streams
 pkgname=haskell-http-streams
 pkgver=0.8.6.1
-pkgrel=114
+pkgrel=115
 pkgdesc="An HTTP client using io-streams"
 url="https://github.com/afcowie/http-streams";
 license=('BSD')


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

2019-05-22 Thread Filipe Laíns via arch-commits
Date: Wednesday, May 22, 2019 @ 19:47:05
  Author: ffy00
Revision: 468667

upgpkg: python-wxpython 4.0.5-3

- Fix wrong permissions for serveral files

(sorry, I am really stupid)

Modified:
  python-wxpython/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 19:13:22 UTC (rev 468666)
+++ PKGBUILD2019-05-22 19:47:05 UTC (rev 468667)
@@ -1,10 +1,11 @@
-# Maintainer: Eric Bélanger 
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Eric Bélanger 
 
 pkgname=python-wxpython
 _pkgname=wxPython
 pkgver=4.0.5
-pkgrel=2
-pkgdesc='Phoenix wxWidgets GUI toolkit for Python'
+pkgrel=3
+pkgdesc='Cross-platform GUI toolkit'
 arch=('x86_64')
 license=('custom:wxWindows')
 url='https://www.wxpython.org'
@@ -37,6 +38,6 @@
   python build.py install --destdir="$pkgdir"
 
   install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-#  find "$pkgdir/usr/lib" -type f | xargs chmod 644
+  find "$pkgdir/usr/lib" -type f | xargs chmod 644
 }
 


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

2019-05-22 Thread Filipe Laíns via arch-commits
Date: Wednesday, May 22, 2019 @ 19:47:15
  Author: ffy00
Revision: 468668

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-22 19:47:05 UTC (rev 468667)
+++ PKGBUILD2019-05-22 19:47:15 UTC (rev 468668)
@@ -1,42 +0,0 @@
-# Maintainer: Eric Bélanger 
-
-pkgname=python-wxpython
-_pkgname=wxPython
-pkgver=4.0.5
-pkgrel=2
-pkgdesc='Phoenix wxWidgets GUI toolkit for Python'
-arch=('x86_64')
-license=('custom:wxWindows')
-url='https://www.wxpython.org'
-depends=('wxgtk3' 'python-six')
-optdepends=('python-pypubsub: Alternative to the deprecated wx.lib.pubsub API')
-makedepends=('mesa' 'glu' 'webkit2gtk' 'python-pathlib2' 'python-requests' 
'python-setuptools')
-checkdepends=('xorg-server-xvfb' 'python-pytest' 'python-numpy')
-source=("https://files.pythonhosted.org/packages/source/w/wxPython/wxPython-$pkgver.tar.gz";)
-sha512sums=('9ae419b243da061b467428872d36d6e996c23844ffd040b525014dae0821b8507911854af89056680aaf7207755ded79ce51322a4582c14e11aff5fbdf2f8ed8')
-
-prepare() {
-  sed -i "s|WX_CONFIG = 'wx-config'|WX_CONFIG = 'wx-config-gtk3'|" 
$_pkgname-$pkgver/build.py
-}
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python build.py build --use_syswx --release
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  xvfb-run python build.py test
-}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  python build.py install --destdir="$pkgdir"
-
-  install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-#  find "$pkgdir/usr/lib" -type f | xargs chmod 644
-}
-

Copied: python-wxpython/repos/community-x86_64/PKGBUILD (from rev 468667, 
python-wxpython/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-22 19:47:15 UTC (rev 468668)
@@ -0,0 +1,43 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Eric Bélanger 
+
+pkgname=python-wxpython
+_pkgname=wxPython
+pkgver=4.0.5
+pkgrel=3
+pkgdesc='Cross-platform GUI toolkit'
+arch=('x86_64')
+license=('custom:wxWindows')
+url='https://www.wxpython.org'
+depends=('wxgtk3' 'python-six')
+optdepends=('python-pypubsub: Alternative to the deprecated wx.lib.pubsub API')
+makedepends=('mesa' 'glu' 'webkit2gtk' 'python-pathlib2' 'python-requests' 
'python-setuptools')
+checkdepends=('xorg-server-xvfb' 'python-pytest' 'python-numpy')
+source=("https://files.pythonhosted.org/packages/source/w/wxPython/wxPython-$pkgver.tar.gz";)
+sha512sums=('9ae419b243da061b467428872d36d6e996c23844ffd040b525014dae0821b8507911854af89056680aaf7207755ded79ce51322a4582c14e11aff5fbdf2f8ed8')
+
+prepare() {
+  sed -i "s|WX_CONFIG = 'wx-config'|WX_CONFIG = 'wx-config-gtk3'|" 
$_pkgname-$pkgver/build.py
+}
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python build.py build --use_syswx --release
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  xvfb-run python build.py test
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python build.py install --destdir="$pkgdir"
+
+  install -Dm 644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+  find "$pkgdir/usr/lib" -type f | xargs chmod 644
+}
+


[arch-commits] Commit in cfitsio/repos/testing-x86_64 (PKGBUILD PKGBUILD)

2019-05-22 Thread Antonio Rojas via arch-commits
Date: Wednesday, May 22, 2019 @ 19:24:48
  Author: arojas
Revision: 353872

archrelease: copy trunk to testing-x86_64

Added:
  cfitsio/repos/testing-x86_64/PKGBUILD
(from rev 353871, cfitsio/trunk/PKGBUILD)
Deleted:
  cfitsio/repos/testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-22 19:24:30 UTC (rev 353871)
+++ PKGBUILD2019-05-22 19:24:48 UTC (rev 353872)
@@ -1,45 +0,0 @@
-# Maintainer:
-# Contributor: Andrea Scarpino 
-# Contributor: Tobias Powalowski 
-
-pkgname=cfitsio
-pkgver=3.47
-pkgrel=1
-pkgdesc="A library of C and Fortran subroutines for reading and writing data 
files in FITS (Flexible Image Transport System) data format"
-arch=(x86_64)
-url="https://heasarc.gsfc.nasa.gov/fitsio/";
-license=(custom)
-depends=(curl)
-source=("https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/$pkgname-$pkgver.tar.gz";)
-sha256sums=('418516f10ee1e0f1b520926eeca6b77ce639bed88804c7c545e74f26b3edf4ef')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -e 's|LDFLAGS=.*|LDFLAGS="$LDFLAGS"|g' -i configure.in # Fix LDFLAGS
-  autoreconf -vi
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --enable-reentrant
-  make shared
-  make utils
-}
-
-check() {
-  cd $pkgname-$pkgver
-  LD_LIBRARY_PATH=. ./testprog > testprog.lis
-  [[ -z $(diff testprog.lis testprog.out) ]] || return 1
-  [[ -z $(cmp testprog.fit testprog.std) ]] || return 1
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  install -D -m644 License.txt \
-"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-# Fix conflicts with ccfits and smem
-  rm "$pkgdir"/usr/bin/{cookbook,smem,testprog}
-}

Copied: cfitsio/repos/testing-x86_64/PKGBUILD (from rev 353871, 
cfitsio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-22 19:24:48 UTC (rev 353872)
@@ -0,0 +1,46 @@
+# Maintainer:
+# Contributor: Andrea Scarpino 
+# Contributor: Tobias Powalowski 
+
+pkgname=cfitsio
+pkgver=3.47
+pkgrel=1
+epoch=1
+pkgdesc="A library of C and Fortran subroutines for reading and writing data 
files in FITS (Flexible Image Transport System) data format"
+arch=(x86_64)
+url="https://heasarc.gsfc.nasa.gov/fitsio/";
+license=(custom)
+depends=(curl)
+source=("https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/$pkgname-$pkgver.tar.gz";)
+sha256sums=('418516f10ee1e0f1b520926eeca6b77ce639bed88804c7c545e74f26b3edf4ef')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -e 's|LDFLAGS=.*|LDFLAGS="$LDFLAGS"|g' -i configure.in # Fix LDFLAGS
+  autoreconf -vi
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --enable-reentrant
+  make shared
+  make utils
+}
+
+check() {
+  cd $pkgname-$pkgver
+  LD_LIBRARY_PATH=. ./testprog > testprog.lis
+  [[ -z $(diff testprog.lis testprog.out) ]] || return 1
+  [[ -z $(cmp testprog.fit testprog.std) ]] || return 1
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  install -D -m644 License.txt \
+"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+# Fix conflicts with ccfits and smem
+  rm "$pkgdir"/usr/bin/{cookbook,smem,testprog}
+}


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

2019-05-22 Thread Antonio Rojas via arch-commits
Date: Wednesday, May 22, 2019 @ 19:24:30
  Author: arojas
Revision: 353871

Needs epoch

Modified:
  cfitsio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 19:20:23 UTC (rev 353870)
+++ PKGBUILD2019-05-22 19:24:30 UTC (rev 353871)
@@ -5,6 +5,7 @@
 pkgname=cfitsio
 pkgver=3.47
 pkgrel=1
+epoch=1
 pkgdesc="A library of C and Fortran subroutines for reading and writing data 
files in FITS (Flexible Image Transport System) data format"
 arch=(x86_64)
 url="https://heasarc.gsfc.nasa.gov/fitsio/";


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

2019-05-22 Thread Antonio Rojas via arch-commits
Date: Wednesday, May 22, 2019 @ 19:18:54
  Author: arojas
Revision: 353866

archrelease: copy trunk to staging-x86_64

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

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

Copied: gst-plugins-bad/repos/staging-x86_64/PKGBUILD (from rev 353865, 
gst-plugins-bad/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-05-22 19:18:54 UTC (rev 353866)
@@ -0,0 +1,72 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gst-plugins-bad
+pkgver=1.16.0
+pkgrel=2
+pkgdesc="GStreamer open-source multimedia framework bad plugins"
+url="https://gstreamer.freedesktop.org/";
+arch=(x86_64)
+license=(LGPL)
+depends=(mjpegtools gst-plugins-base-libs curl chromaprint libmms faad2 celt 
libdca libdvdnav
+ libmodplug libgme wayland libofa openjpeg2 libwebp libsrtp gnutls sbc 
rtmpdump libgudev
+ libexif libdvdread libvdpau libmpeg2 wildmidi ladspa openal libusb 
vulkan-icd-loader
+ libfdk-aac faac soundtouch spandsp neon webrtc-audio-processing 
libdc1394 libmpcdec zvbi
+ openexr libbs2b libnice lcms2 bluez-libs glu srt aom x265 liblrdf 
libde265
+ gst-plugins-good)
+makedepends=(python gtk-doc git gobject-introspection gtk3 vulkan-headers 
vulkan-validation-layers
+ librsvg libtiger zbar fluidsynth lilv meson)
+_commit=5fde70bb63a1cbf6f734fb2429e74ffb53126217  # tags/1.16.0^0
+source=("git+https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad.git#commit=$_commit";
+'gst-common::git+https://gitlab.freedesktop.org/gstreamer/common.git')
+sha256sums=('SKIP'
+'SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git config --local submodule.common.url "$srcdir/gst-common"
+  git submodule update
+}
+
+build() {
+  arch-meson $pkgname build \
+-D directfb=disabled \
+-D flite=disabled \
+-D gsm=disabled \
+-D iqa=disabled \
+-D msdk=disabled \
+-D nvdec=disabled \
+-D nvenc=disabled \
+-D opencv=disabled \
+-D openh264=disabled \
+-D openmpt=disabled \
+-D openni2=disabled \
+-D opensles=disabled \
+-D sctp=disabled \
+-D tinyalsa=disabled \
+-D voaacenc=disabled \
+-D voamrwbenc=disabled \
+-D wasapi=disabled \
+-D wpe=disabled \
+-D gobject-cast-checks=disabled \
+-D glib-asserts=disabled \
+-D glib-checks=disabled \
+-D package-name="GStreamer Bad Plugins (Arch Linux)" \
+-D package-origin="https://www.archlinux.org/";
+  ninja -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}


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

2019-05-22 Thread Antonio Rojas via arch-commits
Date: Wednesday, May 22, 2019 @ 19:18:25
  Author: arojas
Revision: 353865

libdc1394 2.2.6 rebuild

Modified:
  gst-plugins-bad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 19:16:22 UTC (rev 353864)
+++ PKGBUILD2019-05-22 19:18:25 UTC (rev 353865)
@@ -3,7 +3,7 @@
 
 pkgname=gst-plugins-bad
 pkgver=1.16.0
-pkgrel=1
+pkgrel=2
 pkgdesc="GStreamer open-source multimedia framework bad plugins"
 url="https://gstreamer.freedesktop.org/";
 arch=(x86_64)


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

2019-05-22 Thread Antonio Rojas via arch-commits
Date: Wednesday, May 22, 2019 @ 19:16:22
  Author: arojas
Revision: 353864

archrelease: copy trunk to staging-x86_64

Added:
  vlc/repos/staging-x86_64/
  vlc/repos/staging-x86_64/PKGBUILD
(from rev 353863, vlc/trunk/PKGBUILD)
  vlc/repos/staging-x86_64/lua53_compat.patch
(from rev 353863, vlc/trunk/lua53_compat.patch)
  vlc/repos/staging-x86_64/update-vlc-plugin-cache.hook
(from rev 353863, vlc/trunk/update-vlc-plugin-cache.hook)

--+
 PKGBUILD |  247 +
 lua53_compat.patch   |   30 
 update-vlc-plugin-cache.hook |   11 +
 3 files changed, 288 insertions(+)

Copied: vlc/repos/staging-x86_64/PKGBUILD (from rev 353863, vlc/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-05-22 19:16:22 UTC (rev 353864)
@@ -0,0 +1,247 @@
+# Maintainer: Levente Polyak 
+# Contributor: Giovanni Scafora 
+# Contributor: Sarah Hay 
+# Contributor: Martin Sandsmark 
+
+pkgname=vlc
+_vlcver=3.0.6
+# optional fixup version including hyphen
+_vlcfixupver=
+pkgver=${_vlcver}${_vlcfixupver//-/.r}
+pkgrel=12
+pkgdesc='Multi-platform MPEG, VCD/DVD, and DivX player'
+url='https://www.videolan.org/vlc/'
+arch=('x86_64')
+license=('LGPL2.1' 'GPL2')
+depends=('a52dec' 'libdvbpsi' 'libxpm' 'libdca' 'libproxy' 'lua' 'libidn'
+ 'libmatroska' 'taglib' 'libmpcdec' 'ffmpeg' 'faad2' 'libupnp' 'libmad'
+ 'libmpeg2' 'xcb-util-keysyms' 'libtar' 'libxinerama' 'libsecret'
+ 'libarchive' 'qt5-base' 'qt5-x11extras' 'qt5-svg' 'freetype2'
+ 'fribidi' 'harfbuzz' 'fontconfig' 'libxml2' 'gnutls' 'libplacebo'
+ 'wayland-protocols' 'aribb24')
+makedepends=('gst-plugins-base-libs' 'live-media' 'libnotify' 'libbluray'
+ 'flac' 'libdc1394' 'libavc1394' 'libcaca' 'gtk3'
+ 'librsvg' 'libgme' 'xosd' 'twolame' 'aalib' 'avahi' 'systemd-libs'
+ 'libmtp' 'libupnp' 'libmicrodns' 'libdvdcss' 'smbclient'
+ 'vcdimager' 'libssh2' 'mesa' 'protobuf' 'libnfs' 'mpg123'
+ 'libdvdread' 'libdvdnav' 'libogg' 'libshout' 'libmodplug' 'libvpx'
+ 'libvorbis' 'speex' 'opus' 'libtheora' 'libpng' 'libjpeg-turbo'
+ 'libx265.so' 'libx264.so' 'zvbi' 'libass' 'libkate' 'libtiger'
+ 'sdl_image' 'libpulse' 'alsa-lib' 'jack' 'libsamplerate' 'libsoxr'
+ 'lirc' 'libgoom2' 'projectm' 'chromaprint' 'aom' 'srt' 'dav1d')
+optdepends=('avahi: service discovery using bonjour protocol'
+'aom: AOM AV1 codec'
+'gst-plugins-base-libs: for libgst plugins'
+'dav1d: dav1d AV1 decoder'
+'libdvdcss: decoding encrypted DVDs'
+'libavc1394: devices using the 1394ta AV/C'
+'libdc1394: IEEE 1394 access plugin'
+'kwallet: kwallet keystore'
+'libva-vdpau-driver: vdpau backend nvidia'
+'libva-intel-driver: video backend intel'
+'libbluray: Blu-Ray video input'
+'flac: Free Lossless Audio Codec plugin'
+'twolame: TwoLAME mpeg2 encoder plugin'
+'libgme: Game Music Emu plugin'
+'vcdimager: navigate VCD with libvcdinfo'
+'libmtp: MTP devices discovery'
+'systemd-libs: udev services discovery'
+'smbclient: SMB access plugin'
+'libcdio: audio CD playback'
+'ttf-freefont: subtitle font '
+'ttf-dejavu: subtitle font'
+'libssh2: sftp access'
+'libnfs: NFS access'
+'mpg123: mpg123 codec'
+'protobuf: chromecast streaming'
+'libmicrodns: mDNS services discovery (chromecast etc)'
+'lua-socket: http interface'
+'live-media: RTSP input'
+'libdvdread: DVD input module'
+'libdvdnav: DVD with navigation input module'
+'libogg: Ogg and OggSpots codec'
+'libshout: shoutcast/icecast output plugin'
+'libmodplug: MOD output plugin'
+'libvpx: VP8 and VP9 codec'
+'libvorbis: Vorbis decoder/encoder'
+'speex: Speex codec'
+'opus: opus codec'
+'libtheora: theora codec'
+'libpng: PNG support'
+'libjpeg-turbo: JPEG support'
+'librsvg: SVG plugin'
+'x264: H264 encoding'
+'x265: HEVC/H.265 encoder'
+'zvbi: VBI/Teletext decoding'
+'libass: Subtitle support'
+'libkate: Kate codec'
+'libtiger: Tiger rendering for Kate streams'
+'sdl_image: SDL image support'
+'srt: SRT input/output plugin'
+'aalib: ASCII art video output'
+'libcaca: colored ASCII art video output'
+'libpulse: PulseAudio audio output'
+'alsa-lib: ALSA audio output'
+'jack: j

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

2019-05-22 Thread Antonio Rojas via arch-commits
Date: Wednesday, May 22, 2019 @ 19:16:00
  Author: arojas
Revision: 353863

libdc1394 2.2.6 rebuild

Modified:
  vlc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 19:06:44 UTC (rev 353862)
+++ PKGBUILD2019-05-22 19:16:00 UTC (rev 353863)
@@ -8,7 +8,7 @@
 # optional fixup version including hyphen
 _vlcfixupver=
 pkgver=${_vlcver}${_vlcfixupver//-/.r}
-pkgrel=11
+pkgrel=12
 pkgdesc='Multi-platform MPEG, VCD/DVD, and DivX player'
 url='https://www.videolan.org/vlc/'
 arch=('x86_64')


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

2019-05-22 Thread Daniel M. Capella via arch-commits
Date: Wednesday, May 22, 2019 @ 19:13:22
  Author: polyzen
Revision: 468666

archrelease: copy trunk to community-any

Added:
  firefox-noscript/repos/community-any/PKGBUILD
(from rev 468665, firefox-noscript/trunk/PKGBUILD)
Deleted:
  firefox-noscript/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-22 19:13:03 UTC (rev 468665)
+++ PKGBUILD2019-05-22 19:13:22 UTC (rev 468666)
@@ -1,25 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Eschwartz 
-# Maintainer: Daniel M. Capella 
-
-pkgname=firefox-noscript
-pkgver=10.6.1
-pkgrel=1
-pkgdesc="Extension for firefox which disables script"
-arch=('any')
-url="https://noscript.net/";
-license=('GPL2')
-groups=('firefox-addons')
-makedepends=('unzip')
-source=(https://secure.informaction.com/download/releases/noscript-${pkgver}.xpi)
-noextract=("noscript-${pkgver}.xpi")
-sha256sums=('b15047d0045d12f28b2e1e444bdb86800257b5ca6cc8f4c8022b20c550cd9727')
-
-package() {
-  depends=('firefox')
-
-  cd "${srcdir}"
-  _extension_id="{73a6fe31-595d-460b-a920-fcc0f8843232}"
-  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
-  install -Dm644 noscript-${pkgver}.xpi "${_extension_dest}.xpi"
-}

Copied: firefox-noscript/repos/community-any/PKGBUILD (from rev 468665, 
firefox-noscript/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-22 19:13:22 UTC (rev 468666)
@@ -0,0 +1,25 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Eschwartz 
+# Maintainer: Daniel M. Capella 
+
+pkgname=firefox-noscript
+pkgver=10.6.2
+pkgrel=1
+pkgdesc="Extension for firefox which disables script"
+arch=('any')
+url="https://noscript.net/";
+license=('GPL2')
+groups=('firefox-addons')
+makedepends=('unzip')
+source=(https://secure.informaction.com/download/releases/noscript-${pkgver}.xpi)
+noextract=("noscript-${pkgver}.xpi")
+sha256sums=('040bc6eaf5bdb72d5851c1f7cdc3be39302859f53dbd479757a2723e639a995f')
+
+package() {
+  depends=('firefox')
+
+  cd "${srcdir}"
+  _extension_id="{73a6fe31-595d-460b-a920-fcc0f8843232}"
+  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
+  install -Dm644 noscript-${pkgver}.xpi "${_extension_dest}.xpi"
+}


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

2019-05-22 Thread Daniel M. Capella via arch-commits
Date: Wednesday, May 22, 2019 @ 19:13:03
  Author: polyzen
Revision: 468665

upgpkg: firefox-noscript 10.6.2-1

Modified:
  firefox-noscript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 19:08:16 UTC (rev 468664)
+++ PKGBUILD2019-05-22 19:13:03 UTC (rev 468665)
@@ -3,7 +3,7 @@
 # Maintainer: Daniel M. Capella 
 
 pkgname=firefox-noscript
-pkgver=10.6.1
+pkgver=10.6.2
 pkgrel=1
 pkgdesc="Extension for firefox which disables script"
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('unzip')
 
source=(https://secure.informaction.com/download/releases/noscript-${pkgver}.xpi)
 noextract=("noscript-${pkgver}.xpi")
-sha256sums=('b15047d0045d12f28b2e1e444bdb86800257b5ca6cc8f4c8022b20c550cd9727')
+sha256sums=('040bc6eaf5bdb72d5851c1f7cdc3be39302859f53dbd479757a2723e639a995f')
 
 package() {
   depends=('firefox')


[arch-commits] Commit in badtouch/repos/community-x86_64 (4 files)

2019-05-22 Thread Levente Polyak via arch-commits
Date: Wednesday, May 22, 2019 @ 19:08:16
  Author: anthraxx
Revision: 468664

archrelease: copy trunk to community-x86_64

Added:
  badtouch/repos/community-x86_64/PKGBUILD
(from rev 468663, badtouch/trunk/PKGBUILD)
  badtouch/repos/community-x86_64/badtouch.install
(from rev 468663, badtouch/trunk/badtouch.install)
Deleted:
  badtouch/repos/community-x86_64/PKGBUILD
  badtouch/repos/community-x86_64/badtouch.install

--+
 PKGBUILD |   77 +++--
 badtouch.install |   18 ++--
 2 files changed, 49 insertions(+), 46 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-22 19:04:57 UTC (rev 468663)
+++ PKGBUILD2019-05-22 19:08:16 UTC (rev 468664)
@@ -1,37 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: kpcyrd 
-
-pkgname=badtouch
-pkgver=0.6.1
-pkgrel=1
-pkgdesc='Scriptable network authentication cracker'
-url='https://github.com/kpcyrd/badtouch'
-depends=('openssl' 'libcap')
-makedepends=('cargo')
-arch=('x86_64')
-license=('GPL3')
-install=badtouch.install
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/kpcyrd/${pkgname}/archive/v${pkgver}.tar.gz)
-sha256sums=('62181ac05a68a552e1984dd42206f6a5ca195e51addc48cbfdf55a60afc7c3ae')
-sha512sums=('607f32de46540a836b21dfd7f33457c33f2f84136d198e365d06eb41f2a95c73414bf951ab92d861edbeca327f24d0c7580b9a349291caf527fd150930018d69')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  cargo build --release --locked
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  cargo test --release --locked
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm 755 target/release/${pkgname} -t "${pkgdir}/usr/bin"
-  install -Dm 644 docs/badtouch.1 -t "${pkgdir}/usr/share/man/man1"
-  install -Dm 644 scripts/* -t "${pkgdir}/usr/share/doc/${pkgname}/examples"
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: badtouch/repos/community-x86_64/PKGBUILD (from rev 468663, 
badtouch/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-22 19:08:16 UTC (rev 468664)
@@ -0,0 +1,40 @@
+# Maintainer: Levente Polyak 
+# Contributor: kpcyrd 
+
+pkgname=badtouch
+pkgver=0.7.0
+pkgrel=1
+pkgdesc='Scriptable network authentication cracker'
+url='https://github.com/kpcyrd/badtouch'
+depends=('openssl' 'libcap')
+makedepends=('cargo')
+arch=('x86_64')
+license=('GPL3')
+install=badtouch.install
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/kpcyrd/${pkgname}/archive/v${pkgver}.tar.gz
 
${pkgname}-${pkgver}.tar.gz.asc::https://github.com/kpcyrd/${pkgname}/releases/download/v${pkgver}/v${pkgver}.tar.gz.asc)
+sha256sums=('d49eb11825ab56245f82f0958a89ea69edf558c1bd142afba2d4408dc9d20fbb'
+'SKIP')
+sha512sums=('4660e8346ff33398f2bc1a95b37a0a3948f68e5a0456fc119910453785d80cec34bdb309b28c767dcd572ef7f85acb122fb20bde0826141c0703cd6ed2dda2cd'
+'SKIP')
+validpgpkeys=('64B13F7117D6E07D661BBCE0FE763A64F5E54FD6')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cargo build --release --locked
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  cargo test --release --locked
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 755 target/release/${pkgname} -t "${pkgdir}/usr/bin"
+  install -Dm 644 docs/badtouch.1 -t "${pkgdir}/usr/share/man/man1"
+  install -Dm 644 scripts/* -t "${pkgdir}/usr/share/doc/${pkgname}/examples"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:

Deleted: badtouch.install
===
--- badtouch.install2019-05-22 19:04:57 UTC (rev 468663)
+++ badtouch.install2019-05-22 19:08:16 UTC (rev 468664)
@@ -1,9 +0,0 @@
-# vim: ft=sh ts=4 et
-
-post_install() {
-setcap cap_sys_resource=+ep /usr/bin/badtouch
-}
-
-post_upgrade() {
-post_install
-}

Copied: badtouch/repos/community-x86_64/badtouch.install (from rev 468663, 
badtouch/trunk/badtouch.install)
===
--- badtouch.install(rev 0)
+++ badtouch.install2019-05-22 19:08:16 UTC (rev 468664)
@@ -0,0 +1,9 @@
+# vim: ft=sh ts=4 et
+
+post_install() {
+setcap cap_sys_resource=+ep /usr/bin/badtouch
+}
+
+post_upgrade() {
+post_install
+}


[arch-commits] Commit in postgresql-old-upgrade/trunk (PKGBUILD)

2019-05-22 Thread Levente Polyak via arch-commits
Date: Wednesday, May 22, 2019 @ 19:06:40
  Author: anthraxx
Revision: 353861

upgpkg: postgresql-old-upgrade 10.8-1

Modified:
  postgresql-old-upgrade/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-22 19:03:29 UTC (rev 353860)
+++ PKGBUILD2019-05-22 19:06:40 UTC (rev 353861)
@@ -2,9 +2,9 @@
 # Maintainer: Dan McGee 
 
 pkgname=postgresql-old-upgrade
-pkgver=10.6
+pkgver=10.8
 _majorver=${pkgver%.*}
-pkgrel=2
+pkgrel=1
 pkgdesc='PostgreSQL build for migrating between major versions with pg_upgrade'
 url='https://www.postgresql.org/'
 arch=('x86_64')
@@ -12,8 +12,8 @@
 depends=("postgresql-libs>=${_majorver}" 'libxml2' 'openssl>=1.0.0' 'pam' 
'zlib' 'icu' 'systemd-libs' 'libldap')
 makedepends=('krb5' 'python' 'python2' 'perl' 'tcl>=8.6.0' 'systemd')
 
source=(https://ftp.postgresql.org/pub/source/v${pkgver}/postgresql-${pkgver}.tar.bz2)
-sha256sums=('68a8276f08bda8fbefe562faaf8831cb20664a7a1d3ffdbbcc5b83e08637624b')
-sha512sums=('5d4d5cee2a19ad1820c3411bc4851904e3059cdcacc837350694d54d7d59260b66c565c72cc14a3a10541a8fc49c5185f08f57b7a8c7e4c64ed2614da6e1201f')
+sha256sums=('b198c2aadf1d68308127a0f5b51dbe798958ffe60dd999134f6495c489afcd5d')
+sha512sums=('c9cd0298f553e13e32d4315e17e9e61c1fd011391c5203282d9040f26fd08c85f749e6f2cea3bcc42d1ca153a1272bcd773196ef3bf2bdfb74cd12c5f523b7ca')
 
 build() {
   cd postgresql-${pkgver}


[arch-commits] Commit in postgresql-old-upgrade/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2019-05-22 Thread Levente Polyak via arch-commits
Date: Wednesday, May 22, 2019 @ 19:06:44
  Author: anthraxx
Revision: 353862

archrelease: copy trunk to extra-x86_64

Added:
  postgresql-old-upgrade/repos/extra-x86_64/PKGBUILD
(from rev 353861, postgresql-old-upgrade/trunk/PKGBUILD)
Deleted:
  postgresql-old-upgrade/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-22 19:06:40 UTC (rev 353861)
+++ PKGBUILD2019-05-22 19:06:44 UTC (rev 353862)
@@ -1,76 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Dan McGee 
-
-pkgname=postgresql-old-upgrade
-pkgver=10.6
-_majorver=${pkgver%.*}
-pkgrel=2
-pkgdesc='PostgreSQL build for migrating between major versions with pg_upgrade'
-url='https://www.postgresql.org/'
-arch=('x86_64')
-license=('custom:PostgreSQL')
-depends=("postgresql-libs>=${_majorver}" 'libxml2' 'openssl>=1.0.0' 'pam' 
'zlib' 'icu' 'systemd-libs' 'libldap')
-makedepends=('krb5' 'python' 'python2' 'perl' 'tcl>=8.6.0' 'systemd')
-source=(https://ftp.postgresql.org/pub/source/v${pkgver}/postgresql-${pkgver}.tar.bz2)
-sha256sums=('68a8276f08bda8fbefe562faaf8831cb20664a7a1d3ffdbbcc5b83e08637624b')
-sha512sums=('5d4d5cee2a19ad1820c3411bc4851904e3059cdcacc837350694d54d7d59260b66c565c72cc14a3a10541a8fc49c5185f08f57b7a8c7e4c64ed2614da6e1201f')
-
-build() {
-  cd postgresql-${pkgver}
-  local options=(
---prefix=/opt/pgsql-${_majorver}
---with-gssapi
---with-libxml
---with-openssl
---with-perl
---with-python
---with-tcl
---with-pam
---without-readline
---with-system-tzdata=/usr/share/zoneinfo
---with-uuid=e2fs
---with-icu
---with-systemd
---with-ldap
---disable-nls
---enable-thread-safety
-  )
-
-  # only build plpython3 for now
-  ./configure ${options[@]} \
-PYTHON=/usr/bin/python
-  make -C src/pl/plpython all
-  make -C contrib/hstore_plpython all
-  make -C contrib/ltree_plpython all
-
-  # save plpython3 build and Makefile.global
-  cp -a src/pl/plpython{,3}
-  cp -a contrib/hstore_plpython{,3}
-  cp -a contrib/ltree_plpython{,3}
-  cp -a src/Makefile.global{,.python3}
-  make distclean
-
-  # regular build with everything
-  ./configure ${options[@]} \
-PYTHON=/usr/bin/python2
-  make -C src all
-  make -C contrib all
-}
-
-package() {
-  cd postgresql-${pkgver}
-  make -C src DESTDIR="${pkgdir}" install
-  make -C contrib DESTDIR="${pkgdir}" install
-
-  # install plpython3
-  mv src/Makefile.global src/Makefile.global.save
-  cp src/Makefile.global.python3 src/Makefile.global
-  touch -r src/Makefile.global.save src/Makefile.global
-  make -C src/pl/plpython3 DESTDIR="${pkgdir}" install
-  make -C contrib/hstore_plpython3 DESTDIR="${pkgdir}" install
-  make -C contrib/ltree_plpython3 DESTDIR="${pkgdir}" install
-
-  install -Dm 644 COPYRIGHT -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: postgresql-old-upgrade/repos/extra-x86_64/PKGBUILD (from rev 353861, 
postgresql-old-upgrade/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-22 19:06:44 UTC (rev 353862)
@@ -0,0 +1,76 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Dan McGee 
+
+pkgname=postgresql-old-upgrade
+pkgver=10.8
+_majorver=${pkgver%.*}
+pkgrel=1
+pkgdesc='PostgreSQL build for migrating between major versions with pg_upgrade'
+url='https://www.postgresql.org/'
+arch=('x86_64')
+license=('custom:PostgreSQL')
+depends=("postgresql-libs>=${_majorver}" 'libxml2' 'openssl>=1.0.0' 'pam' 
'zlib' 'icu' 'systemd-libs' 'libldap')
+makedepends=('krb5' 'python' 'python2' 'perl' 'tcl>=8.6.0' 'systemd')
+source=(https://ftp.postgresql.org/pub/source/v${pkgver}/postgresql-${pkgver}.tar.bz2)
+sha256sums=('b198c2aadf1d68308127a0f5b51dbe798958ffe60dd999134f6495c489afcd5d')
+sha512sums=('c9cd0298f553e13e32d4315e17e9e61c1fd011391c5203282d9040f26fd08c85f749e6f2cea3bcc42d1ca153a1272bcd773196ef3bf2bdfb74cd12c5f523b7ca')
+
+build() {
+  cd postgresql-${pkgver}
+  local options=(
+--prefix=/opt/pgsql-${_majorver}
+--with-gssapi
+--with-libxml
+--with-openssl
+--with-perl
+--with-python
+--with-tcl
+--with-pam
+--without-readline
+--with-system-tzdata=/usr/share/zoneinfo
+--with-uuid=e2fs
+--with-icu
+--with-systemd
+--with-ldap
+--disable-nls
+--enable-thread-safety
+  )
+
+  # only build plpython3 for now
+  ./configure ${options[@]} \
+PYTHON=/usr/bin/python
+  make -C src/pl/plpython all
+  make -C contrib/hstore_plpython all
+  make -C contrib/ltree_plpython all
+
+  # save plpython3 build and Makefile.global
+  cp -a src/pl/plpython{,3}
+  cp -a contrib/hstore_plpython{,3}
+  cp -a contrib/ltree_plpython{,3}
+  cp -a src/Makefile.global{,.python3}
+  make distclean
+
+  # regular build wi

<    1   2   3   4   5   6   7   8   >