[arch-commits] Commit in libvirt/repos/community-x86_64 (8 files)

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Sunday, October 18, 2020 @ 04:37:08
  Author: freswa
Revision: 725860

archrelease: copy trunk to community-x86_64

Added:
  libvirt/repos/community-x86_64/CVE-2020-14339.patch
(from rev 725859, libvirt/trunk/CVE-2020-14339.patch)
  libvirt/repos/community-x86_64/Changelog
(from rev 725859, libvirt/trunk/Changelog)
  libvirt/repos/community-x86_64/PKGBUILD
(from rev 725859, libvirt/trunk/PKGBUILD)
  libvirt/repos/community-x86_64/libvirt.install
(from rev 725859, libvirt/trunk/libvirt.install)
Deleted:
  libvirt/repos/community-x86_64/CVE-2020-14339.patch
  libvirt/repos/community-x86_64/Changelog
  libvirt/repos/community-x86_64/PKGBUILD
  libvirt/repos/community-x86_64/libvirt.install

--+
 CVE-2020-14339.patch |  956 -
 Changelog|2 
 PKGBUILD |  380 +--
 libvirt.install  |   14 
 4 files changed, 676 insertions(+), 676 deletions(-)

Deleted: CVE-2020-14339.patch
===
--- CVE-2020-14339.patch2020-10-18 04:37:02 UTC (rev 725859)
+++ CVE-2020-14339.patch2020-10-18 04:37:08 UTC (rev 725860)
@@ -1,478 +0,0 @@
-diff --git a/po/POTFILES.in b/po/POTFILES.in
-index af52054aa4..eb1ffd1dbd 100644
 a/po/POTFILES.in
-+++ b/po/POTFILES.in
-@@ -240,6 +240,7 @@
- @SRCDIR@/src/util/vircrypto.c
- @SRCDIR@/src/util/virdaemon.c
- @SRCDIR@/src/util/virdbus.c
-+@SRCDIR@/src/util/virdevmapper.c
- @SRCDIR@/src/util/virdnsmasq.c
- @SRCDIR@/src/util/virerror.c
- @SRCDIR@/src/util/virerror.h
-diff --git a/src/qemu/qemu_cgroup.c b/src/qemu/qemu_cgroup.c
-index 914bf640ca..e88da02341 100644
 a/src/qemu/qemu_cgroup.c
-+++ b/src/qemu/qemu_cgroup.c
-@@ -87,7 +87,7 @@ qemuSetupImagePathCgroup(virDomainObjPtr vm,
- }
- 
- if (virDevMapperGetTargets(path, ) < 0 &&
--errno != ENOSYS && errno != EBADF) {
-+errno != ENOSYS) {
- virReportSystemError(errno,
-  _("Unable to get devmapper targets for %s"),
-  path);
-diff --git a/src/qemu/qemu_domain.c b/src/qemu/qemu_domain.c
-index c5b8d91f9a..088d711ae3 100644
 a/src/qemu/qemu_domain.c
-+++ b/src/qemu/qemu_domain.c
-@@ -10338,7 +10338,7 @@ qemuDomainSetupDisk(virQEMUDriverConfigPtr cfg 
G_GNUC_UNUSED,
- return -1;
- 
- if (virDevMapperGetTargets(next->path, ) < 0 &&
--errno != ENOSYS && errno != EBADF) {
-+errno != ENOSYS) {
- virReportSystemError(errno,
-  _("Unable to get devmapper targets for 
%s"),
-  next->path);
-@@ -11402,7 +11402,7 @@ qemuDomainNamespaceSetupDisk(virDomainObjPtr vm,
- tmpPath = g_strdup(next->path);
- 
- if (virDevMapperGetTargets(next->path, ) < 0 &&
--errno != ENOSYS && errno != EBADF) {
-+errno != ENOSYS) {
- virReportSystemError(errno,
-  _("Unable to get devmapper targets for 
%s"),
-  next->path);
-diff --git a/src/util/virdevmapper.c b/src/util/virdevmapper.c
-index 40a82285f9..a471504176 100644
 a/src/util/virdevmapper.c
-+++ b/src/util/virdevmapper.c
-@@ -20,38 +20,67 @@
- 
- #include 
- 
-+#include "virdevmapper.h"
-+#include "internal.h"
-+
- #ifdef __linux__
- # include 
--#endif
-+# include 
-+# include 
-+# include 
-+# include 
-+# include 
- 
--#ifdef WITH_DEVMAPPER
--# include 
--#endif
-+# include "virthread.h"
-+# include "viralloc.h"
-+# include "virstring.h"
-+# include "virfile.h"
-+
-+# define VIR_FROM_THIS VIR_FROM_STORAGE
-+
-+# define PROC_DEVICES "/proc/devices"
-+# define DM_NAME "device-mapper"
-+# define DEV_DM_DIR "/dev/" DM_DIR
-+# define CONTROL_PATH DEV_DM_DIR "/" DM_CONTROL_NODE
-+# define BUF_SIZE (16 * 1024)
-+
-+G_STATIC_ASSERT(BUF_SIZE > sizeof(struct dm_ioctl));
-+
-+static unsigned int virDMMajor;
- 
--#include "virdevmapper.h"
--#include "internal.h"
--#include "virthread.h"
--#include "viralloc.h"
--#include "virstring.h"
--
--#ifdef WITH_DEVMAPPER
--static void
--virDevMapperDummyLogger(int level G_GNUC_UNUSED,
--const char *file G_GNUC_UNUSED,
--int line G_GNUC_UNUSED,
--int dm_errno G_GNUC_UNUSED,
--const char *fmt G_GNUC_UNUSED,
--...)
--{
--return;
--}
- 
- static int
- virDevMapperOnceInit(void)
- {
--/* Ideally, we would not need this. But libdevmapper prints
-- * error messages to stderr by default. Sad but true. */
--dm_log_with_errno_init(virDevMapperDummyLogger);
-+g_autofree char *buf = NULL;
-+VIR_AUTOSTRINGLIST lines = NULL;
-+size_t i;
-+
-+if (virFileReadAll(PROC_DEVICES, BUF_SIZE, ) < 0)
-+return -1;
-+
-+lines = virStringSplit(buf, "\n", 

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

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Sunday, October 18, 2020 @ 04:37:02
  Author: freswa
Revision: 725859

fix typo in epoch variable

Modified:
  libvirt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 04:34:36 UTC (rev 725858)
+++ PKGBUILD2020-10-18 04:37:02 UTC (rev 725859)
@@ -4,7 +4,7 @@
 # Contributor: Jonathan Wiersma 
 
 pkgname=(libvirt libvirt-storage-gluster libvirt-storage-iscsi-direct 
libvirt-storage-rbd)
-epocj=1
+epoch=1
 pkgver=6.5.0
 pkgrel=2
 pkgdesc="API for controlling virtualization engines 
(openvz,kvm,qemu,virtualbox,xen,etc)"


[arch-commits] Commit in libvirt/repos/community-x86_64 (7 files)

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Sunday, October 18, 2020 @ 04:34:36
  Author: freswa
Revision: 725858

archrelease: copy trunk to community-x86_64

Added:
  libvirt/repos/community-x86_64/CVE-2020-14339.patch
(from rev 725857, libvirt/trunk/CVE-2020-14339.patch)
  libvirt/repos/community-x86_64/Changelog
(from rev 725857, libvirt/trunk/Changelog)
  libvirt/repos/community-x86_64/PKGBUILD
(from rev 725857, libvirt/trunk/PKGBUILD)
  libvirt/repos/community-x86_64/libvirt.install
(from rev 725857, libvirt/trunk/libvirt.install)
Deleted:
  libvirt/repos/community-x86_64/Changelog
  libvirt/repos/community-x86_64/PKGBUILD
  libvirt/repos/community-x86_64/libvirt.install

--+
 CVE-2020-14339.patch |  478 +
 Changelog|2 
 PKGBUILD |  408 +++--
 libvirt.install  |   14 -
 4 files changed, 676 insertions(+), 226 deletions(-)

Copied: libvirt/repos/community-x86_64/CVE-2020-14339.patch (from rev 725857, 
libvirt/trunk/CVE-2020-14339.patch)
===
--- CVE-2020-14339.patch(rev 0)
+++ CVE-2020-14339.patch2020-10-18 04:34:36 UTC (rev 725858)
@@ -0,0 +1,478 @@
+diff --git a/po/POTFILES.in b/po/POTFILES.in
+index af52054aa4..eb1ffd1dbd 100644
+--- a/po/POTFILES.in
 b/po/POTFILES.in
+@@ -240,6 +240,7 @@
+ @SRCDIR@/src/util/vircrypto.c
+ @SRCDIR@/src/util/virdaemon.c
+ @SRCDIR@/src/util/virdbus.c
++@SRCDIR@/src/util/virdevmapper.c
+ @SRCDIR@/src/util/virdnsmasq.c
+ @SRCDIR@/src/util/virerror.c
+ @SRCDIR@/src/util/virerror.h
+diff --git a/src/qemu/qemu_cgroup.c b/src/qemu/qemu_cgroup.c
+index 914bf640ca..e88da02341 100644
+--- a/src/qemu/qemu_cgroup.c
 b/src/qemu/qemu_cgroup.c
+@@ -87,7 +87,7 @@ qemuSetupImagePathCgroup(virDomainObjPtr vm,
+ }
+ 
+ if (virDevMapperGetTargets(path, ) < 0 &&
+-errno != ENOSYS && errno != EBADF) {
++errno != ENOSYS) {
+ virReportSystemError(errno,
+  _("Unable to get devmapper targets for %s"),
+  path);
+diff --git a/src/qemu/qemu_domain.c b/src/qemu/qemu_domain.c
+index c5b8d91f9a..088d711ae3 100644
+--- a/src/qemu/qemu_domain.c
 b/src/qemu/qemu_domain.c
+@@ -10338,7 +10338,7 @@ qemuDomainSetupDisk(virQEMUDriverConfigPtr cfg 
G_GNUC_UNUSED,
+ return -1;
+ 
+ if (virDevMapperGetTargets(next->path, ) < 0 &&
+-errno != ENOSYS && errno != EBADF) {
++errno != ENOSYS) {
+ virReportSystemError(errno,
+  _("Unable to get devmapper targets for 
%s"),
+  next->path);
+@@ -11402,7 +11402,7 @@ qemuDomainNamespaceSetupDisk(virDomainObjPtr vm,
+ tmpPath = g_strdup(next->path);
+ 
+ if (virDevMapperGetTargets(next->path, ) < 0 &&
+-errno != ENOSYS && errno != EBADF) {
++errno != ENOSYS) {
+ virReportSystemError(errno,
+  _("Unable to get devmapper targets for 
%s"),
+  next->path);
+diff --git a/src/util/virdevmapper.c b/src/util/virdevmapper.c
+index 40a82285f9..a471504176 100644
+--- a/src/util/virdevmapper.c
 b/src/util/virdevmapper.c
+@@ -20,38 +20,67 @@
+ 
+ #include 
+ 
++#include "virdevmapper.h"
++#include "internal.h"
++
+ #ifdef __linux__
+ # include 
+-#endif
++# include 
++# include 
++# include 
++# include 
++# include 
+ 
+-#ifdef WITH_DEVMAPPER
+-# include 
+-#endif
++# include "virthread.h"
++# include "viralloc.h"
++# include "virstring.h"
++# include "virfile.h"
++
++# define VIR_FROM_THIS VIR_FROM_STORAGE
++
++# define PROC_DEVICES "/proc/devices"
++# define DM_NAME "device-mapper"
++# define DEV_DM_DIR "/dev/" DM_DIR
++# define CONTROL_PATH DEV_DM_DIR "/" DM_CONTROL_NODE
++# define BUF_SIZE (16 * 1024)
++
++G_STATIC_ASSERT(BUF_SIZE > sizeof(struct dm_ioctl));
++
++static unsigned int virDMMajor;
+ 
+-#include "virdevmapper.h"
+-#include "internal.h"
+-#include "virthread.h"
+-#include "viralloc.h"
+-#include "virstring.h"
+-
+-#ifdef WITH_DEVMAPPER
+-static void
+-virDevMapperDummyLogger(int level G_GNUC_UNUSED,
+-const char *file G_GNUC_UNUSED,
+-int line G_GNUC_UNUSED,
+-int dm_errno G_GNUC_UNUSED,
+-const char *fmt G_GNUC_UNUSED,
+-...)
+-{
+-return;
+-}
+ 
+ static int
+ virDevMapperOnceInit(void)
+ {
+-/* Ideally, we would not need this. But libdevmapper prints
+- * error messages to stderr by default. Sad but true. */
+-dm_log_with_errno_init(virDevMapperDummyLogger);
++g_autofree char *buf = NULL;
++VIR_AUTOSTRINGLIST lines = NULL;
++size_t i;
++
++if (virFileReadAll(PROC_DEVICES, BUF_SIZE, ) < 0)
++return 

[arch-commits] Commit in libvirt/trunk (CVE-2020-14339.patch PKGBUILD)

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Sunday, October 18, 2020 @ 04:34:29
  Author: freswa
Revision: 725857

rollback to 6.5.0-2

Added:
  libvirt/trunk/CVE-2020-14339.patch
(from rev 706920, libvirt/trunk/CVE-2020-14339.patch)
Modified:
  libvirt/trunk/PKGBUILD

--+
 CVE-2020-14339.patch |  478 +
 PKGBUILD |  110 ---
 2 files changed, 519 insertions(+), 69 deletions(-)

Copied: libvirt/trunk/CVE-2020-14339.patch (from rev 706920, 
libvirt/trunk/CVE-2020-14339.patch)
===
--- CVE-2020-14339.patch(rev 0)
+++ CVE-2020-14339.patch2020-10-18 04:34:29 UTC (rev 725857)
@@ -0,0 +1,478 @@
+diff --git a/po/POTFILES.in b/po/POTFILES.in
+index af52054aa4..eb1ffd1dbd 100644
+--- a/po/POTFILES.in
 b/po/POTFILES.in
+@@ -240,6 +240,7 @@
+ @SRCDIR@/src/util/vircrypto.c
+ @SRCDIR@/src/util/virdaemon.c
+ @SRCDIR@/src/util/virdbus.c
++@SRCDIR@/src/util/virdevmapper.c
+ @SRCDIR@/src/util/virdnsmasq.c
+ @SRCDIR@/src/util/virerror.c
+ @SRCDIR@/src/util/virerror.h
+diff --git a/src/qemu/qemu_cgroup.c b/src/qemu/qemu_cgroup.c
+index 914bf640ca..e88da02341 100644
+--- a/src/qemu/qemu_cgroup.c
 b/src/qemu/qemu_cgroup.c
+@@ -87,7 +87,7 @@ qemuSetupImagePathCgroup(virDomainObjPtr vm,
+ }
+ 
+ if (virDevMapperGetTargets(path, ) < 0 &&
+-errno != ENOSYS && errno != EBADF) {
++errno != ENOSYS) {
+ virReportSystemError(errno,
+  _("Unable to get devmapper targets for %s"),
+  path);
+diff --git a/src/qemu/qemu_domain.c b/src/qemu/qemu_domain.c
+index c5b8d91f9a..088d711ae3 100644
+--- a/src/qemu/qemu_domain.c
 b/src/qemu/qemu_domain.c
+@@ -10338,7 +10338,7 @@ qemuDomainSetupDisk(virQEMUDriverConfigPtr cfg 
G_GNUC_UNUSED,
+ return -1;
+ 
+ if (virDevMapperGetTargets(next->path, ) < 0 &&
+-errno != ENOSYS && errno != EBADF) {
++errno != ENOSYS) {
+ virReportSystemError(errno,
+  _("Unable to get devmapper targets for 
%s"),
+  next->path);
+@@ -11402,7 +11402,7 @@ qemuDomainNamespaceSetupDisk(virDomainObjPtr vm,
+ tmpPath = g_strdup(next->path);
+ 
+ if (virDevMapperGetTargets(next->path, ) < 0 &&
+-errno != ENOSYS && errno != EBADF) {
++errno != ENOSYS) {
+ virReportSystemError(errno,
+  _("Unable to get devmapper targets for 
%s"),
+  next->path);
+diff --git a/src/util/virdevmapper.c b/src/util/virdevmapper.c
+index 40a82285f9..a471504176 100644
+--- a/src/util/virdevmapper.c
 b/src/util/virdevmapper.c
+@@ -20,38 +20,67 @@
+ 
+ #include 
+ 
++#include "virdevmapper.h"
++#include "internal.h"
++
+ #ifdef __linux__
+ # include 
+-#endif
++# include 
++# include 
++# include 
++# include 
++# include 
+ 
+-#ifdef WITH_DEVMAPPER
+-# include 
+-#endif
++# include "virthread.h"
++# include "viralloc.h"
++# include "virstring.h"
++# include "virfile.h"
++
++# define VIR_FROM_THIS VIR_FROM_STORAGE
++
++# define PROC_DEVICES "/proc/devices"
++# define DM_NAME "device-mapper"
++# define DEV_DM_DIR "/dev/" DM_DIR
++# define CONTROL_PATH DEV_DM_DIR "/" DM_CONTROL_NODE
++# define BUF_SIZE (16 * 1024)
++
++G_STATIC_ASSERT(BUF_SIZE > sizeof(struct dm_ioctl));
++
++static unsigned int virDMMajor;
+ 
+-#include "virdevmapper.h"
+-#include "internal.h"
+-#include "virthread.h"
+-#include "viralloc.h"
+-#include "virstring.h"
+-
+-#ifdef WITH_DEVMAPPER
+-static void
+-virDevMapperDummyLogger(int level G_GNUC_UNUSED,
+-const char *file G_GNUC_UNUSED,
+-int line G_GNUC_UNUSED,
+-int dm_errno G_GNUC_UNUSED,
+-const char *fmt G_GNUC_UNUSED,
+-...)
+-{
+-return;
+-}
+ 
+ static int
+ virDevMapperOnceInit(void)
+ {
+-/* Ideally, we would not need this. But libdevmapper prints
+- * error messages to stderr by default. Sad but true. */
+-dm_log_with_errno_init(virDevMapperDummyLogger);
++g_autofree char *buf = NULL;
++VIR_AUTOSTRINGLIST lines = NULL;
++size_t i;
++
++if (virFileReadAll(PROC_DEVICES, BUF_SIZE, ) < 0)
++return -1;
++
++lines = virStringSplit(buf, "\n", 0);
++if (!lines)
++return -1;
++
++for (i = 0; lines[i]; i++) {
++g_autofree char *dev = NULL;
++unsigned int maj;
++
++if (sscanf(lines[i], "%u %ms\n", , ) == 2 &&
++STREQ(dev, DM_NAME)) {
++virDMMajor = maj;
++break;
++}
++}
++
++if (!lines[i]) {
++virReportError(VIR_ERR_INTERNAL_ERROR,
++   _("Unable to find major for %s"),
++   DM_NAME);
++ 

[arch-commits] Commit in linux-zen/repos/extra-x86_64 (6 files)

2020-10-17 Thread Jan Steffens via arch-commits
Date: Sunday, October 18, 2020 @ 03:11:07
  Author: heftig
Revision: 398556

archrelease: copy trunk to extra-x86_64

Added:
  linux-zen/repos/extra-x86_64/PKGBUILD
(from rev 398555, linux-zen/trunk/PKGBUILD)
  linux-zen/repos/extra-x86_64/config
(from rev 398555, linux-zen/trunk/config)
  linux-zen/repos/extra-x86_64/sphinx-workaround.patch
(from rev 398555, linux-zen/trunk/sphinx-workaround.patch)
Deleted:
  linux-zen/repos/extra-x86_64/PKGBUILD
  linux-zen/repos/extra-x86_64/config
  linux-zen/repos/extra-x86_64/sphinx-workaround.patch

-+
 PKGBUILD|  398 
 config  |22258 +++---
 sphinx-workaround.patch |   26 
 3 files changed, 11341 insertions(+), 11341 deletions(-)

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


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

2020-10-17 Thread Jan Steffens via arch-commits
Date: Sunday, October 18, 2020 @ 03:10:55
  Author: heftig
Revision: 398555

5.9.1.zen2-1

Modified:
  linux-zen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-17 23:21:36 UTC (rev 398554)
+++ PKGBUILD2020-10-18 03:10:55 UTC (rev 398555)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=linux-zen
-pkgver=5.9.1.zen1
+pkgver=5.9.1.zen2
 pkgrel=1
 pkgdesc='Linux ZEN'
 _srctag=v${pkgver%.*}-${pkgver##*.}


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:47:55
  Author: felixonmars
Revision: 725856

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-snap-core/repos/community-staging-x86_64/PKGBUILD (from rev 
725855, haskell-snap-core/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-18 00:47:55 UTC (rev 725856)
@@ -0,0 +1,55 @@
+# Maintainer: Felix Yan 
+
+_hkgname=snap-core
+pkgname=haskell-snap-core
+pkgver=1.0.4.2
+pkgrel=53
+pkgdesc="A Haskell Web Framework (core interfaces and types)"
+url="https://github.com/snapframework/snap-core;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-old-locale' 'haskell-hunit' 'haskell-attoparsec'
+ 'haskell-case-insensitive' 'haskell-lifted-base' 'haskell-io-streams' 
'haskell-hashable'
+ 'haskell-monad-control' 'haskell-random' 'haskell-readable' 
'haskell-regex-posix'
+ 'haskell-transformers-base' 'haskell-unix-compat' 
'haskell-unordered-containers'
+ 'haskell-vector' 'haskell-network' 'haskell-network-uri')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-parallel' 
'haskell-test-framework'
+ 'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2' 'haskell-zlib')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz
+
snap-core-fix-random-1.2.patch::https://github.com/snapframework/snap-core/pull/299.patch)
+sha512sums=('42e710ac58a7d3cf58f9fdeca6c9c4880a94765ee0dc42fbcdaf68a6c2c337e1715f8b89863c7f911232af493bf5622b647d4c962237f211f97d731572fd94f5'
+
'4c00e8bcf390c5e7367afe4879e34b5c5db8801080b63598cbfbda2cf73d4fc2180844383c8eabe814809d5a5a2d15c5f4da32a3ecea94a554d9dbedd858f501')
+
+prepare() {
+cd $_hkgname-$pkgver
+patch -p1 -i ../snap-core-fix-random-1.2.patch
+sed -i -e '/bytestring-builder/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $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-snap-core/trunk (PKGBUILD)

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:47:40
  Author: felixonmars
Revision: 725855

upgpkg: haskell-snap-core 1.0.4.2-53: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-snap-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:45:23 UTC (rev 725854)
+++ PKGBUILD2020-10-18 00:47:40 UTC (rev 725855)
@@ -3,7 +3,7 @@
 _hkgname=snap-core
 pkgname=haskell-snap-core
 pkgver=1.0.4.2
-pkgrel=52
+pkgrel=53
 pkgdesc="A Haskell Web Framework (core interfaces and types)"
 url="https://github.com/snapframework/snap-core;
 license=('BSD')


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:45:23
  Author: felixonmars
Revision: 725854

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-skylighting/repos/community-staging-x86_64/PKGBUILD (from rev 
725853, haskell-skylighting/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-18 00:45:23 UTC (rev 725854)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+
+_hkgname=skylighting
+pkgname=haskell-skylighting
+pkgver=0.8.5
+pkgrel=59
+pkgdesc="Syntax highlighting library"
+url="https://github.com/jgm/skylighting;
+license=('GPL2')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-skylighting-core')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('9d40d96020a3b54d549259f6c981ff63f666f490e900f29eda437ed76965f172e9c77c4def36850e448ca0d3fad035ce4e9a244fd0b3748c6c24fb413c69614f')
+
+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-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
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:45:08
  Author: felixonmars
Revision: 725853

upgpkg: haskell-skylighting 0.8.5-59: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-skylighting/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:44:19 UTC (rev 725852)
+++ PKGBUILD2020-10-18 00:45:08 UTC (rev 725853)
@@ -3,7 +3,7 @@
 _hkgname=skylighting
 pkgname=haskell-skylighting
 pkgver=0.8.5
-pkgrel=58
+pkgrel=59
 pkgdesc="Syntax highlighting library"
 url="https://github.com/jgm/skylighting;
 license=('GPL2')


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

2020-10-17 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, October 18, 2020 @ 00:44:14
  Author: svenstaro
Revision: 725851

upgpkg: pocl 1.5-4: Include all CPU variants (FS#68282)

Modified:
  pocl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:44:12 UTC (rev 725850)
+++ PKGBUILD2020-10-18 00:44:14 UTC (rev 725851)
@@ -5,7 +5,7 @@
 
 pkgname=pocl
 pkgver=1.5
-pkgrel=2
+pkgrel=4
 pkgdesc="Portable OpenCL is an open-source implementation of OpenCL which can 
be easily adapted for new targets"
 arch=('x86_64')
 url="http://portablecl.org/;
@@ -12,27 +12,27 @@
 license=('GPL')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/$pkgname/$pkgname/archive/v$pkgver.tar.gz;)
 depends=('clang' 'hwloc' 'opencl-icd-loader')
-makedepends=('llvm' 'cmake' 'opencl-headers' 'ocl-icd')
+makedepends=('llvm' 'cmake' 'opencl-headers' 'ocl-icd' 'ninja')
 
sha512sums=('a9c2879b6f0c0d9a78035ba8ed7531b8fa795074864ee5bab265d7dafedac9637025f994719f00f8d9e25bf5068bd9b074d95b964e5d2c0eddb8d8837e6e5da3')
 
 build() {
-  mkdir -p build
-  cd build
-
+  cd "$pkgname-$pkgver"
   cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_BUILD_TYPE=Release \
-"$srcdir/$pkgname-$pkgver"
-  make
+  -GNinja \
+  -Bbuild \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_INSTALL_LIBDIR=lib \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DKERNELLIB_HOST_CPU_VARIANTS=distro
+  ninja -C build
 }
 
 check() {
-  cd build
-  make check
+  cd "$pkgname-$pkgver"
+  ninja -C build check
 }
 
 package() {
-  cd build
-  make DESTDIR="$pkgdir"/ install
+  cd "$pkgname-$pkgver"
+  DESTDIR="$pkgdir"/ ninja -C build install
 }


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

2020-10-17 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, October 18, 2020 @ 00:44:19
  Author: svenstaro
Revision: 725852

archrelease: copy trunk to community-x86_64

Added:
  pocl/repos/community-x86_64/PKGBUILD
(from rev 725851, pocl/trunk/PKGBUILD)
Deleted:
  pocl/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-18 00:44:14 UTC (rev 725851)
+++ PKGBUILD2020-10-18 00:44:19 UTC (rev 725852)
@@ -1,38 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: spider-mario 
-# Contributor: Olaf Leidinger 
-# Contributor: fabien Cellier 
-
-pkgname=pocl
-pkgver=1.5
-pkgrel=2
-pkgdesc="Portable OpenCL is an open-source implementation of OpenCL which can 
be easily adapted for new targets"
-arch=('x86_64')
-url="http://portablecl.org/;
-license=('GPL')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/$pkgname/$pkgname/archive/v$pkgver.tar.gz;)
-depends=('clang' 'hwloc' 'opencl-icd-loader')
-makedepends=('llvm' 'cmake' 'opencl-headers' 'ocl-icd')
-sha512sums=('a9c2879b6f0c0d9a78035ba8ed7531b8fa795074864ee5bab265d7dafedac9637025f994719f00f8d9e25bf5068bd9b074d95b964e5d2c0eddb8d8837e6e5da3')
-
-build() {
-  mkdir -p build
-  cd build
-
-  cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_BUILD_TYPE=Release \
-"$srcdir/$pkgname-$pkgver"
-  make
-}
-
-check() {
-  cd build
-  make check
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir"/ install
-}

Copied: pocl/repos/community-x86_64/PKGBUILD (from rev 725851, 
pocl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-18 00:44:19 UTC (rev 725852)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: spider-mario 
+# Contributor: Olaf Leidinger 
+# Contributor: fabien Cellier 
+
+pkgname=pocl
+pkgver=1.5
+pkgrel=4
+pkgdesc="Portable OpenCL is an open-source implementation of OpenCL which can 
be easily adapted for new targets"
+arch=('x86_64')
+url="http://portablecl.org/;
+license=('GPL')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/$pkgname/$pkgname/archive/v$pkgver.tar.gz;)
+depends=('clang' 'hwloc' 'opencl-icd-loader')
+makedepends=('llvm' 'cmake' 'opencl-headers' 'ocl-icd' 'ninja')
+sha512sums=('a9c2879b6f0c0d9a78035ba8ed7531b8fa795074864ee5bab265d7dafedac9637025f994719f00f8d9e25bf5068bd9b074d95b964e5d2c0eddb8d8837e6e5da3')
+
+build() {
+  cd "$pkgname-$pkgver"
+  cmake \
+  -GNinja \
+  -Bbuild \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_INSTALL_LIBDIR=lib \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DKERNELLIB_HOST_CPU_VARIANTS=distro
+  ninja -C build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  ninja -C build check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  DESTDIR="$pkgdir"/ ninja -C build install
+}


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:44:12
  Author: felixonmars
Revision: 725850

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-skylighting-core/repos/community-staging-x86_64/PKGBUILD (from 
rev 725849, haskell-skylighting-core/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-18 00:44:12 UTC (rev 725850)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=skylighting-core
+pkgname=haskell-skylighting-core
+pkgver=0.8.5
+pkgrel=59
+pkgdesc="Syntax highlighting library"
+url="https://github.com/jgm/skylighting;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 
'haskell-attoparsec'
+ 'haskell-base64-bytestring' 'haskell-blaze-html' 
'haskell-case-insensitive'
+ 'haskell-colour' 'haskell-hxt' 'haskell-regex-pcre' 'haskell-safe'
+ 'haskell-utf8-string')
+makedepends=('ghc' 'haskell-diff' 'haskell-hunit' 'haskell-pretty-show' 
'haskell-quickcheck'
+ 'haskell-random' 'haskell-tasty' 'haskell-tasty-golden' 
'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('ad411d7e0fd72adeb4cdbf6fc57d6191c51d9319b25c8d41ad35a66f885d518a842846cd7cf5ce35bdc31da74e0f9d97445f492628a4b5a2bceb85642aa23257')
+
+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 \
+-fexecutable -fsystem-pcre
+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-skylighting-core/trunk (PKGBUILD)

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:43:56
  Author: felixonmars
Revision: 725849

upgpkg: haskell-skylighting-core 0.8.5-59: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-skylighting-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:42:21 UTC (rev 725848)
+++ PKGBUILD2020-10-18 00:43:56 UTC (rev 725849)
@@ -3,7 +3,7 @@
 _hkgname=skylighting-core
 pkgname=haskell-skylighting-core
 pkgver=0.8.5
-pkgrel=58
+pkgrel=59
 pkgdesc="Syntax highlighting library"
 url="https://github.com/jgm/skylighting;
 license=('BSD')


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:42:04
  Author: felixonmars
Revision: 725847

upgpkg: haskell-shake 0.19.1-76: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-shake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:34:29 UTC (rev 725846)
+++ PKGBUILD2020-10-18 00:42:04 UTC (rev 725847)
@@ -4,7 +4,7 @@
 _hkgname=shake
 pkgname=haskell-shake
 pkgver=0.19.1
-pkgrel=75
+pkgrel=76
 pkgdesc="Build system library, like Make, but more accurate dependencies."
 url="https://shakebuild.com;
 license=("BSD")


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:42:21
  Author: felixonmars
Revision: 725848

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-shake/repos/community-staging-x86_64/PKGBUILD (from rev 725847, 
haskell-shake/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-18 00:42:21 UTC (rev 725848)
@@ -0,0 +1,60 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=shake
+pkgname=haskell-shake
+pkgver=0.19.1
+pkgrel=76
+pkgdesc="Build system library, like Make, but more accurate dependencies."
+url="https://shakebuild.com;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-extra' 'haskell-file-embed' 'haskell-filepattern' 
'haskell-hashable'
+ 'haskell-heaps' 'haskell-js-dgtable' 'haskell-js-flot' 
'haskell-js-jquery'
+ 'haskell-primitive' 'haskell-random' 'haskell-unordered-containers' 
'haskell-utf8-string')
+makedepends=('ghc' 'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('dbc0e4e60b5c1e622538f4bdee011a4e2d67ea7dd7cead2cf56c1cb3490562858c0af58e920a0267ba1f3569af386a8a3c2aa0429bfb24ad3bca460975e714d9')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/ghc --make/ghc -dynamic --make/' 
src/Test/{Command.hs,CloseFileHandles.hs}
+sed -e 's/ghc -package=Cabal/ghc -package=Cabal -dynamic/' \
+-e 's/ghc -fno-code/ghc -dynamic -fno-code/' \
+-e 
's/"configure",/"configure","--enable-executable-dynamic","--disable-library-vanilla",/'
 \
+-i src/Test/Docs.hs
+sed -i 's/cmd "ghc" flags/cmd "ghc" "-dynamic" flags/' src/Test/Self.hs 
src/Test/SelfMake.hs
+sed -i 's/ghc --make/ghc -dynamic --make/' docs/manual/build.sh
+
+# Not sure about this one:
+sed -i 's/at cmd, called at/at want, called at/' src/Test/Errors.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir="$pkgname" 
 --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-portable -f-cloud -f-embed-files
+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 wimlib/trunk (PKGBUILD)

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Sunday, October 18, 2020 @ 00:34:25
  Author: freswa
Revision: 725845

upgpkg: wimlib 1.13.2-1

Modified:
  wimlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:34:10 UTC (rev 725844)
+++ PKGBUILD2020-10-18 00:34:25 UTC (rev 725845)
@@ -2,8 +2,8 @@
 # Contributor: Eric Biggers 
 
 pkgname=wimlib
-pkgver=1.13.1
-pkgrel=2
+pkgver=1.13.2
+pkgrel=1
 pkgdesc='A library and program to extract, create, and modify WIM files'
 arch=('x86_64')
 url='https://wimlib.net'
@@ -14,8 +14,9 @@
 'mtools: for making disk image of Windows PE' 
 'syslinux: for making disk image of Windows PE'
 'cabextract: for extracting Windows PE from the WAIK')
+provides=('libwim.so')
 source=("https://wimlib.net/downloads/$pkgname-$pkgver.tar.gz;)
-sha256sums=('47f4bc645c1b6ee15068d406a90bb38aec816354e140291ccb01e536f2cdaf5f')
+sha256sums=('7295be7ef00d265aef4090c9d26af82097db651c5f8399db9d44c60f47f5a945')
 
 build() {
 cd "$pkgname-$pkgver"


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:34:10
  Author: felixonmars
Revision: 725844

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-servant-swagger/repos/community-staging-x86_64/PKGBUILD (from 
rev 725843, haskell-servant-swagger/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-18 00:34:10 UTC (rev 725844)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=servant-swagger
+pkgname=haskell-servant-swagger
+pkgver=1.1.10
+pkgrel=21
+pkgdesc="Generate Swagger specification for your servant API."
+url="https://github.com/haskell-servant/servant-swagger;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 'haskell-http-media'
+ 'haskell-insert-ordered-containers' 'haskell-lens' 'haskell-servant'
+ 'haskell-singleton-bool' 'haskell-swagger2' 
'haskell-unordered-containers'
+ 'haskell-hspec' 'haskell-quickcheck')
+makedepends=('ghc' 'haskell-base-compat' 'haskell-cabal-doctest' 
'haskell-doctest'
+ 'haskell-hspec-discover' 'haskell-lens-aeson' 
'haskell-utf8-string' 'haskell-vector')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('df3b397ce03dbb4c852598d4d188bcddde40fd9bd762eac53c837267420876ba3aa4d07fb638ffe0d0fa60c9cf080ad483508bf0359b45120f807ed65331f3bc')
+
+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 || warning "Tests failed"
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:33:52
  Author: felixonmars
Revision: 725843

upgpkg: haskell-servant-swagger 1.1.10-21: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-servant-swagger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:32:37 UTC (rev 725842)
+++ PKGBUILD2020-10-18 00:33:52 UTC (rev 725843)
@@ -4,7 +4,7 @@
 _hkgname=servant-swagger
 pkgname=haskell-servant-swagger
 pkgver=1.1.10
-pkgrel=20
+pkgrel=21
 pkgdesc="Generate Swagger specification for your servant API."
 url="https://github.com/haskell-servant/servant-swagger;
 license=("BSD")


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

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Sunday, October 18, 2020 @ 00:34:29
  Author: freswa
Revision: 725846

archrelease: copy trunk to community-x86_64

Added:
  wimlib/repos/community-x86_64/PKGBUILD
(from rev 725845, wimlib/trunk/PKGBUILD)
Deleted:
  wimlib/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-18 00:34:25 UTC (rev 725845)
+++ PKGBUILD2020-10-18 00:34:29 UTC (rev 725846)
@@ -1,36 +0,0 @@
-# Maintainer: Alad Wenter 
-# Contributor: Eric Biggers 
-
-pkgname=wimlib
-pkgver=1.13.1
-pkgrel=2
-pkgdesc='A library and program to extract, create, and modify WIM files'
-arch=('x86_64')
-url='https://wimlib.net'
-license=('custom')
-depends=('openssl' 'fuse' 'libxml2' 'ntfs-3g')
-checkdepends=('attr')
-optdepends=('cdrkit: for making ISO image of Windows PE'
-'mtools: for making disk image of Windows PE' 
-'syslinux: for making disk image of Windows PE'
-'cabextract: for extracting Windows PE from the WAIK')
-source=("https://wimlib.net/downloads/$pkgname-$pkgver.tar.gz;)
-sha256sums=('47f4bc645c1b6ee15068d406a90bb38aec816354e140291ccb01e536f2cdaf5f')
-
-build() {
-cd "$pkgname-$pkgver"
-./configure --with-libcrypto --with-fuse --with-ntfs-3g --prefix=/usr
-make
-}
-
-check() {
-cd "$pkgname-$pkgver"
-make check
-}
-
-package() {
-cd "$pkgname-$pkgver"
-make DESTDIR="$pkgdir" install
-install -Dm644 NEWS README -t "$pkgdir/usr/share/doc/$pkgname"
-install -Dm644 COPYING* -t "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: wimlib/repos/community-x86_64/PKGBUILD (from rev 725845, 
wimlib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-18 00:34:29 UTC (rev 725846)
@@ -0,0 +1,37 @@
+# Maintainer: Alad Wenter 
+# Contributor: Eric Biggers 
+
+pkgname=wimlib
+pkgver=1.13.2
+pkgrel=1
+pkgdesc='A library and program to extract, create, and modify WIM files'
+arch=('x86_64')
+url='https://wimlib.net'
+license=('custom')
+depends=('openssl' 'fuse' 'libxml2' 'ntfs-3g')
+checkdepends=('attr')
+optdepends=('cdrkit: for making ISO image of Windows PE'
+'mtools: for making disk image of Windows PE' 
+'syslinux: for making disk image of Windows PE'
+'cabextract: for extracting Windows PE from the WAIK')
+provides=('libwim.so')
+source=("https://wimlib.net/downloads/$pkgname-$pkgver.tar.gz;)
+sha256sums=('7295be7ef00d265aef4090c9d26af82097db651c5f8399db9d44c60f47f5a945')
+
+build() {
+cd "$pkgname-$pkgver"
+./configure --with-libcrypto --with-fuse --with-ntfs-3g --prefix=/usr
+make
+}
+
+check() {
+cd "$pkgname-$pkgver"
+make check
+}
+
+package() {
+cd "$pkgname-$pkgver"
+make DESTDIR="$pkgdir" install
+install -Dm644 NEWS README -t "$pkgdir/usr/share/doc/$pkgname"
+install -Dm644 COPYING* -t "$pkgdir/usr/share/licenses/$pkgname"
+}


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:32:37
  Author: felixonmars
Revision: 725842

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-servant/repos/community-staging-x86_64/PKGBUILD (from rev 
725841, haskell-servant/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-18 00:32:37 UTC (rev 725842)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=servant
+pkgname=haskell-servant
+pkgver=0.18
+pkgrel=13
+pkgdesc="A family of combinators for defining webservices APIs"
+url="http://haskell-servant.readthedocs.org/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-compat' 'haskell-aeson' 'haskell-attoparsec'
+ 'haskell-bifunctors' 'haskell-case-insensitive' 
'haskell-http-api-data'
+ 'haskell-http-media' 'haskell-http-types' 'haskell-mmorph' 
'haskell-network-uri'
+ 'haskell-quickcheck' 'haskell-tagged' 'haskell-singleton-bool'
+ 'haskell-string-conversions' 'haskell-vault')
+makedepends=('ghc' 'haskell-hspec' 'haskell-quickcheck-instances')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('ca88a25c745033be79c5b540873a0a128a722cac37d3c8cbe3c54d5b8ecc80f49589817f1dac4ab34bea677d156ffe9d0a2a641c11b2621f09fc0b6b54b9cd03')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *0.4.2/<1/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $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-servant/trunk (PKGBUILD)

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:32:22
  Author: felixonmars
Revision: 725841

upgpkg: haskell-servant 0.18-13: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-servant/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:31:14 UTC (rev 725840)
+++ PKGBUILD2020-10-18 00:32:22 UTC (rev 725841)
@@ -4,7 +4,7 @@
 _hkgname=servant
 pkgname=haskell-servant
 pkgver=0.18
-pkgrel=12
+pkgrel=13
 pkgdesc="A family of combinators for defining webservices APIs"
 url="http://haskell-servant.readthedocs.org/;
 license=("BSD")


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:31:14
  Author: felixonmars
Revision: 725840

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-lsp/repos/community-staging-x86_64/PKGBUILD (from rev 725839, 
haskell-lsp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-18 00:31:14 UTC (rev 725840)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+
+_hkgname=haskell-lsp
+pkgname=haskell-lsp
+pkgver=0.23.0.0
+pkgrel=6
+pkgdesc="Haskell library for the Microsoft Language Server Protocol"
+url="https://github.com/alanz/haskell-lsp;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-async' 'haskell-attoparsec' 
'haskell-data-default'
+ 'haskell-hashable' 'haskell-lsp-types' 'haskell-hslogger' 
'haskell-lens'
+ 'haskell-network-uri' 'haskell-rope-utf16-splay' 'haskell-sorted-list'
+ 'haskell-temporary' 'haskell-unordered-containers' 'haskell-vector')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-hspec-discover'
+ 'haskell-quickcheck-instances')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('12b62e833f33bee80f586ee65e01b4927da8267a652929f13a6268fe18728981a5b1675f880eb14409dc23ecff252b71d184e1a567d7781ddb3dc8d1fd7b910c')
+
+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-lsp/trunk (PKGBUILD)

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:30:54
  Author: felixonmars
Revision: 725839

upgpkg: haskell-lsp 0.23.0.0-6: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-lsp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:28:40 UTC (rev 725838)
+++ PKGBUILD2020-10-18 00:30:54 UTC (rev 725839)
@@ -3,7 +3,7 @@
 _hkgname=haskell-lsp
 pkgname=haskell-lsp
 pkgver=0.23.0.0
-pkgrel=5
+pkgrel=6
 pkgdesc="Haskell library for the Microsoft Language Server Protocol"
 url="https://github.com/alanz/haskell-lsp;
 license=("MIT")


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:28:40
  Author: felixonmars
Revision: 725838

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-lsp-types/repos/community-staging-x86_64/PKGBUILD (from rev 
725837, haskell-lsp-types/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-18 00:28:40 UTC (rev 725838)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+
+_hkgname=haskell-lsp-types
+pkgname=haskell-lsp-types
+pkgver=0.23.0.0
+pkgrel=6
+pkgdesc="Haskell library for the Microsoft Language Server Protocol, data 
types"
+url="https://github.com/alanz/haskell-lsp;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-data-default' 'haskell-hashable' 
'haskell-lens'
+ 'haskell-network-uri' 'haskell-scientific' 
'haskell-unordered-containers')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('057b7014d297054cfce3aa44385184f71911594b7a5199d38a9362fc9a481006a93bcb7628f5cd2959ca3fec475c370f7359dc6e9fa6bb96ffa31544c9ed9764')
+
+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 haskell-lsp-types/trunk (PKGBUILD)

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:28:16
  Author: felixonmars
Revision: 725837

upgpkg: haskell-lsp-types 0.23.0.0-6: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-lsp-types/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:27:36 UTC (rev 725836)
+++ PKGBUILD2020-10-18 00:28:16 UTC (rev 725837)
@@ -3,7 +3,7 @@
 _hkgname=haskell-lsp-types
 pkgname=haskell-lsp-types
 pkgver=0.23.0.0
-pkgrel=5
+pkgrel=6
 pkgdesc="Haskell library for the Microsoft Language Server Protocol, data 
types"
 url="https://github.com/alanz/haskell-lsp;
 license=("MIT")


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

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Sunday, October 18, 2020 @ 00:27:29
  Author: freswa
Revision: 725835

upgpkg: innoextract 1.9-1

Modified:
  innoextract/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:25:47 UTC (rev 725834)
+++ PKGBUILD2020-10-18 00:27:29 UTC (rev 725835)
@@ -3,8 +3,8 @@
 # Contributor: Sam S. 
 # Contributor: Daniel Scharrer 
 pkgname=innoextract
-pkgver=1.8
-pkgrel=3
+pkgver=1.9
+pkgrel=1
 pkgdesc="A tool to extract installers created by Inno Setup"
 url='https://constexpr.org/innoextract/'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 makedepends=('boost' 'cmake')
 source=("https://constexpr.org/innoextract/files/$pkgname-$pkgver.tar.gz;
 "https://constexpr.org/innoextract/files/$pkgname-$pkgver.tar.gz.sig;)
-sha256sums=('5e78f6295119eeda08a54dcac75306a1a4a40d0cb812ff3cd405e9862c285269'
+sha256sums=('6344a69fc1ed847d4ed3e272e0da5998948c6b828cb7af39c6321aba6cf88126'
 'SKIP')
 validpgpkeys=("ADE9653703D4ADE0E997758128555A66D7E1DEC9") # Daniel Scharrer 

 


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

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Sunday, October 18, 2020 @ 00:27:36
  Author: freswa
Revision: 725836

archrelease: copy trunk to community-x86_64

Added:
  innoextract/repos/community-x86_64/PKGBUILD
(from rev 725835, innoextract/trunk/PKGBUILD)
Deleted:
  innoextract/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-18 00:27:29 UTC (rev 725835)
+++ PKGBUILD2020-10-18 00:27:36 UTC (rev 725836)
@@ -1,35 +0,0 @@
-# Maintainer: Alad Wenter 
-# Contributor: carstene1ns 
-# Contributor: Sam S. 
-# Contributor: Daniel Scharrer 
-pkgname=innoextract
-pkgver=1.8
-pkgrel=3
-pkgdesc="A tool to extract installers created by Inno Setup"
-url='https://constexpr.org/innoextract/'
-arch=('x86_64')
-license=('ZLIB')
-depends=('boost-libs' 'xz')
-makedepends=('boost' 'cmake')
-source=("https://constexpr.org/innoextract/files/$pkgname-$pkgver.tar.gz;
-"https://constexpr.org/innoextract/files/$pkgname-$pkgver.tar.gz.sig;)
-sha256sums=('5e78f6295119eeda08a54dcac75306a1a4a40d0cb812ff3cd405e9862c285269'
-'SKIP')
-validpgpkeys=("ADE9653703D4ADE0E997758128555A66D7E1DEC9") # Daniel Scharrer 

-
-build() {
-cd "$pkgname-$pkgver"
-
-# https://github.com/dscharrer/innoextract/issues/88
-cmake . -DCMAKE_INSTALL_PREFIX=/usr -DBoost_NO_BOOST_CMAKE=ON
-make
-}
-
-package() {
-cd "$pkgname-$pkgver"
-make DESTDIR="$pkgdir/" install
-
-install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
-install -m644  CHANGELOG "$pkgdir/usr/share/doc/$pkgname/CHANGELOG"
-install -Dm644 LICENSE   "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: innoextract/repos/community-x86_64/PKGBUILD (from rev 725835, 
innoextract/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-18 00:27:36 UTC (rev 725836)
@@ -0,0 +1,35 @@
+# Maintainer: Alad Wenter 
+# Contributor: carstene1ns 
+# Contributor: Sam S. 
+# Contributor: Daniel Scharrer 
+pkgname=innoextract
+pkgver=1.9
+pkgrel=1
+pkgdesc="A tool to extract installers created by Inno Setup"
+url='https://constexpr.org/innoextract/'
+arch=('x86_64')
+license=('ZLIB')
+depends=('boost-libs' 'xz')
+makedepends=('boost' 'cmake')
+source=("https://constexpr.org/innoextract/files/$pkgname-$pkgver.tar.gz;
+"https://constexpr.org/innoextract/files/$pkgname-$pkgver.tar.gz.sig;)
+sha256sums=('6344a69fc1ed847d4ed3e272e0da5998948c6b828cb7af39c6321aba6cf88126'
+'SKIP')
+validpgpkeys=("ADE9653703D4ADE0E997758128555A66D7E1DEC9") # Daniel Scharrer 

+
+build() {
+cd "$pkgname-$pkgver"
+
+# https://github.com/dscharrer/innoextract/issues/88
+cmake . -DCMAKE_INSTALL_PREFIX=/usr -DBoost_NO_BOOST_CMAKE=ON
+make
+}
+
+package() {
+cd "$pkgname-$pkgver"
+make DESTDIR="$pkgdir/" install
+
+install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
+install -m644  CHANGELOG "$pkgdir/usr/share/doc/$pkgname/CHANGELOG"
+install -Dm644 LICENSE   "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:25:47
  Author: felixonmars
Revision: 725834

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-jose/repos/community-staging-x86_64/PKGBUILD (from rev 725833, 
haskell-jose/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-18 00:25:47 UTC (rev 725834)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=jose
+pkgname=haskell-jose
+pkgver=0.8.4
+pkgrel=10
+pkgdesc="Javascript Object Signing and Encryption and JSON Web Token library"
+url="https://github.com/frasertweedale/hs-jose;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-concise'
+ 'haskell-cryptonite' 'haskell-lens' 'haskell-memory' 
'haskell-monad-time'
+ 'haskell-safe' 'haskell-aeson' 'haskell-unordered-containers' 
'haskell-network-uri'
+ 'haskell-quickcheck' 'haskell-quickcheck-instances' 'haskell-x509' 
'haskell-vector')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('4141e8f48b97b0d801fab576c3098b95dc1cc9b7c98815cff6bd62324aa2c6d5a4648734d14a00ef08aa36c523befdc6cb7dfdadb9d92d0dce2b434ef8165882')
+
+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"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:25:32
  Author: felixonmars
Revision: 725833

upgpkg: haskell-jose 0.8.4-10: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-jose/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:25:30 UTC (rev 725832)
+++ PKGBUILD2020-10-18 00:25:32 UTC (rev 725833)
@@ -4,7 +4,7 @@
 _hkgname=jose
 pkgname=haskell-jose
 pkgver=0.8.4
-pkgrel=9
+pkgrel=10
 pkgdesc="Javascript Object Signing and Encryption and JSON Web Token library"
 url="https://github.com/frasertweedale/hs-jose;
 license=("Apache")


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

2020-10-17 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, October 18, 2020 @ 00:25:30
  Author: svenstaro
Revision: 725832

archrelease: copy trunk to community-x86_64

Added:
  box2d/repos/community-x86_64/PKGBUILD
(from rev 725831, box2d/trunk/PKGBUILD)
Deleted:
  box2d/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-18 00:25:23 UTC (rev 725831)
+++ PKGBUILD2020-10-18 00:25:30 UTC (rev 725832)
@@ -1,38 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-
-pkgname=box2d
-pkgver=2.4.0
-pkgrel=1
-pkgdesc="2D rigid body simulation library for games"
-url="http://www.box2d.org/;
-license=('custom:zlib')
-arch=('x86_64')
-depends=('gcc-libs')
-makedepends=('cmake' 'doxygen' 'ninja')
-# We're going to this alternate fork until the patches are upstreamed.
-# See https://github.com/erincatto/box2d/issues/621
-#source=("$pkgname-$pkgver.tar.gz::https://github.com/erincatto/Box2D/archive/v${pkgver}.tar.gz;
-source=("https://github.com/jube/box2d/archive/adaedf1772ede7420bc9ee569c8cba7952db91a0.tar.gz;)
-sha512sums=('0caf1d0a391cdd4805949f5a2ba7ddd8cbc4dbe853bbf53f0a125eb07d4121ad851575db19f3705b087b222b9c7fcbaec964940b401dcb3df17116ffb6b10b9d')
-
-build() {
-  cd $pkgname-*
-
-  cmake . \
--Bbuild \
--GNinja \
--DBOX2D_BUILD_DOCS=ON \
--DBOX2D_BUILD_TESTBED=OFF \
--DBUILD_SHARED_LIBS=ON \
--DCMAKE_INSTALL_PREFIX=/usr
-  ninja -C build
-}
-
-package() {
-  cd $pkgname-*
-
-  DESTDIR="$pkgdir" ninja -C build install
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/box2d/LICENSE
-}
-
-# vim: sw=2 ts=2 et:

Copied: box2d/repos/community-x86_64/PKGBUILD (from rev 725831, 
box2d/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-18 00:25:30 UTC (rev 725832)
@@ -0,0 +1,44 @@
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=box2d
+pkgver=2.4.1
+pkgrel=1
+pkgdesc="2D rigid body simulation library for games"
+url="http://www.box2d.org/;
+license=('MIT')
+arch=('x86_64')
+depends=('gcc-libs')
+makedepends=('cmake' 'doxygen' 'ninja')
+# We're going to this alternate fork until the patches are upstreamed.
+# See https://github.com/erincatto/box2d/issues/621
+#source=("$pkgname-$pkgver.tar.gz::https://github.com/erincatto/Box2D/archive/v${pkgver}.tar.gz;
+source=("$pkgname-$pkgver.tar.gz::https://github.com/erincatto/box2d/archive/v2.4.1.tar.gz;)
+sha512sums=('d900f925b7790619c91488bdc5e2df1ad1f4a8ca39a574229f5e57070e3a843bdd7530e817112605fde6d82145c872d8afdfc65b84531a73199098c81162')
+
+build() {
+  cd $pkgname-$pkgver
+
+  cmake . \
+-Bbuild \
+-GNinja \
+-DBOX2D_BUILD_DOCS=ON \
+-DBOX2D_BUILD_TESTBED=OFF \
+-DBUILD_SHARED_LIBS=ON \
+-DCMAKE_INSTALL_PREFIX=/usr
+  ninja -C build
+}
+
+check() {
+  cd $pkgname-$pkgver
+
+  build/bin/unit_test
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  DESTDIR="$pkgdir" ninja -C build install
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/box2d/LICENSE
+}
+
+# vim: sw=2 ts=2 et:


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

2020-10-17 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, October 18, 2020 @ 00:25:23
  Author: svenstaro
Revision: 725831

upgpkg: box2d 2.4.1-1

Modified:
  box2d/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:24:28 UTC (rev 725830)
+++ PKGBUILD2020-10-18 00:25:23 UTC (rev 725831)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 
 pkgname=box2d
-pkgver=2.4.0
+pkgver=2.4.1
 pkgrel=1
 pkgdesc="2D rigid body simulation library for games"
 url="http://www.box2d.org/;
@@ -12,11 +12,11 @@
 # We're going to this alternate fork until the patches are upstreamed.
 # See https://github.com/erincatto/box2d/issues/621
 
#source=("$pkgname-$pkgver.tar.gz::https://github.com/erincatto/Box2D/archive/v${pkgver}.tar.gz;
-source=("https://github.com/jube/box2d/archive/adaedf1772ede7420bc9ee569c8cba7952db91a0.tar.gz;)
-sha512sums=('0caf1d0a391cdd4805949f5a2ba7ddd8cbc4dbe853bbf53f0a125eb07d4121ad851575db19f3705b087b222b9c7fcbaec964940b401dcb3df17116ffb6b10b9d')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/erincatto/box2d/archive/v2.4.1.tar.gz;)
+sha512sums=('d900f925b7790619c91488bdc5e2df1ad1f4a8ca39a574229f5e57070e3a843bdd7530e817112605fde6d82145c872d8afdfc65b84531a73199098c81162')
 
 build() {
-  cd $pkgname-*
+  cd $pkgname-$pkgver
 
   cmake . \
 -Bbuild \
@@ -29,13 +29,13 @@
 }
 
 check() {
-  cd $pkgname-*
+  cd $pkgname-$pkgver
 
-  build/unit_test
+  build/bin/unit_test
 }
 
 package() {
-  cd $pkgname-*
+  cd $pkgname-$pkgver
 
   DESTDIR="$pkgdir" ninja -C build install
   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/box2d/LICENSE


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:23:58
  Author: felixonmars
Revision: 725826

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hxt/repos/community-staging-x86_64/PKGBUILD (from rev 725825, 
haskell-hxt/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-18 00:23:58 UTC (rev 725826)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hxt
+pkgname=haskell-hxt
+pkgver=9.3.1.18
+pkgrel=151
+pkgdesc="A collection of tools for processing XML with Haskell."
+url="https://github.com/UweSchmidt/hxt;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hxt-charproperties' 'haskell-hxt-regex-xmlschema' 
'haskell-hxt-unicode'
+ 'haskell-network-uri')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('4b7c57486fe02357a45b5f835dd9f05333ce39578ec84c3c920fdcaa2df8ae1067da3650d3948559ddaf2e6f77f14291e1ddaa28a12ea9dfb62a797d296ec118')
+
+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 datamash/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Sunday, October 18, 2020 @ 00:24:25
  Author: freswa
Revision: 725829

archrelease: copy trunk to community-x86_64

Added:
  datamash/repos/community-x86_64/PKGBUILD
(from rev 725828, datamash/trunk/PKGBUILD)
Deleted:
  datamash/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-18 00:24:22 UTC (rev 725828)
+++ PKGBUILD2020-10-18 00:24:25 UTC (rev 725829)
@@ -1,32 +0,0 @@
-# Maintainer: Alad Wenter 
-# Contributor: Gavin Lloyd 
-# Contributor: Timothy Rice 
-pkgname=datamash
-pkgver=1.6
-pkgrel=1
-pkgdesc='Performs basic numeric,textual and statistical operations on input 
textual data files'
-url="https://www.gnu.org/software/datamash/;
-arch=('x86_64')
-license=('GPL')
-source=("https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz;
-"https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz.sig;)
-sha256sums=('b9b9b79399616bb54722edbbcaa84303801eb62a338b3a20b6f029003deb78cb'
-'SKIP')
-# Assaf Gordon 
-validpgpkeys=('F576AAAC1B0FF849792D8CB129A794FD2272BC86')
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  make check
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: datamash/repos/community-x86_64/PKGBUILD (from rev 725828, 
datamash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-18 00:24:25 UTC (rev 725829)
@@ -0,0 +1,32 @@
+# Maintainer: Alad Wenter 
+# Contributor: Gavin Lloyd 
+# Contributor: Timothy Rice 
+pkgname=datamash
+pkgver=1.7
+pkgrel=1
+pkgdesc='Performs basic numeric,textual and statistical operations on input 
textual data files'
+url="https://www.gnu.org/software/datamash/;
+arch=('x86_64')
+license=('GPL')
+source=("https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz;
+"https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz.sig;)
+sha256sums=('574a592bb90c5ae702ffaed1b59498d5e3e7466a8abf8530c5f2f3f11fa4adb3'
+'SKIP')
+# Assaf Gordon 
+validpgpkeys=('F576AAAC1B0FF849792D8CB129A794FD2272BC86')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  make check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}


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

2020-10-17 Thread Filipe Laíns via arch-commits
Date: Sunday, October 18, 2020 @ 00:24:28
  Author: ffy00
Revision: 725830

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-18 00:24:25 UTC (rev 725829)
+++ PKGBUILD2020-10-18 00:24:28 UTC (rev 725830)
@@ -1,37 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=pipx
-pkgname=python-$_pkgname
-pkgver=0.15.5.1
-pkgrel=1
-pkgdesc='Install and Run Python Applications in Isolated Environments'
-arch=('any')
-url='https://github.com/pipxproject/pipx'
-license=('MIT' 'BSD')
-depends=('python' 'python-userpath' 'python-argcomplete')
-makedepends=('python-setuptools')
-checkdepends=('python-tox' 'python-pytest')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('f084714a8005061b9b739b380b14814ad47e3569b83c4a28cdd5d7b6009d2f334c9d6a25399dfe95a7784860b451ce93c2b462360ccc9ecfc09ba12ac367d56d')
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-}
-
-#check() {
-#  cd $_pkgname-$pkgver
-#
-#  nox
-#}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pipx/repos/community-any/PKGBUILD (from rev 725829, 
python-pipx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-18 00:24:28 UTC (rev 725830)
@@ -0,0 +1,37 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=pipx
+pkgname=python-$_pkgname
+pkgver=0.15.6.0
+pkgrel=1
+pkgdesc='Install and Run Python Applications in Isolated Environments'
+arch=('any')
+url='https://github.com/pipxproject/pipx'
+license=('MIT' 'BSD')
+depends=('python' 'python-userpath' 'python-argcomplete')
+makedepends=('python-setuptools')
+checkdepends=('python-tox' 'python-pytest')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('4b88fd27c676b136c1dfcfe23ccdaf0b6fde44e93c4ee7decb44d03e7e2255ca76da38de336ef2bb3c36486283a70973fe191ac067afa3974f8437b38c04ed12')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  python setup.py build
+}
+
+#check() {
+#  cd $_pkgname-$pkgver
+#
+#  nox
+#}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Sunday, October 18, 2020 @ 00:24:22
  Author: freswa
Revision: 725828

upgpkg: datamash 1.7-1

Modified:
  datamash/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:24:19 UTC (rev 725827)
+++ PKGBUILD2020-10-18 00:24:22 UTC (rev 725828)
@@ -2,7 +2,7 @@
 # Contributor: Gavin Lloyd 
 # Contributor: Timothy Rice 
 pkgname=datamash
-pkgver=1.6
+pkgver=1.7
 pkgrel=1
 pkgdesc='Performs basic numeric,textual and statistical operations on input 
textual data files'
 url="https://www.gnu.org/software/datamash/;
@@ -10,7 +10,7 @@
 license=('GPL')
 source=("https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz;
 "https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz.sig;)
-sha256sums=('b9b9b79399616bb54722edbbcaa84303801eb62a338b3a20b6f029003deb78cb'
+sha256sums=('574a592bb90c5ae702ffaed1b59498d5e3e7466a8abf8530c5f2f3f11fa4adb3'
 'SKIP')
 # Assaf Gordon 
 validpgpkeys=('F576AAAC1B0FF849792D8CB129A794FD2272BC86')


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

2020-10-17 Thread Filipe Laíns via arch-commits
Date: Sunday, October 18, 2020 @ 00:24:19
  Author: ffy00
Revision: 725827

upgpkg: python-pipx 0.15.6.0-1

Modified:
  python-pipx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:23:58 UTC (rev 725826)
+++ PKGBUILD2020-10-18 00:24:19 UTC (rev 725827)
@@ -2,7 +2,7 @@
 
 _pkgname=pipx
 pkgname=python-$_pkgname
-pkgver=0.15.5.1
+pkgver=0.15.6.0
 pkgrel=1
 pkgdesc='Install and Run Python Applications in Isolated Environments'
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('python-setuptools')
 checkdepends=('python-tox' 'python-pytest')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('f084714a8005061b9b739b380b14814ad47e3569b83c4a28cdd5d7b6009d2f334c9d6a25399dfe95a7784860b451ce93c2b462360ccc9ecfc09ba12ac367d56d')
+sha512sums=('4b88fd27c676b136c1dfcfe23ccdaf0b6fde44e93c4ee7decb44d03e7e2255ca76da38de336ef2bb3c36486283a70973fe191ac067afa3974f8437b38c04ed12')
 
 build() {
   cd $_pkgname-$pkgver


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:23:42
  Author: felixonmars
Revision: 725825

upgpkg: haskell-hxt 9.3.1.18-151: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-hxt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:22:03 UTC (rev 725824)
+++ PKGBUILD2020-10-18 00:23:42 UTC (rev 725825)
@@ -3,7 +3,7 @@
 _hkgname=hxt
 pkgname=haskell-hxt
 pkgver=9.3.1.18
-pkgrel=150
+pkgrel=151
 pkgdesc="A collection of tools for processing XML with Haskell."
 url="https://github.com/UweSchmidt/hxt;
 license=('MIT')


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:21:48
  Author: felixonmars
Revision: 725823

upgpkg: haskell-hopenpgp 2.9.4-166: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-hopenpgp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:19:23 UTC (rev 725822)
+++ PKGBUILD2020-10-18 00:21:48 UTC (rev 725823)
@@ -3,7 +3,7 @@
 _hkgname=hOpenPGP
 pkgname=haskell-hopenpgp
 pkgver=2.9.4
-pkgrel=165
+pkgrel=166
 pkgdesc="Native Haskell implementation of OpenPGP (RFC4880)"
 url="http://floss.scru.org/hOpenPGP/;
 license=('MIT')


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:22:03
  Author: felixonmars
Revision: 725824

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 725823, haskell-hopenpgp/trunk/PKGBUILD)

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

Copied: haskell-hopenpgp/repos/community-staging-x86_64/PKGBUILD (from rev 
725823, haskell-hopenpgp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-18 00:22:03 UTC (rev 725824)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hOpenPGP
+pkgname=haskell-hopenpgp
+pkgver=2.9.4
+pkgrel=166
+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-newtype'
+ '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=('f2d4f0e156eac631b61eaf909bbc92034696e92a2bd6bfee0d2b6ae54d5aa9b85d59d945ea2104c5f1fe4535793b9508e80cea5951bb98470ed36876d351d005')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build $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 cabal-install/repos (2 files)

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:19:23
  Author: felixonmars
Revision: 725822

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: cabal-install/repos/community-staging-x86_64/PKGBUILD (from rev 725821, 
cabal-install/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-18 00:19:23 UTC (rev 725822)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Arch Haskell Team 
+
+pkgname=cabal-install
+pkgver=3.2.0.0
+pkgrel=89
+pkgdesc="The command-line interface for Cabal and Hackage."
+url="https://hackage.haskell.org/package/cabal-install;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-base16-bytestring' 
'haskell-cryptohash-sha256'
+ 'haskell-echo' 'haskell-edit-distance' 'haskell-hackage-security' 
'haskell-hashable'
+ 'haskell-http' 'haskell-network' 'haskell-network-uri' 
'haskell-random' 'haskell-resolv'
+ 'haskell-tar' 'haskell-zlib' 'haskell-lukko')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/package/cabal-install-${pkgver}/cabal-install-${pkgver}.tar.gz;
+
$pkgname-ghc8.10.patch::https://github.com/haskell/cabal/pull/6711.patch)
+sha512sums=('ad937b2df42b688e4608aa2b91a25daf1042e5573626202e5182cbfeca9acc5933194853405a6396c60d0d28d6d0d5c5276fd85cb6acf4be2c8cd12afe747062'
+
'9e7245f5080e9c1609994b21d13ecbacb78fa9314d80425464f714f9bd68910d3fb4a5101b582461a89ec0b7115ef6acb2eb4ffba7a2477f65dca192f1eac1e7')
+
+prepare() {
+cd $pkgname-$pkgver
+patch -p2 -i ../$pkgname-ghc8.10.patch || :
+sed -i 's/< *1.2/<2/' $pkgname.cabal
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla \
+--docdir="/usr/share/doc/${pkgname}"
+  runhaskell Setup build $MAKEFLAGS
+}
+
+package() {
+  cd $pkgname-$pkgver
+  runhaskell Setup copy --destdir="${pkgdir}"
+
+  install -Dm644 LICENSE \
+"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  install -Dm644 bash-completion/cabal \
+"${pkgdir}/usr/share/bash-completion/completions/cabal"
+}


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:19:08
  Author: felixonmars
Revision: 725821

upgpkg: cabal-install 3.2.0.0-89: rebuild with th-abstraction 0.4.0.0

Modified:
  cabal-install/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:17:51 UTC (rev 725820)
+++ PKGBUILD2020-10-18 00:19:08 UTC (rev 725821)
@@ -5,7 +5,7 @@
 
 pkgname=cabal-install
 pkgver=3.2.0.0
-pkgrel=88
+pkgrel=89
 pkgdesc="The command-line interface for Cabal and Hackage."
 url="https://hackage.haskell.org/package/cabal-install;
 license=('BSD')


[arch-commits] Commit in asoundconf/repos/community-any (8 files)

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Sunday, October 18, 2020 @ 00:17:51
  Author: freswa
Revision: 725820

archrelease: copy trunk to community-any

Added:
  asoundconf/repos/community-any/0001-python3-syntax.patch
(from rev 725819, asoundconf/trunk/0001-python3-syntax.patch)
  asoundconf/repos/community-any/0002-python3-spaces.patch
(from rev 725819, asoundconf/trunk/0002-python3-spaces.patch)
  asoundconf/repos/community-any/0003-python3-gobject.patch
(from rev 725819, asoundconf/trunk/0003-python3-gobject.patch)
  asoundconf/repos/community-any/PKGBUILD
(from rev 725819, asoundconf/trunk/PKGBUILD)
Deleted:
  asoundconf/repos/community-any/0001-python3-syntax.patch
  asoundconf/repos/community-any/0002-python3-spaces.patch
  asoundconf/repos/community-any/0003-python3-gobject.patch
  asoundconf/repos/community-any/PKGBUILD

+
 0001-python3-syntax.patch  |  386 +++---
 0002-python3-spaces.patch  |  744 +--
 0003-python3-gobject.patch |  250 +++---
 PKGBUILD   |   81 ++--
 4 files changed, 731 insertions(+), 730 deletions(-)

Deleted: 0001-python3-syntax.patch
===
--- 0001-python3-syntax.patch   2020-10-18 00:15:58 UTC (rev 725819)
+++ 0001-python3-syntax.patch   2020-10-18 00:17:51 UTC (rev 725820)
@@ -1,193 +0,0 @@
-# HG changeset patch
-# User Alad Wenter 
-# Date 1565311059 -7200
-#  Fri Aug 09 02:37:39 2019 +0200
-# Node ID e92452338b542c3626f81db079610753f723c9b9
-# Parent  bf25f416f615a43267abecab4c599e86f363438b
-python3: syntax changes
-
-diff -r bf25f416f615 -r e92452338b54 asoundconf
 a/asoundconf   Sun May 31 20:26:03 2015 +0200
-+++ b/asoundconf   Fri Aug 09 02:37:39 2019 +0200
-@@ -1,4 +1,4 @@
--#!/usr/bin/python2
-+#!/usr/bin/python3
- 
- # (C) 2005 Canonical Ltd.
- # Author: Martin Pitt 
-@@ -98,7 +98,7 @@
- open(our_conf_file, 'w').write(our_conf_header)
- return True
- except IOError:
--print >> sys.stderr, 'Error: could not create', our_conf_file
-+print('Error: could not create', our_conf_file, file=sys.stderr)
- return False
- 
- 
-@@ -116,7 +116,7 @@
- open(asoundrc_file, 'w').write('%s\n%s\n<%s>\n\n' % (asoundrc_header, 
inclusion_comment, our_conf_file))
- return True
- except IOError:
--print >> sys.stderr, 'Error: could not create', asoundrc_file
-+print('Error: could not create', asoundrc_file, file=sys.stderr)
- return False
- 
- 
-@@ -229,7 +229,7 @@
- for line in open(our_conf_file):
- m = setting_re.match(line)
- if m:
--print m.group(1).strip()
-+print(m.group(1).strip())
- return True
- return False
- except IOError:
-@@ -245,9 +245,9 @@
-   except IOError:
-   return False
- 
--  print "Names of available sound cards:"
-+print("Names of available sound cards:")
-   for cardname in card_lines:
--  print cardname.id_
-+print(cardname.id_)
-   return True
-   
- 
-@@ -262,13 +262,13 @@
-   except IOError:
-   return False
- 
--  print "Available devices for all sound cards:"
-+  print("Available devices for all sound cards:")
-   for dev in dev_lines:
-   card = next(c for c in card_lines if c.card_num == 
dev.card_num) # find card by number
--  print "hw:%d,%d: %s : %s : %s : %s" % (
-+  print('hw:{},{}: {} : {} : {} : {}'.format(
-   dev.card_num, dev.dev_num,
-   card.id_, card.name,
--  dev.id_, dev.name)
-+  dev.id_, dev.name))
- 
-   return True
- 
-@@ -294,7 +294,7 @@
- return False
- 
- found = 0
--for i in xrange(len(lines)):
-+for i in range(len(lines)):
- if setting_re.match(lines[i]):
- del lines[i]
- found = 1
-@@ -340,7 +340,7 @@
- 
- # if setting is already present, change it
- found = 0
--for i in xrange(len(lines)):
-+for i in range(len(lines)):
- if setting_re.match(lines[i]):
- lines[i] = newsetting
- found = 1
-@@ -426,10 +426,10 @@
- ##
- 
- if os.geteuid() == 0:
--print superuser_warn
-+print(superuser_warn)
- 
- if len(sys.argv) < 2 or sys.argv[1] == '--help' or sys.argv[1] == '-h':
--print usage
-+print(usage)
- sys.exit(0)
- 
- if sys.argv[1] == 'is-active':
-@@ -437,19 +437,19 @@
- 
- if sys.argv[1] == 'get':
- if len(sys.argv) != 3:
--print usage
-+print(usage)
- sys.exit(1)
- exit_code(get(sys.argv[2]))
- 
- if sys.argv[1] == 'delete':
- if len(sys.argv) != 3:
--print usage
-+print(usage)
- sys.exit(1)
- exit_code(delete(sys.argv[2]))
- 
- if sys.argv[1] == 'set':
- if len(sys.argv) != 4:
--  

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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:15:43
  Author: felixonmars
Revision: 725818

upgpkg: haskell-hackage-security 0.6.0.1-95: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-hackage-security/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:15:37 UTC (rev 725817)
+++ PKGBUILD2020-10-18 00:15:43 UTC (rev 725818)
@@ -4,7 +4,7 @@
 _hkgname=hackage-security
 pkgname=haskell-hackage-security
 pkgver=0.6.0.1
-pkgrel=94
+pkgrel=95
 pkgdesc="Hackage security library"
 url="https://github.com/well-typed/hackage-security;
 license=("BSD")


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:15:58
  Author: felixonmars
Revision: 725819

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hackage-security/repos/community-staging-x86_64/
  haskell-hackage-security/repos/community-staging-x86_64/PKGBUILD
(from rev 725818, haskell-hackage-security/trunk/PKGBUILD)

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

Copied: haskell-hackage-security/repos/community-staging-x86_64/PKGBUILD (from 
rev 725818, haskell-hackage-security/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-18 00:15:58 UTC (rev 725819)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hackage-security
+pkgname=haskell-hackage-security
+pkgver=0.6.0.1
+pkgrel=95
+pkgdesc="Hackage security library"
+url="https://github.com/well-typed/hackage-security;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base16-bytestring' 'haskell-base64-bytestring'
+ 'haskell-cryptohash-sha256' 'haskell-ed25519' 'haskell-lukko' 
'haskell-network'
+ 'haskell-network-uri' 'haskell-tar' 'haskell-zlib')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('b83fdda3712c58bcc4237965e40bea16b9ce08f30c0671f45967e69a2eb85488e78a41c8d12b9f339f78f30cc50770a72e9e9a46e5ddf740a20bce4ea4e96fdb')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *1.1/<2/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fbase48 -fuse-network-uri -f-old-directory
+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-git-lfs/repos (2 files)

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:14:47
  Author: felixonmars
Revision: 725816

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-git-lfs/repos/community-staging-x86_64/
  haskell-git-lfs/repos/community-staging-x86_64/PKGBUILD
(from rev 725815, haskell-git-lfs/trunk/PKGBUILD)

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

Copied: haskell-git-lfs/repos/community-staging-x86_64/PKGBUILD (from rev 
725815, haskell-git-lfs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-18 00:14:47 UTC (rev 725816)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+
+_hkgname=git-lfs
+pkgname=haskell-git-lfs
+pkgver=1.1.0
+pkgrel=51
+pkgdesc="An implementation of the git-lfs protocol"
+url="https://hackage.haskell.org/package/git-lfs;
+license=('AGPL3')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-case-insensitive' 
'haskell-http-client'
+ 'haskell-http-types' 'haskell-network-uri')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('c662e7752ba9346b8adec5af225806f95702aaded3ea6b3d8e8871e923db24f8bd49a275fe7477cc44b65b35edab06fb7ab92f0e57d9bdd8af7b209c4adfa5c5')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/<= 0.7/<1/;s/<= 1.5/<2/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $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"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Sunday, October 18, 2020 @ 00:15:37
  Author: freswa
Revision: 725817

upgpkg: asoundconf 1:1.2-5

Modified:
  asoundconf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:14:47 UTC (rev 725816)
+++ PKGBUILD2020-10-18 00:15:37 UTC (rev 725817)
@@ -1,17 +1,18 @@
 # Maintainer: Alad Wenter 
 # Contributor: Lukas Jirkovsky 
 pkgname=asoundconf
+epoch=1
 pkgver=1.2
-_revision=bf25f416f615a43267abecab4c599e86f363438b # 1.2
-pkgrel=4
+_commit=55cdf2e78b7f28ee1808346e5d4e32f7e95618dc # 1.2
+pkgrel=5
 pkgdesc="utility to read and change the user's ALSA library configuration"
 arch=('any')
 url="https://bitbucket.org/stativ/asoundconf;
 license=('GPL')
 depends=('python')
-makedepends=('mercurial')
+makedepends=('git')
 optdepends=('python-gobject: asoundconf-gtk GUI')
-source=("hg+https://bitbucket.org/stativ/asoundconf#revision=$_revision;
+source=("git+https://bitbucket.org/stativ/asoundconf.git#commit=$_commit;
 '0001-python3-syntax.patch'
 '0002-python3-spaces.patch'
 '0003-python3-gobject.patch')


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:14:31
  Author: felixonmars
Revision: 725815

upgpkg: haskell-git-lfs 1.1.0-51: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-git-lfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:13:13 UTC (rev 725814)
+++ PKGBUILD2020-10-18 00:14:31 UTC (rev 725815)
@@ -3,7 +3,7 @@
 _hkgname=git-lfs
 pkgname=haskell-git-lfs
 pkgver=1.1.0
-pkgrel=50
+pkgrel=51
 pkgdesc="An implementation of the git-lfs protocol"
 url="https://hackage.haskell.org/package/git-lfs;
 license=('AGPL3')


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:13:13
  Author: felixonmars
Revision: 725814

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-authenticate-oauth/repos/community-staging-x86_64/PKGBUILD 
(from rev 725813, haskell-authenticate-oauth/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-18 00:13:13 UTC (rev 725814)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+
+_hkgname=authenticate-oauth
+pkgname=haskell-authenticate-oauth
+pkgver=1.6.0.1
+pkgrel=168
+pkgdesc="Library to authenticate with OAuth for Haskell web applications."
+url="https://github.com/yesodweb/authenticate;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-http-client' 'haskell-crypto-pubkey-types' 
'haskell-rsa'
+ 'haskell-data-default' 'haskell-base64-bytestring' 'haskell-sha' 
'haskell-random'
+ 'haskell-http-types' 'haskell-blaze-builder' 
'haskell-transformers-compat')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('b2a6310097a6edc5bd3c38052a2eca73d3f398c0b9ff4b8f1d43a1f4dc83b7297df12f3fc0bfdecfce17e600f90b13c4c9e3f31c02b17d7fec0134a34c093fd6')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *1.1/<2/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--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-authenticate-oauth/trunk (PKGBUILD)

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:12:55
  Author: felixonmars
Revision: 725813

upgpkg: haskell-authenticate-oauth 1.6.0.1-168: rebuild with th-abstraction 
0.4.0.0

Modified:
  haskell-authenticate-oauth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:12:08 UTC (rev 725812)
+++ PKGBUILD2020-10-18 00:12:55 UTC (rev 725813)
@@ -3,7 +3,7 @@
 _hkgname=authenticate-oauth
 pkgname=haskell-authenticate-oauth
 pkgver=1.6.0.1
-pkgrel=167
+pkgrel=168
 pkgdesc="Library to authenticate with OAuth for Haskell web applications."
 url="https://github.com/yesodweb/authenticate;
 license=('BSD')


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:11:53
  Author: felixonmars
Revision: 725811

upgpkg: git-repair 1.20200504-85: rebuild with th-abstraction 0.4.0.0

Modified:
  git-repair/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:10:39 UTC (rev 725810)
+++ PKGBUILD2020-10-18 00:11:53 UTC (rev 725811)
@@ -2,7 +2,7 @@
 
 pkgname=git-repair
 pkgver=1.20200504
-pkgrel=84
+pkgrel=85
 pkgdesc="Repairs a damaged git repository"
 url="https://git-repair.branchable.com/;
 license=("AGPL3")


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:12:08
  Author: felixonmars
Revision: 725812

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: git-repair/repos/community-staging-x86_64/PKGBUILD (from rev 725811, 
git-repair/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-18 00:12:08 UTC (rev 725812)
@@ -0,0 +1,33 @@
+# Maintainer: Felix Yan 
+
+pkgname=git-repair
+pkgver=1.20200504
+pkgrel=85
+pkgdesc="Repairs a damaged git repository"
+url="https://git-repair.branchable.com/;
+license=("AGPL3")
+arch=('x86_64')
+depends=('git' 'ghc-libs' 'haskell-async' 'haskell-attoparsec' 
'haskell-data-default'
+ 'haskell-filepath-bytestring' 'haskell-hslogger' 'haskell-ifelse'
+ 'haskell-network' 'haskell-network-uri' 
'haskell-optparse-applicative' 'haskell-quickcheck'
+ 'haskell-split' 'haskell-unix-compat' 'haskell-utf8-string')
+makedepends=('ghc')
+source=("$pkgname::git://git-repair.branchable.com/#tag=$pkgver")
+sha512sums=('SKIP')
+
+build() {
+  cd git-repair
+
+  runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla \
+--docdir="/usr/share/doc/$pkgname" --ghc-option='-pie'
+  runhaskell Setup build $MAKEFLAGS
+}
+
+package() {
+  cd git-repair
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -Dm644 git-repair.1 "$pkgdir"/usr/share/man/man1/git-repair.1
+
+  rm "$pkgdir"/usr/share/doc/git-repair/COPYRIGHT
+  rmdir "$pkgdir"/usr/share/doc/git-repair "$pkgdir"/usr/share/doc
+}


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:10:39
  Author: felixonmars
Revision: 725810

archrelease: copy trunk to community-staging-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-18 00:10:22 UTC (rev 725809)
+++ PKGBUILD2020-10-18 00:10:39 UTC (rev 725810)
@@ -1,50 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-_hkgname=criterion
-pkgname=haskell-criterion
-pkgver=1.5.7.0
-pkgrel=6
-pkgdesc="Robust, reliable performance measurement and analysis"
-url="http://www.serpentine.com/criterion;
-license=("BSD")
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-wl-pprint' 
'haskell-base-compat-batteries'
- 'haskell-binary-orphans' 'haskell-cassava' 'haskell-code-page'
- 'haskell-criterion-measurement' 'haskell-glob' 'haskell-js-flot'
- 'haskell-js-jquery' 'haskell-microstache' 'haskell-mwc-random'
- 'haskell-optparse-applicative' 'haskell-statistics' 
'haskell-transformers-compat'
- 'haskell-vector' 'haskell-vector-algorithms')
-makedepends=('ghc' 'haskell-base-compat' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-tasty'
- 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('5c28d2f89e45fe506ace3908ea532fcca4824682b5acc30930df66b906e7d197962df1f9e193a9896a194d41c498e869467d50a21b752c1a4c009d38cc8281a6')
-
-build() {
-cd $_hkgname-$pkgver
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir="$pkgname" 
--enable-tests \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
--f-fast -f-embed-data-files
-runhaskell Setup build $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
-}

Copied: haskell-criterion/repos/community-staging-x86_64/PKGBUILD (from rev 
725809, haskell-criterion/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-18 00:10:39 UTC (rev 725810)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=criterion
+pkgname=haskell-criterion
+pkgver=1.5.7.0
+pkgrel=7
+pkgdesc="Robust, reliable performance measurement and analysis"
+url="http://www.serpentine.com/criterion;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-wl-pprint' 
'haskell-base-compat-batteries'
+ 'haskell-binary-orphans' 'haskell-cassava' 'haskell-code-page'
+ 'haskell-criterion-measurement' 'haskell-glob' 'haskell-js-flot'
+ 'haskell-js-jquery' 'haskell-microstache' 'haskell-mwc-random'
+ 'haskell-optparse-applicative' 'haskell-statistics' 
'haskell-transformers-compat'
+ 'haskell-vector' 'haskell-vector-algorithms')
+makedepends=('ghc' 'haskell-base-compat' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('5c28d2f89e45fe506ace3908ea532fcca4824682b5acc30930df66b906e7d197962df1f9e193a9896a194d41c498e869467d50a21b752c1a4c009d38cc8281a6')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir="$pkgname" 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-fast -f-embed-data-files
+runhaskell Setup build $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 

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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:10:22
  Author: felixonmars
Revision: 725809

upgpkg: haskell-criterion 1.5.7.0-7: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-criterion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:08:41 UTC (rev 725808)
+++ PKGBUILD2020-10-18 00:10:22 UTC (rev 725809)
@@ -4,7 +4,7 @@
 _hkgname=criterion
 pkgname=haskell-criterion
 pkgver=1.5.7.0
-pkgrel=6
+pkgrel=7
 pkgdesc="Robust, reliable performance measurement and analysis"
 url="http://www.serpentine.com/criterion;
 license=("BSD")


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:08:21
  Author: felixonmars
Revision: 725807

upgpkg: haskell-js-jquery 3.3.1-514: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-js-jquery/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:07:35 UTC (rev 725806)
+++ PKGBUILD2020-10-18 00:08:21 UTC (rev 725807)
@@ -4,7 +4,7 @@
 _hkgname=js-jquery
 pkgname=haskell-js-jquery
 pkgver=3.3.1
-pkgrel=513
+pkgrel=514
 pkgdesc="Obtain minified jQuery code"
 url="https://github.com/ndmitchell/js-jquery#readme;
 license=("MIT")


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:08:41
  Author: felixonmars
Revision: 725808

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-js-jquery/repos/community-staging-x86_64/PKGBUILD (from rev 
725807, haskell-js-jquery/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-18 00:08:41 UTC (rev 725808)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=js-jquery
+pkgname=haskell-js-jquery
+pkgver=3.3.1
+pkgrel=514
+pkgdesc="Obtain minified jQuery code"
+url="https://github.com/ndmitchell/js-jquery#readme;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-http')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('359a4342bc5156d5360385a478e235def04db0381cc48f342baac5018e91350dce760adb9b9ada796bc6341d5629f807672f629ee127faefe521801d62bb')
+
+build() {
+cd $_hkgname-$pkgver
+
+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 --datasubdir="$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-http/repos (2 files)

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:07:35
  Author: felixonmars
Revision: 725806

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-http/repos/community-staging-x86_64/PKGBUILD (from rev 725805, 
haskell-http/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-18 00:07:35 UTC (rev 725806)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=HTTP
+pkgname=haskell-http
+pkgver=4000.3.15
+pkgrel=17
+pkgdesc="A library for client-side HTTP"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-network' 'haskell-network-uri')
+makedepends=('ghc' 'haskell-hunit' 'haskell-httpd-shed' 'haskell-puremd5' 
'haskell-split'
+ 'haskell-test-framework' 'haskell-test-framework-hunit' 
'haskell-case-insensitive'
+ 'haskell-http-types' 'haskell-wai' 'haskell-warp' 
'haskell-conduit'
+ 'haskell-conduit-extra')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('74015725d15f5dcd1f7212100e26ae82da31201b77e729322ea95e88018ae1ef3a1bd5c2b8ac525f14276a24f2781de9de757aa5f83c71e260d6a61223b756d2')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *3.3/<4/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-mtl1 -f-warn-as-error -f-conduit10 -fwarp-tests -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
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:07:14
  Author: felixonmars
Revision: 725805

upgpkg: haskell-http 4000.3.15-17: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-http/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:06:08 UTC (rev 725804)
+++ PKGBUILD2020-10-18 00:07:14 UTC (rev 725805)
@@ -4,7 +4,7 @@
 _hkgname=HTTP
 pkgname=haskell-http
 pkgver=4000.3.15
-pkgrel=16
+pkgrel=17
 pkgdesc="A library for client-side HTTP"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=('BSD')


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:06:08
  Author: felixonmars
Revision: 725804

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-warp/repos/community-staging-x86_64/PKGBUILD (from rev 725803, 
haskell-warp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-18 00:06:08 UTC (rev 725804)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=warp
+pkgname=haskell-warp
+pkgver=3.3.13
+pkgrel=77
+pkgdesc="A fast, light-weight web server for WAI applications."
+url="https://github.com/yesodweb/wai;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-auto-update' 
'haskell-bsb-http-chunked'
+ 'haskell-case-insensitive' 'haskell-hashable' 'haskell-http-date' 
'haskell-http-types'
+ 'haskell-http2' 'haskell-iproute' 'haskell-network' 
'haskell-simple-sendfile'
+ 'haskell-streaming-commons' 'haskell-time-manager' 
'haskell-unix-compat' 'haskell-vault'
+ 'haskell-wai' 'haskell-word8' 'haskell-x509')
+makedepends=('ghc' 'haskell-doctest' 'haskell-http-client' 'haskell-hspec' 
'haskell-hunit'
+ 'haskell-lifted-base' 'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('ac37e1f274d26b2c846429960074d27010c0864efd87da6d79f03e3f833aca3269176bb99301ab8cb59c4476ff12bae35b26e0fe602e7b0e2cad2837592e07b1')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-warp-debug -fallow-sendfilefd -f-network-bytestring
+runhaskell Setup build $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-warp/trunk (PKGBUILD)

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:05:47
  Author: felixonmars
Revision: 725803

upgpkg: haskell-warp 3.3.13-77: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-warp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:04:19 UTC (rev 725802)
+++ PKGBUILD2020-10-18 00:05:47 UTC (rev 725803)
@@ -4,7 +4,7 @@
 _hkgname=warp
 pkgname=haskell-warp
 pkgver=3.3.13
-pkgrel=76
+pkgrel=77
 pkgdesc="A fast, light-weight web server for WAI applications."
 url="https://github.com/yesodweb/wai;
 license=("MIT")


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:04:03
  Author: felixonmars
Revision: 725801

upgpkg: haskell-httpd-shed 0.4.1.1-221: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-httpd-shed/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:03:18 UTC (rev 725800)
+++ PKGBUILD2020-10-18 00:04:03 UTC (rev 725801)
@@ -4,7 +4,7 @@
 _hkgname=httpd-shed
 pkgname=haskell-httpd-shed
 pkgver=0.4.1.1
-pkgrel=220
+pkgrel=221
 pkgdesc="A simple web-server with an interact style API"
 url="https://github.com/andygill/httpd-shed/;
 license=("BSD")


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:04:19
  Author: felixonmars
Revision: 725802

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-httpd-shed/repos/community-staging-x86_64/
  haskell-httpd-shed/repos/community-staging-x86_64/PKGBUILD
(from rev 725801, haskell-httpd-shed/trunk/PKGBUILD)

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

Copied: haskell-httpd-shed/repos/community-staging-x86_64/PKGBUILD (from rev 
725801, haskell-httpd-shed/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-18 00:04:19 UTC (rev 725802)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=httpd-shed
+pkgname=haskell-httpd-shed
+pkgver=0.4.1.1
+pkgrel=221
+pkgdesc="A simple web-server with an interact style API"
+url="https://github.com/andygill/httpd-shed/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-network' 'haskell-network-bsd' 
'haskell-network-uri')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('b168fd18f4d476fc6d903d8dc17a1831645049dc6ae57e977b97453f69c98dc3a288e2c8d0298283bc2b8dd0d4e994fcec27058bb36b9ee0d4d4aac2b9de3b97')
+
+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 \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-buildexamples -fnetwork-uri -fnetwork-bsd
+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-http-client/trunk (PKGBUILD)

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:03:02
  Author: felixonmars
Revision: 725799

upgpkg: haskell-http-client 0.7.2.1-37: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-http-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:01:57 UTC (rev 725798)
+++ PKGBUILD2020-10-18 00:03:02 UTC (rev 725799)
@@ -4,7 +4,7 @@
 _hkgname=http-client
 pkgname=haskell-http-client
 pkgver=0.7.2.1
-pkgrel=36
+pkgrel=37
 pkgdesc="An HTTP client engine"
 url="https://github.com/snoyberg/http-client;
 license=("MIT")


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:03:18
  Author: felixonmars
Revision: 725800

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-http-client/repos/community-staging-x86_64/PKGBUILD (from rev 
725799, haskell-http-client/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-18 00:03:18 UTC (rev 725800)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-client
+pkgname=haskell-http-client
+pkgver=0.7.2.1
+pkgrel=37
+pkgdesc="An HTTP client engine"
+url="https://github.com/snoyberg/http-client;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-builder' 'haskell-case-insensitive' 
'haskell-cookie'
+ 'haskell-http-types' 'haskell-memory' 'haskell-mime-types'
+ 'haskell-network' 'haskell-network-uri' 'haskell-random' 
'haskell-streaming-commons')
+makedepends=('ghc' 'haskell-async' 'haskell-hspec' 'haskell-monad-control' 
'haskell-zlib')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('1d4f27a191ee3ae45db918a24c58d71e93b9ba92a78b5a0483d7ae8265b6c8181502ce79f26cc614092df5e68e84a979ca68850078329fda2d0bd98fb390c364')
+
+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
+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-network-uri/trunk (PKGBUILD)

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:01:42
  Author: felixonmars
Revision: 725797

upgpkg: haskell-network-uri 2.6.3.0-170: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-network-uri/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:00:14 UTC (rev 725796)
+++ PKGBUILD2020-10-18 00:01:42 UTC (rev 725797)
@@ -3,7 +3,7 @@
 _hkgname=network-uri
 pkgname=haskell-network-uri
 pkgver=2.6.3.0
-pkgrel=169
+pkgrel=170
 pkgdesc="A library for client-side HTTP"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=('BSD')


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Sunday, October 18, 2020 @ 00:01:57
  Author: felixonmars
Revision: 725798

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-network-uri/repos/community-staging-x86_64/PKGBUILD (from rev 
725797, haskell-network-uri/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-18 00:01:57 UTC (rev 725798)
@@ -0,0 +1,49 @@
+# Maintainer: Jelle van der Waa 
+
+_hkgname=network-uri
+pkgname=haskell-network-uri
+pkgver=2.6.3.0
+pkgrel=170
+pkgdesc="A library for client-side HTTP"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'sh')
+makedepends=('ghc' 'haskell-criterion' 'haskell-hunit' 'haskell-test-framework'
+ 'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('15091367e4543de1e2af0d81973b8e456e2c5f5295dcd7a91b91f46c2e07a6a655c6ab4c0837ce7566b21b43bca3569c1b27bb7f437572b09d00e678c7b512f0')
+
+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 opensc/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Sunday, October 18, 2020 @ 00:00:14
  Author: freswa
Revision: 725796

archrelease: copy trunk to community-x86_64

Added:
  opensc/repos/community-x86_64/PKGBUILD
(from rev 725795, opensc/trunk/PKGBUILD)
Deleted:
  opensc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-18 00:00:10 UTC (rev 725795)
+++ PKGBUILD2020-10-18 00:00:14 UTC (rev 725796)
@@ -1,46 +0,0 @@
-# Maintainer: Alad
-# Contributor: Timothy Redaelli 
-# Contributor: Sébastien Luttringer
-# Contributor: kevku 
-
-pkgname=opensc
-pkgver=0.20.0
-pkgrel=1
-pkgdesc='Tools and libraries for smart cards'
-arch=('x86_64')
-url='https://github.com/OpenSC/OpenSC/wiki'
-license=('LGPL')
-backup=('etc/opensc.conf')
-makedepends=('docbook-xsl')
-depends=('pcsclite' 'glib2' 'libltdl')
-options=('!emptydirs')
-source=("https://github.com/OpenSC/OpenSC/releases/download/$pkgver/opensc-$pkgver.tar.gz;)
-sha256sums=('bbf4b4f4a44463645c90a525e820a8059b2f742a53b7b944f941de3c97ba4863')
-
-build() {
-  cd $pkgname-$pkgver
-  _sheetdir=(/usr/share/xml/docbook/xsl-stylesheets-*)
-  ./bootstrap
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---with-completiondir=/usr/share/bash-completion/completions \
---enable-man \
---enable-doc \
---enable-readline \
---enable-openssl \
---enable-pcsc \
---enable-zlib \
---enable-sm \
---with-xsl-stylesheetsdir="$_sheetdir"
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package(){
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -D -m644 etc/opensc.conf "$pkgdir/etc/opensc.conf"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: opensc/repos/community-x86_64/PKGBUILD (from rev 725795, 
opensc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-18 00:00:14 UTC (rev 725796)
@@ -0,0 +1,46 @@
+# Maintainer: Alad
+# Contributor: Timothy Redaelli 
+# Contributor: Sébastien Luttringer
+# Contributor: kevku 
+
+pkgname=opensc
+pkgver=0.20.0
+pkgrel=2
+pkgdesc='Tools and libraries for smart cards'
+arch=('x86_64')
+url='https://github.com/OpenSC/OpenSC/wiki'
+license=('LGPL')
+backup=('etc/opensc.conf')
+makedepends=('docbook-xsl')
+depends=('pcsclite' 'glib2' 'libltdl')
+options=('!emptydirs')
+source=("https://github.com/OpenSC/OpenSC/releases/download/$pkgver/opensc-$pkgver.tar.gz;)
+sha256sums=('bbf4b4f4a44463645c90a525e820a8059b2f742a53b7b944f941de3c97ba4863')
+
+build() {
+  cd $pkgname-$pkgver
+  _sheetdir=(/usr/share/xml/docbook/xsl-stylesheets-*-nons)
+  ./bootstrap
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--with-completiondir=/usr/share/bash-completion/completions \
+--enable-man \
+--enable-doc \
+--enable-readline \
+--enable-openssl \
+--enable-pcsc \
+--enable-zlib \
+--enable-sm \
+--with-xsl-stylesheetsdir="$_sheetdir"
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package(){
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -D -m644 etc/opensc.conf "$pkgdir/etc/opensc.conf"
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Saturday, October 17, 2020 @ 23:59:59
  Author: felixonmars
Revision: 725794

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-criterion/repos/community-staging-x86_64/PKGBUILD (from rev 
725793, haskell-criterion/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-17 23:59:59 UTC (rev 725794)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=criterion
+pkgname=haskell-criterion
+pkgver=1.5.7.0
+pkgrel=6
+pkgdesc="Robust, reliable performance measurement and analysis"
+url="http://www.serpentine.com/criterion;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-wl-pprint' 
'haskell-base-compat-batteries'
+ 'haskell-binary-orphans' 'haskell-cassava' 'haskell-code-page'
+ 'haskell-criterion-measurement' 'haskell-glob' 'haskell-js-flot'
+ 'haskell-js-jquery' 'haskell-microstache' 'haskell-mwc-random'
+ 'haskell-optparse-applicative' 'haskell-statistics' 
'haskell-transformers-compat'
+ 'haskell-vector' 'haskell-vector-algorithms')
+makedepends=('ghc' 'haskell-base-compat' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('5c28d2f89e45fe506ace3908ea532fcca4824682b5acc30930df66b906e7d197962df1f9e193a9896a194d41c498e869467d50a21b752c1a4c009d38cc8281a6')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir="$pkgname" 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-fast -f-embed-data-files
+runhaskell Setup build $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-criterion/trunk (PKGBUILD)

2020-10-17 Thread Felix Yan via arch-commits
Date: Saturday, October 17, 2020 @ 23:59:42
  Author: felixonmars
Revision: 725793

upgpkg: haskell-criterion 1.5.7.0-6: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-criterion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-17 23:56:47 UTC (rev 725792)
+++ PKGBUILD2020-10-17 23:59:42 UTC (rev 725793)
@@ -4,7 +4,7 @@
 _hkgname=criterion
 pkgname=haskell-criterion
 pkgver=1.5.7.0
-pkgrel=5
+pkgrel=6
 pkgdesc="Robust, reliable performance measurement and analysis"
 url="http://www.serpentine.com/criterion;
 license=("BSD")


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

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Sunday, October 18, 2020 @ 00:00:10
  Author: freswa
Revision: 725795

fix docbook-xsl path to nons version

fixes FS#67078

Modified:
  opensc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-17 23:59:59 UTC (rev 725794)
+++ PKGBUILD2020-10-18 00:00:10 UTC (rev 725795)
@@ -5,7 +5,7 @@
 
 pkgname=opensc
 pkgver=0.20.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Tools and libraries for smart cards'
 arch=('x86_64')
 url='https://github.com/OpenSC/OpenSC/wiki'
@@ -19,7 +19,7 @@
 
 build() {
   cd $pkgname-$pkgver
-  _sheetdir=(/usr/share/xml/docbook/xsl-stylesheets-*)
+  _sheetdir=(/usr/share/xml/docbook/xsl-stylesheets-*-nons)
   ./bootstrap
   ./configure \
 --prefix=/usr \


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Saturday, October 17, 2020 @ 23:56:47
  Author: felixonmars
Revision: 725792

archrelease: copy trunk to community-staging-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-17 23:56:31 UTC (rev 725791)
+++ PKGBUILD2020-10-17 23:56:47 UTC (rev 725792)
@@ -1,49 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Thomas Dziedzic 
-
-_hkgname=network
-pkgname=haskell-network
-pkgver=3.1.2.0
-pkgrel=36
-pkgdesc="Low-level networking interface"
-url="https://hackage.haskell.org/package/${_hkgname};
-license=('BSD')
-arch=('x86_64')
-depends=('ghc-libs')
-makedepends=('ghc' 'haskell-doctest' 'haskell-hspec' 'haskell-hunit' 
'haskell-quickcheck'
- 'haskell-temporary')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('ccab6a31a5bfe5a30ad6d0e757d523d03eb7560c47bee0abd79205f2aaedab985bc6381df50fcdb8ffb48a081198891daa46e0ec6602a99bf5878c762b89c6b7')
-
-prepare() {
-cd $_hkgname-$pkgver
-sed -i 's/8080/8003/' tests/Network/SocketSpec.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
-}

Copied: haskell-network/repos/community-staging-x86_64/PKGBUILD (from rev 
725791, haskell-network/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-17 23:56:47 UTC (rev 725792)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=network
+pkgname=haskell-network
+pkgver=3.1.2.0
+pkgrel=37
+pkgdesc="Low-level networking interface"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-doctest' 'haskell-hspec' 'haskell-hunit' 
'haskell-quickcheck'
+ 'haskell-temporary')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('ccab6a31a5bfe5a30ad6d0e757d523d03eb7560c47bee0abd79205f2aaedab985bc6381df50fcdb8ffb48a081198891daa46e0ec6602a99bf5878c762b89c6b7')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/8080/8003/' tests/Network/SocketSpec.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-network/trunk (PKGBUILD)

2020-10-17 Thread Felix Yan via arch-commits
Date: Saturday, October 17, 2020 @ 23:56:31
  Author: felixonmars
Revision: 725791

upgpkg: haskell-network 3.1.2.0-37: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-network/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-17 23:55:31 UTC (rev 725790)
+++ PKGBUILD2020-10-17 23:56:31 UTC (rev 725791)
@@ -4,7 +4,7 @@
 _hkgname=network
 pkgname=haskell-network
 pkgver=3.1.2.0
-pkgrel=36
+pkgrel=37
 pkgdesc="Low-level networking interface"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=('BSD')


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Saturday, October 17, 2020 @ 23:55:31
  Author: felixonmars
Revision: 725790

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-x509/repos/community-staging-x86_64/PKGBUILD (from rev 725789, 
haskell-x509/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-17 23:55:31 UTC (rev 725790)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=x509
+pkgname=haskell-x509
+pkgver=1.7.5
+pkgrel=82
+pkgdesc="X509 reader and writer"
+url="https://github.com/vincenthz/hs-certificate;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-asn1-encoding" "haskell-asn1-parse" 
"haskell-asn1-types"
+ "haskell-cryptonite" "haskell-hourglass" "haskell-memory" 
"haskell-pem")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('e1caa84944294ca412b18269eef19f1b511f0e317b25431102b8b757ce266ab4ec48f805d4d251ff46a85f3b20ef368b176d8b93a92456fc9b8885a85695c537')
+
+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-x509/trunk (PKGBUILD)

2020-10-17 Thread Felix Yan via arch-commits
Date: Saturday, October 17, 2020 @ 23:55:16
  Author: felixonmars
Revision: 725789

upgpkg: haskell-x509 1.7.5-82: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-x509/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-17 23:54:33 UTC (rev 725788)
+++ PKGBUILD2020-10-17 23:55:16 UTC (rev 725789)
@@ -4,7 +4,7 @@
 _hkgname=x509
 pkgname=haskell-x509
 pkgver=1.7.5
-pkgrel=81
+pkgrel=82
 pkgdesc="X509 reader and writer"
 url="https://github.com/vincenthz/hs-certificate;
 license=("BSD")


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Saturday, October 17, 2020 @ 23:54:18
  Author: felixonmars
Revision: 725787

upgpkg: haskell-x11-xft 0.3.1-98: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-x11-xft/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-17 23:53:32 UTC (rev 725786)
+++ PKGBUILD2020-10-17 23:54:18 UTC (rev 725787)
@@ -3,7 +3,7 @@
 _hkgname=X11-xft
 pkgname=haskell-x11-xft
 pkgver=0.3.1
-pkgrel=97
+pkgrel=98
 pkgdesc="Bindings to the Xft, X Free Type interface library, and some Xrender 
parts"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=('LGPL')


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Saturday, October 17, 2020 @ 23:54:33
  Author: felixonmars
Revision: 725788

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-x11-xft/repos/community-staging-x86_64/
  haskell-x11-xft/repos/community-staging-x86_64/PKGBUILD
(from rev 725787, haskell-x11-xft/trunk/PKGBUILD)

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

Copied: haskell-x11-xft/repos/community-staging-x86_64/PKGBUILD (from rev 
725787, haskell-x11-xft/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-17 23:54:33 UTC (rev 725788)
@@ -0,0 +1,37 @@
+# Maintainer: Sergej Pupykin 
+
+_hkgname=X11-xft
+pkgname=haskell-x11-xft
+pkgver=0.3.1
+pkgrel=98
+pkgdesc="Bindings to the Xft, X Free Type interface library, and some Xrender 
parts"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=('LGPL')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-x11' 'haskell-utf8-string' 'libxft')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/X11-xft/$pkgver/X11-xft-$pkgver.tar.gz)
+sha512sums=('8f40db25453227ef9ce53b05a0c6af869e3a2efdb1d9b9ad683baf52601f320c85b09f0e514bb6ffeb17516d9b75c6772aa49613bb96272d56f06788118b7cfe')
+
+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-x11/trunk (PKGBUILD)

2020-10-17 Thread Felix Yan via arch-commits
Date: Saturday, October 17, 2020 @ 23:53:18
  Author: felixonmars
Revision: 725785

upgpkg: haskell-x11 1.9.2-12: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-x11/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-17 23:51:59 UTC (rev 725784)
+++ PKGBUILD2020-10-17 23:53:18 UTC (rev 725785)
@@ -5,7 +5,7 @@
 _hkgname=X11
 pkgname=haskell-x11
 pkgver=1.9.2
-pkgrel=11
+pkgrel=12
 pkgdesc="A Haskell binding to the X11 graphics library."
 arch=(x86_64)
 url="https://hackage.haskell.org/cgi-bin/hackage-scripts/package/X11;


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Saturday, October 17, 2020 @ 23:53:32
  Author: felixonmars
Revision: 725786

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-x11/repos/community-staging-x86_64/PKGBUILD (from rev 725785, 
haskell-x11/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-17 23:53:32 UTC (rev 725786)
@@ -0,0 +1,40 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: shild 
+# Maintainer: Vesa Kaihlavirta 
+
+_hkgname=X11
+pkgname=haskell-x11
+pkgver=1.9.2
+pkgrel=12
+pkgdesc="A Haskell binding to the X11 graphics library."
+arch=(x86_64)
+url="https://hackage.haskell.org/cgi-bin/hackage-scripts/package/X11;
+license=('BSD')
+depends=('ghc-libs' "libx11" "libxinerama" "libxrandr" "libxss" 
"haskell-data-default")
+conflicts=(haskell-x11-extras)
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/X11/$pkgver/X11-$pkgver.tar.gz)
+sha512sums=('e9658c33b6dcbb6a42f1cc4a8976365506af94ddc15c32f73205b453934ef3232f3b383f8365b6aa6e69b51acfda4a0f3a8038f3164523b33781139a80582a41')
+
+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-brick/repos (2 files)

2020-10-17 Thread Felix Yan via arch-commits
Date: Saturday, October 17, 2020 @ 23:51:59
  Author: felixonmars
Revision: 725784

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-brick/repos/community-staging-x86_64/PKGBUILD (from rev 725783, 
haskell-brick/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-17 23:51:59 UTC (rev 725784)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=brick
+pkgname=haskell-brick
+pkgver=0.57
+pkgrel=3
+pkgdesc="A declarative terminal user interface library"
+url="https://github.com/jtdaugherty/brick;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-vty' 'haskell-data-clist' 'haskell-dlist' 
'haskell-microlens'
+ 'haskell-microlens-th' 'haskell-microlens-mtl' 'haskell-config-ini' 
'haskell-vector'
+ 'haskell-contravariant' 'haskell-text-zipper' 'haskell-word-wrap')
+makedepends=('ghc' 'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('5efb873cba08220ddf50e8ab4fb69e48a4da718e782e2603f87b9f30881f7703b34e4dc7ee1a69bff3047511f886af5805e90ffe4a5de14882580484502db2b9')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-demos
+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-brick/trunk (PKGBUILD)

2020-10-17 Thread Felix Yan via arch-commits
Date: Saturday, October 17, 2020 @ 23:51:44
  Author: felixonmars
Revision: 725783

upgpkg: haskell-brick 0.57-3: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-brick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-17 23:50:06 UTC (rev 725782)
+++ PKGBUILD2020-10-17 23:51:44 UTC (rev 725783)
@@ -4,7 +4,7 @@
 _hkgname=brick
 pkgname=haskell-brick
 pkgver=0.57
-pkgrel=2
+pkgrel=3
 pkgdesc="A declarative terminal user interface library"
 url="https://github.com/jtdaugherty/brick;
 license=("BSD")


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Saturday, October 17, 2020 @ 23:50:06
  Author: felixonmars
Revision: 725782

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-word-wrap/repos/community-staging-x86_64/
  haskell-word-wrap/repos/community-staging-x86_64/PKGBUILD
(from rev 725781, haskell-word-wrap/trunk/PKGBUILD)

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

Copied: haskell-word-wrap/repos/community-staging-x86_64/PKGBUILD (from rev 
725781, haskell-word-wrap/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-17 23:50:06 UTC (rev 725782)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=word-wrap
+pkgname=haskell-word-wrap
+pkgver=0.4.1
+pkgrel=92
+pkgdesc="A library for word-wrapping"
+url="https://github.com/jtdaugherty/word-wrap/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-hspec')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('8160bdc238c3a057c903363d0874986b7ae9543b0bd7c1cbf2ac0aca94dd8fcf9ae40c7c2883b434f71d53c87e7d3dc41c3e645611879310b9c160238ef61637')
+
+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-word-wrap/trunk (PKGBUILD)

2020-10-17 Thread Felix Yan via arch-commits
Date: Saturday, October 17, 2020 @ 23:49:51
  Author: felixonmars
Revision: 725781

upgpkg: haskell-word-wrap 0.4.1-92: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-word-wrap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-17 23:49:05 UTC (rev 725780)
+++ PKGBUILD2020-10-17 23:49:51 UTC (rev 725781)
@@ -4,7 +4,7 @@
 _hkgname=word-wrap
 pkgname=haskell-word-wrap
 pkgver=0.4.1
-pkgrel=91
+pkgrel=92
 pkgdesc="A library for word-wrapping"
 url="https://github.com/jtdaugherty/word-wrap/;
 license=("BSD")


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Saturday, October 17, 2020 @ 23:49:05
  Author: felixonmars
Revision: 725780

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-wl-pprint-terminfo/repos/community-staging-x86_64/PKGBUILD 
(from rev 725779, haskell-wl-pprint-terminfo/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-17 23:49:05 UTC (rev 725780)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+_hkgname=wl-pprint-terminfo
+pkgname=haskell-wl-pprint-terminfo
+pkgver=3.7.1.4
+pkgrel=172
+pkgdesc="A color pretty printer with terminfo support"
+url="https://github.com/ekmett/wl-pprint-terminfo/;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-wl-pprint-extras')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('1f2a7bd195732fe297c49c50b59812190d5698efa7c2e9b2fbcfbbae71523c25dfcc2a0f098aebe22453cd867bc40480100c8231a6f43a7bd46202f3dcd924b3')
+
+prepare() {
+sed -e '/nats/d' -e '/semigroups/d' -e 's/< *0.6/<1/' -i 
${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir="$pkgname" 
\
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fCursed
+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-wl-pprint-terminfo/trunk (PKGBUILD)

2020-10-17 Thread Felix Yan via arch-commits
Date: Saturday, October 17, 2020 @ 23:48:49
  Author: felixonmars
Revision: 725779

upgpkg: haskell-wl-pprint-terminfo 3.7.1.4-172: rebuild with th-abstraction 
0.4.0.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-17 23:47:58 UTC (rev 725778)
+++ PKGBUILD2020-10-17 23:48:49 UTC (rev 725779)
@@ -3,7 +3,7 @@
 _hkgname=wl-pprint-terminfo
 pkgname=haskell-wl-pprint-terminfo
 pkgver=3.7.1.4
-pkgrel=171
+pkgrel=172
 pkgdesc="A color pretty printer with terminfo support"
 url="https://github.com/ekmett/wl-pprint-terminfo/;
 license=('BSD')


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Saturday, October 17, 2020 @ 23:47:58
  Author: felixonmars
Revision: 725778

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-wl-pprint-extras/repos/community-staging-x86_64/PKGBUILD (from 
rev 725777, haskell-wl-pprint-extras/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-17 23:47:58 UTC (rev 725778)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=wl-pprint-extras
+pkgname=haskell-wl-pprint-extras
+pkgver=3.5.0.5
+pkgrel=172
+pkgdesc="A free monad based on the Wadler/Leijen pretty printer"
+url="https://github.com/ekmett/wl-pprint-extras/;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-semigroupoids' 'haskell-utf8-string')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('705107842ccbf4eb23d0b9e8069fd4d5bb1b03ffecbf9efaa8a579fd977380913d590fa370cc42476d5b28fde98fc44e7879fe343f761cd1751ebeb0b8c0e242')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -e '/nats/d' -e '/semigroups/d' -e 's/< *0.6/<1/' -i $_hkgname.cabal
+sed -i -e '/fail _ = empty/d' src/Text/PrettyPrint/Free/Internal.hs
+}
+
+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-wl-pprint-extras/trunk (PKGBUILD)

2020-10-17 Thread Felix Yan via arch-commits
Date: Saturday, October 17, 2020 @ 23:47:41
  Author: felixonmars
Revision: 725777

upgpkg: haskell-wl-pprint-extras 3.5.0.5-172: rebuild with th-abstraction 
0.4.0.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-17 23:46:53 UTC (rev 725776)
+++ PKGBUILD2020-10-17 23:47:41 UTC (rev 725777)
@@ -3,7 +3,7 @@
 _hkgname=wl-pprint-extras
 pkgname=haskell-wl-pprint-extras
 pkgver=3.5.0.5
-pkgrel=171
+pkgrel=172
 pkgdesc="A free monad based on the Wadler/Leijen pretty printer"
 url="https://github.com/ekmett/wl-pprint-extras/;
 license=('BSD')


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Saturday, October 17, 2020 @ 23:46:53
  Author: felixonmars
Revision: 725776

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-what4/repos/community-staging-x86_64/PKGBUILD (from rev 725775, 
haskell-what4/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-17 23:46:53 UTC (rev 725776)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+
+_hkgname=what4
+pkgname=haskell-what4
+pkgver=1.0
+pkgrel=45
+pkgdesc="Solver-agnostic symbolic values support for issuing queries"
+url="https://github.com/GaloisInc/what4;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-ansi-wl-pprint' 
'haskell-bimap'
+ 'haskell-bifunctors' 'haskell-bv-sized' 'haskell-deriving-compat'
+ 'haskell-data-binary-ieee754' 'haskell-extra' 'haskell-fingertree' 
'haskell-hashable'
+ 'haskell-hashtables' 'haskell-io-streams' 'haskell-lens' 
'haskell-panic'
+ 'haskell-parameterized-utils' 'haskell-scientific' 'haskell-temporary'
+ 'haskell-th-abstraction' 'haskell-unordered-containers' 
'haskell-utf8-string'
+ 'haskell-vector' 'haskell-versions' 'haskell-zenc')
+makedepends=('ghc' 'uusi' 'haskell-hedgehog' 'haskell-quickcheck' 
'haskell-tasty' 'haskell-tasty-hedgehog'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+checkdepends=('cvc4' 'yices' 'z3')
+optdepends=('cvc4' 'yices' 'z3')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('fcfb36322d3cd82fa5c013d404cbe8c7c8e52dc8e1b8b530df8c1c174d67327e9a48ba1a4c0714d87925eecd69713b341c4c96055693d2b6788a0c6bf7fc56a9')
+
+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
+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
+# https://github.com/GaloisInc/what4/issues/67
+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-what4/trunk (PKGBUILD)

2020-10-17 Thread Felix Yan via arch-commits
Date: Saturday, October 17, 2020 @ 23:46:38
  Author: felixonmars
Revision: 725775

upgpkg: haskell-what4 1.0-45: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-what4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-17 23:42:10 UTC (rev 725774)
+++ PKGBUILD2020-10-17 23:46:38 UTC (rev 725775)
@@ -3,7 +3,7 @@
 _hkgname=what4
 pkgname=haskell-what4
 pkgver=1.0
-pkgrel=44
+pkgrel=45
 pkgdesc="Solver-agnostic symbolic values support for issuing queries"
 url="https://github.com/GaloisInc/what4;
 license=('BSD')
@@ -15,7 +15,7 @@
  'haskell-parameterized-utils' 'haskell-scientific' 'haskell-temporary'
  'haskell-th-abstraction' 'haskell-unordered-containers' 
'haskell-utf8-string'
  'haskell-vector' 'haskell-versions' 'haskell-zenc')
-makedepends=('ghc' 'haskell-hedgehog' 'haskell-quickcheck' 'haskell-tasty' 
'haskell-tasty-hedgehog'
+makedepends=('ghc' 'uusi' 'haskell-hedgehog' 'haskell-quickcheck' 
'haskell-tasty' 'haskell-tasty-hedgehog'
  'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
 checkdepends=('cvc4' 'yices' 'z3')
 optdepends=('cvc4' 'yices' 'z3')
@@ -25,6 +25,7 @@
 prepare() {
 cd $_hkgname-$pkgver
 echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+uusi $_hkgname.cabal
 }
 
 build() {


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

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Saturday, October 17, 2020 @ 23:42:07
  Author: freswa
Revision: 725773

fix build of X11 plugin and docs

fixes FS#65356

Modified:
  mit-scheme/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-17 23:36:46 UTC (rev 725772)
+++ PKGBUILD2020-10-17 23:42:07 UTC (rev 725773)
@@ -4,13 +4,14 @@
 
 pkgname=mit-scheme
 pkgver=10.1.10
-pkgrel=2
+pkgrel=3
 pkgdesc='MIT/GNU Scheme'
 url='https://www.gnu.org/software/mit-scheme/'
 arch=('x86_64')
 license=('GPL')
-depends=('ncurses' 'zlib')
+depends=('ncurses' 'zlib' 'libx11')
 optdepends=('openssl: support for openssl')
+provides=('x11-shim.so')
 
source=("https://ftp.gnu.org/gnu/mit-scheme/stable.pkg/$pkgver/$pkgname-$pkgver-x86-64.tar.gz;
 
"https://ftp.gnu.org/gnu/mit-scheme/stable.pkg/$pkgver/$pkgname-$pkgver-x86-64.tar.gz.sig;)
 validpgpkeys=('424626C56C4AA9DB11194C07E3AA82D81B352C01') # Chris Hanson 

@@ -21,11 +22,21 @@
 cd "$pkgname-$pkgver"/src
 ./configure --prefix=/usr \
 --with-x \
+--enable-x11 \
 --enable-native-code
 make
+cd ../doc
+./configure --prefix=/usr \
+--disable-pdf \
+--disable-html
+make
 }
 
 package() {
-cd "$pkgname-$pkgver"/src
+cd "$pkgname-$pkgver"
+install -Dm644 "etc/xscheme.el" 
"$pkgdir/usr/share/emacs/site-lisp/xscheme.el"
+cd src
 make DESTDIR="$pkgdir" install
+cd ../doc
+make DESTDIR="$pkgdir" install-info install-man
 }


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

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Saturday, October 17, 2020 @ 23:42:10
  Author: freswa
Revision: 725774

archrelease: copy trunk to community-x86_64

Added:
  mit-scheme/repos/community-x86_64/PKGBUILD
(from rev 725773, mit-scheme/trunk/PKGBUILD)
Deleted:
  mit-scheme/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-17 23:42:07 UTC (rev 725773)
+++ PKGBUILD2020-10-17 23:42:10 UTC (rev 725774)
@@ -1,31 +0,0 @@
-# Maintainer: Alad Wenter 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: peter feigl 
-
-pkgname=mit-scheme
-pkgver=10.1.10
-pkgrel=2
-pkgdesc='MIT/GNU Scheme'
-url='https://www.gnu.org/software/mit-scheme/'
-arch=('x86_64')
-license=('GPL')
-depends=('ncurses' 'zlib')
-optdepends=('openssl: support for openssl')
-source=("https://ftp.gnu.org/gnu/mit-scheme/stable.pkg/$pkgver/$pkgname-$pkgver-x86-64.tar.gz;
-
"https://ftp.gnu.org/gnu/mit-scheme/stable.pkg/$pkgver/$pkgname-$pkgver-x86-64.tar.gz.sig;)
-validpgpkeys=('424626C56C4AA9DB11194C07E3AA82D81B352C01') # Chris Hanson 

-sha256sums=('4f14dd754703736c1843a8c709cd704a24e92b02d6021652d57ae5d6a2d992e6'
-'SKIP')
-
-build() {
-cd "$pkgname-$pkgver"/src
-./configure --prefix=/usr \
---with-x \
---enable-native-code
-make
-}
-
-package() {
-cd "$pkgname-$pkgver"/src
-make DESTDIR="$pkgdir" install
-}

Copied: mit-scheme/repos/community-x86_64/PKGBUILD (from rev 725773, 
mit-scheme/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-17 23:42:10 UTC (rev 725774)
@@ -0,0 +1,42 @@
+# Maintainer: Alad Wenter 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: peter feigl 
+
+pkgname=mit-scheme
+pkgver=10.1.10
+pkgrel=3
+pkgdesc='MIT/GNU Scheme'
+url='https://www.gnu.org/software/mit-scheme/'
+arch=('x86_64')
+license=('GPL')
+depends=('ncurses' 'zlib' 'libx11')
+optdepends=('openssl: support for openssl')
+provides=('x11-shim.so')
+source=("https://ftp.gnu.org/gnu/mit-scheme/stable.pkg/$pkgver/$pkgname-$pkgver-x86-64.tar.gz;
+
"https://ftp.gnu.org/gnu/mit-scheme/stable.pkg/$pkgver/$pkgname-$pkgver-x86-64.tar.gz.sig;)
+validpgpkeys=('424626C56C4AA9DB11194C07E3AA82D81B352C01') # Chris Hanson 

+sha256sums=('4f14dd754703736c1843a8c709cd704a24e92b02d6021652d57ae5d6a2d992e6'
+'SKIP')
+
+build() {
+cd "$pkgname-$pkgver"/src
+./configure --prefix=/usr \
+--with-x \
+--enable-x11 \
+--enable-native-code
+make
+cd ../doc
+./configure --prefix=/usr \
+--disable-pdf \
+--disable-html
+make
+}
+
+package() {
+cd "$pkgname-$pkgver"
+install -Dm644 "etc/xscheme.el" 
"$pkgdir/usr/share/emacs/site-lisp/xscheme.el"
+cd src
+make DESTDIR="$pkgdir" install
+cd ../doc
+make DESTDIR="$pkgdir" install-info install-man
+}


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

2020-10-17 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, October 17, 2020 @ 23:36:46
  Author: svenstaro
Revision: 725772

archrelease: copy trunk to community-x86_64

Added:
  hyperfine/repos/community-x86_64/PKGBUILD
(from rev 725771, hyperfine/trunk/PKGBUILD)
Deleted:
  hyperfine/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-17 23:36:40 UTC (rev 725771)
+++ PKGBUILD2020-10-17 23:36:46 UTC (rev 725772)
@@ -1,37 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: cauebs 
-pkgname=hyperfine
-pkgver=1.10.0
-pkgrel=2
-pkgdesc="A command-line benchmarking tool"
-url="https://github.com/sharkdp/hyperfine;
-arch=("x86_64")
-license=("APACHE" "MIT")
-depends=(gcc-libs)
-makedepends=(cargo)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/sharkdp/$pkgname/archive/v$pkgver.tar.gz;)
-sha256sums=('b949d6c1a78e9c1c5a7bb6c241fcd51d6faf00bba5719cc312f57b5b301cc854')
-
-build() {
-cd "$srcdir/$pkgname-$pkgver"
-cargo build --release --locked
-}
-
-check() {
-cd "$srcdir/$pkgname-$pkgver"
-cargo test --release --locked
-}
-
-package() {
-cd "$srcdir/$pkgname-$pkgver"
-install -Dm644 "LICENSE-APACHE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
-install -Dm644 "LICENSE-MIT" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
-install -Dm755 "target/release/$pkgname" "$pkgdir/usr/bin/$pkgname"
-
-install -Dm644 target/release/build/hyperfine-*/out/hyperfine.bash 
"$pkgdir/usr/share/bash-completion/completions/hyperfine"
-install -Dm644 target/release/build/hyperfine-*/out/hyperfine.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/hyperfine.fish"
-install -Dm644 target/release/build/hyperfine-*/out/_hyperfine 
"$pkgdir/usr/share/zsh/site-functions/_hyperfine"
-
-install -Dm644 doc/hyperfine.1 "$pkgdir/usr/share/man/man1/hyperfine.1"
-gzip --best "$pkgdir/usr/share/man/man1/hyperfine.1"
-}

Copied: hyperfine/repos/community-x86_64/PKGBUILD (from rev 725771, 
hyperfine/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-17 23:36:46 UTC (rev 725772)
@@ -0,0 +1,37 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: cauebs 
+pkgname=hyperfine
+pkgver=1.11.0
+pkgrel=1
+pkgdesc="A command-line benchmarking tool"
+url="https://github.com/sharkdp/hyperfine;
+arch=("x86_64")
+license=("APACHE" "MIT")
+depends=(gcc-libs)
+makedepends=(cargo)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/sharkdp/$pkgname/archive/v$pkgver.tar.gz;)
+sha256sums=('740f4826f0933c693fb281e3542d312da9ccc8fd68cebe883359a8085ddd77e9')
+
+build() {
+cd "$srcdir/$pkgname-$pkgver"
+cargo build --release --locked
+}
+
+check() {
+cd "$srcdir/$pkgname-$pkgver"
+cargo test --release --locked
+}
+
+package() {
+cd "$srcdir/$pkgname-$pkgver"
+install -Dm644 "LICENSE-APACHE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
+install -Dm644 "LICENSE-MIT" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
+install -Dm755 "target/release/$pkgname" "$pkgdir/usr/bin/$pkgname"
+
+install -Dm644 target/release/build/hyperfine-*/out/hyperfine.bash 
"$pkgdir/usr/share/bash-completion/completions/hyperfine"
+install -Dm644 target/release/build/hyperfine-*/out/hyperfine.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/hyperfine.fish"
+install -Dm644 target/release/build/hyperfine-*/out/_hyperfine 
"$pkgdir/usr/share/zsh/site-functions/_hyperfine"
+
+install -Dm644 doc/hyperfine.1 "$pkgdir/usr/share/man/man1/hyperfine.1"
+gzip --best "$pkgdir/usr/share/man/man1/hyperfine.1"
+}


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

2020-10-17 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, October 17, 2020 @ 23:36:40
  Author: svenstaro
Revision: 725771

upgpkg: hyperfine 1.11.0-1

Modified:
  hyperfine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-17 23:34:41 UTC (rev 725770)
+++ PKGBUILD2020-10-17 23:36:40 UTC (rev 725771)
@@ -1,8 +1,8 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: cauebs 
 pkgname=hyperfine
-pkgver=1.10.0
-pkgrel=2
+pkgver=1.11.0
+pkgrel=1
 pkgdesc="A command-line benchmarking tool"
 url="https://github.com/sharkdp/hyperfine;
 arch=("x86_64")
@@ -10,7 +10,7 @@
 depends=(gcc-libs)
 makedepends=(cargo)
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/sharkdp/$pkgname/archive/v$pkgver.tar.gz;)
-sha256sums=('b949d6c1a78e9c1c5a7bb6c241fcd51d6faf00bba5719cc312f57b5b301cc854')
+sha256sums=('740f4826f0933c693fb281e3542d312da9ccc8fd68cebe883359a8085ddd77e9')
 
 build() {
 cd "$srcdir/$pkgname-$pkgver"


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

2020-10-17 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, October 17, 2020 @ 23:33:05
  Author: svenstaro
Revision: 725766

archrelease: copy trunk to community-staging-x86_64

Added:
  mayavi/repos/community-staging-x86_64/
  mayavi/repos/community-staging-x86_64/PKGBUILD
(from rev 725765, mayavi/trunk/PKGBUILD)
  mayavi/repos/community-staging-x86_64/mayavi.csh
(from rev 725765, mayavi/trunk/mayavi.csh)
  mayavi/repos/community-staging-x86_64/mayavi.sh
(from rev 725765, mayavi/trunk/mayavi.sh)

+
 PKGBUILD   |   98 +++
 mayavi.csh |1 
 mayavi.sh  |1 
 3 files changed, 100 insertions(+)

Copied: mayavi/repos/community-staging-x86_64/PKGBUILD (from rev 725765, 
mayavi/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-17 23:33:05 UTC (rev 725766)
@@ -0,0 +1,98 @@
+# Maintainer: Andrzej Giniewicz 
+# Contributor: Jingbei Li 
+
+pkgname=mayavi
+pkgver=4.7.2
+pkgrel=1
+pkgdesc="A 3-dimensional visualizer of scientific data"
+arch=('x86_64')
+url="https://github.com/enthought/mayavi;
+license=('BSD')
+depends=('vtk' 'python-envisage' 'python-traitsui' 'python-configobj' 
'python-pyqt5' 'pdal' 'unixodbc' 'pugixml' 'openmpi' 'ffmpeg' 'python-numpy')
+makedepends=('python-setuptools' 'python-sphinx' 'python-twisted' 
'xorg-server-xvfb' 'qt5-svg' 'glew' 'proj')
+replaces=('python-mayavi')
+provides=('python-mayavi')
+options=(!emptydirs)
+
+source=("$pkgname-$pkgver.tar.gz::https://github.com/enthought/mayavi/archive/${pkgver}.tar.gz;
+"mayavi.sh" "mayavi.csh")
+sha256sums=('c8addff9c87c7b9f91d32205c99d0af75cf480cbb2585e69149ab6b9337deb2e'
+'abb34e78105abf15197bdd05c02ba3b080755d46aa81e4cfaeaba4994d05effe'
+'034b36bf9d279d926c39c858bf18992e34de880725d778f8435b293259f4775d')
+
+prepare() {
+  cd "$srcdir"/mayavi-$pkgver
+
+  # fix wrong-file-end-of-line-encoding
+  for file in *.txt examples/mayavi/data/room_vis.wrl examples/tvtk/dscene.py \
+examples/mayavi/interactive/wx_mayavi_embed*.py ; do
+sed "s|\r||g" $file > $file.new && \
+touch -r $file $file.new && \
+mv $file.new $file
+  done
+
+  # file-not-utf8
+  for file in *.txt docs/*.txt; do
+iconv -f ISO-8859-1 -t UTF-8 -o $file.new $file && \
+touch -r $file $file.new && \
+mv $file.new $file
+  done
+
+  # remove exec permission
+  find examples -type f -exec chmod 0644 {} ";"
+  chmod 0644 mayavi/tests/data/cellsnd.ascii.inp
+
+  # set path so autodoc can find just built modules
+  echo "import sys" >> docs/source/mayavi/conf.py
+  echo "sys.path.append('$srcdir/mayavi-$pkgver/build/lib.linux-$CARCH-3.8/')" 
>> docs/source/mayavi/conf.py
+}
+
+build() {
+  cd "$srcdir"/mayavi-$pkgver
+
+  rm -rf build
+  mkdir build
+  mkdir -p 
build/lib.linux-$CARCH-3.8/{tvtk/plugins/scene,mayavi/preferences,mayavi/core}
+  ln -s "$srcdir"/enthought-mayavi-${_githubtag}/tvtk/tvtk_classes.zip \
+build/lib.linux-$CARCH-3.8/tvtk/tvtk_classes.zip
+  ln -s 
"$srcdir"/enthought-mayavi-${_githubtag}/mayavi/preferences/preferences.ini \
+build/lib.linux-$CARCH-3.8/mayavi/preferences/preferences.ini
+  ln -s 
"$srcdir"/enthought-mayavi-${_githubtag}/tvtk/plugins/scene/preferences.ini \
+build/lib.linux-$CARCH-3.8/tvtk/plugins/scene/preferences.ini
+
+  export ETS_TOOLKIT="qt"
+  # now this is ugly, but docs do not build without X. We setup X according to:
+  # 
http://docs.enthought.com/mayavi/mayavi/tips.html#rendering-using-the-virtual-framebuffer
+  xvfb-run python setup.py build
+
+  rm build/lib.linux-$CARCH-3.8/tvtk/tvtk_classes.zip
+  rm build/lib.linux-$CARCH-3.8/mayavi/preferences/preferences.ini
+  rm build/lib.linux-$CARCH-3.8/tvtk/plugins/scene/preferences.ini
+}
+
+package() {
+  cd "$srcdir"/mayavi-$pkgver
+
+  python setup.py install --skip-build --root="$pkgdir"/ --optimize=1
+
+  # remove useless files
+  rm -f "${pkgdir}"/usr/lib/python3.8/site-packages/tvtk/setup.py*
+  find "${pkgdir}" -name \.buildinfo -type f -print | xargs rm -f -
+
+  # non-executable-script
+  chmod +x "${pkgdir}"/usr/lib/python3.8/site-packages/mayavi/tests/runtests.py
+
+  # install manpage
+  mkdir -p "${pkgdir}"/usr/share/man/man1
+  cp -p docs/mayavi2.man "${pkgdir}"/usr/share/man/man1/mayavi2.1
+
+  # Force Qt
+  install -d "${pkgdir}"/etc/profile.d
+  install -Dm644 "${srcdir}"/mayavi.sh "${pkgdir}"/etc/profile.d/mayavi.sh
+  install -Dm644 "${srcdir}"/mayavi.csh "${pkgdir}"/etc/profile.d/mayavi.csh
+
+  install -D LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  # Cannot find vtk
+  sed -i '/vtk/d' 
"$pkgdir"/usr/lib/python3.8/site-packages/mayavi-${pkgver}-py3.8.egg-info/requires.txt
+}

Copied: mayavi/repos/community-staging-x86_64/mayavi.csh (from rev 725765, 
mayavi/trunk/mayavi.csh)
===
--- community-staging-x86_64/mayavi.csh 

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

2020-10-17 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, October 17, 2020 @ 23:32:53
  Author: svenstaro
Revision: 725765

upgpkg: mayavi 4.7.2-1

Modified:
  mayavi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-17 23:24:59 UTC (rev 725764)
+++ PKGBUILD2020-10-17 23:32:53 UTC (rev 725765)
@@ -2,8 +2,8 @@
 # Contributor: Jingbei Li 
 
 pkgname=mayavi
-pkgver=4.7.1
-pkgrel=4
+pkgver=4.7.2
+pkgrel=1
 pkgdesc="A 3-dimensional visualizer of scientific data"
 arch=('x86_64')
 url="https://github.com/enthought/mayavi;
@@ -16,7 +16,7 @@
 
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/enthought/mayavi/archive/${pkgver}.tar.gz;
 "mayavi.sh" "mayavi.csh")
-sha256sums=('d679daf930751f0c531938f4664a51ac4bed994a807488ca5ea5a8c15fabf184'
+sha256sums=('c8addff9c87c7b9f91d32205c99d0af75cf480cbb2585e69149ab6b9337deb2e'
 'abb34e78105abf15197bdd05c02ba3b080755d46aa81e4cfaeaba4994d05effe'
 '034b36bf9d279d926c39c858bf18992e34de880725d778f8435b293259f4775d')
 


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Saturday, October 17, 2020 @ 23:24:59
  Author: felixonmars
Revision: 725764

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hspec-wai-json/repos/community-staging-x86_64/PKGBUILD (from 
rev 725763, haskell-hspec-wai-json/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-17 23:24:59 UTC (rev 725764)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hspec-wai-json
+pkgname=haskell-hspec-wai-json
+pkgver=0.11.0
+pkgrel=13
+pkgdesc="Testing JSON APIs with hspec-wai"
+url="https://github.com/hspec/hspec-wai;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-qq' 
'haskell-case-insensitive'
+ 'haskell-hspec-wai')
+makedepends=('ghc' 'haskell-hspec')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('db14622fd95bfb9f52a48da4e8fa345c9fdd7014aeec1cb10d75573738f8020f36d97f7085373b9b2e865a9874f377d5532e29c1f31e27f41bf5c6c89fe68546')
+
+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-hspec-wai-json/trunk (PKGBUILD)

2020-10-17 Thread Felix Yan via arch-commits
Date: Saturday, October 17, 2020 @ 23:24:44
  Author: felixonmars
Revision: 725763

upgpkg: haskell-hspec-wai-json 0.11.0-13: rebuild with th-abstraction 0.4.0.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-17 23:23:41 UTC (rev 725762)
+++ PKGBUILD2020-10-17 23:24:44 UTC (rev 725763)
@@ -4,7 +4,7 @@
 _hkgname=hspec-wai-json
 pkgname=haskell-hspec-wai-json
 pkgver=0.11.0
-pkgrel=12
+pkgrel=13
 pkgdesc="Testing JSON APIs with hspec-wai"
 url="https://github.com/hspec/hspec-wai;
 license=("MIT")


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Saturday, October 17, 2020 @ 23:23:25
  Author: felixonmars
Revision: 725761

upgpkg: haskell-hspec-wai 0.11.0-11: rebuild with th-abstraction 0.4.0.0

Modified:
  haskell-hspec-wai/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-17 23:23:18 UTC (rev 725760)
+++ PKGBUILD2020-10-17 23:23:25 UTC (rev 725761)
@@ -4,7 +4,7 @@
 _hkgname=hspec-wai
 pkgname=haskell-hspec-wai
 pkgver=0.11.0
-pkgrel=10
+pkgrel=11
 pkgdesc="Experimental Hspec support for testing WAI applications"
 url="https://github.com/hspec/hspec-wai;
 license=("MIT")


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Saturday, October 17, 2020 @ 23:23:41
  Author: felixonmars
Revision: 725762

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hspec-wai/repos/community-staging-x86_64/PKGBUILD (from rev 
725761, haskell-hspec-wai/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-17 23:23:41 UTC (rev 725762)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hspec-wai
+pkgname=haskell-hspec-wai
+pkgver=0.11.0
+pkgrel=11
+pkgdesc="Experimental Hspec support for testing WAI applications"
+url="https://github.com/hspec/hspec-wai;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-base-compat' 
'haskell-case-insensitive'
+ 'haskell-hspec' 'haskell-hspec-core' 'haskell-hspec-expectations' 
'haskell-http-types'
+ 'haskell-wai' 'haskell-wai-extra')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('4b451744eae139787f9156cd6a59589e8c485ce1d98f49847344fb984eb3d7b6d265537feb4ad5ca57d439e2460b74cdd2ba16c7d657fd0c10575af354930ffc')
+
+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 deepin-movie/trunk (PKGBUILD)

2020-10-17 Thread Felix Yan via arch-commits
Date: Saturday, October 17, 2020 @ 23:23:01
  Author: felixonmars
Revision: 725759

upgpkg: deepin-movie 1:5.7.6.50-1

Modified:
  deepin-movie/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-17 23:22:23 UTC (rev 725758)
+++ PKGBUILD2020-10-17 23:23:01 UTC (rev 725759)
@@ -2,7 +2,7 @@
 
 pkgname=deepin-movie
 epoch=1
-pkgver=5.7.6.49
+pkgver=5.7.6.50
 pkgrel=1
 pkgdesc='Movie player based on QtAV'
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('cmake' 'ninja' 'qt5-tools')
 groups=('deepin-extra')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-movie-reborn/archive/$pkgver.tar.gz;)
-sha512sums=('d776ebe5162fff1bf603d0b4acfb8a5bbaa75311fef4a3f74c4d3abe8f18ee257035ac3f0de5d6d23e404f2281b2487385989e3e23b4d9ce61fe285726116a06')
+sha512sums=('8ea169c3cbd603c64238fc1aa78c0078bbf609043e697cec73af8e7839ef5032948b41e79559d990c63985db6d13633c313aa3e3d67997cd21443520ce26')
 
 prepare() {
   cd deepin-movie-reborn-$pkgver


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

2020-10-17 Thread Felix Yan via arch-commits
Date: Saturday, October 17, 2020 @ 23:23:18
  Author: felixonmars
Revision: 725760

archrelease: copy trunk to community-x86_64

Added:
  deepin-movie/repos/community-x86_64/PKGBUILD
(from rev 725759, deepin-movie/trunk/PKGBUILD)
Deleted:
  deepin-movie/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-17 23:23:01 UTC (rev 725759)
+++ PKGBUILD2020-10-17 23:23:18 UTC (rev 725760)
@@ -1,31 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=deepin-movie
-epoch=1
-pkgver=5.7.6.49
-pkgrel=1
-pkgdesc='Movie player based on QtAV'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/deepin-movie-reborn;
-license=('GPL3')
-depends=('deepin-qt5integration' 'mpv' 'ffmpegthumbnailer')
-makedepends=('cmake' 'ninja' 'qt5-tools')
-groups=('deepin-extra')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-movie-reborn/archive/$pkgver.tar.gz;)
-sha512sums=('d776ebe5162fff1bf603d0b4acfb8a5bbaa75311fef4a3f74c4d3abe8f18ee257035ac3f0de5d6d23e404f2281b2487385989e3e23b4d9ce61fe285726116a06')
-
-prepare() {
-  cd deepin-movie-reborn-$pkgver
-  sed -i '/#include /a #include ' 
src/widgets/{tip,toolbutton}.h
-}
-
-build() {
-  cd deepin-movie-reborn-$pkgver
-  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib 
-DCMAKE_BUILD_TYPE=Release .
-  ninja
-}
-
-package() {
-  cd deepin-movie-reborn-$pkgver
-  DESTDIR="$pkgdir" ninja install
-}

Copied: deepin-movie/repos/community-x86_64/PKGBUILD (from rev 725759, 
deepin-movie/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-17 23:23:18 UTC (rev 725760)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-movie
+epoch=1
+pkgver=5.7.6.50
+pkgrel=1
+pkgdesc='Movie player based on QtAV'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-movie-reborn;
+license=('GPL3')
+depends=('deepin-qt5integration' 'mpv' 'ffmpegthumbnailer')
+makedepends=('cmake' 'ninja' 'qt5-tools')
+groups=('deepin-extra')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-movie-reborn/archive/$pkgver.tar.gz;)
+sha512sums=('8ea169c3cbd603c64238fc1aa78c0078bbf609043e697cec73af8e7839ef5032948b41e79559d990c63985db6d13633c313aa3e3d67997cd21443520ce26')
+
+prepare() {
+  cd deepin-movie-reborn-$pkgver
+  sed -i '/#include /a #include ' 
src/widgets/{tip,toolbutton}.h
+}
+
+build() {
+  cd deepin-movie-reborn-$pkgver
+  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib 
-DCMAKE_BUILD_TYPE=Release .
+  ninja
+}
+
+package() {
+  cd deepin-movie-reborn-$pkgver
+  DESTDIR="$pkgdir" ninja install
+}


  1   2   3   4   5   6   7   >