[arch-commits] Commit in ponysay/trunk (PKGBUILD fix-do-not-compare-literal.patch)

2020-11-07 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, November 8, 2020 @ 04:55:19
  Author: svenstaro
Revision: 746452

upgpkg: ponysay 3.0.3-3: Python 3.8 compatibility

Added:
  ponysay/trunk/fix-do-not-compare-literal.patch
Modified:
  ponysay/trunk/PKGBUILD

--+
 PKGBUILD |   14 +++---
 fix-do-not-compare-literal.patch |   36 
 2 files changed, 47 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-08 03:16:37 UTC (rev 746451)
+++ PKGBUILD2020-11-08 04:55:19 UTC (rev 746452)
@@ -3,7 +3,7 @@
 
 pkgname=ponysay
 pkgver=3.0.3
-pkgrel=2
+pkgrel=3
 pkgdesc="cowsay reimplemention for ponies"
 url="http://erkin.github.com/ponysay/;
 arch=('any')
@@ -10,9 +10,17 @@
 license=('GPL3')
 depends=('python' 'bash')
 makedepends=('git')
-source=("ponysay-$pkgver.tar.gz::https://github.com/erkin/ponysay/tarball/$pkgver;)
-sha512sums=('ee4340b3a4902465217fcf0e0a31acf2771697ebfff9ce1897d5e0062782efd36ceb91672a6eb45a9b70aeb7f50f48e2ebd7671dab3cf5af1ec4043f2767edd7')
+source=("ponysay-$pkgver.tar.gz::https://github.com/erkin/ponysay/tarball/$pkgver;
+fix-do-not-compare-literal.patch)
+sha512sums=('ee4340b3a4902465217fcf0e0a31acf2771697ebfff9ce1897d5e0062782efd36ceb91672a6eb45a9b70aeb7f50f48e2ebd7671dab3cf5af1ec4043f2767edd7'
+
'372e26a1293d05a37821a5edcbfc2ebb41d751ba4226fa503c07e815c1bb32b6c000293c584babd96e48614bf3b9c4321deb8b28587a37a56783a434615ddeb5')
 
+prepare() {
+  cd "$srcdir/erkin-ponysay-"*
+
+  patch -Np1 -i "$srcdir"/fix-do-not-compare-literal.patch
+}
+
 package() {
   cd "$srcdir/erkin-ponysay-"*
 

Added: fix-do-not-compare-literal.patch
===
--- fix-do-not-compare-literal.patch(rev 0)
+++ fix-do-not-compare-literal.patch2020-11-08 04:55:19 UTC (rev 746452)
@@ -0,0 +1,36 @@
+From 69c23e3ae1e1e9e9f1ee3a06a706d755a4b1de48 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?M=C3=93ZES=20=C3=81d=C3=A1m=20Istv=C3=A1n?=
+ 
+Date: Sat, 16 Nov 2019 09:58:28 +0100
+Subject: [PATCH] fix: do not compare literal with "is not"
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Python3.8 issued the following warning on each ponysay invocation:
+
+/bin/ponysay/backend.py:294: SyntaxWarning: "is not" with a literal. Did you 
mean "!="?
+
+This has been corrected here.
+
+Signed-off-by: MÓZES Ádám István 
+---
+ src/backend.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/backend.py b/src/backend.py
+index 2cc539a5..82ff1496 100644
+--- a/src/backend.py
 b/src/backend.py
+@@ -291,7 +291,7 @@ class Backend():
+ props = dollar[7:]
+ if len(props) > 0:
+ if ',' in props:
+-if props[0] is not ',':
++if props[0] != ',':
+ w = props[:props.index(',')]
+ h = int(props[props.index(',') + 1:])
+ else:
+-- 
+2.25.1
+


[arch-commits] Commit in ponysay/repos/community-any (3 files)

2020-11-07 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, November 8, 2020 @ 04:55:25
  Author: svenstaro
Revision: 746453

archrelease: copy trunk to community-any

Added:
  ponysay/repos/community-any/PKGBUILD
(from rev 746452, ponysay/trunk/PKGBUILD)
  ponysay/repos/community-any/fix-do-not-compare-literal.patch
(from rev 746452, ponysay/trunk/fix-do-not-compare-literal.patch)
Deleted:
  ponysay/repos/community-any/PKGBUILD

--+
 PKGBUILD |   48 +
 fix-do-not-compare-literal.patch |   36 +++
 2 files changed, 64 insertions(+), 20 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-08 04:55:19 UTC (rev 746452)
+++ PKGBUILD2020-11-08 04:55:25 UTC (rev 746453)
@@ -1,20 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Erkin Batu Altunbaş 
-
-pkgname=ponysay
-pkgver=3.0.3
-pkgrel=2
-pkgdesc="cowsay reimplemention for ponies"
-url="http://erkin.github.com/ponysay/;
-arch=('any')
-license=('GPL3')
-depends=('python' 'bash')
-makedepends=('git')
-source=("ponysay-$pkgver.tar.gz::https://github.com/erkin/ponysay/tarball/$pkgver;)
-sha512sums=('ee4340b3a4902465217fcf0e0a31acf2771697ebfff9ce1897d5e0062782efd36ceb91672a6eb45a9b70aeb7f50f48e2ebd7671dab3cf5af1ec4043f2767edd7')
-
-package() {
-  cd "$srcdir/erkin-ponysay-"*
-
-  python3 setup.py --prefix=/usr --dest-dir=$pkgdir --freedom=partial 
--everything --with-pdf=/usr/share/doc/ponysay --without-pdf-compression install
-}

Copied: ponysay/repos/community-any/PKGBUILD (from rev 746452, 
ponysay/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-08 04:55:25 UTC (rev 746453)
@@ -0,0 +1,28 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Erkin Batu Altunbaş 
+
+pkgname=ponysay
+pkgver=3.0.3
+pkgrel=3
+pkgdesc="cowsay reimplemention for ponies"
+url="http://erkin.github.com/ponysay/;
+arch=('any')
+license=('GPL3')
+depends=('python' 'bash')
+makedepends=('git')
+source=("ponysay-$pkgver.tar.gz::https://github.com/erkin/ponysay/tarball/$pkgver;
+fix-do-not-compare-literal.patch)
+sha512sums=('ee4340b3a4902465217fcf0e0a31acf2771697ebfff9ce1897d5e0062782efd36ceb91672a6eb45a9b70aeb7f50f48e2ebd7671dab3cf5af1ec4043f2767edd7'
+
'372e26a1293d05a37821a5edcbfc2ebb41d751ba4226fa503c07e815c1bb32b6c000293c584babd96e48614bf3b9c4321deb8b28587a37a56783a434615ddeb5')
+
+prepare() {
+  cd "$srcdir/erkin-ponysay-"*
+
+  patch -Np1 -i "$srcdir"/fix-do-not-compare-literal.patch
+}
+
+package() {
+  cd "$srcdir/erkin-ponysay-"*
+
+  python3 setup.py --prefix=/usr --dest-dir="$pkgdir" --freedom=partial 
--everything --with-pdf=/usr/share/doc/ponysay --without-pdf-compression install
+}

Copied: ponysay/repos/community-any/fix-do-not-compare-literal.patch (from rev 
746452, ponysay/trunk/fix-do-not-compare-literal.patch)
===
--- fix-do-not-compare-literal.patch(rev 0)
+++ fix-do-not-compare-literal.patch2020-11-08 04:55:25 UTC (rev 746453)
@@ -0,0 +1,36 @@
+From 69c23e3ae1e1e9e9f1ee3a06a706d755a4b1de48 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?M=C3=93ZES=20=C3=81d=C3=A1m=20Istv=C3=A1n?=
+ 
+Date: Sat, 16 Nov 2019 09:58:28 +0100
+Subject: [PATCH] fix: do not compare literal with "is not"
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Python3.8 issued the following warning on each ponysay invocation:
+
+/bin/ponysay/backend.py:294: SyntaxWarning: "is not" with a literal. Did you 
mean "!="?
+
+This has been corrected here.
+
+Signed-off-by: MÓZES Ádám István 
+---
+ src/backend.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/backend.py b/src/backend.py
+index 2cc539a5..82ff1496 100644
+--- a/src/backend.py
 b/src/backend.py
+@@ -291,7 +291,7 @@ class Backend():
+ props = dollar[7:]
+ if len(props) > 0:
+ if ',' in props:
+-if props[0] is not ',':
++if props[0] != ',':
+ w = props[:props.index(',')]
+ h = int(props[props.index(',') + 1:])
+ else:
+-- 
+2.25.1
+


[arch-commits] Commit in qemu/repos/extra-x86_64 (9 files)

2020-11-07 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, November 8, 2020 @ 03:53:54
  Author: svenstaro
Revision: 399614

archrelease: copy trunk to extra-x86_64

Added:
  qemu/repos/extra-x86_64/65-kvm.rules
(from rev 399613, qemu/trunk/65-kvm.rules)
  qemu/repos/extra-x86_64/PKGBUILD
(from rev 399613, qemu/trunk/PKGBUILD)
  qemu/repos/extra-x86_64/qemu-guest-agent.install
(from rev 399613, qemu/trunk/qemu-guest-agent.install)
  qemu/repos/extra-x86_64/qemu-guest-agent.service
(from rev 399613, qemu/trunk/qemu-guest-agent.service)
  qemu/repos/extra-x86_64/qemu.install
(from rev 399613, qemu/trunk/qemu.install)
Deleted:
  qemu/repos/extra-x86_64/65-kvm.rules
  qemu/repos/extra-x86_64/PKGBUILD
  qemu/repos/extra-x86_64/qemu-ga.service
  qemu/repos/extra-x86_64/qemu.install

--+
 65-kvm.rules |2 
 PKGBUILD |  429 ++---
 qemu-ga.service  |9 
 qemu-guest-agent.install |6 
 qemu-guest-agent.service |9 
 qemu.install |   16 -
 6 files changed, 239 insertions(+), 232 deletions(-)

Deleted: 65-kvm.rules
===
--- 65-kvm.rules2020-11-08 03:53:45 UTC (rev 399613)
+++ 65-kvm.rules2020-11-08 03:53:54 UTC (rev 399614)
@@ -1 +0,0 @@
-KERNEL=="vhost-net", GROUP="kvm", MODE="0660", TAG+="uaccess", 
OPTIONS+="static_node=vhost-net"

Copied: qemu/repos/extra-x86_64/65-kvm.rules (from rev 399613, 
qemu/trunk/65-kvm.rules)
===
--- 65-kvm.rules(rev 0)
+++ 65-kvm.rules2020-11-08 03:53:54 UTC (rev 399614)
@@ -0,0 +1 @@
+KERNEL=="vhost-net", GROUP="kvm", MODE="0660", TAG+="uaccess", 
OPTIONS+="static_node=vhost-net"

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-08 03:53:45 UTC (rev 399613)
+++ PKGBUILD2020-11-08 03:53:54 UTC (rev 399614)
@@ -1,214 +0,0 @@
-# Maintainer: Tobias Powalowski 
-# Contributor: Sébastien "Seblu" Luttringer 
-
-pkgbase=qemu
-pkgname=(qemu qemu-headless qemu-arch-extra qemu-headless-arch-extra
- qemu-block-{iscsi,rbd,gluster} qemu-guest-agent)
-pkgdesc="A generic and open source machine emulator and virtualizer"
-pkgver=5.1.0
-pkgrel=2
-arch=(x86_64)
-license=(GPL2 LGPL2.1)
-url="https://wiki.qemu.org/;
-_headlessdeps=(seabios gnutls libpng libaio numactl libnfs
-   lzo snappy curl vde2 libcap-ng spice libcacard usbredir libslirp
-   libssh zstd liburing)
-depends=(virglrenderer sdl2 vte3 libpulse libjack.so brltty 
"${_headlessdeps[@]}")
-makedepends=(spice-protocol python ceph libiscsi glusterfs python-sphinx 
xfsprogs)
-source=(https://download.qemu.org/qemu-$pkgver.tar.xz{,.sig}
-qemu-ga.service
-65-kvm.rules)
-sha512sums=('e213edb71d93d5167ddce7546220ecb7b52a7778586a4f476f65bd1e510c9cfc6d1876238a7b501d9cc3fd31cc2ae4b7fb9e753bc3f12cc17cd16dfce2a96ba3'
-'SKIP'
-
'269c0f0bacbd06a3d817fde02dce26c99d9f55c9e3b74bb710bd7e5cdde7a66b904d2eb794c8a605bf9305e4e3dee261a6e7d4ec9d9134144754914039f176e4'
-
'bdf05f99407491e27a03aaf845b7cc8acfa2e0e59968236f10ffc905e5e3d5e8569df496fd71c887da2b5b8d1902494520c7da2d3a8258f7fd93a881dd610c99')
-validpgpkeys=('CEACC9E15534EBABB82D3FA03353C9CEF108B584') # Michael Roth 

-
-case $CARCH in
-  i?86) _corearch=i386 ;;
-  x86_64) _corearch=x86_64 ;;
-esac
-
-prepare() {
-  mkdir build-{full,headless}
-  mkdir -p extra-arch-{full,headless}/usr/{bin,share/qemu}
-}
-
-build() {
-  _build full \
---audio-drv-list="pa alsa sdl jack"
-
-  _build headless \
---audio-drv-list= \
---disable-sdl \
---disable-gtk \
---disable-vte \
---disable-brlapi \
---disable-opengl \
---disable-virglrenderer
-}
-
-_build() (
-  cd build-$1
-
-  ../${pkgname}-${pkgver}/configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---libexecdir=/usr/lib/qemu \
---extra-ldflags="$LDFLAGS" \
---smbd=/usr/bin/smbd \
---enable-modules \
---enable-sdl \
---enable-slirp=system \
---enable-xfsctl \
-"${@:2}"
-
-  make
-)
-
-package_qemu() {
-  optdepends=('qemu-arch-extra: extra architectures support')
-  provides=(qemu-headless)
-  conflicts=(qemu-headless)
-  replaces=(qemu-kvm)
-
-  _package full
-}
-
-package_qemu-headless() {
-  pkgdesc="QEMU without GUI"
-  depends=("${_headlessdeps[@]}")
-  optdepends=('qemu-headless-arch-extra: extra architectures support')
-
-  _package headless
-}
-
-_package() {
-  optdepends+=('samba: SMB/CIFS server support'
-   'qemu-block-iscsi: iSCSI block support'
-   'qemu-block-rbd: RBD block support'
-   'qemu-block-gluster: glusterfs block support')
-  install=qemu.install
-  options=(!strip !emptydirs)
-
-  make -C build-$1 DESTDIR="$pkgdir" install "${@:2}"
-
-  # systemd stuff
-  install -Dm644 65-kvm.rules 

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

2020-11-07 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, November 8, 2020 @ 03:53:45
  Author: svenstaro
Revision: 399613

upgpkg: qemu 5.1.0-3: Rename qemu-ga.service to qemu-guest-agent.service

This is in line with what pretty much all other distros use.

Added:
  qemu/trunk/qemu-guest-agent.install
  qemu/trunk/qemu-guest-agent.service
Modified:
  qemu/trunk/PKGBUILD
Deleted:
  qemu/trunk/qemu-ga.service

--+
 PKGBUILD |7 ---
 qemu-ga.service  |9 -
 qemu-guest-agent.install |6 ++
 qemu-guest-agent.service |9 +
 4 files changed, 19 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-08 00:46:27 UTC (rev 399612)
+++ PKGBUILD2020-11-08 03:53:45 UTC (rev 399613)
@@ -6,7 +6,7 @@
  qemu-block-{iscsi,rbd,gluster} qemu-guest-agent)
 pkgdesc="A generic and open source machine emulator and virtualizer"
 pkgver=5.1.0
-pkgrel=2
+pkgrel=3
 arch=(x86_64)
 license=(GPL2 LGPL2.1)
 url="https://wiki.qemu.org/;
@@ -16,7 +16,7 @@
 depends=(virglrenderer sdl2 vte3 libpulse libjack.so brltty 
"${_headlessdeps[@]}")
 makedepends=(spice-protocol python ceph libiscsi glusterfs python-sphinx 
xfsprogs)
 source=(https://download.qemu.org/qemu-$pkgver.tar.xz{,.sig}
-qemu-ga.service
+qemu-guest-agent.service
 65-kvm.rules)
 
sha512sums=('e213edb71d93d5167ddce7546220ecb7b52a7778586a4f476f65bd1e510c9cfc6d1876238a7b501d9cc3fd31cc2ae4b7fb9e753bc3f12cc17cd16dfce2a96ba3'
 'SKIP'
@@ -205,9 +205,10 @@
 package_qemu-guest-agent() {
   pkgdesc="QEMU Guest Agent"
   depends=(gcc-libs glib2 libudev.so)
+  install=qemu-guest-agent.install
 
   install -D build-full/qemu-ga "$pkgdir/usr/bin/qemu-ga"
-  install -Dm644 qemu-ga.service 
"$pkgdir/usr/lib/systemd/system/qemu-ga.service"
+  install -Dm644 qemu-guest-agent.service 
"$pkgdir/usr/lib/systemd/system/qemu-guest-agent.service"
   install -Dm755 "$srcdir/qemu-$pkgver/scripts/qemu-guest-agent/fsfreeze-hook" 
"$pkgdir/etc/qemu/fsfreeze-hook"
 }
 

Deleted: qemu-ga.service
===
--- qemu-ga.service 2020-11-08 00:46:27 UTC (rev 399612)
+++ qemu-ga.service 2020-11-08 03:53:45 UTC (rev 399613)
@@ -1,9 +0,0 @@
-[Unit]
-Description=QEMU Guest Agent
-ConditionPathExists=/dev/virtio-ports/org.qemu.guest_agent.0
-
-[Service]
-ExecStart=/usr/bin/qemu-ga
-
-[Install]
-WantedBy=multi-user.target

Added: qemu-guest-agent.install
===
--- qemu-guest-agent.install(rev 0)
+++ qemu-guest-agent.install2020-11-08 03:53:45 UTC (rev 399613)
@@ -0,0 +1,6 @@
+post_upgrade() {
+echo "qemu-ga.service was renamed to qemu-guest-agent.service"
+echo "You might want to switch to the new service name:"
+echo "# systemctl disable qemu-ga.service"
+echo "# systemctl enable qemu-guest-agent.service"
+}

Added: qemu-guest-agent.service
===
--- qemu-guest-agent.service(rev 0)
+++ qemu-guest-agent.service2020-11-08 03:53:45 UTC (rev 399613)
@@ -0,0 +1,9 @@
+[Unit]
+Description=QEMU Guest Agent
+ConditionPathExists=/dev/virtio-ports/org.qemu.guest_agent.0
+
+[Service]
+ExecStart=/usr/bin/qemu-ga
+
+[Install]
+WantedBy=multi-user.target


[arch-commits] Commit in dbeaver/repos/community-x86_64 (12 files)

2020-11-07 Thread Fabio Castelli via arch-commits
Date: Sunday, November 8, 2020 @ 03:16:37
  Author: muflone
Revision: 746451

archrelease: copy trunk to community-x86_64

Added:
  dbeaver/repos/community-x86_64/PKGBUILD
(from rev 746450, dbeaver/trunk/PKGBUILD)
  dbeaver/repos/community-x86_64/dbeaver.desktop
(from rev 746450, dbeaver/trunk/dbeaver.desktop)
  dbeaver/repos/community-x86_64/dbeaver.hook
(from rev 746450, dbeaver/trunk/dbeaver.hook)
  dbeaver/repos/community-x86_64/dbeaver.install
(from rev 746450, dbeaver/trunk/dbeaver.install)
  dbeaver/repos/community-x86_64/dbeaver.profile.gz
(from rev 746450, dbeaver/trunk/dbeaver.profile.gz)
  dbeaver/repos/community-x86_64/dbeaver.sh
(from rev 746450, dbeaver/trunk/dbeaver.sh)
Deleted:
  dbeaver/repos/community-x86_64/PKGBUILD
  dbeaver/repos/community-x86_64/dbeaver.desktop
  dbeaver/repos/community-x86_64/dbeaver.hook
  dbeaver/repos/community-x86_64/dbeaver.install
  dbeaver/repos/community-x86_64/dbeaver.profile.gz
  dbeaver/repos/community-x86_64/dbeaver.sh

-+
 PKGBUILD|  216 +++---
 dbeaver.desktop |   28 +++
 dbeaver.hook|   24 +++---
 dbeaver.install |   10 +-
 dbeaver.sh  |   12 +--
 5 files changed, 145 insertions(+), 145 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-08 03:16:13 UTC (rev 746450)
+++ PKGBUILD2020-11-08 03:16:37 UTC (rev 746451)
@@ -1,108 +0,0 @@
-# Maintainer: Muflone http://www.muflone.com/contacts/english/
-# Contributor: Arne Hoch 
-
-pkgname=dbeaver
-pkgver=7.2.3
-pkgrel=1
-pkgdesc="Free universal SQL Client for developers and database administrators 
(community edition)"
-arch=('x86_64')
-url="https://dbeaver.io/;
-license=("Apache")
-depends=('java-runtime>=8' 'gtk3' 'gtk-update-icon-cache' 'libsecret')
-makedepends=('maven' 'java-runtime>=8')
-optdepends=('dbeaver-plugin-office: export data in Microsoft Office Excel 
format'
-'dbeaver-plugin-svg-format: save diagrams in SVG format')
-source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/serge-rider/dbeaver/archive/${pkgver}.tar.gz;
-"${pkgname}.desktop"
-"${pkgname}.sh"
-"${pkgname}.profile.gz"
-"${pkgname}.hook"
-"${pkgname}.install")
-sha256sums=('320fd606b1e18c5361ae355cbcb441d9d6856d0fff74fa90a223bb00bb55288d'
-'27573b6ddb62a3d4dde4841a633e9b52cb020deb338b327a6d460fd3a29c8ded'
-'3d1138ef8ec6d413d9552cab0444bd3b692fa808e9798a16b280ab17b6ca3659'
-'1863e74bdcf22b7328e6e8487cbebff7d5360e34bde85c1dd226b168b4737034'
-'f8b763ca210bfa4d9a4e407b656ba4f5d1bf2f3f54c67044f7a4dd0c3625fc22'
-'f8d65dd933049b587a5815ea75a30ef944300b812df383ca1c2dcd68280bc7ab')
-install="${pkgname}.install"
-
-prepare() {
-  # Fix version number in profile file
-  gzip --decompress --keep --stdout "${pkgname}.profile.gz" | 
-sed "s/DBEAVER_VERSION/${pkgver}/g" |
-gzip -9 > "${pkgname}.profile-${pkgver}.gz"
-
-  # Download dependencies during prepare FS#55873
-  # https://bugs.archlinux.org/task/55873
-  cd "${pkgname}-${pkgver}"
-  export MAVEN_OPTS="-Xmx2048m"
-  mvn --batch-mode validate
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  mvn --batch-mode package
-}
-
-package() {
-  cd "${pkgname}-${pkgver}/product/standalone"
-  # Install icons into /usr/share/icons/hicolor
-  for _size in 16 32 48 64 128 256 512
-  do
-install -m 644 -D "icons-sources/icon_${_size}x${_size}.png" \
-  "${pkgdir}/usr/share/icons/hicolor/${_size}x${_size}/apps/dbeaver.png"
-  done
-
-  # Move into the target directory
-  cd "target/products/org.jkiss.dbeaver.core.product/linux/gtk/${CARCH}"
-
-  # Initially install everything into /usr/lib/dbeaver
-  install -m 755 -d "${pkgdir}/usr/lib"
-  cp -r "dbeaver" "${pkgdir}/usr/lib/${pkgname}"
-
-  # Move shared data to /usr/share/dbeaver
-  cd "${pkgdir}/usr/lib/${pkgname}"
-  install -m 755 -d "${pkgdir}/usr/share/${pkgname}"
-  for _file in configuration features p2 .eclipseproduct artifacts.xml 
dbeaver.ini readme.txt
-  do
-mv "${_file}" "${pkgdir}/usr/share/${pkgname}"
-ln -s "/usr/share/${pkgname}/${_file}" .
-  done
-
-  # Install additional licenses
-  install -m 755 -d "${pkgdir}/usr/share/licenses"
-  mv licenses "${pkgdir}/usr/share/licenses/${pkgname}"
-
-  # Install icons
-  install -m 755 -d "${pkgdir}/usr/share/pixmaps"
-  mv dbeaver.png "${pkgdir}/usr/share/pixmaps/${pkgname}.png"
-  mv icon.xpm "${pkgdir}/usr/share/pixmaps/${pkgname}.xpm"
-
-  # Install executable script into /usr/bin
-  install -m 755 -d "${pkgdir}/usr/bin"
-  install -m 755 "${srcdir}/dbeaver.sh" "${pkgdir}/usr/bin/${pkgname}"
-
-  # Install application launcher into /usr/share/applications
-  install -m 755 -d "${pkgdir}/usr/share/applications"
-  install -m 755 -t "${pkgdir}/usr/share/applications" 
"${srcdir}/${pkgname}.desktop"
-
-  # Clean up and install new profile
-  rm -rf 

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

2020-11-07 Thread Fabio Castelli via arch-commits
Date: Sunday, November 8, 2020 @ 03:16:13
  Author: muflone
Revision: 746450

upgpkg: dbeaver 7.2.4-1

Modified:
  dbeaver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-08 00:39:36 UTC (rev 746449)
+++ PKGBUILD2020-11-08 03:16:13 UTC (rev 746450)
@@ -2,7 +2,7 @@
 # Contributor: Arne Hoch 
 
 pkgname=dbeaver
-pkgver=7.2.3
+pkgver=7.2.4
 pkgrel=1
 pkgdesc="Free universal SQL Client for developers and database administrators 
(community edition)"
 arch=('x86_64')
@@ -18,7 +18,7 @@
 "${pkgname}.profile.gz"
 "${pkgname}.hook"
 "${pkgname}.install")
-sha256sums=('320fd606b1e18c5361ae355cbcb441d9d6856d0fff74fa90a223bb00bb55288d'
+sha256sums=('355a302622a7fc8d9a083c40fb6d8dacafeda7d8eb0505db2e2d0da024178541'
 '27573b6ddb62a3d4dde4841a633e9b52cb020deb338b327a6d460fd3a29c8ded'
 '3d1138ef8ec6d413d9552cab0444bd3b692fa808e9798a16b280ab17b6ca3659'
 '1863e74bdcf22b7328e6e8487cbebff7d5360e34bde85c1dd226b168b4737034'


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

2020-11-07 Thread Jan Steffens via arch-commits
Date: Sunday, November 8, 2020 @ 00:46:27
  Author: heftig
Revision: 399612

archrelease: copy trunk to extra-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-08 00:46:14 UTC (rev 399611)
+++ PKGBUILD2020-11-08 00:46:27 UTC (rev 399612)
@@ -1,112 +0,0 @@
-# Maintainer: Eric Bélanger 
-
-pkgbase=imagemagick6
-pkgname=(libmagick6)
-pkgver=6.9.11.35
-pkgrel=1
-pkgdesc="An image viewing/manipulation program (version 6)"
-url="https://legacy.imagemagick.org/;
-arch=(x86_64)
-license=(custom)
-depends=(libltdl lcms2 fontconfig libxext liblqr libraqm libpng)
-makedepends=(ghostscript openexr libwmf librsvg libxml2 openjpeg2 libraw 
opencl-headers libwebp libzip
- chrpath ocl-icd glu ghostpcl ghostxps libheif jbigkit)
-checkdepends=(gsfonts ttf-dejavu)
-_relname=ImageMagick-${pkgver%%.*}
-_tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
-source=(https://www.imagemagick.org/download/$_tarname.tar.xz{,.asc}
-arch-fonts.diff)
-sha256sums=('dcbaa0a3762ae685b1debe0ad12852e775204829a363fb992d52ff7511341713'
-'SKIP'
-'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
-validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae
-
-prepare() {
-  mkdir -p binpkg/usr/lib/pkgconfig {binpkg,docpkg}/usr/share
-
-  cd $_tarname
-
-  # Fix up typemaps to match our packages, where possible
-  patch -Np1 -i ../arch-fonts.diff
-
-  # Don't run auto(re)conf; assumes use of git
-}
-
-build() {
-  cd $_tarname
-  ./configure \
-PKG_CONFIG="/usr/bin/env PKG_CONFIG_PATH=/usr/lib/$pkgbase/pkgconfig 
pkg-config" \
---prefix=/usr \
---sysconfdir=/etc \
---enable-shared \
---with-dejavu-font-dir=/usr/share/fonts/TTF \
---with-gs-font-dir=/usr/share/fonts/gsfonts \
-PSDelegate=/usr/bin/gs \
-XPSDelegate=/usr/bin/gxps \
-PCLDelegate=/usr/bin/gpcl6 \
---enable-hdri \
---enable-opencl \
---without-gslib \
---with-lqr \
---with-modules \
---with-openexr \
---with-openjp2 \
---with-perl \
---with-perl-options=INSTALLDIRS=vendor \
---with-rsvg \
---with-webp \
---with-wmf \
---with-xml \
---without-autotrace \
---without-djvu \
---without-dps \
---without-fftw \
---without-fpx \
---without-gcc-arch \
---without-gvc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() (
-  cd $_tarname
-  ulimit -n 4096
-  make check || :
-)
-
-package_libmagick6() {
-  pkgdesc="${pkgdesc/)/; library)}"
-  optdepends=('ghostscript: PS/PDF support'
-  'libheif: HEIF support'
-  'libraw: DNG support'
-  'librsvg: SVG support'
-  'libwebp: WEBP support'
-  'libwmf: WMF support'
-  'libxml2: Magick Scripting Language'
-  'ocl-icd: OpenCL support'
-  'openexr: OpenEXR support'
-  'openjpeg2: JPEG2000 support'
-  'pango: Text rendering')
-  
backup=(etc/$_relname/{coder,colors,delegates,log,magic,mime,policy,quantization-table,thresholds,type,type-{dejavu,ghostscript}}.xml)
-  options=('!docs' '!emptydirs' libtool)
-
-  cd $_tarname
-  make DESTDIR="$pkgdir" install pkgconfigdir="/usr/lib/$pkgbase/pkgconfig"
-
-  rm "$pkgdir"/etc/$_relname/type-{apple,urw-base35,windows}.xml
-  rm "$pkgdir"/usr/lib/*.la
-
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
-
-# Drop tools
-  cd ../binpkg
-  mv "$pkgdir/usr/bin" usr/
-  mv "$pkgdir/usr/lib/perl5" usr/lib/
-  mv "$pkgdir/usr/share/man" usr/share/
-
-# Harden security policy https://bugs.archlinux.org/task/62785
-  sed -e '/<\/policymap>/i \ \ ' -i "$pkgdir"/etc/ImageMagick-6/policy.xml
-
-# Use correct options for inkscape<1.0
-  sed -e 's|--export-file|--export-png|' -i 
"$pkgdir"/etc/ImageMagick-6/delegates.xml
-}

Copied: imagemagick6/repos/extra-x86_64/PKGBUILD (from rev 399611, 
imagemagick6/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-08 00:46:27 UTC (rev 399612)
@@ -0,0 +1,112 @@
+# Maintainer: Eric Bélanger 
+
+pkgbase=imagemagick6
+pkgname=(libmagick6)
+pkgver=6.9.11.37
+pkgrel=1
+pkgdesc="An image viewing/manipulation program (version 6)"
+url="https://legacy.imagemagick.org/;
+arch=(x86_64)
+license=(custom)
+depends=(libltdl lcms2 

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

2020-11-07 Thread Jan Steffens via arch-commits
Date: Sunday, November 8, 2020 @ 00:46:14
  Author: heftig
Revision: 399611

6.9.11.37-1

Modified:
  imagemagick6/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-08 00:36:44 UTC (rev 399610)
+++ PKGBUILD2020-11-08 00:46:14 UTC (rev 399611)
@@ -2,7 +2,7 @@
 
 pkgbase=imagemagick6
 pkgname=(libmagick6)
-pkgver=6.9.11.35
+pkgver=6.9.11.37
 pkgrel=1
 pkgdesc="An image viewing/manipulation program (version 6)"
 url="https://legacy.imagemagick.org/;
@@ -16,7 +16,7 @@
 _tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
 source=(https://www.imagemagick.org/download/$_tarname.tar.xz{,.asc}
 arch-fonts.diff)
-sha256sums=('dcbaa0a3762ae685b1debe0ad12852e775204829a363fb992d52ff7511341713'
+sha256sums=('d1369d56727c3c0201d15180ece09902fe406325037c692ee8ccaf90a17726a7'
 'SKIP'
 'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
 validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Sunday, November 8, 2020 @ 00:39:36
  Author: felixonmars
Revision: 746449

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-summoner-tui/repos/community-staging-x86_64/
  haskell-summoner-tui/repos/community-staging-x86_64/PKGBUILD
(from rev 746448, haskell-summoner-tui/trunk/PKGBUILD)

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

Copied: haskell-summoner-tui/repos/community-staging-x86_64/PKGBUILD (from rev 
746448, haskell-summoner-tui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-08 00:39:36 UTC (rev 746449)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Contributor: berberman 
+
+_hkgname=summoner-tui
+pkgname=haskell-summoner-tui
+pkgver=2.0.1.1
+pkgrel=52
+pkgdesc="Tool for scaffolding fully configured batteries-included 
production-level Haskell projects using TUI."
+url="https://github.com/kowainik/summoner;
+license=('MPL2')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-brick' 'haskell-colourista' 'haskell-microlens' 
'haskell-microlens-th'
+ 'haskell-relude' 'haskell-summoner' 'haskell-validation-selective' 
'haskell-vty')
+makedepends=('ghc' 'uusi')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('9f840f25d72c54b4b5ed0c5e6755e52ca71e9961759de6bd0046d567bd1f2c27')
+
+prepare(){
+  cd $_hkgname-$pkgver
+  echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+  uusi $_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 \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  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-summoner-tui/trunk (PKGBUILD)

2020-11-07 Thread Felix Yan via arch-commits
Date: Sunday, November 8, 2020 @ 00:39:27
  Author: felixonmars
Revision: 746448

upgpkg: haskell-summoner-tui 2.0.1.1-52: rebuild with generic-data 0.9.2.0

Modified:
  haskell-summoner-tui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-08 00:38:22 UTC (rev 746447)
+++ PKGBUILD2020-11-08 00:39:27 UTC (rev 746448)
@@ -4,7 +4,7 @@
 _hkgname=summoner-tui
 pkgname=haskell-summoner-tui
 pkgver=2.0.1.1
-pkgrel=51
+pkgrel=52
 pkgdesc="Tool for scaffolding fully configured batteries-included 
production-level Haskell projects using TUI."
 url="https://github.com/kowainik/summoner;
 license=('MPL2')


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Sunday, November 8, 2020 @ 00:38:14
  Author: felixonmars
Revision: 746446

upgpkg: haskell-summoner 2.0.1.1-48: rebuild with generic-data 0.9.2.0

Modified:
  haskell-summoner/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-08 00:36:50 UTC (rev 746445)
+++ PKGBUILD2020-11-08 00:38:14 UTC (rev 746446)
@@ -4,7 +4,7 @@
 _hkgname=summoner
 pkgname=haskell-summoner
 pkgver=2.0.1.1
-pkgrel=47
+pkgrel=48
 pkgdesc="Tool for scaffolding fully configured batteries-included 
production-level Haskell projects."
 url="https://github.com/kowainik/summoner;
 license=('MPL2')


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Sunday, November 8, 2020 @ 00:38:22
  Author: felixonmars
Revision: 746447

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-summoner/repos/community-staging-x86_64/PKGBUILD (from rev 
746446, haskell-summoner/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-08 00:38:22 UTC (rev 746447)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+# Contributor: berberman 
+
+_hkgname=summoner
+pkgname=haskell-summoner
+pkgver=2.0.1.1
+pkgrel=48
+pkgdesc="Tool for scaffolding fully configured batteries-included 
production-level Haskell projects."
+url="https://github.com/kowainik/summoner;
+license=('MPL2')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-colourista' 
'haskell-generic-data' 'haskell-gitrev'
+ 'haskell-neat-interpolation' 'haskell-optparse-applicative' 
'haskell-relude'
+ 'haskell-shellmet' 'haskell-tomland' 'haskell-validation-selective')
+makedepends=('ghc' 'uusi' 'haskell-hedgehog' 'haskell-hspec' 
'haskell-hspec-hedgehog' 'haskell-tree-diff')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('5b6eee2848e2fb0b65d34f4a980ecd6e7766629a42394348dc2166e2216fc496')
+
+prepare(){
+  cd $_hkgname-$pkgver
+  echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+  uusi $_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 \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  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 hopenpgp-tools/repos (2 files)

2020-11-07 Thread Felix Yan via arch-commits
Date: Sunday, November 8, 2020 @ 00:36:50
  Author: felixonmars
Revision: 746445

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hopenpgp-tools/repos/community-staging-x86_64/PKGBUILD (from rev 
746444, hopenpgp-tools/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-08 00:36:50 UTC (rev 746445)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hopenpgp-tools
+pkgver=0.23.2
+pkgrel=4
+pkgdesc="hOpenPGP-based command-line tools"
+url="https://salsa.debian.org/clint/hopenpgp-tools;
+license=("AGPL3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-binary-conduit' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-crypto-pubkey'
+ 'haskell-cryptohash' 'haskell-errors' 'haskell-fgl' 
'haskell-graphviz' 'haskell-hopenpgp'
+ 'haskell-http-client' 'haskell-http-client-tls' 'haskell-http-types' 
'haskell-ixset-typed'
+ 'haskell-lens' 'haskell-monad-loops' 'haskell-openpgp-asciiarmor'
+ 'haskell-optparse-applicative' 'haskell-prettyprinter'
+ 'haskell-prettyprinter-ansi-terminal' 
'haskell-prettyprinter-convert-ansi-wl-pprint'
+ 'haskell-resourcet' 'haskell-time-locale-compat' 'haskell-yaml')
+makedepends=('alex' 'happy' 'ghc')
+source=(https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('4d6328c7f09730bc0173a59fa236520326befcd61372fe8d1180700a11dd1d392b1df1f682f3d1bc719929ea26225ee0145cad3dc00c3cbf3dca6b875369c8f7')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--docdir="/usr/share/doc/${pkgname}"
+runhaskell Setup build $MAKEFLAGS
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+rm "$pkgdir/usr/share/doc/hopenpgp-tools/LICENSE"
+rmdir "$pkgdir/usr/share/doc/hopenpgp-tools" "$pkgdir/usr/share/doc" 
"$pkgdir/usr/share"
+}


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

2020-11-07 Thread Jan Steffens via arch-commits
Date: Sunday, November 8, 2020 @ 00:36:26
  Author: heftig
Revision: 399609

3.38.0.1-1

Modified:
  seahorse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 23:44:16 UTC (rev 399608)
+++ PKGBUILD2020-11-08 00:36:26 UTC (rev 399609)
@@ -3,7 +3,7 @@
 # Contributor: Michel Brabants 
 
 pkgname=seahorse
-pkgver=3.38.0
+pkgver=3.38.0.1
 pkgrel=1
 epoch=1
 pkgdesc="GNOME application for managing PGP keys."
@@ -14,7 +14,7 @@
  libhandy)
 makedepends=(libldap yelp-tools gobject-introspection vala git meson)
 provides=(x11-ssh-askpass)
-_commit=70fa2f78bf01f2eaaceb0e44566996058e580d13  # tags/3.38.0^0
+_commit=3a4a1d7fd2b610e945ebe3074518247a99c90a63  # tags/3.38.0.1^0
 source=("git+https://gitlab.gnome.org/GNOME/seahorse.git#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -25,7 +25,6 @@
 
 prepare() {
   cd $pkgname
-  git cherry-pick -n d7632ee9322c65840e63405f14b35b8c93c243b9  # system 
libhandy
 }
 
 build() {


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Sunday, November 8, 2020 @ 00:36:41
  Author: felixonmars
Revision: 746444

upgpkg: hopenpgp-tools 0.23.2-4: rebuild with generic-data 0.9.2.0

Modified:
  hopenpgp-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-08 00:34:49 UTC (rev 746443)
+++ PKGBUILD2020-11-08 00:36:41 UTC (rev 746444)
@@ -3,7 +3,7 @@
 
 pkgname=hopenpgp-tools
 pkgver=0.23.2
-pkgrel=3
+pkgrel=4
 pkgdesc="hOpenPGP-based command-line tools"
 url="https://salsa.debian.org/clint/hopenpgp-tools;
 license=("AGPL3")


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

2020-11-07 Thread Jan Steffens via arch-commits
Date: Sunday, November 8, 2020 @ 00:36:44
  Author: heftig
Revision: 399610

archrelease: copy trunk to extra-x86_64

Added:
  seahorse/repos/extra-x86_64/PKGBUILD
(from rev 399609, seahorse/trunk/PKGBUILD)
Deleted:
  seahorse/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-08 00:36:26 UTC (rev 399609)
+++ PKGBUILD2020-11-08 00:36:44 UTC (rev 399610)
@@ -1,42 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: Michel Brabants 
-
-pkgname=seahorse
-pkgver=3.38.0
-pkgrel=1
-epoch=1
-pkgdesc="GNOME application for managing PGP keys."
-url="https://wiki.gnome.org/Apps/Seahorse;
-arch=(x86_64)
-license=(GPL)
-depends=(gtk3 gcr libsecret libsoup gpgme org.freedesktop.secrets libpwquality
- libhandy)
-makedepends=(libldap yelp-tools gobject-introspection vala git meson)
-provides=(x11-ssh-askpass)
-_commit=70fa2f78bf01f2eaaceb0e44566996058e580d13  # tags/3.38.0^0
-source=("git+https://gitlab.gnome.org/GNOME/seahorse.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  git cherry-pick -n d7632ee9322c65840e63405f14b35b8c93c243b9  # system 
libhandy
-}
-
-build() {
-  arch-meson $pkgname build -D manpage=true
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}

Copied: seahorse/repos/extra-x86_64/PKGBUILD (from rev 399609, 
seahorse/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-08 00:36:44 UTC (rev 399610)
@@ -0,0 +1,41 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Michel Brabants 
+
+pkgname=seahorse
+pkgver=3.38.0.1
+pkgrel=1
+epoch=1
+pkgdesc="GNOME application for managing PGP keys."
+url="https://wiki.gnome.org/Apps/Seahorse;
+arch=(x86_64)
+license=(GPL)
+depends=(gtk3 gcr libsecret libsoup gpgme org.freedesktop.secrets libpwquality
+ libhandy)
+makedepends=(libldap yelp-tools gobject-introspection vala git meson)
+provides=(x11-ssh-askpass)
+_commit=3a4a1d7fd2b610e945ebe3074518247a99c90a63  # tags/3.38.0.1^0
+source=("git+https://gitlab.gnome.org/GNOME/seahorse.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build -D manpage=true
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Sunday, November 8, 2020 @ 00:34:49
  Author: felixonmars
Revision: 746443

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hopenpgp/repos/community-staging-x86_64/PKGBUILD (from rev 
746442, haskell-hopenpgp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-08 00:34:49 UTC (rev 746443)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hOpenPGP
+pkgname=haskell-hopenpgp
+pkgver=2.9.5
+pkgrel=4
+pkgdesc="Native Haskell implementation of OpenPGP (RFC4880)"
+url="http://floss.scru.org/hOpenPGP/;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-asn1-encoding' 
'haskell-attoparsec'
+ 'haskell-base16-bytestring' 'haskell-bifunctors' 'haskell-bz2' 
'haskell-binary-conduit'
+ 'haskell-conduit' 'haskell-conduit-extra' 'haskell-cryptonite'
+ 'haskell-crypto-cipher-types' 'haskell-errors' 'haskell-hashable'
+ 'haskell-incremental-parser' 'haskell-ixset-typed' 'haskell-lens' 
'haskell-memory'
+ 'haskell-monad-loops' 'haskell-nettle' 'haskell-network-uri'
+ 'haskell-openpgp-asciiarmor' 'haskell-prettyprinter' 
'haskell-resourcet' 'haskell-split'
+ 'haskell-time-locale-compat' 'haskell-unliftio-core' 
'haskell-unordered-containers'
+ 'haskell-zlib')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('7e0ecc73054c5315093e7f64f92bc7c62a7f9ff1b2c985595db427a063460b3fc692343079676631987c9a651212d1d739289f9b1e2ecb1c086b2c9bd5a4ba0e')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build $MAKEFLAGS
+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-hopenpgp/trunk (PKGBUILD)

2020-11-07 Thread Felix Yan via arch-commits
Date: Sunday, November 8, 2020 @ 00:34:40
  Author: felixonmars
Revision: 746442

upgpkg: haskell-hopenpgp 2.9.5-4: rebuild with generic-data 0.9.2.0

Modified:
  haskell-hopenpgp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-08 00:32:21 UTC (rev 746441)
+++ PKGBUILD2020-11-08 00:34:40 UTC (rev 746442)
@@ -3,7 +3,7 @@
 _hkgname=hOpenPGP
 pkgname=haskell-hopenpgp
 pkgver=2.9.5
-pkgrel=3
+pkgrel=4
 pkgdesc="Native Haskell implementation of OpenPGP (RFC4880)"
 url="http://floss.scru.org/hOpenPGP/;
 license=('MIT')


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Sunday, November 8, 2020 @ 00:32:13
  Author: felixonmars
Revision: 746440

upgpkg: haskell-ixset-typed 0.5-68: rebuild with generic-data 0.9.2.0

Modified:
  haskell-ixset-typed/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-08 00:31:17 UTC (rev 746439)
+++ PKGBUILD2020-11-08 00:32:13 UTC (rev 746440)
@@ -3,7 +3,7 @@
 _hkgname=ixset-typed
 pkgname=haskell-ixset-typed
 pkgver=0.5
-pkgrel=67
+pkgrel=68
 pkgdesc="Efficient relational queries on Haskell sets"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=('BSD')


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Sunday, November 8, 2020 @ 00:32:21
  Author: felixonmars
Revision: 746441

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-ixset-typed/repos/community-staging-x86_64/
  haskell-ixset-typed/repos/community-staging-x86_64/PKGBUILD
(from rev 746440, haskell-ixset-typed/trunk/PKGBUILD)

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

Copied: haskell-ixset-typed/repos/community-staging-x86_64/PKGBUILD (from rev 
746440, haskell-ixset-typed/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-08 00:32:21 UTC (rev 746441)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=ixset-typed
+pkgname=haskell-ixset-typed
+pkgver=0.5
+pkgrel=68
+pkgdesc="Efficient relational queries on Haskell sets"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-safecopy' 'haskell-syb')
+makedepends=('ghc' 'haskell-hunit' 'haskell-quickcheck' 'haskell-tasty' 
'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('0f25a540835805cdea68b46de5956afa887172cf16135f7d13e1c1f59e750652defae74d3ecebdacdb606ddf3bdc515c370e0b57f7ada21e3aa3f6e1b62fe582')
+
+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 $MAKEFLAGS
+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 "COPYING" 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING"
+}


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Sunday, November 8, 2020 @ 00:31:17
  Author: felixonmars
Revision: 746439

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-safecopy/repos/community-staging-x86_64/PKGBUILD (from rev 
746438, haskell-safecopy/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-08 00:31:17 UTC (rev 746439)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+
+_hkgname=safecopy
+pkgname=haskell-safecopy
+pkgver=0.10.3
+pkgrel=55
+pkgdesc="Binary serialization with version control."
+url="http://acid-state.seize.it/safecopy;
+license=('custom:PublicDomain')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-cereal' 'haskell-generic-data' 'haskell-old-time' 
'haskell-vector')
+makedepends=('ghc' 'haskell-hunit' 'haskell-lens' 'haskell-lens-action' 
'haskell-quickcheck'
+ 'haskell-quickcheck-instances' 'haskell-tasty' 
'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('bc90f4555b63c561003d5f87b230160005b2a505370322dbd2a5117261671efcac701ebe7578b20ee585989b2c13256363c13036710e5feaced56b593ce7e323')
+
+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 $MAKEFLAGS
+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"
+}


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Sunday, November 8, 2020 @ 00:31:08
  Author: felixonmars
Revision: 746438

upgpkg: haskell-safecopy 0.10.3-55: rebuild with generic-data 0.9.2.0

Modified:
  haskell-safecopy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-08 00:29:52 UTC (rev 746437)
+++ PKGBUILD2020-11-08 00:31:08 UTC (rev 746438)
@@ -3,7 +3,7 @@
 _hkgname=safecopy
 pkgname=haskell-safecopy
 pkgver=0.10.3
-pkgrel=54
+pkgrel=55
 pkgdesc="Binary serialization with version control."
 url="http://acid-state.seize.it/safecopy;
 license=('custom:PublicDomain')


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Sunday, November 8, 2020 @ 00:29:52
  Author: felixonmars
Revision: 746437

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-generic-data/repos/community-staging-x86_64/
  haskell-generic-data/repos/community-staging-x86_64/PKGBUILD
(from rev 746436, haskell-generic-data/trunk/PKGBUILD)

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

Copied: haskell-generic-data/repos/community-staging-x86_64/PKGBUILD (from rev 
746436, haskell-generic-data/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-08 00:29:52 UTC (rev 746437)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+
+_hkgname=generic-data
+pkgname=haskell-generic-data
+pkgver=0.9.2.0
+pkgrel=1
+pkgdesc="Deriving instances with GHC.Generics and related utilities"
+url="https://github.com/Lysxia/generic-data;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ap-normalize' 'haskell-base-orphans' 
'haskell-contravariant'
+ 'haskell-show-combinators')
+makedepends=('ghc' 'haskell-cabal-doctest' 'haskell-doctest' 
'haskell-generic-lens' 'haskell-glob'
+ 'haskell-inspection-testing' 'haskell-one-liner' 
'haskell-quickcheck'
+ 'haskell-show-combinators' 'haskell-tasty' 'haskell-tasty-hunit'
+ 'haskell-unordered-containers')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('b670a5ff77f9c918b13a5580a48e6b6e9583e34eefb4d348680bd3fb27c0ab85b028ffbc6010be09180021f6af32ceea8b8e7ade529d97cf59b43fb1655f2297')
+
+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 $MAKEFLAGS
+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-generic-data/trunk (PKGBUILD)

2020-11-07 Thread Felix Yan via arch-commits
Date: Sunday, November 8, 2020 @ 00:29:44
  Author: felixonmars
Revision: 746436

upgpkg: haskell-generic-data 0.9.2.0-1: rebuild with generic-data 0.9.2.0

Modified:
  haskell-generic-data/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-08 00:27:31 UTC (rev 746435)
+++ PKGBUILD2020-11-08 00:29:44 UTC (rev 746436)
@@ -2,8 +2,8 @@
 
 _hkgname=generic-data
 pkgname=haskell-generic-data
-pkgver=0.9.1.0
-pkgrel=27
+pkgver=0.9.2.0
+pkgrel=1
 pkgdesc="Deriving instances with GHC.Generics and related utilities"
 url="https://github.com/Lysxia/generic-data;
 license=('MIT')
@@ -15,7 +15,7 @@
  'haskell-show-combinators' 'haskell-tasty' 'haskell-tasty-hunit'
  'haskell-unordered-containers')
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('7c3204d0af5b4d33a2104518b0da365a55f8c14d66bd171d170dbaac2bd7496f635d41a46178eca066ac02f7a7bfb899d027a2b9dd6f67770d23b22c6309e79c')
+sha512sums=('b670a5ff77f9c918b13a5580a48e6b6e9583e34eefb4d348680bd3fb27c0ab85b028ffbc6010be09180021f6af32ceea8b8e7ade529d97cf59b43fb1655f2297')
 
 build() {
 cd $_hkgname-$pkgver


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Sunday, November 8, 2020 @ 00:26:49
  Author: felixonmars
Revision: 746432

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 746431, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-08 00:26:49 UTC (rev 746432)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=8.20201103
+pkgrel=4
+pkgdesc="Manage files with git, without checking their contents into git"
+url="https://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('x86_64')
+depends=('git' 'lsof' 'rsync' 'ghc-libs' 'haskell-aeson' 'haskell-async' 
'haskell-aws'
+ 'haskell-blaze-builder' 'haskell-bloomfilter' 'haskell-byteable' 
'haskell-case-insensitive'
+ 'haskell-clientsession' 'haskell-concurrent-output' 
'haskell-connection' 'haskell-conduit'
+ 'haskell-criterion' 'haskell-crypto-api' 'haskell-cryptonite' 
'haskell-data-default'
+ 'haskell-dav' 'haskell-dbus' 'haskell-disk-free-space' 'haskell-dlist'
+ 'haskell-edit-distance' 'haskell-fdo-notify' 'haskell-feed' 
'haskell-filepath-bytestring'
+ 'haskell-git-lfs' 'haskell-hinotify' 'haskell-hslogger' 
'haskell-http-client'
+ 'haskell-http-client-restricted' 'haskell-http-client-tls' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-ifelse' 'haskell-magic' 
'haskell-memory' 'haskell-microlens'
+ 'haskell-monad-control' 'haskell-monad-logger' 'haskell-mountpoints' 
'haskell-network'
+ 'haskell-network-info' 'haskell-network-multicast' 
'haskell-network-uri'
+ 'haskell-old-locale' 'haskell-optparse-applicative' 
'haskell-path-pieces'
+ 'haskell-persistent' 'haskell-persistent-sqlite' 
'haskell-persistent-template'
+ 'haskell-quickcheck' 'haskell-random' 'haskell-regex-tdfa' 
'haskell-resourcet'
+ 'haskell-safesemaphore' 'haskell-sandi' 'haskell-securemem' 
'haskell-shakespeare'
+ 'haskell-socks' 'haskell-split' 'haskell-stm-chans' 'haskell-tagsoup' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 
'haskell-tasty-rerun' 'haskell-torrent'
+ 'haskell-unix-compat' 'haskell-unliftio-core' 
'haskell-unordered-containers'
+ 'haskell-utf8-string' 'haskell-uuid' 'haskell-vector' 'haskell-wai' 
'haskell-wai-extra'
+ 'haskell-warp' 'haskell-warp-tls' 'haskell-yesod' 
'haskell-yesod-core' 'haskell-yesod-form'
+ 'haskell-yesod-static')
+makedepends=('chrpath' 'ghc')
+source=("git+https://git.joeyh.name/git/git-annex.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+build() {
+  cd git-annex
+  sed -e 's|--ghc-options|-O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla --docdir=/usr/share/doc/'$pkgname' --ghc-options|' \
+  -i Makefile
+  make GHC="ghc -dynamic" BUILDER=./Setup BUILDEROPTIONS=$MAKEFLAGS
+}
+
+package() {
+  cd git-annex
+  make GHC="ghc -dynamic" BUILDER=./Setup DESTDIR="$pkgdir" install
+
+  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
+}


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Sunday, November 8, 2020 @ 00:26:41
  Author: felixonmars
Revision: 746431

upgpkg: git-annex 8.20201103-4: rebuild with tasty-rerun 1.1.18

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-08 00:25:46 UTC (rev 746430)
+++ PKGBUILD2020-11-08 00:26:41 UTC (rev 746431)
@@ -3,7 +3,7 @@
 
 pkgname=git-annex
 pkgver=8.20201103
-pkgrel=3
+pkgrel=4
 pkgdesc="Manage files with git, without checking their contents into git"
 url="https://git-annex.branchable.com/;
 license=("AGPL3")


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Sunday, November 8, 2020 @ 00:25:37
  Author: felixonmars
Revision: 746429

upgpkg: python-peewee 3.14.0-1

Modified:
  python-peewee/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-08 00:22:14 UTC (rev 746428)
+++ PKGBUILD2020-11-08 00:25:37 UTC (rev 746429)
@@ -4,7 +4,7 @@
 # Contributor: juantascon
 
 pkgname=python-peewee
-pkgver=3.13.3
+pkgver=3.14.0
 pkgrel=1
 pkgdesc="a little orm"
 url="https://pypi.python.org/pypi/peewee/;
@@ -16,7 +16,7 @@
 makedepends=('python-setuptools' 'cython')
 checkdepends=('python-apsw' 'python-flask' 'python-psycopg2')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/coleifer/peewee/archive/$pkgver.tar.gz;)
-sha512sums=('e7df0b07092d96c9e4a4d5d4eb21b0bee14f133576c90cf518add5c59b1655d79677b29f5577a2d34d06c3f89b300f03da4529a2ad75c4ca9037244f66b15151')
+sha512sums=('083bb24952a6d05cd6c8376e185e050df0ab5b37bc553241128b0ed3b0ebdd322d9626c32943658324d413cff8ab0bb2ddf6c84d99a0fbe057c0e5c8ec93d7f9')
 
 build() {
   cd peewee-$pkgver


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Sunday, November 8, 2020 @ 00:25:46
  Author: felixonmars
Revision: 746430

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-08 00:25:37 UTC (rev 746429)
+++ PKGBUILD2020-11-08 00:25:46 UTC (rev 746430)
@@ -1,35 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Blackleg 
-# Contributor: Nidhogg
-# Contributor: juantascon
-
-pkgname=python-peewee
-pkgver=3.13.3
-pkgrel=1
-pkgdesc="a little orm"
-url="https://pypi.python.org/pypi/peewee/;
-arch=('x86_64')
-license=('MIT')
-depends=('python' 'sqlite')
-optdepends=('python-psycopg2: for PostgreSQL database support'
-'mysql-python: for MySQL database support')
-makedepends=('python-setuptools' 'cython')
-checkdepends=('python-apsw' 'python-flask' 'python-psycopg2')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/coleifer/peewee/archive/$pkgver.tar.gz;)
-sha512sums=('e7df0b07092d96c9e4a4d5d4eb21b0bee14f133576c90cf518add5c59b1655d79677b29f5577a2d34d06c3f89b300f03da4529a2ad75c4ca9037244f66b15151')
-
-build() {
-  cd peewee-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd peewee-$pkgver
-  python runtests.py
-}
-
-package() {
-  cd peewee-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-peewee/repos/community-x86_64/PKGBUILD (from rev 746429, 
python-peewee/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-08 00:25:46 UTC (rev 746430)
@@ -0,0 +1,35 @@
+# Maintainer: Felix Yan 
+# Contributor: Blackleg 
+# Contributor: Nidhogg
+# Contributor: juantascon
+
+pkgname=python-peewee
+pkgver=3.14.0
+pkgrel=1
+pkgdesc="a little orm"
+url="https://pypi.python.org/pypi/peewee/;
+arch=('x86_64')
+license=('MIT')
+depends=('python' 'sqlite')
+optdepends=('python-psycopg2: for PostgreSQL database support'
+'mysql-python: for MySQL database support')
+makedepends=('python-setuptools' 'cython')
+checkdepends=('python-apsw' 'python-flask' 'python-psycopg2')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/coleifer/peewee/archive/$pkgver.tar.gz;)
+sha512sums=('083bb24952a6d05cd6c8376e185e050df0ab5b37bc553241128b0ed3b0ebdd322d9626c32943658324d413cff8ab0bb2ddf6c84d99a0fbe057c0e5c8ec93d7f9')
+
+build() {
+  cd peewee-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd peewee-$pkgver
+  python runtests.py
+}
+
+package() {
+  cd peewee-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Sunday, November 8, 2020 @ 00:22:14
  Author: felixonmars
Revision: 746428

archrelease: copy trunk to community-staging-x86_64

Added:
  idris/repos/community-staging-x86_64/
  idris/repos/community-staging-x86_64/PKGBUILD
(from rev 746427, idris/trunk/PKGBUILD)

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

Copied: idris/repos/community-staging-x86_64/PKGBUILD (from rev 746427, 
idris/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-08 00:22:14 UTC (rev 746428)
@@ -0,0 +1,62 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=idris
+pkgver=1.3.3
+pkgrel=103
+pkgdesc="Functional Programming Language with Dependent Types"
+url="https://www.idris-lang.org/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-ansi-wl-pprint' 'haskell-async' 'haskell-base64-bytestring' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-cheapskate' 'haskell-code-page' 
'haskell-fingertree'
+ 'haskell-fsnotify' 'haskell-ieee754' 'haskell-libffi' 
'haskell-megaparsec'
+ 'haskell-network' 'haskell-optparse-applicative' 
'haskell-parser-combinators'
+ 'haskell-regex-tdfa' 'haskell-safe' 'haskell-split' 
'haskell-terminal-size'
+ 'haskell-uniplate' 'haskell-unordered-containers' 
'haskell-utf8-string' 'haskell-vector'
+ 'haskell-vector-binary-instances' 'haskell-zip-archive')
+makedepends=('ghc' 'uusi' 'haskell-tagged' 'haskell-tasty' 
'haskell-tasty-golden' 'haskell-tasty-rerun'
+ 'nodejs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/idris-lang/Idris-dev/archive/v$pkgver.tar.gz;
+
idris-haskeline-0.8.patch::https://github.com/idris-lang/Idris-dev/pull/4871.patch)
+sha512sums=('fc5c65847c8021ed691c7968043a04fcffaed3a44a6339f611fed616fddefa1b5bc2da8e7e6662dfa552981688a1c96571eadc197e4e50ba060de3c6ddbd03de'
+
'5f2efe359d5626c44f0c146f108dae4635ae2c8babf53841d5147d17d5be2460ab19a0b952492c68c93fa6470989bcf396cd7fbf6c8d44ac77792a54c3bbb141')
+
+prepare() {
+cd Idris-dev-$pkgver
+patch -p1 -i ../idris-haskeline-0.8.patch
+sed -i '1ioverride IDRIS := env LD_PRELOAD=$(shell ls 
../../dist/build/libHSidris-*-ghc*.so) $(IDRIS)' \
+libs/*/Makefile
+uusi idris.cabal
+}
+
+build() {
+cd Idris-dev-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fFFI -fGMP -f-release -f-freestanding -f-CI -f-execonly 
--ghc-option='-pie'
+LC_CTYPE=en_US.UTF-8 runhaskell Setup build $MAKEFLAGS
+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 Idris-dev-$pkgver
+# TODO: figure out the tests
+PATH="$PWD/dist/build:$PWD/dist/build/idris:$PATH" 
LD_LIBRARY_PATH="$PWD/dist/build" IDRIS_LIBRARY_PATH="$PWD/libs" runhaskell 
Setup test || echo "Tests failed"
+}
+
+package() {
+cd Idris-dev-$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 idris/trunk (PKGBUILD)

2020-11-07 Thread Felix Yan via arch-commits
Date: Sunday, November 8, 2020 @ 00:22:05
  Author: felixonmars
Revision: 746427

upgpkg: idris 1.3.3-103: rebuild with tasty-rerun 1.1.18

Modified:
  idris/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-08 00:05:01 UTC (rev 746426)
+++ PKGBUILD2020-11-08 00:22:05 UTC (rev 746427)
@@ -3,7 +3,7 @@
 
 pkgname=idris
 pkgver=1.3.3
-pkgrel=102
+pkgrel=103
 pkgdesc="Functional Programming Language with Dependent Types"
 url="https://www.idris-lang.org/;
 license=("BSD")


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Sunday, November 8, 2020 @ 00:05:01
  Author: felixonmars
Revision: 746426

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-tasty-rerun/repos/community-staging-x86_64/
  haskell-tasty-rerun/repos/community-staging-x86_64/PKGBUILD
(from rev 746425, haskell-tasty-rerun/trunk/PKGBUILD)

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

Copied: haskell-tasty-rerun/repos/community-staging-x86_64/PKGBUILD (from rev 
746425, haskell-tasty-rerun/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-08 00:05:01 UTC (rev 746426)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tasty-rerun
+pkgname=haskell-tasty-rerun
+pkgver=1.1.18
+pkgrel=1
+pkgdesc="Rerun only tests which failed in a previous test run"
+url="https://github.com/ocharles/tasty-rerun;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-optparse-applicative' 'haskell-split' 
'haskell-tagged' 'haskell-tasty')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('82672a8d2f37a56e9867bb6fa2b8c79dc40869262a1853b51067e9cf463aef78c4aa3d69cda32a06c3d226ef18c951789845e57a82cbad880f29d5415a659ced')
+
+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 $MAKEFLAGS
+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-tasty-rerun/trunk (PKGBUILD)

2020-11-07 Thread Felix Yan via arch-commits
Date: Sunday, November 8, 2020 @ 00:04:52
  Author: felixonmars
Revision: 746425

upgpkg: haskell-tasty-rerun 1.1.18-1: rebuild with tasty-rerun 1.1.18

Modified:
  haskell-tasty-rerun/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 23:44:31 UTC (rev 746424)
+++ PKGBUILD2020-11-08 00:04:52 UTC (rev 746425)
@@ -3,8 +3,8 @@
 
 _hkgname=tasty-rerun
 pkgname=haskell-tasty-rerun
-pkgver=1.1.17
-pkgrel=38
+pkgver=1.1.18
+pkgrel=1
 pkgdesc="Rerun only tests which failed in a previous test run"
 url="https://github.com/ocharles/tasty-rerun;
 license=("BSD")
@@ -12,13 +12,8 @@
 depends=('ghc-libs' 'haskell-optparse-applicative' 'haskell-split' 
'haskell-tagged' 'haskell-tasty')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('d65b35acb1b45a78a0bbe568a2118ea6580352a55b921f06974bdf59e363403f1590604e215840be990f5f18a5d8e75abd416e7d3d9b6b9f4c6c16532c31052d')
+sha512sums=('82672a8d2f37a56e9867bb6fa2b8c79dc40869262a1853b51067e9cf463aef78c4aa3d69cda32a06c3d226ef18c951789845e57a82cbad880f29d5415a659ced')
 
-prepare() {
-cd $_hkgname-$pkgver
-sed -i 's/< *4.14/<5/;s/< *1.3/<2/' $_hkgname.cabal
-}
-
 build() {
 cd $_hkgname-$pkgver
 


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

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 23:42:07
  Author: arojas
Revision: 746413

archrelease: copy trunk to community-staging-x86_64

Added:
  php-imagick/repos/community-staging-x86_64/
  php-imagick/repos/community-staging-x86_64/PKGBUILD
(from rev 746412, php-imagick/trunk/PKGBUILD)

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

Copied: php-imagick/repos/community-staging-x86_64/PKGBUILD (from rev 746412, 
php-imagick/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-07 23:42:07 UTC (rev 746413)
@@ -0,0 +1,51 @@
+# Maintainer: David Runge 
+
+pkgname=php-imagick
+_name=imagick
+pkgver=3.4.4
+pkgrel=8
+pkgdesc="PHP extension to create and modify images using the ImageMagick 
library"
+arch=('x86_64')
+url="https://github.com/mkoppanen/imagick;
+license=('PHP')
+depends=('php' 'imagemagick' 'ttf-font')
+checkdepends=('librsvg' 'ttf-dejavu')
+backup=("etc/php/conf.d/${_name}.ini")
+source=("$pkgname-$pkgver.tar.gz::https://github.com/mkoppanen/${_name}/archive/${pkgver}.tar.gz;
+
"${pkgname}-3.4.4-imagemagick_threading.patch::https://github.com/Imagick/imagick/pull/296.patch;)
+sha512sums=('f3d3c74b4d0bb5c2dd986a8b960096ff200daa82e60fdd1467a54944be06810923b4e68a4f70194e25c8176afd9a609b9f2545054520ec759202e5fc3f1e827b'
+
'd11a08b6a6a4a5e6d9b9cf9e87a6c0bb29ba632d6318ac237fe59910d70b07ef8df5af775451c89c5a81d45e609b9aa69611ecb562bfcbda832d5f0ae1207d55')
+
+prepare() {
+  mv -v "${_name}-$pkgver" "$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
+  # fix imagemagick threading issues when building against php >= 7.4
+  patch -Np1 -i "../${pkgname}-3.4.4-imagemagick_threading.patch"
+  # setting package version: https://bugs.archlinux.org/task/64185
+  sed -e "s/@PACKAGE_VERSION@/${pkgver}/" \
+  -i php_imagick.h package.xml
+  echo ";extension=${_name}" > "${_name}.ini"
+  phpize
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  export NO_INTERACTION="true"
+  make -k test
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make INSTALL_ROOT="$pkgdir/" install
+  install -vDm 644 "${_name}.ini" -t "${pkgdir}/etc/php/conf.d/"
+  install -vDm 644 {ChangeLog,CREDITS,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}/"
+  install -vDm 644 examples/*.php \
+-t "${pkgdir}/usr/share/doc/${pkgname}/examples"
+}


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

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 23:41:57
  Author: arojas
Revision: 746412

imagemagick 7.0.10.37 rebuild, add ttf-dejavu checkdepends since otherwise many 
tests are failing after the latest commit

Modified:
  php-imagick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 23:40:09 UTC (rev 746411)
+++ PKGBUILD2020-11-07 23:41:57 UTC (rev 746412)
@@ -3,13 +3,13 @@
 pkgname=php-imagick
 _name=imagick
 pkgver=3.4.4
-pkgrel=7
+pkgrel=8
 pkgdesc="PHP extension to create and modify images using the ImageMagick 
library"
 arch=('x86_64')
 url="https://github.com/mkoppanen/imagick;
 license=('PHP')
 depends=('php' 'imagemagick' 'ttf-font')
-checkdepends=('librsvg')
+checkdepends=('librsvg' 'ttf-dejavu')
 backup=("etc/php/conf.d/${_name}.ini")
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/mkoppanen/${_name}/archive/${pkgver}.tar.gz;
 
"${pkgname}-3.4.4-imagemagick_threading.patch::https://github.com/Imagick/imagick/pull/296.patch;)


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

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 23:19:26
  Author: arojas
Revision: 746160

archrelease: copy trunk to community-staging-x86_64

Added:
  pd-gem/repos/community-staging-x86_64/
  pd-gem/repos/community-staging-x86_64/PKGBUILD
(from rev 746159, pd-gem/trunk/PKGBUILD)

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

Copied: pd-gem/repos/community-staging-x86_64/PKGBUILD (from rev 746159, 
pd-gem/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-07 23:19:26 UTC (rev 746160)
@@ -0,0 +1,38 @@
+# Maintainer: David Runge 
+
+_name=Gem
+pkgname=pd-gem
+pkgver=0.94
+pkgrel=4
+pkgdesc="Graphics Environment for Multimedia"
+arch=('x86_64')
+url="https://github.com/umlaeute/Gem;
+license=('GPL2')
+groups=('pd-externals')
+# TODO: potentially add gmerlin, libmpeg3 and glewmx (if that's still a thing)
+depends=('assimp' 'ftgl' 'glew' 'libdv' 'libiec61883' 'libquicktime' 'pd'
+'sdl2' 'ttf-dejavu' 'zlib')
+makedepends=('imagemagick' 'libvncserver' 'vlc')
+optdepends=('vlc: video capture support'
+'libvncserver: video capture support'
+'imagemagick: image processing support')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/umlaeute/${_name}/archive/v${pkgver}.tar.gz;)
+sha512sums=('356e4f2a27131f927cd5d20ba9010088cc22930f313f61f54dd107db041b6cb2042ab5d530bae069e3ccdccd0a8fed1152631c6f187f4f4602f37d763356d316')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
+  autoreconf -vfi
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr \
+  --with-default-font=/usr/share/fonts/TTF/DejaVuSans.ttf
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+}


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

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 23:19:16
  Author: arojas
Revision: 746159

imagemagick 7.0.10.37 rebuild

Modified:
  pd-gem/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 23:12:50 UTC (rev 746158)
+++ PKGBUILD2020-11-07 23:19:16 UTC (rev 746159)
@@ -3,7 +3,7 @@
 _name=Gem
 pkgname=pd-gem
 pkgver=0.94
-pkgrel=3
+pkgrel=4
 pkgdesc="Graphics Environment for Multimedia"
 arch=('x86_64')
 url="https://github.com/umlaeute/Gem;


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

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 23:12:50
  Author: arojas
Revision: 746158

archrelease: copy trunk to community-staging-x86_64

Added:
  libopenshot/repos/community-staging-x86_64/
  libopenshot/repos/community-staging-x86_64/PKGBUILD
(from rev 746157, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/community-staging-x86_64/ffmpeg-4.0.patch
(from rev 746157, libopenshot/trunk/ffmpeg-4.0.patch)

--+
 PKGBUILD |   61 
 ffmpeg-4.0.patch |  803 +
 2 files changed, 864 insertions(+)

Copied: libopenshot/repos/community-staging-x86_64/PKGBUILD (from rev 746157, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-07 23:12:50 UTC (rev 746158)
@@ -0,0 +1,61 @@
+# Maintainer: David Runge 
+# Contributor: Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.2.5
+pkgrel=5
+pkgdesc="A video editing, animation, and playback library for C++, Python, and 
Ruby"
+arch=('x86_64')
+url="https://github.com/openshot/libopenshot;
+license=('LGPL3')
+# TODO: package cppzmq and resvg
+depends=('gcc-libs' 'glibc' 'libmagick' 'python' 'qt5-base' 'qt5-multimedia'
+'zeromq')
+makedepends=('cmake' 'doxygen' 'ffmpeg' 'jsoncpp' 'libopenshot-audio' 'swig'
+'unittestpp' 'x264')
+provides=('libopenshot.so')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenShot/libopenshot/archive/v$pkgver.tar.gz;
+
"$pkgname-0.2.5-gcc10.patch::https://github.com/OpenShot/libopenshot/pull/512/commits/13290364e7bea54164ab83d973951f2898ad9e23.patch;)
+sha512sums=('b7cdf72897e6edaa8cc00e17dbe30f5b22a6b5d69aab64ddafb184458b41ef0332db1f3e2c6f039492bf7adb521d9758834d0bf6c24e6421a55970d8cf8caba7'
+
'ec492cf09563671b79850035c8138df3bbc4b2f9bd1261aa410a85e0ed977e1a2fcc1299a855490f93fe677e6b9c232d323d3fbf56be8470b420280f352b18dc')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  # fix build with gcc >= 10
+  # https://github.com/OpenShot/libopenshot/pull/512
+  patch -Np1 -i "../$pkgname-0.2.5-gcc10.patch"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  local python_version=$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')
+  export PYTHON_LIBRARIES="/usr/lib/libpython3.so"
+  export PYTHON_INCLUDE_DIRS="/usr/include/python${python_version}"
+  cmake -DCMAKE_INSTALL_PREFIX='/usr' \
+-DCMAKE_BUILD_TYPE='None' \
+-DENABLE_RUBY=OFF \
+-DMAGICKCORE_HDRI_ENABLE=1 \
+-DMAGICKCORE_QUANTUM_DEPTH=16 \
+-DPYTHON_LIBRARIES="/usr/lib/libpython3.so" \
+-DPYTHON_INCLUDE_DIRS="/usr/include/python${python_version}" \
+-DUSE_SYSTEM_JSONCPP=ON \
+-Wno-dev \
+-B build \
+-S .
+  make -C build
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  make -C build test
+}
+
+package() {
+  depends+=('libavcodec.so' 'libavformat.so' 'libavutil.so' 'libjsoncpp.so'
+  'libopenshot-audio.so' 'libswscale.so' 'libswresample.so' 'libx264.so')
+  cd "${pkgname}-${pkgver}"
+  make -C build DESTDIR="${pkgdir}" install
+  install -vDm 644 {AUTHORS,README.md} -t "${pkgdir}/usr/share/doc/${pkgname}"
+}

Copied: libopenshot/repos/community-staging-x86_64/ffmpeg-4.0.patch (from rev 
746157, libopenshot/trunk/ffmpeg-4.0.patch)
===
--- community-staging-x86_64/ffmpeg-4.0.patch   (rev 0)
+++ community-staging-x86_64/ffmpeg-4.0.patch   2020-11-07 23:12:50 UTC (rev 
746158)
@@ -0,0 +1,803 @@
+diff --git a/cmake/Modules/FindFFmpeg.cmake b/cmake/Modules/FindFFmpeg.cmake
+index 4af6cc9..63d543d 100644
+--- a/cmake/Modules/FindFFmpeg.cmake
 b/cmake/Modules/FindFFmpeg.cmake
+@@ -77,14 +77,14 @@ FIND_LIBRARY( SWSCALE_LIBRARY swscale swscale-2 swscale-4
+$ENV{FFMPEGDIR}/lib/ffmpeg/
+$ENV{FFMPEGDIR}/bin/ )
+ 
+-#FindAvresample
+-FIND_PATH( AVRESAMPLE_INCLUDE_DIR libavresample/avresample.h
++#FindSwresample
++FIND_PATH( SWRESAMPLE_INCLUDE_DIR libswresample/swresample.h
+  PATHS /usr/include/
+/usr/include/ffmpeg/
+$ENV{FFMPEGDIR}/include/
+$ENV{FFMPEGDIR}/include/ffmpeg/ )
+ 
+-FIND_LIBRARY( AVRESAMPLE_LIBRARY avresample avresample-2 avresample-3
++FIND_LIBRARY( SWRESAMPLE_LIBRARY swresample
+  PATHS /usr/lib/
+/usr/lib/ffmpeg/
+$ENV{FFMPEGDIR}/lib/
+@@ -113,31 +113,31 @@ IF ( SWSCALE_INCLUDE_DIR AND SWSCALE_LIBRARY )
+ SET ( SWSCALE_FOUND TRUE )
+ ENDIF ( SWSCALE_INCLUDE_DIR AND SWSCALE_LIBRARY )
+ 
+-IF ( AVRESAMPLE_INCLUDE_DIR AND AVRESAMPLE_LIBRARY )
+-SET ( AVRESAMPLE_FOUND TRUE )
+-ENDIF ( AVRESAMPLE_INCLUDE_DIR AND AVRESAMPLE_LIBRARY )
++IF ( SWRESAMPLE_INCLUDE_DIR AND 

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

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 23:12:36
  Author: arojas
Revision: 746157

imagemagick 7.0.10.37 rebuild

Modified:
  libopenshot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 23:06:36 UTC (rev 746156)
+++ PKGBUILD2020-11-07 23:12:36 UTC (rev 746157)
@@ -5,7 +5,7 @@
 
 pkgname=libopenshot
 pkgver=0.2.5
-pkgrel=4
+pkgrel=5
 pkgdesc="A video editing, animation, and playback library for C++, Python, and 
Ruby"
 arch=('x86_64')
 url="https://github.com/openshot/libopenshot;


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

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 23:06:36
  Author: arojas
Revision: 746156

archrelease: copy trunk to community-staging-x86_64

Added:
  pqiv/repos/community-staging-x86_64/
  pqiv/repos/community-staging-x86_64/PKGBUILD
(from rev 746155, pqiv/trunk/PKGBUILD)

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

Copied: pqiv/repos/community-staging-x86_64/PKGBUILD (from rev 746155, 
pqiv/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-07 23:06:36 UTC (rev 746156)
@@ -0,0 +1,32 @@
+# Maintainer: Bruno Pagani 
+
+pkgname=pqiv
+pkgver=2.11
+pkgrel=5
+pkgdesc="Powerful image viewer with minimal UI"
+arch=(x86_64)
+url="https://github.com/phillipberndt/pqiv;
+license=(GPL3)
+depends=(gtk3 gdk-pixbuf2 glib2 cairo)
+optdepends=(
+'ffmpeg: rudimentary video support'
+'libarchive: archives and cbX comic book support'
+'libspectre: PS/EPS support'
+'libwebp: WebP support'
+'imagemagick: support for various images formats like PSD'
+'poppler-glib: rudimentary PDF support'
+)
+makedepends=(ffmpeg libarchive libspectre libwebp imagemagick poppler-glib)
+source=(${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('ea1f8b6bcb58dee19e2d8168ef4efd01e222c653eabbd3109aad57a870cc8c9b')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --backends-build=shared
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}


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

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 23:06:26
  Author: arojas
Revision: 746155

imagemagick 7.0.10.37 rebuild

Modified:
  pqiv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 23:05:08 UTC (rev 746154)
+++ PKGBUILD2020-11-07 23:06:26 UTC (rev 746155)
@@ -2,7 +2,7 @@
 
 pkgname=pqiv
 pkgver=2.11
-pkgrel=4
+pkgrel=5
 pkgdesc="Powerful image viewer with minimal UI"
 arch=(x86_64)
 url="https://github.com/phillipberndt/pqiv;


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

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 23:05:08
  Author: arojas
Revision: 746154

archrelease: copy trunk to community-staging-x86_64

Added:
  xine-lib/repos/community-staging-x86_64/
  xine-lib/repos/community-staging-x86_64/PKGBUILD
(from rev 746153, xine-lib/trunk/PKGBUILD)

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

Copied: xine-lib/repos/community-staging-x86_64/PKGBUILD (from rev 746153, 
xine-lib/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-07 23:05:08 UTC (rev 746154)
@@ -0,0 +1,54 @@
+# Maintainer: Eric Bélanger 
+
+pkgname=xine-lib
+pkgver=1.2.10
+pkgrel=5
+pkgdesc="Multimedia playback engine"
+arch=('x86_64')
+url="https://www.xine-project.org;
+license=('LGPL' 'GPL')
+depends=('libxvmc' 'ffmpeg' 'libxinerama' 'libnsl')
+makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
+ 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 'libdvdnav'
+ 'libmpcdec' 'libcaca' 'libbluray' 'libvdpau' 'glu' 'gdk-pixbuf2'
+ 'dav1d')
+optdepends=('imagemagick: for using the imagemagick plugin' \
+'jack: for using the jack plugin' \
+'vcdimager: for using the vcd plugin' \
+'glu: for using the opengl plugin' \
+'wavpack: for using the wavpack plugin' \
+'faad2: for using the faad plugin' \
+'libmng: for using the mng plugin' \
+'aalib: for using the aalib plugin' \
+'libmodplug: for using the modplug plugin' \
+'libdca: for using the dca plugin' \
+'a52dec: for using the a52 plugin' \
+'libmad: for using the mp3 plugin' \
+'libdvdnav: for using the dvd plugin' \
+'libmpcdec: for using the musepack plugin' \
+'libcaca: for using the caca plugin' \
+'libbluray: for using the bluray plugin' \
+'libvdpau: for using the VDPAU plugin' \
+'smbclient: for using the samba plugin' \
+'dav1d: for using the dav1d decoder' \
+'gdk-pixbuf2: for using the gdk-pixbuf plugin')
+source=(https://downloads.sourceforge.net/project/xine/xine-lib/$pkgver/xine-lib-$pkgver.tar.xz)
+sha512sums=('1cbe033da606d67a0a59f19968b2fe1cb46eaeb32c4b4aca7b91125b7230e15bd36d1e3e39e48e6eda56e556018f9f9bf84acb0012d3dd634306e7110fdc4c5f')
+b2sums=('e1bc088814c951ff56e55b626fe1f6f34c3da744e716de369a68e6c82a5adc414b452675ad19a5f82500bade6795b54efd503de8ffe4f1e65b534317ca0a26af')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  CFLAGS+=" -fcommon"
+  ./configure \
+  --prefix=/usr \
+  --with-wavpack \
+  --enable-vdpau \
+  --with-external-dvdnav
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}


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

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 23:04:58
  Author: arojas
Revision: 746153

imagemagick 7.0.10.37 rebuild

Modified:
  xine-lib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 23:01:40 UTC (rev 746152)
+++ PKGBUILD2020-11-07 23:04:58 UTC (rev 746153)
@@ -2,7 +2,7 @@
 
 pkgname=xine-lib
 pkgver=1.2.10
-pkgrel=4
+pkgrel=5
 pkgdesc="Multimedia playback engine"
 arch=('x86_64')
 url="https://www.xine-project.org;


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

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 23:01:40
  Author: arojas
Revision: 746152

archrelease: copy trunk to community-staging-x86_64

Added:
  transcode/repos/community-staging-x86_64/
  transcode/repos/community-staging-x86_64/PKGBUILD
(from rev 746151, transcode/trunk/PKGBUILD)
  transcode/repos/community-staging-x86_64/transcode-ffmpeg3.patch
(from rev 746151, transcode/trunk/transcode-ffmpeg3.patch)
  transcode/repos/community-staging-x86_64/transcode-ffmpeg4.patch
(from rev 746151, transcode/trunk/transcode-ffmpeg4.patch)
  transcode/repos/community-staging-x86_64/transcode-gcc10.patch
(from rev 746151, transcode/trunk/transcode-gcc10.patch)
  transcode/repos/community-staging-x86_64/transcode-glibc-2.32.patch
(from rev 746151, transcode/trunk/transcode-glibc-2.32.patch)
  transcode/repos/community-staging-x86_64/transcode-imagemagick7.patch
(from rev 746151, transcode/trunk/transcode-imagemagick7.patch)
  transcode/repos/community-staging-x86_64/transcode-swresample.patch
(from rev 746151, transcode/trunk/transcode-swresample.patch)

--+
 PKGBUILD |   65 ++
 transcode-ffmpeg3.patch  | 1241 +
 transcode-ffmpeg4.patch  |  494 
 transcode-gcc10.patch|   48 +
 transcode-glibc-2.32.patch   |   47 +
 transcode-imagemagick7.patch |  794 ++
 transcode-swresample.patch   |   20 
 7 files changed, 2709 insertions(+)

Copied: transcode/repos/community-staging-x86_64/PKGBUILD (from rev 746151, 
transcode/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-07 23:01:40 UTC (rev 746152)
@@ -0,0 +1,65 @@
+# Maintainer:
+# Contributor: Sarah Hay 
+# Contributor: roberto 
+
+pkgname=transcode
+_sripver=0.3-4
+pkgver=1.1.7
+pkgrel=35
+pkgdesc="A video/DVD ripper and encoder for the terminal/console"
+arch=(x86_64)
+url="http://www.transcoding.org/;
+license=(GPL)
+depends=(gawk imagemagick lzo libdvdread ffmpeg mjpegtools libmpeg2 libxaw 
a52dec)
+makedepends=(nasm x264 libquicktime)
+optdepends=('libquicktime: Quicktime format support')
+#source=(https://bitbucket.org/france/transcode-tcforge/downloads/$pkgname-$pkgver.tar.bz2
+source=(https://sources.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.bz2
+transcode-imagemagick7.patch
+transcode-ffmpeg3.patch
+transcode-ffmpeg4.patch
+transcode-swresample.patch
+transcode-gcc10.patch
+transcode-glibc-2.32.patch)
+sha256sums=('1e4e72d8e0dd62a80b8dd90699f5ca64c9b0cb37a5c9325c184166a9654f0a92'
+'4ede15540ea6932954ac332c12dde130bf48e7e4773d1e04d3c3f23038c6ac51'
+'728ec3101039d98116275e36ea5cf0434a23a0bb82aca830ea9612fb9d16b062'
+'2cc680666f705685a9fdc54b5a377e7728765bde6ed83c43b835634e27767721'
+'6b4e91085742535174015be5da103fe3337b4cb14537634ae378c9050088280e'
+'13ad4d06ca5b98ef66c4e0699d92023727cd7936ef1c4bf7691e3a611c6bb786'
+'8f7aa89be3bc38a42fe664e8f2c0e519158cb4e55b7f99f176f1622c2718b641')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i ../transcode-ffmpeg3.patch # LFS patch
+  patch -p1 -i ../transcode-ffmpeg4.patch # Gentoo patch
+  patch -p1 -i ../transcode-imagemagick7.patch # Gentoo patch
+  sed -e 's|freetype/ftglyph.h|freetype2/freetype/ftglyph.h|' -i 
filter/subtitler/load_font.c
+  patch -p1 -i ../transcode-swresample.patch # port away from avresample
+  patch -p1 -i ../transcode-gcc10.patch # Fix build with GCC 10
+  patch -p1 -i ../transcode-glibc-2.32.patch # Fix build with glibc 2.32
+  autoreconf -vi
+}
+
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+--disable-sse --disable-sse2 --disable-altivec --enable-mmx \
+--enable-lame --enable-ogg --enable-vorbis --enable-theora \
+--enable-libdv --enable-libxml2 --enable-v4l \
+--enable-imagemagick --enable-libjpeg --enable-lzo --enable-mjpegtools \
+--enable-sdl --enable-freetype2 --enable-a52 --enable-libpostproc \
+--enable-xvid --enable-x264 --enable-alsa --enable-libmpeg2 \
+--enable-libmpeg2convert --enable-libquicktime
+
+  #https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: transcode/repos/community-staging-x86_64/transcode-ffmpeg3.patch (from 
rev 746151, transcode/trunk/transcode-ffmpeg3.patch)
===
--- community-staging-x86_64/transcode-ffmpeg3.patch
(rev 0)
+++ community-staging-x86_64/transcode-ffmpeg3.patch2020-11-07 23:01:40 UTC 
(rev 746152)
@@ -0,0 +1,1241 @@
+Submitted By:Armion K. 
+Date:2016-05-06
+Initial 

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

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 23:01:23
  Author: arojas
Revision: 746151

imagemagick 7.0.10.37 rebuild

Modified:
  transcode/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:58:45 UTC (rev 746150)
+++ PKGBUILD2020-11-07 23:01:23 UTC (rev 746151)
@@ -5,7 +5,7 @@
 pkgname=transcode
 _sripver=0.3-4
 pkgver=1.1.7
-pkgrel=34
+pkgrel=35
 pkgdesc="A video/DVD ripper and encoder for the terminal/console"
 arch=(x86_64)
 url="http://www.transcoding.org/;


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

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 22:58:35
  Author: arojas
Revision: 746149

imagemagick 7.0.10.37 rebuild

Modified:
  synfig/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:56:22 UTC (rev 746148)
+++ PKGBUILD2020-11-07 22:58:35 UTC (rev 746149)
@@ -4,7 +4,7 @@
 
 pkgname=synfig
 pkgver=1.2.2
-pkgrel=3
+pkgrel=4
 pkgdesc="Professional vector animation program (CLI renderer only)"
 arch=(x86_64)
 url="https://www.synfig.org/;


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

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 22:58:45
  Author: arojas
Revision: 746150

archrelease: copy trunk to community-staging-x86_64

Added:
  synfig/repos/community-staging-x86_64/
  synfig/repos/community-staging-x86_64/PKGBUILD
(from rev 746149, synfig/trunk/PKGBUILD)
  synfig/repos/community-staging-x86_64/fix-build.patch
(from rev 746149, synfig/trunk/fix-build.patch)

-+
 PKGBUILD|   34 ++
 fix-build.patch |   25 +
 2 files changed, 59 insertions(+)

Copied: synfig/repos/community-staging-x86_64/PKGBUILD (from rev 746149, 
synfig/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-07 22:58:45 UTC (rev 746150)
@@ -0,0 +1,34 @@
+# Maintainer: Balló György 
+# Contributor: Sergej Pupykin 
+# Contributor: Franco Iacomella 
+
+pkgname=synfig
+pkgver=1.2.2
+pkgrel=4
+pkgdesc="Professional vector animation program (CLI renderer only)"
+arch=(x86_64)
+url="https://www.synfig.org/;
+license=(GPL2)
+depends=(boost-libs fftw imagemagick libjpeg-turbo libmng libxml++2.6 mlt 
openexr pango)
+makedepends=(boost etl intltool)
+source=(https://downloads.sourceforge.net/synfig/$pkgname-$pkgver.tar.gz
+fix-build.patch)
+sha256sums=('5f5f7b33483041165f9a63fe4d95eb815971c7444569e574206f6964e83cc2ef'
+'5f6e6b56a2d55074fb187e48611fbf0ca337e9d4ddd78669e9d836ce6ebedb78')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np2 -i ../fix-build.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: synfig/repos/community-staging-x86_64/fix-build.patch (from rev 746149, 
synfig/trunk/fix-build.patch)
===
--- community-staging-x86_64/fix-build.patch(rev 0)
+++ community-staging-x86_64/fix-build.patch2020-11-07 22:58:45 UTC (rev 
746150)
@@ -0,0 +1,25 @@
+From dedb2f7f82a04c0cb3aad462bbe055412f3f5e18 Mon Sep 17 00:00:00 2001
+From: ice0 
+Date: Wed, 29 Aug 2018 12:25:24 +0700
+Subject: [PATCH] Fixed MacOS 10.14 build (removed unnecessary include)
+
+---
+ synfig-core/src/synfig/savecanvas.cpp | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/synfig-core/src/synfig/savecanvas.cpp 
b/synfig-core/src/synfig/savecanvas.cpp
+index 4335a7bb1..370a389e0 100644
+--- a/synfig-core/src/synfig/savecanvas.cpp
 b/synfig-core/src/synfig/savecanvas.cpp
+@@ -66,9 +66,9 @@
+ #include 
+ #include "gradient.h"
+ 
+-extern "C" {
++/*extern "C" {
+ #include 
+-}
++}*/
+ 
+ #endif
+ 


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:56:13
  Author: felixonmars
Revision: 746147

upgpkg: pandoc-crossref 0.3.8.2-12: rebuild with integer-logarithms 1.0.3.1

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:54:20 UTC (rev 746146)
+++ PKGBUILD2020-11-07 22:56:13 UTC (rev 746147)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.8.2
-pkgrel=11
+pkgrel=12
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname};
 license=("GPL2")


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:56:22
  Author: felixonmars
Revision: 746148

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:54:10
  Author: felixonmars
Revision: 746145

upgpkg: haskell-hakyll 4.13.4.1-31: rebuild with integer-logarithms 1.0.3.1

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:53:04 UTC (rev 746144)
+++ PKGBUILD2020-11-07 22:54:10 UTC (rev 746145)
@@ -4,7 +4,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.13.4.1
-pkgrel=30
+pkgrel=31
 pkgdesc="A static website compiler library"
 url="https://jaspervdj.be/hakyll;
 license=("BSD")


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:54:20
  Author: felixonmars
Revision: 746146

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
746145, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-07 22:54:20 UTC (rev 746146)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.13.4.1
+pkgrel=31
+pkgdesc="A static website compiler library"
+url="https://jaspervdj.be/hakyll;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptonite'
+ 'haskell-data-default' 'haskell-file-embed' 'haskell-fsnotify' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-lrucache' 'haskell-memory' 
'haskell-network-uri'
+ 'haskell-optparse-applicative' 'pandoc' 'pandoc-citeproc' 
'haskell-random'
+ 'haskell-regex-tdfa' 'haskell-resourcet' 'haskell-scientific' 
'haskell-tagsoup'
+ 'haskell-time-locale-compat' 'haskell-unordered-containers' 
'haskell-vector'
+ 'haskell-wai' 'haskell-wai-app-static' 'haskell-warp' 'haskell-yaml')
+makedepends=('ghc' 'uusi' 'haskell-quickcheck' 'haskell-tasty' 
'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('6045a1461855d46f57a20f7a84636f90e6d151bcbaf09511f10ab66fa0567062e355ff580d1f12a4432bbe517bc9e162d65927f3c343f8f077e81981e7c7973c')
+
+prepare() {
+cd $_hkgname-$pkgver
+uusi $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir="$pkgname" 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -fwatchserver -fpreviewserver -fusepandoc
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test || echo 
"https://github.com/jaspervdj/hakyll/issues/682;
+}
+
+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 libvips/repos (2 files)

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 22:53:04
  Author: arojas
Revision: 746144

archrelease: copy trunk to community-staging-x86_64

Added:
  libvips/repos/community-staging-x86_64/
  libvips/repos/community-staging-x86_64/PKGBUILD
(from rev 746143, libvips/trunk/PKGBUILD)

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

Copied: libvips/repos/community-staging-x86_64/PKGBUILD (from rev 746143, 
libvips/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-07 22:53:04 UTC (rev 746144)
@@ -0,0 +1,24 @@
+# Maintainer: Felix Yan 
+
+pkgname=libvips
+pkgver=8.10.1
+pkgrel=2
+pkgdesc="A fast image processing library with low memory needs"
+arch=('x86_64')
+license=('LGPL')
+url="https://libvips.github.io/libvips/;
+depends=('cfitsio' 'fftw' 'imagemagick' 'libexif' 'libgsf' 'libheif' 
'libimagequant' 'librsvg'
+ 'libwebp' 'libxml2' 'openexr' 'orc' 'pango' 'poppler-glib')
+source=("https://github.com/libvips/libvips/releases/download/v$pkgver/vips-$pkgver.tar.gz;)
+sha512sums=('203d5d85fd22fd39166b03473a716faf9fce3833cf5deca74a21048b3b6eee7ac6577b5fc8a0ffee394f25d913308be324b93e8678d3541ffeee5df5797bf250')
+
+build() {
+  cd vips-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd vips-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 22:52:51
  Author: arojas
Revision: 746143

imagemagick 7.0.10.37 rebuild

Modified:
  libvips/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:52:20 UTC (rev 746142)
+++ PKGBUILD2020-11-07 22:52:51 UTC (rev 746143)
@@ -2,7 +2,7 @@
 
 pkgname=libvips
 pkgver=8.10.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A fast image processing library with low memory needs"
 arch=('x86_64')
 license=('LGPL')


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:52:20
  Author: felixonmars
Revision: 746142

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:52:11
  Author: felixonmars
Revision: 746141

upgpkg: pandoc-citeproc 0.17.0.2-74: rebuild with integer-logarithms 1.0.3.1

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:50:18 UTC (rev 746140)
+++ PKGBUILD2020-11-07 22:52:11 UTC (rev 746141)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.17.0.2
-pkgrel=73
+pkgrel=74
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname;
 license=("BSD")


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

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 22:50:18
  Author: arojas
Revision: 746140

archrelease: copy trunk to community-staging-x86_64

Added:
  dvdauthor/repos/community-staging-x86_64/
  dvdauthor/repos/community-staging-x86_64/PKGBUILD
(from rev 746139, dvdauthor/trunk/PKGBUILD)
  dvdauthor/repos/community-staging-x86_64/dvdauthor-0.7.2-imagemagick7.patch
(from rev 746139, dvdauthor/trunk/dvdauthor-0.7.2-imagemagick7.patch)

+
 PKGBUILD   |   39 ++
 dvdauthor-0.7.2-imagemagick7.patch |   74 +++
 2 files changed, 113 insertions(+)

Copied: dvdauthor/repos/community-staging-x86_64/PKGBUILD (from rev 746139, 
dvdauthor/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-07 22:50:18 UTC (rev 746140)
@@ -0,0 +1,39 @@
+# Maintainer: Balló György 
+# Contributor: Giovanni Scafora 
+# Contributor: Travis Willard 
+# Contributor: Jaroslaw Swierczynski 
+# Contributor: Nicolai Lissner 
+
+pkgname=dvdauthor
+pkgver=0.7.2
+pkgrel=9
+pkgdesc="DVD authoring tools"
+arch=('x86_64')
+url="http://dvdauthor.sourceforge.net/;
+license=('GPL')
+depends=('libdvdread' 'imagemagick' 'libxml2')
+source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;
+"dvdauthor-0.7.2-imagemagick7.patch")
+sha256sums=('3020a92de9f78eb36f48b6f22d5a001c47107826634a785a62dfcd080f612eb7'
+'5c6a6c1cca2fdb2a0037507361980de7ed3bf6c603cb85e9ce273eaf0028dc00')
+
+prepare() {
+  cd $pkgname
+  # Port to imagemagick 7
+  # https://bugs.gentoo.org/610574#c2
+  patch -Np1 -i ../dvdauthor-0.7.2-imagemagick7.patch
+  # don't search for obsolete freetype-config
+  sed -e 's|freetype-config|pkg-config freetype2|' -i configure.ac
+  autoreconf -vi
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Copied: 
dvdauthor/repos/community-staging-x86_64/dvdauthor-0.7.2-imagemagick7.patch 
(from rev 746139, dvdauthor/trunk/dvdauthor-0.7.2-imagemagick7.patch)
===
--- community-staging-x86_64/dvdauthor-0.7.2-imagemagick7.patch 
(rev 0)
+++ community-staging-x86_64/dvdauthor-0.7.2-imagemagick7.patch 2020-11-07 
22:50:18 UTC (rev 746140)
@@ -0,0 +1,74 @@
+--- dvdauthor/src/subgen-image.c   2014-01-21 00:12:37.0 +0100
 dvdauthor/src/subgen-image.c   2017-11-27 20:26:53.682914041 +0100
+@@ -30,7 +30,7 @@
+ 
+ #if defined(HAVE_MAGICK) || defined(HAVE_GMAGICK)
+ #include 
+-#include 
++#include 
+ #else
+ #include 
+ #endif
+@@ -176,18 +176,18 @@
+ {
+ Image *im;
+ ImageInfo *ii;
+-ExceptionInfo ei;
++ExceptionInfo *ei;
+ int x,y;
+ unsigned long magickver;
+ unsigned char amask;
+ 
+-GetExceptionInfo();
++ei = AcquireExceptionInfo();
+ ii=CloneImageInfo(NULL);
+ strcpy(ii->filename,s->fname);
+-im=ReadImage(ii,);
++im=ReadImage(ii,ei);
+ 
+ if( !im ) {
+-MagickError(ei.severity,"Unable to load file",ii->filename);
++MagickError(ei->severity,"Unable to load file",ii->filename);
+ return -1;
+ }
+ 
+@@ -202,10 +202,10 @@
+ for( y=0; yrows; y++ ) {
+ char pdata[MAXX*4];
+ 
+-
if(!ExportImagePixels(im,0,y,im->columns,1,"RGBA",CharPixel,pdata,)) {
+-fprintf(stderr,"ERR:  Extracting row %d from %s 
(%s,%s)\n",y,s->fname,ei.reason,ei.description);
+-CatchException();
+-MagickError(ei.severity,ei.reason,ei.description);
++
if(!ExportImagePixels(im,0,y,im->columns,1,"RGBA",CharPixel,pdata,ei)) {
++fprintf(stderr,"ERR:  Extracting row %d from %s 
(%s,%s)\n",y,s->fname,ei->reason,ei->description);
++CatchException(ei);
++MagickError(ei->severity,ei->reason,ei->description);
+ DestroyImage(im);
+ return -1;
+ }
+@@ -219,7 +219,7 @@
+ }
+ }
+ DestroyImage(im);
+-DestroyExceptionInfo();
++DestroyExceptionInfo(ei);
+ fprintf(stderr,"INFO: Picture %s had %d colors\n",s->fname,s->numpal);
+ 
+ return 0;
+@@ -1098,13 +1098,13 @@
+ void image_init()
+ {
+ #if defined(HAVE_MAGICK) || defined(HAVE_GMAGICK)
+-InitializeMagick(NULL);
++MagickCoreGenesis("", MagickFalse);
+ #endif
+ }
+ 
+ void image_shutdown()
+ {
+ #if defined(HAVE_MAGICK) || defined(HAVE_GMAGICK)
+-DestroyMagick();
++MagickCoreTerminus();
+ #endif
+ }


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

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 22:50:07
  Author: arojas
Revision: 746139

imagemagick 7.0.10.37 rebuild

Modified:
  dvdauthor/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:48:45 UTC (rev 746138)
+++ PKGBUILD2020-11-07 22:50:07 UTC (rev 746139)
@@ -6,7 +6,7 @@
 
 pkgname=dvdauthor
 pkgver=0.7.2
-pkgrel=8
+pkgrel=9
 pkgdesc="DVD authoring tools"
 arch=('x86_64')
 url="http://dvdauthor.sourceforge.net/;


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:48:39
  Author: felixonmars
Revision: 746137

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-ci/repos/community-staging-x86_64/PKGBUILD (from rev 746136, 
haskell-ci/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-07 22:48:39 UTC (rev 746137)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+
+_hkgname=haskell-ci
+pkgname=haskell-ci
+pkgver=0.10.3
+pkgrel=39
+pkgdesc="Cabal package script generator for Travis-CI"
+url="https://haskell-ci.rtfd.org/;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-base-compat' 
'haskell-cabal-install-parsers'
+ 'haskell-generic-lens-lite' 'haskell-hsyaml' 'haskell-lattices' 
'haskell-network-uri'
+ 'haskell-optparse-applicative' 'haskell-temporary' 
'haskell-unordered-containers'
+ 'shellcheck')
+makedepends=('ghc' 'uusi' 'haskell-diff' 'haskell-ansi-terminal' 
'haskell-tasty' 'haskell-tasty-golden')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('7b8bd970619344c8254a678038a19f838a5b4eaba39a8d42c640aa50e1b31ea3')
+
+prepare(){
+  uusi $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  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 converseen/repos (2 files)

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 22:48:45
  Author: arojas
Revision: 746138

archrelease: copy trunk to community-staging-x86_64

Added:
  converseen/repos/community-staging-x86_64/
  converseen/repos/community-staging-x86_64/PKGBUILD
(from rev 746137, converseen/trunk/PKGBUILD)

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

Copied: converseen/repos/community-staging-x86_64/PKGBUILD (from rev 746137, 
converseen/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-07 22:48:45 UTC (rev 746138)
@@ -0,0 +1,35 @@
+# Maintainer: Balló György 
+# Contributor: Giovanni Scafora 
+# Contributor: archtux 
+
+pkgname=converseen
+pkgver=0.9.8.1
+pkgrel=3
+pkgdesc="Batch image converter and resizer"
+arch=('x86_64')
+url="http://converseen.fasterland.net/;
+license=('GPL3')
+depends=('djvulibre' 'ghostscript' 'hicolor-icon-theme' 'libheif' 
'imagemagick' 'libraw' 'librsvg'
+ 'libwebp' 'libwmf' 'openexr' 'qt5-base')
+makedepends=('cmake' 'qt5-tools')
+source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2;)
+sha256sums=('43621963aceb1f68ca961417cd45d5bc64ba911efb02bae7ceb1e09974d70b9d')
+
+prepare() {
+  mkdir build
+  cd $pkgname
+  convert res/converseen.png +set date:create +set date:modify -resize 256x256 
-alpha on res/converseen.png
+  sed -i 's|/share/pixmaps|/share/icons/hicolor/256x256/apps|' CMakeLists.txt
+}
+
+build() {
+  cd build
+  cmake ../$pkgname \
+  -DCMAKE_INSTALL_PREFIX=/usr 
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:48:31
  Author: felixonmars
Revision: 746136

upgpkg: haskell-ci 0.10.3-39: rebuild with integer-logarithms 1.0.3.1

Modified:
  haskell-ci/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:48:28 UTC (rev 746135)
+++ PKGBUILD2020-11-07 22:48:31 UTC (rev 746136)
@@ -3,7 +3,7 @@
 _hkgname=haskell-ci
 pkgname=haskell-ci
 pkgver=0.10.3
-pkgrel=38
+pkgrel=39
 pkgdesc="Cabal package script generator for Travis-CI"
 url="https://haskell-ci.rtfd.org/;
 license=("GPL")


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

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 22:48:28
  Author: arojas
Revision: 746135

imagemagick 7.0.10.37 rebuild

Modified:
  converseen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:46:49 UTC (rev 746134)
+++ PKGBUILD2020-11-07 22:48:28 UTC (rev 746135)
@@ -4,7 +4,7 @@
 
 pkgname=converseen
 pkgver=0.9.8.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Batch image converter and resizer"
 arch=('x86_64')
 url="http://converseen.fasterland.net/;


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:46:40
  Author: felixonmars
Revision: 746133

upgpkg: shellcheck 0.7.1-174: rebuild with integer-logarithms 1.0.3.1

Modified:
  shellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:46:26 UTC (rev 746132)
+++ PKGBUILD2020-11-07 22:46:40 UTC (rev 746133)
@@ -4,7 +4,7 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.7.1
-pkgrel=173
+pkgrel=174
 pkgdesc="Shell script analysis tool"
 url="https://www.shellcheck.net;
 license=("GPL")


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:46:49
  Author: felixonmars
Revision: 746134

archrelease: copy trunk to community-staging-x86_64

Added:
  shellcheck/repos/community-staging-x86_64/
  shellcheck/repos/community-staging-x86_64/PKGBUILD
(from rev 746133, shellcheck/trunk/PKGBUILD)

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

Copied: shellcheck/repos/community-staging-x86_64/PKGBUILD (from rev 746133, 
shellcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-07 22:46:49 UTC (rev 746134)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ShellCheck
+pkgname=shellcheck
+pkgver=0.7.1
+pkgrel=174
+pkgdesc="Shell script analysis tool"
+url="https://www.shellcheck.net;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-diff' 'haskell-quickcheck' 
'haskell-regex-tdfa')
+makedepends=('ghc' 'pandoc')
+source=("$_hkgname-$pkgver.tar.gz::https://github.com/koalaman/shellcheck/archive/v$pkgver.tar.gz;)
+sha512sums=('95ca827f50035e352eabfbee9eb1791278f7c18c10c3a6c2656c5b9e87396b7b6c088f4cefa3d6f954ac6c2765ea50e232985b9f3eeea2dbe77c17473cc4a437')
+
+prepare() {
+cd $pkgname-$pkgver
+echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+}
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option='-pie'
+runhaskell Setup build $MAKEFLAGS
+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
+
+./manpage
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m644 ${pkgname}.1   "${pkgdir}/usr/share/man/man1/${pkgname}.1"
+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 chafa/repos (2 files)

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 22:46:26
  Author: arojas
Revision: 746132

archrelease: copy trunk to community-staging-x86_64

Added:
  chafa/repos/community-staging-x86_64/
  chafa/repos/community-staging-x86_64/PKGBUILD
(from rev 746131, chafa/trunk/PKGBUILD)

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

Copied: chafa/repos/community-staging-x86_64/PKGBUILD (from rev 746131, 
chafa/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-07 22:46:26 UTC (rev 746132)
@@ -0,0 +1,28 @@
+# Maintainer: Felix Yan 
+
+pkgname=chafa
+pkgver=1.4.0
+pkgrel=2
+pkgdesc="Image-to-text converter supporting a wide range of symbols and 
palettes, transparency, animations, etc."
+arch=("x86_64")
+url="https://hpjansson.org/chafa/;
+depends=('imagemagick' 'libxslt')
+makedepends=('gtk-doc')
+license=("LGPL")
+source=(https://github.com/hpjansson/chafa/releases/download/$pkgver/chafa-$pkgver.tar.xz{,.asc})
+sha512sums=('e464750296db0eca5d718ff70dbb51529abcd4ff3d5bdd15f20f10ff0207f282e8b59799476fc05718efb48b81b331ae1518d450efd6b62b98a41049e1c6e9d5'
+'SKIP')
+validpgpkeys=('C01EDE5BB0D91E26D003662EC76BB9FEEAD12EA7')  # Hans Petter 
Jansson
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --enable-man
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+}


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

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 22:46:14
  Author: arojas
Revision: 746131

imagemagick 7.0.10.37 rebuild

Modified:
  chafa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:42:54 UTC (rev 746130)
+++ PKGBUILD2020-11-07 22:46:14 UTC (rev 746131)
@@ -2,7 +2,7 @@
 
 pkgname=chafa
 pkgver=1.4.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Image-to-text converter supporting a wide range of symbols and 
palettes, transparency, animations, etc."
 arch=("x86_64")
 url="https://hpjansson.org/chafa/;


[arch-commits] Commit in zbar/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 22:44:44
  Author: arojas
Revision: 399604

archrelease: copy trunk to staging-x86_64

Added:
  zbar/repos/staging-x86_64/
  zbar/repos/staging-x86_64/PKGBUILD
(from rev 399603, zbar/trunk/PKGBUILD)

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

Copied: zbar/repos/staging-x86_64/PKGBUILD (from rev 399603, 
zbar/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-11-07 22:44:44 UTC (rev 399604)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Marti Raudsepp 
+# Contributor: Radu Andries 
+# Contributor: Andy Weidenbaum 
+
+pkgname=zbar
+pkgver=0.23.1
+pkgrel=3
+pkgdesc="Application and library for reading bar codes from various sources"
+arch=('x86_64')
+url="https://github.com/mchehab/zbar;
+license=('LGPL')
+depends=('dbus' 'imagemagick' 'libsm' 'libxv' 'v4l-utils')
+makedepends=('gtk3' 'qt5-x11extras' 'python' 'xmlto' 'docbook-xsl' 
'gobject-introspection')
+optdepends=('gtk3: for zbar-gtk'
+'qt5-x11extras: for zbar-qt'
+'python: for zbar python bindings')
+conflicts=('zbar-gtk' 'zbar-qt' 'python-zbar')
+provides=('zbar-gtk' 'zbar-qt' 'python-zbar')
+replaces=('zbar-gtk' 'zbar-qt' 'python-zbar')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/mchehab/zbar/archive/$pkgver.tar.gz;)
+sha512sums=('ae7741cf750a10cf53dc11abcd482c3885507153ee37f6e3364ed5ed72184ebb009560b8c40d8090603a551fb681700a962838a59ce77d005d080ee49fbfa54b')
+
+prepare() {
+  cd zbar-$pkgver
+  autoreconf -vfi
+}
+
+build() {
+  cd zbar-$pkgver
+  ./configure --prefix=/usr --with-qt --with-gtk=gtk3 
--with-dbusconfdir=/usr/share CFLAGS="$CFLAGS -DNDEBUG"
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd zbar-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 22:44:35
  Author: arojas
Revision: 399603

imagemagick 7.0.10.37 rebuild

Modified:
  zbar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:41:19 UTC (rev 399602)
+++ PKGBUILD2020-11-07 22:44:35 UTC (rev 399603)
@@ -5,7 +5,7 @@
 
 pkgname=zbar
 pkgver=0.23.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Application and library for reading bar codes from various sources"
 arch=('x86_64')
 url="https://github.com/mchehab/zbar;


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:42:54
  Author: felixonmars
Revision: 746130

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:42:45
  Author: felixonmars
Revision: 746129

upgpkg: pandoc 2.11.0.1-3: rebuild with integer-logarithms 1.0.3.1

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:30:56 UTC (rev 746128)
+++ PKGBUILD2020-11-07 22:42:45 UTC (rev 746129)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc
 pkgver=2.11.0.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Conversion between markup formats'
 url='https://pandoc.org'
 license=('GPL')


[arch-commits] Commit in pstoedit/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 22:41:19
  Author: arojas
Revision: 399602

archrelease: copy trunk to staging-x86_64

Added:
  pstoedit/repos/staging-x86_64/
  pstoedit/repos/staging-x86_64/PKGBUILD
(from rev 399601, pstoedit/trunk/PKGBUILD)

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

Copied: pstoedit/repos/staging-x86_64/PKGBUILD (from rev 399601, 
pstoedit/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-11-07 22:41:19 UTC (rev 399602)
@@ -0,0 +1,32 @@
+# Maintainer: Ronald van Haren 
+# Contributor: damir 
+# Contributor: Tobias Powalowski 
+
+pkgname=pstoedit
+pkgver=3.75
+pkgrel=2
+pkgdesc="Translates PostScript and PDF graphics into other vector formats"
+arch=('x86_64')
+url="http://www.pstoedit.net/;
+license=('GPL')
+depends=('gcc-libs' 'plotutils' 'gd' 'imagemagick')
+makedepends=('ghostscript')
+source=("https://downloads.sourceforge.net/sourceforge/pstoedit/pstoedit-${pkgver}.tar.gz;)
+sha512sums=('54b8cf7e78e52027d45e7550821476d9a9c4df4f63af83792b6a2909bc62236450ba6b619f95eede9f61a715f4937f1fbaf2ce4ae4b486daa0294c396a882a28')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  sed -e 's|ImageMagick++|Magick++|' -i configure.ac
+  autoreconf -vi
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}


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

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 22:41:11
  Author: arojas
Revision: 399601

imagemagick 7.0.10.37 rebuild

Modified:
  pstoedit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:38:00 UTC (rev 399600)
+++ PKGBUILD2020-11-07 22:41:11 UTC (rev 399601)
@@ -4,7 +4,7 @@
 
 pkgname=pstoedit
 pkgver=3.75
-pkgrel=1
+pkgrel=2
 pkgdesc="Translates PostScript and PDF graphics into other vector formats"
 arch=('x86_64')
 url="http://www.pstoedit.net/;


[arch-commits] Commit in digikam/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 22:38:00
  Author: arojas
Revision: 399600

archrelease: copy trunk to staging-x86_64

Added:
  digikam/repos/staging-x86_64/
  digikam/repos/staging-x86_64/PKGBUILD
(from rev 399599, digikam/trunk/PKGBUILD)

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

Copied: digikam/repos/staging-x86_64/PKGBUILD (from rev 399599, 
digikam/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-11-07 22:38:00 UTC (rev 399600)
@@ -0,0 +1,42 @@
+# $Id: PKGBUILD 320127 2018-03-24 09:48:28Z arojas $
+# Maintainer: Ronald van Haren 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+# Contributor: Tobias Powalowski 
+
+pkgname=digikam
+_pkgver=7.1.0
+pkgver=${_pkgver//-/_} # for beta versions
+pkgrel=3
+pkgdesc="An advanced digital photo management application"
+arch=(x86_64)
+license=(GPL)
+url="https://www.digikam.org/;
+depends=(lensfun opencv akonadi-contacts knotifyconfig libksane kfilemetadata 
qtav marble-common threadweaver kcalendarcore
+ qt5-xmlpatterns imagemagick glu)
+makedepends=(extra-cmake-modules doxygen eigen boost kdoctools jasper)
+optdepends=('hugin: panorama tool' 'qt5-imageformats: support for additional 
image formats (WEBP, TIFF)'
+'jasper: openJPEG support'
+'rawtherapee: RAW import' 'darktable: RAW import'
+"digikam-plugin-gmic: G'MIC plugin"
+'perl: for digitaglinktree')
+source=("https://download.kde.org/stable/$pkgname/$pkgver/$pkgname-$_pkgver.tar.xz"{,.sig})
+sha256sums=('b103c8463adf04939583199e13f8e83015d8a4a9ad79ebfd502d2a50b5a5abbe'
+'SKIP')
+validpgpkeys=(D1CF2444A7858C5F2FB095B74A77747BC2386E50) # digiKam.org (digiKam 
project) 
+
+build() {
+  cmake -B build -S $pkgname-$_pkgver \
+-DBUILD_TESTING=OFF \
+-DENABLE_KFILEMETADATASUPPORT=ON \
+-DENABLE_MEDIAPLAYER=ON \
+-DENABLE_AKONADICONTACTSUPPORT=ON \
+-DENABLE_MYSQLSUPPORT=ON \
+-DENABLE_APPSTYLES=ON \
+-DENABLE_QWEBENGINE=ON
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 22:37:49
  Author: arojas
Revision: 399599

imagemagick 7.0.10.37 rebuild

Modified:
  digikam/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:17:44 UTC (rev 399598)
+++ PKGBUILD2020-11-07 22:37:49 UTC (rev 399599)
@@ -7,7 +7,7 @@
 pkgname=digikam
 _pkgver=7.1.0
 pkgver=${_pkgver//-/_} # for beta versions
-pkgrel=2
+pkgrel=3
 pkgdesc="An advanced digital photo management application"
 arch=(x86_64)
 license=(GPL)


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:30:48
  Author: felixonmars
Revision: 746127

upgpkg: haskell-ipynb 0.1.0.1-108: rebuild with integer-logarithms 1.0.3.1

Modified:
  haskell-ipynb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:29:47 UTC (rev 746126)
+++ PKGBUILD2020-11-07 22:30:48 UTC (rev 746127)
@@ -3,7 +3,7 @@
 _hkgname=ipynb
 pkgname=haskell-ipynb
 pkgver=0.1.0.1
-pkgrel=107
+pkgrel=108
 pkgdesc="Data structure for working with Jupyter notebooks (ipynb)"
 url="https://github.com/jgm/ipynb;
 license=('BSD')


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:30:56
  Author: felixonmars
Revision: 746128

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-ipynb/repos/community-staging-x86_64/PKGBUILD (from rev 746127, 
haskell-ipynb/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-07 22:30:56 UTC (rev 746128)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=ipynb
+pkgname=haskell-ipynb
+pkgver=0.1.0.1
+pkgrel=108
+pkgdesc="Data structure for working with Jupyter notebooks (ipynb)"
+url="https://github.com/jgm/ipynb;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-base64-bytestring' 
'haskell-unordered-containers')
+makedepends=('ghc' 'haskell-aeson-diff' 'haskell-microlens' 
'haskell-microlens-aeson'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-vector')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('b1e547ac9353c84619832c723586146d2fd72c85c75d11b9ff99c16852ae2dfd1a2d61382ab9cc54bc9ad2bf8e1c3c0a8dc50d49c034d525e7a3393057a0275b')
+
+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 $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:29:38
  Author: felixonmars
Revision: 746125

upgpkg: haskell-aeson-diff 1.1.0.9-97: rebuild with integer-logarithms 1.0.3.1

Modified:
  haskell-aeson-diff/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:27:51 UTC (rev 746124)
+++ PKGBUILD2020-11-07 22:29:38 UTC (rev 746125)
@@ -3,7 +3,7 @@
 _hkgname=aeson-diff
 pkgname=haskell-aeson-diff
 pkgver=1.1.0.9
-pkgrel=96
+pkgrel=97
 pkgdesc="Extract and apply patches to JSON documents"
 url="https://github.com/thsutton/aeson-diff;
 license=('BSD')


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:29:47
  Author: felixonmars
Revision: 746126

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-aeson-diff/repos/community-staging-x86_64/PKGBUILD (from rev 
746125, haskell-aeson-diff/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-07 22:29:47 UTC (rev 746126)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+
+_hkgname=aeson-diff
+pkgname=haskell-aeson-diff
+pkgver=1.1.0.9
+pkgrel=97
+pkgdesc="Extract and apply patches to JSON documents"
+url="https://github.com/thsutton/aeson-diff;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-edit-distance-vector' 
'haskell-hashable'
+ 'haskell-scientific' 'haskell-unordered-containers' 'haskell-vector'
+ 'haskell-optparse-applicative')
+makedepends=('ghc' 'haskell-doctest' 'haskell-glob' 'haskell-quickcheck'
+ 'haskell-quickcheck-instances' 'hlint')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('2778eabe53ac0520028c9eccae7f52dcdeb2eccb4df4ff6a84e4625afc5d46533ebf61b6b99c16eb5ffe9792e781b0f9a8e1e43c2b69b751d1dbc5dd627635d9')
+
+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 $MAKEFLAGS
+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-edit-distance-vector/repos (2 files)

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:27:51
  Author: felixonmars
Revision: 746124

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-edit-distance-vector/repos/community-staging-x86_64/
  haskell-edit-distance-vector/repos/community-staging-x86_64/PKGBUILD
(from rev 746123, haskell-edit-distance-vector/trunk/PKGBUILD)

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

Copied: haskell-edit-distance-vector/repos/community-staging-x86_64/PKGBUILD 
(from rev 746123, haskell-edit-distance-vector/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-07 22:27:51 UTC (rev 746124)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+_hkgname=edit-distance-vector
+pkgname=haskell-edit-distance-vector
+pkgver=1.0.0.4
+pkgrel=93
+pkgdesc="Calculate edit distances and edit scripts between vectors"
+url="https://github.com/thsutton/edit-distance-vector;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-vector')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-quickcheck-instances')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('8d7ef7c6ca971aec5efc2e90adff2584c1e4f996df3ad4f6111f790fd88fcce1814111eb3a3bbe07d8455b03ade98f11e6343c4746e895be2ba9b82a86a33e6d')
+
+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 $MAKEFLAGS
+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-edit-distance-vector/trunk (PKGBUILD)

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:27:42
  Author: felixonmars
Revision: 746123

upgpkg: haskell-edit-distance-vector 1.0.0.4-93: rebuild with 
integer-logarithms 1.0.3.1

Modified:
  haskell-edit-distance-vector/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:26:55 UTC (rev 746122)
+++ PKGBUILD2020-11-07 22:27:42 UTC (rev 746123)
@@ -3,7 +3,7 @@
 _hkgname=edit-distance-vector
 pkgname=haskell-edit-distance-vector
 pkgver=1.0.0.4
-pkgrel=92
+pkgrel=93
 pkgdesc="Calculate edit distances and edit scripts between vectors"
 url="https://github.com/thsutton/edit-distance-vector;
 license=('BSD')


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:26:55
  Author: felixonmars
Revision: 746122

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
746121, haskell-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-07 22:26:55 UTC (rev 746122)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=citeproc
+pkgname=haskell-citeproc
+pkgver=0.1.0.3
+pkgrel=8
+pkgdesc="Generates citations and bibliography from CSL styles."
+url="https://github.com/jgm/citeproc;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 'haskell-attoparsec'
+ 'haskell-case-insensitive' 'haskell-data-default' 'haskell-file-embed'
+ 'haskell-pandoc-types' 'haskell-safe' 'haskell-scientific' 
'haskell-text-icu'
+ 'haskell-uniplate' 'haskell-vector' 'haskell-xml-conduit')
+makedepends=('ghc' 'haskell-diff' 'haskell-timeit')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('b70c9c85b9cebfbd050e7af07ddc96fa42c23777649bce1c6ab9e69926148a76edba4f165ae30dcdf31618e3bbc315ad55b64348c735905a02c4eb7e23210a44')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie' -fexecutable -ficu
+
+  runhaskell Setup build $MAKEFLAGS
+  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 -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:26:47
  Author: felixonmars
Revision: 746121

upgpkg: haskell-citeproc 0.1.0.3-8: rebuild with integer-logarithms 1.0.3.1

Modified:
  haskell-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:24:19 UTC (rev 746120)
+++ PKGBUILD2020-11-07 22:26:47 UTC (rev 746121)
@@ -3,7 +3,7 @@
 _hkgname=citeproc
 pkgname=haskell-citeproc
 pkgver=0.1.0.3
-pkgrel=7
+pkgrel=8
 pkgdesc="Generates citations and bibliography from CSL styles."
 url="https://github.com/jgm/citeproc;
 license=("BSD")


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:24:10
  Author: felixonmars
Revision: 746119

upgpkg: haskell-commonmark-pandoc 0.2.0.1-18: rebuild with integer-logarithms 
1.0.3.1

Modified:
  haskell-commonmark-pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:23:22 UTC (rev 746118)
+++ PKGBUILD2020-11-07 22:24:10 UTC (rev 746119)
@@ -3,7 +3,7 @@
 _hkgname=commonmark-pandoc
 pkgname=haskell-commonmark-pandoc
 pkgver=0.2.0.1
-pkgrel=17
+pkgrel=18
 pkgdesc="Bridge between commonmark and pandoc AST"
 url="https://github.com/jgm/commonmark-hs;
 license=('BSD')


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:24:19
  Author: felixonmars
Revision: 746120

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-commonmark-pandoc/repos/community-staging-x86_64/PKGBUILD (from 
rev 746119, haskell-commonmark-pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-07 22:24:19 UTC (rev 746120)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+_hkgname=commonmark-pandoc
+pkgname=haskell-commonmark-pandoc
+pkgver=0.2.0.1
+pkgrel=18
+pkgdesc="Bridge between commonmark and pandoc AST"
+url="https://github.com/jgm/commonmark-hs;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-commonmark' 'haskell-commonmark-extensions' 
'haskell-pandoc-types')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('5162a987085d5204af27d4b073fedf4d678f5e0325a12f96c611899f3c484e576d7b667271c480837b9d4593e9950828e9398a33c63b5e829016019ecfc7bb6d')
+
+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 $MAKEFLAGS
+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-texmath/trunk (PKGBUILD)

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:23:13
  Author: felixonmars
Revision: 746117

upgpkg: haskell-texmath 0.12.0.3-26: rebuild with integer-logarithms 1.0.3.1

Modified:
  haskell-texmath/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:20:50 UTC (rev 746116)
+++ PKGBUILD2020-11-07 22:23:13 UTC (rev 746117)
@@ -4,7 +4,7 @@
 _hkgname=texmath
 pkgname=haskell-texmath
 pkgver=0.12.0.3
-pkgrel=25
+pkgrel=26
 pkgdesc="Conversion between formats used to represent mathematics."
 url="https://github.com/jgm/texmath;
 license=("GPL2")


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:23:22
  Author: felixonmars
Revision: 746118

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-texmath/repos/community-staging-x86_64/PKGBUILD (from rev 
746117, haskell-texmath/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-07 22:23:22 UTC (rev 746118)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=texmath
+pkgname=haskell-texmath
+pkgver=0.12.0.3
+pkgrel=26
+pkgdesc="Conversion between formats used to represent mathematics."
+url="https://github.com/jgm/texmath;
+license=("GPL2")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-network-uri' 'haskell-pandoc-types'
+ 'haskell-syb' 'haskell-xml')
+makedepends=('ghc' 'haskell-temporary' 'haskell-utf8-string')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('54b4789559dc7c6973854c290b018e7c00dd0ff1c06d8045b5d0a2304436bb59a951e93ab2c9d1d133a9d7c5197cc456334d40dc112c6c6a8f8e9370ab8aa190')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri -f-executable
+runhaskell Setup build $MAKEFLAGS
+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-pandoc-types/trunk (PKGBUILD)

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:20:41
  Author: felixonmars
Revision: 746115

upgpkg: haskell-pandoc-types 1.22-8: rebuild with integer-logarithms 1.0.3.1

Modified:
  haskell-pandoc-types/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:18:55 UTC (rev 746114)
+++ PKGBUILD2020-11-07 22:20:41 UTC (rev 746115)
@@ -4,7 +4,7 @@
 _hkgname=pandoc-types
 pkgname=haskell-pandoc-types
 pkgver=1.22
-pkgrel=7
+pkgrel=8
 pkgdesc="Types for representing a structured document"
 url="https://pandoc.org/;
 license=("BSD")


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:20:50
  Author: felixonmars
Revision: 746116

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-pandoc-types/repos/community-staging-x86_64/PKGBUILD (from rev 
746115, haskell-pandoc-types/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-07 22:20:50 UTC (rev 746116)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pandoc-types
+pkgname=haskell-pandoc-types
+pkgver=1.22
+pkgrel=8
+pkgdesc="Types for representing a structured document"
+url="https://pandoc.org/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-quickcheck' 'haskell-syb')
+makedepends=('ghc' 'haskell-test-framework' 'haskell-test-framework-hunit'
+ 'haskell-test-framework-quickcheck2' 'haskell-hunit' 
'haskell-string-qq')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('b5f7c15b31c5ee6faa4d7574baa32d252b1e79350840f2d7ac3f3896b969e18241e514fb06e85aa97d7a74c0904839d04a4d8e5d4ff86d0a2b80957b99279ee0')
+
+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 $MAKEFLAGS
+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-descriptive/trunk (PKGBUILD)

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:18:45
  Author: felixonmars
Revision: 746113

upgpkg: haskell-descriptive 0.9.5-155: rebuild with integer-logarithms 1.0.3.1

Modified:
  haskell-descriptive/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:17:52 UTC (rev 746112)
+++ PKGBUILD2020-11-07 22:18:45 UTC (rev 746113)
@@ -4,7 +4,7 @@
 _hkgname=descriptive
 pkgname=haskell-descriptive
 pkgver=0.9.5
-pkgrel=154
+pkgrel=155
 pkgdesc="Self-describing consumers/parsers; forms, cmd-line args, JSON, etc."
 url="https://github.com/chrisdone/descriptive;
 license=("BSD")


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:18:55
  Author: felixonmars
Revision: 746114

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-descriptive/repos/community-staging-x86_64/PKGBUILD (from rev 
746113, haskell-descriptive/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-07 22:18:55 UTC (rev 746114)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=descriptive
+pkgname=haskell-descriptive
+pkgver=0.9.5
+pkgrel=155
+pkgdesc="Self-describing consumers/parsers; forms, cmd-line args, JSON, etc."
+url="https://github.com/chrisdone/descriptive;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-bifunctors" "haskell-scientific"
+ "haskell-vector")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('259761b86f0f0c517baf80942e81820e6665b45548a3e7970a19d0ce344781f48e9f35b73748a6d5fe7afcc35bc5d0feb7634e56cb408d03d92e1d0cac1fdd1b')
+
+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 $MAKEFLAGS
+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-esqueleto/trunk (PKGBUILD)

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:17:43
  Author: felixonmars
Revision: 746111

upgpkg: haskell-esqueleto 3.3.4.1-3: rebuild with integer-logarithms 1.0.3.1

Modified:
  haskell-esqueleto/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:16:27 UTC (rev 746110)
+++ PKGBUILD2020-11-07 22:17:43 UTC (rev 746111)
@@ -4,7 +4,7 @@
 _hkgname=esqueleto
 pkgname=haskell-esqueleto
 pkgver=3.3.4.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Type-safe EDSL for SQL queries on persistent backends."
 url="https://github.com/bitemyapp/esqueleto;
 license=("BSD")


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:17:52
  Author: felixonmars
Revision: 746112

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-esqueleto/repos/community-staging-x86_64/PKGBUILD (from rev 
746111, haskell-esqueleto/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-07 22:17:52 UTC (rev 746112)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=esqueleto
+pkgname=haskell-esqueleto
+pkgver=3.3.4.1
+pkgrel=3
+pkgdesc="Type-safe EDSL for SQL queries on persistent backends."
+url="https://github.com/bitemyapp/esqueleto;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 'haskell-blaze-html' 
'haskell-conduit'
+ 'haskell-monad-logger' 'haskell-persistent' 'haskell-resourcet' 
'haskell-tagged'
+ 'haskell-unliftio' 'haskell-unordered-containers')
+makedepends=('ghc')  # 'haskell-vector')  # Not enabled yet
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('ced420bb318fdf6f6389c1b973cb79136df842f2cd1d36be20311618dffeb2c4828bb9662c8aae17bc50577bb9802923c799aef38ae1371130215bbe2ca4bfe7')
+
+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-mysql -f-postgresql
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 22:17:31
  Author: arojas
Revision: 399597

Update to 7.0.10.37

Modified:
  imagemagick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 21:14:30 UTC (rev 399596)
+++ PKGBUILD2020-11-07 22:17:31 UTC (rev 399597)
@@ -3,7 +3,7 @@
 
 pkgbase=imagemagick
 pkgname=(imagemagick imagemagick-doc)
-pkgver=7.0.10.35
+pkgver=7.0.10.37
 pkgrel=1
 pkgdesc="An image viewing/manipulation program"
 url="https://www.imagemagick.org/;
@@ -16,7 +16,7 @@
 _tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
 source=(https://imagemagick.org/download/$_tarname.tar.xz{,.asc}
 arch-fonts.diff)
-sha256sums=('34bd368ebf1f59cdc3537d7a54804c0c87987b34259ff291257650a2d3cd61ae'
+sha256sums=('9c2d5fd11fc4752986f70996a0975c3c39124500ab53330b09f5921441286d2b'
 'SKIP'
 'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
 validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae


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

2020-11-07 Thread Antonio Rojas via arch-commits
Date: Saturday, November 7, 2020 @ 22:17:44
  Author: arojas
Revision: 399598

archrelease: copy trunk to staging-x86_64

Added:
  imagemagick/repos/staging-x86_64/
  imagemagick/repos/staging-x86_64/PKGBUILD
(from rev 399597, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/staging-x86_64/arch-fonts.diff
(from rev 399597, imagemagick/trunk/arch-fonts.diff)

-+
 PKGBUILD|  120 ++
 arch-fonts.diff |  107 
 2 files changed, 227 insertions(+)

Copied: imagemagick/repos/staging-x86_64/PKGBUILD (from rev 399597, 
imagemagick/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-11-07 22:17:44 UTC (rev 399598)
@@ -0,0 +1,120 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Eric Bélanger 
+
+pkgbase=imagemagick
+pkgname=(imagemagick imagemagick-doc)
+pkgver=7.0.10.37
+pkgrel=1
+pkgdesc="An image viewing/manipulation program"
+url="https://www.imagemagick.org/;
+arch=(x86_64)
+license=(custom)
+makedepends=(ghostscript openexr libwmf librsvg libxml2 openjpeg2 libraw 
opencl-headers libwebp libzip
+ chrpath ocl-icd glu ghostpcl ghostxps libheif jbigkit lcms2 
libxext liblqr libraqm libpng djvulibre)
+checkdepends=(gsfonts ttf-dejavu)
+_relname=ImageMagick-${pkgver%%.*}
+_tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
+source=(https://imagemagick.org/download/$_tarname.tar.xz{,.asc}
+arch-fonts.diff)
+sha256sums=('9c2d5fd11fc4752986f70996a0975c3c39124500ab53330b09f5921441286d2b'
+'SKIP'
+'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
+validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae
+
+shopt -s extglob
+
+prepare() {
+  mkdir -p docpkg/usr/share
+
+  cd $_tarname
+
+  # Fix up typemaps to match our packages, where possible
+  patch -p1 -i ../arch-fonts.diff
+}
+
+build() {
+  cd $_tarname
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--enable-shared \
+--with-dejavu-font-dir=/usr/share/fonts/TTF \
+--with-gs-font-dir=/usr/share/fonts/gsfonts \
+PSDelegate=/usr/bin/gs \
+XPSDelegate=/usr/bin/gxps \
+PCLDelegate=/usr/bin/gpcl6 \
+--enable-hdri \
+--enable-opencl \
+--without-gslib \
+--with-djvu \
+--with-lqr \
+--with-modules \
+--with-openexr \
+--with-openjp2 \
+--with-perl \
+--with-perl-options=INSTALLDIRS=vendor \
+--with-rsvg \
+--with-webp \
+--with-wmf \
+--with-xml \
+--without-autotrace \
+--without-dps \
+--without-fftw \
+--without-fpx \
+--without-gcc-arch \
+--without-gvc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() (
+  cd $_tarname
+  ulimit -n 4096
+  make check
+)
+
+package_imagemagick() {
+  depends=(libltdl lcms2 fontconfig libxext liblqr libraqm libpng libxml2)
+  optdepends=('ghostscript: PS/PDF support'
+  'libheif: HEIF support'
+  'libraw: DNG support'
+  'librsvg: SVG support'
+  'libwebp: WEBP support'
+  'libwmf: WMF support'
+  'libxml2: Magick Scripting Language'
+  'ocl-icd: OpenCL support'
+  'openexr: OpenEXR support'
+  'openjpeg2: JPEG2000 support'
+  'djvulibre: DJVU support'
+  'pango: Text rendering'
+  'imagemagick-doc: manual and API docs')
+  options=(!emptydirs libtool)
+  
backup=(etc/$_relname/{colors,delegates,log,mime,policy,quantization-table,thresholds,type,type-{dejavu,ghostscript}}.xml)
+  conflicts=(imagemagick6)
+  provides=(libmagick)
+  replaces=(imagemagick6 libmagick)
+
+  cd $_tarname
+  make DESTDIR="$pkgdir" install
+
+  find "$pkgdir/usr/lib/perl5" -name '*.so' -exec chrpath -d {} +
+  rm "$pkgdir"/etc/$_relname/type-{apple,urw-base35,windows}.xml
+  rm "$pkgdir"/usr/lib/*.la
+
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
+
+# Split docs
+  mv "$pkgdir/usr/share/doc" "$srcdir/docpkg/usr/share/"
+
+# Harden security policy https://bugs.archlinux.org/task/62785
+  sed -e '/<\/policymap>/i \ \ ' -i "$pkgdir"/etc/ImageMagick-7/policy.xml
+}
+
+package_imagemagick-doc() {
+  pkgdesc+=" (manual and API docs)"
+
+  mv docpkg/* "$pkgdir"
+
+  cd $_tarname
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
+}

Copied: imagemagick/repos/staging-x86_64/arch-fonts.diff (from rev 399597, 
imagemagick/trunk/arch-fonts.diff)
===
--- staging-x86_64/arch-fonts.diff  (rev 0)
+++ staging-x86_64/arch-fonts.diff  2020-11-07 22:17:44 UTC (rev 399598)
@@ -0,0 +1,107 @@
+diff -u -r ImageMagick-6.9.9-25/config/type-dejavu.xml.in 
ImageMagick-6.9.9-25-archfonts/config/type-dejavu.xml.in

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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:16:27
  Author: felixonmars
Revision: 746110

archrelease: copy trunk to community-staging-x86_64

Added:
  stack/repos/community-staging-x86_64/
  stack/repos/community-staging-x86_64/PKGBUILD
(from rev 746109, stack/trunk/PKGBUILD)
  stack/repos/community-staging-x86_64/optparse-applicative-0.16.patch
(from rev 746109, stack/trunk/optparse-applicative-0.16.patch)
  stack/repos/community-staging-x86_64/stack.install
(from rev 746109, stack/trunk/stack.install)

-+
 PKGBUILD|   80 ++
 optparse-applicative-0.16.patch |   25 +++
 stack.install   |4 +
 3 files changed, 109 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 746109, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-07 22:16:27 UTC (rev 746110)
@@ -0,0 +1,80 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=2.5.1
+pkgrel=18
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-async' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-casa-client'
+ 'haskell-casa-types' 'haskell-colour' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-cryptonite-conduit' 'haskell-echo'
+ 'haskell-extra' 'haskell-file-embed' 'haskell-filelock' 
'haskell-fsnotify'
+ 'haskell-generic-deriving' 'haskell-githash' 
'haskell-hackage-security' 'haskell-hashable'
+ 'haskell-hi-file-parser' 'haskell-hpack' 'haskell-http-client' 
'haskell-http-client-tls'
+ 'haskell-http-conduit' 'haskell-http-download' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-microlens' 'haskell-mintty' 'haskell-mono-traversable' 
'haskell-mustache'
+ 'haskell-neat-interpolation' 'haskell-network-uri' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'haskell-optparse-generic' 
'haskell-optparse-simple'
+ 'haskell-pantry' 'haskell-path' 'haskell-path-io' 'haskell-persistent'
+ 'haskell-persistent-sqlite' 'haskell-persistent-template' 
'haskell-primitive'
+ 'haskell-project-template' 'haskell-regex-applicative-text' 
'haskell-retry' 'haskell-rio'
+ 'haskell-rio-prettyprint' 'haskell-split' 'haskell-streaming-commons' 
'haskell-tar'
+ 'haskell-temporary' 'haskell-text-metrics' 'haskell-th-reify-many' 
'haskell-tls'
+ 'haskell-typed-process' 'haskell-unicode-transforms' 
'haskell-unix-compat'
+ 'haskell-unliftio' 'haskell-unordered-containers' 'haskell-vector' 
'haskell-yaml'
+ 'haskell-zip-archive' 'haskell-zlib')
+makedepends=('ghc' 'git' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-raw-strings-qq'
+ 'haskell-smallcheck')
+checkdepends=('cabal-install')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("git+https://github.com/commercialhaskell/stack.git#tag=v$pkgver;
+optparse-applicative-0.16.patch)
+sha512sums=('SKIP'
+
'3ed61162edd869d5634e7e8485d784b9a192c97626da817635e6c756ca651454b5b806085aea6d7f8fd54041ae06e1613d9547958a85b777d2dfc35b02c0fbea')
+
+prepare() {
+  cd $pkgname
+  sed -i -e '/semigroups/d' $pkgname.cabal
+  patch -p1 -i ../optparse-applicative-0.16.patch
+}
+
+build() {
+  cd $pkgname
+
+  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-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions -f-supported-build \
+  --ghc-option='-pie'
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $pkgname
+  # cabal update
+  LD_LIBRARY_PATH="$PWD"/dist/build PATH="$PWD"/dist/build/stack:"$PATH" 
runhaskell Setup test
+  # Integration tests will result in 4 failures on Arch currently
+}
+
+package() {
+  cd $pkgname
+
+  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
+
+  LD_PRELOAD=$(ls 

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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:16:14
  Author: felixonmars
Revision: 746109

upgpkg: stack 2.5.1-18: rebuild with integer-logarithms 1.0.3.1

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:10:07 UTC (rev 746108)
+++ PKGBUILD2020-11-07 22:16:14 UTC (rev 746109)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=2.5.1
-pkgrel=17
+pkgrel=18
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("BSD")


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:10:07
  Author: felixonmars
Revision: 746108

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-pantry/repos/community-staging-x86_64/PKGBUILD (from rev 
746107, haskell-pantry/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-07 22:10:07 UTC (rev 746108)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+
+_hkgname=pantry
+pkgname=haskell-pantry
+pkgver=0.5.1.3
+pkgrel=31
+pkgdesc="Content addressable Haskell package management"
+url="https://github.com/commercialhaskell/pantry;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 
'haskell-casa-client'
+ 'haskell-casa-types' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cryptonite'
+ 'haskell-cryptonite-conduit' 'haskell-digest' 'haskell-filelock' 
'haskell-generic-deriving'
+ 'haskell-hackage-security' 'haskell-hpack' 'haskell-http-client' 
'haskell-http-client-tls'
+ 'haskell-http-conduit' 'haskell-http-download' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-mono-traversable' 'haskell-network-uri' 'haskell-path' 
'haskell-path-io'
+ 'haskell-persistent' 'haskell-persistent-sqlite' 
'haskell-persistent-template'
+ 'haskell-primitive' 'haskell-resourcet' 'haskell-rio' 
'haskell-rio-orphans'
+ 'haskell-rio-prettyprint' 'haskell-tar-conduit' 'haskell-text-metrics'
+ 'haskell-unix-compat' 'haskell-unliftio' 
'haskell-unordered-containers' 'haskell-vector'
+ 'haskell-yaml' 'haskell-zip-archive')
+makedepends=('ghc' 'haskell-hedgehog' 'haskell-hspec' 'haskell-quickcheck' 
'haskell-raw-strings-qq')
+checkdepends=('git' 'mercurial')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('04f7b229072467d653c4b7b6b004e4f69128182c88ed4896b212b96129da11f269ff53aa50d3dddf8fd9134153ee2559b18d28f81c5b83c120f005bab5b3d78d')
+
+prepare() {
+cd $_hkgname-$pkgver
+echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+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-pantry/trunk (PKGBUILD)

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:09:58
  Author: felixonmars
Revision: 746107

upgpkg: haskell-pantry 0.5.1.3-31: rebuild with integer-logarithms 1.0.3.1

Modified:
  haskell-pantry/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:05:50 UTC (rev 746106)
+++ PKGBUILD2020-11-07 22:09:58 UTC (rev 746107)
@@ -3,7 +3,7 @@
 _hkgname=pantry
 pkgname=haskell-pantry
 pkgver=0.5.1.3
-pkgrel=30
+pkgrel=31
 pkgdesc="Content addressable Haskell package management"
 url="https://github.com/commercialhaskell/pantry;
 license=('BSD')


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:05:50
  Author: felixonmars
Revision: 746106

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-persistent-qq/repos/community-staging-x86_64/PKGBUILD (from rev 
746105, haskell-persistent-qq/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-07 22:05:50 UTC (rev 746106)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+
+_hkgname=persistent-qq
+pkgname=haskell-persistent-qq
+pkgver=2.9.2
+pkgrel=25
+pkgdesc="Provides a quasi-quoter for raw SQL for persistent"
+url="https://github.com/yesod-web/persistent;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-src-meta' 'haskell-persistent')
+makedepends=('ghc' 'haskell-aeson' 'haskell-fast-logger' 'haskell-hspec' 
'haskell-hunit'
+ 'haskell-monad-logger' 'haskell-persistent-sqlite' 
'haskell-persistent-template'
+ 'haskell-resourcet' 'haskell-unliftio')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('48d6783abf366b327e68e5a1619585c056836885e552b6596eda056cf7758a8b426c3cf27ac7c67cb772bd482de9afbe7365b7647bbf31c529089810b5d5dd97')
+
+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 $MAKEFLAGS
+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-persistent-qq/trunk (PKGBUILD)

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:05:42
  Author: felixonmars
Revision: 746105

upgpkg: haskell-persistent-qq 2.9.2-25: rebuild with integer-logarithms 1.0.3.1

Modified:
  haskell-persistent-qq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:04:10 UTC (rev 746104)
+++ PKGBUILD2020-11-07 22:05:42 UTC (rev 746105)
@@ -3,7 +3,7 @@
 _hkgname=persistent-qq
 pkgname=haskell-persistent-qq
 pkgver=2.9.2
-pkgrel=24
+pkgrel=25
 pkgdesc="Provides a quasi-quoter for raw SQL for persistent"
 url="https://github.com/yesod-web/persistent;
 license=('MIT')


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:04:10
  Author: felixonmars
Revision: 746104

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD (from rev 
746103, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-11-07 22:04:10 UTC (rev 746104)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.6.10
+pkgrel=150
+pkgdesc="Authentication for Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-authenticate' 
'haskell-base16-bytestring'
+ 'haskell-base64-bytestring' 'haskell-blaze-builder' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cryptonite'
+ 'haskell-data-default' 'haskell-email-validate' 'haskell-file-embed' 
'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-network-uri' 'haskell-nonce' 'haskell-persistent' 
'haskell-random' 'haskell-safe'
+ 'haskell-shakespeare' 'haskell-unliftio' 'haskell-unliftio-core'
+ 'haskell-unordered-containers' 'haskell-wai' 'haskell-yesod-core' 
'haskell-yesod-form'
+ 'haskell-yesod-persistent')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('0361d49d625ca01db2fbe063c7a4b314ab29f363295b839210fddb15118929ff619fa0256c4ffe45f06df388166597c1c64a07be8de9019b630e71632d301eb7')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-11-07 Thread Felix Yan via arch-commits
Date: Saturday, November 7, 2020 @ 22:04:02
  Author: felixonmars
Revision: 746103

upgpkg: haskell-yesod-auth 1.6.10-150: rebuild with integer-logarithms 1.0.3.1

Modified:
  haskell-yesod-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-07 22:02:39 UTC (rev 746102)
+++ PKGBUILD2020-11-07 22:04:02 UTC (rev 746103)
@@ -4,7 +4,7 @@
 _hkgname=yesod-auth
 pkgname=haskell-yesod-auth
 pkgver=1.6.10
-pkgrel=149
+pkgrel=150
 pkgdesc="Authentication for Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


  1   2   3   4   5   6   7   8   >