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

2020-01-13 Thread Laurent Carlier via arch-commits
Date: Tuesday, January 14, 2020 @ 07:16:13
  Author: lcarlier
Revision: 373456

archrelease: copy trunk to testing-x86_64

Added:
  xorg-server/repos/testing-x86_64/
  xorg-server/repos/testing-x86_64/0001-v2-FS-58644.patch
(from rev 373455, xorg-server/trunk/0001-v2-FS-58644.patch)
  xorg-server/repos/testing-x86_64/0002-fix-libshadow-2.patch
(from rev 373455, xorg-server/trunk/0002-fix-libshadow-2.patch)
  xorg-server/repos/testing-x86_64/PKGBUILD
(from rev 373455, xorg-server/trunk/PKGBUILD)
  xorg-server/repos/testing-x86_64/xorg-server.install
(from rev 373455, xorg-server/trunk/xorg-server.install)
  xorg-server/repos/testing-x86_64/xserver-autobind-hotplug.patch
(from rev 373455, xorg-server/trunk/xserver-autobind-hotplug.patch)
  xorg-server/repos/testing-x86_64/xvfb-run
(from rev 373455, xorg-server/trunk/xvfb-run)
  xorg-server/repos/testing-x86_64/xvfb-run.1
(from rev 373455, xorg-server/trunk/xvfb-run.1)

+
 0001-v2-FS-58644.patch |   57 +++
 0002-fix-libshadow-2.patch |   30 +++
 PKGBUILD   |  201 ++
 xorg-server.install|   18 ++
 xserver-autobind-hotplug.patch |  293 +++
 xvfb-run   |  200 ++
 xvfb-run.1 |  282 +
 7 files changed, 1081 insertions(+)

Copied: xorg-server/repos/testing-x86_64/0001-v2-FS-58644.patch (from rev 
373455, xorg-server/trunk/0001-v2-FS-58644.patch)
===
--- testing-x86_64/0001-v2-FS-58644.patch   (rev 0)
+++ testing-x86_64/0001-v2-FS-58644.patch   2020-01-14 07:16:13 UTC (rev 
373456)
@@ -0,0 +1,57 @@
+From 17584285d296acaa80f131ca0e8b75eff675962b Mon Sep 17 00:00:00 2001
+From: fafryd 
+Date: Sun, 20 May 2018 14:30:43 +0200
+Subject: [PATCH] v2 FS#58644
+
+---
+ hw/xfree86/common/meson.build | 13 +
+ hw/xfree86/meson.build| 12 +++-
+ 2 files changed, 20 insertions(+), 5 deletions(-)
+
+diff --git a/hw/xfree86/common/meson.build b/hw/xfree86/common/meson.build
+index 514999ff6..0eff6e488 100644
+--- a/hw/xfree86/common/meson.build
 b/hw/xfree86/common/meson.build
+@@ -1,3 +1,16 @@
++if get_option('suid_wrapper')
++x_sh = configure_file(
++input: '../Xorg.sh.in',
++output: 'Xorg',
++configuration: conf_data,
++)
++install_data(
++   x_sh,
++   install_mode: 'rwxr-xr-x',
++   install_dir: join_paths(get_option('prefix'), get_option('bindir')),
++)
++endif
++
+ srcs_xorg_common = [
+ 'xf86fbBus.c',
+ 'xf86noBus.c',
+diff --git a/hw/xfree86/meson.build b/hw/xfree86/meson.build
+index cacf56d4c..d1295d404 100644
+--- a/hw/xfree86/meson.build
 b/hw/xfree86/meson.build
+@@ -145,11 +145,13 @@ if get_option('suid_wrapper')
+ install_dir: get_option('libexecdir'),
+ # install_mode: ['r-sr-xr-x', 0, 0],
+ )
+-configure_file(
+-input: 'Xorg.sh.in',
+-output: 'Xorg',
+-configuration: conf_data,
+-install_dir: join_paths(get_option('prefix'), get_option('bindir')),
++ meson.add_install_script(
++'sh', '-c',
++'chmod u+s @0@@1@/@2@'.format(
++'${DESTDIR}',
++join_paths(get_option('prefix'), get_option('libexecdir')),
++'Xorg.wrap'
++)
+ )
+ endif
+ 
+-- 
+2.17.0
+

Copied: xorg-server/repos/testing-x86_64/0002-fix-libshadow-2.patch (from rev 
373455, xorg-server/trunk/0002-fix-libshadow-2.patch)
===
--- testing-x86_64/0002-fix-libshadow-2.patch   (rev 0)
+++ testing-x86_64/0002-fix-libshadow-2.patch   2020-01-14 07:16:13 UTC (rev 
373456)
@@ -0,0 +1,30 @@
+From a530b6e8923f2b9153a773c8618a1e2f41619288 Mon Sep 17 00:00:00 2001
+From: Adam Jackson 
+Date: Tue, 30 Apr 2019 18:01:27 -0400
+Subject: [PATCH] meson: Fix libshadow.so linkage
+
+Don't link against fb, it's the driver's responsibility to load that
+first. Underlinking like this is unpleasant but this matches what
+autotools does.
+
+Fixes: xorg/xserver#540
+---
+ hw/xfree86/dixmods/meson.build | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/hw/xfree86/dixmods/meson.build b/hw/xfree86/dixmods/meson.build
+index 835d23215..0562b630f 100644
+--- a/hw/xfree86/dixmods/meson.build
 b/hw/xfree86/dixmods/meson.build
+@@ -34,7 +34,7 @@ shared_module(
+ c_args: xorg_c_args,
+ dependencies: common_dep,
+ link_whole: libxserver_miext_shadow,
+-link_with: [fb, e],
++link_with: e,
+ 
+ install: true,
+ install_dir: module_dir,
+-- 
+2.22.0
+

Copied: xorg-server/repos/testing-x86_64/PKGBUILD (from rev 373455, 
xorg-server/trunk/PKGBUILD)
===
--- 

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

2020-01-13 Thread Laurent Carlier via arch-commits
Date: Tuesday, January 14, 2020 @ 07:16:04
  Author: lcarlier
Revision: 373455

upgpkg: xorg-server 1.20.7-1: upstream update 1.20.7

Modified:
  xorg-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-14 06:37:01 UTC (rev 373454)
+++ PKGBUILD2020-01-14 07:16:04 UTC (rev 373455)
@@ -4,8 +4,8 @@
 pkgbase=xorg-server
 pkgname=('xorg-server' 'xorg-server-xephyr' 'xorg-server-xvfb' 
'xorg-server-xnest'
  'xorg-server-xwayland' 'xorg-server-common' 'xorg-server-devel')
-pkgver=1.20.6
-pkgrel=3
+pkgver=1.20.7
+pkgrel=1
 arch=('x86_64')
 license=('custom')
 groups=('xorg')
@@ -27,7 +27,7 @@
   'DD38563A8A8224537D1F90E45B8A2D50A0ECD0D3'
   '995ED5C8A6138EB0961F18474C09DD83CAAA50B2'
   '3BB639E56F861FA2E86505690FDD682D974CA72A')
-sha512sums=('9aa0ba4aee92fe628f2b8c41e4fe0134dc86154bb8787f907884ef2fd970e18e68e72ea8a1beb706d11ecf155b2abc9731f1abadff251ed592f8cca3b1240dd6'
+sha512sums=('c67612e379111c28c68941c0a660abf72be7669591b41ccaa3b3474c4540a03822a28d892831b12ce08bac6e5e7e33504c2d19ef2a0c2298f83bd083459f96f5'
 'SKIP'
 
'd84f4d63a502b7af76ea49944d1b21e2030dfd250ac1e82878935cf631973310ac9ba1f0dfedf10980ec6c7431d61b7daa4b7bbaae9ee477b2c19812c1661a22'
 
'74e1aa0c101e42f0f25349d305641873b3a79ab3b9bb2d4ed68ba8e392b4db2701fcbc35826531ee2667d3ee55673e4b4fecc2a9f088141af29ceb400f72f363'


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 06:49:07
  Author: felixonmars
Revision: 552480

upgpkg: pandoc-crossref 0.3.5.0-15: rebuild with ghc 8.8.1, cabal-doctest 
1.0.7, polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 
0.95.0.0, regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, 
unexceptionalio 0.5.0, gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 
0.7, resolv 0.1.1.3, ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, 
foldl 1.4.6, lens 4.18, postgresql-binary 0.12.2, tls 1.5.0

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-14 06:47:30 UTC (rev 552479)
+++ PKGBUILD2020-01-14 06:49:07 UTC (rev 552480)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.5.0
-pkgrel=14
+pkgrel=15
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname};
 license=("GPL2")


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 06:49:15
  Author: felixonmars
Revision: 552481

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
552480, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-14 06:49:15 UTC (rev 552481)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.3.5.0
+pkgrel=15
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgname};
+license=("GPL2")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-data-default' 'haskell-data-accessor' 
'haskell-data-accessor-template'
+ 'haskell-data-accessor-transformers' 'haskell-gitrev' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'pandoc' 'haskell-pandoc-types' 
'haskell-roman-numerals'
+ 'haskell-syb' 'haskell-utility-ht')
+makedepends=('ghc' 'haskell-hspec')
+conflicts=('haskell-pandoc-crossref')
+replaces=('haskell-pandoc-crossref')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lierdakil/pandoc-crossref/archive/v$pkgver.tar.gz;)
+sha512sums=('3e65be5c5e1ccb896ebe6bf6b059e4a70852ecc4dc6ed5a4529368034784fd76704ee1e694c7fa3f87634ce4fa7ffd8d1cca100d19c6a6ce6652458ac768f546')
+
+build() {
+cd $pkgname-$pkgver
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+   -f-enable_flaky_tests
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 06:47:22
  Author: felixonmars
Revision: 552478

upgpkg: pandoc-citeproc 0.16.4.1-11: rebuild with ghc 8.8.1, cabal-doctest 
1.0.7, polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 
0.95.0.0, regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, 
unexceptionalio 0.5.0, gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 
0.7, resolv 0.1.1.3, ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, 
foldl 1.4.6, lens 4.18, postgresql-binary 0.12.2, tls 1.5.0

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-14 06:44:19 UTC (rev 552477)
+++ PKGBUILD2020-01-14 06:47:22 UTC (rev 552478)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.16.4.1
-pkgrel=10
+pkgrel=11
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname;
 license=("BSD")


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 06:47:30
  Author: felixonmars
Revision: 552479

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
552478, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-14 06:47:30 UTC (rev 552479)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.16.4.1
+pkgrel=11
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/$pkgname;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 'haskell-attoparsec'
+ 'haskell-base-compat' 'haskell-data-default' 'haskell-hs-bibutils' 
'haskell-libyaml'
+ 'haskell-network' 'haskell-old-locale' 'pandoc' 
'haskell-pandoc-types' 'haskell-rfc5051'
+ 'haskell-safe' 'haskell-setenv' 'haskell-split' 'haskell-syb' 
'haskell-tagsoup'
+ 'haskell-temporary' 'haskell-text-icu' 'haskell-unordered-containers' 
'haskell-vector'
+ 'haskell-xml-conduit' 'haskell-yaml' 'haskell-hsyaml' 
'haskell-hsyaml-aeson')
+conflicts=('haskell-pandoc-citeproc')
+replaces=('haskell-pandoc-citeproc')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/${pkgver}/$pkgname-${pkgver}.tar.gz;)
+sha512sums=('1a9f961c974cb5cd7dc51980e389cbce36b189b06fe0c1fd8ecbbd7cbbf6aaf5cccf1a8d6cf5b28e5d4a355c57d090050f458b8d6a304d37a4c64e6e220a502f')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+# TODO: find a better solution
+sed -i 
"s|(\"HOME\",\".\")|(\"HOME\",\".\"),(\"LD_LIBRARY_PATH\",\"$PWD/dist/build\"),(\"pandoc_citeproc_datadir\",\"$PWD\")|"
 tests/test-pandoc-citeproc.hs
+}
+
+build() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/$pkgname" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-debug -f-test_citeproc -funicode_collation -f-embed_data_files 
-fbibutils -f-static
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+# https://github.com/jgm/pandoc-citeproc/issues/342
+runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/$pkgname.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/$pkgname.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/$pkgname/LICENSE"
+}


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 06:44:11
  Author: felixonmars
Revision: 552476

upgpkg: pandoc 2.8-15: rebuild with ghc 8.8.1, cabal-doctest 1.0.7, polyparse 
1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 0.95.0.0, regex-posix 
0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, unexceptionalio 0.5.0, 
gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 0.7, resolv 0.1.1.3, 
ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, foldl 1.4.6, lens 4.18, 
postgresql-binary 0.12.2, tls 1.5.0

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-14 06:36:55 UTC (rev 552475)
+++ PKGBUILD2020-01-14 06:44:11 UTC (rev 552476)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc
 pkgver=2.8
-pkgrel=14
+pkgrel=15
 pkgdesc='Conversion between markup formats'
 url='https://pandoc.org'
 license=('GPL')


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 06:44:19
  Author: felixonmars
Revision: 552477

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc/repos/community-staging-x86_64/PKGBUILD (from rev 552476, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-14 06:44:19 UTC (rev 552477)
@@ -0,0 +1,67 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc
+pkgver=2.8
+pkgrel=15
+pkgdesc='Conversion between markup formats'
+url='https://pandoc.org'
+license=('GPL')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-http' 'haskell-juicypixels' 'haskell-sha' 
'haskell-aeson'
+ 'haskell-aeson-pretty' 'haskell-attoparsec' 'haskell-base-compat'
+ 'haskell-base64-bytestring' 'haskell-blaze-html' 
'haskell-blaze-markup'
+ 'haskell-case-insensitive' 'haskell-cmark-gfm' 'haskell-data-default' 
'haskell-doclayout'
+ 'haskell-doctemplates' 'haskell-exceptions' 'haskell-glob' 
'haskell-haddock-library'
+ 'haskell-ipynb' 'haskell-skylighting' 'haskell-skylighting-core' 
'haskell-hslua'
+ 'haskell-hslua-module-system' 'haskell-hslua-module-text' 
'haskell-http-client'
+ 'haskell-syb' 'haskell-hsyaml' 'haskell-http-client-tls' 
'haskell-http-types'
+ 'haskell-safe' 'haskell-split' 'haskell-texmath' 'haskell-network' 
'haskell-pandoc-types'
+ 'haskell-random' 'haskell-scientific' 'haskell-tagsoup' 
'haskell-temporary'
+ 'haskell-text-conversions' 'haskell-network-uri' 
'haskell-unicode-transforms'
+ 'haskell-unordered-containers' 'haskell-zip-archive' 'haskell-vector' 
'haskell-xml'
+ 'haskell-zlib')
+optdepends=('pandoc-citeproc: for citation rendering with pandoc-citeproc 
filter'
+'pandoc-crossref: for numbering figures, equations, tables and 
cross-references to them with pandoc-crossref filter'
+'texlive-core: for pdf output')
+conflicts=('haskell-pandoc')
+replaces=('haskell-pandoc')
+makedepends=('ghc' 'haskell-diff' 'haskell-tasty' 'haskell-tasty-hunit' 
'haskell-tasty-lua'
+ 'haskell-tasty-quickcheck' 'haskell-tasty-golden' 
'haskell-quickcheck'
+ 'haskell-executable-path')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('2ca956c7e41077d4a9d27b68eaac270da13ff1a9ddd0a5ed532771f5739839d5dda49b64c174e5b0fefa4946bedb9029e8ff551c7181ca97e02d55c796fdd28f')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+# TODO: find a better solution
+sed -i "s|let env' = dynlibEnv ++ |let env' = dynlibEnv ++ 
[(\"LD_LIBRARY_PATH\", \"$PWD/dist/build\")] ++ |" test/Tests/Command.hs
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-trypandoc -f-embed_data_files -f-static
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING.md"
+}


[arch-commits] Commit in perl-template-toolkit/trunk (PKGBUILD)

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 06:36:51
  Author: felixonmars
Revision: 373453

upgpkg: perl-template-toolkit 3.004-1

Modified:
  perl-template-toolkit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 21:34:34 UTC (rev 373452)
+++ PKGBUILD2020-01-14 06:36:51 UTC (rev 373453)
@@ -4,7 +4,7 @@
 # Contributor: FJ 
 
 pkgname=perl-template-toolkit
-pkgver=3.003
+pkgver=3.004
 pkgrel=1
 pkgdesc="Perl template processing system"
 arch=('x86_64')
@@ -14,7 +14,7 @@
 checkdepends=('perl-cgi' 'perl-image-info' 'perl-test-leaktrace')
 options=('!emptydirs')
 
source=(https://search.cpan.org/CPAN/authors/id/A/AT/ATOOMIC/Template-Toolkit-$pkgver.tar.gz)
-sha512sums=('a8b7b2baf203d44165c305cabcc2452d95a85f0eec45c0948a0b83a8f671c805a276237bb74d5d8f47b2b59b1490d7ae389734404e7b7f6827f9f34a37d17d78')
+sha512sums=('3513203f4f291d120671f39630c6274e9dc8bdc94cec92347691fb4a973d937002716c6d7c6265f93577ea9d80bc97f7bab5d4c43d28705f4ab411ac0e942411')
 
 build() {
   cd Template-Toolkit-$pkgver


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 06:36:55
  Author: felixonmars
Revision: 552475

archrelease: copy trunk to community-testing-x86_64

Added:
  python-zipp/repos/community-testing-x86_64/
  python-zipp/repos/community-testing-x86_64/PKGBUILD
(from rev 552474, python-zipp/trunk/PKGBUILD)

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

Copied: python-zipp/repos/community-testing-x86_64/PKGBUILD (from rev 552474, 
python-zipp/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-01-14 06:36:55 UTC (rev 552475)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-zipp
+pkgname=(python-zipp python2-zipp)
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="Pathlib-compatible object wrapper for zip files"
+url="https://github.com/jaraco/zipp;
+license=('MIT')
+arch=('x86_64')
+makedepends=('python-setuptools-scm' 'python2-setuptools-scm' 
'python-more-itertools'
+ 'python2-more-itertools')
+checkdepends=('python2-pathlib2' 'python2-contextlib2' 'python2-unittest2')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/jaraco/zipp/archive/v$pkgver.tar.gz;)
+sha512sums=('71a6a6ba0ca5e4cefbacff4480eefb097abe3b5efaf9e473cb79200acc2997fbdbfe9dfbf5eba9c5c7046fa18395ed819869be74fed1b6eaa01fe50ed667cbd5')
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+
+build() {
+  cd zipp-$pkgver
+  python setup.py build
+  python2 setup.py build
+}
+
+check() {
+  cd zipp-$pkgver
+  python setup.py test
+  python2 setup.py test
+}
+
+package_python-zipp() {
+  depends=('python-more-itertools')
+
+  cd zipp-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-zipp() {
+  depends=('python2-more-itertools')
+
+  cd zipp-$pkgver
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in perl-template-toolkit/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 06:37:01
  Author: felixonmars
Revision: 373454

archrelease: copy trunk to extra-x86_64

Added:
  perl-template-toolkit/repos/extra-x86_64/PKGBUILD
(from rev 373453, perl-template-toolkit/trunk/PKGBUILD)
Deleted:
  perl-template-toolkit/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-01-14 06:36:51 UTC (rev 373453)
+++ PKGBUILD2020-01-14 06:37:01 UTC (rev 373454)
@@ -1,33 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Firmicus 
-# Contributor: Tom Killian 
-# Contributor: FJ 
-
-pkgname=perl-template-toolkit
-pkgver=3.003
-pkgrel=1
-pkgdesc="Perl template processing system"
-arch=('x86_64')
-url="https://search.cpan.org/dist/Template-Toolkit/;
-license=('PerlArtistic')
-depends=('perl-appconfig' 'perl')
-checkdepends=('perl-cgi' 'perl-image-info' 'perl-test-leaktrace')
-options=('!emptydirs')
-source=(https://search.cpan.org/CPAN/authors/id/A/AT/ATOOMIC/Template-Toolkit-$pkgver.tar.gz)
-sha512sums=('a8b7b2baf203d44165c305cabcc2452d95a85f0eec45c0948a0b83a8f671c805a276237bb74d5d8f47b2b59b1490d7ae389734404e7b7f6827f9f34a37d17d78')
-
-build() {
-  cd Template-Toolkit-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor TT_ACCEPT=y
-  make
-}
-
-check() {
-  cd Template-Toolkit-$pkgver
-  make test
-}
-
-package() {
-  cd Template-Toolkit-$pkgver
-  make install DESTDIR="${pkgdir}"
-}

Copied: perl-template-toolkit/repos/extra-x86_64/PKGBUILD (from rev 373453, 
perl-template-toolkit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-01-14 06:37:01 UTC (rev 373454)
@@ -0,0 +1,33 @@
+# Maintainer: Felix Yan 
+# Contributor: Firmicus 
+# Contributor: Tom Killian 
+# Contributor: FJ 
+
+pkgname=perl-template-toolkit
+pkgver=3.004
+pkgrel=1
+pkgdesc="Perl template processing system"
+arch=('x86_64')
+url="https://search.cpan.org/dist/Template-Toolkit/;
+license=('PerlArtistic')
+depends=('perl-appconfig' 'perl')
+checkdepends=('perl-cgi' 'perl-image-info' 'perl-test-leaktrace')
+options=('!emptydirs')
+source=(https://search.cpan.org/CPAN/authors/id/A/AT/ATOOMIC/Template-Toolkit-$pkgver.tar.gz)
+sha512sums=('3513203f4f291d120671f39630c6274e9dc8bdc94cec92347691fb4a973d937002716c6d7c6265f93577ea9d80bc97f7bab5d4c43d28705f4ab411ac0e942411')
+
+build() {
+  cd Template-Toolkit-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor TT_ACCEPT=y
+  make
+}
+
+check() {
+  cd Template-Toolkit-$pkgver
+  make test
+}
+
+package() {
+  cd Template-Toolkit-$pkgver
+  make install DESTDIR="${pkgdir}"
+}


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 06:36:47
  Author: felixonmars
Revision: 552474

upgpkg: python-zipp 1.0.0-1

Modified:
  python-zipp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-14 06:33:59 UTC (rev 552473)
+++ PKGBUILD2020-01-14 06:36:47 UTC (rev 552474)
@@ -2,8 +2,8 @@
 
 pkgbase=python-zipp
 pkgname=(python-zipp python2-zipp)
-pkgver=0.6.0
-pkgrel=3
+pkgver=1.0.0
+pkgrel=1
 pkgdesc="Pathlib-compatible object wrapper for zip files"
 url="https://github.com/jaraco/zipp;
 license=('MIT')
@@ -12,7 +12,7 @@
  'python2-more-itertools')
 checkdepends=('python2-pathlib2' 'python2-contextlib2' 'python2-unittest2')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/jaraco/zipp/archive/v$pkgver.tar.gz;)
-sha512sums=('9aef3b03a19d76cb72e1510d62a4edd536cbb176a4593154d6f98ecf020438249307ee5f8205f29e7f121acd61c105ca79a1ed48c66c6ba8799e2dbb3eecd75e')
+sha512sums=('71a6a6ba0ca5e4cefbacff4480eefb097abe3b5efaf9e473cb79200acc2997fbdbfe9dfbf5eba9c5c7046fa18395ed819869be74fed1b6eaa01fe50ed667cbd5')
 
 export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
 


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 06:33:51
  Author: felixonmars
Revision: 552472

upgpkg: v2ray-geoip 202001140103-1

Modified:
  v2ray-geoip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-14 05:57:17 UTC (rev 552471)
+++ PKGBUILD2020-01-14 06:33:51 UTC (rev 552472)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=v2ray-geoip
-pkgver=202001130103
+pkgver=202001140103
 pkgrel=1
 pkgdesc="GeoIP List for V2Ray"
 arch=('any')
@@ -8,7 +8,7 @@
 url="https://github.com/v2ray/geoip;
 license=('MIT')
 
source=("geoip-$pkgver.dat::https://github.com/v2ray/geoip/releases/download/$pkgver/geoip.dat;)
-sha512sums=('f09269d1e93a54dc43e92d5746f7ed96bd3bfdbcefb8e01136ef57e6250c5cf0b14f5da626b9b6681fcc691436c97f1e7593a2ebe3a8927fa8f799ede8ad4943')
+sha512sums=('492619244ca197b9c3ce0b0ddb84e3ee077ebd55e4a7f91c2cf689d46625e0586da3c0bb601f4c83c60cf94f7e384d1979599611be6633e5184c1aaf62561ae9')
 
 package() {
   install -Dm755 geoip-$pkgver.dat "$pkgdir"/usr/lib/v2ray/geoip.dat


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 06:33:59
  Author: felixonmars
Revision: 552473

archrelease: copy trunk to community-any

Added:
  v2ray-geoip/repos/community-any/PKGBUILD
(from rev 552472, v2ray-geoip/trunk/PKGBUILD)
Deleted:
  v2ray-geoip/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-01-14 06:33:51 UTC (rev 552472)
+++ PKGBUILD2020-01-14 06:33:59 UTC (rev 552473)
@@ -1,15 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=v2ray-geoip
-pkgver=202001130103
-pkgrel=1
-pkgdesc="GeoIP List for V2Ray"
-arch=('any')
-url="https://github.com/v2ray/geoip;
-license=('MIT')
-source=("geoip-$pkgver.dat::https://github.com/v2ray/geoip/releases/download/$pkgver/geoip.dat;)
-sha512sums=('f09269d1e93a54dc43e92d5746f7ed96bd3bfdbcefb8e01136ef57e6250c5cf0b14f5da626b9b6681fcc691436c97f1e7593a2ebe3a8927fa8f799ede8ad4943')
-
-package() {
-  install -Dm755 geoip-$pkgver.dat "$pkgdir"/usr/lib/v2ray/geoip.dat
-}

Copied: v2ray-geoip/repos/community-any/PKGBUILD (from rev 552472, 
v2ray-geoip/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-01-14 06:33:59 UTC (rev 552473)
@@ -0,0 +1,15 @@
+# Maintainer: Felix Yan 
+
+pkgname=v2ray-geoip
+pkgver=202001140103
+pkgrel=1
+pkgdesc="GeoIP List for V2Ray"
+arch=('any')
+url="https://github.com/v2ray/geoip;
+license=('MIT')
+source=("geoip-$pkgver.dat::https://github.com/v2ray/geoip/releases/download/$pkgver/geoip.dat;)
+sha512sums=('492619244ca197b9c3ce0b0ddb84e3ee077ebd55e4a7f91c2cf689d46625e0586da3c0bb601f4c83c60cf94f7e384d1979599611be6633e5184c1aaf62561ae9')
+
+package() {
+  install -Dm755 geoip-$pkgver.dat "$pkgdir"/usr/lib/v2ray/geoip.dat
+}


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 05:57:17
  Author: felixonmars
Revision: 552471

archrelease: copy trunk to community-staging-x86_64

Added:
  cryptol/repos/community-staging-x86_64/
  cryptol/repos/community-staging-x86_64/PKGBUILD
(from rev 552470, cryptol/trunk/PKGBUILD)

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

Copied: cryptol/repos/community-staging-x86_64/PKGBUILD (from rev 552470, 
cryptol/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-14 05:57:17 UTC (rev 552471)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+
+pkgname=cryptol
+pkgver=2.8.0
+pkgrel=23
+pkgdesc="The Language of Cryptography"
+url="https://www.cryptol.net;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'z3' 'haskell-base-compat' 'haskell-cryptohash-sha1' 
'haskell-gitrev'
+ 'haskell-graphscc' 'haskell-heredoc' 'haskell-monad-control' 
'haskell-monadlib'
+ 'haskell-panic' 'haskell-random' 'haskell-sbv' 'haskell-simple-smt' 
'haskell-strict'
+ 'haskell-tf-random' 'haskell-transformers-base' 
'haskell-ansi-terminal'
+ 'haskell-blaze-html')
+makedepends=('ghc' 'alex' 'happy')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/GaloisInc/cryptol/archive/$pkgver.tar.gz;
+ghc-8.8.patch::https://github.com/GaloisInc/cryptol/pull/655.patch)
+sha512sums=('ad2cbb67dbcd10dba12457b24558af4ef7066817f18e162432607e7d887071fef13a1c958e37a3f7e8e3fd04079c20cc2a8abdcf1c9dd35a9a93e7e0a2d383b0'
+
'f5399cfde04c2645e0bc80d80a39ac570c9649961e22bf9808bb55ba8457f9a124469d699de73624b2debabe8d672879bd0b2279b60dfcb08d328de67ca78e84')
+
+prepare() {
+cd $pkgname-$pkgver
+patch -p1 -i ../ghc-8.8.patch
+sed -i 's/< *0.11/<1/' $pkgname.cabal
+#sed -i 's/import Prelude.Compat/import Prelude.Compat hiding ( fail )/' 
src/Cryptol/Parser/{NoPat,ParserUtils}.hs
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-static -f-relocatable --ghc-option='-pie'
+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}/${pkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 05:57:09
  Author: felixonmars
Revision: 552470

upgpkg: cryptol 2.8.0-23: rebuild with ghc 8.8.1, cabal-doctest 1.0.7, 
polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 0.95.0.0, 
regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, unexceptionalio 0.5.0, 
gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 0.7, resolv 0.1.1.3, 
ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, foldl 1.4.6, lens 4.18, 
postgresql-binary 0.12.2, tls 1.5.0

Modified:
  cryptol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-14 05:54:17 UTC (rev 552469)
+++ PKGBUILD2020-01-14 05:57:09 UTC (rev 552470)
@@ -2,7 +2,7 @@
 
 pkgname=cryptol
 pkgver=2.8.0
-pkgrel=22
+pkgrel=23
 pkgdesc="The Language of Cryptography"
 url="https://www.cryptol.net;
 license=("BSD")


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 05:54:17
  Author: felixonmars
Revision: 552469

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-sbv/repos/community-staging-x86_64/PKGBUILD (from rev 552468, 
haskell-sbv/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-14 05:54:17 UTC (rev 552469)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=sbv
+pkgname=haskell-sbv
+pkgver=8.5
+pkgrel=11
+pkgdesc="SMT Based Verification: Symbolic Haskell theorem prover using SMT 
solving"
+url="https://leventerkok.github.com/sbv;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ghc' 'haskell-quickcheck' 'haskell-cracknum' 
'haskell-async'
+ 'haskell-random' 'haskell-syb' 'haskell-generic-deriving')
+makedepends=('ghc' 'haskell-doctest' 'haskell-glob' 'hlint' 'haskell-tasty' 
'haskell-tasty-golden'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('5ad6e004fb80db7e2202844f62238a67a189933aff809ff071c40207180dba09f8916fc403ac00279a652260584c96043653a4f0b8e58cdd0a89ccf4dd829926')
+
+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-sbv/trunk (PKGBUILD)

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 05:54:09
  Author: felixonmars
Revision: 552468

upgpkg: haskell-sbv 8.5-11: rebuild with ghc 8.8.1, cabal-doctest 1.0.7, 
polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 0.95.0.0, 
regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, unexceptionalio 0.5.0, 
gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 0.7, resolv 0.1.1.3, 
ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, foldl 1.4.6, lens 4.18, 
postgresql-binary 0.12.2, tls 1.5.0

Modified:
  haskell-sbv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-14 05:45:20 UTC (rev 552467)
+++ PKGBUILD2020-01-14 05:54:09 UTC (rev 552468)
@@ -4,7 +4,7 @@
 _hkgname=sbv
 pkgname=haskell-sbv
 pkgver=8.5
-pkgrel=10
+pkgrel=11
 pkgdesc="SMT Based Verification: Symbolic Haskell theorem prover using SMT 
solving"
 url="https://leventerkok.github.com/sbv;
 license=("BSD")


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 05:45:12
  Author: felixonmars
Revision: 552466

upgpkg: haskell-ipynb 0.1-96: rebuild with ghc 8.8.1, cabal-doctest 1.0.7, 
polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 0.95.0.0, 
regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, unexceptionalio 0.5.0, 
gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 0.7, resolv 0.1.1.3, 
ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, foldl 1.4.6, lens 4.18, 
postgresql-binary 0.12.2, tls 1.5.0

Modified:
  haskell-ipynb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-14 05:44:21 UTC (rev 552465)
+++ PKGBUILD2020-01-14 05:45:12 UTC (rev 552466)
@@ -3,7 +3,7 @@
 _hkgname=ipynb
 pkgname=haskell-ipynb
 pkgver=0.1
-pkgrel=95
+pkgrel=96
 pkgdesc="Data structure for working with Jupyter notebooks (ipynb)"
 url="https://github.com/jgm/ipynb;
 license=('BSD')


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 05:45:20
  Author: felixonmars
Revision: 552467

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-ipynb/repos/community-staging-x86_64/PKGBUILD (from rev 552466, 
haskell-ipynb/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-14 05:45:20 UTC (rev 552467)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=ipynb
+pkgname=haskell-ipynb
+pkgver=0.1
+pkgrel=96
+pkgdesc="Data structure for working with Jupyter notebooks (ipynb)"
+url="https://github.com/jgm/ipynb;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-base64-bytestring' 
'haskell-unordered-containers')
+makedepends=('ghc' 'haskell-aeson-diff' 'haskell-microlens' 
'haskell-microlens-aeson'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-vector')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('8717dac6496905afc5e8735abc3b3a4a90b171253b035efa0751a6311b901caad563fdfeaa455987c1307d0532273ab80be37256562143db575f13c326843bf4')
+
+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-aeson-diff/trunk (PKGBUILD)

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 05:44:13
  Author: felixonmars
Revision: 552464

upgpkg: haskell-aeson-diff 1.1.0.8-15: rebuild with ghc 8.8.1, cabal-doctest 
1.0.7, polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 
0.95.0.0, regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, 
unexceptionalio 0.5.0, gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 
0.7, resolv 0.1.1.3, ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, 
foldl 1.4.6, lens 4.18, postgresql-binary 0.12.2, tls 1.5.0

Modified:
  haskell-aeson-diff/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-14 05:42:47 UTC (rev 552463)
+++ PKGBUILD2020-01-14 05:44:13 UTC (rev 552464)
@@ -3,7 +3,7 @@
 _hkgname=aeson-diff
 pkgname=haskell-aeson-diff
 pkgver=1.1.0.8
-pkgrel=14
+pkgrel=15
 pkgdesc="Extract and apply patches to JSON documents"
 url="https://github.com/thsutton/aeson-diff;
 license=('BSD')


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 05:44:21
  Author: felixonmars
Revision: 552465

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-aeson-diff/repos/community-staging-x86_64/PKGBUILD (from rev 
552464, haskell-aeson-diff/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-14 05:44:21 UTC (rev 552465)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+
+_hkgname=aeson-diff
+pkgname=haskell-aeson-diff
+pkgver=1.1.0.8
+pkgrel=15
+pkgdesc="Extract and apply patches to JSON documents"
+url="https://github.com/thsutton/aeson-diff;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-edit-distance-vector' 
'haskell-hashable'
+ 'haskell-scientific' 'haskell-unordered-containers' 'haskell-vector'
+ 'haskell-optparse-applicative')
+makedepends=('ghc' 'haskell-doctest' 'haskell-glob' 'haskell-quickcheck'
+ 'haskell-quickcheck-instances' 'hlint')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('5a5f703dec592c0cfd825eb1899006350649c52bf810ff1aaaf4134ebfbc11f5fbe9e7f158a8c3a21dbef4902b1f9e94148bc116e27418b2b786f6d31c7561fb')
+
+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 hlint/trunk (PKGBUILD)

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 05:42:40
  Author: felixonmars
Revision: 552462

upgpkg: hlint 2.1.14-92: rebuild with ghc 8.8.1, cabal-doctest 1.0.7, polyparse 
1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 0.95.0.0, regex-posix 
0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, unexceptionalio 0.5.0, 
gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 0.7, resolv 0.1.1.3, 
ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, foldl 1.4.6, lens 4.18, 
postgresql-binary 0.12.2, tls 1.5.0

Modified:
  hlint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-14 05:41:27 UTC (rev 552461)
+++ PKGBUILD2020-01-14 05:42:40 UTC (rev 552462)
@@ -3,7 +3,7 @@
 
 pkgname=hlint
 pkgver=2.1.14
-pkgrel=91
+pkgrel=92
 pkgdesc="Source code suggestions"
 url="http://community.haskell.org/~ndm/hlint/;
 license=("BSD")


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 05:42:47
  Author: felixonmars
Revision: 552463

archrelease: copy trunk to community-staging-x86_64

Added:
  hlint/repos/community-staging-x86_64/
  hlint/repos/community-staging-x86_64/PKGBUILD
(from rev 552462, hlint/trunk/PKGBUILD)

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

Copied: hlint/repos/community-staging-x86_64/PKGBUILD (from rev 552462, 
hlint/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-14 05:42:47 UTC (rev 552463)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hlint
+pkgver=2.1.14
+pkgrel=92
+pkgdesc="Source code suggestions"
+url="http://community.haskell.org/~ndm/hlint/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 'haskell-cmdargs' 
'haskell-cpphs'
+ 'haskell-data-default' 'haskell-extra' 'haskell-hscolour' 
'haskell-refact'
+ 'haskell-src-exts' 'haskell-src-exts-util' 'haskell-uniplate'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-yaml')
+conflicts=('haskell-hlint')
+replaces=('haskell-hlint')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('d4c7474791252401740d121118576579dd82b2c6cd52072b28faaf39e431f0b378387675d70f122109e6dc111e9889a51310c1c8881f6e33c13b889be4f4bb41')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fgpl -fthreaded
+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}/${pkgname}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING.BSD3"
+}


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 05:41:19
  Author: felixonmars
Revision: 552460

upgpkg: hledger-ui 1.16-9: rebuild with ghc 8.8.1, cabal-doctest 1.0.7, 
polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 0.95.0.0, 
regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, unexceptionalio 0.5.0, 
gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 0.7, resolv 0.1.1.3, 
ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, foldl 1.4.6, lens 4.18, 
postgresql-binary 0.12.2, tls 1.5.0

Modified:
  hledger-ui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-14 05:40:19 UTC (rev 552459)
+++ PKGBUILD2020-01-14 05:41:19 UTC (rev 552460)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-ui
 pkgver=1.16
-pkgrel=8
+pkgrel=9
 pkgdesc="Curses-style user interface for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 05:41:27
  Author: felixonmars
Revision: 552461

archrelease: copy trunk to community-staging-x86_64

Added:
  hledger-ui/repos/community-staging-x86_64/
  hledger-ui/repos/community-staging-x86_64/PKGBUILD
(from rev 552460, hledger-ui/trunk/PKGBUILD)

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

Copied: hledger-ui/repos/community-staging-x86_64/PKGBUILD (from rev 552460, 
hledger-ui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-14 05:41:27 UTC (rev 552461)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-ui
+pkgver=1.16
+pkgrel=9
+pkgdesc="Curses-style user interface for the hledger accounting tool"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-ansi-terminal' 
'haskell-async'
+ 'haskell-base-compat-batteries' 'haskell-cmdargs' 
'haskell-data-default' 'haskell-fsnotify'
+ 'haskell-microlens' 'haskell-microlens-platform' 'haskell-megaparsec' 
'haskell-pretty-show'
+ 'haskell-safe' 'haskell-split' 'haskell-text-zipper' 'haskell-vector' 
'haskell-brick'
+ 'haskell-vty')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('4c36686b152cbf1f49c20ede709fd46e0d59ce23909e9385b3d55da76be4238e0489847551b3e99b00bd0b2daf649361a7ef63ec4d1f4e7e8aa31d9bb6a21b71')
+
+prepare() {
+# It does nothing
+sed -e '/mtl-compat/d' \
+-i ${pkgname}-${pkgver}/${pkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+-fthreaded
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 05:40:11
  Author: felixonmars
Revision: 552458

upgpkg: hledger 1.16-6: rebuild with ghc 8.8.1, cabal-doctest 1.0.7, polyparse 
1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 0.95.0.0, regex-posix 
0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, unexceptionalio 0.5.0, 
gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 0.7, resolv 0.1.1.3, 
ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, foldl 1.4.6, lens 4.18, 
postgresql-binary 0.12.2, tls 1.5.0

Modified:
  hledger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-14 05:04:44 UTC (rev 552457)
+++ PKGBUILD2020-01-14 05:40:11 UTC (rev 552458)
@@ -3,7 +3,7 @@
 
 pkgname=hledger
 pkgver=1.16
-pkgrel=5
+pkgrel=6
 pkgdesc="Command-line interface for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 05:40:19
  Author: felixonmars
Revision: 552459

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hledger/repos/community-staging-x86_64/PKGBUILD (from rev 552458, 
hledger/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-14 05:40:19 UTC (rev 552459)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger
+pkgver=1.16
+pkgrel=6
+pkgdesc="Command-line interface for the hledger accounting tool"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-base-compat-batteries' 
'haskell-cmdargs'
+ 'haskell-data-default' 'haskell-decimal' 'haskell-diff' 
'haskell-hashable'
+ 'haskell-hledger-lib' 'haskell-lucid' 'haskell-math-functions' 
'haskell-megaparsec'
+ 'haskell-old-time' 'haskell-pretty-show' 'haskell-regex-tdfa' 
'haskell-safe'
+ 'haskell-shakespeare' 'haskell-split' 'haskell-tabular' 
'haskell-tasty'
+ 'haskell-temporary' 'haskell-unordered-containers' 
'haskell-utf8-string'
+ 'haskell-utility-ht' 'haskell-wizards')
+makedepends=('ghc' 'haskell-extra' 'haskell-timeit')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('2d2caebe99055772b480f45a7c9d6e3a71b13ee8c2b953dc4a3b2015ca697c23861c4d562d73be60200807c741afed7c383793a01c2d5199f2d6b15dda325614')
+
+prepare() {
+# It does nothing
+sed -e '/mtl-compat/d' \
+-i ${pkgname}-${pkgver}/${pkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fterminfo -fthreaded --ghc-option='-pie'
+LC_CTYPE=en_US.UTF-8 runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 05:04:32
  Author: felixonmars
Revision: 552456

upgpkg: hedgewars 1.0.0-19: rebuild with ghc 8.8.1, cabal-doctest 1.0.7, 
polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 0.95.0.0, 
regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, unexceptionalio 0.5.0, 
gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 0.7, resolv 0.1.1.3, 
ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, foldl 1.4.6, lens 4.18, 
postgresql-binary 0.12.2, tls 1.5.0

Modified:
  hedgewars/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-14 04:59:32 UTC (rev 552455)
+++ PKGBUILD2020-01-14 05:04:32 UTC (rev 552456)
@@ -4,7 +4,7 @@
 
 pkgname=hedgewars
 pkgver=1.0.0
-pkgrel=18
+pkgrel=19
 pkgdesc="Turn-based strategy artillery game similiar to Worms"
 arch=('x86_64')
 url="https://hedgewars.org;


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 05:04:44
  Author: felixonmars
Revision: 552457

archrelease: copy trunk to community-staging-x86_64

Added:
  hedgewars/repos/community-staging-x86_64/
  hedgewars/repos/community-staging-x86_64/PKGBUILD
(from rev 552456, hedgewars/trunk/PKGBUILD)

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

Copied: hedgewars/repos/community-staging-x86_64/PKGBUILD (from rev 552456, 
hedgewars/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-14 05:04:44 UTC (rev 552457)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+# Contributor: Sergej Pupykin 
+# Contributor: Tinxy 
+
+pkgname=hedgewars
+pkgver=1.0.0
+pkgrel=19
+pkgdesc="Turn-based strategy artillery game similiar to Worms"
+arch=('x86_64')
+url="https://hedgewars.org;
+license=('GPL' 'custom')
+depends=('qt5-base' 'sdl2' 'sdl2_mixer' 'sdl2_image' 'sdl2_net' 'sdl2_ttf' 
'lua51' 'ffmpeg' 'glut'
+ 'physfs' 'ghc-libs' 'haskell-entropy' 'haskell-sha' 'haskell-random' 
'haskell-regex-tdfa'
+ 'haskell-sandi' 'haskell-hslogger' 'haskell-utf8-string' 
'haskell-vector')
+makedepends=('fpc' 'cmake' 'qt5-tools' 'ghc' 'haskell-network' 
'haskell-bytestring-show'
+ 'haskell-zlib' 'haskell-base-prelude' 'imagemagick' 'mesa')
+source=("https://www.hedgewars.org/download/releases/hedgewars-src-$pkgver.tar.bz2;)
+sha512sums=('9aeb904550239040a878a0e7ae5006aa4d824124b61d813b9e6f6dfe1bd1c8f5fe395e0fd6e58d685ef1259abd4669e03b985be129c620be15f6e5ad82519ec2')
+
+prepare() {
+  cd hedgewars-src-$pkgver
+  sed -i 's|set(ghc_flags|set(ghc_flags -dynamic|' gameServer/CMakeLists.txt
+}
+
+build() {
+  cd hedgewars-src-$pkgver
+  cmake \
+-DCMAKE_BUILD_TYPE="Release" \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DDATA_INSTALL_DIR=/usr/share/hedgewars \
+-DNOSERVER=0 \
+.
+  make
+
+  # resize icon
+  for _size in 16 32 48 64 128 256; do
+convert +set date:create +set date:modify misc/hedgewars.png -resize 
${_size}x${_size} hedgewars_${_size}.png
+  done
+}
+
+package() {
+  cd hedgewars-src-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -D -m644 Fonts_LICENSE.txt 
"$pkgdir"/usr/share/licenses/${pkgname}/Fonts_LICENSE.txt
+
+  # install icons
+  install -D -m644 misc/hedgewars.png 
"$pkgdir"/usr/share/icons/hicolor/512x512/apps/hedgewars.png
+  for _size in 16 32 48 64 128 256; do
+install -D -m644 hedgewars_${_size}.png 
"$pkgdir"/usr/share/icons/hicolor/${_size}x${_size}/apps/hedgewars.png
+  done
+  rm -rf "$pkgdir"/usr/share/pixmaps
+
+  install -D -m644 share/hedgewars/Data/misc/hedgewars.desktop 
"$pkgdir"/usr/share/applications/hedgewars.desktop
+}


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 04:59:24
  Author: felixonmars
Revision: 552454

upgpkg: hasktags 0.71.2-51: rebuild with ghc 8.8.1, cabal-doctest 1.0.7, 
polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 0.95.0.0, 
regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, unexceptionalio 0.5.0, 
gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 0.7, resolv 0.1.1.3, 
ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, foldl 1.4.6, lens 4.18, 
postgresql-binary 0.12.2, tls 1.5.0

Modified:
  hasktags/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-14 03:04:50 UTC (rev 552453)
+++ PKGBUILD2020-01-14 04:59:24 UTC (rev 552454)
@@ -3,7 +3,7 @@
 
 pkgname=hasktags
 pkgver=0.71.2
-pkgrel=50
+pkgrel=51
 pkgdesc="Produces ctags \"tags\" and etags \"TAGS\" files for Haskell programs"
 url="https://github.com/MarcWeber/hasktags;
 license=("BSD")


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Tuesday, January 14, 2020 @ 04:59:32
  Author: felixonmars
Revision: 552455

archrelease: copy trunk to community-staging-x86_64

Added:
  hasktags/repos/community-staging-x86_64/
  hasktags/repos/community-staging-x86_64/PKGBUILD
(from rev 552454, hasktags/trunk/PKGBUILD)

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

Copied: hasktags/repos/community-staging-x86_64/PKGBUILD (from rev 552454, 
hasktags/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-14 04:59:32 UTC (rev 552455)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hasktags
+pkgver=0.71.2
+pkgrel=51
+pkgdesc="Produces ctags \"tags\" and etags \"TAGS\" files for Haskell programs"
+url="https://github.com/MarcWeber/hasktags;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-json' 'haskell-microlens-platform' 
'haskell-optparse-applicative'
+ 'haskell-utf8-string')
+makedepends=('ghc' 'haskell-hunit')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('649f8e74202dc08b8c37535c2fb0fefe11c55bc9de300093b20e7b224fa6daccbc938988ef810a479e745b53270215fc847caa6e0b06310a7d1c7493fc37b1ce')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i 's/< *0.4/<1/' $pkgname.cabal
+}
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-debug --ghc-option='-pie'
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2020-01-13 Thread Kyle Keen via arch-commits
Date: Tuesday, January 14, 2020 @ 03:04:50
  Author: kkeen
Revision: 552453

remove python2

Modified:
  python-ipywidgets/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-14 02:22:30 UTC (rev 552452)
+++ PKGBUILD2020-01-14 03:04:50 UTC (rev 552453)
@@ -1,7 +1,6 @@
 # Maintainer: Kyle Keen 
 
-pkgbase=python-ipywidgets
-pkgname=(python-ipywidgets python2-ipywidgets)
+pkgname=python-ipywidgets
 pkgver=7.5.1
 pkgrel=4
 pkgdesc="IPython widgets for the Jupyter Notebook"
@@ -9,15 +8,11 @@
 url="https://github.com/ipython/ipywidgets;
 license=('BSD')
 depends=('python' 'jupyter-widgetsnbextension')
-makedepends=('python-setuptools' 'python2-setuptools' 'npm' 'git')
+makedepends=('python-setuptools' 'npm' 'git')
 
 
source=("$pkgname-$pkgver.tgz::https://github.com/ipython/ipywidgets/archive/$pkgver.tar.gz;)
 md5sums=('fd7d28cfd8a1206e95e5161a1b924a91')
 
-prepare() {
-  cp -r "ipywidgets-$pkgver" "py2-ipywidgets-$pkgver"
-}
-
 build() {
   cd "$srcdir/ipywidgets-$pkgver"
   # needs node, downloads a lot of stuff, probably not reproducible
@@ -25,14 +20,9 @@
   #cd widgetsnbextension
   #python3 setup.py build
   #cd ..
-
-  cd "$srcdir/py2-ipywidgets-$pkgver"
-  python2 setup.py build
-  #cd widgetsnbextension
-  #python2 setup.py build
 }
 
-package_python-ipywidgets() {
+package() {
   cd "$srcdir/ipywidgets-$pkgver"
   python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
@@ -40,16 +30,3 @@
   #python3 setup.py install --prefix=/usr --root="$pkgdir"
 }
 
-package_python2-ipywidgets() {
-  depends=('python2' 'jupyter-widgetsnbextension')
-  # weird depends because of shared files
-  cd "$srcdir/py2-ipywidgets-$pkgver"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  #cd widgetsnbextension
-  #python2 setup.py install --prefix=/usr --root="$pkgdir"
-
-  # remove shared files
-  #rm 
"$pkgdir/usr/share/jupyter/nbextensions/jupyter-js-widgets/extension.js"{,.map}
-}
-


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

2020-01-13 Thread Kyle Keen via arch-commits
Date: Tuesday, January 14, 2020 @ 02:22:30
  Author: kkeen
Revision: 552452

remove python2-pyglet

Modified:
  pyglet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-14 00:18:20 UTC (rev 552451)
+++ PKGBUILD2020-01-14 02:22:30 UTC (rev 552452)
@@ -4,7 +4,7 @@
 # Contributor: Daniel J Griffiths 
 
 pkgbase=pyglet
-pkgname=('python-pyglet' 'python2-pyglet')
+pkgname=('python-pyglet')
 pkgver=1.4.9
 pkgrel=1
 pkgdesc="A cross-platform windowing and multimedia library for Python"
@@ -12,7 +12,7 @@
 url="https://github.com/pyglet/pyglet;
 license=('BSD')
 depends=('python' 'glu' 'python-future')
-makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
+makedepends=('python-setuptools')
 optdepends=('ffmpeg: provides audio support')
 
source=("https://files.pythonhosted.org/packages/source/p/pyglet/pyglet-$pkgver.zip;)
 md5sums=('047ab2874e9be36e2190f95c48a84d0f')
@@ -22,26 +22,13 @@
 
# 
https://bitbucket.org/pyglet/pyglet/issues/157/please-do-not-bundle-the-future-module
rm -rf pyglet-$pkgver/pyglet/extlibs/future/
-   cp -r "$srcdir/$pkgbase-$pkgver" "$srcdir/${pkgbase}2-$pkgver"
 }
 
 build() {
-   cd "$srcdir/${pkgbase}2-$pkgver"
-   python2 setup.py build
-
cd "$srcdir/$pkgbase-$pkgver"
python3 setup.py build
 }
 
-package_python2-pyglet() {
-   depends=('python2' 'glu' 'python2-future')
-   cd "$srcdir/${pkgbase}2-$pkgver"
-   find ./ -type f -name '*.py' | xargs -n 1 sed -i 's|/usr/bin/env 
python$|/usr/bin/env python2|'
-   find ./ -type f -name '*.py' | xargs -n 1 sed -i 
's|/usr/bin/python|/usr/bin/env python2|'
-   python2 setup.py install --root="$pkgdir" --optimize=1
-   install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
 package_python-pyglet() {
depends=('python' 'glu' 'python-future')
cd "$srcdir/$pkgbase-$pkgver"


[arch-commits] Commit in vault/repos/community-x86_64 (14 files)

2020-01-13 Thread Christian Rebischke via arch-commits
Date: Monday, January 13, 2020 @ 21:43:55
  Author: shibumi
Revision: 552447

archrelease: copy trunk to community-x86_64

Added:
  vault/repos/community-x86_64/CHANGELOG.md
(from rev 552446, vault/trunk/CHANGELOG.md)
  vault/repos/community-x86_64/PKGBUILD
(from rev 552446, vault/trunk/PKGBUILD)
  vault/repos/community-x86_64/vault.hcl
(from rev 552446, vault/trunk/vault.hcl)
  vault/repos/community-x86_64/vault.install
(from rev 552446, vault/trunk/vault.install)
  vault/repos/community-x86_64/vault.service
(from rev 552446, vault/trunk/vault.service)
  vault/repos/community-x86_64/vault.sysusers
(from rev 552446, vault/trunk/vault.sysusers)
  vault/repos/community-x86_64/vault.tmpfiles
(from rev 552446, vault/trunk/vault.tmpfiles)
Deleted:
  vault/repos/community-x86_64/CHANGELOG.md
  vault/repos/community-x86_64/PKGBUILD
  vault/repos/community-x86_64/vault.hcl
  vault/repos/community-x86_64/vault.install
  vault/repos/community-x86_64/vault.service
  vault/repos/community-x86_64/vault.sysusers
  vault/repos/community-x86_64/vault.tmpfiles

+
 CHANGELOG.md   | 8550 +++
 PKGBUILD   |  135 
 vault.hcl  |   38 
 vault.install  |   18 
 vault.service  |   44 
 vault.sysusers |2 
 vault.tmpfiles |2 
 7 files changed, 4383 insertions(+), 4406 deletions(-)

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


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

2020-01-13 Thread Christian Rebischke via arch-commits
Date: Monday, January 13, 2020 @ 21:43:43
  Author: shibumi
Revision: 552446

upgpkg: vault 1.3.1-1 Fix CVE-2019-16276 + major release update

Modified:
  vault/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 21:41:55 UTC (rev 552445)
+++ PKGBUILD2020-01-13 21:43:43 UTC (rev 552446)
@@ -4,16 +4,17 @@
 
 pkgname='vault'
 pkgdesc='A tool for managing secrets'
-pkgver='1.2.3'
+pkgver='1.3.1'
 pkgrel='1'
 url="https://vaultproject.io/;
 license=('MPL')
 arch=('x86_64')
-makedepends=('go-pie' 'git' 'yarn' 'python2' 'bower' 'nodejs-lts-dubnium' 
'npm' 'zip')
+makedepends=('go-pie' 'git' 'yarn' 'bower' 'nodejs-lts-dubnium' 'npm' 'zip'
+'go-bindata-hashicorp' 'go-bindata-assetfs' 'gox' 'go-tools')
 depends=('glibc')
 install='vault.install'
 backup=('etc/vault.hcl')
-_vault_commit='c14bd9a2b1d2c20f15b9f93f5c2d487507bb8a2f'
+_vault_commit='cec3fdeda0077efb0a6b0343908322f806a1dfef'
 source=("git+https://github.com/hashicorp/vault#commit=${_vault_commit};
 'vault.service'
 'vault.sysusers'
@@ -28,40 +29,16 @@
 
 prepare () {
   export GOPATH="${srcdir}"
-  export PATH="$PATH:$GOPATH/bin"
-  mkdir -p src/github.com/hashicorp/
+#  export PATH="$PATH:$GOPATH/bin"
+  mkdir -p src/github.com/hashicorp/ "$GOPATH/bin"
   mv "${pkgname}" "src/github.com/hashicorp/${pkgname}"
-  # this is temporary
-  go get github.com/kardianos/govendor
   export PACKAGE_ROOT="${GOPATH}/src/github.com/hashicorp/${pkgname}"
+  cd $PACKAGE_ROOT
+  git revert -n 61ff0fd8699dfe9efb9b014df8e9aff86a0aa924 
#https://github.com/hashicorp/vault/issues/7475
 }
 
 build () {
   cd $PACKAGE_ROOT
-
-  # We will provide these packages in the future ourself
-  govendor fetch github.com/mitchellh/gox
-  govendor fetch github.com/elazarl/go-bindata-assetfs/go-bindata-assetfs
-  govendor fetch github.com/hashicorp/go-bindata/go-bindata
-  govendor fetch golang.org/x/tools/cmd/goimports
-
-  cd $PACKAGE_ROOT/vendor/github.com/hashicorp/go-bindata/go-bindata
-  go build
-  go install
-
-  cd 
$PACKAGE_ROOT/vendor/github.com/elazarl/go-bindata-assetfs/go-bindata-assetfs
-  go build
-  go install
-
-  cd $PACKAGE_ROOT/vendor/github.com/mitchellh/gox
-  go build
-  go install
-
-  cd $PACKAGE_ROOT/vendor/golang.org/x/tools/cmd/goimports
-  go build
-  go install
-
-  cd $PACKAGE_ROOT
   XC_OSARCH='linux/amd64' make static-dist bin
 }
 


[arch-commits] Commit in (4 files)

2020-01-13 Thread Christian Rebischke via arch-commits
Date: Monday, January 13, 2020 @ 21:41:43
  Author: shibumi
Revision: 552444

push go-bindata-hashicorp to community

Added:
  go-bindata-hashicorp/
  go-bindata-hashicorp/repos/
  go-bindata-hashicorp/trunk/
  go-bindata-hashicorp/trunk/PKGBUILD

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

Added: go-bindata-hashicorp/trunk/PKGBUILD
===
--- go-bindata-hashicorp/trunk/PKGBUILD (rev 0)
+++ go-bindata-hashicorp/trunk/PKGBUILD 2020-01-13 21:41:43 UTC (rev 552444)
@@ -0,0 +1,35 @@
+# Maintainer: Christian Rebischke 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Lubomir 'Kuci' Kucera 
+
+pkgname=go-bindata-hashicorp
+_pkgname=go-bindata
+_commit=bf7910af899725e4938903fb32048c7c0b15f12e
+pkgver=3.0.7+bf7910af
+pkgrel=1
+pkgdesc="A small utility which generates Go code from any file (Hashicorp 
version)"
+arch=('x86_64')
+url='https://github.com/hashicorp/go-bindata'
+license=('CC0 1.0')
+depends=('glibc')
+makedepends=('go-pie' 'git')
+source=("git+https://github.com/hashicorp/go-bindata#commit=${_commit};)
+sha512sums=('SKIP')
+provides=('go-bindata')
+conflicts=('go-bindata')
+
+prepare() {
+mkdir -p "${srcdir}/src/github.com/hashicorp/"
+mv "${srcdir}/${_pkgname}" "${srcdir}/src/github.com/hashicorp/go-bindata"
+}
+
+build() {
+cd "${srcdir}/src/github.com/hashicorp/go-bindata/go-bindata"
+GOPATH="${srcdir}" go build
+}
+
+package() {
+cd "${srcdir}/src/github.com/hashicorp/go-bindata/go-bindata"
+install -Dm755 "go-bindata" "${pkgdir}/usr/bin/go-bindata"
+install -Dm644 ../LICENSE 
"${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
+}


[arch-commits] Commit in go-bindata-hashicorp/repos (2 files)

2020-01-13 Thread Christian Rebischke via arch-commits
Date: Monday, January 13, 2020 @ 21:41:55
  Author: shibumi
Revision: 552445

archrelease: copy trunk to community-x86_64

Added:
  go-bindata-hashicorp/repos/community-x86_64/
  go-bindata-hashicorp/repos/community-x86_64/PKGBUILD
(from rev 552444, go-bindata-hashicorp/trunk/PKGBUILD)

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

Copied: go-bindata-hashicorp/repos/community-x86_64/PKGBUILD (from rev 552444, 
go-bindata-hashicorp/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2020-01-13 21:41:55 UTC (rev 552445)
@@ -0,0 +1,35 @@
+# Maintainer: Christian Rebischke 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Lubomir 'Kuci' Kucera 
+
+pkgname=go-bindata-hashicorp
+_pkgname=go-bindata
+_commit=bf7910af899725e4938903fb32048c7c0b15f12e
+pkgver=3.0.7+bf7910af
+pkgrel=1
+pkgdesc="A small utility which generates Go code from any file (Hashicorp 
version)"
+arch=('x86_64')
+url='https://github.com/hashicorp/go-bindata'
+license=('CC0 1.0')
+depends=('glibc')
+makedepends=('go-pie' 'git')
+source=("git+https://github.com/hashicorp/go-bindata#commit=${_commit};)
+sha512sums=('SKIP')
+provides=('go-bindata')
+conflicts=('go-bindata')
+
+prepare() {
+mkdir -p "${srcdir}/src/github.com/hashicorp/"
+mv "${srcdir}/${_pkgname}" "${srcdir}/src/github.com/hashicorp/go-bindata"
+}
+
+build() {
+cd "${srcdir}/src/github.com/hashicorp/go-bindata/go-bindata"
+GOPATH="${srcdir}" go build
+}
+
+package() {
+cd "${srcdir}/src/github.com/hashicorp/go-bindata/go-bindata"
+install -Dm755 "go-bindata" "${pkgdir}/usr/bin/go-bindata"
+install -Dm644 ../LICENSE 
"${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
+}


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

2020-01-13 Thread Jelle van der Waa via arch-commits
Date: Monday, January 13, 2020 @ 21:34:34
  Author: jelle
Revision: 373452

the source ftp server died switch to github sources

The github sources only sign their tags and not commits so use tag= instead of
commit=.

Modified:
  pciutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 20:45:30 UTC (rev 373451)
+++ PKGBUILD2020-01-13 21:34:34 UTC (rev 373452)
@@ -7,18 +7,19 @@
 license=('GPL2')
 url="https://mj.ucw.cz/sw/pciutils/;
 depends=('glibc' 'hwids' 'kmod')
+makedepends=('git')
 
source=(#ftp://ftp.kernel.org/pub/software/utils/${pkgname}/${pkgname}-${pkgver}.tar.bz2
-   ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/${pkgname}-${pkgver}.tar.gz
-   
ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/${pkgname}-${pkgver}.tar.gz.sign)
+
#ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/${pkgname}-${pkgver}.tar.gz
+
#ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/${pkgname}-${pkgver}.tar.gz.sign
+git+https://github.com/pciutils/pciutils.git#tag=v3.6.2?signed)
 validpgpkeys=(
   '5558F9399CD7836850553C6EC28E7847ED70F82D' # Martin Mares 

  )
 
-md5sums=('a1c5ec13f81a1c9cf380c93623959005'
- 'SKIP')
+md5sums=('SKIP')
 
 build() {
-  cd "${pkgname}-${pkgver}"
+  cd "${pkgname}"
   make OPT="${CFLAGS} -fPIC -DPIC" ZLIB=no SHARED=no PREFIX=/usr 
SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man SBINDIR=/usr/bin lib/libpci.a 
   cp lib/libpci.a "${srcdir}/"
   make clean
@@ -26,7 +27,7 @@
 }
 
 package() {
-  cd "${pkgname}-${pkgver}"
+  cd "${pkgname}"
   make SHARED=yes PREFIX=/usr SBINDIR=/usr/bin SHAREDIR=/usr/share/hwdata 
MANDIR=/usr/share/man DESTDIR="${pkgdir}" install install-lib
   # this is now supplied by the hwids package
   rm -rf 
"$pkgdir"/usr/{sbin/update-pciids,share/{man/man8/update-pciids.8,hwdata}}


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

2020-01-13 Thread Jonas Witschel via arch-commits
Date: Monday, January 13, 2020 @ 21:11:29
  Author: diabonas
Revision: 552442

upgpkg: pdftk 3.0.9-1: upstream release

Modified:
  pdftk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 21:04:36 UTC (rev 552441)
+++ PKGBUILD2020-01-13 21:11:29 UTC (rev 552442)
@@ -1,6 +1,6 @@
 # Maintainer: Jonas Witschel 
 pkgname=pdftk
-pkgver=3.0.8
+pkgver=3.0.9
 pkgrel=1
 pkgdesc='Command-line tool for working with PDFs'
 arch=('any')
@@ -9,10 +9,10 @@
 depends=('java-runtime-headless')
 makedepends=('ant' 'bcprov' 'java-commons-lang' 'strip-nondeterminism')
 checkdepends=('java-hamcrest' 'junit' 'junit-system-rules' 'poppler')
-optdepends=('bcprov: encrypted PDF support'
-'java-commons-lang: dump_data operation support')
+optdepends=('bcprov: support for signed PDF documents'
+'java-commons-lang: dump_data, dump_data_fields and update_info 
operation support')
 source=("$url/-/archive/v$pkgver/$pkgname-v$pkgver.tar.bz2" 'pdftk.sh')
-sha512sums=('1b7f8b07e97877fe3a7ff42f425da5b1fdf1397f7abf88ef06c5033a3b849f03fed89f02f15c770bcd581537a7b5442e5693a93ff903efc9588ed60e85cdcdc3'
+sha512sums=('5f535542f827373d9c6958f4423fe560257217679eb5b1ff47b679c297e037006a8aa53b6e83c22917bc5b0b6273afd558f79e36fde1df622d03fe630734d299'
 
'439c397472012d71c8e782a75819a7a950474c387b7050bbd5aa2f849d1dbe29423accf3f8e17d18436ba32eb4f76072df5b4f85caebd853df1e75c131631988')
 
 prepare() {
@@ -25,7 +25,7 @@
 
 build() {
cd "$pkgname-v$pkgver"
-   ant jar
+   ant clean jar
 
# Timestamps in JAR files generated by Ant do not honour 
SOURCE_DATE_EPOCH
# (https://bz.apache.org/bugzilla/show_bug.cgi?id=61269)


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

2020-01-13 Thread Jonas Witschel via arch-commits
Date: Monday, January 13, 2020 @ 21:11:37
  Author: diabonas
Revision: 552443

archrelease: copy trunk to community-any

Added:
  pdftk/repos/community-any/PKGBUILD
(from rev 552442, pdftk/trunk/PKGBUILD)
  pdftk/repos/community-any/pdftk.sh
(from rev 552442, pdftk/trunk/pdftk.sh)
Deleted:
  pdftk/repos/community-any/PKGBUILD
  pdftk/repos/community-any/pdftk.sh

--+
 PKGBUILD |   90 ++---
 pdftk.sh |6 ++--
 2 files changed, 48 insertions(+), 48 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-01-13 21:11:29 UTC (rev 552442)
+++ PKGBUILD2020-01-13 21:11:37 UTC (rev 552443)
@@ -1,45 +0,0 @@
-# Maintainer: Jonas Witschel 
-pkgname=pdftk
-pkgver=3.0.8
-pkgrel=1
-pkgdesc='Command-line tool for working with PDFs'
-arch=('any')
-url='https://gitlab.com/pdftk-java/pdftk'
-license=('GPL')
-depends=('java-runtime-headless')
-makedepends=('ant' 'bcprov' 'java-commons-lang' 'strip-nondeterminism')
-checkdepends=('java-hamcrest' 'junit' 'junit-system-rules' 'poppler')
-optdepends=('bcprov: encrypted PDF support'
-'java-commons-lang: dump_data operation support')
-source=("$url/-/archive/v$pkgver/$pkgname-v$pkgver.tar.bz2" 'pdftk.sh')
-sha512sums=('1b7f8b07e97877fe3a7ff42f425da5b1fdf1397f7abf88ef06c5033a3b849f03fed89f02f15c770bcd581537a7b5442e5693a93ff903efc9588ed60e85cdcdc3'
-
'439c397472012d71c8e782a75819a7a950474c387b7050bbd5aa2f849d1dbe29423accf3f8e17d18436ba32eb4f76072df5b4f85caebd853df1e75c131631988')
-
-prepare() {
-   cd "$pkgname-v$pkgver"
-   mkdir lib
-   ln -s 
/usr/share/java/{bcprov,commons-lang/commons-lang,hamcrest-core,junit,junit-system-rules/system-rules}.jar
 lib
-   # No need for code coverage reports during tests
-   sed -ri '/<\/?jacoco:coverage>/d' build.xml
-}
-
-build() {
-   cd "$pkgname-v$pkgver"
-   ant jar
-
-   # Timestamps in JAR files generated by Ant do not honour 
SOURCE_DATE_EPOCH
-   # (https://bz.apache.org/bugzilla/show_bug.cgi?id=61269)
-   strip-nondeterminism --timestamp "$SOURCE_DATE_EPOCH" 
build/jar/pdftk.jar
-}
-
-check() {
-   cd "$pkgname-v$pkgver"
-   ant test-run
-}
-
-package() {
-   cd "$pkgname-v$pkgver"
-   install -Dm644 build/jar/pdftk.jar -t "$pkgdir/usr/share/java/$pkgname"
-   install -Dm644 pdftk.1 -t "$pkgdir/usr/share/man/man1"
-   install -Dm755 "$srcdir/pdftk.sh" "$pkgdir/usr/bin/pdftk"
-}

Copied: pdftk/repos/community-any/PKGBUILD (from rev 552442, 
pdftk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-01-13 21:11:37 UTC (rev 552443)
@@ -0,0 +1,45 @@
+# Maintainer: Jonas Witschel 
+pkgname=pdftk
+pkgver=3.0.9
+pkgrel=1
+pkgdesc='Command-line tool for working with PDFs'
+arch=('any')
+url='https://gitlab.com/pdftk-java/pdftk'
+license=('GPL')
+depends=('java-runtime-headless')
+makedepends=('ant' 'bcprov' 'java-commons-lang' 'strip-nondeterminism')
+checkdepends=('java-hamcrest' 'junit' 'junit-system-rules' 'poppler')
+optdepends=('bcprov: support for signed PDF documents'
+'java-commons-lang: dump_data, dump_data_fields and update_info 
operation support')
+source=("$url/-/archive/v$pkgver/$pkgname-v$pkgver.tar.bz2" 'pdftk.sh')
+sha512sums=('5f535542f827373d9c6958f4423fe560257217679eb5b1ff47b679c297e037006a8aa53b6e83c22917bc5b0b6273afd558f79e36fde1df622d03fe630734d299'
+
'439c397472012d71c8e782a75819a7a950474c387b7050bbd5aa2f849d1dbe29423accf3f8e17d18436ba32eb4f76072df5b4f85caebd853df1e75c131631988')
+
+prepare() {
+   cd "$pkgname-v$pkgver"
+   mkdir lib
+   ln -s 
/usr/share/java/{bcprov,commons-lang/commons-lang,hamcrest-core,junit,junit-system-rules/system-rules}.jar
 lib
+   # No need for code coverage reports during tests
+   sed -ri '/<\/?jacoco:coverage>/d' build.xml
+}
+
+build() {
+   cd "$pkgname-v$pkgver"
+   ant clean jar
+
+   # Timestamps in JAR files generated by Ant do not honour 
SOURCE_DATE_EPOCH
+   # (https://bz.apache.org/bugzilla/show_bug.cgi?id=61269)
+   strip-nondeterminism --timestamp "$SOURCE_DATE_EPOCH" 
build/jar/pdftk.jar
+}
+
+check() {
+   cd "$pkgname-v$pkgver"
+   ant test-run
+}
+
+package() {
+   cd "$pkgname-v$pkgver"
+   install -Dm644 build/jar/pdftk.jar -t "$pkgdir/usr/share/java/$pkgname"
+   install -Dm644 pdftk.1 -t "$pkgdir/usr/share/man/man1"
+   install -Dm755 "$srcdir/pdftk.sh" "$pkgdir/usr/bin/pdftk"
+}

Deleted: pdftk.sh
===
--- pdftk.sh2020-01-13 21:11:29 UTC (rev 552442)
+++ pdftk.sh2020-01-13 21:11:37 UTC (rev 552443)
@@ -1,3 +0,0 @@
-#!/bin/sh
-CP='/usr/share/java/bcprov.jar:/usr/share/java/commons-lang/commons-lang.jar:/usr/share/java/pdftk/pdftk.jar'
-exec /usr/bin/java -cp "$CP" 

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

2020-01-13 Thread Kyle Keen via arch-commits
Date: Monday, January 13, 2020 @ 21:04:22
  Author: kkeen
Revision: 552440

upgpkg: libpgm 5.2.122-5  py3

Modified:
  libpgm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 19:55:37 UTC (rev 552439)
+++ PKGBUILD2020-01-13 21:04:22 UTC (rev 552440)
@@ -4,13 +4,13 @@
 
 pkgname=libpgm
 pkgver=5.2.122
-pkgrel=4
+pkgrel=5
 pkgdesc="OpenPGM: implementation of the Pragmatic General Multicast (PGM, 
RFC3208)"
 arch=('x86_64')
 url='https://www.freshports.org/net/openpgm/'
 license=('LGPL2.1')
 depends=('glibc')
-makedepends=('python2')
+makedepends=('python')
 options=(!strip)
 #source=("http://openpgm.googlecode.com/files/$pkgname-$pkgver.tar.gz;)
 
source=("https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/openpgm/libpgm-$pkgver.tar.gz;
@@ -21,8 +21,8 @@
 
 prepare() {
   cd "$srcdir/$pkgname-$pkgver/openpgm/pgm"
-  find . -type f -exec sed -i 's/python/python2/g' {} \+
   patch -p3 -i "$srcdir"/libpgm-fix-pkgconfig.patch # Fix wrong include dir in 
pkgconfig file
+  2to3 -wn version_generator.py
 }
 
 build() {


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

2020-01-13 Thread Kyle Keen via arch-commits
Date: Monday, January 13, 2020 @ 21:04:36
  Author: kkeen
Revision: 552441

archrelease: copy trunk to community-x86_64

Added:
  libpgm/repos/community-x86_64/PKGBUILD
(from rev 552440, libpgm/trunk/PKGBUILD)
Deleted:
  libpgm/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-01-13 21:04:22 UTC (rev 552440)
+++ PKGBUILD2020-01-13 21:04:36 UTC (rev 552441)
@@ -1,37 +0,0 @@
-# Maintainer: Kyle Keen 
-# Contributor: Lex Black 
-# Contributor: Vladimir Kirillov 
-
-pkgname=libpgm
-pkgver=5.2.122
-pkgrel=4
-pkgdesc="OpenPGM: implementation of the Pragmatic General Multicast (PGM, 
RFC3208)"
-arch=('x86_64')
-url='https://www.freshports.org/net/openpgm/'
-license=('LGPL2.1')
-depends=('glibc')
-makedepends=('python2')
-options=(!strip)
-#source=("http://openpgm.googlecode.com/files/$pkgname-$pkgver.tar.gz;)
-source=("https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/openpgm/libpgm-$pkgver.tar.gz;
-
libpgm-fix-pkgconfig.patch::"https://github.com/steve-o/openpgm/commit/ee25ff3d13f2639b4c3a42125e79f77f921c3320.patch;)
-sha256sums=('6b895f550b95284dcde7189b01e04a9a1c1f94579af31b1eebd32c2207a1ba2c'
-'4a9fc7fbb6e73e325639a895cd19c1ac6918b575f715c057caa01f826de40114')
-
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver/openpgm/pgm"
-  find . -type f -exec sed -i 's/python/python2/g' {} \+
-  patch -p3 -i "$srcdir"/libpgm-fix-pkgconfig.patch # Fix wrong include dir in 
pkgconfig file
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver/openpgm/pgm"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver/openpgm/pgm"
-  make prefix="$pkgdir/usr" install
-}

Copied: libpgm/repos/community-x86_64/PKGBUILD (from rev 552440, 
libpgm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-01-13 21:04:36 UTC (rev 552441)
@@ -0,0 +1,37 @@
+# Maintainer: Kyle Keen 
+# Contributor: Lex Black 
+# Contributor: Vladimir Kirillov 
+
+pkgname=libpgm
+pkgver=5.2.122
+pkgrel=5
+pkgdesc="OpenPGM: implementation of the Pragmatic General Multicast (PGM, 
RFC3208)"
+arch=('x86_64')
+url='https://www.freshports.org/net/openpgm/'
+license=('LGPL2.1')
+depends=('glibc')
+makedepends=('python')
+options=(!strip)
+#source=("http://openpgm.googlecode.com/files/$pkgname-$pkgver.tar.gz;)
+source=("https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/openpgm/libpgm-$pkgver.tar.gz;
+
libpgm-fix-pkgconfig.patch::"https://github.com/steve-o/openpgm/commit/ee25ff3d13f2639b4c3a42125e79f77f921c3320.patch;)
+sha256sums=('6b895f550b95284dcde7189b01e04a9a1c1f94579af31b1eebd32c2207a1ba2c'
+'4a9fc7fbb6e73e325639a895cd19c1ac6918b575f715c057caa01f826de40114')
+
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver/openpgm/pgm"
+  patch -p3 -i "$srcdir"/libpgm-fix-pkgconfig.patch # Fix wrong include dir in 
pkgconfig file
+  2to3 -wn version_generator.py
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver/openpgm/pgm"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver/openpgm/pgm"
+  make prefix="$pkgdir/usr" install
+}


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

2020-01-13 Thread Jelle van der Waa via arch-commits
Date: Monday, January 13, 2020 @ 20:45:30
  Author: jelle
Revision: 373451

Make perl rebuild more reproducible

Hardcode the hostname, uname and determine the configuration time using
SOURCE_DATE_EPOCH to make the build more reproducible.

Modified:
  perl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 19:34:21 UTC (rev 373450)
+++ PKGBUILD2020-01-13 20:45:30 UTC (rev 373451)
@@ -172,7 +172,10 @@
 -Dvendorscript=/usr/bin/vendor_perl \
 -Dinc_version_list=none \
 -Dman1ext=1perl -Dman3ext=3perl ${arch_opts} \
--Dlddlflags="-shared ${LDFLAGS}" -Dldflags="${LDFLAGS}"
+-Dlddlflags="-shared ${LDFLAGS}" -Dldflags="${LDFLAGS}" \
+-Dmyuname="archlinux" \
+-Dmyhostname="archlinux" \
+-Dcf_time="`LC_ALL=C LANGUAGE=C $date -u -d@$SOURCE_DATE_EPOCH`"
   make
 }
 


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 19:55:37
  Author: felixonmars
Revision: 552439

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-wreq/repos/community-staging-x86_64/PKGBUILD (from rev 552438, 
haskell-wreq/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-13 19:55:37 UTC (rev 552439)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=wreq
+pkgname=haskell-wreq
+pkgver=0.5.3.2
+pkgrel=105
+pkgdesc="An easy-to-use HTTP client library."
+url="https://github.com/bos/wreq;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-authenticate-oauth'
+ 'haskell-base16-bytestring' 'haskell-case-insensitive' 
'haskell-cryptonite'
+ 'haskell-exceptions' 'haskell-hashable' 'haskell-http-client' 
'haskell-http-client-tls'
+ 'haskell-http-types' 'haskell-lens' 'haskell-lens-aeson' 
'haskell-memory'
+ 'haskell-mime-types' 'haskell-psqueues' 'haskell-time-locale-compat'
+ 'haskell-unordered-containers' 'haskell-aeson-pretty' 
'haskell-base64-bytestring'
+ 'haskell-snap-core' 'haskell-snap-server' 'haskell-unix-compat' 
'haskell-uuid')
+makedepends=('ghc' 'haskell-cabal-doctest' 'haskell-doctest' 'haskell-hunit' 
'haskell-quickcheck'
+ 'haskell-network-info' 'haskell-temporary' 
'haskell-test-framework'
+ 'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2' 'haskell-vector')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('5a2c62b973758cb8ce2bf20504e328090896fa25e7ee1f77b472d7cf5156e08b6d85bf4341ff45e44db1724070fcf3c0f21037fa0a79211a1767024328f7c779')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fdoctest -f-aws -fhttpbin -f-developer
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test || 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.md" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.md"
+}


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 19:55:29
  Author: felixonmars
Revision: 552438

upgpkg: haskell-wreq 0.5.3.2-105: rebuild with ghc 8.8.1, cabal-doctest 1.0.7, 
polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 0.95.0.0, 
regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, unexceptionalio 0.5.0, 
gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 0.7, resolv 0.1.1.3, 
ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, foldl 1.4.6, lens 4.18, 
postgresql-binary 0.12.2, tls 1.5.0

Modified:
  haskell-wreq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 19:53:09 UTC (rev 552437)
+++ PKGBUILD2020-01-13 19:55:29 UTC (rev 552438)
@@ -3,7 +3,7 @@
 _hkgname=wreq
 pkgname=haskell-wreq
 pkgver=0.5.3.2
-pkgrel=104
+pkgrel=105
 pkgdesc="An easy-to-use HTTP client library."
 url="https://github.com/bos/wreq;
 license=('BSD')


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 19:53:00
  Author: felixonmars
Revision: 552436

upgpkg: haskell-snap-server 1.1.1.1-90: rebuild with ghc 8.8.1, cabal-doctest 
1.0.7, polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 
0.95.0.0, regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, 
unexceptionalio 0.5.0, gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 
0.7, resolv 0.1.1.3, ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, 
foldl 1.4.6, lens 4.18, postgresql-binary 0.12.2, tls 1.5.0

Modified:
  haskell-snap-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 19:50:25 UTC (rev 552435)
+++ PKGBUILD2020-01-13 19:53:00 UTC (rev 552436)
@@ -3,7 +3,7 @@
 _hkgname=snap-server
 pkgname=haskell-snap-server
 pkgver=1.1.1.1
-pkgrel=89
+pkgrel=90
 pkgdesc="A web server for the Snap Framework"
 url="https://github.com/snapframework/snap-server;
 license=('BSD')


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 19:53:09
  Author: felixonmars
Revision: 552437

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-snap-server/repos/community-staging-x86_64/PKGBUILD
(from rev 552436, 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
===
--- PKGBUILD2020-01-13 19:53:00 UTC (rev 552436)
+++ PKGBUILD2020-01-13 19:53:09 UTC (rev 552437)
@@ -1,60 +0,0 @@
-# Maintainer: Felix Yan 
-
-_hkgname=snap-server
-pkgname=haskell-snap-server
-pkgver=1.1.1.1
-pkgrel=89
-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' -e 's/< *0.8/<1/' -e 's/< *4/<5/' 
$_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 
552436, haskell-snap-server/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-01-13 19:53:09 UTC (rev 552437)
@@ -0,0 +1,60 @@
+# Maintainer: Felix Yan 
+
+_hkgname=snap-server
+pkgname=haskell-snap-server
+pkgver=1.1.1.1
+pkgrel=90
+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' -e 's/< *0.8/<1/' -e 's/< *4/<5/' 
$_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared 

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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 19:50:18
  Author: felixonmars
Revision: 552434

upgpkg: haskell-http-streams 0.8.6.1-154: rebuild with ghc 8.8.1, cabal-doctest 
1.0.7, polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 
0.95.0.0, regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, 
unexceptionalio 0.5.0, gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 
0.7, resolv 0.1.1.3, ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, 
foldl 1.4.6, lens 4.18, postgresql-binary 0.12.2, tls 1.5.0

Modified:
  haskell-http-streams/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 19:48:39 UTC (rev 552433)
+++ PKGBUILD2020-01-13 19:50:18 UTC (rev 552434)
@@ -3,7 +3,7 @@
 _hkgname=http-streams
 pkgname=haskell-http-streams
 pkgver=0.8.6.1
-pkgrel=153
+pkgrel=154
 pkgdesc="An HTTP client using io-streams"
 url="https://github.com/afcowie/http-streams;
 license=('BSD')


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 19:50:25
  Author: felixonmars
Revision: 552435

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

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

Copied: haskell-http-streams/repos/community-staging-x86_64/PKGBUILD (from rev 
552434, haskell-http-streams/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-13 19:50:25 UTC (rev 552435)
@@ -0,0 +1,59 @@
+# Maintainer: Felix Yan 
+
+_hkgname=http-streams
+pkgname=haskell-http-streams
+pkgver=0.8.6.1
+pkgrel=154
+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-snap-server/trunk (PKGBUILD)

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 19:48:32
  Author: felixonmars
Revision: 552432

upgpkg: haskell-snap-server 1.1.1.1-89: rebuild pass 1, specified --nocheck

Modified:
  haskell-snap-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 19:43:11 UTC (rev 552431)
+++ PKGBUILD2020-01-13 19:48:32 UTC (rev 552432)
@@ -3,7 +3,7 @@
 _hkgname=snap-server
 pkgname=haskell-snap-server
 pkgver=1.1.1.1
-pkgrel=88
+pkgrel=89
 pkgdesc="A web server for the Snap Framework"
 url="https://github.com/snapframework/snap-server;
 license=('BSD')
@@ -22,7 +22,7 @@
 
 prepare() {
 cd $_hkgname-$pkgver
-sed -i -e '/bytestring-builder/d' -e 's/< *0.8/<1/' $_hkgname.cabal
+sed -i -e '/bytestring-builder/d' -e 's/< *0.8/<1/' -e 's/< *4/<5/' 
$_hkgname.cabal
 }
 
 build() {


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 19:48:39
  Author: felixonmars
Revision: 552433

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-snap-server/repos/community-staging-x86_64/PKGBUILD (from rev 
552432, haskell-snap-server/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-13 19:48:39 UTC (rev 552433)
@@ -0,0 +1,60 @@
+# Maintainer: Felix Yan 
+
+_hkgname=snap-server
+pkgname=haskell-snap-server
+pkgver=1.1.1.1
+pkgrel=89
+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' -e 's/< *0.8/<1/' -e 's/< *4/<5/' 
$_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"
+}


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

2020-01-13 Thread Jonas Witschel via arch-commits
Date: Monday, January 13, 2020 @ 19:43:04
  Author: diabonas
Revision: 552430

upgpkg: tpm2-abrmd 2.3.1-1: upstream release

Modified:
  tpm2-abrmd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 19:09:54 UTC (rev 552429)
+++ PKGBUILD2020-01-13 19:43:04 UTC (rev 552430)
@@ -1,8 +1,7 @@
-# Maintainer: Bruno Pagani 
 # Maintainer: Jonas Witschel 
 
 pkgname=tpm2-abrmd
-pkgver=2.3.0
+pkgver=2.3.1
 pkgrel=1
 pkgdesc="Trusted Platform Module 2.0 Access Broker and Resource Management 
Daemon"
 arch=(x86_64)
@@ -9,9 +8,9 @@
 url="https://github.com/tpm2-software/tpm2-abrmd;
 license=(BSD)
 depends=(dbus glib2 tpm2-tss)
-checkdepends=(cmocka ibm-sw-tpm2 net-tools)
+checkdepends=(cmocka ibm-sw-tpm2 iproute2)
 
source=("${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.asc})
-sha256sums=('63cb59be1fd21e6ae233c37a0aa4a59883a4885a7bfd2c7e69979c5048518d50'
+sha512sums=('144ab2b147cd18f892f3c05181efdbed2ac422fe8507eb42871ffe571340b6395431743a4f1995a7ce7a914fd5e7afd2b17328062c893a0403708c2c4d92e0cb'
 'SKIP')
 validpgpkeys=(42007E876F248E04A3F2FE25AE4548D043DEC7C3) # Philip Tricca 

 


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

2020-01-13 Thread Jonas Witschel via arch-commits
Date: Monday, January 13, 2020 @ 19:43:11
  Author: diabonas
Revision: 552431

archrelease: copy trunk to community-x86_64

Added:
  tpm2-abrmd/repos/community-x86_64/PKGBUILD
(from rev 552430, tpm2-abrmd/trunk/PKGBUILD)
Deleted:
  tpm2-abrmd/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-01-13 19:43:04 UTC (rev 552430)
+++ PKGBUILD2020-01-13 19:43:11 UTC (rev 552431)
@@ -1,38 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Maintainer: Jonas Witschel 
-
-pkgname=tpm2-abrmd
-pkgver=2.3.0
-pkgrel=1
-pkgdesc="Trusted Platform Module 2.0 Access Broker and Resource Management 
Daemon"
-arch=(x86_64)
-url="https://github.com/tpm2-software/tpm2-abrmd;
-license=(BSD)
-depends=(dbus glib2 tpm2-tss)
-checkdepends=(cmocka ibm-sw-tpm2 net-tools)
-source=("${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.asc})
-sha256sums=('63cb59be1fd21e6ae233c37a0aa4a59883a4885a7bfd2c7e69979c5048518d50'
-'SKIP')
-validpgpkeys=(42007E876F248E04A3F2FE25AE4548D043DEC7C3) # Philip Tricca 

-
-build() {
-cd ${pkgname}-${pkgver}
-./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---with-dbuspolicydir=/usr/share/dbus-1/system.d \
-$( ((CHECKFUNC)) && echo --enable-unit --enable-integration)
-make
-}
-
-check() {
-cd ${pkgname}-${pkgver}
-make check
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
-rm -r "${pkgdir}"/usr/lib/systemd/system-preset
-install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: tpm2-abrmd/repos/community-x86_64/PKGBUILD (from rev 552430, 
tpm2-abrmd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-01-13 19:43:11 UTC (rev 552431)
@@ -0,0 +1,37 @@
+# Maintainer: Jonas Witschel 
+
+pkgname=tpm2-abrmd
+pkgver=2.3.1
+pkgrel=1
+pkgdesc="Trusted Platform Module 2.0 Access Broker and Resource Management 
Daemon"
+arch=(x86_64)
+url="https://github.com/tpm2-software/tpm2-abrmd;
+license=(BSD)
+depends=(dbus glib2 tpm2-tss)
+checkdepends=(cmocka ibm-sw-tpm2 iproute2)
+source=("${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.asc})
+sha512sums=('144ab2b147cd18f892f3c05181efdbed2ac422fe8507eb42871ffe571340b6395431743a4f1995a7ce7a914fd5e7afd2b17328062c893a0403708c2c4d92e0cb'
+'SKIP')
+validpgpkeys=(42007E876F248E04A3F2FE25AE4548D043DEC7C3) # Philip Tricca 

+
+build() {
+cd ${pkgname}-${pkgver}
+./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--with-dbuspolicydir=/usr/share/dbus-1/system.d \
+$( ((CHECKFUNC)) && echo --enable-unit --enable-integration)
+make
+}
+
+check() {
+cd ${pkgname}-${pkgver}
+make check
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+make DESTDIR="${pkgdir}" install
+rm -r "${pkgdir}"/usr/lib/systemd/system-preset
+install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}


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

2020-01-13 Thread Florian Pritz via arch-commits
Date: Monday, January 13, 2020 @ 19:34:21
  Author: bluewind
Revision: 373450

archrelease: copy trunk to testing-x86_64

Added:
  syslog-ng/repos/testing-x86_64/
  syslog-ng/repos/testing-x86_64/PKGBUILD
(from rev 373449, syslog-ng/trunk/PKGBUILD)
  syslog-ng/repos/testing-x86_64/syslog-ng.conf
(from rev 373449, syslog-ng/trunk/syslog-ng.conf)
  syslog-ng/repos/testing-x86_64/syslog-ng.logrotate
(from rev 373449, syslog-ng/trunk/syslog-ng.logrotate)

-+
 PKGBUILD|   65 +++
 syslog-ng.conf  |   92 ++
 syslog-ng.logrotate |7 +++
 3 files changed, 164 insertions(+)

Copied: syslog-ng/repos/testing-x86_64/PKGBUILD (from rev 373449, 
syslog-ng/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-01-13 19:34:21 UTC (rev 373450)
@@ -0,0 +1,65 @@
+# Maintainer: Eric Bélanger 
+
+pkgname=syslog-ng
+pkgver=3.25.1
+pkgrel=2
+pkgdesc="Next-generation syslogd with advanced networking and filtering 
capabilities"
+arch=('x86_64')
+url="https://www.syslog-ng.com/products/open-source-log-management/;
+license=('GPL2' 'LGPL2.1')
+depends=('awk' 'systemd-libs' 'glib2' 'libnsl' 'json-c' 'curl' 'libnet')
+makedepends=('libxslt' 'mongo-c-driver' 'librabbitmq-c' 'python' 'libesmtp' 
'hiredis'
+ 'libdbi' 'libmaxminddb' 'net-snmp' 'librdkafka')
+checkdepends=('python-nose' 'python-ply')
+optdepends=('logrotate: for rotating log files'
+'libdbi: for the SQL plugin'
+'librabbitmq-c: for the AMQP plugin'
+'mongo-c-driver: for the MongoDB plugin'
+'libesmtp: for the SMTP plugin'
+'hiredis: for the Redis plugin'
+'libmaxminddb: for the GeoIP2 plugin'
+'net-snmp: for the SNMP plugin'
+'librdkafka: for the Kafka C plugin'
+'python: for Python-based plugins')
+conflicts=('eventlog')
+replaces=('eventlog')
+backup=('etc/syslog-ng/scl.conf'
+'etc/syslog-ng/syslog-ng.conf'
+'etc/logrotate.d/syslog-ng'
+'etc/default/syslog-ng@default')
+source=(https://github.com/balabit/syslog-ng/releases/download/syslog-ng-$pkgver/$pkgname-$pkgver.tar.gz
+syslog-ng.conf syslog-ng.logrotate)
+sha256sums=('34cb9673bcde58d543890e6c1189f466f938e199f227c524a6fa2f47f4db6817'
+'eaa6fea3f9b8af3edc0b4832837c4697aec9d9cf7674c7949054619d4900f40d'
+'93c935eca56854011ea9e353b7a1da662ad40b2e8452954c5b4b5a1d5b2d5317')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i -e 's,/bin/,/usr/bin/,' -e 's,/sbin/,/bin/,' 
contrib/systemd/syslog-ng@.service
+  sed -i -e 's|/var/run|/run|g' contrib/systemd/syslog-ng@default
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh
+  ./configure --prefix=/usr --sysconfdir=/etc/syslog-ng --libexecdir=/usr/lib \
+--sbindir=/usr/bin --localstatedir=/var/lib/syslog-ng --datadir=/usr/share 
\
+--with-pidfile-dir=/run --enable-spoof-source --enable-ipv6 \
+--enable-systemd --with-systemdsystemunitdir=/usr/lib/systemd/system \
+--enable-manpages --enable-all-modules --disable-java 
--disable-java-modules  \
+--disable-riemann --with-python=3 --with-jsonc=system
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check || /usr/bin/true # unit test requires criterion
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
+  install -dm755 "$pkgdir/var/lib/syslog-ng" 
"$pkgdir/etc/syslog-ng/patterndb.d"
+  install -Dm644 "$srcdir/syslog-ng.conf" 
"$pkgdir/etc/syslog-ng/syslog-ng.conf"
+  install -Dm644 "$srcdir/syslog-ng.logrotate" 
"$pkgdir/etc/logrotate.d/syslog-ng"
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/contrib/systemd/syslog-ng@default 
-t "$pkgdir"/etc/default
+}

Copied: syslog-ng/repos/testing-x86_64/syslog-ng.conf (from rev 373449, 
syslog-ng/trunk/syslog-ng.conf)
===
--- testing-x86_64/syslog-ng.conf   (rev 0)
+++ testing-x86_64/syslog-ng.conf   2020-01-13 19:34:21 UTC (rev 373450)
@@ -0,0 +1,92 @@
+@version: 3.25
+@include "scl.conf"
+#
+# /etc/syslog-ng/syslog-ng.conf
+#
+
+options {
+  stats_freq (0);
+  flush_lines (0);
+  time_reopen (10);
+  log_fifo_size (1);
+  chain_hostnames (off);
+  use_dns (no);
+  use_fqdn (no);
+  create_dirs (no);
+  keep_hostname (yes);
+  perm(0640);
+  group("log");
+};
+
+source src {
+  system();
+  internal();
+};
+
+destination d_authlog { file("/var/log/auth.log"); };
+destination d_syslog { file("/var/log/syslog.log"); };
+destination d_cron { file("/var/log/crond.log"); };
+destination d_daemon { file("/var/log/daemon.log"); };
+destination d_kernel { file("/var/log/kernel.log"); };
+destination d_lpr { file("/var/log/lpr.log"); };
+destination d_user { file("/var/log/user.log"); };
+destination d_uucp { 

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

2020-01-13 Thread Christian Hesse via arch-commits
Date: Monday, January 13, 2020 @ 19:27:06
  Author: eworm
Revision: 373448

archrelease: copy trunk to testing-x86_64

Added:
  git/repos/testing-x86_64/
  git/repos/testing-x86_64/0001-git-p4-python.patch
(from rev 373447, git/trunk/0001-git-p4-python.patch)
  git/repos/testing-x86_64/PKGBUILD
(from rev 373447, git/trunk/PKGBUILD)
  git/repos/testing-x86_64/git-daemon.socket
(from rev 373447, git/trunk/git-daemon.socket)
  git/repos/testing-x86_64/git-daemon@.service
(from rev 373447, git/trunk/git-daemon@.service)
  git/repos/testing-x86_64/git-sysusers.conf
(from rev 373447, git/trunk/git-sysusers.conf)
  git/repos/testing-x86_64/git.install
(from rev 373447, git/trunk/git.install)

--+
 0001-git-p4-python.patch |  631 +
 PKGBUILD |  136 +
 git-daemon.socket|9 
 git-daemon@.service  |   14 
 git-sysusers.conf|1 
 git.install  |   14 
 6 files changed, 805 insertions(+)

Copied: git/repos/testing-x86_64/0001-git-p4-python.patch (from rev 373447, 
git/trunk/0001-git-p4-python.patch)
===
--- testing-x86_64/0001-git-p4-python.patch (rev 0)
+++ testing-x86_64/0001-git-p4-python.patch 2020-01-13 19:27:06 UTC (rev 
373448)
@@ -0,0 +1,631 @@
+diff --git a/git-p4.py b/git-p4.py
+index 40d9e7c594..ca0a874501 100755
+--- a/git-p4.py
 b/git-p4.py
+@@ -8,12 +8,12 @@
+ # License: MIT 
+ #
+ import sys
+-if sys.hexversion < 0x0204:
+-# The limiter is the subprocess module
+-sys.stderr.write("git-p4: requires Python 2.4 or later.\n")
++if sys.version_info.major < 3 and sys.version_info.minor < 7:
++sys.stderr.write("git-p4: requires Python 2.7 or later.\n")
+ sys.exit(1)
+ import os
+ import optparse
++import functools
+ import marshal
+ import subprocess
+ import tempfile
+@@ -27,36 +27,15 @@
+ import ctypes
+ import errno
+ 
++# On python2.7 where raw_input() and input() are both availble,
++# we want raw_input's semantics, but aliased to input for python3
++# compatibility
+ # support basestring in python3
+ try:
+-unicode = unicode
+-except NameError:
+-# 'unicode' is undefined, must be Python 3
+-str = str
+-unicode = str
+-bytes = bytes
+-basestring = (str,bytes)
+-else:
+-# 'unicode' exists, must be Python 2
+-str = str
+-unicode = unicode
+-bytes = str
+-basestring = basestring
+-
+-try:
+-from subprocess import CalledProcessError
+-except ImportError:
+-# from python2.7:subprocess.py
+-# Exception classes used by this module.
+-class CalledProcessError(Exception):
+-"""This exception is raised when a process run by check_call() returns
+-a non-zero exit status.  The exit status will be stored in the
+-returncode attribute."""
+-def __init__(self, returncode, cmd):
+-self.returncode = returncode
+-self.cmd = cmd
+-def __str__(self):
+-return "Command '%s' returned non-zero exit status %d" % 
(self.cmd, self.returncode)
++if raw_input and input:
++input = raw_input
++except:
++pass
+ 
+ verbose = False
+ 
+@@ -105,7 +84,7 @@ def p4_build_cmd(cmd):
+ # Provide a way to not pass this option by setting git-p4.retries to 0
+ real_cmd += ["-r", str(retries)]
+ 
+-if isinstance(cmd,basestring):
++if not isinstance(cmd, list):
+ real_cmd = ' '.join(real_cmd) + ' ' + cmd
+ else:
+ real_cmd += cmd
+@@ -175,18 +154,48 @@ def prompt(prompt_text):
+ """
+ choices = set(m.group(1) for m in re.finditer(r"\[(.)\]", prompt_text))
+ while True:
+-response = raw_input(prompt_text).strip().lower()
++response = input(prompt_text).strip().lower()
+ if not response:
+ continue
+ response = response[0]
+ if response in choices:
+ return response
+ 
++# We need different encoding/decoding strategies for text data being passed
++# around in pipes depending on python version
++if bytes is not str:
++# For python3, always encode and decode as appropriate
++def decode_text_stream(s):
++return s.decode() if isinstance(s, bytes) else s
++def encode_text_stream(s):
++return s.encode() if isinstance(s, str) else s
++else:
++# For python2.7, pass read strings as-is, but also allow writing unicode
++def decode_text_stream(s):
++return s
++def encode_text_stream(s):
++return s.encode('utf_8') if isinstance(s, unicode) else s
++
++def decode_path(path):
++"""Decode a given string (bytes or otherwise) using configured path 
encoding options
++"""
++encoding = gitConfig('git-p4.pathEncoding') or 'utf_8'
++if bytes is not str:
++return path.decode(encoding, errors='replace') if 

[arch-commits] Commit in git/trunk (0001-git-p4-python.patch PKGBUILD)

2020-01-13 Thread Christian Hesse via arch-commits
Date: Monday, January 13, 2020 @ 19:26:56
  Author: eworm
Revision: 373447

upgpkg: git 2.25.0-1

new upstream release

Modified:
  git/trunk/0001-git-p4-python.patch
  git/trunk/PKGBUILD

--+
 0001-git-p4-python.patch |  239 ++---
 PKGBUILD |8 -
 2 files changed, 58 insertions(+), 189 deletions(-)

Modified: 0001-git-p4-python.patch
===
--- 0001-git-p4-python.patch2020-01-13 19:13:09 UTC (rev 373446)
+++ 0001-git-p4-python.patch2020-01-13 19:26:56 UTC (rev 373447)
@@ -1,5 +1,5 @@
 diff --git a/git-p4.py b/git-p4.py
-index 60c73b6a37..d9df7747cb 100755
+index 40d9e7c594..ca0a874501 100755
 --- a/git-p4.py
 +++ b/git-p4.py
 @@ -8,12 +8,12 @@
@@ -71,25 +71,18 @@
  real_cmd = ' '.join(real_cmd) + ' ' + cmd
  else:
  real_cmd += cmd
-@@ -167,11 +146,56 @@ def die(msg):
- sys.stderr.write(msg + "\n")
- sys.exit(1)
+@@ -175,18 +154,48 @@ def prompt(prompt_text):
+ """
+ choices = set(m.group(1) for m in re.finditer(r"\[(.)\]", prompt_text))
+ while True:
+-response = raw_input(prompt_text).strip().lower()
++response = input(prompt_text).strip().lower()
+ if not response:
+ continue
+ response = response[0]
+ if response in choices:
+ return response
  
-+def prompt(prompt_text):
-+""" Prompt the user to choose one of the choices
-+
-+Choices are identified in the prompt_text by square brackets around
-+a single letter option.
-+"""
-+choices = set(m.group(1) for m in re.finditer(r"\[(.)\]", prompt_text))
-+while True:
-+response = input(prompt_text).strip().lower()
-+if not response:
-+continue
-+response = response[0]
-+if response in choices:
-+return response
-+
 +# We need different encoding/decoding strategies for text data being passed
 +# around in pipes depending on python version
 +if bytes is not str:
@@ -129,7 +122,7 @@
  p = subprocess.Popen(c, stdin=subprocess.PIPE, shell=expand)
  pipe = p.stdin
  val = pipe.write(stdin)
-@@ -183,6 +207,8 @@ def write_pipe(c, stdin):
+@@ -198,6 +207,8 @@ def write_pipe(c, stdin):
  
  def p4_write_pipe(c, stdin):
  real_cmd = p4_build_cmd(c)
@@ -138,7 +131,7 @@
  return write_pipe(real_cmd, stdin)
  
  def read_pipe_full(c):
-@@ -193,15 +219,17 @@ def read_pipe_full(c):
+@@ -208,15 +219,17 @@ def read_pipe_full(c):
  if verbose:
  sys.stderr.write('Reading pipe: %s\n' % str(c))
  
@@ -159,7 +152,7 @@
  """
  (retcode, out, err) = read_pipe_full(c)
  if retcode != 0:
-@@ -209,6 +237,8 @@ def read_pipe(c, ignore_error=False):
+@@ -224,6 +237,8 @@ def read_pipe(c, ignore_error=False):
  out = ""
  else:
  die('Command failed: %s\nError: %s' % (str(c), err))
@@ -168,7 +161,7 @@
  return out
  
  def read_pipe_text(c):
-@@ -219,23 +249,22 @@ def read_pipe_text(c):
+@@ -234,23 +249,22 @@ def read_pipe_text(c):
  if retcode != 0:
  return None
  else:
@@ -197,7 +190,7 @@
  return val
  
  def p4_read_pipe_lines(c):
-@@ -263,6 +292,7 @@ def p4_has_move_command():
+@@ -278,6 +292,7 @@ def p4_has_move_command():
  cmd = p4_build_cmd(["move", "-k", "@from", "@to"])
  p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
  (out, err) = p.communicate()
@@ -205,7 +198,7 @@
  # return code will be 1 in either case
  if err.find("Invalid option") >= 0:
  return False
-@@ -272,7 +302,7 @@ def p4_has_move_command():
+@@ -287,7 +302,7 @@ def p4_has_move_command():
  return True
  
  def system(cmd, ignore_error=False):
@@ -214,7 +207,7 @@
  if verbose:
  sys.stderr.write("executing %s\n" % str(cmd))
  retcode = subprocess.call(cmd, shell=expand)
-@@ -284,7 +314,7 @@ def system(cmd, ignore_error=False):
+@@ -299,7 +314,7 @@ def system(cmd, ignore_error=False):
  def p4_system(cmd):
  """Specifically invoke p4 as the system command. """
  real_cmd = p4_build_cmd(cmd)
@@ -223,7 +216,7 @@
  retcode = subprocess.call(real_cmd, shell=expand)
  if retcode:
  raise CalledProcessError(retcode, real_cmd)
-@@ -522,7 +552,7 @@ def getP4OpenedType(file):
+@@ -537,7 +552,7 @@ def getP4OpenedType(file):
  # Return the set of all p4 labels
  def getP4Labels(depotPaths):
  labels = set()
@@ -232,7 +225,7 @@
  depotPaths = [depotPaths]
  
  for l in p4CmdList(["labels"] + ["%s..." % p for p in depotPaths]):
-@@ -539,12 +569,7 @@ def getGitTags():
+@@ -554,12 +569,7 @@ def getGitTags():
  gitTags.add(tag)
  return gitTags
  
@@ -246,7 +239,7 @@
  
  def parseDiffTreeEntry(entry):
  """Parses a single diff tree entry into its component elements.
-@@ -565,7 +590,11 @@ def parseDiffTreeEntry(entry):
+@@ -580,7 +590,11 @@ def 

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

2020-01-13 Thread Florian Pritz via arch-commits
Date: Monday, January 13, 2020 @ 19:13:05
  Author: bluewind
Revision: 373444

Remove duplicated optdepend

Return-Path: 
Delivered-To: mail-...@server-speed.net
Received: from karif.server-speed.net
by karif.server-speed.net with LMTP
id qMIEDqVLE15oJBYAx66mkw
(envelope-from )
for ; Mon, 06 Jan 2020 16:00:53 +0100
X-Spam-Flag: NO
Authentication-Results: karif.server-speed.net; dmarc=pass (p=none dis=none) 
header.from=gmail.com
Authentication-Results: karif.server-speed.net; spf=pass 
smtp.mailfrom=laszlo.varad...@gmail.com
Authentication-Results: karif.server-speed.net;
dkim=pass (2048-bit key) header.d=gmail.com header.i=@gmail.com 
header.b=YEfmwLpW
X-Spam-Score: -0.43
X-Spam-Level: 
X-Spam-Status: No, score=-0.43 tagged_above=- required=5
tests=[BAYES_00=-1, DKIM_SIGNED=0.1, DKIM_VALID=-0.1,
DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1,
FREEMAIL_ENVFROM_END_DIGIT=0.25, FREEMAIL_FROM=0.5,
RCVD_IN_DNSWL_NONE=-0.0001, T_DMARC_POLICY_NONE=0.01,
T_DMARC_SIMPLE_DKIM=0.01] autolearn=no autolearn_force=no
X-Spam-Bayes: score=0.; Tokens: new, 52; hammy, 94; neutral, 33; spammy, 3.
X-Spam-Bayes-Spammytokens: HX-Amavis-MessageSize:3551, rotating, HTo:U*bluewind
X-Spam-Bayes-Hammytokens: pkgbuild, PKGBUILD, optdepends, 100644, PATCH, 15,7,
H*UA:git-send-email, H*x:git-send-email, logrotate, redis, 15,6, Redis,
 2241, H*f:sk:2020010, 2.24.1, deletion, H*i:sk:2020010, mongodb,
MongoDB, libmaxminddb
Received: from mail-wr1-x429.google.com (mail-wr1-x429.google.com 
[IPv6:2a00:1450:4864:20::429])
(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
 key-exchange ECDHE (P-384) server-signature RSA-PSS (4096 bits) 
server-digest SHA256)
(No client certificate requested)
by karif.server-speed.net (Postfix) with ESMTPS id 11DBA1406A3
for ; Mon,  6 Jan 2020 16:00:51 +0100 (CET)
Received: by mail-wr1-x429.google.com with SMTP id g17so49918669wro.2
for ; Mon, 06 Jan 2020 07:00:51 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=gmail.com; s=20161025;
h=from:to:cc:subject:date:message-id:in-reply-to:references
 :mime-version:content-transfer-encoding;
bh=WNoQMBsOXWFRy2lYjWdFCUryiPqlVWjvHWGEH3GUz+4=;
b=YEfmwLpWerqL7WVAbvAnGzLDUkFQx74vju8N9sP4LRIEU4WZrGa824JRjs67cP6S6m
 tfqDRvdJN/hp/Yzy+KDw2Th1vhqZkQPsRr16zxh7GwA/4vxUkh1MxO3oa5d72P7jGCm0
 D3Zj7udshYssJSLaVGSksSnGVp/seBT5E67rjR3dKKCAPJpbLhY/b0Ozi/hN0FUGHw8Z
 PRi0daqNtQpaC0DTapb21etj8kDp5pJEkwcBiPNzxIbcENQM5ZqiW7xsc4J4s/EQOdRb
 mM9NJxyMvK2yG+OqziXVKSknjWq7SoJ7lbDOPdXr1F6yF/G42OGSfpVapuFX60QhcWta
 7NqA==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=1e100.net; s=20161025;
h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to
 :references:mime-version:content-transfer-encoding;
bh=WNoQMBsOXWFRy2lYjWdFCUryiPqlVWjvHWGEH3GUz+4=;
b=ItxJupX5A78QZTYoIiGEmpyFFoQ0rOSLxLc36ioE6/nxqHrYdJGQAaj1jy+gg36f/O
 EvSG7Q53P0kd/2o3uUv0dYfCsulCwz/sLR2xXmLTbt9oEomx5vUuWpZaDTNzkYPcz2ma
 OK1+qgB/82T8PM5KFjccC10V0sfExwFulO94R7JTcxuOlSFx0HjHGU+myT02DJk4dLjl
 WNObS9no7o6L/sJ9Y3whcQ2vdBkGOB3ruHrwUYM3LuJcclpc9sdiNzarjofE+KjKyhWR
 E7h6UmGmDyhSPllWCF8sq4PrfbOGBMY4V/jGeglvBALjzEQoQBvK4wO007Gt0mvbNUoR
 KXuQ==
X-Gm-Message-State: APjAAAWiNiLiY3VuSkKgOO/KGQg0g9s1vSHvbH4MvuqBSRU33+nlI7a7
9CvRS3Vnchpn8NSz4uqxiky1VpPIjzw=
X-Google-Smtp-Source: 
APXvYqwoXjwc+zWxY37mENHD3TjFImCmHM5RgnLaB8LbTvPyEcH1AE0EZvRXbHMzqh3aL7itq46FZA==
X-Received: by 2002:adf:f5cb:: with SMTP id k11mr99854599wrp.71.1578322850737;
Mon, 06 Jan 2020 07:00:50 -0800 (PST)
Received: from AnnoL.node.anno.io (109-61-47-44.adsl-pool.dravanet.hu. 
[109.61.47.44])
by smtp.gmail.com with ESMTPSA id 
z11sm73077598wrt.82.2020.01.06.07.00.49
(version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256);
Mon, 06 Jan 2020 07:00:50 -0800 (PST)
From: Laszlo Varady 
To: bluew...@xinu.at
Cc: Laszlo Varady 
Date: Mon,  6 Jan 2020 16:00:30 +0100
Message-Id: <20200106150032.151152-2-laszlo.varad...@gmail.com>
X-Mailer: git-send-email 2.24.1
In-Reply-To: <20200106150032.151152-1-laszlo.varad...@gmail.com>
References: <20200106150032.151152-1-laszlo.varad...@gmail.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit

Modified:
  syslog-ng/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 19:10:15 UTC (rev 373443)
+++ PKGBUILD2020-01-13 19:13:05 UTC (rev 373444)
@@ -15,7 +15,6 @@
 'libdbi: for the SQL plugin'
 'librabbitmq-c: for the AMQP plugin'
 'mongo-c-driver: for the MongoDB plugin'
-'python: for the Python plugin'
 'libesmtp: for the SMTP 

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

2020-01-13 Thread Florian Pritz via arch-commits
Date: Monday, January 13, 2020 @ 19:13:07
  Author: bluewind
Revision: 373445

Update checkdepends

Return-Path: 
Delivered-To: mail-...@server-speed.net
Received: from karif.server-speed.net
by karif.server-speed.net with LMTP
id qI6yKqZLE15oJBYAx66mkw
(envelope-from )
for ; Mon, 06 Jan 2020 16:00:54 +0100
X-Spam-Flag: NO
Authentication-Results: karif.server-speed.net; dmarc=pass (p=none dis=none) 
header.from=gmail.com
Authentication-Results: karif.server-speed.net; spf=pass 
smtp.mailfrom=laszlo.varad...@gmail.com
Authentication-Results: karif.server-speed.net;
dkim=pass (2048-bit key) header.d=gmail.com header.i=@gmail.com 
header.b=lHsKToDO
X-Spam-Score: -0.43
X-Spam-Level: 
X-Spam-Status: No, score=-0.43 tagged_above=- required=5
tests=[BAYES_00=-1, DKIM_SIGNED=0.1, DKIM_VALID=-0.1,
DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1,
FREEMAIL_ENVFROM_END_DIGIT=0.25, FREEMAIL_FROM=0.5,
RCVD_IN_DNSWL_NONE=-0.0001, T_DMARC_POLICY_NONE=0.01,
T_DMARC_SIMPLE_DKIM=0.01] autolearn=no autolearn_force=no
X-Spam-Bayes: score=0.; Tokens: new, 50; hammy, 120; neutral, 40; spammy,
3.
X-Spam-Bayes-Spammytokens: HX-Amavis-MessageSize:3961, rotating, HTo:U*bluewind
X-Spam-Bayes-Hammytokens: pkgbuild, PKGBUILD, makedepends, sk:pkgnam,
sk:$pkgnam, optdepends, 100644, gpl2, GPL2, checkdepends, PATCH,
insertions, 10,7, LGPL21, lgpl21, lgpl2.1, LGPL2.1, glib2, libxslt,
H*UA:git-send-email
Received: from mail-wr1-x436.google.com (mail-wr1-x436.google.com 
[IPv6:2a00:1450:4864:20::436])
(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
 key-exchange ECDHE (P-384) server-signature RSA-PSS (4096 bits) 
server-digest SHA256)
(No client certificate requested)
by karif.server-speed.net (Postfix) with ESMTPS id C7D18143F6B
for ; Mon,  6 Jan 2020 16:00:53 +0100 (CET)
Received: by mail-wr1-x436.google.com with SMTP id y17so49970094wrh.5
for ; Mon, 06 Jan 2020 07:00:53 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=gmail.com; s=20161025;
h=from:to:cc:subject:date:message-id:in-reply-to:references
 :mime-version:content-transfer-encoding;
bh=1Ys2f4tN2qW/E7kPLBSbrjDqudl/b42QQSbgmyYZ1lE=;
b=lHsKToDOmFRroxIHIrUOk7eqdjszu7zQleiBC5J86HNv5Jm0of/LD47/YeYY1GyTvS
 g8vWgfJugLR1nUmAvNwa9/pULmjHdUyGVHDBX5haN1hCMPImKHlS1Zg3L2xEup1L2cQm
 9MEnIHW1wOjDoy40LhDyVubMal3J8Om2vWtm18yX5Ih7Qjro+SXDWoNpETBi36xS7Rii
 kdstI9oZSmrC5ZbNzKTOd2Bpi2pFKPhzBNkoNF2jdDnxnCDXgVPF8wdpFDo3fyzwtdL2
 eiRWJeUZlcTbf7eTwCpvwoUUsjWI7XIteCCM0T0oXOPVgGP9k1ew7rSvPBU8LLeqqJEJ
 qtJw==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=1e100.net; s=20161025;
h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to
 :references:mime-version:content-transfer-encoding;
bh=1Ys2f4tN2qW/E7kPLBSbrjDqudl/b42QQSbgmyYZ1lE=;
b=T6h4Ug+6rFefpvD3EavW4qoJ3l5zaJvEOe33xmLvaEzUXSlqe9tQ5s2y7bnhKqiFtl
 FuT9Xbr6EMyK6spV9//wDLDJWhTsLRqVrIrk0kiDF+Z823I2KTZy3CzxLV09bzVlHzkX
 fCPQpUNEGv8/ZRhpOnFMugw1hILAla7eDwbzFRmSpojAevfgz9MGd4IkpHcg5Ua6uM6Q
 VquEV1CFm5/AviZSCHiVweajf7aqSpw7VtjS3gkWxhAIn6lOQouhpBkaqhE52v6X71Yl
 AdnesJpx3d9NeLMqhTwSDYn02C7J227wcRBifZxKNOB3TmByK19miywMDba8UqZT4SRL
 PdWA==
X-Gm-Message-State: APjAAAUtuMVxr2XFmisURE551L5q3rH+jp+LZRetKXo8yJ3QZKoOQMsO
8W6nI1d8y0TFfZKU7n4RuSLzBdTmFRM=
X-Google-Smtp-Source: 
APXvYqzYdj0p8RCL8wjdbQ7UsOEyLZ1nBoy2IDRtv/S1iGny8TfnqXzSQ/YBryVAADCYHET6KONg6A==
X-Received: by 2002:adf:fac1:: with SMTP id a1mr100243553wrs.376.1578322852152;
Mon, 06 Jan 2020 07:00:52 -0800 (PST)
Received: from AnnoL.node.anno.io (109-61-47-44.adsl-pool.dravanet.hu. 
[109.61.47.44])
by smtp.gmail.com with ESMTPSA id 
z11sm73077598wrt.82.2020.01.06.07.00.50
(version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256);
Mon, 06 Jan 2020 07:00:51 -0800 (PST)
From: Laszlo Varady 
To: bluew...@xinu.at
Cc: Laszlo Varady 
Date: Mon,  6 Jan 2020 16:00:31 +0100
Message-Id: <20200106150032.151152-3-laszlo.varad...@gmail.com>
X-Mailer: git-send-email 2.24.1
In-Reply-To: <20200106150032.151152-1-laszlo.varad...@gmail.com>
References: <20200106150032.151152-1-laszlo.varad...@gmail.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit

pep8 and pylint are no longer required for make check.

Modified:
  syslog-ng/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 19:13:05 UTC (rev 373444)
+++ PKGBUILD2020-01-13 19:13:07 UTC (rev 373445)
@@ -10,7 +10,7 @@
 depends=('awk' 'systemd-libs' 'glib2' 'libnsl' 'json-c' 'curl' 'libnet')
 makedepends=('libxslt' 'mongo-c-driver' 'librabbitmq-c' 'python' 'libesmtp' 
'hiredis'
  

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

2020-01-13 Thread Florian Pritz via arch-commits
Date: Monday, January 13, 2020 @ 19:13:09
  Author: bluewind
Revision: 373446

Add new plugin: Kafka destination

Return-Path: 
Delivered-To: mail-...@server-speed.net
Received: from karif.server-speed.net
by karif.server-speed.net with LMTP
id EHPzBqtLE15oJBYAx66mkw
(envelope-from )
for ; Mon, 06 Jan 2020 16:00:59 +0100
X-Spam-Flag: NO
Authentication-Results: karif.server-speed.net; dmarc=pass (p=none dis=none) 
header.from=gmail.com
Authentication-Results: karif.server-speed.net; spf=pass 
smtp.mailfrom=laszlo.varad...@gmail.com
Authentication-Results: karif.server-speed.net;
dkim=pass (2048-bit key) header.d=gmail.com header.i=@gmail.com 
header.b=HYvUArqw
X-Spam-Score: -0.43
X-Spam-Level: 
X-Spam-Status: No, score=-0.43 tagged_above=- required=5
tests=[BAYES_00=-1, DKIM_SIGNED=0.1, DKIM_VALID=-0.1,
DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1,
FREEMAIL_ENVFROM_END_DIGIT=0.25, FREEMAIL_FROM=0.5,
RCVD_IN_DNSWL_NONE=-0.0001, T_DMARC_POLICY_NONE=0.01,
T_DMARC_SIMPLE_DKIM=0.01] autolearn=no autolearn_force=no
X-Spam-Bayes: score=0.; Tokens: new, 86; hammy, 149; neutral, 59; spammy,
1.
X-Spam-Bayes-Spammytokens: rotating
X-Spam-Bayes-Hammytokens: pkgbuild, PKGBUILD, pkgver, pkgrel, pkgname, pkgdesc,
 makedepends, sk:enable, sk:enable-, optdepends, sk:disable, systemd,
100644, gpl2, GPL2, checkdepends, PATCH, insertions, lgpl21, LGPL21
Received: from mail-wr1-x42b.google.com (mail-wr1-x42b.google.com 
[IPv6:2a00:1450:4864:20::42b])
(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
 key-exchange ECDHE (P-384) server-signature RSA-PSS (4096 bits) 
server-digest SHA256)
(No client certificate requested)
by karif.server-speed.net (Postfix) with ESMTPS id 5B1781405F0
for ; Mon,  6 Jan 2020 16:00:54 +0100 (CET)
Received: by mail-wr1-x42b.google.com with SMTP id z3so49970680wru.3
for ; Mon, 06 Jan 2020 07:00:54 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=gmail.com; s=20161025;
h=from:to:cc:subject:date:message-id:in-reply-to:references
 :mime-version:content-transfer-encoding;
bh=tRaBKz4PV/83MT0dZ95QA3yjFLNqfHjh7xYLXxtPLsU=;
b=HYvUArqwNpVC8GVA1+h01Sot93t2wUQEkY05Dm4iLXXPyX/S8Di9G+BvCGJiw1lkPp
 No5QkAOKijFK4CZHFY48Og6sKow1iPwFZjPf1lLjlvFJ2cnHcBjHTZDyEIsY3Tpcdk19
 T4lAuD5ohZrZ5cmKWJb0DfnxLvqnw/Yf84oqhmzPFcK/FhMEXbBTGwwNiZ75vMNy814V
 MUgxYZDFmP9wEx+KqVSFzxprM5M9tOycjHDj/yaO20rcCyErf6im7zSO+unZsRZ5TJ4L
 WZVZ9bcwAajjy7wvad/sWt7i7SmvdiBBSV4ySFuTXEU29g3OEVyAm/Qy0U8CKFXaapQc
 rTFQ==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=1e100.net; s=20161025;
h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to
 :references:mime-version:content-transfer-encoding;
bh=tRaBKz4PV/83MT0dZ95QA3yjFLNqfHjh7xYLXxtPLsU=;
b=D04gtdkAAyz695AjN/1iVB+yMbNgX2fILCZOCBn91o/k5gFqHEGBfABKuARGsz46p6
 Ji259+gYPW8+VoAzY/tL/srfm3FGrAM66sll8akCe8A7bYF3OHIcUIxYGCTWwhJk9VLf
 EKruB2XK0Nd1kRQ/ifTb/0Z7j0FWKiBlePICE7/oGLS0jXM2LQ4sOCsuLG20Od9S64Kq
 NB4SHehl4AwmJfTMgMQPt+YV2l54WrmS16L9CX02NjSPeX0Y821gIyX2H+4NvP1QQoQC
 eOxmjOp4KnylA5vrt64UAp09g8ZBWbLyXqFzVz0ljUjZYety3eZ6AO60M4p1xa8e8DcF
 fMnw==
X-Gm-Message-State: APjAAAUDn10u86zjCpVo8v9FY0oxgZcKJtC4gqzCF4YIwakquKxmPdgb
3pDQyXR4oFEznJhO0wWchMJrZeW4mwE=
X-Google-Smtp-Source: 
APXvYqyMLCf1U0bHlWzYRxfgMUl3aC4yoRGHqF4elQMfdbm1OtHapbyP21742wS09It90SnIHKml6A==
X-Received: by 2002:adf:e78a:: with SMTP id n10mr107967598wrm.62.1578322853603;
Mon, 06 Jan 2020 07:00:53 -0800 (PST)
Received: from AnnoL.node.anno.io (109-61-47-44.adsl-pool.dravanet.hu. 
[109.61.47.44])
by smtp.gmail.com with ESMTPSA id 
z11sm73077598wrt.82.2020.01.06.07.00.52
(version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256);
Mon, 06 Jan 2020 07:00:53 -0800 (PST)
From: Laszlo Varady 
To: bluew...@xinu.at
Cc: Laszlo Varady 
Date: Mon,  6 Jan 2020 16:00:32 +0100
Message-Id: <20200106150032.151152-4-laszlo.varad...@gmail.com>
X-Mailer: git-send-email 2.24.1
In-Reply-To: <20200106150032.151152-1-laszlo.varad...@gmail.com>
References: <20200106150032.151152-1-laszlo.varad...@gmail.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit

librdkafka is now available in the Community repo.

Modified:
  syslog-ng/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 19:13:07 UTC (rev 373445)
+++ PKGBUILD2020-01-13 19:13:09 UTC (rev 373446)
@@ -2,7 +2,7 @@
 
 pkgname=syslog-ng
 pkgver=3.25.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Next-generation syslogd with advanced networking and filtering 
capabilities"
 arch=('x86_64')
 

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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 19:09:54
  Author: felixonmars
Revision: 552429

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-snap-core/repos/community-staging-x86_64/PKGBUILD (from rev 
552428, haskell-snap-core/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-13 19:09:54 UTC (rev 552429)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=snap-core
+pkgname=haskell-snap-core
+pkgver=1.0.4.1
+pkgrel=8
+pkgdesc="A Haskell Web Framework (core interfaces and types)"
+url="https://github.com/JustusAdam/snap-core;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-old-locale' 'haskell-hunit' 'haskell-attoparsec'
+ 'haskell-case-insensitive' 'haskell-lifted-base' 'haskell-io-streams' 
'haskell-hashable'
+ 'haskell-monad-control' 'haskell-random' 'haskell-readable' 
'haskell-regex-posix'
+ 'haskell-transformers-base' 'haskell-unix-compat' 
'haskell-unordered-containers'
+ 'haskell-vector' 'haskell-network' 'haskell-network-uri')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-parallel' 
'haskell-test-framework'
+ 'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2' 'haskell-zlib')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('0d4f6a4152627773714c1ec5c9508d19a2e69c8ef83acab3669b0732b840aa67dfce7893638fba7689e35c5b3530ea1fd8d681f6aad045ccb2219e5910e83e34')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e '/bytestring-builder/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-snap-core/trunk (PKGBUILD)

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 19:09:43
  Author: felixonmars
Revision: 552428

upgpkg: haskell-snap-core 1.0.4.1-8: rebuild with ghc 8.8.1, cabal-doctest 
1.0.7, polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 
0.95.0.0, regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, 
unexceptionalio 0.5.0, gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 
0.7, resolv 0.1.1.3, ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, 
foldl 1.4.6, lens 4.18, postgresql-binary 0.12.2, tls 1.5.0

Modified:
  haskell-snap-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 19:06:27 UTC (rev 552427)
+++ PKGBUILD2020-01-13 19:09:43 UTC (rev 552428)
@@ -3,7 +3,7 @@
 _hkgname=snap-core
 pkgname=haskell-snap-core
 pkgver=1.0.4.1
-pkgrel=7
+pkgrel=8
 pkgdesc="A Haskell Web Framework (core interfaces and types)"
 url="https://github.com/JustusAdam/snap-core;
 license=('BSD')


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 19:10:15
  Author: felixonmars
Revision: 373443

archrelease: copy trunk to extra-x86_64

Added:
  libuv/repos/extra-x86_64/PKGBUILD
(from rev 373442, libuv/trunk/PKGBUILD)
Deleted:
  libuv/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-01-13 19:10:01 UTC (rev 373442)
+++ PKGBUILD2020-01-13 19:10:15 UTC (rev 373443)
@@ -1,43 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-
-pkgname=libuv
-pkgver=1.34.0
-pkgrel=1
-pkgdesc="Multi-platform support library with a focus on asynchronous I/O"
-arch=('x86_64')
-url="https://github.com/libuv/libuv;
-license=('custom')
-depends=('glibc' 'libnsl')
-makedepends=('python-sphinx')
-source=("https://github.com/libuv/libuv/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('30811311268179984fdc44209eb0e9ac4c6df08fa30790b75916ae838b23c2578a8a043340fbde86bcd5a373dcc335dec5fe88209560613876ca3272fd99c9e8')
-
-build() {
-   cd $pkgname-$pkgver
-   ./autogen.sh
-   ./configure --prefix=/usr
-   make
-   make man -C docs
-}
-
-check() {
-   cd $pkgname-$pkgver
-   make check
-}
-
-package() {
-   cd $pkgname-$pkgver
-
-   make DESTDIR="$pkgdir" install
-
-   install -Dm644 LICENSE \
-   "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-   install -Dm644 AUTHORS \
-   "$pkgdir"/usr/share/doc/$pkgname/AUTHORS
-   install -Dm644 README.md \
-   "$pkgdir"/usr/share/doc/$pkgname/README.md
-   install -Dm644 ChangeLog \
-   "$pkgdir"/usr/share/doc/$pkgname/ChangeLog
-   install -Dm644 docs/build/man/libuv.1 \
-   "$pkgdir"/usr/share/man/man1/libuv.1
-}

Copied: libuv/repos/extra-x86_64/PKGBUILD (from rev 373442, 
libuv/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-01-13 19:10:15 UTC (rev 373443)
@@ -0,0 +1,43 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=libuv
+pkgver=1.34.1
+pkgrel=1
+pkgdesc="Multi-platform support library with a focus on asynchronous I/O"
+arch=('x86_64')
+url="https://github.com/libuv/libuv;
+license=('custom')
+depends=('glibc' 'libnsl')
+makedepends=('python-sphinx')
+source=("https://github.com/libuv/libuv/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('95212bdba326a22edb2663982a4abb95c420d287c67b20e57d6acdd4c40d40956ad28c599beaf10fbc941c6e50df94261d84abf8ac25abceb10f67d9de5ef3d3')
+
+build() {
+   cd $pkgname-$pkgver
+   ./autogen.sh
+   ./configure --prefix=/usr
+   make
+   make man -C docs
+}
+
+check() {
+   cd $pkgname-$pkgver
+   make check
+}
+
+package() {
+   cd $pkgname-$pkgver
+
+   make DESTDIR="$pkgdir" install
+
+   install -Dm644 LICENSE \
+   "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+   install -Dm644 AUTHORS \
+   "$pkgdir"/usr/share/doc/$pkgname/AUTHORS
+   install -Dm644 README.md \
+   "$pkgdir"/usr/share/doc/$pkgname/README.md
+   install -Dm644 ChangeLog \
+   "$pkgdir"/usr/share/doc/$pkgname/ChangeLog
+   install -Dm644 docs/build/man/libuv.1 \
+   "$pkgdir"/usr/share/man/man1/libuv.1
+}


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 19:10:01
  Author: felixonmars
Revision: 373442

upgpkg: libuv 1.34.1-1

Modified:
  libuv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 18:05:43 UTC (rev 373441)
+++ PKGBUILD2020-01-13 19:10:01 UTC (rev 373442)
@@ -1,7 +1,7 @@
 # Maintainer: Massimiliano Torromeo 
 
 pkgname=libuv
-pkgver=1.34.0
+pkgver=1.34.1
 pkgrel=1
 pkgdesc="Multi-platform support library with a focus on asynchronous I/O"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('glibc' 'libnsl')
 makedepends=('python-sphinx')
 
source=("https://github.com/libuv/libuv/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('30811311268179984fdc44209eb0e9ac4c6df08fa30790b75916ae838b23c2578a8a043340fbde86bcd5a373dcc335dec5fe88209560613876ca3272fd99c9e8')
+sha512sums=('95212bdba326a22edb2663982a4abb95c420d287c67b20e57d6acdd4c40d40956ad28c599beaf10fbc941c6e50df94261d84abf8ac25abceb10f67d9de5ef3d3')
 
 build() {
cd $pkgname-$pkgver


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 19:06:27
  Author: felixonmars
Revision: 552427

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-openssl-streams/repos/community-staging-x86_64/PKGBUILD (from 
rev 552426, haskell-openssl-streams/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-13 19:06:27 UTC (rev 552427)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+_hkgname=openssl-streams
+pkgname=haskell-openssl-streams
+pkgver=1.2.2.0
+pkgrel=39
+pkgdesc="OpenSSL network support for io-streams"
+url="https://github.com/snapframework/openssl-streams;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hsopenssl' 'haskell-io-streams' 'haskell-network')
+makedepends=('ghc' 'haskell-hunit' 'haskell-test-framework' 
'haskell-test-framework-hunit')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('ff1262afd26c82e97ed0a8bc7237728b47341968e8c6fe4a2351780508241f1588d12b32709d9be3b385db14b9b56eee77676cacb1c0a6bf632a8f25bdb775eb')
+
+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-openssl-streams/trunk (PKGBUILD)

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 19:06:16
  Author: felixonmars
Revision: 552426

upgpkg: haskell-openssl-streams 1.2.2.0-39: rebuild with ghc 8.8.1, 
cabal-doctest 1.0.7, polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, 
regex-pcre 0.95.0.0, regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, 
unexceptionalio 0.5.0, gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 
0.7, resolv 0.1.1.3, ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, 
foldl 1.4.6, lens 4.18, postgresql-binary 0.12.2, tls 1.5.0

Modified:
  haskell-openssl-streams/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 19:05:25 UTC (rev 552425)
+++ PKGBUILD2020-01-13 19:06:16 UTC (rev 552426)
@@ -3,7 +3,7 @@
 _hkgname=openssl-streams
 pkgname=haskell-openssl-streams
 pkgver=1.2.2.0
-pkgrel=38
+pkgrel=39
 pkgdesc="OpenSSL network support for io-streams"
 url="https://github.com/snapframework/openssl-streams;
 license=('BSD')


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 19:05:13
  Author: felixonmars
Revision: 552424

upgpkg: haskell-io-streams-haproxy 1.0.1.0-37: rebuild with ghc 8.8.1, 
cabal-doctest 1.0.7, polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, 
regex-pcre 0.95.0.0, regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, 
unexceptionalio 0.5.0, gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 
0.7, resolv 0.1.1.3, ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, 
foldl 1.4.6, lens 4.18, postgresql-binary 0.12.2, tls 1.5.0

Modified:
  haskell-io-streams-haproxy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 19:02:46 UTC (rev 552423)
+++ PKGBUILD2020-01-13 19:05:13 UTC (rev 552424)
@@ -3,7 +3,7 @@
 _hkgname=io-streams-haproxy
 pkgname=haskell-io-streams-haproxy
 pkgver=1.0.1.0
-pkgrel=36
+pkgrel=37
 pkgdesc="HAProxy protocol 1.5 support for io-streams"
 url="https://github.com/snapframework/io-streams-haproxy;
 license=('BSD')
@@ -13,6 +13,11 @@
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
 
sha512sums=('6d9f2da6b014a9f2ee894237af56376b94616af1c1795681adac4bfd10edfb851cbe1a37295025c6ebf7e77fe7b5d2abba3557ac1a9ed594deabaee05151572a')
 
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *4.13/<5/' $_hkgname.cabal
+}
+
 build() {
 cd $_hkgname-$pkgver
 


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 19:05:25
  Author: felixonmars
Revision: 552425

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-io-streams-haproxy/repos/community-staging-x86_64/
  haskell-io-streams-haproxy/repos/community-staging-x86_64/PKGBUILD
(from rev 552424, haskell-io-streams-haproxy/trunk/PKGBUILD)

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

Copied: haskell-io-streams-haproxy/repos/community-staging-x86_64/PKGBUILD 
(from rev 552424, haskell-io-streams-haproxy/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-13 19:05:25 UTC (rev 552425)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+
+_hkgname=io-streams-haproxy
+pkgname=haskell-io-streams-haproxy
+pkgver=1.0.1.0
+pkgrel=37
+pkgdesc="HAProxy protocol 1.5 support for io-streams"
+url="https://github.com/snapframework/io-streams-haproxy;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-io-streams' 
'haskell-network')
+makedepends=('ghc' 'haskell-hunit' 'haskell-test-framework' 
'haskell-test-framework-hunit')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('6d9f2da6b014a9f2ee894237af56376b94616af1c1795681adac4bfd10edfb851cbe1a37295025c6ebf7e77fe7b5d2abba3557ac1a9ed594deabaee05151572a')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *4.13/<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
+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-io-streams/repos (2 files)

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 19:02:46
  Author: felixonmars
Revision: 552423

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-io-streams/repos/community-staging-x86_64/PKGBUILD (from rev 
552422, haskell-io-streams/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-13 19:02:46 UTC (rev 552423)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+
+_hkgname=io-streams
+pkgname=haskell-io-streams
+pkgver=1.5.1.0
+pkgrel=37
+pkgdesc="Simple, composable, and easy-to-use stream I/O"
+url="https://github.com/snapframework/io-streams;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-network' 'haskell-primitive' 
'haskell-vector'
+ 'haskell-zlib-bindings')
+makedepends=('ghc' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-test-framework'
+ 'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2' 'haskell-zlib')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('01ddf89f09cba429ab600e55994cb6740d4fcdeb23ce85822098d39dbe530a74256d66ea52429798787d9d549db3cd99a5078362b333a7f49c4926e74e0b460c')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e '/bytestring-builder/d' -e 's/< *0.7/<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"
+}


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 19:02:35
  Author: felixonmars
Revision: 552422

upgpkg: haskell-io-streams 1.5.1.0-37: rebuild with ghc 8.8.1, cabal-doctest 
1.0.7, polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 
0.95.0.0, regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, 
unexceptionalio 0.5.0, gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 
0.7, resolv 0.1.1.3, ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, 
foldl 1.4.6, lens 4.18, postgresql-binary 0.12.2, tls 1.5.0

Modified:
  haskell-io-streams/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 18:56:36 UTC (rev 552421)
+++ PKGBUILD2020-01-13 19:02:35 UTC (rev 552422)
@@ -3,7 +3,7 @@
 _hkgname=io-streams
 pkgname=haskell-io-streams
 pkgver=1.5.1.0
-pkgrel=36
+pkgrel=37
 pkgdesc="Simple, composable, and easy-to-use stream I/O"
 url="https://github.com/snapframework/io-streams;
 license=('BSD')
@@ -17,7 +17,7 @@
 
 prepare() {
 cd $_hkgname-$pkgver
-sed -i -e '/bytestring-builder/d' $_hkgname.cabal
+sed -i -e '/bytestring-builder/d' -e 's/< *0.7/<1/' $_hkgname.cabal
 }
 
 build() {


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

2020-01-13 Thread Florian Pritz via arch-commits
Date: Monday, January 13, 2020 @ 18:56:36
  Author: bluewind
Revision: 552421

archrelease: copy trunk to community-any

Added:
  zim/repos/community-any/PKGBUILD
(from rev 552420, zim/trunk/PKGBUILD)
Deleted:
  zim/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-01-13 18:56:33 UTC (rev 552420)
+++ PKGBUILD2020-01-13 18:56:36 UTC (rev 552421)
@@ -1,51 +0,0 @@
-# Maintainer: Florian Pritz 
-# Contributor: Kevin Piche 
-# Contributor: Daniel J Griffiths 
-
-pkgname=zim
-pkgver=0.72.0
-pkgrel=2
-pkgdesc="A WYSIWYG text editor that aims at bringing the concept of a wiki to 
the desktop."
-arch=(any)
-license=('GPL' 'PerlArtistic')
-url="https://zim-wiki.org/;
-depends=('python' 'python-gobject' 'ttf-font' 'gtk3' 'python-xdg')
-checkdepends=('xorg-server-xvfb')
-optdepends=('bzr: Version Control plugin'
-'git: Version Control plugin'
-'mercurial: Version Control plugin'
-'gnuplot: Insert Gnuplot plugin'
-'ditaa: Insert Ditaa plugin'
-'graphviz: Insert Diagram plugin'
-'xdot: Link Map plugin'
-'gtkspell3: Spell Checker plugin'
-'r: Insert GNU R Plot plugin'
-'scrot: Insert Screenshot plugin'
-'lilypond: Insert Score plugin'
-'gtksourceview3: Source View plugin'
-'texlive-bin: Insert Equation plugin')
-source=(https://www.zim-wiki.org/downloads/${pkgname}-${pkgver}.tar.gz)
-md5sums=('8e71f674741b598357a521a4738bf085')
-
-
-check() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   if [[ "$pkgver" != "0.72.0" ]]; then
-   # Test are broken starting with 0.71.0, but no fix is in sight 
yet.
-   # Skip the tests since I don't have the time to fix them myself.
-   # When the next version comes out, either update the if 
condition or be
-   # happy that they are fixed.
-   # 
https://github.com/zim-desktop-wiki/zim-desktop-wiki/issues/814
-   xvfb-run -w0 ./test.py
-   fi
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   python setup.py install --root=${pkgdir} --optimize=1
-
-   install -dm755 "$pkgdir/usr/share/icons/"
-   cp -r xdg/hicolor/ "$pkgdir/usr/share/icons/"
-}

Copied: zim/repos/community-any/PKGBUILD (from rev 552420, zim/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-01-13 18:56:36 UTC (rev 552421)
@@ -0,0 +1,51 @@
+# Maintainer: Florian Pritz 
+# Contributor: Kevin Piche 
+# Contributor: Daniel J Griffiths 
+
+pkgname=zim
+pkgver=0.72.1
+pkgrel=1
+pkgdesc="A WYSIWYG text editor that aims at bringing the concept of a wiki to 
the desktop."
+arch=(any)
+license=('GPL' 'PerlArtistic')
+url="https://zim-wiki.org/;
+depends=('python' 'python-gobject' 'ttf-font' 'gtk3' 'python-xdg')
+checkdepends=('xorg-server-xvfb')
+optdepends=('bzr: Version Control plugin'
+'git: Version Control plugin'
+'mercurial: Version Control plugin'
+'gnuplot: Insert Gnuplot plugin'
+'ditaa: Insert Ditaa plugin'
+'graphviz: Insert Diagram plugin'
+'xdot: Link Map plugin'
+'gtkspell3: Spell Checker plugin'
+'r: Insert GNU R Plot plugin'
+'scrot: Insert Screenshot plugin'
+'lilypond: Insert Score plugin'
+'gtksourceview3: Source View plugin'
+'texlive-bin: Insert Equation plugin')
+source=("https://www.zim-wiki.org/downloads/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('39390f14447b06970411348d7e65b674')
+
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   if [[ "$pkgver" != "0.72.1" ]]; then
+   # Test are broken starting with 0.71.0, but no fix is in sight 
yet.
+   # Skip the tests since I don't have the time to fix them myself.
+   # When the next version comes out, either update the if 
condition or be
+   # happy that they are fixed.
+   # 
https://github.com/zim-desktop-wiki/zim-desktop-wiki/issues/814
+   xvfb-run -w0 ./test.py
+   fi
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   python setup.py install --root="${pkgdir}" --optimize=1
+
+   install -dm755 "$pkgdir/usr/share/icons/"
+   cp -r xdg/hicolor/ "$pkgdir/usr/share/icons/"
+}


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

2020-01-13 Thread Florian Pritz via arch-commits
Date: Monday, January 13, 2020 @ 18:56:33
  Author: bluewind
Revision: 552420

upgpkg: zim 0.72.1-1: upstream update

Modified:
  zim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 18:52:56 UTC (rev 552419)
+++ PKGBUILD2020-01-13 18:56:33 UTC (rev 552420)
@@ -3,8 +3,8 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=zim
-pkgver=0.72.0
-pkgrel=2
+pkgver=0.72.1
+pkgrel=1
 pkgdesc="A WYSIWYG text editor that aims at bringing the concept of a wiki to 
the desktop."
 arch=(any)
 license=('GPL' 'PerlArtistic')
@@ -25,13 +25,13 @@
 'gtksourceview3: Source View plugin'
 'texlive-bin: Insert Equation plugin')
 source=("https://www.zim-wiki.org/downloads/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('8e71f674741b598357a521a4738bf085')
+md5sums=('39390f14447b06970411348d7e65b674')
 
 
 check() {
cd "${srcdir}/${pkgname}-${pkgver}"
 
-   if [[ "$pkgver" != "0.72.0" ]]; then
+   if [[ "$pkgver" != "0.72.1" ]]; then
# Test are broken starting with 0.71.0, but no fix is in sight 
yet.
# Skip the tests since I don't have the time to fix them myself.
# When the next version comes out, either update the if 
condition or be


[arch-commits] Commit in go-bindata-assetfs/repos/community-x86_64 (3 files)

2020-01-13 Thread Christian Rebischke via arch-commits
Date: Monday, January 13, 2020 @ 18:52:56
  Author: shibumi
Revision: 552419

archrelease: copy trunk to community-x86_64

Added:
  
go-bindata-assetfs/repos/community-x86_64/38087fe4dafb822e541b3f7955075cc1c30bd294.patch
(from rev 552418, 
go-bindata-assetfs/trunk/38087fe4dafb822e541b3f7955075cc1c30bd294.patch)
  go-bindata-assetfs/repos/community-x86_64/PKGBUILD
(from rev 552418, go-bindata-assetfs/trunk/PKGBUILD)
Deleted:
  go-bindata-assetfs/repos/community-x86_64/PKGBUILD

+
 38087fe4dafb822e541b3f7955075cc1c30bd294.patch |  113 +++
 PKGBUILD   |   64 +++--
 2 files changed, 148 insertions(+), 29 deletions(-)

Copied: 
go-bindata-assetfs/repos/community-x86_64/38087fe4dafb822e541b3f7955075cc1c30bd294.patch
 (from rev 552418, 
go-bindata-assetfs/trunk/38087fe4dafb822e541b3f7955075cc1c30bd294.patch)
===
--- 38087fe4dafb822e541b3f7955075cc1c30bd294.patch  
(rev 0)
+++ 38087fe4dafb822e541b3f7955075cc1c30bd294.patch  2020-01-13 18:52:56 UTC 
(rev 552419)
@@ -0,0 +1,113 @@
+From b1a95d801a866b44a1c4ec60c2abaeb77ae54a87 Mon Sep 17 00:00:00 2001
+From: Mark Wallsgrove 
+Date: Sat, 2 Jan 2016 13:33:47 +
+Subject: [PATCH] Parse the output location for bindatafile
+
+---
+ go-bindata-assetfs/main.go | 57 ++
+ 1 file changed, 40 insertions(+), 17 deletions(-)
+
+diff --git a/go-bindata-assetfs/main.go b/go-bindata-assetfs/main.go
+index 2d65094..0c7f42c 100644
+--- a/go-bindata-assetfs/main.go
 b/go-bindata-assetfs/main.go
+@@ -5,13 +5,12 @@ import (
+   "bytes"
+   "flag"
+   "fmt"
++  "io/ioutil"
+   "os"
+   "os/exec"
+   "strings"
+ )
+ 
+-const bindatafile = "bindata.go"
+-
+ func isDebug(args []string) bool {
+   flagset := flag.NewFlagSet("", flag.ContinueOnError)
+   debug := flagset.Bool("debug", false, "")
+@@ -28,29 +27,53 @@ func isDebug(args []string) bool {
+   return *debug
+ }
+ 
++func getBinDataFile() (*os.File, *os.File, []string, error) {
++  bindataArgs := make([]string, 0)
++  outputLoc := "bindata.go"
++
++  for i := 1; i < len(os.Args); i++ {
++  if os.Args[i] == "-o" {
++  outputLoc = os.Args[i+1]
++  i++
++  } else {
++  bindataArgs = append(bindataArgs, os.Args[i])
++  }
++  }
++
++  tempFile, err := ioutil.TempFile(os.TempDir(), "")
++  if err != nil {
++  return {}, {}, nil, err
++  }
++
++  outputFile, err := os.Create(outputLoc)
++  if err != nil {
++  return {}, {}, nil, err
++  }
++
++  bindataArgs = append([]string{"-o", tempFile.Name()}, bindataArgs...)
++  return outputFile, tempFile, bindataArgs, nil
++}
++
+ func main() {
+-  if _, err := exec.LookPath("go-bindata"); err != nil {
++  path, err := exec.LookPath("go-bindata")
++  if err != nil {
+   fmt.Println("Cannot find go-bindata executable in path")
+   fmt.Println("Maybe you need: go get 
github.com/elazarl/go-bindata-assetfs/...")
+   os.Exit(1)
+   }
+-  cmd := exec.Command("go-bindata", os.Args[1:]...)
++  out, in, args, err := getBinDataFile()
++  if err != nil {
++  fmt.Fprintln(os.Stderr, "Error: cannot create temporary file", 
err)
++  os.Exit(1)
++  }
++  cmd := exec.Command(path, args...)
+   cmd.Stdin = os.Stdin
+   cmd.Stdout = os.Stdout
+   cmd.Stderr = os.Stderr
+   if err := cmd.Run(); err != nil {
++  fmt.Fprintln(os.Stderr, "Error: go-bindata: ", err)
+   os.Exit(1)
+   }
+-  in, err := os.Open(bindatafile)
+-  if err != nil {
+-  fmt.Fprintln(os.Stderr, "Cannot read", bindatafile, err)
+-  return
+-  }
+-  out, err := os.Create("bindata_assetfs.go")
+-  if err != nil {
+-  fmt.Fprintln(os.Stderr, "Cannot write 'bindata_assetfs.go'", 
err)
+-  return
+-  }
+   debug := isDebug(os.Args[1:])
+   r := bufio.NewReader(in)
+   done := false
+@@ -59,7 +82,7 @@ func main() {
+   line = append(line, '\n')
+   }
+   if _, err := out.Write(line); err != nil {
+-  fmt.Fprintln(os.Stderr, "Cannot write to 
'bindata_assetfs.go'", err)
++  fmt.Fprintln(os.Stderr, "Cannot write to ", out.Name(), 
err)
+   return
+   }
+   if !done && !isPrefix && bytes.HasPrefix(line, []byte("import 
(")) {
+@@ -91,7 +114,7 @@ func assetFS() *assetfs.AssetFS {
+   // Close files BEFORE remove calls (don't use defer).
+   in.Close()
+   out.Close()
+-  if err := os.Remove(bindatafile); err != nil {
+- 

[arch-commits] Commit in go-bindata-assetfs/trunk (2 files)

2020-01-13 Thread Christian Rebischke via arch-commits
Date: Monday, January 13, 2020 @ 18:52:49
  Author: shibumi
Revision: 552418

upgpkg: go-bindata-assetfs 1.0.0-3 Add Patch for 
https://github.com/elazarl/go-bindata-assetfs/issues/33

Added:
  go-bindata-assetfs/trunk/38087fe4dafb822e541b3f7955075cc1c30bd294.patch
Modified:
  go-bindata-assetfs/trunk/PKGBUILD

+
 38087fe4dafb822e541b3f7955075cc1c30bd294.patch |  113 +++
 PKGBUILD   |   12 +-
 2 files changed, 122 insertions(+), 3 deletions(-)

Added: 38087fe4dafb822e541b3f7955075cc1c30bd294.patch
===
--- 38087fe4dafb822e541b3f7955075cc1c30bd294.patch  
(rev 0)
+++ 38087fe4dafb822e541b3f7955075cc1c30bd294.patch  2020-01-13 18:52:49 UTC 
(rev 552418)
@@ -0,0 +1,113 @@
+From b1a95d801a866b44a1c4ec60c2abaeb77ae54a87 Mon Sep 17 00:00:00 2001
+From: Mark Wallsgrove 
+Date: Sat, 2 Jan 2016 13:33:47 +
+Subject: [PATCH] Parse the output location for bindatafile
+
+---
+ go-bindata-assetfs/main.go | 57 ++
+ 1 file changed, 40 insertions(+), 17 deletions(-)
+
+diff --git a/go-bindata-assetfs/main.go b/go-bindata-assetfs/main.go
+index 2d65094..0c7f42c 100644
+--- a/go-bindata-assetfs/main.go
 b/go-bindata-assetfs/main.go
+@@ -5,13 +5,12 @@ import (
+   "bytes"
+   "flag"
+   "fmt"
++  "io/ioutil"
+   "os"
+   "os/exec"
+   "strings"
+ )
+ 
+-const bindatafile = "bindata.go"
+-
+ func isDebug(args []string) bool {
+   flagset := flag.NewFlagSet("", flag.ContinueOnError)
+   debug := flagset.Bool("debug", false, "")
+@@ -28,29 +27,53 @@ func isDebug(args []string) bool {
+   return *debug
+ }
+ 
++func getBinDataFile() (*os.File, *os.File, []string, error) {
++  bindataArgs := make([]string, 0)
++  outputLoc := "bindata.go"
++
++  for i := 1; i < len(os.Args); i++ {
++  if os.Args[i] == "-o" {
++  outputLoc = os.Args[i+1]
++  i++
++  } else {
++  bindataArgs = append(bindataArgs, os.Args[i])
++  }
++  }
++
++  tempFile, err := ioutil.TempFile(os.TempDir(), "")
++  if err != nil {
++  return {}, {}, nil, err
++  }
++
++  outputFile, err := os.Create(outputLoc)
++  if err != nil {
++  return {}, {}, nil, err
++  }
++
++  bindataArgs = append([]string{"-o", tempFile.Name()}, bindataArgs...)
++  return outputFile, tempFile, bindataArgs, nil
++}
++
+ func main() {
+-  if _, err := exec.LookPath("go-bindata"); err != nil {
++  path, err := exec.LookPath("go-bindata")
++  if err != nil {
+   fmt.Println("Cannot find go-bindata executable in path")
+   fmt.Println("Maybe you need: go get 
github.com/elazarl/go-bindata-assetfs/...")
+   os.Exit(1)
+   }
+-  cmd := exec.Command("go-bindata", os.Args[1:]...)
++  out, in, args, err := getBinDataFile()
++  if err != nil {
++  fmt.Fprintln(os.Stderr, "Error: cannot create temporary file", 
err)
++  os.Exit(1)
++  }
++  cmd := exec.Command(path, args...)
+   cmd.Stdin = os.Stdin
+   cmd.Stdout = os.Stdout
+   cmd.Stderr = os.Stderr
+   if err := cmd.Run(); err != nil {
++  fmt.Fprintln(os.Stderr, "Error: go-bindata: ", err)
+   os.Exit(1)
+   }
+-  in, err := os.Open(bindatafile)
+-  if err != nil {
+-  fmt.Fprintln(os.Stderr, "Cannot read", bindatafile, err)
+-  return
+-  }
+-  out, err := os.Create("bindata_assetfs.go")
+-  if err != nil {
+-  fmt.Fprintln(os.Stderr, "Cannot write 'bindata_assetfs.go'", 
err)
+-  return
+-  }
+   debug := isDebug(os.Args[1:])
+   r := bufio.NewReader(in)
+   done := false
+@@ -59,7 +82,7 @@ func main() {
+   line = append(line, '\n')
+   }
+   if _, err := out.Write(line); err != nil {
+-  fmt.Fprintln(os.Stderr, "Cannot write to 
'bindata_assetfs.go'", err)
++  fmt.Fprintln(os.Stderr, "Cannot write to ", out.Name(), 
err)
+   return
+   }
+   if !done && !isPrefix && bytes.HasPrefix(line, []byte("import 
(")) {
+@@ -91,7 +114,7 @@ func assetFS() *assetfs.AssetFS {
+   // Close files BEFORE remove calls (don't use defer).
+   in.Close()
+   out.Close()
+-  if err := os.Remove(bindatafile); err != nil {
+-  fmt.Fprintln(os.Stderr, "Cannot remove", bindatafile, err)
++  if err := os.Remove(in.Name()); err != nil {
++  fmt.Fprintln(os.Stderr, "Cannot remove", in.Name(), err)
+   }
+ }

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 18:51:17 

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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 18:51:05
  Author: felixonmars
Revision: 552416

upgpkg: haskell-zlib-bindings 0.1.1.5-16: rebuild with ghc 8.8.1, cabal-doctest 
1.0.7, polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 
0.95.0.0, regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, 
unexceptionalio 0.5.0, gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 
0.7, resolv 0.1.1.3, ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, 
foldl 1.4.6, lens 4.18, postgresql-binary 0.12.2, tls 1.5.0

Modified:
  haskell-zlib-bindings/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 18:25:14 UTC (rev 552415)
+++ PKGBUILD2020-01-13 18:51:05 UTC (rev 552416)
@@ -4,7 +4,7 @@
 _hkgname=zlib-bindings
 pkgname=haskell-zlib-bindings
 pkgver=0.1.1.5
-pkgrel=15
+pkgrel=16
 pkgdesc="Low-level bindings to the zlib package."
 url="https://github.com/snapframework/zlib-bindings;
 license=("BSD")


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 18:51:17
  Author: felixonmars
Revision: 552417

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-zlib-bindings/repos/community-staging-x86_64/
  haskell-zlib-bindings/repos/community-staging-x86_64/PKGBUILD
(from rev 552416, haskell-zlib-bindings/trunk/PKGBUILD)

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

Copied: haskell-zlib-bindings/repos/community-staging-x86_64/PKGBUILD (from rev 
552416, haskell-zlib-bindings/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-13 18:51:17 UTC (rev 552417)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=zlib-bindings
+pkgname=haskell-zlib-bindings
+pkgver=0.1.1.5
+pkgrel=16
+pkgdesc="Low-level bindings to the zlib package."
+url="https://github.com/snapframework/zlib-bindings;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-zlib")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('1ce7a21f462ce5fb1c6ae0ccd40b6f59eb95772b46fa8f5cb3b94f76d55189b7c020dfd97cb18afe21cd826d1a511d9d02909c4376b165c2f574ec881f7de299')
+
+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-zip-archive/trunk (PKGBUILD)

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 18:25:02
  Author: felixonmars
Revision: 552414

upgpkg: haskell-zip-archive 0.4.1-22: rebuild with ghc 8.8.1, cabal-doctest 
1.0.7, polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 
0.95.0.0, regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, 
unexceptionalio 0.5.0, gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 
0.7, resolv 0.1.1.3, ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, 
foldl 1.4.6, lens 4.18, postgresql-binary 0.12.2, tls 1.5.0

Modified:
  haskell-zip-archive/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 18:24:14 UTC (rev 552413)
+++ PKGBUILD2020-01-13 18:25:02 UTC (rev 552414)
@@ -4,7 +4,7 @@
 _hkgname=zip-archive
 pkgname=haskell-zip-archive
 pkgver=0.4.1
-pkgrel=21
+pkgrel=22
 pkgdesc="Library for creating and modifying zip archives."
 url="https://github.com/jgm/zip-archive;
 license=("BSD")


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 18:25:14
  Author: felixonmars
Revision: 552415

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-zip-archive/repos/community-staging-x86_64/
  haskell-zip-archive/repos/community-staging-x86_64/PKGBUILD
(from rev 552414, haskell-zip-archive/trunk/PKGBUILD)

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

Copied: haskell-zip-archive/repos/community-staging-x86_64/PKGBUILD (from rev 
552414, haskell-zip-archive/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-13 18:25:14 UTC (rev 552415)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=zip-archive
+pkgname=haskell-zip-archive
+pkgver=0.4.1
+pkgrel=22
+pkgdesc="Library for creating and modifying zip archives."
+url="https://github.com/jgm/zip-archive;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-digest' 'haskell-old-time' 'haskell-temporary'
+ 'haskell-zlib')
+makedepends=('ghc' 'haskell-hunit' 'unzip')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/jgm/zip-archive/archive/$pkgver.tar.gz;)
+sha512sums=('a921f54928690844e3976c38de6c98f2936c39a79b9ec8f23b6b57e17eedae5129201337fe363f6a8bb593c4dad94cb54da4379456c0a92c4ecdd24965388714')
+
+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-executable -fsplitbase
+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-yesod-static/repos (2 files)

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 18:24:14
  Author: felixonmars
Revision: 552413

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod-static/repos/community-staging-x86_64/PKGBUILD (from rev 
552412, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-13 18:24:14 UTC (rev 552413)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-static
+pkgname=haskell-yesod-static
+pkgver=1.6.0.1
+pkgrel=257
+pkgdesc="Static file serving subsite for Yesod Web Framework."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-attoparsec' 
'haskell-base64-bytestring'
+ 'haskell-blaze-builder' 'haskell-conduit' 'haskell-cryptonite'
+ 'haskell-cryptonite-conduit' 'haskell-css-text' 'haskell-data-default'
+ 'haskell-file-embed' 'haskell-hashable' 'haskell-hjsmin' 
'haskell-http-types'
+ 'haskell-memory' 'haskell-mime-types' 'haskell-unix-compat' 
'haskell-unordered-containers'
+ 'haskell-wai' 'haskell-wai-app-static' 'haskell-yesod-core')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hunit' 'haskell-wai-extra' 
'haskell-yesod-test')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('2e1e4873248d435a9d58f3075b6c06cde2edcdd520f700dc7f0427039c236d28787f62a643a8cf57b74d85a885625474a5662b91a56c25e8f4d1737be525bc2f')
+
+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-yesod-static/trunk (PKGBUILD)

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 18:24:02
  Author: felixonmars
Revision: 552412

upgpkg: haskell-yesod-static 1.6.0.1-257: rebuild with ghc 8.8.1, cabal-doctest 
1.0.7, polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 
0.95.0.0, regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, 
unexceptionalio 0.5.0, gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 
0.7, resolv 0.1.1.3, ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, 
foldl 1.4.6, lens 4.18, postgresql-binary 0.12.2, tls 1.5.0

Modified:
  haskell-yesod-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 18:22:48 UTC (rev 552411)
+++ PKGBUILD2020-01-13 18:24:02 UTC (rev 552412)
@@ -4,7 +4,7 @@
 _hkgname=yesod-static
 pkgname=haskell-yesod-static
 pkgver=1.6.0.1
-pkgrel=256
+pkgrel=257
 pkgdesc="Static file serving subsite for Yesod Web Framework."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 18:22:37
  Author: felixonmars
Revision: 552410

upgpkg: haskell-yesod-test 1.6.9-20: rebuild with ghc 8.8.1, cabal-doctest 
1.0.7, polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 
0.95.0.0, regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, 
unexceptionalio 0.5.0, gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 
0.7, resolv 0.1.1.3, ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, 
foldl 1.4.6, lens 4.18, postgresql-binary 0.12.2, tls 1.5.0

Modified:
  haskell-yesod-test/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 18:21:01 UTC (rev 552409)
+++ PKGBUILD2020-01-13 18:22:37 UTC (rev 552410)
@@ -3,7 +3,7 @@
 _hkgname=yesod-test
 pkgname=haskell-yesod-test
 pkgver=1.6.9
-pkgrel=19
+pkgrel=20
 pkgdesc="Integration testing for WAI/Yesod Applications"
 url="https://www.yesodweb.com;
 license=('MIT')


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 18:22:48
  Author: felixonmars
Revision: 552411

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod-test/repos/community-staging-x86_64/PKGBUILD (from rev 
552410, haskell-yesod-test/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-13 18:22:48 UTC (rev 552411)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=yesod-test
+pkgname=haskell-yesod-test
+pkgver=1.6.9
+pkgrel=20
+pkgdesc="Integration testing for WAI/Yesod Applications"
+url="https://www.yesodweb.com;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hunit' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-blaze-builder'
+ 'haskell-blaze-html' 'haskell-case-insensitive' 'haskell-conduit'
+ 'haskell-cookie' 'haskell-hspec-core' 'haskell-html-conduit' 
'haskell-http-types'
+ 'haskell-memory' 'haskell-network' 'haskell-pretty-show' 'haskell-wai'
+ 'haskell-wai-extra' 'haskell-xml-conduit' 'haskell-xml-types' 
'haskell-yesod-core')
+makedepends=('ghc' 'haskell-yesod-form' 'haskell-hspec' 'haskell-unliftio' 
'haskell-unliftio-core')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('a09cec464ca4ebe9839eb08cc5da93076bed7450f17d2df8d40625e8d8d8157ba81284cea5e73b0b4e4e30169e0211af99cb8f6898d2039a826a68405cf681e2')
+
+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-yesod/repos (2 files)

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 18:21:01
  Author: felixonmars
Revision: 552409

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod/repos/community-staging-x86_64/PKGBUILD (from rev 552408, 
haskell-yesod/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-13 18:21:01 UTC (rev 552409)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod
+pkgname=haskell-yesod
+pkgver=1.6.0
+pkgrel=401
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-blaze-html' 'haskell-blaze-markup'
+ 'haskell-data-default-class' 'haskell-fast-logger' 
'haskell-monad-logger'
+ 'haskell-resourcet' 'haskell-shakespeare' 'haskell-streaming-commons'
+ 'haskell-unordered-containers' 'haskell-wai' 'haskell-wai-extra' 
'haskell-wai-logger'
+ 'haskell-warp' 'haskell-yaml' 'haskell-yesod-core' 
'haskell-yesod-form'
+ 'haskell-yesod-persistent')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('36caa5ee5c27a2355aff9e5dc210100661670717e251bb42bac48c02cd6979c38ae7b5fda1dd2e264aefb7b5b3808f7ccc9e511fd38b6de7090e16c7a91e1b15')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 18:20:49
  Author: felixonmars
Revision: 552408

upgpkg: haskell-yesod 1.6.0-401: rebuild with ghc 8.8.1, cabal-doctest 1.0.7, 
polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 0.95.0.0, 
regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, unexceptionalio 0.5.0, 
gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 0.7, resolv 0.1.1.3, 
ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, foldl 1.4.6, lens 4.18, 
postgresql-binary 0.12.2, tls 1.5.0

Modified:
  haskell-yesod/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 18:19:41 UTC (rev 552407)
+++ PKGBUILD2020-01-13 18:20:49 UTC (rev 552408)
@@ -4,7 +4,7 @@
 _hkgname=yesod
 pkgname=haskell-yesod
 pkgver=1.6.0
-pkgrel=400
+pkgrel=401
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 18:19:41
  Author: felixonmars
Revision: 552407

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 18:19:30
  Author: felixonmars
Revision: 552406

upgpkg: haskell-yesod-form 1.6.7-60: rebuild with ghc 8.8.1, cabal-doctest 
1.0.7, polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 
0.95.0.0, regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, 
unexceptionalio 0.5.0, gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 
0.7, resolv 0.1.1.3, ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, 
foldl 1.4.6, lens 4.18, postgresql-binary 0.12.2, tls 1.5.0

Modified:
  haskell-yesod-form/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 18:17:45 UTC (rev 552405)
+++ PKGBUILD2020-01-13 18:19:30 UTC (rev 552406)
@@ -4,7 +4,7 @@
 _hkgname=yesod-form
 pkgname=haskell-yesod-form
 pkgver=1.6.7
-pkgrel=59
+pkgrel=60
 pkgdesc="Form handling support for Yesod Web Framework"
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 18:17:45
  Author: felixonmars
Revision: 552405

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod-persistent/repos/community-staging-x86_64/PKGBUILD (from 
rev 552404, haskell-yesod-persistent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-13 18:17:45 UTC (rev 552405)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-persistent
+pkgname=haskell-yesod-persistent
+pkgver=1.6.0.4
+pkgrel=5
+pkgdesc="Some helpers for using Persistent from Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-blaze-builder" "haskell-conduit" 
"haskell-persistent"
+ "haskell-persistent-template" "haskell-resource-pool" 
"haskell-resourcet"
+ "haskell-yesod-core")
+makedepends=('ghc' 'haskell-hspec' 'haskell-wai-extra' 
'haskell-persistent-sqlite')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('a52d85b025397ae04641346107124a5570765356bc7209f0391646b93b3c8954219c73d717c98d108d552800eeb2122531f98abd2b0e2109aee59c7d9825f70d')
+
+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-yesod-persistent/trunk (PKGBUILD)

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 18:17:34
  Author: felixonmars
Revision: 552404

upgpkg: haskell-yesod-persistent 1.6.0.4-5: rebuild with ghc 8.8.1, 
cabal-doctest 1.0.7, polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, 
regex-pcre 0.95.0.0, regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, 
unexceptionalio 0.5.0, gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 
0.7, resolv 0.1.1.3, ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, 
foldl 1.4.6, lens 4.18, postgresql-binary 0.12.2, tls 1.5.0

Modified:
  haskell-yesod-persistent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 18:16:26 UTC (rev 552403)
+++ PKGBUILD2020-01-13 18:17:34 UTC (rev 552404)
@@ -4,7 +4,7 @@
 _hkgname=yesod-persistent
 pkgname=haskell-yesod-persistent
 pkgver=1.6.0.4
-pkgrel=4
+pkgrel=5
 pkgdesc="Some helpers for using Persistent from Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 18:16:14
  Author: felixonmars
Revision: 552402

upgpkg: haskell-yesod-default 1.2.0-637: rebuild with ghc 8.8.1, cabal-doctest 
1.0.7, polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 
0.95.0.0, regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, 
unexceptionalio 0.5.0, gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 
0.7, resolv 0.1.1.3, ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, 
foldl 1.4.6, lens 4.18, postgresql-binary 0.12.2, tls 1.5.0

Modified:
  haskell-yesod-default/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 18:15:16 UTC (rev 552401)
+++ PKGBUILD2020-01-13 18:16:14 UTC (rev 552402)
@@ -4,7 +4,7 @@
 _hkgname=yesod-default
 pkgname=haskell-yesod-default
 pkgver=1.2.0
-pkgrel=636
+pkgrel=637
 pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 18:16:26
  Author: felixonmars
Revision: 552403

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 18:15:04
  Author: felixonmars
Revision: 552400

upgpkg: haskell-yesod-core 1.6.17-20: rebuild with ghc 8.8.1, cabal-doctest 
1.0.7, polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 
0.95.0.0, regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, 
unexceptionalio 0.5.0, gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 
0.7, resolv 0.1.1.3, ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, 
foldl 1.4.6, lens 4.18, postgresql-binary 0.12.2, tls 1.5.0

Modified:
  haskell-yesod-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 18:13:25 UTC (rev 552399)
+++ PKGBUILD2020-01-13 18:15:04 UTC (rev 552400)
@@ -4,7 +4,7 @@
 _hkgname=yesod-core
 pkgname=haskell-yesod-core
 pkgver=1.6.17
-pkgrel=19
+pkgrel=20
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 18:15:16
  Author: felixonmars
Revision: 552401

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 18:13:13
  Author: felixonmars
Revision: 552398

upgpkg: haskell-dav 1.3.4-2: rebuild with ghc 8.8.1, cabal-doctest 1.0.7, 
polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 0.95.0.0, 
regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, unexceptionalio 0.5.0, 
gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 0.7, resolv 0.1.1.3, 
ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, foldl 1.4.6, lens 4.18, 
postgresql-binary 0.12.2, tls 1.5.0

Modified:
  haskell-dav/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 18:12:04 UTC (rev 552397)
+++ PKGBUILD2020-01-13 18:13:13 UTC (rev 552398)
@@ -4,7 +4,7 @@
 _hkgname=DAV
 pkgname=haskell-dav
 pkgver=1.3.4
-pkgrel=1
+pkgrel=2
 pkgdesc="RFC 4918 WebDAV support"
 url="http://floss.scru.org/hDAV;
 license=("GPL3")


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 18:13:25
  Author: felixonmars
Revision: 552399

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-dav/repos/community-staging-x86_64/PKGBUILD (from rev 552398, 
haskell-dav/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-13 18:13:25 UTC (rev 552399)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=DAV
+pkgname=haskell-dav
+pkgver=1.3.4
+pkgrel=2
+pkgdesc="RFC 4918 WebDAV support"
+url="http://floss.scru.org/hDAV;
+license=("GPL3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-case-insensitive" "haskell-data-default" 
"haskell-exceptions"
+ "haskell-haskeline" "haskell-http-client" "haskell-http-client-tls" 
"haskell-http-types"
+ "haskell-lens" "haskell-network" "haskell-network-uri"
+ "haskell-optparse-applicative" "haskell-transformers-base" 
"haskell-transformers-compat"
+ "haskell-utf8-string" "haskell-xml-conduit" "haskell-xml-hamlet")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('95bb567488bed2fef3813597ea9c080781bbc25117995901ff7264c0f04bf4db1bad6c9c94c4d1fbea968245041752b2b720d4c42b4c23191eda5e3dc0c292b6')
+
+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-mtl-compat
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 18:12:04
  Author: felixonmars
Revision: 552397

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-xml-hamlet/repos/community-staging-x86_64/PKGBUILD (from rev 
552396, haskell-xml-hamlet/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-13 18:12:04 UTC (rev 552397)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=xml-hamlet
+pkgname=haskell-xml-hamlet
+pkgver=0.5.0.1
+pkgrel=31
+pkgdesc="Hamlet-style quasiquoter for XML content"
+url="http://www.yesodweb.com/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-shakespeare"
+ "haskell-xml-conduit")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('273dbb637c6e37fcc3b180448ccee0dce8996319d653cc3833fef302a297e8fdc805958b4ebc6e015cbfb2ae8b60a8325108b9d6dcaab052b460ff27a404de39')
+
+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-xml-hamlet/trunk (PKGBUILD)

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 18:11:53
  Author: felixonmars
Revision: 552396

upgpkg: haskell-xml-hamlet 0.5.0.1-31: rebuild with ghc 8.8.1, cabal-doctest 
1.0.7, polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, regex-pcre 
0.95.0.0, regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, 
unexceptionalio 0.5.0, gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 
0.7, resolv 0.1.1.3, ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, 
foldl 1.4.6, lens 4.18, postgresql-binary 0.12.2, tls 1.5.0

Modified:
  haskell-xml-hamlet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 18:10:28 UTC (rev 552395)
+++ PKGBUILD2020-01-13 18:11:53 UTC (rev 552396)
@@ -4,7 +4,7 @@
 _hkgname=xml-hamlet
 pkgname=haskell-xml-hamlet
 pkgver=0.5.0.1
-pkgrel=30
+pkgrel=31
 pkgdesc="Hamlet-style quasiquoter for XML content"
 url="http://www.yesodweb.com/;
 license=("BSD")


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 18:10:28
  Author: felixonmars
Revision: 552395

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-tagstream-conduit/repos/community-staging-x86_64/PKGBUILD (from 
rev 552394, haskell-tagstream-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-01-13 18:10:28 UTC (rev 552395)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tagstream-conduit
+pkgname=haskell-tagstream-conduit
+pkgver=0.5.5.3
+pkgrel=315
+pkgdesc="Streamlined html tag parser"
+url="https://github.com/yihuang/tagstream-conduit;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-attoparsec" "haskell-blaze-builder" 
"haskell-case-insensitive"
+ "haskell-conduit" "haskell-conduit-extra" "haskell-data-default" 
"haskell-resourcet"
+ "haskell-xml-conduit")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;
+
tagstream-conduit-monadfail.patch::https://github.com/yihuang/tagstream-conduit/commit/9b31798bfb3ae637bb69ed805a7a2459ca79a3d1.patch)
+sha512sums=('84625975df6c6c315011ebfd63d551b22c00927fa9add390d9e723bc104d4a7881743aaf6bceae0ff42efc6056a314baddb594fd5e39333ea7ff6cbcf154'
+
'c486a57bbc04ad6d3cff389f35be12d1ce6d891daf7e32fa166928cd7ce33ecedbcc2906023445c229bd8acc8d1b5694835da11f2f88eb3f42b93ba58504ce60')
+
+prepare() {
+cd $_hkgname-$pkgver
+patch -p1 -i ../tagstream-conduit-monadfail.patch
+}
+
+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-tagstream-conduit/trunk (PKGBUILD)

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 18:10:15
  Author: felixonmars
Revision: 552394

upgpkg: haskell-tagstream-conduit 0.5.5.3-315: rebuild with ghc 8.8.1, 
cabal-doctest 1.0.7, polyparse 1.13, primitive 0.7.0.0, regex-base 0.94.0.0, 
regex-pcre 0.95.0.0, regex-posix 0.96.0.0, regex-tdfa 1.3.1.0, easytest 0.3, 
unexceptionalio 0.5.0, gtk2hs-buildtools 0.13.8.0, ghc-typelits-natnormalise 
0.7, resolv 0.1.1.3, ghc-typelits-knownnat 0.7.1, memory 0.15.0, RSA 2.4.1, 
foldl 1.4.6, lens 4.18, postgresql-binary 0.12.2, tls 1.5.0

Modified:
  haskell-tagstream-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-13 18:05:38 UTC (rev 552393)
+++ PKGBUILD2020-01-13 18:10:15 UTC (rev 552394)
@@ -4,7 +4,7 @@
 _hkgname=tagstream-conduit
 pkgname=haskell-tagstream-conduit
 pkgver=0.5.5.3
-pkgrel=314
+pkgrel=315
 pkgdesc="Streamlined html tag parser"
 url="https://github.com/yihuang/tagstream-conduit;
 license=("BSD")
@@ -13,9 +13,16 @@
  "haskell-conduit" "haskell-conduit-extra" "haskell-data-default" 
"haskell-resourcet"
  "haskell-xml-conduit")
 makedepends=('ghc')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('84625975df6c6c315011ebfd63d551b22c00927fa9add390d9e723bc104d4a7881743aaf6bceae0ff42efc6056a314baddb594fd5e39333ea7ff6cbcf154')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;
+
tagstream-conduit-monadfail.patch::https://github.com/yihuang/tagstream-conduit/commit/9b31798bfb3ae637bb69ed805a7a2459ca79a3d1.patch)
+sha512sums=('84625975df6c6c315011ebfd63d551b22c00927fa9add390d9e723bc104d4a7881743aaf6bceae0ff42efc6056a314baddb594fd5e39333ea7ff6cbcf154'
+
'c486a57bbc04ad6d3cff389f35be12d1ce6d891daf7e32fa166928cd7ce33ecedbcc2906023445c229bd8acc8d1b5694835da11f2f88eb3f42b93ba58504ce60')
 
+prepare() {
+cd $_hkgname-$pkgver
+patch -p1 -i ../tagstream-conduit-monadfail.patch
+}
+
 build() {
 cd $_hkgname-$pkgver
 


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

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 18:05:38
  Author: felixonmars
Revision: 552393

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-01-13 18:05:02 UTC (rev 552392)
+++ PKGBUILD2020-01-13 18:05:38 UTC (rev 552393)
@@ -1,63 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: David Campbell 
-# Contributor: Cilyan Olowen 
-
-pkgbase=python-paste
-pkgname=(python-paste python2-paste)
-pkgver=3.2.5
-pkgrel=1
-pkgdesc="Tools for using a Web Server Gateway Interface stack"
-arch=('any')
-url="http://pythonpaste.org/index.html;
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-flup' 
'python2-flup'
-  'python2-openid')
-source=("https://files.pythonhosted.org/packages/source/P/Paste/Paste-${pkgver}.tar.gz;)
-sha512sums=('5c885db17fde639ff0984b6e356fd20d84dd59ba18863a35796840b6dbc9679a576892c08766c964f7789558a7e98acf8012ba17d47df2a1f9491a2cea1b7411')
-
-prepare() {
-  cp -a Paste-${pkgver}{,-py2}
-
-  cd Paste-${pkgver}-py2
-  sed -i -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
- -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-  $(find . -name '*.py')
-}
-
-build() {
-  cd "$srcdir"/Paste-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/Paste-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/Paste-$pkgver
-  python setup.py pytest
-
-  cd "$srcdir"/Paste-$pkgver-py2
-  python2 setup.py pytest
-}
-
-package_python-paste() {
-  depends=('python-six')
-  optdepends=('python-flup: WSGI utilities')
-
-  cd Paste-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 docs/license.txt 
"$pkgdir"/usr/share/licenses/$pkgname/license.txt
-}
-
-package_python2-paste() {
-  depends=('python2-six')
-  optdepends=('python2-flup: WSGI utilities'
-  'python2-openid: Support for OpenID')
-
-  cd Paste-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 docs/license.txt 
"$pkgdir"/usr/share/licenses/$pkgname/license.txt
-}

Copied: python-paste/repos/community-any/PKGBUILD (from rev 552392, 
python-paste/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-01-13 18:05:38 UTC (rev 552393)
@@ -0,0 +1,63 @@
+# Maintainer: Felix Yan 
+# Contributor: David Campbell 
+# Contributor: Cilyan Olowen 
+
+pkgbase=python-paste
+pkgname=(python-paste python2-paste)
+pkgver=3.2.6
+pkgrel=1
+pkgdesc="Tools for using a Web Server Gateway Interface stack"
+arch=('any')
+url="http://pythonpaste.org/index.html;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-flup' 
'python2-flup'
+  'python2-openid')
+source=("https://files.pythonhosted.org/packages/source/P/Paste/Paste-${pkgver}.tar.gz;)
+sha512sums=('036571772d5b26c4f6dc2283de9ae404438e745a1bf327ef602aea136d06926de7fa6cebbf7a5125ef17c865d68915711c035cb03deb3590be0418caf04afad3')
+
+prepare() {
+  cp -a Paste-${pkgver}{,-py2}
+
+  cd Paste-${pkgver}-py2
+  sed -i -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+ -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+  $(find . -name '*.py')
+}
+
+build() {
+  cd "$srcdir"/Paste-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/Paste-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/Paste-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/Paste-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-paste() {
+  depends=('python-six')
+  optdepends=('python-flup: WSGI utilities')
+
+  cd Paste-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 docs/license.txt 
"$pkgdir"/usr/share/licenses/$pkgname/license.txt
+}
+
+package_python2-paste() {
+  depends=('python2-six')
+  optdepends=('python2-flup: WSGI utilities'
+  'python2-openid: Support for OpenID')
+
+  cd Paste-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 docs/license.txt 
"$pkgdir"/usr/share/licenses/$pkgname/license.txt
+}


[arch-commits] Commit in perl-xml-libxml/repos/extra-x86_64 (4 files)

2020-01-13 Thread Felix Yan via arch-commits
Date: Monday, January 13, 2020 @ 18:05:43
  Author: felixonmars
Revision: 373441

archrelease: copy trunk to extra-x86_64

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

-+
 PKGBUILD|   72 +++---
 perl-xml-libxml.install |   46 ++---
 2 files changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-01-13 18:05:27 UTC (rev 373440)
+++ PKGBUILD2020-01-13 18:05:43 UTC (rev 373441)
@@ -1,36 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Jonathan Steel 
-# Contributor: Justin "juster" Davis 
-# Contributor: François Charette 
-
-pkgname=perl-xml-libxml
-pkgver=2.0201
-pkgrel=2
-pkgdesc="Interface to the libxml library"
-arch=('x86_64')
-url="https://search.cpan.org/dist/XML-LibXML;
-license=('GPL')
-depends=('perl-alien-libxml2' 'perl-xml-sax' 'perl-xml-namespacesupport')
-checkdepends=('perl-test-pod' 'perl-test-leaktrace' 'perl-cpan-changes' 
'perl-uri')
-provides=('perl-libxml' 'perl-xml-libxml-common')
-replaces=('perl-libxml' 'perl-xml-libxml-common')
-options=('!emptydirs')
-install=perl-xml-libxml.install
-source=(https://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXML-$pkgver.tar.gz)
-sha512sums=('988bc98e7f3e426202b9770ef055df68abc861b935dcdd8ecbefaaa7cd528abc35cce9bd75f2f10412917178f6b74ac6bf953feac130b1f9afe9e18c16139e47')
-
-build() {
-  cd XML-LibXML-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd XML-LibXML-$pkgver
-  make test
-}
-
-package() {
-  cd XML-LibXML-$pkgver
-  make pure_install doc_install DESTDIR="$pkgdir"/
-}

Copied: perl-xml-libxml/repos/extra-x86_64/PKGBUILD (from rev 373440, 
perl-xml-libxml/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-01-13 18:05:43 UTC (rev 373441)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Contributor: Jonathan Steel 
+# Contributor: Justin "juster" Davis 
+# Contributor: François Charette 
+
+pkgname=perl-xml-libxml
+pkgver=2.0202
+pkgrel=1
+pkgdesc="Interface to the libxml library"
+arch=('x86_64')
+url="https://search.cpan.org/dist/XML-LibXML;
+license=('GPL')
+depends=('perl-alien-libxml2' 'perl-xml-sax' 'perl-xml-namespacesupport')
+checkdepends=('perl-test-pod' 'perl-test-leaktrace' 'perl-cpan-changes' 
'perl-uri')
+provides=('perl-libxml' 'perl-xml-libxml-common')
+replaces=('perl-libxml' 'perl-xml-libxml-common')
+options=('!emptydirs')
+install=perl-xml-libxml.install
+source=(https://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXML-$pkgver.tar.gz)
+sha512sums=('1b2b0f3469ef2205998645024be378542fec121931c7b09a8600223efcee92bb9a3619751955e5ade9b06cd70f49ecb759ef31e71da36a9cefbeb87e5e588961')
+
+build() {
+  cd XML-LibXML-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd XML-LibXML-$pkgver
+  make test
+}
+
+package() {
+  cd XML-LibXML-$pkgver
+  make pure_install doc_install DESTDIR="$pkgdir"/
+}

Deleted: perl-xml-libxml.install
===
--- perl-xml-libxml.install 2020-01-13 18:05:27 UTC (rev 373440)
+++ perl-xml-libxml.install 2020-01-13 18:05:43 UTC (rev 373441)
@@ -1,23 +0,0 @@
-post_install() {
-  echo ":: Installing SAX XML Parsers"
-  perl -MXML::SAX -e 
"XML::SAX->add_parser(q(XML::LibXML::SAX::Parser))->save_parsers()"
-  perl -MXML::SAX -e 
"XML::SAX->add_parser(q(XML::LibXML::SAX))->save_parsers()"
-}
-
-post_upgrade() {
-  if [[ ! -f /usr/share/perl5/vendor_perl/XML/SAX/ParserDetails.ini ]]; then
-post_install
-  else
-libxmlcount=`grep -c XML::LibXML::SAX 
/usr/share/perl5/vendor_perl/XML/SAX/ParserDetails.ini`
-if [[ $libxmlcount == 0 ]]; then
-  post_install
-fi
-  fi
-}
-
-pre_remove() {
-  if [[ -f /usr/share/perl5/vendor_perl/XML/SAX/ParserDetails.ini ]]; then
-perl -MXML::SAX -e 
"XML::SAX->remove_parser(q(XML::LibXML::SAX::Parser))->save_parsers()"
-perl -MXML::SAX -e 
"XML::SAX->remove_parser(q(XML::LibXML::SAX))->save_parsers()"
-  fi
-}

Copied: perl-xml-libxml/repos/extra-x86_64/perl-xml-libxml.install (from rev 
373440, perl-xml-libxml/trunk/perl-xml-libxml.install)
===
--- perl-xml-libxml.install (rev 0)
+++ perl-xml-libxml.install 2020-01-13 18:05:43 UTC (rev 373441)
@@ -0,0 +1,23 @@
+post_install() {
+  echo ":: Installing SAX XML Parsers"
+  perl -MXML::SAX -e 
"XML::SAX->add_parser(q(XML::LibXML::SAX::Parser))->save_parsers()"
+  perl -MXML::SAX -e 

  1   2   >