[arch-commits] Commit in man-db/repos (5 files)

2020-03-31 Thread Andreas Radke via arch-commits
Date: Wednesday, April 1, 2020 @ 06:06:30
  Author: andyrtr
Revision: 379029

archrelease: copy trunk to testing-x86_64

Added:
  man-db/repos/testing-x86_64/
  man-db/repos/testing-x86_64/PKGBUILD
(from rev 379028, man-db/trunk/PKGBUILD)
  man-db/repos/testing-x86_64/convert-mans
(from rev 379028, man-db/trunk/convert-mans)
  man-db/repos/testing-x86_64/man-db.install
(from rev 379028, man-db/trunk/man-db.install)
  man-db/repos/testing-x86_64/snapdir.diff
(from rev 379028, man-db/trunk/snapdir.diff)

+
 PKGBUILD   |   71 +++
 convert-mans   |   11 
 man-db.install |   11 
 snapdir.diff   |   12 +
 4 files changed, 105 insertions(+)

Copied: man-db/repos/testing-x86_64/PKGBUILD (from rev 379028, 
man-db/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-04-01 06:06:30 UTC (rev 379029)
@@ -0,0 +1,71 @@
+# Maintainer: Andreas Radke 
+# Contributor: Sergej Pupykin 
+
+pkgname=man-db
+pkgver=2.9.1
+pkgrel=2
+pkgdesc="A utility for reading man pages"
+arch=('x86_64')
+url="https://www.nongnu.org/man-db/";
+license=('GPL' 'LGPL')
+depends=( 'bash' 'gdbm' 'zlib' 'groff' 'libpipeline' 'less' 'libseccomp')
+makedepends=('po4a')
+optdepends=('gzip')
+backup=('etc/man_db.conf')
+conflicts=('man')
+provides=('man')
+replaces=('man')
+install=${pkgname}.install
+source=(https://savannah.nongnu.org/download/man-db/$pkgname-$pkgver.tar.xz{,.asc}
+# fallback should be used within first 24h after a release
+
#https://download-mirror.savannah.gnu.org/releases/man-db/$pkgname-$pkgver.tar.xz{,.asc}
 
+snapdir.diff
+convert-mans
+)
+validpgpkeys=('AC0A4FF12611B6FCCF01C111393587D97D86500B') # Colin Watson 

+sha512sums=('ae2d1e9f293795c63f5a9a1a765478a9a59cbe5fe6f759647be5057c1ae53f90baee8d5467921f3d0102300f2111a5026eeb25f78401bcb16ce45ad790634977'
+'SKIP'
+
'f24a8152c82c3b99dab2c34654382512f226bb6b0e5e3b1376d577019a4cca0f4e5a9ac92c62ed7ea5cf0ed3ad94509d34f455d845bc5fb026ef908da82cd5fe'
+
'0b159285da20008f0fc0afb21f1eaebd39e8df5b0594880aa0e8a913b656608b8d16bb8d279d9e62d7aae52f62cb9b2fc49e237c6711f4a5170972b38d345535')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  # fix default Add MANDB_MAP entry mapping /snap/man to /var/cache/man/snap
+  # Arch needs /var/lib/snapd/snap/man to /var/cache/man/snap
+  patch -Np0 -i ../snapdir.diff
+}
+
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--with-db=gdbm \
+--disable-setuid \
+--enable-cache-owner=root \
+--enable-mandirs=GNU \
+--with-sections="1 n l 8 3 0 2 5 4 9 6 7"
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # part of groff pkg
+  rm -f ${pkgdir}/usr/bin/zsoelim
+
+  # script from LFS to convert manpages, see
+  # http://www.linuxfromscratch.org/lfs/view/6.4/chapter06/man-db.html
+  install -D -m755 ${srcdir}/convert-mans  ${pkgdir}/usr/bin/convert-mans
+
+  install -d -m755 ${pkgdir}/usr/lib/systemd/system/timers.target.wants
+  ln -s ../man-db.timer 
${pkgdir}/usr/lib/systemd/system/timers.target.wants/man-db.timer
+}

Copied: man-db/repos/testing-x86_64/convert-mans (from rev 379028, 
man-db/trunk/convert-mans)
===
--- testing-x86_64/convert-mans (rev 0)
+++ testing-x86_64/convert-mans 2020-04-01 06:06:30 UTC (rev 379029)
@@ -0,0 +1,11 @@
+#!/bin/sh -e
+FROM="$1"
+TO="$2"
+shift ; shift
+while [ $# -gt 0 ]
+do
+FILE="$1"
+shift
+iconv -f "$FROM" -t "$TO" "$FILE" >.tmp.iconv
+mv .tmp.iconv "$FILE"
+done

Copied: man-db/repos/testing-x86_64/man-db.install (from rev 379028, 
man-db/trunk/man-db.install)
===
--- testing-x86_64/man-db.install   (rev 0)
+++ testing-x86_64/man-db.install   2020-04-01 06:06:30 UTC (rev 379029)
@@ -0,0 +1,11 @@
+post_upgrade() {
+  # force database rebuild as recommended per upstream
+  if [ "`vercmp $2 2.7.0`" -lt 0 ]; then
+ echo "(re)building database..."
+ mandb -c --quiet
+  fi
+}
+
+post_remove() {
+  rm -rf /var/cache/man
+}

Copied: man-db/repos/testing-x86_64/snapdir.diff (from rev 379028, 
man-db/trunk/snapdir.diff)
===
--- testing-x86_64/snapdir.diff (rev 0)
+++ testing-x86_64/snapdir.diff 2020-04-01 06:06:30 UTC (rev 379029)
@@ -0,0 +1,12 @@
+--- src/man_db.conf.in 2020-01-27 13:25:03.0 +0100
 src/man_db.conf.in.new 2020-02-26 07:40:32.726347889 +0100
+@@ -69,7 +69,8 @@
+ MANDB_MAP 

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

2020-03-31 Thread Andreas Radke via arch-commits
Date: Wednesday, April 1, 2020 @ 06:06:16
  Author: andyrtr
Revision: 379028

upgpkg: man-db 2.9.1-2: fix systemd timer location - FS#66051

Modified:
  man-db/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-01 05:01:46 UTC (rev 379027)
+++ PKGBUILD2020-04-01 06:06:16 UTC (rev 379028)
@@ -3,7 +3,7 @@
 
 pkgname=man-db
 pkgver=2.9.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A utility for reading man pages"
 arch=('x86_64')
 url="https://www.nongnu.org/man-db/";
@@ -66,6 +66,6 @@
   # http://www.linuxfromscratch.org/lfs/view/6.4/chapter06/man-db.html
   install -D -m755 ${srcdir}/convert-mans  ${pkgdir}/usr/bin/convert-mans
 
-  install -d -m755 ${pkgdir}/usr/lib/systemd/system/multi-user.target.wants
-  ln -s ../man-db.timer 
${pkgdir}//usr/lib/systemd/system/multi-user.target.wants/man-db.timer
+  install -d -m755 ${pkgdir}/usr/lib/systemd/system/timers.target.wants
+  ln -s ../man-db.timer 
${pkgdir}/usr/lib/systemd/system/timers.target.wants/man-db.timer
 }


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

2020-03-31 Thread Nicola Squartini via arch-commits
Date: Wednesday, April 1, 2020 @ 05:29:22
  Author: tensor5
Revision: 608613

archrelease: copy trunk to community-any

Added:
  asar/repos/community-any/PKGBUILD
(from rev 608612, asar/trunk/PKGBUILD)
Deleted:
  asar/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-01 05:28:53 UTC (rev 608612)
+++ PKGBUILD2020-04-01 05:29:22 UTC (rev 608613)
@@ -1,27 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=asar
-pkgver=3.0.2
-pkgrel=1
-pkgdesc='Creating Electron app packages'
-arch=('any')
-url='https://github.com/electron/asar'
-license=('MIT')
-depends=('nodejs')
-makedepends=('modclean' 'npm')
-options=(!emptydirs)
-
-package() {
-npm install -g --prefix="${srcdir}/usr" ${pkgname}@${pkgver}
-cp -r "${srcdir}/usr" "${pkgdir}"
-
-cd "${pkgdir}/usr/lib/node_modules/${pkgname}"
-install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
-ln -s \
-$(realpath --relative-to="${pkgdir}"/usr/share/licenses/${pkgname} 
LICENSE.md) \
-"${pkgdir}/usr/share/licenses/${pkgname}"
-
-sed -e "s|${srcdir}|/|" -i package.json
-find node_modules -name 'package.json' -exec sed -e "s|${srcdir}||" -i {} 
\;
-modclean -r -a "*.ts,.bin,.vscode,bin.js" --ignore='license'  # 
--ignore='license*'
-}

Copied: asar/repos/community-any/PKGBUILD (from rev 608612, asar/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-01 05:29:22 UTC (rev 608613)
@@ -0,0 +1,27 @@
+# Maintainer: Nicola Squartini 
+
+pkgname=asar
+pkgver=3.0.3
+pkgrel=1
+pkgdesc='Creating Electron app packages'
+arch=('any')
+url='https://github.com/electron/asar'
+license=('MIT')
+depends=('nodejs')
+makedepends=('modclean' 'npm')
+options=(!emptydirs)
+
+package() {
+npm install -g --prefix="${srcdir}/usr" ${pkgname}@${pkgver}
+cp -r "${srcdir}/usr" "${pkgdir}"
+
+cd "${pkgdir}/usr/lib/node_modules/${pkgname}"
+install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
+ln -s \
+$(realpath --relative-to="${pkgdir}"/usr/share/licenses/${pkgname} 
LICENSE.md) \
+"${pkgdir}/usr/share/licenses/${pkgname}"
+
+sed -e "s|${srcdir}|/|" -i package.json
+find node_modules -name 'package.json' -exec sed -e "s|${srcdir}||" -i {} 
\;
+modclean -r -a "*.ts,.bin,.vscode,bin.js" --ignore='license'  # 
--ignore='license*'
+}


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

2020-03-31 Thread Nicola Squartini via arch-commits
Date: Wednesday, April 1, 2020 @ 05:28:53
  Author: tensor5
Revision: 608612

upgpkg: asar 3.0.3-1

Modified:
  asar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-01 04:50:12 UTC (rev 608611)
+++ PKGBUILD2020-04-01 05:28:53 UTC (rev 608612)
@@ -1,7 +1,7 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=asar
-pkgver=3.0.2
+pkgver=3.0.3
 pkgrel=1
 pkgdesc='Creating Electron app packages'
 arch=('any')


[arch-commits] Commit in chromium/repos/extra-x86_64 (26 files)

2020-03-31 Thread Evangelos Foutras via arch-commits
Date: Wednesday, April 1, 2020 @ 05:01:46
  Author: foutrelis
Revision: 379027

archrelease: copy trunk to extra-x86_64

Added:
  chromium/repos/extra-x86_64/PKGBUILD
(from rev 379026, chromium/trunk/PKGBUILD)
  chromium/repos/extra-x86_64/chromium-skia-harmony.patch
(from rev 379026, chromium/trunk/chromium-skia-harmony.patch)
  chromium/repos/extra-x86_64/chromium-widevine.patch
(from rev 379026, chromium/trunk/chromium-widevine.patch)
  chromium/repos/extra-x86_64/chromium.install
(from rev 379026, chromium/trunk/chromium.install)
  
chromium/repos/extra-x86_64/cros-search-service-Include-cmath-for-std-pow.patch
(from rev 379026, 
chromium/trunk/cros-search-service-Include-cmath-for-std-pow.patch)
  chromium/repos/extra-x86_64/fix-building-with-system-zlib.patch
(from rev 379026, chromium/trunk/fix-building-with-system-zlib.patch)
  chromium/repos/extra-x86_64/fix-building-with-unbundled-libxml.patch
(from rev 379026, chromium/trunk/fix-building-with-unbundled-libxml.patch)
  
chromium/repos/extra-x86_64/fix-shim-header-generation-when-unbundling-ICU.patch
(from rev 379026, 
chromium/trunk/fix-shim-header-generation-when-unbundling-ICU.patch)
  chromium/repos/extra-x86_64/move-RemoteTreeNode-declaration.patch
(from rev 379026, chromium/trunk/move-RemoteTreeNode-declaration.patch)
  
chromium/repos/extra-x86_64/rebuild-Linux-frame-button-cache-when-activation.patch
(from rev 379026, 
chromium/trunk/rebuild-Linux-frame-button-cache-when-activation.patch)
  
chromium/repos/extra-x86_64/remove-verbose-logging-in-local-unique-font-matching.patch
(from rev 379026, 
chromium/trunk/remove-verbose-logging-in-local-unique-font-matching.patch)
  
chromium/repos/extra-x86_64/rename-Relayout-in-DesktopWindowTreeHostPlatform.patch
(from rev 379026, 
chromium/trunk/rename-Relayout-in-DesktopWindowTreeHostPlatform.patch)
  chromium/repos/extra-x86_64/sync-enable-USSPasswords-by-default.patch
(from rev 379026, chromium/trunk/sync-enable-USSPasswords-by-default.patch)
Deleted:
  chromium/repos/extra-x86_64/PKGBUILD
  chromium/repos/extra-x86_64/chromium-skia-harmony.patch
  chromium/repos/extra-x86_64/chromium-widevine.patch
  chromium/repos/extra-x86_64/chromium.install
  
chromium/repos/extra-x86_64/cros-search-service-Include-cmath-for-std-pow.patch
  chromium/repos/extra-x86_64/fix-building-with-system-zlib.patch
  chromium/repos/extra-x86_64/fix-building-with-unbundled-libxml.patch
  
chromium/repos/extra-x86_64/fix-shim-header-generation-when-unbundling-ICU.patch
  chromium/repos/extra-x86_64/move-RemoteTreeNode-declaration.patch
  
chromium/repos/extra-x86_64/rebuild-Linux-frame-button-cache-when-activation.patch
  
chromium/repos/extra-x86_64/remove-verbose-logging-in-local-unique-font-matching.patch
  
chromium/repos/extra-x86_64/rename-Relayout-in-DesktopWindowTreeHostPlatform.patch
  chromium/repos/extra-x86_64/sync-enable-USSPasswords-by-default.patch

+
 PKGBUILD   |  518 +--
 chromium-skia-harmony.patch|   28 
 chromium-widevine.patch|   26 
 chromium.install   |   32 
 cros-search-service-Include-cmath-for-std-pow.patch|   70 -
 fix-building-with-system-zlib.patch|   64 -
 fix-building-with-unbundled-libxml.patch   |  254 ++---
 fix-shim-header-generation-when-unbundling-ICU.patch   |  100 +-
 move-RemoteTreeNode-declaration.patch  |  474 +-
 rebuild-Linux-frame-button-cache-when-activation.patch |  124 +-
 remove-verbose-logging-in-local-unique-font-matching.patch |   66 -
 rename-Relayout-in-DesktopWindowTreeHostPlatform.patch |  128 +-
 sync-enable-USSPasswords-by-default.patch  |   56 -
 13 files changed, 970 insertions(+), 970 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-01 05:01:34 UTC (rev 379026)
+++ PKGBUILD2020-04-01 05:01:46 UTC (rev 379027)
@@ -1,259 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: Pierre Schmitz 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Daniel J Griffiths 
-
-pkgname=chromium
-pkgver=80.0.3987.149
-pkgrel=1
-_launcher_ver=6
-pkgdesc="A web browser built for speed, simplicity, and security"
-arch=('x86_64')
-url="https://www.chromium.org/Home";
-license=('BSD')
-depends=('gtk3' 'nss' 'alsa-lib' 'xdg-utils' 'libxss' 'libcups' 'libgcrypt'
- 'ttf-liberation' 'systemd' 'dbus' 'libpulse' 'pciutils' 'json-glib'
- 'desktop-file-utils' 'hicolor-icon-theme')
-makedepends=('python' 'python2' 'gperf' 'yasm' 'mesa' 'ninja' 'nodejs' 'git'
- 'libpipewire02' 'clang' 'lld' 'gn' 'java-runtime-headless')
-optdepends=('pepper-flash: support for Flash content'
-'libpipewire02: 

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

2020-03-31 Thread Evangelos Foutras via arch-commits
Date: Wednesday, April 1, 2020 @ 05:01:34
  Author: foutrelis
Revision: 379026

upgpkg: chromium 80.0.3987.162-1: new upstream release

Modified:
  chromium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-01 04:19:16 UTC (rev 379025)
+++ PKGBUILD2020-04-01 05:01:34 UTC (rev 379026)
@@ -4,7 +4,7 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=chromium
-pkgver=80.0.3987.149
+pkgver=80.0.3987.162
 pkgrel=1
 _launcher_ver=6
 pkgdesc="A web browser built for speed, simplicity, and security"
@@ -35,7 +35,7 @@
 rebuild-Linux-frame-button-cache-when-activation.patch
 chromium-widevine.patch
 chromium-skia-harmony.patch)
-sha256sums=('50bedde7932921e375b521ceab8989be134a8d937751847e9d9287f7e0a02c1e'
+sha256sums=('ac5577162cf10badd2a9c44f97f15c31ebb98bf64b3ff2e98876e55bbbc20e20'
 '04917e3cd4307d8e31bfb0027a5dce6d086edb10ff8a716024fbb8bb0c7dccf1'
 '0a8d1af2a3734b5f99ea8462940e332db4acee7130fe436ad3e4b7ad133e5ae5'
 '21f631851cdcb347f40793485b168cb5d0da65ae26ae39ba58d624c66197d0a5'


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

2020-03-31 Thread Daniel M. Capella via arch-commits
Date: Wednesday, April 1, 2020 @ 04:50:12
  Author: polyzen
Revision: 608611

archrelease: copy trunk to community-any

Added:
  termdown/repos/community-any/PKGBUILD
(from rev 608610, termdown/trunk/PKGBUILD)
Deleted:
  termdown/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-01 04:49:49 UTC (rev 608610)
+++ PKGBUILD2020-04-01 04:50:12 UTC (rev 608611)
@@ -1,25 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-pkgname=termdown
-pkgver=1.16.0
-pkgrel=2
-pkgdesc='Countdown timer and stopwatch in your terminal'
-arch=('any')
-url=https://github.com/trehn/termdown
-license=('GPL3')
-depends=('python-click' 'python-dateutil' 'python-pyfiglet' 
'python-setuptools')
-optdepends=('espeak: for spoken countdown')
-source=("https://files.pythonhosted.org/packages/source/t/termdown/termdown-$pkgver.tar.gz";)
-sha512sums=('a7984062f768d51bc3dee3f7cc11ef8b06368b96a151ad764a45b28b9b96e0ed204a21cb8b8d04c7ab2a234ce6b840ebfb919ac19a2e60ab31ac74f8586fcc59')
-
-build() {
-  cd termdown-$pkgver
-  python setup.py build
-}
-
-package() {
-  cd termdown-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-# vim:set ts=2 sw=2 et:

Copied: termdown/repos/community-any/PKGBUILD (from rev 608610, 
termdown/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-01 04:50:12 UTC (rev 608611)
@@ -0,0 +1,26 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=termdown
+pkgver=1.16.0
+pkgrel=3
+pkgdesc='Countdown timer and stopwatch in your terminal'
+arch=('any')
+url=https://github.com/trehn/termdown
+license=('GPL3')
+depends=('python-click' 'python-dateutil' 'python-pyfiglet' 
'python-setuptools')
+optdepends=('espeak: for spoken countdown'
+'espeak-ng-espeak: for spoken countdown')
+source=("https://files.pythonhosted.org/packages/source/t/termdown/termdown-$pkgver.tar.gz";)
+sha512sums=('a7984062f768d51bc3dee3f7cc11ef8b06368b96a151ad764a45b28b9b96e0ed204a21cb8b8d04c7ab2a234ce6b840ebfb919ac19a2e60ab31ac74f8586fcc59')
+
+build() {
+  cd termdown-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd termdown-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-03-31 Thread Daniel M. Capella via arch-commits
Date: Wednesday, April 1, 2020 @ 04:49:49
  Author: polyzen
Revision: 608610

upgpkg: termdown 1.16.0-3 espeak-ng-espeak optdep

Modified:
  termdown/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-01 00:54:14 UTC (rev 608609)
+++ PKGBUILD2020-04-01 04:49:49 UTC (rev 608610)
@@ -2,13 +2,14 @@
 
 pkgname=termdown
 pkgver=1.16.0
-pkgrel=2
+pkgrel=3
 pkgdesc='Countdown timer and stopwatch in your terminal'
 arch=('any')
 url=https://github.com/trehn/termdown
 license=('GPL3')
 depends=('python-click' 'python-dateutil' 'python-pyfiglet' 
'python-setuptools')
-optdepends=('espeak: for spoken countdown')
+optdepends=('espeak: for spoken countdown'
+'espeak-ng-espeak: for spoken countdown')
 
source=("https://files.pythonhosted.org/packages/source/t/termdown/termdown-$pkgver.tar.gz";)
 
sha512sums=('a7984062f768d51bc3dee3f7cc11ef8b06368b96a151ad764a45b28b9b96e0ed204a21cb8b8d04c7ab2a234ce6b840ebfb919ac19a2e60ab31ac74f8586fcc59')
 


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

2020-03-31 Thread Evangelos Foutras via arch-commits
Date: Wednesday, April 1, 2020 @ 04:19:16
  Author: foutrelis
Revision: 379025

archrelease: copy trunk to extra-x86_64

Added:
  re2/repos/extra-x86_64/PKGBUILD
(from rev 379024, re2/trunk/PKGBUILD)
Deleted:
  re2/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-01 04:19:11 UTC (rev 379024)
+++ PKGBUILD2020-04-01 04:19:16 UTC (rev 379025)
@@ -1,33 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: Anatol Pomozov 
-# Contributor: Gustavo Alvarez 
-# Contributor: Alexandre Bique 
-
-pkgname=re2
-_re2ver=2020-03-03
-pkgver=${_re2ver//-}
-pkgrel=1
-epoch=1
-pkgdesc="Fast, safe, thread-friendly regular expression engine"
-arch=('x86_64')
-url="https://github.com/google/re2";
-license=('BSD')
-depends=('gcc-libs')
-source=(re2-$pkgver.tar.gz::https://github.com/google/re2/archive/$_re2ver.tar.gz)
-sha256sums=('04ee2aaebaa5038554683329afc494e684c30f82f2a1e47eb62450e59338f84d')
-
-build() {
-  cd $pkgname-$_re2ver
-  make
-}
-
-check() {
-  cd $pkgname-$_re2ver
-  make test
-}
-
-package() {
-  cd $pkgname-$_re2ver
-  make prefix=/usr DESTDIR="$pkgdir" install
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: re2/repos/extra-x86_64/PKGBUILD (from rev 379024, re2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-01 04:19:16 UTC (rev 379025)
@@ -0,0 +1,33 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Anatol Pomozov 
+# Contributor: Gustavo Alvarez 
+# Contributor: Alexandre Bique 
+
+pkgname=re2
+_re2ver=2020-04-01
+pkgver=${_re2ver//-}
+pkgrel=1
+epoch=1
+pkgdesc="Fast, safe, thread-friendly regular expression engine"
+arch=('x86_64')
+url="https://github.com/google/re2";
+license=('BSD')
+depends=('gcc-libs')
+source=(re2-$pkgver.tar.gz::https://github.com/google/re2/archive/$_re2ver.tar.gz)
+sha256sums=('98794bc5416326817498384a9c43cbb5a406bab8da9f84f83c39ecad43ed5cea')
+
+build() {
+  cd $pkgname-$_re2ver
+  make
+}
+
+check() {
+  cd $pkgname-$_re2ver
+  make test
+}
+
+package() {
+  cd $pkgname-$_re2ver
+  make prefix=/usr DESTDIR="$pkgdir" install
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2020-03-31 Thread Evangelos Foutras via arch-commits
Date: Wednesday, April 1, 2020 @ 04:19:11
  Author: foutrelis
Revision: 379024

upgpkg: re2 1:20200401-1: new upstream release

Modified:
  re2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-01 03:33:18 UTC (rev 379023)
+++ PKGBUILD2020-04-01 04:19:11 UTC (rev 379024)
@@ -4,7 +4,7 @@
 # Contributor: Alexandre Bique 
 
 pkgname=re2
-_re2ver=2020-03-03
+_re2ver=2020-04-01
 pkgver=${_re2ver//-}
 pkgrel=1
 epoch=1
@@ -14,7 +14,7 @@
 license=('BSD')
 depends=('gcc-libs')
 
source=(re2-$pkgver.tar.gz::https://github.com/google/re2/archive/$_re2ver.tar.gz)
-sha256sums=('04ee2aaebaa5038554683329afc494e684c30f82f2a1e47eb62450e59338f84d')
+sha256sums=('98794bc5416326817498384a9c43cbb5a406bab8da9f84f83c39ecad43ed5cea')
 
 build() {
   cd $pkgname-$_re2ver


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

2020-03-31 Thread Sergej Pupykin via arch-commits
Date: Wednesday, April 1, 2020 @ 00:53:50
  Author: spupykin
Revision: 608608

upgpkg: glusterfs 1:7.4-1

Modified:
  glusterfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-01 00:06:31 UTC (rev 608607)
+++ PKGBUILD2020-04-01 00:53:50 UTC (rev 608608)
@@ -5,7 +5,7 @@
 
 pkgname=glusterfs
 epoch=1
-pkgver=7.3
+pkgver=7.4
 pkgrel=1
 pkgdesc='a cluster file-system capable of scaling to several peta-bytes.'
 arch=(x86_64)
@@ -26,7 +26,7 @@
 
#source=($pkgname-$pkgver.tar.gz::https://github.com/gluster/glusterfs/archive/v$pkgver.tar.gz)
 
source=(https://download.gluster.org/pub/gluster/glusterfs/LATEST/glusterfs-$pkgver.tar.gz
 glusterfs.sysusers)
-sha256sums=('2401cc7c3f5488f6fc5ea09ce2ab30c918612f592571fb3de6124f8482ad4954'
+sha256sums=('8b3b11a733edfb5a5045388add8311efa950d59f37f5771bf01b7dd8b4885973'
 'a470d07aedb2674adfb295b4775e490b48816b87974946da4dcf62aa0d72108a')
 
 prepare() {


[arch-commits] Commit in glusterfs/repos/community-x86_64 (6 files)

2020-03-31 Thread Sergej Pupykin via arch-commits
Date: Wednesday, April 1, 2020 @ 00:54:14
  Author: spupykin
Revision: 608609

archrelease: copy trunk to community-x86_64

Added:
  glusterfs/repos/community-x86_64/PKGBUILD
(from rev 608608, glusterfs/trunk/PKGBUILD)
  glusterfs/repos/community-x86_64/glusterfs.install
(from rev 608608, glusterfs/trunk/glusterfs.install)
  glusterfs/repos/community-x86_64/glusterfs.sysusers
(from rev 608608, glusterfs/trunk/glusterfs.sysusers)
Deleted:
  glusterfs/repos/community-x86_64/PKGBUILD
  glusterfs/repos/community-x86_64/glusterfs.install
  glusterfs/repos/community-x86_64/glusterfs.sysusers

+
 PKGBUILD   |  146 +--
 glusterfs.install  |6 +-
 glusterfs.sysusers |2 
 3 files changed, 77 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-01 00:53:50 UTC (rev 608608)
+++ PKGBUILD2020-04-01 00:54:14 UTC (rev 608609)
@@ -1,73 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributors:
-#   Andrei Antoukh - n...@niwi.be - https://www.niwi.be
-#   henning mueller 
-
-pkgname=glusterfs
-epoch=1
-pkgver=7.3
-pkgrel=1
-pkgdesc='a cluster file-system capable of scaling to several peta-bytes.'
-arch=(x86_64)
-url='https://www.gluster.org/'
-license=(GPL2 LGPL3)
-install=glusterfs.install
-backup=('etc/glusterfs/glusterd.vol'
-'etc/glusterfs/eventsconfig.json'
-'etc/glusterfs/gluster-rsyslog-5.8.conf'
-'etc/glusterfs/gluster-rsyslog-7.2.conf'
-'etc/glusterfs/glusterd.vol'
-'etc/glusterfs/glusterfs-georep-logrotate'
-'etc/glusterfs/glusterfs-logrotate')
-depends=(fuse python libxml2 libaio liburcu attr rpcbind)
-makedepends=(rpcsvc-proto)
-optdepends=('glib2: qemu-block'
-   'python-prettytable: gluster-georep-sshkey')
-#source=($pkgname-$pkgver.tar.gz::https://github.com/gluster/glusterfs/archive/v$pkgver.tar.gz)
-source=(https://download.gluster.org/pub/gluster/glusterfs/LATEST/glusterfs-$pkgver.tar.gz
-glusterfs.sysusers)
-sha256sums=('2401cc7c3f5488f6fc5ea09ce2ab30c918612f592571fb3de6124f8482ad4954'
-'a470d07aedb2674adfb295b4775e490b48816b87974946da4dcf62aa0d72108a')
-
-prepare() {
-  cd "$srcdir"/$pkgname-$pkgver
-  autoreconf -fi
-}
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---with-mountutildir=/usr/bin \
---sysconfdir=/etc \
---localstatedir=/var \
---mandir=/usr/share/man \
---libexecdir=/usr/lib/$pkgname \
---with-systemddir=/usr/lib/systemd/system \
---with-tmpfilesdir=/usr/lib/tmpfiles.d \
---enable-gnfs \
-LEXLIB=
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  make -j1 DESTDIR="$pkgdir" install
-
-  # https://bugzilla.redhat.com/show_bug.cgi?id=1598900
-  install -Dm644 "$srcdir"/glusterfs.sysusers \
-"$pkgdir"/usr/lib/sysusers.d/glusterfs.conf
-
-  install -D -m 644 \
-"$srcdir"/$pkgname-$pkgver/{README.md,INSTALL,COPYING*} \
-"$pkgdir"/usr/share/doc/glusterfs/
-
-  cp -rf \
-"$srcdir"/$pkgname-$pkgver/doc/* \
-"$pkgdir"/usr/share/doc/glusterfs/
-  rm -rf "$pkgdir"/var/run
-}
-
-# vim:set ts=2 sw=2 et:

Copied: glusterfs/repos/community-x86_64/PKGBUILD (from rev 608608, 
glusterfs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-01 00:54:14 UTC (rev 608609)
@@ -0,0 +1,73 @@
+# Maintainer: Sergej Pupykin 
+# Contributors:
+#   Andrei Antoukh - n...@niwi.be - https://www.niwi.be
+#   henning mueller 
+
+pkgname=glusterfs
+epoch=1
+pkgver=7.4
+pkgrel=1
+pkgdesc='a cluster file-system capable of scaling to several peta-bytes.'
+arch=(x86_64)
+url='https://www.gluster.org/'
+license=(GPL2 LGPL3)
+install=glusterfs.install
+backup=('etc/glusterfs/glusterd.vol'
+'etc/glusterfs/eventsconfig.json'
+'etc/glusterfs/gluster-rsyslog-5.8.conf'
+'etc/glusterfs/gluster-rsyslog-7.2.conf'
+'etc/glusterfs/glusterd.vol'
+'etc/glusterfs/glusterfs-georep-logrotate'
+'etc/glusterfs/glusterfs-logrotate')
+depends=(fuse python libxml2 libaio liburcu attr rpcbind)
+makedepends=(rpcsvc-proto)
+optdepends=('glib2: qemu-block'
+   'python-prettytable: gluster-georep-sshkey')
+#source=($pkgname-$pkgver.tar.gz::https://github.com/gluster/glusterfs/archive/v$pkgver.tar.gz)
+source=(https://download.gluster.org/pub/gluster/glusterfs/LATEST/glusterfs-$pkgver.tar.gz
+glusterfs.sysusers)
+sha256sums=('8b3b11a733edfb5a5045388add8311efa950d59f37f5771bf01b7dd8b4885973'
+'a470d07aedb2674adfb295b4775e490b48816b87974946da4dcf62aa0d72108a')
+
+prepare() {
+  cd "$srcdir"/$pkgname-$pkgver
+  autoreconf -fi
+}
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--with-mountutildir=/usr/bin \
+--sysconfdir=/etc 

[arch-commits] Commit in linux-zen/repos/staging-x86_64 (4 files)

2020-03-31 Thread Jan Steffens via arch-commits
Date: Wednesday, April 1, 2020 @ 00:23:45
  Author: heftig
Revision: 379022

archrelease: copy trunk to staging-x86_64

Added:
  linux-zen/repos/staging-x86_64/PKGBUILD
(from rev 379021, linux-zen/trunk/PKGBUILD)
  linux-zen/repos/staging-x86_64/config
(from rev 379021, linux-zen/trunk/config)
Deleted:
  linux-zen/repos/staging-x86_64/PKGBUILD
  linux-zen/repos/staging-x86_64/config

--+
 PKGBUILD |  386 -
 config   |21586 ++---
 2 files changed, 10986 insertions(+), 10986 deletions(-)

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


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

2020-03-31 Thread Jan Steffens via arch-commits
Date: Wednesday, April 1, 2020 @ 00:23:16
  Author: heftig
Revision: 379021

5.6.zen2-1

Modified:
  linux-zen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:29:34 UTC (rev 379020)
+++ PKGBUILD2020-04-01 00:23:16 UTC (rev 379021)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=linux-zen
-pkgver=5.6.zen1
+pkgver=5.6.zen2
 pkgrel=1
 pkgdesc='Linux ZEN'
 _srctag=v${pkgver%.*}-${pkgver##*.}


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:58:34
  Author: felixonmars
Revision: 608594

upgpkg: haskell-equivalence 0.3.5-20: rebuild with QuickCheck 2.14

Modified:
  haskell-equivalence/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:57:59 UTC (rev 608593)
+++ PKGBUILD2020-03-31 23:58:34 UTC (rev 608594)
@@ -4,7 +4,7 @@
 _hkgname=equivalence
 pkgname=haskell-equivalence
 pkgver=0.3.5
-pkgrel=19
+pkgrel=20
 pkgdesc="Maintaining an equivalence relation implemented as union-find using 
STT."
 url="https://bitbucket.org/paba/equivalence/";
 license=("BSD")


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Wednesday, April 1, 2020 @ 00:06:31
  Author: felixonmars
Revision: 608607

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-doctest/repos/community-staging-x86_64/PKGBUILD (from rev 
608606, haskell-doctest/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-04-01 00:06:31 UTC (rev 608607)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=doctest
+pkgname=haskell-doctest
+pkgver=0.16.3
+pkgrel=2
+pkgdesc="Test interactive Haskell examples"
+url="https://github.com/sol/doctest";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-compat' 'haskell-ghc' 'haskell-syb' 
'haskell-code-page'
+ 'haskell-ghc-paths')
+makedepends=('ghc' 'haskell-hunit' 'haskell-hspec' 'haskell-hspec-core' 
'haskell-quickcheck'
+ 'haskell-stringbuilder' 'haskell-silently' 'haskell-setenv' 
'haskell-mockery')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('c5fa7c5c49bdc1bda86a259177538fa573627772dcfa18dcb19a5c905eceeb4a086705bf40ea6f330df5273584068ba154ed664a124f8ec704c9926b86564ba1')
+
+prepare() {
+# Add -dynamic flag
+sed -i 's/\+\+ packageDBArgs/++ packageDBArgs ++ ["-dynamic"]/' 
$_hkgname-$pkgver/src/Extract.hs
+sed -i 's/\+\+ expandedArgs)/++ expandedArgs ++ ["-dynamic"])/' 
$_hkgname-$pkgver/src/Run.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Wednesday, April 1, 2020 @ 00:04:58
  Author: felixonmars
Revision: 608605

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-stringbuilder/repos/community-staging-x86_64/PKGBUILD (from rev 
608604, haskell-stringbuilder/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-04-01 00:04:58 UTC (rev 608605)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=stringbuilder
+pkgname=haskell-stringbuilder
+pkgver=0.5.1
+pkgrel=77
+pkgdesc="A writer monad for multi-line string literals"
+url="https://github.com/sol/stringbuilder";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+checkdepends=('haskell-hspec' 'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('09cbf01dce82b325393c0d6f0264792695d528a184052f5e1d5dbd3fc181fd11c280e77ba445f1e44c6a8dabc0b267aa90f4a9f1fc34135f1b741d2a5dca9369')
+
+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 haskell-storable-complex/repos (2 files)

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:59:16
  Author: felixonmars
Revision: 608597

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-storable-complex/repos/community-staging-x86_64/
  haskell-storable-complex/repos/community-staging-x86_64/PKGBUILD
(from rev 608596, haskell-storable-complex/trunk/PKGBUILD)

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

Copied: haskell-storable-complex/repos/community-staging-x86_64/PKGBUILD (from 
rev 608596, haskell-storable-complex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:59:16 UTC (rev 608597)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=storable-complex
+pkgname=haskell-storable-complex
+pkgver=0.2.3.0
+pkgrel=44
+pkgdesc="Storable instance for Complex"
+url="https://github.com/cartazio/storable-complex";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-orphans')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('26e2dec12e84bdd1ce1eeb6662577179e203e2af12e8f04f5c2fd323a5474645232cf06744af9ed3252d8d36320b88c63023b1ff12bbfb9a95a48ed70d352c77')
+
+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-stmonadtrans/trunk (PKGBUILD)

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:57:52
  Author: felixonmars
Revision: 608592

upgpkg: haskell-stmonadtrans 0.4.4-25: rebuild with QuickCheck 2.14

Modified:
  haskell-stmonadtrans/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:57:20 UTC (rev 608591)
+++ PKGBUILD2020-03-31 23:57:52 UTC (rev 608592)
@@ -4,7 +4,7 @@
 _hkgname=STMonadTrans
 pkgname=haskell-stmonadtrans
 pkgver=0.4.4
-pkgrel=24
+pkgrel=25
 pkgdesc="A monad transformer version of the ST monad"
 url="https://hackage.haskell.org/package/${_hkgname}";
 license=("BSD")


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:56:45
  Author: felixonmars
Revision: 608589

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-mime-mail/repos/community-staging-x86_64/
  haskell-mime-mail/repos/community-staging-x86_64/PKGBUILD
(from rev 608588, haskell-mime-mail/trunk/PKGBUILD)

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

Copied: haskell-mime-mail/repos/community-staging-x86_64/PKGBUILD (from rev 
608588, haskell-mime-mail/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:56:45 UTC (rev 608589)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=mime-mail
+pkgname=haskell-mime-mail
+pkgver=0.5.0
+pkgrel=28
+pkgdesc="Compose MIME email messages."
+url="https://github.com/snoyberg/mime-mail";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-base64-bytestring" "haskell-blaze-builder"
+ "haskell-random")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('b4f18be040d447436c8d180f596f565a0e9ae6f7f771512047b851b32e42dd1410522de755e0b3d5ee6c6db15c076dce0bd9312b43ca71f531c43249b4a6d020')
+
+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-stringbuilder/trunk (PKGBUILD)

2020-03-31 Thread Felix Yan via arch-commits
Date: Wednesday, April 1, 2020 @ 00:04:42
  Author: felixonmars
Revision: 608604

upgpkg: haskell-stringbuilder 0.5.1-77: rebuild with QuickCheck 2.14

Modified:
  haskell-stringbuilder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-01 00:03:27 UTC (rev 608603)
+++ PKGBUILD2020-04-01 00:04:42 UTC (rev 608604)
@@ -4,7 +4,7 @@
 _hkgname=stringbuilder
 pkgname=haskell-stringbuilder
 pkgver=0.5.1
-pkgrel=76
+pkgrel=77
 pkgdesc="A writer monad for multi-line string literals"
 url="https://github.com/sol/stringbuilder";
 license=("MIT")


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Wednesday, April 1, 2020 @ 00:02:03
  Author: felixonmars
Revision: 608601

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-storablevector/repos/community-staging-x86_64/PKGBUILD (from 
rev 608600, haskell-storablevector/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-04-01 00:02:03 UTC (rev 608601)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=storablevector
+pkgname=haskell-storablevector
+pkgver=0.2.13
+pkgrel=40
+pkgdesc="Fast, packed, strict storable arrays with a list interface like 
ByteString"
+url="https://www.haskell.org/haskellwiki/Storable_Vector";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-non-negative' 'haskell-utility-ht' 
'haskell-unsafe'
+ 'haskell-quickcheck' 'haskell-syb')
+makedepends=('ghc' 'haskell-random')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('d2394fea10a8bb4bcd041f21bfc3580307a0c58f25e2b2b9adf7d2468bd1e632b4659c6da504c8dad062dfde472d1c2ccdd41731fb8b664e2bf7e0f3de55343c')
+
+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 \
+-fsplitbase -fseparatesyb
+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-doctest/trunk (PKGBUILD)

2020-03-31 Thread Felix Yan via arch-commits
Date: Wednesday, April 1, 2020 @ 00:06:22
  Author: felixonmars
Revision: 608606

upgpkg: haskell-doctest 0.16.3-2: rebuild with QuickCheck 2.14

Modified:
  haskell-doctest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-01 00:04:58 UTC (rev 608605)
+++ PKGBUILD2020-04-01 00:06:22 UTC (rev 608606)
@@ -4,7 +4,7 @@
 _hkgname=doctest
 pkgname=haskell-doctest
 pkgver=0.16.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Test interactive Haskell examples"
 url="https://github.com/sol/doctest";
 license=("MIT")


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Wednesday, April 1, 2020 @ 00:03:10
  Author: felixonmars
Revision: 608602

upgpkg: haskell-string-qq 0.0.4-13: rebuild with QuickCheck 2.14

Modified:
  haskell-string-qq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-01 00:02:03 UTC (rev 608601)
+++ PKGBUILD2020-04-01 00:03:10 UTC (rev 608602)
@@ -4,7 +4,7 @@
 _hkgname=string-qq
 pkgname=haskell-string-qq
 pkgver=0.0.4
-pkgrel=12
+pkgrel=13
 pkgdesc="QuasiQuoter for non-interpolated strings, texts and bytestrings."
 url="https://hackage.haskell.org/package/string-qq";
 license=("custom:PublicDomain")


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Wednesday, April 1, 2020 @ 00:00:40
  Author: felixonmars
Revision: 608600

upgpkg: haskell-storablevector 0.2.13-40: rebuild with QuickCheck 2.14

Modified:
  haskell-storablevector/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:59:48 UTC (rev 608599)
+++ PKGBUILD2020-04-01 00:00:40 UTC (rev 608600)
@@ -4,7 +4,7 @@
 _hkgname=storablevector
 pkgname=haskell-storablevector
 pkgver=0.2.13
-pkgrel=39
+pkgrel=40
 pkgdesc="Fast, packed, strict storable arrays with a list interface like 
ByteString"
 url="https://www.haskell.org/haskellwiki/Storable_Vector";
 license=("BSD")


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:57:59
  Author: felixonmars
Revision: 608593

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-stmonadtrans/repos/community-staging-x86_64/PKGBUILD (from rev 
608592, haskell-stmonadtrans/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:57:59 UTC (rev 608593)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=STMonadTrans
+pkgname=haskell-stmonadtrans
+pkgver=0.4.4
+pkgrel=25
+pkgdesc="A monad transformer version of the ST monad"
+url="https://hackage.haskell.org/package/${_hkgname}";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-tasty' 'haskell-tasty-hunit' 
'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('3ab7ff50223f975066cde1227fb23e00263786fa8c5b9d0276fdcc265bb1ac2e5cea97f3fb7fd51aaf25872b126645312c4c622084947dea430d214eac44938b')
+
+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 \
+-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-special-values/repos (2 files)

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:54:17
  Author: felixonmars
Revision: 608581

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-special-values/repos/community-staging-x86_64/
  haskell-special-values/repos/community-staging-x86_64/PKGBUILD
(from rev 608580, haskell-special-values/trunk/PKGBUILD)

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

Copied: haskell-special-values/repos/community-staging-x86_64/PKGBUILD (from 
rev 608580, haskell-special-values/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:54:17 UTC (rev 608581)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+_hkgname=special-values
+pkgname=haskell-special-values
+pkgver=0.1.0.0
+pkgrel=3
+pkgdesc="Typeclass providing special values"
+url="https://github.com/minad/special-values";
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ieee754' 'haskell-scientific')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('e45d4f04b3c50261077d084f9525677739543cad624870c4a28c5c6630a355d7c5def400031191d6f69e617856ffeb0ecc562a7d04df3bed827a7c93f0cf63cc')
+
+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-boxes/repos (2 files)

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:56:08
  Author: felixonmars
Revision: 608587

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-boxes/repos/community-staging-x86_64/PKGBUILD (from rev 608586, 
haskell-boxes/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:56:08 UTC (rev 608587)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=boxes
+pkgname=haskell-boxes
+pkgver=0.1.5
+pkgrel=39
+pkgdesc="2D text pretty-printing library"
+url="https://hackage.haskell.org/package/${_hkgname}";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-split")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('44527be9a8351aef9e6a98bc90276c0137892e2672ca5ae15968ac21cfc1f0ce92d2c734c26b5493b2f8597ab1a65cb9cf5d050b6b02b0a61d6b6df4143ba4d7')
+
+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-storable-complex/trunk (PKGBUILD)

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:59:08
  Author: felixonmars
Revision: 608596

upgpkg: haskell-storable-complex 0.2.3.0-44: rebuild with QuickCheck 2.14

Modified:
  haskell-storable-complex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:58:43 UTC (rev 608595)
+++ PKGBUILD2020-03-31 23:59:08 UTC (rev 608596)
@@ -4,7 +4,7 @@
 _hkgname=storable-complex
 pkgname=haskell-storable-complex
 pkgver=0.2.3.0
-pkgrel=43
+pkgrel=44
 pkgdesc="Storable instance for Complex"
 url="https://github.com/cartazio/storable-complex";
 license=("BSD")


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:50:39
  Author: felixonmars
Revision: 608569

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hspec-megaparsec/repos/community-staging-x86_64/PKGBUILD (from 
rev 608568, haskell-hspec-megaparsec/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:50:39 UTC (rev 608569)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hspec-megaparsec
+pkgname=haskell-hspec-megaparsec
+pkgver=2.1.0
+pkgrel=3
+pkgdesc="Utility functions for testing Megaparsec parsers with Hspec"
+url="https://github.com/goldfirere/hspec-megaparsec";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hspec-expectations' 'haskell-megaparsec')
+makedepends=('ghc' 'haskell-hspec')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('99eca53ad39e761f077b751770f0e8d2edca55b723f60458cc2baefe3d73d74238494ba04b684eb38186cd2da29058697e37dd2c1581fd110428178bb19d8ba2')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE.md 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.md
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE.md
+}


[arch-commits] Commit in haskell-should-not-typecheck/trunk (PKGBUILD)

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:51:42
  Author: felixonmars
Revision: 608572

upgpkg: haskell-should-not-typecheck 2.1.0-65: rebuild with QuickCheck 2.14

Modified:
  haskell-should-not-typecheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:51:15 UTC (rev 608571)
+++ PKGBUILD2020-03-31 23:51:42 UTC (rev 608572)
@@ -3,7 +3,7 @@
 _hkgname=should-not-typecheck
 pkgname=haskell-should-not-typecheck
 pkgver=2.1.0
-pkgrel=64
+pkgrel=65
 pkgdesc="A HUnit/hspec assertion library to verify that an expression does not 
typecheck"
 url="https://github.com/CRogers/should-not-typecheck";
 license=('BSD')


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:55:35
  Author: felixonmars
Revision: 608585

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-base64-bytestring/repos/community-staging-x86_64/PKGBUILD (from 
rev 608584, haskell-base64-bytestring/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:55:35 UTC (rev 608585)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+# Contributor: Daniel Micay 
+# Contributor: Arch Haskell Team <>
+# Contributor: Lex Black 
+
+_hkgname=base64-bytestring
+pkgname=haskell-base64-bytestring
+pkgver=1.0.0.3
+pkgrel=13
+pkgdesc="Fast base64 encoding and decoding for ByteStrings"
+url="https://github.com/bos/base64-bytestring";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-hunit' 'haskell-quickcheck' 'haskell-split' 
'haskell-test-framework'
+ 'haskell-test-framework-quickcheck2' 
'haskell-test-framework-hunit')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('e4e244752491ac279a88afc4ceb0fe4c44b75fc369ff47ec29e3c6b4be967051034c94f0c659d47a153d6b9e0b65a75ea419fdfd52fd50cdc0da2dca7db6')
+
+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-openpgp-asciiarmor/repos (2 files)

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:57:20
  Author: felixonmars
Revision: 608591

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-openpgp-asciiarmor/repos/community-staging-x86_64/
  haskell-openpgp-asciiarmor/repos/community-staging-x86_64/PKGBUILD
(from rev 608590, haskell-openpgp-asciiarmor/trunk/PKGBUILD)

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

Copied: haskell-openpgp-asciiarmor/repos/community-staging-x86_64/PKGBUILD 
(from rev 608590, haskell-openpgp-asciiarmor/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:57:20 UTC (rev 608591)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+
+_hkgname=openpgp-asciiarmor
+pkgname=haskell-openpgp-asciiarmor
+pkgver=0.1.2
+pkgrel=29
+pkgdesc="OpenPGP (RFC4880) ASCII Armor codec"
+url="http://floss.scru.org/openpgp-asciiarmor";
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-base64-bytestring')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('8dc41995d2a8db54304c558efd7ab083f519be35908fc9d69c980ce943c5c1de89e0476bcc275d10ae1bdb1d4c1bc838f1aff5d5ed108c780d29ac7f786f2f05')
+
+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-string-qq/repos (2 files)

2020-03-31 Thread Felix Yan via arch-commits
Date: Wednesday, April 1, 2020 @ 00:03:27
  Author: felixonmars
Revision: 608603

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-string-qq/repos/community-staging-x86_64/
  haskell-string-qq/repos/community-staging-x86_64/PKGBUILD
(from rev 608602, haskell-string-qq/trunk/PKGBUILD)

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

Copied: haskell-string-qq/repos/community-staging-x86_64/PKGBUILD (from rev 
608602, haskell-string-qq/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-04-01 00:03:27 UTC (rev 608603)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=string-qq
+pkgname=haskell-string-qq
+pkgver=0.0.4
+pkgrel=13
+pkgdesc="QuasiQuoter for non-interpolated strings, texts and bytestrings."
+url="https://hackage.haskell.org/package/string-qq";
+license=("custom:PublicDomain")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-hunit')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('1e533afccc4e246da8fb0d76aaa63560c4b936490c002e466bcc0d08aabc0e66f393f935e0f5d93284fcd12a590e7fbe12e88175ac3599183f633eec04bf22b4')
+
+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-equivalence/repos (2 files)

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:58:43
  Author: felixonmars
Revision: 608595

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-equivalence/repos/community-staging-x86_64/PKGBUILD (from rev 
608594, haskell-equivalence/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:58:43 UTC (rev 608595)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=equivalence
+pkgname=haskell-equivalence
+pkgver=0.3.5
+pkgrel=20
+pkgdesc="Maintaining an equivalence relation implemented as union-find using 
STT."
+url="https://bitbucket.org/paba/equivalence/";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-stmonadtrans" "haskell-transformers-compat")
+makedepends=('ghc' 'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('f8a073c9ddc49a8c1d60a280b84f97947a23ed6a021b92d4028100ed308cf1dfcd0b26889a6cbbde0e77f00b777b2d1af0fa2410422641e0a03395692a9ebefc')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e 's/, fail//' -e '/fail/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:53:04
  Author: felixonmars
Revision: 608577

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hspec-smallcheck/repos/community-staging-x86_64/PKGBUILD (from 
rev 608576, haskell-hspec-smallcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:53:04 UTC (rev 608577)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hspec-smallcheck
+pkgname=haskell-hspec-smallcheck
+pkgver=0.5.2
+pkgrel=75
+pkgdesc="SmallCheck support for the Hspec testing framework"
+url="http://hspec.github.io/";
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-call-stack' 'haskell-hspec-core' 'haskell-hunit' 
'haskell-smallcheck')
+makedepends=('ghc' 'haskell-base-orphans' 'haskell-hspec' 'haskell-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('2fd27126285e7d308f277480dcadcb6b047f67a82389edaf7d4761504f88ffedd8831db5b6b4f178c429cf3e8009e8aee8c6b05040dd960e7d2813e50908bd05')
+
+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-storable-tuple/repos (2 files)

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:59:48
  Author: felixonmars
Revision: 608599

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-storable-tuple/repos/community-staging-x86_64/
  haskell-storable-tuple/repos/community-staging-x86_64/PKGBUILD
(from rev 608598, haskell-storable-tuple/trunk/PKGBUILD)

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

Copied: haskell-storable-tuple/repos/community-staging-x86_64/PKGBUILD (from 
rev 608598, haskell-storable-tuple/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:59:48 UTC (rev 608599)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=storable-tuple
+pkgname=haskell-storable-tuple
+pkgver=0.0.3.3
+pkgrel=71
+pkgdesc="Storable instance for pairs and triples"
+url="http://code.haskell.org/~thielema/storable-tuple/";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-storable-record' 'haskell-utility-ht' 
'haskell-base-orphans')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('046a809d8b6655259f3cb4de55b81d272007cf2d32f0eec3f464924f595f904030102c3fd4f3b193a01b48d2d54582a9206314a2e87cd17ecdc16a159fe73b4d')
+
+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 \
+-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
+}
+
+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-openpgp-asciiarmor/trunk (PKGBUILD)

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:57:13
  Author: felixonmars
Revision: 608590

upgpkg: haskell-openpgp-asciiarmor 0.1.2-29: rebuild with QuickCheck 2.14

Modified:
  haskell-openpgp-asciiarmor/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:56:45 UTC (rev 608589)
+++ PKGBUILD2020-03-31 23:57:13 UTC (rev 608590)
@@ -3,7 +3,7 @@
 _hkgname=openpgp-asciiarmor
 pkgname=haskell-openpgp-asciiarmor
 pkgver=0.1.2
-pkgrel=28
+pkgrel=29
 pkgdesc="OpenPGP (RFC4880) ASCII Armor codec"
 url="http://floss.scru.org/openpgp-asciiarmor";
 license=('MIT')


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:56:38
  Author: felixonmars
Revision: 608588

upgpkg: haskell-mime-mail 0.5.0-28: rebuild with QuickCheck 2.14

Modified:
  haskell-mime-mail/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:56:08 UTC (rev 608587)
+++ PKGBUILD2020-03-31 23:56:38 UTC (rev 608588)
@@ -4,7 +4,7 @@
 _hkgname=mime-mail
 pkgname=haskell-mime-mail
 pkgver=0.5.0
-pkgrel=27
+pkgrel=28
 pkgdesc="Compose MIME email messages."
 url="https://github.com/snoyberg/mime-mail";
 license=("MIT")


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:47:06
  Author: felixonmars
Revision: 608559

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-attoparsec-iso8601/repos/community-staging-x86_64/
  haskell-attoparsec-iso8601/repos/community-staging-x86_64/PKGBUILD
(from rev 608558, haskell-attoparsec-iso8601/trunk/PKGBUILD)

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

Copied: haskell-attoparsec-iso8601/repos/community-staging-x86_64/PKGBUILD 
(from rev 608558, haskell-attoparsec-iso8601/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:47:06 UTC (rev 608559)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=attoparsec-iso8601
+pkgname=haskell-attoparsec-iso8601
+pkgver=1.0.1.0
+pkgrel=56
+pkgdesc="Parsing of ISO 8601 dates, originally from aeson"
+url="https://github.com/bos/aeson";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-base-compat')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('a1d751d388446a7d2f628d7112b72beab338061bf2f8dc74c26549f0e93ebbb955bd9082db8a70db71cd80ceb576b22a94195c34f816eb6cecd5c584cb100e8b')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *0.11/<1/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-developer -f-fast
+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-boxes/trunk (PKGBUILD)

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:56:00
  Author: felixonmars
Revision: 608586

upgpkg: haskell-boxes 0.1.5-39: rebuild with QuickCheck 2.14

Modified:
  haskell-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:55:35 UTC (rev 608585)
+++ PKGBUILD2020-03-31 23:56:00 UTC (rev 608586)
@@ -4,7 +4,7 @@
 _hkgname=boxes
 pkgname=haskell-boxes
 pkgver=0.1.5
-pkgrel=38
+pkgrel=39
 pkgdesc="2D text pretty-printing library"
 url="https://hackage.haskell.org/package/${_hkgname}";
 license=("BSD")


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:47:41
  Author: felixonmars
Revision: 608561

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-css-text/repos/community-staging-x86_64/PKGBUILD (from rev 
608560, haskell-css-text/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:47:41 UTC (rev 608561)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=css-text
+pkgname=haskell-css-text
+pkgver=0.1.3.0
+pkgrel=80
+pkgdesc="CSS parser and renderer."
+url="https://www.yesodweb.com/";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-attoparsec")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('2f7b4fc758e3e6da7dadbaf48c9174770de8230ef4578d9fda610ca9b7a4ad497284623e382bf55111ddc852550275415f58311a2e726721f050d9f704050628')
+
+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-storable-tuple/trunk (PKGBUILD)

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:59:41
  Author: felixonmars
Revision: 608598

upgpkg: haskell-storable-tuple 0.0.3.3-71: rebuild with QuickCheck 2.14

Modified:
  haskell-storable-tuple/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:59:16 UTC (rev 608597)
+++ PKGBUILD2020-03-31 23:59:41 UTC (rev 608598)
@@ -4,7 +4,7 @@
 _hkgname=storable-tuple
 pkgname=haskell-storable-tuple
 pkgver=0.0.3.3
-pkgrel=70
+pkgrel=71
 pkgdesc="Storable instance for pairs and triples"
 url="http://code.haskell.org/~thielema/storable-tuple/";
 license=("BSD")


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:52:57
  Author: felixonmars
Revision: 608576

upgpkg: haskell-hspec-smallcheck 0.5.2-75: rebuild with QuickCheck 2.14

Modified:
  haskell-hspec-smallcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:52:27 UTC (rev 608575)
+++ PKGBUILD2020-03-31 23:52:57 UTC (rev 608576)
@@ -3,7 +3,7 @@
 _hkgname=hspec-smallcheck
 pkgname=haskell-hspec-smallcheck
 pkgver=0.5.2
-pkgrel=74
+pkgrel=75
 pkgdesc="SmallCheck support for the Hspec testing framework"
 url="http://hspec.github.io/";
 license=('MIT')


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:52:27
  Author: felixonmars
Revision: 608575

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-smallcheck/repos/community-staging-x86_64/PKGBUILD (from rev 
608574, haskell-smallcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:52:27 UTC (rev 608575)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+
+_hkgname=smallcheck
+pkgname=haskell-smallcheck
+pkgver=1.1.5
+pkgrel=17
+pkgdesc="A property-based testing library"
+url="https://github.com/feuerbach/smallcheck";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-logict')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('6d97f91308146031a16a405391ec2b283ad719c0acc2a0672c22cc880d91c3d72f845f65897e36945c45746d2d705a9f9f16b1ff5fef1f39c9abb60a4e57430c')
+
+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-split/trunk (PKGBUILD)

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:54:49
  Author: felixonmars
Revision: 608582

upgpkg: haskell-split 0.2.3.4-21: rebuild with QuickCheck 2.14

Modified:
  haskell-split/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:54:17 UTC (rev 608581)
+++ PKGBUILD2020-03-31 23:54:49 UTC (rev 608582)
@@ -4,7 +4,7 @@
 _hkgname=split
 pkgname=haskell-split
 pkgver=0.2.3.4
-pkgrel=20
+pkgrel=21
 pkgdesc="Combinator library for splitting lists."
 url="https://hackage.haskell.org/package/${_hkgname}";
 license=("BSD")


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:54:58
  Author: felixonmars
Revision: 608583

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-split/repos/community-staging-x86_64/PKGBUILD
(from rev 608582, haskell-split/trunk/PKGBUILD)
Deleted:
  haskell-split/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-31 23:54:49 UTC (rev 608582)
+++ PKGBUILD2020-03-31 23:54:58 UTC (rev 608583)
@@ -1,43 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-_hkgname=split
-pkgname=haskell-split
-pkgver=0.2.3.4
-pkgrel=20
-pkgdesc="Combinator library for splitting lists."
-url="https://hackage.haskell.org/package/${_hkgname}";
-license=("BSD")
-arch=('x86_64')
-depends=('ghc-libs')
-makedepends=('ghc' 'haskell-quickcheck')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
-sha512sums=('a60566106a5f285224b0d555d30b2af3315c707012f5c8e9384d4b8216894e6a6263e838b0e367418c4f8bfb5f4f2cc056ca14acb6b27a5ca3446576b057ca15')
-
-build() {
-cd $_hkgname-$pkgver
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
-runhaskell Setup build
-runhaskell Setup register --gen-script
-runhaskell Setup unregister --gen-script
-sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
-sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
-}
-
-check() {
-cd $_hkgname-$pkgver
-runhaskell Setup test
-}
-
-package() {
-cd $_hkgname-$pkgver
-
-install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
-install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
-runhaskell Setup copy --destdir="$pkgdir"
-install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
-}

Copied: haskell-split/repos/community-staging-x86_64/PKGBUILD (from rev 608582, 
haskell-split/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-31 23:54:58 UTC (rev 608583)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=split
+pkgname=haskell-split
+pkgver=0.2.3.4
+pkgrel=21
+pkgdesc="Combinator library for splitting lists."
+url="https://hackage.haskell.org/package/${_hkgname}";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('a60566106a5f285224b0d555d30b2af3315c707012f5c8e9384d4b8216894e6a6263e838b0e367418c4f8bfb5f4f2cc056ca14acb6b27a5ca3446576b057ca15')
+
+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-special-values/trunk (PKGBUILD)

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:54:08
  Author: felixonmars
Revision: 608580

upgpkg: haskell-special-values 0.1.0.0-3: rebuild with QuickCheck 2.14

Modified:
  haskell-special-values/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:53:42 UTC (rev 608579)
+++ PKGBUILD2020-03-31 23:54:08 UTC (rev 608580)
@@ -3,7 +3,7 @@
 _hkgname=special-values
 pkgname=haskell-special-values
 pkgver=0.1.0.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Typeclass providing special values"
 url="https://github.com/minad/special-values";
 license=('MIT')


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:55:27
  Author: felixonmars
Revision: 608584

upgpkg: haskell-base64-bytestring 1.0.0.3-13: rebuild with QuickCheck 2.14

Modified:
  haskell-base64-bytestring/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:54:58 UTC (rev 608583)
+++ PKGBUILD2020-03-31 23:55:27 UTC (rev 608584)
@@ -7,7 +7,7 @@
 _hkgname=base64-bytestring
 pkgname=haskell-base64-bytestring
 pkgver=1.0.0.3
-pkgrel=12
+pkgrel=13
 pkgdesc="Fast base64 encoding and decoding for ByteStrings"
 url="https://github.com/bos/base64-bytestring";
 license=('BSD')


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:51:15
  Author: felixonmars
Revision: 608571

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-shell-escape/repos/community-staging-x86_64/
  haskell-shell-escape/repos/community-staging-x86_64/PKGBUILD
(from rev 608570, haskell-shell-escape/trunk/PKGBUILD)

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

Copied: haskell-shell-escape/repos/community-staging-x86_64/PKGBUILD (from rev 
608570, haskell-shell-escape/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:51:15 UTC (rev 608571)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+_hkgname=shell-escape
+pkgname=haskell-shell-escape
+pkgver=0.2.0
+pkgrel=3
+pkgdesc="Shell escaping library"
+url="https://github.com/solidsnack/shell-escape";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-vector')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('b2e8ae93b13619cd6801b0fb85e4783c2472a57f5162fb397d2cf00468290b0ca6189ba6a54b54efa68b2977d25ec02cdcf8d9c49f0d21cd6d6f1a030dd05db4')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:53:42
  Author: felixonmars
Revision: 608579

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-spdx/repos/community-staging-x86_64/PKGBUILD (from rev 608578, 
haskell-spdx/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:53:42 UTC (rev 608579)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=spdx
+pkgname=haskell-spdx
+pkgver=1.0.0.2
+pkgrel=2
+pkgdesc="SPDX license expression language, Extras"
+url="https://github.com/phadej/spdx";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-base-compat' 'haskell-tasty' 
'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('2fb48d204a0c85269d4dbd6bd98efefb0691adc3eb654228b90b244c0d062e0e2f23c42e5f7ef9ab27a2f988654485fec11c3bdc0642b9b17d35791dd80f1548')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/\^//' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:52:19
  Author: felixonmars
Revision: 608574

upgpkg: haskell-smallcheck 1.1.5-17: rebuild with QuickCheck 2.14

Modified:
  haskell-smallcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:51:49 UTC (rev 608573)
+++ PKGBUILD2020-03-31 23:52:19 UTC (rev 608574)
@@ -3,7 +3,7 @@
 _hkgname=smallcheck
 pkgname=haskell-smallcheck
 pkgver=1.1.5
-pkgrel=16
+pkgrel=17
 pkgdesc="A property-based testing library"
 url="https://github.com/feuerbach/smallcheck";
 license=('BSD')


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:53:34
  Author: felixonmars
Revision: 608578

upgpkg: haskell-spdx 1.0.0.2-2: rebuild with QuickCheck 2.14

Modified:
  haskell-spdx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:53:04 UTC (rev 608577)
+++ PKGBUILD2020-03-31 23:53:34 UTC (rev 608578)
@@ -4,7 +4,7 @@
 _hkgname=spdx
 pkgname=haskell-spdx
 pkgver=1.0.0.2
-pkgrel=1
+pkgrel=2
 pkgdesc="SPDX license expression language, Extras"
 url="https://github.com/phadej/spdx";
 license=("BSD")


[arch-commits] Commit in haskell-should-not-typecheck/repos (2 files)

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:51:49
  Author: felixonmars
Revision: 608573

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-should-not-typecheck/repos/community-staging-x86_64/
  haskell-should-not-typecheck/repos/community-staging-x86_64/PKGBUILD
(from rev 608572, haskell-should-not-typecheck/trunk/PKGBUILD)

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

Copied: haskell-should-not-typecheck/repos/community-staging-x86_64/PKGBUILD 
(from rev 608572, haskell-should-not-typecheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:51:49 UTC (rev 608573)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+_hkgname=should-not-typecheck
+pkgname=haskell-should-not-typecheck
+pkgver=2.1.0
+pkgrel=65
+pkgdesc="A HUnit/hspec assertion library to verify that an expression does not 
typecheck"
+url="https://github.com/CRogers/should-not-typecheck";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hunit')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hspec-expectations')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('46ba4435a4408e23dfe6e04f827a7efcfd3c94a4a53a0562061d5cd40c11fcbae7569e695329fe98f9d9ecea1999ac68da6594d2ca60c2efccdac2d6d674d65d')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:50:31
  Author: felixonmars
Revision: 608568

upgpkg: haskell-hspec-megaparsec 2.1.0-3: rebuild with QuickCheck 2.14

Modified:
  haskell-hspec-megaparsec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:50:01 UTC (rev 608567)
+++ PKGBUILD2020-03-31 23:50:31 UTC (rev 608568)
@@ -3,7 +3,7 @@
 _hkgname=hspec-megaparsec
 pkgname=haskell-hspec-megaparsec
 pkgver=2.1.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Utility functions for testing Megaparsec parsers with Hspec"
 url="https://github.com/goldfirere/hspec-megaparsec";
 license=('BSD')


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:51:07
  Author: felixonmars
Revision: 608570

upgpkg: haskell-shell-escape 0.2.0-3: rebuild with QuickCheck 2.14

Modified:
  haskell-shell-escape/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:50:39 UTC (rev 608569)
+++ PKGBUILD2020-03-31 23:51:07 UTC (rev 608570)
@@ -3,7 +3,7 @@
 _hkgname=shell-escape
 pkgname=haskell-shell-escape
 pkgver=0.2.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Shell escaping library"
 url="https://github.com/solidsnack/shell-escape";
 license=('BSD')


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:49:09
  Author: felixonmars
Revision: 608565

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-megaparsec/repos/community-staging-x86_64/PKGBUILD (from rev 
608564, haskell-megaparsec/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:49:09 UTC (rev 608565)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=megaparsec
+pkgname=haskell-megaparsec
+pkgver=8.0.0
+pkgrel=3
+pkgdesc="Monadic parser combinators"
+url="https://github.com/mrkkrp/megaparsec";
+license=("custom:BSD2")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-case-insensitive' 'haskell-parser-combinators'
+ 'haskell-scientific')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('ab550a99548da2739a70cc4bdb3313085b3179c58d19a84d30744d89fe2d7556b9b552d4ad7b177b18f9f5821daa5417c2b9267eadd9eb537132666c151513c3')
+
+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-dev
+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.md 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.md
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE.md
+}


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:50:01
  Author: felixonmars
Revision: 608567

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-configurator-pg/repos/community-staging-x86_64/
  haskell-configurator-pg/repos/community-staging-x86_64/PKGBUILD
(from rev 608566, haskell-configurator-pg/trunk/PKGBUILD)

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

Copied: haskell-configurator-pg/repos/community-staging-x86_64/PKGBUILD (from 
rev 608566, haskell-configurator-pg/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:50:01 UTC (rev 608567)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=configurator-pg
+pkgname=haskell-configurator-pg
+pkgver=0.2.1
+pkgrel=2
+pkgdesc="Reduced parser for configurator-ng config files"
+url="https://github.com/robx/configurator-pg";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-megaparsec' 'haskell-protolude' 
'haskell-scientific')
+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=('63c00c534a5aa91de4ac4507b3c678955c82e0fcc1004c48740fa98c7c19a29a7ec0f9efc6304d277680c11ebc9c5733531ac7d258bf3dd10ac86c7796da7b9c')
+
+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-developer
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:48:18
  Author: felixonmars
Revision: 608563

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-http-date/repos/community-staging-x86_64/PKGBUILD (from rev 
608562, haskell-http-date/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:48:18 UTC (rev 608563)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-date
+pkgname=haskell-http-date
+pkgver=0.0.8
+pkgrel=59
+pkgdesc="HTTP Date parser/formatter"
+url="https://hackage.haskell.org/package/${_hkgname}";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-attoparsec")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('7ad48dc20c62fea21aad0d15251cca333b56a59ca13c45be61fd9fcd938e28f5cb82701b7a394c256e1487679d0bbfcf994de90d7c8b57888e3bac8809e97114')
+
+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-megaparsec/trunk (PKGBUILD)

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:49:01
  Author: felixonmars
Revision: 608564

upgpkg: haskell-megaparsec 8.0.0-3: rebuild with QuickCheck 2.14

Modified:
  haskell-megaparsec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:48:18 UTC (rev 608563)
+++ PKGBUILD2020-03-31 23:49:01 UTC (rev 608564)
@@ -4,7 +4,7 @@
 _hkgname=megaparsec
 pkgname=haskell-megaparsec
 pkgver=8.0.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Monadic parser combinators"
 url="https://github.com/mrkkrp/megaparsec";
 license=("custom:BSD2")


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:49:51
  Author: felixonmars
Revision: 608566

upgpkg: haskell-configurator-pg 0.2.1-2: rebuild with QuickCheck 2.14

Modified:
  haskell-configurator-pg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:49:09 UTC (rev 608565)
+++ PKGBUILD2020-03-31 23:49:51 UTC (rev 608566)
@@ -4,7 +4,7 @@
 _hkgname=configurator-pg
 pkgname=haskell-configurator-pg
 pkgver=0.2.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Reduced parser for configurator-ng config files"
 url="https://github.com/robx/configurator-pg";
 license=("BSD")


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:48:08
  Author: felixonmars
Revision: 608562

upgpkg: haskell-http-date 0.0.8-59: rebuild with QuickCheck 2.14

Modified:
  haskell-http-date/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:47:41 UTC (rev 608561)
+++ PKGBUILD2020-03-31 23:48:08 UTC (rev 608562)
@@ -4,7 +4,7 @@
 _hkgname=http-date
 pkgname=haskell-http-date
 pkgver=0.0.8
-pkgrel=58
+pkgrel=59
 pkgdesc="HTTP Date parser/formatter"
 url="https://hackage.haskell.org/package/${_hkgname}";
 license=("BSD")


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:47:33
  Author: felixonmars
Revision: 608560

upgpkg: haskell-css-text 0.1.3.0-80: rebuild with QuickCheck 2.14

Modified:
  haskell-css-text/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:47:06 UTC (rev 608559)
+++ PKGBUILD2020-03-31 23:47:33 UTC (rev 608560)
@@ -4,7 +4,7 @@
 _hkgname=css-text
 pkgname=haskell-css-text
 pkgver=0.1.3.0
-pkgrel=79
+pkgrel=80
 pkgdesc="CSS parser and renderer."
 url="https://www.yesodweb.com/";
 license=("MIT")


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:46:25
  Author: felixonmars
Revision: 608557

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-attoparsec/repos/community-staging-x86_64/PKGBUILD (from rev 
608556, haskell-attoparsec/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:46:25 UTC (rev 608557)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=attoparsec
+pkgname=haskell-attoparsec
+pkgver=0.13.2.4
+pkgrel=2
+pkgdesc="Fast combinator parsing for bytestrings and text"
+url="https://github.com/bos/attoparsec";
+license=("BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-scientific')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-quickcheck-unicode' 
'haskell-tasty'
+ 'haskell-tasty-quickcheck' 'haskell-vector')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('c2f94792ab4e68cfdbfbc92dfdc2cff08c9b96ef9b39608ed58bf25ba602e0ffd687c74b2d92045ff384e6c927cefb3774365218aebe9af01c153bdd3a29d946')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *2.14/<3/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-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, possibly due to unmet 
dependency version on QuickCheck"
+}
+
+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-attoparsec/trunk (PKGBUILD)

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:46:17
  Author: felixonmars
Revision: 608556

upgpkg: haskell-attoparsec 0.13.2.4-2: rebuild with QuickCheck 2.14

Modified:
  haskell-attoparsec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:29:32 UTC (rev 608555)
+++ PKGBUILD2020-03-31 23:46:17 UTC (rev 608556)
@@ -4,7 +4,7 @@
 _hkgname=attoparsec
 pkgname=haskell-attoparsec
 pkgver=0.13.2.4
-pkgrel=1
+pkgrel=2
 pkgdesc="Fast combinator parsing for bytestrings and text"
 url="https://github.com/bos/attoparsec";
 license=("BSD3")
@@ -15,6 +15,11 @@
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
 
sha512sums=('c2f94792ab4e68cfdbfbc92dfdc2cff08c9b96ef9b39608ed58bf25ba602e0ffd687c74b2d92045ff384e6c927cefb3774365218aebe9af01c153bdd3a29d946')
 
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *2.14/<3/' $_hkgname.cabal
+}
+
 build() {
 cd $_hkgname-$pkgver
 


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:46:58
  Author: felixonmars
Revision: 608558

upgpkg: haskell-attoparsec-iso8601 1.0.1.0-56: rebuild with QuickCheck 2.14

Modified:
  haskell-attoparsec-iso8601/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:46:25 UTC (rev 608557)
+++ PKGBUILD2020-03-31 23:46:58 UTC (rev 608558)
@@ -3,7 +3,7 @@
 _hkgname=attoparsec-iso8601
 pkgname=haskell-attoparsec-iso8601
 pkgver=1.0.1.0
-pkgrel=55
+pkgrel=56
 pkgdesc="Parsing of ISO 8601 dates, originally from aeson"
 url="https://github.com/bos/aeson";
 license=('BSD')


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

2020-03-31 Thread Jan Steffens via arch-commits
Date: Tuesday, March 31, 2020 @ 23:29:30
  Author: heftig
Revision: 608554

archrelease: copy trunk to community-staging-x86_64

Added:
  tp_smapi/repos/community-staging-x86_64/
  tp_smapi/repos/community-staging-x86_64/PKGBUILD
(from rev 608553, tp_smapi/trunk/PKGBUILD)

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

Copied: tp_smapi/repos/community-staging-x86_64/PKGBUILD (from rev 608553, 
tp_smapi/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:29:30 UTC (rev 608554)
@@ -0,0 +1,50 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi
+pkgver=0.43
+pkgrel=191
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+makedepends=('linux-headers' 'git')
+_commit=a63729ab30d85430048f65c37f29188ab484cd52  # tags/tp-smapi/0.43
+source=("git+https://github.com/evgeni/tp_smapi#commit=$_commit";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^tp-smapi\///;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+
+  # https://bugs.archlinux.org/task/54975 (kernel has no 
_GLOBAL_OFFSET_TABLE_):
+  # Clear EXTRA_CFLAGS since it defaults to injecting CFLAGS and -fno-plt 
breaks the modules
+
+  make HDAPS=1 KVER="$(

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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:11:24
  Author: felixonmars
Revision: 608539

upgpkg: haskell-repline 0.2.2.0-3: rebuild with QuickCheck 2.14

Modified:
  haskell-repline/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:10:58 UTC (rev 608538)
+++ PKGBUILD2020-03-31 23:11:24 UTC (rev 608539)
@@ -3,7 +3,7 @@
 _hkgname=repline
 pkgname=haskell-repline
 pkgver=0.2.2.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Haskeline wrapper for GHCi-like REPL interfaces"
 url="https://github.com/sdiehl/repline";
 license=('MIT')


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:05:41
  Author: felixonmars
Revision: 608523

upgpkg: haskell-psqueues 0.2.7.2-26: rebuild with QuickCheck 2.14

Modified:
  haskell-psqueues/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:03:58 UTC (rev 608522)
+++ PKGBUILD2020-03-31 23:05:41 UTC (rev 608523)
@@ -4,7 +4,7 @@
 _hkgname=psqueues
 pkgname=haskell-psqueues
 pkgver=0.2.7.2
-pkgrel=25
+pkgrel=26
 pkgdesc="Pure priority search queues"
 url="https://hackage.haskell.org/package/${_hkgname}";
 license=("BSD")
@@ -15,6 +15,11 @@
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
 
sha512sums=('cc70bc22568d24b8618d43be7a2261ab7b55005e7e68a49a4d09b323e03954c05fe8d4de2c344760cdfef26b04bc6937bc331f7e310e1bc9b6b512068eed3be3')
 
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *2.14/<3/' $_hkgname.cabal
+}
+
 build() {
 cd $_hkgname-$pkgver
 


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

2020-03-31 Thread Jan Steffens via arch-commits
Date: Tuesday, March 31, 2020 @ 23:29:32
  Author: heftig
Revision: 608555

archrelease: copy trunk to community-staging-x86_64

Added:
  vhba-module/repos/community-staging-x86_64/
  vhba-module/repos/community-staging-x86_64/60-vhba.rules
(from rev 608553, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-staging-x86_64/PKGBUILD
(from rev 608553, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-staging-x86_64/dkms.conf
(from rev 608553, vhba-module/trunk/dkms.conf)

---+
 60-vhba.rules |1 +
 PKGBUILD  |   53 +
 dkms.conf |9 +
 3 files changed, 63 insertions(+)

Copied: vhba-module/repos/community-staging-x86_64/60-vhba.rules (from rev 
608553, vhba-module/trunk/60-vhba.rules)
===
--- community-staging-x86_64/60-vhba.rules  (rev 0)
+++ community-staging-x86_64/60-vhba.rules  2020-03-31 23:29:32 UTC (rev 
608555)
@@ -0,0 +1 @@
+ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Copied: vhba-module/repos/community-staging-x86_64/PKGBUILD (from rev 608553, 
vhba-module/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:29:32 UTC (rev 608555)
@@ -0,0 +1,53 @@
+# Maintainer: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgbase=vhba-module
+pkgname=(vhba-module vhba-module-dkms)
+pkgver=20200106
+pkgrel=27
+pkgdesc="Kernel module that emulates SCSI devices"
+url="https://cdemu.sourceforge.io/";
+arch=(x86_64)
+license=(GPL)
+makedepends=('linux-headers')
+source=("https://downloads.sourceforge.net/cdemu/$pkgbase-$pkgver.tar.bz2";
+60-vhba.rules dkms.conf)
+sha256sums=('59a3208a7b8fcf1bb03bd4d352ec89d06a8b6b84db325e31b0863b209dde3483'
+'3052cb1cadbdf4bfb0b588bb8ed80691940d8dd63dc5502943d597eaf9f40c3b'
+'8cab0ebb4fee72069d63616b0983f105b98d1261e72e9bef5509a6e60bc382a7')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  sed -i 's/20190302/20190410/' Makefile  # Fixup VHBA_VERSION
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KERNELRELEASE="$(

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

2020-03-31 Thread Jan Steffens via arch-commits
Date: Tuesday, March 31, 2020 @ 23:29:33
  Author: heftig
Revision: 379019

archrelease: copy trunk to staging-x86_64

Added:
  linux-zen/repos/staging-x86_64/
  linux-zen/repos/staging-x86_64/PKGBUILD
(from rev 379017, linux-zen/trunk/PKGBUILD)
  linux-zen/repos/staging-x86_64/config
(from rev 379017, linux-zen/trunk/config)

--+
 PKGBUILD |  193 +
 config   |10793 +
 2 files changed, 10986 insertions(+)

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


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

2020-03-31 Thread Jan Steffens via arch-commits
Date: Tuesday, March 31, 2020 @ 23:29:34
  Author: heftig
Revision: 379020

archrelease: copy trunk to staging-x86_64

Added:
  linux/repos/staging-x86_64/
  linux/repos/staging-x86_64/PKGBUILD
(from rev 379017, linux/trunk/PKGBUILD)
  linux/repos/staging-x86_64/config
(from rev 379017, linux/trunk/config)

--+
 PKGBUILD |  194 +
 config   |10762 +
 2 files changed, 10956 insertions(+)

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


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:03:58
  Author: felixonmars
Revision: 608522

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-protolude/repos/community-staging-x86_64/PKGBUILD (from rev 
608521, haskell-protolude/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:03:58 UTC (rev 608522)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=protolude
+pkgname=haskell-protolude
+pkgver=0.2.4
+pkgrel=6
+pkgdesc="A sensible set of defaults for writing custom Preludes."
+url="https://github.com/sdiehl/protolude";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-hashable'
+ 'haskell-transformers-compat')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('2056cc994074d1027f9574ef70fc9fd110317129f494a28db0428ef17a26e66c7126f5ff9c492d76ae53f9085173c78742b8c83c2d0ea5231cab3297efe9f4e0')
+
+prepare() {
+sed -e '/mtl-compat/d' -i $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--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-quickcheck-assertions/trunk (PKGBUILD)

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:06:17
  Author: felixonmars
Revision: 608525

upgpkg: haskell-quickcheck-assertions 0.3.0-84: rebuild with QuickCheck 2.14

Modified:
  haskell-quickcheck-assertions/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:05:49 UTC (rev 608524)
+++ PKGBUILD2020-03-31 23:06:17 UTC (rev 608525)
@@ -4,7 +4,7 @@
 _hkgname=quickcheck-assertions
 pkgname=haskell-quickcheck-assertions
 pkgver=0.3.0
-pkgrel=83
+pkgrel=84
 pkgdesc="HUnit like assertions for QuickCheck"
 url="https://github.com/s9gf4ult/quickcheck-assertions";
 license=("LGPL")


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:06:25
  Author: felixonmars
Revision: 608526

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-quickcheck-assertions/repos/community-staging-x86_64/
  haskell-quickcheck-assertions/repos/community-staging-x86_64/PKGBUILD
(from rev 608525, haskell-quickcheck-assertions/trunk/PKGBUILD)

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

Copied: haskell-quickcheck-assertions/repos/community-staging-x86_64/PKGBUILD 
(from rev 608525, haskell-quickcheck-assertions/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:06:25 UTC (rev 608526)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=quickcheck-assertions
+pkgname=haskell-quickcheck-assertions
+pkgver=0.3.0
+pkgrel=84
+pkgdesc="HUnit like assertions for QuickCheck"
+url="https://github.com/s9gf4ult/quickcheck-assertions";
+license=("LGPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-ieee754' 
'haskell-pretty-show')
+makedepends=('ghc' 'haskell-hspec')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('7a7a2d503ef270b4b6dcb1665bd1b83e0f7f3477b7fb714ed4685d96bb5e2244f5fd2d833d2f3e9284e7adc0fef5b4547a7182d542c3848a96dce540af207564')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-03-31 Thread Jan Steffens via arch-commits
Date: Tuesday, March 31, 2020 @ 23:28:18
  Author: heftig
Revision: 379016

3.36.1-1

Modified:
  gnome-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:22:10 UTC (rev 379015)
+++ PKGBUILD2020-03-31 23:28:18 UTC (rev 379016)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=gnome-desktop
-pkgver=3.36.0
+pkgver=3.36.1
 pkgrel=1
 epoch=1
 pkgdesc="Library with common API for various GNOME modules"
@@ -14,7 +14,7 @@
 makedepends=(gobject-introspection git meson gtk-doc yelp-tools)
 checkdepends=(xorg-server-xvfb)
 provides=(libgnome-desktop-3.so)
-_commit=7d299129002eac12dd4aa412042198b90ee21bc2  # tags/3.36.0^0
+_commit=8154dd2e0dd3eb84c6802a3836447bd0d9aa7fe6  # tags/3.36.1^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-desktop.git#commit=$_commit";)
 sha256sums=('SKIP')
 


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

2020-03-31 Thread Jan Steffens via arch-commits
Date: Tuesday, March 31, 2020 @ 23:29:32
  Author: heftig
Revision: 379018

archrelease: copy trunk to extra-x86_64

Added:
  gnome-desktop/repos/extra-x86_64/PKGBUILD
(from rev 379017, gnome-desktop/trunk/PKGBUILD)
Deleted:
  gnome-desktop/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-31 23:29:12 UTC (rev 379017)
+++ PKGBUILD2020-03-31 23:29:32 UTC (rev 379018)
@@ -1,47 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Jan de Groot 
-
-pkgname=gnome-desktop
-pkgver=3.36.0
-pkgrel=1
-epoch=1
-pkgdesc="Library with common API for various GNOME modules"
-url="https://gitlab.gnome.org/GNOME/gnome-desktop";
-arch=(x86_64)
-license=(GPL LGPL)
-depends=(gsettings-desktop-schemas gtk3 libxkbfile xkeyboard-config iso-codes 
libseccomp bubblewrap
- systemd-libs)
-makedepends=(gobject-introspection git meson gtk-doc yelp-tools)
-checkdepends=(xorg-server-xvfb)
-provides=(libgnome-desktop-3.so)
-_commit=7d299129002eac12dd4aa412042198b90ee21bc2  # tags/3.36.0^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-desktop.git#commit=$_commit";)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  arch-meson $pkgname build \
--D gnome_distributor="Arch Linux®" \
--D gtk_doc=true \
--D date_in_gnome_version=false
-  ninja -C build
-}
-
-check() {
-  # tests broken: missing locale he_IL.UTF-8
-  dbus-run-session xvfb-run \
--s '-screen 0 1920x1080x24 -nolisten local' \
-meson test -C build --print-errorlogs || :
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}

Copied: gnome-desktop/repos/extra-x86_64/PKGBUILD (from rev 379017, 
gnome-desktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-31 23:29:32 UTC (rev 379018)
@@ -0,0 +1,47 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-desktop
+pkgver=3.36.1
+pkgrel=1
+epoch=1
+pkgdesc="Library with common API for various GNOME modules"
+url="https://gitlab.gnome.org/GNOME/gnome-desktop";
+arch=(x86_64)
+license=(GPL LGPL)
+depends=(gsettings-desktop-schemas gtk3 libxkbfile xkeyboard-config iso-codes 
libseccomp bubblewrap
+ systemd-libs)
+makedepends=(gobject-introspection git meson gtk-doc yelp-tools)
+checkdepends=(xorg-server-xvfb)
+provides=(libgnome-desktop-3.so)
+_commit=8154dd2e0dd3eb84c6802a3836447bd0d9aa7fe6  # tags/3.36.1^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-desktop.git#commit=$_commit";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build \
+-D gnome_distributor="Arch Linux®" \
+-D gtk_doc=true \
+-D date_in_gnome_version=false
+  ninja -C build
+}
+
+check() {
+  # tests broken: missing locale he_IL.UTF-8
+  dbus-run-session xvfb-run \
+-s '-screen 0 1920x1080x24 -nolisten local' \
+meson test -C build --print-errorlogs || :
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:02:12
  Author: felixonmars
Revision: 608517

upgpkg: haskell-profunctors 5.5.2-7: rebuild with QuickCheck 2.14

Modified:
  haskell-profunctors/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:01:37 UTC (rev 608516)
+++ PKGBUILD2020-03-31 23:02:12 UTC (rev 608517)
@@ -4,7 +4,7 @@
 _hkgname=profunctors
 pkgname=haskell-profunctors
 pkgver=5.5.2
-pkgrel=6
+pkgrel=7
 pkgdesc="Profunctors"
 url="https://github.com/ekmett/profunctors/";
 license=("BSD")


[arch-commits] Commit in python-google-api-core/trunk (PKGBUILD)

2020-03-31 Thread Andrzej Giniewicz via arch-commits
Date: Tuesday, March 31, 2020 @ 23:14:47
  Author: aginiewicz
Revision: 608550

upgpkg: python-google-api-core 1.16.0-1: python-google-api-core: moved from AUR 
as a dependency of python-google-api-python-client

Modified:
  python-google-api-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:14:29 UTC (rev 608549)
+++ PKGBUILD2020-03-31 23:14:47 UTC (rev 608550)
@@ -3,7 +3,7 @@
 
 pkgname=python-google-api-core
 pkgver=1.16.0
-pkgrel=0
+pkgrel=1
 pkgdesc="Google API client core library"
 arch=('any')
 url="https://github.com/googleapis/googleapis";


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:14:19
  Author: felixonmars
Revision: 608548

upgpkg: haskell-scientific 0.3.6.2-19: rebuild with QuickCheck 2.14

Modified:
  haskell-scientific/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:13:57 UTC (rev 608547)
+++ PKGBUILD2020-03-31 23:14:19 UTC (rev 608548)
@@ -4,7 +4,7 @@
 _hkgname=scientific
 pkgname=haskell-scientific
 pkgver=0.3.6.2
-pkgrel=18
+pkgrel=19
 pkgdesc="Numbers represented using scientific notation"
 url="https://github.com/basvandijk/scientific";
 license=("BSD")


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

2020-03-31 Thread Jan Steffens via arch-commits
Date: Tuesday, March 31, 2020 @ 23:24:06
  Author: heftig
Revision: 608553

20200106-27: linux 5.6.arch1-1

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:24:02 UTC (rev 608552)
+++ PKGBUILD2020-03-31 23:24:06 UTC (rev 608553)
@@ -5,7 +5,7 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20200106
-pkgrel=26
+pkgrel=27
 pkgdesc="Kernel module that emulates SCSI devices"
 url="https://cdemu.sourceforge.io/";
 arch=(x86_64)


[arch-commits] Commit in linux-zen/trunk (PKGBUILD config)

2020-03-31 Thread Jan Steffens via arch-commits
Date: Tuesday, March 31, 2020 @ 23:29:12
  Author: heftig
Revision: 379017

5.6.zen1-1

Modified:
  linux-zen/trunk/PKGBUILD
  linux-zen/trunk/config

--+
 PKGBUILD |   14 
 config   |  195 +++--
 2 files changed, 142 insertions(+), 67 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:28:18 UTC (rev 379016)
+++ PKGBUILD2020-03-31 23:29:12 UTC (rev 379017)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=linux-zen
-pkgver=5.5.13.zen2
+pkgver=5.6.zen1
 pkgrel=1
 pkgdesc='Linux ZEN'
 _srctag=v${pkgver%.*}-${pkgver##*.}
@@ -25,7 +25,7 @@
   '8218F88849AAC522E94CF470A5E9288C4FA415FA'  # Jan Alexander Steffens (heftig)
 )
 sha256sums=('SKIP'
-'7eeac274438a62795cd2653607d6c92d7031e80f63ddac79673155639f7e8181')
+'16c7272d0062118dcfe89f4ce2f9b9e68a2a3a6fb13f326588fc1225582cc9e4')
 
 export KBUILD_BUILD_HOST=archlinux
 export KBUILD_BUILD_USER=$pkgbase
@@ -67,6 +67,7 @@
   depends=(coreutils kmod initramfs)
   optdepends=('crda: to set the correct wireless channels of your country'
   'linux-firmware: firmware images needed for some devices')
+  provides=(VIRTUALBOX-GUEST-MODULES WIREGUARD-MODULE)
 
   cd $_srcname
   local kernver="$(

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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:13:01
  Author: felixonmars
Revision: 608544

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-resourcet/repos/community-staging-x86_64/PKGBUILD (from rev 
608543, haskell-resourcet/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:13:01 UTC (rev 608544)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=resourcet
+pkgname=haskell-resourcet
+pkgver=1.2.3
+pkgrel=5
+pkgdesc="Deterministic allocation and freeing of scarce resources."
+url="https://github.com/snoyberg/conduit";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-exceptions' 'haskell-primitive' 
'haskell-unliftio-core')
+makedepends=('ghc' 'haskell-hspec')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('e968e05907b653eb0ed44be4ee3ccf23fce2b600063ef35f0649e886b13aba866a5cc7f8df84634b8bcb22031d9945f244d77b3cb6e29a79ec0bbf689a72b622')
+
+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-scientific/repos (2 files)

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:14:29
  Author: felixonmars
Revision: 608549

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-scientific/repos/community-staging-x86_64/PKGBUILD (from rev 
608548, haskell-scientific/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:14:29 UTC (rev 608549)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=scientific
+pkgname=haskell-scientific
+pkgver=0.3.6.2
+pkgrel=19
+pkgdesc="Numbers represented using scientific notation"
+url="https://github.com/basvandijk/scientific";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-hashable" "haskell-integer-logarithms" 
"haskell-primitive")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('47a74524c8fb25d381adf868d823a6b6772f3f69b0b3cf9f9de015a03bc941857ef3fca1b4f8cbf23e998164e71a914e167221e753c6f32dc8644047d1ef57ee')
+
+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-integer-simple -f-bytestring-builder
+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-process-extras/repos (2 files)

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:01:37
  Author: felixonmars
Revision: 608516

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-process-extras/repos/community-staging-x86_64/
  haskell-process-extras/repos/community-staging-x86_64/PKGBUILD
(from rev 608515, haskell-process-extras/trunk/PKGBUILD)

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

Copied: haskell-process-extras/repos/community-staging-x86_64/PKGBUILD (from 
rev 608515, haskell-process-extras/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:01:37 UTC (rev 608516)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=process-extras
+pkgname=haskell-process-extras
+pkgver=0.7.4
+pkgrel=89
+pkgdesc="Process extras"
+url="https://github.com/seereason/process-extras";
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-data-default' 'haskell-generic-deriving' 
'haskell-listlike'
+)
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('4747b4bd920796b7b4ddf32d0e72a3af556c9db66c828b725ac7a7467442dad2b0dc85aa66e03d7a8c5afdb02658611e64d390b6c71219b380a986e245495536')
+
+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 tp_smapi/trunk (PKGBUILD)

2020-03-31 Thread Jan Steffens via arch-commits
Date: Tuesday, March 31, 2020 @ 23:24:02
  Author: heftig
Revision: 608552

0.43-191: linux 5.6.arch1-1

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:14:54 UTC (rev 608551)
+++ PKGBUILD2020-03-31 23:24:02 UTC (rev 608552)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi
 pkgver=0.43
-pkgrel=190
+pkgrel=191
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


[arch-commits] Commit in haskell-rope-utf16-splay/trunk (PKGBUILD)

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:13:36
  Author: felixonmars
Revision: 608545

upgpkg: haskell-rope-utf16-splay 0.3.1.0-3: rebuild with QuickCheck 2.14

Modified:
  haskell-rope-utf16-splay/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:13:01 UTC (rev 608544)
+++ PKGBUILD2020-03-31 23:13:36 UTC (rev 608545)
@@ -3,7 +3,7 @@
 _hkgname=rope-utf16-splay
 pkgname=haskell-rope-utf16-splay
 pkgver=0.3.1.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Ropes optimised for updating using UTF-16 code units and row/column 
pairs"
 url="https://github.com/ollef/rope-utf16-splay";
 license=('BSD')


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:03:46
  Author: felixonmars
Revision: 608521

upgpkg: haskell-protolude 0.2.4-6: rebuild with QuickCheck 2.14

Modified:
  haskell-protolude/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:03:17 UTC (rev 608520)
+++ PKGBUILD2020-03-31 23:03:46 UTC (rev 608521)
@@ -4,7 +4,7 @@
 _hkgname=protolude
 pkgname=haskell-protolude
 pkgver=0.2.4
-pkgrel=5
+pkgrel=6
 pkgdesc="A sensible set of defaults for writing custom Preludes."
 url="https://github.com/sdiehl/protolude";
 license=("MIT")


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:11:32
  Author: felixonmars
Revision: 608540

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-repline/repos/community-staging-x86_64/PKGBUILD (from rev 
608539, haskell-repline/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:11:32 UTC (rev 608540)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+_hkgname=repline
+pkgname=haskell-repline
+pkgver=0.2.2.0
+pkgrel=3
+pkgdesc="Haskeline wrapper for GHCi-like REPL interfaces"
+url="https://github.com/sdiehl/repline";
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-exceptions')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('7e164d7d4f7ef78057ac6d028d944355ceb944b170f957393228ec14d2bac214ea50ef19f1d3cc88349d3ba010c386871c69452987b0a70e0a47f4e6625414ac')
+
+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-process-extras/trunk (PKGBUILD)

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:01:26
  Author: felixonmars
Revision: 608515

upgpkg: haskell-process-extras 0.7.4-89: rebuild with QuickCheck 2.14

Modified:
  haskell-process-extras/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:00:55 UTC (rev 608514)
+++ PKGBUILD2020-03-31 23:01:26 UTC (rev 608515)
@@ -4,7 +4,7 @@
 _hkgname=process-extras
 pkgname=haskell-process-extras
 pkgver=0.7.4
-pkgrel=88
+pkgrel=89
 pkgdesc="Process extras"
 url="https://github.com/seereason/process-extras";
 license=('MIT')


[arch-commits] Commit in python-google-api-core/repos (2 files)

2020-03-31 Thread Andrzej Giniewicz via arch-commits
Date: Tuesday, March 31, 2020 @ 23:14:54
  Author: aginiewicz
Revision: 608551

archrelease: copy trunk to community-any

Added:
  python-google-api-core/repos/community-any/
  python-google-api-core/repos/community-any/PKGBUILD
(from rev 608550, python-google-api-core/trunk/PKGBUILD)

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

Copied: python-google-api-core/repos/community-any/PKGBUILD (from rev 608550, 
python-google-api-core/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-03-31 23:14:54 UTC (rev 608551)
@@ -0,0 +1,26 @@
+# Maintainer: Andrzej Giniewicz 
+# Contributor: Kaizhao Zhang 
+
+pkgname=python-google-api-core
+pkgver=1.16.0
+pkgrel=1
+pkgdesc="Google API client core library"
+arch=('any')
+url="https://github.com/googleapis/googleapis";
+license=('Apache')
+depends=('python-setuptools' 'python-pytz' 'python-requests' 
'python-googleapis-common-protos' 'python-google-auth')
+optdepends=('python-grpcio: for grpc support')
+source=("https://files.pythonhosted.org/packages/source/g/google-api-core/google-api-core-${pkgver}.tar.gz";)
+sha256sums=('92e962a087f1c4b8d1c5c88ade1c1dfd550047dcffb320c57ef6a534a20403e2')
+
+build() {
+  cd "google-api-core-${pkgver}"
+
+  python setup.py build
+}
+
+package() {
+  cd "google-api-core-${pkgver}"
+
+  python setup.py install --root="$pkgdir" --optimize=1
+}


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:12:23
  Author: felixonmars
Revision: 608542

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-resolv/repos/community-staging-x86_64/PKGBUILD (from rev 
608541, haskell-resolv/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:12:23 UTC (rev 608542)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+
+_hkgname=resolv
+pkgname=haskell-resolv
+pkgver=0.1.1.3
+pkgrel=12
+pkgdesc="Domain Name Service (DNS) lookup via the libresolv standard library 
routines"
+url="https://github.com/hvr/resolv";
+license=('GPL')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base16-bytestring')
+makedepends=('ghc' 'haskell-tasty' 'haskell-tasty-hunit')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('59189b3b2c1811f7e4fc3e79f66e5264751479996584e59713cb3ad2cf6d855f202b1db3a02ad57692ee7c55c75a5dc6b5fd008f853f2923923558d923c8129a')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *1.2/<2/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:02:20
  Author: felixonmars
Revision: 608518

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-profunctors/repos/community-staging-x86_64/PKGBUILD (from rev 
608517, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:02:20 UTC (rev 608518)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.5.2
+pkgrel=7
+pkgdesc="Profunctors"
+url="https://github.com/ekmett/profunctors/";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-orphans' 'haskell-bifunctors' 
'haskell-comonad'
+ 'haskell-contravariant' 'haskell-distributive' 'haskell-tagged')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('c5e1862845ebc3d3f2c6cf39929a559d459d8ab2b703647f31871d455b5190f741b3bc5420419e24cff69ce2917e3ec8fbfc40558d525a9e33bb34232ee3cbc2')
+
+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-one-liner/repos (2 files)

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:03:17
  Author: felixonmars
Revision: 608520

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-one-liner/repos/community-staging-x86_64/
  haskell-one-liner/repos/community-staging-x86_64/PKGBUILD
(from rev 608519, haskell-one-liner/trunk/PKGBUILD)

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

Copied: haskell-one-liner/repos/community-staging-x86_64/PKGBUILD (from rev 
608519, haskell-one-liner/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:03:17 UTC (rev 608520)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+
+_hkgname=one-liner
+pkgname=haskell-one-liner
+pkgver=1.0
+pkgrel=18
+pkgdesc="Constraint-based generics"
+url="https://github.com/sjoerdvisscher/one-liner";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-bifunctors' 'haskell-contravariant' 
'haskell-profunctors'
+ 'haskell-tagged')
+makedepends=('ghc' 'haskell-hunit')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('fd9d9448ef352513472b43607bf4ef87fb70b75e7a76a9c7c1197437ff052923026e99a98a9b88f79765e0003d872241724e21c1c8f150208463dbe2141e27a0')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *1.5/<2/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:12:15
  Author: felixonmars
Revision: 608541

upgpkg: haskell-resolv 0.1.1.3-12: rebuild with QuickCheck 2.14

Modified:
  haskell-resolv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:11:32 UTC (rev 608540)
+++ PKGBUILD2020-03-31 23:12:15 UTC (rev 608541)
@@ -3,7 +3,7 @@
 _hkgname=resolv
 pkgname=haskell-resolv
 pkgver=0.1.1.3
-pkgrel=11
+pkgrel=12
 pkgdesc="Domain Name Service (DNS) lookup via the libresolv standard library 
routines"
 url="https://github.com/hvr/resolv";
 license=('GPL')


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:12:53
  Author: felixonmars
Revision: 608543

upgpkg: haskell-resourcet 1.2.3-5: rebuild with QuickCheck 2.14

Modified:
  haskell-resourcet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:12:23 UTC (rev 608542)
+++ PKGBUILD2020-03-31 23:12:53 UTC (rev 608543)
@@ -4,7 +4,7 @@
 _hkgname=resourcet
 pkgname=haskell-resourcet
 pkgver=1.2.3
-pkgrel=4
+pkgrel=5
 pkgdesc="Deterministic allocation and freeing of scarce resources."
 url="https://github.com/snoyberg/conduit";
 license=("BSD")


[arch-commits] Commit in haskell-rope-utf16-splay/repos (2 files)

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:13:50
  Author: felixonmars
Revision: 608546

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-rope-utf16-splay/repos/community-staging-x86_64/
  haskell-rope-utf16-splay/repos/community-staging-x86_64/PKGBUILD
(from rev 608545, haskell-rope-utf16-splay/trunk/PKGBUILD)

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

Copied: haskell-rope-utf16-splay/repos/community-staging-x86_64/PKGBUILD (from 
rev 608545, haskell-rope-utf16-splay/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:13:50 UTC (rev 608546)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=rope-utf16-splay
+pkgname=haskell-rope-utf16-splay
+pkgver=0.3.1.0
+pkgrel=3
+pkgdesc="Ropes optimised for updating using UTF-16 code units and row/column 
pairs"
+url="https://github.com/ollef/rope-utf16-splay";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-tasty' 'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('2ec20f8acaec58dd181f6d82379111fc882f9029db5caa1f157713338eb9cae297d8eb395d5966e4a0c1fc31ad9b8b9b5539192654343c81562bbdd545da49ad')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in (4 files)

2020-03-31 Thread Andrzej Giniewicz via arch-commits
Date: Tuesday, March 31, 2020 @ 23:13:57
  Author: aginiewicz
Revision: 608547

python-google-api-core: moved from AUR as a dependency of 
python-google-api-python-client

Added:
  python-google-api-core/
  python-google-api-core/repos/
  python-google-api-core/trunk/
  python-google-api-core/trunk/PKGBUILD

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

Added: python-google-api-core/trunk/PKGBUILD
===
--- python-google-api-core/trunk/PKGBUILD   (rev 0)
+++ python-google-api-core/trunk/PKGBUILD   2020-03-31 23:13:57 UTC (rev 
608547)
@@ -0,0 +1,26 @@
+# Maintainer: Andrzej Giniewicz 
+# Contributor: Kaizhao Zhang 
+
+pkgname=python-google-api-core
+pkgver=1.16.0
+pkgrel=0
+pkgdesc="Google API client core library"
+arch=('any')
+url="https://github.com/googleapis/googleapis";
+license=('Apache')
+depends=('python-setuptools' 'python-pytz' 'python-requests' 
'python-googleapis-common-protos' 'python-google-auth')
+optdepends=('python-grpcio: for grpc support')
+source=("https://files.pythonhosted.org/packages/source/g/google-api-core/google-api-core-${pkgver}.tar.gz";)
+sha256sums=('92e962a087f1c4b8d1c5c88ade1c1dfd550047dcffb320c57ef6a534a20403e2')
+
+build() {
+  cd "google-api-core-${pkgver}"
+
+  python setup.py build
+}
+
+package() {
+  cd "google-api-core-${pkgver}"
+
+  python setup.py install --root="$pkgdir" --optimize=1
+}


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:03:09
  Author: felixonmars
Revision: 608519

upgpkg: haskell-one-liner 1.0-18: rebuild with QuickCheck 2.14

Modified:
  haskell-one-liner/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-31 23:02:20 UTC (rev 608518)
+++ PKGBUILD2020-03-31 23:03:09 UTC (rev 608519)
@@ -3,7 +3,7 @@
 _hkgname=one-liner
 pkgname=haskell-one-liner
 pkgver=1.0
-pkgrel=17
+pkgrel=18
 pkgdesc="Constraint-based generics"
 url="https://github.com/sjoerdvisscher/one-liner";
 license=('BSD')


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

2020-03-31 Thread Felix Yan via arch-commits
Date: Tuesday, March 31, 2020 @ 23:00:55
  Author: felixonmars
Revision: 608514

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-gtk/repos/community-staging-x86_64/PKGBUILD (from rev 608513, 
haskell-gtk/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-31 23:00:55 UTC (rev 608514)
@@ -0,0 +1,37 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=haskell-gtk
+pkgver=0.15.4
+pkgrel=15
+pkgdesc="Binding to the gtk library for Gtk2Hs."
+url="https://hackage.haskell.org/package/gtk3";
+license=('LGPL2.1')
+arch=('x86_64')
+depends=('ghc-libs' 'gtk3' 'haskell-pango')
+makedepends=('ghc' 'haskell-gtk2hs-buildtools')
+provides=('gtk2hs-gtk')
+replaces=('gtk2hs-gtk')
+conflicts=('gtk2hs-gtk')
+source=("https://hackage.haskell.org/packages/archive/gtk3/${pkgver}/gtk3-${pkgver}.tar.gz";)
+sha512sums=('17182171ee00d2fc7394d3a5935e3062de337f8de4a58e4b8107eaba18c10f7082b5f88ea18906ed4a2b6e4051dc65ca9d4b5de1e64524cd19a888ea6c21d92a')
+
+build() {
+cd "${srcdir}/gtk3-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir="$pkgname" 
\
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/gtk3-${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"
+}


  1   2   3   4   5   6   7   8   9   >