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

2020-09-06 Thread Andreas Radke via arch-commits
Date: Monday, September 7, 2020 @ 05:28:20
  Author: andyrtr
Revision: 395535

archrelease: copy trunk to testing-x86_64

Added:
  bluez/repos/testing-x86_64/
  bluez/repos/testing-x86_64/PKGBUILD
(from rev 395534, bluez/trunk/PKGBUILD)
  bluez/repos/testing-x86_64/bluetooth.modprobe
(from rev 395534, bluez/trunk/bluetooth.modprobe)

+
 PKGBUILD   |  155 +++
 bluetooth.modprobe |3 
 2 files changed, 158 insertions(+)

Copied: bluez/repos/testing-x86_64/PKGBUILD (from rev 395534, 
bluez/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-09-07 05:28:20 UTC (rev 395535)
@@ -0,0 +1,155 @@
+# Maintainer: Tom Gundersen 
+# Contributor: Andrea Scarpino 
+# Contributor: Geoffroy Carrier 
+
+pkgbase=bluez
+pkgname=('bluez' 'bluez-utils' 'bluez-libs' 'bluez-cups' 'bluez-hid2hci' 
'bluez-plugins')
+pkgver=5.55
+pkgrel=1
+url="http://www.bluez.org/;
+arch=('x86_64')
+license=('GPL2')
+makedepends=('dbus' 'libical' 'systemd' 'alsa-lib' 'json-c' 'ell')
+source=(https://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.{xz,sign}
+bluetooth.modprobe)
+# see https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc
+sha256sums=('8863717113c4897e2ad3271fc808ea245319e6fd95eed2e934fae8e0894e9b88'
+'SKIP'
+'46c021be659c9a1c4e55afd04df0c059af1f3d98a96338236412e449bf7477b4')
+validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659') # Marcel Holtmann 

+
+#prepare() {
+#  cd "${pkgname}"-${pkgver}
+#}
+
+build() {
+  cd "${pkgname}"-${pkgver}
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --with-dbusconfdir=/usr/share \
+  --enable-btpclient \
+  --enable-midi \
+  --enable-sixaxis \
+  --enable-mesh \
+  --enable-hid2hci \
+  --enable-experimental \
+  --enable-library # this is deprecated
+  make
+}
+
+check() {
+  cd "$pkgname"-$pkgver
+  # tests segfault and hang
+#  make check || /bin/true # https://bugzilla.kernel.org/show_bug.cgi?id=196621
+}
+
+
+package_bluez() {
+  pkgdesc="Daemons for the bluetooth protocol stack"
+  depends=('libical' 'dbus' 'glib2' 'alsa-lib' 'json-c')
+  backup=('etc/bluetooth/main.conf')
+  conflicts=('obexd-client' 'obexd-server')
+
+  cd "${pkgbase}"-${pkgver}
+  make DESTDIR=${pkgdir} \
+   install-pkglibexecPROGRAMS \
+   install-dbussessionbusDATA \
+   install-systemdsystemunitDATA \
+   install-systemduserunitDATA \
+   install-dbussystembusDATA \
+   install-dbusDATA \
+   install-man8
+
+  # ship upstream main config file
+  install -dm755 "${pkgdir}"/etc/bluetooth
+  install -Dm644 "${srcdir}"/"${pkgbase}"-${pkgver}/src/main.conf 
"${pkgdir}"/etc/bluetooth/main.conf
+
+  # add basic documention
+  install -dm755 "${pkgdir}"/usr/share/doc/"${pkgbase}"/dbus-apis
+  cp -a doc/*.txt "${pkgdir}"/usr/share/doc/"${pkgbase}"/dbus-apis/
+  # fix module loading errors
+  install -dm755 "${pkgdir}"/usr/lib/modprobe.d
+  install -Dm644 "${srcdir}"/bluetooth.modprobe 
"${pkgdir}"/usr/lib/modprobe.d/bluetooth-usb.conf
+  # load module at system start required by some functions
+  # https://bugzilla.kernel.org/show_bug.cgi?id=196621
+  install -dm755 "$pkgdir"/usr/lib/modules-load.d
+  echo "crypto_user" > "$pkgdir"/usr/lib/modules-load.d/bluez.conf
+  
+  # fix obex file transfer - https://bugs.archlinux.org/task/45816
+  ln -fs /usr/lib/systemd/user/obex.service 
"${pkgdir}"/usr/lib/systemd/user/dbus-org.bluez.obex.service
+}
+
+package_bluez-utils() {
+  pkgdesc="Development and debugging utilities for the bluetooth protocol 
stack"
+  depends=('dbus' 'systemd' 'glib2')
+  optdepends=('ell: for btpclient')
+  conflicts=('bluez-hcidump')
+  provides=('bluez-hcidump')
+  replaces=('bluez-hcidump' 'bluez<=4.101')
+
+  cd "${pkgbase}"-${pkgver}
+  make DESTDIR="${pkgdir}" \
+   install-binPROGRAMS \
+   install-dist_zshcompletionDATA \
+   install-man1
+
+  # add missing tools FS#41132, FS#41687, FS#42716
+  for files in `find tools/ -type f -perm -755`; do
+filename=$(basename $files)
+install -Dm755 "${srcdir}"/"${pkgbase}"-${pkgver}/tools/$filename 
"${pkgdir}"/usr/bin/$filename
+  done
+  
+  # libbluetooth.so* are part of libLTLIBRARIES and binPROGRAMS targets
+  #make DESTDIR=${pkgdir} uninstall-libLTLIBRARIES
+  #rmdir ${pkgdir}/usr/lib
+  rm -rf "${pkgdir}"/usr/lib
+  
+  # move the hid2hci man page out
+  mv "${pkgdir}"/usr/share/man/man1/hid2hci.1 "${srcdir}"/
+}
+
+package_bluez-libs() {
+  pkgdesc="Deprecated libraries for the bluetooth protocol stack"
+  depends=('glibc')
+  license=('LGPL2.1')
+
+  cd "${pkgbase}"-${pkgver}
+  make DESTDIR="${pkgdir}" \
+   

[arch-commits] Commit in bluez/trunk (2 files)

2020-09-06 Thread Andreas Radke via arch-commits
Date: Monday, September 7, 2020 @ 05:28:07
  Author: andyrtr
Revision: 395534

upgpkg: bluez 5.55-1: upstream update 5.55

Modified:
  bluez/trunk/PKGBUILD
Deleted:
  bluez/trunk/refresh_adv_manager_for_non-LE_devices.diff

-+
 PKGBUILD|   20 --
 refresh_adv_manager_for_non-LE_devices.diff |   52 --
 2 files changed, 9 insertions(+), 63 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-07 04:18:21 UTC (rev 395533)
+++ PKGBUILD2020-09-07 05:28:07 UTC (rev 395534)
@@ -4,26 +4,23 @@
 
 pkgbase=bluez
 pkgname=('bluez' 'bluez-utils' 'bluez-libs' 'bluez-cups' 'bluez-hid2hci' 
'bluez-plugins')
-pkgver=5.54
-pkgrel=2
+pkgver=5.55
+pkgrel=1
 url="http://www.bluez.org/;
 arch=('x86_64')
 license=('GPL2')
 makedepends=('dbus' 'libical' 'systemd' 'alsa-lib' 'json-c' 'ell')
 
source=(https://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.{xz,sign}
-bluetooth.modprobe
-refresh_adv_manager_for_non-LE_devices.diff)
+bluetooth.modprobe)
 # see https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc
-sha256sums=('68cdab9e63e8832b130d5979dc8c96fdb087b31278f342874d992af3e56656dc'
+sha256sums=('8863717113c4897e2ad3271fc808ea245319e6fd95eed2e934fae8e0894e9b88'
 'SKIP'
-'46c021be659c9a1c4e55afd04df0c059af1f3d98a96338236412e449bf7477b4'
-'ae195834cdc9d3d1961ae3c49da6381c820883a5af580e61aebed05a3e911d48')
+'46c021be659c9a1c4e55afd04df0c059af1f3d98a96338236412e449bf7477b4')
 validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659') # Marcel Holtmann 

 
-prepare() {
-  cd "${pkgname}"-${pkgver}
-  patch -Np1 -i ../refresh_adv_manager_for_non-LE_devices.diff
-}
+#prepare() {
+#  cd "${pkgname}"-${pkgver}
+#}
 
 build() {
   cd "${pkgname}"-${pkgver}
@@ -38,6 +35,7 @@
   --enable-midi \
   --enable-sixaxis \
   --enable-mesh \
+  --enable-hid2hci \
   --enable-experimental \
   --enable-library # this is deprecated
   make

Deleted: refresh_adv_manager_for_non-LE_devices.diff
===
--- refresh_adv_manager_for_non-LE_devices.diff 2020-09-07 04:18:21 UTC (rev 
395533)
+++ refresh_adv_manager_for_non-LE_devices.diff 2020-09-07 05:28:07 UTC (rev 
395534)
@@ -1,52 +0,0 @@
-From 2c3bba7b38be03834162e34069156f1fd49f0528 Mon Sep 17 00:00:00 2001
-From: "antoine.belv...@laposte.net" 
-Date: Tue, 27 Mar 2018 20:30:26 +0200
-Subject: adapter: Don't refresh adv_manager for non-LE devices
-
-btd_adv_manager_refresh is called upon MGMT_SETTING_DISCOVERABLE setting change
-but as only LE adapters have an adv_manager, this leads to segmentation fault
-for non-LE devices:
-
-0  btd_adv_manager_refresh (manager=0x0) at src/advertising.c:1176
-1  0x556fe45fcb02 in settings_changed (settings=,
-adapter=0x556fe53f7c70) at src/adapter.c:543
-2  new_settings_callback (index=, length=,
-param=, user_data=0x556fe53f7c70) at src/adapter.c:573
-3  0x556fe462c278 in request_complete (mgmt=mgmt@entry=0x556fe53f20c0,
-status=, opcode=opcode@entry=7, index=index@entry=0,
-length=length@entry=4, param=0x556fe53eb5f9) at src/shared/mgmt.c:261
-4  0x556fe462cd9d in can_read_data (io=,
-user_data=0x556fe53f20c0) at src/shared/mgmt.c:353
-5  0x556fe46396e3 in watch_callback (channel=,
-cond=, user_data=)
-at src/shared/io-glib.c:170
-6  0x7fe351c980e5 in g_main_context_dispatch ()
-   from /usr/lib64/libglib-2.0.so.0
-7  0x7fe351c984b0 in ?? () from /usr/lib64/libglib-2.0.so.0
-8  0x7fe351c987c2 in g_main_loop_run () from /usr/lib64/libglib-2.0.so.0
-9  0x556fe45abc75 in main (argc=, argv=)
-at src/main.c:770
-
-This commit prevents the call to btd_adv_manager_refresh for non-LE devices.

- src/adapter.c | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/src/adapter.c b/src/adapter.c
-index 6b9222b..daccfdc 100644
 a/src/adapter.c
-+++ b/src/adapter.c
-@@ -540,7 +540,8 @@ static void settings_changed(struct btd_adapter *adapter, 
uint32_t settings)
-   g_dbus_emit_property_changed(dbus_conn, adapter->path,
-   ADAPTER_INTERFACE, "Discoverable");
-   store_adapter_info(adapter);
--  btd_adv_manager_refresh(adapter->adv_manager);
-+  if (adapter->supported_settings & MGMT_SETTING_LE)
-+  btd_adv_manager_refresh(adapter->adv_manager);
-   }
- 
-   if (changed_mask & MGMT_SETTING_BONDABLE) {
--- 
-cgit v1.1
-
-


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

2020-09-06 Thread Andreas Radke via arch-commits
Date: Monday, September 7, 2020 @ 04:18:21
  Author: andyrtr
Revision: 395533

archrelease: copy trunk to testing-x86_64

Added:
  unixodbc/repos/testing-x86_64/
  unixodbc/repos/testing-x86_64/PKGBUILD
(from rev 395532, unixodbc/trunk/PKGBUILD)

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

Copied: unixodbc/repos/testing-x86_64/PKGBUILD (from rev 395532, 
unixodbc/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-09-07 04:18:21 UTC (rev 395533)
@@ -0,0 +1,32 @@
+# Maintainer: AndyRTR 
+# Contributor: Judd Vinet 
+# Contributor: Tom Newsom 
+
+pkgname=unixodbc
+pkgver=2.3.9
+pkgrel=1
+pkgdesc="ODBC is an open specification for providing application developers 
with a predictable API with which to access Data Sources"
+arch=('x86_64')
+license=('GPL2' 'LGPL2.1')
+url="http://www.unixodbc.org/;
+backup=('etc/odbc.ini' 'etc/odbcinst.ini')
+depends=('readline' 'libltdl')
+source=(ftp://ftp.unixodbc.org/pub/unixODBC/unixODBC-$pkgver.tar.gz)
+sha256sums=('52833eac3d681c8b0c9a5a65f2ebd745b3a964f208fc748f977e44015a31b207')
+
+build() {
+cd unixODBC-${pkgver}
+./configure --prefix=/usr --sysconfdir=/etc
+make
+}
+
+check() {
+cd unixODBC-${pkgver}
+make -k check
+}
+
+package() {
+cd unixODBC-${pkgver}
+make DESTDIR="${pkgdir}" install
+touch "$pkgdir"/etc/{odbc,odbcinst}.ini
+}


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

2020-09-06 Thread Andreas Radke via arch-commits
Date: Monday, September 7, 2020 @ 04:18:09
  Author: andyrtr
Revision: 395532

upgpkg: unixodbc 2.3.9-1: upstream update 2.3.9

Modified:
  unixodbc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 21:32:00 UTC (rev 395531)
+++ PKGBUILD2020-09-07 04:18:09 UTC (rev 395532)
@@ -3,7 +3,7 @@
 # Contributor: Tom Newsom 
 
 pkgname=unixodbc
-pkgver=2.3.8
+pkgver=2.3.9
 pkgrel=1
 pkgdesc="ODBC is an open specification for providing application developers 
with a predictable API with which to access Data Sources"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 backup=('etc/odbc.ini' 'etc/odbcinst.ini')
 depends=('readline' 'libltdl')
 source=(ftp://ftp.unixodbc.org/pub/unixODBC/unixODBC-$pkgver.tar.gz)
-sha256sums=('85372b9cd2cdfea3983c3958ab11ca1513ea091a263d82105e5da043379e48a5')
+sha256sums=('52833eac3d681c8b0c9a5a65f2ebd745b3a964f208fc748f977e44015a31b207')
 
 build() {
 cd unixODBC-${pkgver}


[arch-commits] Commit in elasticsearch/repos/community-testing-x86_64 (20 files)

2020-09-06 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, September 7, 2020 @ 03:50:06
  Author: svenstaro
Revision: 699391

archrelease: copy trunk to community-testing-x86_64

Added:
  elasticsearch/repos/community-testing-x86_64/PKGBUILD
(from rev 699390, elasticsearch/trunk/PKGBUILD)
  elasticsearch/repos/community-testing-x86_64/elasticsearch-keystore.service
(from rev 699390, elasticsearch/trunk/elasticsearch-keystore.service)
  elasticsearch/repos/community-testing-x86_64/elasticsearch-keystore@.service
(from rev 699390, elasticsearch/trunk/elasticsearch-keystore@.service)
  elasticsearch/repos/community-testing-x86_64/elasticsearch-sysctl.conf
(from rev 699390, elasticsearch/trunk/elasticsearch-sysctl.conf)
  elasticsearch/repos/community-testing-x86_64/elasticsearch-tmpfile.conf
(from rev 699390, elasticsearch/trunk/elasticsearch-tmpfile.conf)
  elasticsearch/repos/community-testing-x86_64/elasticsearch-user.conf
(from rev 699390, elasticsearch/trunk/elasticsearch-user.conf)
  elasticsearch/repos/community-testing-x86_64/elasticsearch.default
(from rev 699390, elasticsearch/trunk/elasticsearch.default)
  elasticsearch/repos/community-testing-x86_64/elasticsearch.service
(from rev 699390, elasticsearch/trunk/elasticsearch.service)
  elasticsearch/repos/community-testing-x86_64/elasticsearch@.service
(from rev 699390, elasticsearch/trunk/elasticsearch@.service)
  
elasticsearch/repos/community-testing-x86_64/remove-systemd-distribution-check.patch
(from rev 699390, 
elasticsearch/trunk/remove-systemd-distribution-check.patch)
Deleted:
  elasticsearch/repos/community-testing-x86_64/PKGBUILD
  elasticsearch/repos/community-testing-x86_64/elasticsearch-keystore.service
  elasticsearch/repos/community-testing-x86_64/elasticsearch-keystore@.service
  elasticsearch/repos/community-testing-x86_64/elasticsearch-sysctl.conf
  elasticsearch/repos/community-testing-x86_64/elasticsearch-tmpfile.conf
  elasticsearch/repos/community-testing-x86_64/elasticsearch-user.conf
  elasticsearch/repos/community-testing-x86_64/elasticsearch.default
  elasticsearch/repos/community-testing-x86_64/elasticsearch.service
  elasticsearch/repos/community-testing-x86_64/elasticsearch@.service
  
elasticsearch/repos/community-testing-x86_64/remove-systemd-distribution-check.patch

-+
 PKGBUILD|  180 +++---
 elasticsearch-keystore.service  |   20 +--
 elasticsearch-keystore@.service |   22 +--
 elasticsearch-sysctl.conf   |2 
 elasticsearch-tmpfile.conf  |   28 ++--
 elasticsearch-user.conf |2 
 elasticsearch.default   |   26 ++--
 elasticsearch.service   |  132 +++---
 elasticsearch@.service  |  134 +++---
 remove-systemd-distribution-check.patch |   34 ++---
 10 files changed, 290 insertions(+), 290 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-07 03:49:45 UTC (rev 699390)
+++ PKGBUILD2020-09-07 03:50:06 UTC (rev 699391)
@@ -1,90 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Marcello "mererghost" Rocha 
-# Refactored by Blaž "Speed" Hrastnik 
-
-pkgname=elasticsearch
-pkgver=7.8.0
-pkgrel=3
-pkgdesc="Distributed RESTful search engine built on top of Lucene"
-arch=('x86_64')
-url="https://www.elastic.co/products/elasticsearch;
-license=('Apache')
-depends=('java-runtime-headless' 'systemd' 'libxml2')
-makedepends=('java-environment=11' 'gradle')
-source=(
-  
$pkgname-$pkgver.tar.gz::"https://github.com/elastic/elasticsearch/archive/v${pkgver}.tar.gz;
-  elasticsearch.service
-  elasticsearch@.service
-  elasticsearch-keystore.service
-  elasticsearch-keystore@.service
-  elasticsearch-sysctl.conf
-  elasticsearch-user.conf
-  elasticsearch-tmpfile.conf
-  elasticsearch.default
-  remove-systemd-distribution-check.patch
-)
-sha256sums=('6a04dac8da32755f53962a34b85b7dac7593b2a544f5bccb50344b2b345b3944'
-'9e1f68ff275ef2b5f2b93d2823efc5cc9643da696fcbe09a3ea7520ada35ffba'
-'8a76ad9a44a34eca8d6cb7ec9d8f1b01d46c114765b0a76094de8d72f0477351'
-'bac40d87acaa5bee209ceb6dfa253009a072e9243fe3b94be42fb5cd44727d6f'
-'22a78a165a810608188faea6f2b0b381f27b1e9d60126c3b3e729124540589a8'
-'b3feb1e9c7e7ce6b33cea6c727728ed700332aae942ca475c3bcc1d56b9f113c'
-'815f6a39db6f54bb40750c382ffbdc298d2c4c187ee8ea7e2f855923e2ff354b'
-'74a772e9f73e2cecda45dcd30ade2f6114db657ed36231292bdf9a7ca04eab78'
-'bb74e5fb8bc28f2125e015395ab05bea117b72bfc6dadbca827694b362ee0bf8'
-'96934e6518245a4110714c3e1c1eb7bfaf4dd0026cc917efc322f3bfa4c3b5ec')
-
-backup=('etc/elasticsearch/elasticsearch.yml'
-'etc/elasticsearch/log4j2.properties'
-

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

2020-09-06 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, September 7, 2020 @ 03:49:45
  Author: svenstaro
Revision: 699390

upgpkg: elasticsearch 7.9.1-1

Modified:
  elasticsearch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-07 03:18:36 UTC (rev 699389)
+++ PKGBUILD2020-09-07 03:49:45 UTC (rev 699390)
@@ -3,8 +3,8 @@
 # Refactored by Blaž "Speed" Hrastnik 
 
 pkgname=elasticsearch
-pkgver=7.8.0
-pkgrel=3
+pkgver=7.9.1
+pkgrel=1
 pkgdesc="Distributed RESTful search engine built on top of Lucene"
 arch=('x86_64')
 url="https://www.elastic.co/products/elasticsearch;
@@ -23,7 +23,7 @@
   elasticsearch.default
   remove-systemd-distribution-check.patch
 )
-sha256sums=('6a04dac8da32755f53962a34b85b7dac7593b2a544f5bccb50344b2b345b3944'
+sha256sums=('60d8e3c8cc26a4add1e84fd1406916d7bfe07e20c842bb9c914f02275a6cdfdd'
 '9e1f68ff275ef2b5f2b93d2823efc5cc9643da696fcbe09a3ea7520ada35ffba'
 '8a76ad9a44a34eca8d6cb7ec9d8f1b01d46c114765b0a76094de8d72f0477351'
 'bac40d87acaa5bee209ceb6dfa253009a072e9243fe3b94be42fb5cd44727d6f'


[arch-commits] Commit in python-pytorch/repos/community-x86_64 (11 files)

2020-09-06 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, September 7, 2020 @ 03:18:36
  Author: svenstaro
Revision: 699389

archrelease: copy trunk to community-x86_64

Added:
  python-pytorch/repos/community-x86_64/PKGBUILD
(from rev 699388, python-pytorch/trunk/PKGBUILD)
  python-pytorch/repos/community-x86_64/disable_non_x86_64.patch
(from rev 699388, python-pytorch/trunk/disable_non_x86_64.patch)
  python-pytorch/repos/community-x86_64/fix_include_system.patch
(from rev 699388, python-pytorch/trunk/fix_include_system.patch)
  python-pytorch/repos/community-x86_64/nccl_version.patch
(from rev 699388, python-pytorch/trunk/nccl_version.patch)
  python-pytorch/repos/community-x86_64/use-system-libuv.patch
(from rev 699388, python-pytorch/trunk/use-system-libuv.patch)
  python-pytorch/repos/community-x86_64/use-system-libuv2.patch
(from rev 699388, python-pytorch/trunk/use-system-libuv2.patch)
Deleted:
  python-pytorch/repos/community-x86_64/PKGBUILD
  python-pytorch/repos/community-x86_64/fix_include_system.patch
  python-pytorch/repos/community-x86_64/nccl_version.patch
  python-pytorch/repos/community-x86_64/use-system-libuv.patch
  python-pytorch/repos/community-x86_64/use-system-libuv2.patch

--+
 PKGBUILD |  362 ++---
 disable_non_x86_64.patch |   15 +
 fix_include_system.patch |   22 +-
 nccl_version.patch   |   92 +--
 use-system-libuv.patch   |   26 +--
 use-system-libuv2.patch  |   26 +--
 6 files changed, 282 insertions(+), 261 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-07 03:18:05 UTC (rev 699388)
+++ PKGBUILD2020-09-07 03:18:36 UTC (rev 699389)
@@ -1,178 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Stephen Zhang 
-
-pkgbase=python-pytorch
-pkgname=("python-pytorch" "python-pytorch-opt" "python-pytorch-cuda" 
"python-pytorch-opt-cuda")
-_pkgname="pytorch"
-pkgver=1.6.0
-_pkgver=1.6.0
-pkgrel=2
-pkgdesc="Tensors and Dynamic neural networks in Python with strong GPU 
acceleration"
-arch=('x86_64')
-url="https://pytorch.org;
-license=('BSD')
-depends=('google-glog' 'gflags' 'opencv' 'openmp' 'nccl' 'pybind11' 'python' 
'python-yaml' 'libuv'
- 'python-numpy' 'protobuf' 'ffmpeg' 'python-future' 'qt5-base' 
'onednn' 'intel-mkl')
-makedepends=('python' 'python-setuptools' 'python-yaml' 'python-numpy' 'cmake' 
'cuda'
- 'cudnn' 'git' 'magma' 'ninja' 'pkgconfig' 'doxygen')
-source=("${_pkgname}-${pkgver}::git+https://github.com/pytorch/pytorch.git#tag=v$_pkgver;
-fix_include_system.patch
-use-system-libuv.patch
-use-system-libuv2.patch
-nccl_version.patch)
-sha256sums=('SKIP'
-'147bdaeac8ec46ea46382e6146878bd8f8d51e05d5bd6f930dfd8e2b520859b9'
-'6f3b7a87172011de810bf1ab581245b4463ef86e5cd09bec63aeffa372e26646'
-'7b65c3b209fc39f92ba58a58be6d3da40799f1922910b1171ccd9209eda1f9eb'
-'1a276bd827a0c76dab908cbc6605fa4c9fc2cc2b9431b6578a41133ae27dba2b')
-
-prepare() {
-  cd "${_pkgname}-${pkgver}"
-
-  # This is the lazy way since pytorch has sooo many submodules and they keep
-  # changing them around but we've run into more problems so far doing it the
-  # manual than the lazy way. This lazy way (not explicitly specifying all
-  # submodules) will make building inefficient but for now I'll take it.
-  # It will result in the same package, don't worry.
-  git submodule update --init --recursive
-
-  # https://bugs.archlinux.org/task/64981
-  patch -N torch/utils/cpp_extension.py "${srcdir}"/fix_include_system.patch
-
-  # Use system libuv
-  patch -Np1 -i "${srcdir}"/use-system-libuv.patch
-  patch -Np1 -i "${srcdir}"/use-system-libuv2.patch -d third_party/tensorpipe
-
-  # FindNCCL patch to export correct nccl version
-  patch -Np1 -i "${srcdir}"/nccl_version.patch
-
-  # remove local nccl
-  rm -rf third_party/nccl/nccl
-
-  cd ..
-
-  cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-opt"
-  cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-cuda"
-  cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-opt-cuda"
-
-  export VERBOSE=1
-  export PYTORCH_BUILD_VERSION="${pkgver}"
-  export PYTORCH_BUILD_NUMBER=1
-
-  # Check tools/setup_helpers/cmake.py, setup.py and CMakeLists.txt for a list 
of flags that can be set via env vars.
-  export USE_MKLDNN=ON
-  # export BUILD_CUSTOM_PROTOBUF=OFF
-  # export BUILD_SHARED_LIBS=OFF
-  export USE_FFMPEG=ON
-  export USE_GFLAGS=ON
-  export USE_GLOG=ON
-  export BUILD_BINARY=ON
-  export USE_OPENCV=ON
-  export USE_SYSTEM_NCCL=ON
-  export NCCL_VERSION=$(pkg-config nccl --modversion)
-  export NCCL_VER_CODE=$(sed -n 's/^#define NCCL_VERSION_CODE\s*\(.*\).*/\1/p' 
/usr/include/nccl.h)
-  export CUDAHOSTCXX=g++-9
-  export CUDA_HOME=/opt/cuda
-  export CUDNN_LIB_DIR=/usr/lib
-  export CUDNN_INCLUDE_DIR=/usr/include
-  export TORCH_NVCC_FLAGS="-Xfatbin -compress-all"
-  export 

[arch-commits] Commit in python-pytorch/trunk (PKGBUILD disable_non_x86_64.patch)

2020-09-06 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, September 7, 2020 @ 03:18:05
  Author: svenstaro
Revision: 699388

upgpkg: python-pytorch 1.6.0-3: Try to make sure that non-opt packages don't 
use non-x86_64 instructions

Added:
  python-pytorch/trunk/disable_non_x86_64.patch
Modified:
  python-pytorch/trunk/PKGBUILD

--+
 PKGBUILD |   12 +---
 disable_non_x86_64.patch |   15 +++
 2 files changed, 24 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-07 00:09:46 UTC (rev 699387)
+++ PKGBUILD2020-09-07 03:18:05 UTC (rev 699388)
@@ -6,7 +6,7 @@
 _pkgname="pytorch"
 pkgver=1.6.0
 _pkgver=1.6.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Tensors and Dynamic neural networks in Python with strong GPU 
acceleration"
 arch=('x86_64')
 url="https://pytorch.org;
@@ -19,12 +19,14 @@
 fix_include_system.patch
 use-system-libuv.patch
 use-system-libuv2.patch
-nccl_version.patch)
+nccl_version.patch
+disable_non_x86_64.patch)
 sha256sums=('SKIP'
 '147bdaeac8ec46ea46382e6146878bd8f8d51e05d5bd6f930dfd8e2b520859b9'
 '6f3b7a87172011de810bf1ab581245b4463ef86e5cd09bec63aeffa372e26646'
 '7b65c3b209fc39f92ba58a58be6d3da40799f1922910b1171ccd9209eda1f9eb'
-'1a276bd827a0c76dab908cbc6605fa4c9fc2cc2b9431b6578a41133ae27dba2b')
+'1a276bd827a0c76dab908cbc6605fa4c9fc2cc2b9431b6578a41133ae27dba2b'
+'d3ef8491718ed7e814fe63e81df2f49862fffbea891d2babbcb464796a1bd680')
 
 prepare() {
   cd "${_pkgname}-${pkgver}"
@@ -84,6 +86,8 @@
   export USE_CUDA=0
   export USE_CUDNN=0
   cd "${srcdir}/${_pkgname}-${pkgver}"
+  echo "add_definitions(-march=x86-64)" >> cmake/MiscCheck.cmake
+  patch -Np1 -i "${srcdir}/disable_non_x86_64.patch"
   python setup.py build
 
 
@@ -99,6 +103,8 @@
   export USE_CUDA=1
   export USE_CUDNN=1
   cd "${srcdir}/${_pkgname}-${pkgver}-cuda"
+  patch -Np1 -i "${srcdir}/disable_non_x86_64.patch"
+  echo "add_definitions(-march=x86-64)" >> cmake/MiscCheck.cmake
   python setup.py build
 
 

Added: disable_non_x86_64.patch
===
--- disable_non_x86_64.patch(rev 0)
+++ disable_non_x86_64.patch2020-09-07 03:18:05 UTC (rev 699388)
@@ -0,0 +1,15 @@
+diff --git a/tools/setup_helpers/cmake.py b/tools/setup_helpers/cmake.py
+index d5db749d15..fd54cca6b8 100644
+--- a/tools/setup_helpers/cmake.py
 b/tools/setup_helpers/cmake.py
+@@ -295,6 +295,10 @@ class CMake:
+ build_options.update(cmake__options)
+ 
+ CMake.defines(args,
++  DISABLE_AVX2=1,
++  DISABLE_AVX512F=1,
++  DISABLE_FMA4=1,
++  DISABLE_SSE4=1,
+   PYTHON_EXECUTABLE=sys.executable,
+   PYTHON_LIBRARY=cmake_python_library,
+   PYTHON_INCLUDE_DIR=distutils.sysconfig.get_python_inc(),


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

2020-09-06 Thread Daniel Bermond via arch-commits
Date: Monday, September 7, 2020 @ 00:09:46
  Author: dbermond
Revision: 699387

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-07 00:09:23 UTC (rev 699386)
+++ PKGBUILD2020-09-07 00:09:46 UTC (rev 699387)
@@ -1,36 +0,0 @@
-# Maintainer: Daniel Bermond 
-# Maintainer: Bruno Pagani 
-
-_pkg=py-lmdb
-pkgname=python-lmdb
-pkgver=0.99
-pkgrel=1
-pkgdesc="Universal Python binding for the LMDB Lightning Database"
-arch=(x86_64)
-url="https://github.com/jnwatson/py-lmdb/;
-license=('custom: OpenLDAP')
-depends=(python python-cffi lmdb)
-makedepends=(python-setuptools)
-checkdepends=(python-pytest)
-source=(${url}/archive/${_pkg}_${pkgver}.tar.gz)
-sha256sums=('d27b90ebda734b65606e51dd6588764a42fb23f381d2f2ea7c899741ac5065d3')
-
-build() {
-  cd ${_pkg}-${_pkg}_${pkgver}
-  LMDB_FORCE_SYSTEM=1 python setup.py build
-}
-
-check() {
-  cd ${_pkg}-${_pkg}_${pkgver}
-  local _pyver
-  _pyver="$(python -c 'import sys; print("%s.%s" %sys.version_info[0:2])')"
-  export LMDB_FORCE_SYSTEM=1
-  export PYTHONPATH="$(pwd)/build/lib.linux-${CARCH}-${_pyver}"
-  pytest
-}
-
-package() {
-  cd ${_pkg}-${_pkg}_${pkgver}
-  LMDB_FORCE_SYSTEM=1 python setup.py install --root="$pkgdir" --skip-build 
--optimize=1
-  install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}
-}

Copied: python-lmdb/repos/community-x86_64/PKGBUILD (from rev 699386, 
python-lmdb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-07 00:09:46 UTC (rev 699387)
@@ -0,0 +1,36 @@
+# Maintainer: Daniel Bermond 
+# Maintainer: Bruno Pagani 
+
+_pkg=py-lmdb
+pkgname=python-lmdb
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="Universal Python binding for the LMDB Lightning Database"
+arch=(x86_64)
+url="https://github.com/jnwatson/py-lmdb/;
+license=('custom: OpenLDAP')
+depends=(python python-cffi lmdb)
+makedepends=(python-setuptools)
+checkdepends=(python-pytest)
+source=(${url}/archive/${_pkg}_${pkgver}.tar.gz)
+sha256sums=('e01bc4d62679b6e8c8962f1110f910cdfbdb2d750b145f02fae8b8a9d787f2f9')
+
+build() {
+  cd ${_pkg}-${_pkg}_${pkgver}
+  LMDB_FORCE_SYSTEM=1 python setup.py build
+}
+
+check() {
+  cd ${_pkg}-${_pkg}_${pkgver}
+  local _pyver
+  _pyver="$(python -c 'import sys; print("%s.%s" %sys.version_info[0:2])')"
+  export LMDB_FORCE_SYSTEM=1
+  export PYTHONPATH="$(pwd)/build/lib.linux-${CARCH}-${_pyver}"
+  pytest
+}
+
+package() {
+  cd ${_pkg}-${_pkg}_${pkgver}
+  LMDB_FORCE_SYSTEM=1 python setup.py install --root="$pkgdir" --skip-build 
--optimize=1
+  install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}
+}


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

2020-09-06 Thread Daniel Bermond via arch-commits
Date: Monday, September 7, 2020 @ 00:09:23
  Author: dbermond
Revision: 699386

upgpkg: python-lmdb 1.0.0-1

Modified:
  python-lmdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 23:26:50 UTC (rev 699385)
+++ PKGBUILD2020-09-07 00:09:23 UTC (rev 699386)
@@ -3,7 +3,7 @@
 
 _pkg=py-lmdb
 pkgname=python-lmdb
-pkgver=0.99
+pkgver=1.0.0
 pkgrel=1
 pkgdesc="Universal Python binding for the LMDB Lightning Database"
 arch=(x86_64)
@@ -13,7 +13,7 @@
 makedepends=(python-setuptools)
 checkdepends=(python-pytest)
 source=(${url}/archive/${_pkg}_${pkgver}.tar.gz)
-sha256sums=('d27b90ebda734b65606e51dd6588764a42fb23f381d2f2ea7c899741ac5065d3')
+sha256sums=('e01bc4d62679b6e8c8962f1110f910cdfbdb2d750b145f02fae8b8a9d787f2f9')
 
 build() {
   cd ${_pkg}-${_pkg}_${pkgver}


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 23:26:26
  Author: felixonmars
Revision: 699383

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 23:26:17 UTC (rev 699382)
+++ PKGBUILD2020-09-06 23:26:26 UTC (rev 699383)
@@ -1,43 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-hypothesis
-pkgver=5.32.1
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org;
-depends=('python-attrs' 'python-sortedcontainers')
-optdepends=('python-pytz: for datetime and django module'
-'python-faker: for fakefactory and django module'
-'python-django: for django module'
-'python-numpy: for numpy module'
-'python-pytest: for pytest module'
-'python-lark-parser: for lark module')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest' 'flake8' 'python-pytz' 'python-numpy' 
'python-faker'
-  'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
-  'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage'
-  'python-typing_extensions' 'python-black')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('70aee6f4d640d1fbecc39b0678fd48dedc681f5f3cc81fc94a583ec99bbe1572facee07575fec84674eeadee5db340c9783665bdf5853b0413b4a8f650aa98f9')
-
-prepare() {
-  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
-}
-
-build() {
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py build
-}
-
-check() {
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.8/site-packages:$PYTHONPATH" 
PATH="$PWD/tmp_install/usr/bin:$PATH" pytest
-}
-
-package() {
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 699382, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 23:26:26 UTC (rev 699383)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-hypothesis
+pkgver=5.33.0
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org;
+depends=('python-attrs' 'python-sortedcontainers')
+optdepends=('python-pytz: for datetime and django module'
+'python-faker: for fakefactory and django module'
+'python-django: for django module'
+'python-numpy: for numpy module'
+'python-pytest: for pytest module'
+'python-lark-parser: for lark module')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'flake8' 'python-pytz' 'python-numpy' 
'python-faker'
+  'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
+  'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage'
+  'python-typing_extensions' 'python-black')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
+sha512sums=('0b7a1cc3b0676205c2292585513ab6ac339b08cf10138bb10340ad69af26005c194580713baeb8f704a8fe2f39709c9b643a23026b64a6300fe972b9c847d044')
+
+prepare() {
+  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
+}
+
+build() {
+  cd hypothesis-$pkgver/hypothesis-python
+  python setup.py build
+}
+
+check() {
+  cd hypothesis-$pkgver/hypothesis-python
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.8/site-packages:$PYTHONPATH" 
PATH="$PWD/tmp_install/usr/bin:$PATH" pytest
+}
+
+package() {
+  cd hypothesis-$pkgver/hypothesis-python
+  python setup.py install --root="$pkgdir" --optimize=1
+}


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 23:26:50
  Author: felixonmars
Revision: 699385

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-tf-random/repos/community-staging-x86_64/PKGBUILD
(from rev 699384, haskell-tf-random/trunk/PKGBUILD)
Deleted:
  haskell-tf-random/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 23:26:40 UTC (rev 699384)
+++ PKGBUILD2020-09-06 23:26:50 UTC (rev 699385)
@@ -1,37 +0,0 @@
-# Maintainer: Alexander Rødseth 
-
-_hkgname=tf-random
-pkgname=haskell-tf-random
-pkgver=0.5
-pkgrel=53
-pkgdesc='High-quality splittable pseudorandom number generator'
-url="https://hackage.haskell.org/package/${_hkgname};
-license=('BSD')
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-random' 'haskell-primitive')
-makedepends=('ghc')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('a766909571b4b37da9fa1aa9739bd2db8c32c0f64452fd7c3717f4578090e5227b763772858c6c311c5f366dd461421ffc3beb295455902fea1fb133deb7')
-
-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
-}

Copied: haskell-tf-random/repos/community-staging-x86_64/PKGBUILD (from rev 
699384, haskell-tf-random/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 23:26:50 UTC (rev 699385)
@@ -0,0 +1,37 @@
+# Maintainer: Alexander Rødseth 
+
+_hkgname=tf-random
+pkgname=haskell-tf-random
+pkgver=0.5
+pkgrel=54
+pkgdesc='High-quality splittable pseudorandom number generator'
+url="https://hackage.haskell.org/package/${_hkgname};
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-random' 'haskell-primitive')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('a766909571b4b37da9fa1aa9739bd2db8c32c0f64452fd7c3717f4578090e5227b763772858c6c311c5f366dd461421ffc3beb295455902fea1fb133deb7')
+
+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-tf-random/trunk (PKGBUILD)

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 23:26:40
  Author: felixonmars
Revision: 699384

upgpkg: haskell-tf-random 0.5-54: rebuild with hspec 2.7.3, hspec-core 2.7.3, 
hspec-discover 2.7.3

Modified:
  haskell-tf-random/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 23:26:26 UTC (rev 699383)
+++ PKGBUILD2020-09-06 23:26:40 UTC (rev 699384)
@@ -3,7 +3,7 @@
 _hkgname=tf-random
 pkgname=haskell-tf-random
 pkgver=0.5
-pkgrel=53
+pkgrel=54
 pkgdesc='High-quality splittable pseudorandom number generator'
 url="https://hackage.haskell.org/package/${_hkgname};
 license=('BSD')


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 23:26:17
  Author: felixonmars
Revision: 699382

upgpkg: python-hypothesis 5.33.0-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 23:19:27 UTC (rev 699381)
+++ PKGBUILD2020-09-06 23:26:17 UTC (rev 699382)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-hypothesis
-pkgver=5.32.1
+pkgver=5.33.0
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -20,7 +20,7 @@
   'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage'
   'python-typing_extensions' 'python-black')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('70aee6f4d640d1fbecc39b0678fd48dedc681f5f3cc81fc94a583ec99bbe1572facee07575fec84674eeadee5db340c9783665bdf5853b0413b4a8f650aa98f9')
+sha512sums=('0b7a1cc3b0676205c2292585513ab6ac339b08cf10138bb10340ad69af26005c194580713baeb8f704a8fe2f39709c9b643a23026b64a6300fe972b9c847d044')
 
 prepare() {
   mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 23:19:27
  Author: felixonmars
Revision: 699381

archrelease: copy trunk to community-staging-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 23:19:18 UTC (rev 699380)
+++ PKGBUILD2020-09-06 23:19:27 UTC (rev 699381)
@@ -1,43 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-_hkgname=temporary
-pkgname=haskell-temporary
-pkgver=1.3
-pkgrel=90
-pkgdesc="Portable temporary file and directory support"
-url="https://www.github.com/batterseapower/temporary;
-license=("BSD")
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-random')
-makedepends=('ghc' 'haskell-base-compat' 'haskell-tasty' 'haskell-tasty-hunit')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('e3078caf54da95c4efa9e9c936b35a98b62296ecce2242cd4e103605a9d29e8a9d6c7027dbf50d02b6a893bea558ea5b07dbb1df7c59bf26d86db76ccf112f25')
-
-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-temporary/repos/community-staging-x86_64/PKGBUILD (from rev 
699380, haskell-temporary/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 23:19:27 UTC (rev 699381)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=temporary
+pkgname=haskell-temporary
+pkgver=1.3
+pkgrel=91
+pkgdesc="Portable temporary file and directory support"
+url="https://www.github.com/batterseapower/temporary;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-random')
+makedepends=('ghc' 'haskell-base-compat' 'haskell-tasty' 'haskell-tasty-hunit')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('e3078caf54da95c4efa9e9c936b35a98b62296ecce2242cd4e103605a9d29e8a9d6c7027dbf50d02b6a893bea558ea5b07dbb1df7c59bf26d86db76ccf112f25')
+
+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-temporary/trunk (PKGBUILD)

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 23:19:18
  Author: felixonmars
Revision: 699380

upgpkg: haskell-temporary 1.3-91: rebuild with hspec 2.7.3, hspec-core 2.7.3, 
hspec-discover 2.7.3

Modified:
  haskell-temporary/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 23:18:43 UTC (rev 699379)
+++ PKGBUILD2020-09-06 23:19:18 UTC (rev 699380)
@@ -4,7 +4,7 @@
 _hkgname=temporary
 pkgname=haskell-temporary
 pkgver=1.3
-pkgrel=90
+pkgrel=91
 pkgdesc="Portable temporary file and directory support"
 url="https://www.github.com/batterseapower/temporary;
 license=("BSD")


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 23:18:43
  Author: felixonmars
Revision: 699379

archrelease: copy trunk to community-staging-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 23:18:33 UTC (rev 699378)
+++ PKGBUILD2020-09-06 23:18:43 UTC (rev 699379)
@@ -1,37 +0,0 @@
-# Maintainer: Felix Yan 
-
-_hkgname=tasty-smallcheck
-pkgname=haskell-tasty-smallcheck
-pkgver=0.8.1
-pkgrel=87
-pkgdesc="SmallCheck support for the Tasty test framework"
-url="http://documentup.com/feuerbach/tasty;
-license=('MIT')
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-async' 'haskell-tasty' 'haskell-smallcheck' 
'haskell-tagged')
-makedepends=('ghc')
-source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('26ed0d75559c2da2f4296af6e9b02f8d0a19043b0ef154674eb782703fcd3ad7f4863b7b07dbaae27440078b4b00a9272cd9d5da23089993018e933577be5893')
-
-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
-}

Copied: haskell-tasty-smallcheck/repos/community-staging-x86_64/PKGBUILD (from 
rev 699378, haskell-tasty-smallcheck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 23:18:43 UTC (rev 699379)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+
+_hkgname=tasty-smallcheck
+pkgname=haskell-tasty-smallcheck
+pkgver=0.8.1
+pkgrel=88
+pkgdesc="SmallCheck support for the Tasty test framework"
+url="http://documentup.com/feuerbach/tasty;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-tasty' 'haskell-smallcheck' 
'haskell-tagged')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('26ed0d75559c2da2f4296af6e9b02f8d0a19043b0ef154674eb782703fcd3ad7f4863b7b07dbaae27440078b4b00a9272cd9d5da23089993018e933577be5893')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 23:18:33
  Author: felixonmars
Revision: 699378

upgpkg: haskell-tasty-smallcheck 0.8.1-88: rebuild with hspec 2.7.3, hspec-core 
2.7.3, hspec-discover 2.7.3

Modified:
  haskell-tasty-smallcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 23:17:54 UTC (rev 699377)
+++ PKGBUILD2020-09-06 23:18:33 UTC (rev 699378)
@@ -3,7 +3,7 @@
 _hkgname=tasty-smallcheck
 pkgname=haskell-tasty-smallcheck
 pkgver=0.8.1
-pkgrel=87
+pkgrel=88
 pkgdesc="SmallCheck support for the Tasty test framework"
 url="http://documentup.com/feuerbach/tasty;
 license=('MIT')


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 23:17:54
  Author: felixonmars
Revision: 699377

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-primitive/repos/community-staging-x86_64/PKGBUILD (from rev 
699376, haskell-primitive/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-06 23:17:54 UTC (rev 699377)
@@ -0,0 +1,55 @@
+# Maintainer: Felix Yan 
+# Contributor: Sergej Pupykin 
+
+pkgname=haskell-primitive
+pkgver=0.7.1.0
+pkgrel=12
+pkgdesc="Wrappers for primitive operations"
+url="https://hackage.haskell.org/package/primitive;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+checkdepends=('haskell-base-orphans' 'haskell-quickcheck' 
'haskell-quickcheck-classes-base'
+  'haskell-tasty' 'haskell-tasty-quickcheck' 'haskell-tagged'
+  'haskell-transformers-compat')
+source=("https://hackage.haskell.org/packages/archive/primitive/${pkgver}/primitive-${pkgver}.tar.gz;)
+sha512sums=('8ade11d0b2221cfdf042da0263b5b5367a7ca2a9b9e1141844e4a65bb0467df879c92cd3515440d715b59345860c1ec3cb3efd7a3d702269ea15e18692586367')
+
+prepare() {
+  cd primitive-$pkgver
+  sed -i '/semigroups/d;s/>= 2.13/>= 2.14/;s/>= 1.2/>= 1.3/' primitive.cabal
+}
+
+build() {
+  cd primitive-$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 primitive-$pkgver
+  runhaskell Setup test
+}
+
+package() {
+  cd primitive-$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 -Dm644 LICENSE "$pkgdir"/usr/share/licenses/${pkgname}/LICENSE
+  rm -f "$pkgdir"/usr/share/doc/${pkgname}/LICENSE
+}


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 23:17:46
  Author: felixonmars
Revision: 699376

upgpkg: haskell-primitive 0.7.1.0-12: rebuild with hspec 2.7.3, hspec-core 
2.7.3, hspec-discover 2.7.3

Modified:
  haskell-primitive/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 23:16:29 UTC (rev 699375)
+++ PKGBUILD2020-09-06 23:17:46 UTC (rev 699376)
@@ -3,7 +3,7 @@
 
 pkgname=haskell-primitive
 pkgver=0.7.1.0
-pkgrel=11
+pkgrel=12
 pkgdesc="Wrappers for primitive operations"
 url="https://hackage.haskell.org/package/primitive;
 license=("BSD")


[arch-commits] Commit in haskell-quickcheck-classes-base/trunk (PKGBUILD)

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 23:16:21
  Author: felixonmars
Revision: 699374

upgpkg: haskell-quickcheck-classes-base 0.6.0.0-29: rebuild with hspec 2.7.3, 
hspec-core 2.7.3, hspec-discover 2.7.3

Modified:
  haskell-quickcheck-classes-base/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 23:15:46 UTC (rev 699373)
+++ PKGBUILD2020-09-06 23:16:21 UTC (rev 699374)
@@ -3,7 +3,7 @@
 _hkgname=quickcheck-classes-base
 pkgname=haskell-quickcheck-classes-base
 pkgver=0.6.0.0
-pkgrel=28
+pkgrel=29
 pkgdesc="QuickCheck common typeclasses from 'base'"
 url="https://github.com/andrewthad/quickcheck-classes-base;
 license=('MIT')


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 23:16:29
  Author: felixonmars
Revision: 699375

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-quickcheck-classes-base/repos/community-staging-x86_64/
  haskell-quickcheck-classes-base/repos/community-staging-x86_64/PKGBUILD
(from rev 699374, haskell-quickcheck-classes-base/trunk/PKGBUILD)

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

Copied: haskell-quickcheck-classes-base/repos/community-staging-x86_64/PKGBUILD 
(from rev 699374, haskell-quickcheck-classes-base/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-06 23:16:29 UTC (rev 699375)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+
+_hkgname=quickcheck-classes-base
+pkgname=haskell-quickcheck-classes-base
+pkgver=0.6.0.0
+pkgrel=29
+pkgdesc="QuickCheck common typeclasses from 'base'"
+url="https://github.com/andrewthad/quickcheck-classes-base;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-orphans' 'haskell-bifunctors' 
'haskell-contravariant'
+ 'haskell-quickcheck' 'haskell-tagged')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('3d0a7c68ab1cdaddbd272df633e0704f5ee3997b3a86fe79cb960f7c84f8546f3360b9d52ada45b9db6344135f0aab1093d5304935ae19f43d235790fba83216')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e '/fail$/d' -e '/semigroups/d' $_hkgname.cabal
+echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 23:15:37
  Author: felixonmars
Revision: 699372

upgpkg: haskell-bifunctors 5.5.7-35: rebuild with hspec 2.7.3, hspec-core 
2.7.3, hspec-discover 2.7.3

Modified:
  haskell-bifunctors/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 23:14:55 UTC (rev 699371)
+++ PKGBUILD2020-09-06 23:15:37 UTC (rev 699372)
@@ -4,7 +4,7 @@
 _hkgname=bifunctors
 pkgname=haskell-bifunctors
 pkgver=5.5.7
-pkgrel=34
+pkgrel=35
 pkgdesc="Bifunctors"
 url="https://github.com/ekmett/bifunctors/;
 license=("BSD")


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 23:15:46
  Author: felixonmars
Revision: 699373

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-bifunctors/repos/community-staging-x86_64/PKGBUILD (from rev 
699372, haskell-bifunctors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-06 23:15:46 UTC (rev 699373)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=bifunctors
+pkgname=haskell-bifunctors
+pkgver=5.5.7
+pkgrel=35
+pkgdesc="Bifunctors"
+url="https://github.com/ekmett/bifunctors/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-orphans' 'haskell-comonad' 'haskell-tagged'
+ 'haskell-th-abstraction')
+makedepends=('ghc' 'haskell-hspec' 'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('ea1632c5dc2b8d0735e3076337768bf595071d0245b85f80859dab09189d813473b574b17d5b49864bda8c2cccd348c99db0b9b890f563ecfb5f750b06a4b219')
+
+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 \
+-ftagged -f-semigroups
+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/trunk (PKGBUILD)

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 23:14:45
  Author: felixonmars
Revision: 699370

upgpkg: haskell-hspec 2.7.3-4: rebuild with hspec 2.7.3, hspec-core 2.7.3, 
hspec-discover 2.7.3

Modified:
  haskell-hspec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 23:11:38 UTC (rev 699369)
+++ PKGBUILD2020-09-06 23:14:45 UTC (rev 699370)
@@ -3,7 +3,7 @@
 _hkgname=hspec
 pkgname=haskell-hspec
 pkgver=2.7.3
-pkgrel=3
+pkgrel=4
 pkgdesc="A Testing Framework for Haskell"
 url="http://hspec.github.io/;
 license=('MIT')


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 23:14:55
  Author: felixonmars
Revision: 699371

archrelease: copy trunk to community-staging-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 23:14:45 UTC (rev 699370)
+++ PKGBUILD2020-09-06 23:14:55 UTC (rev 699371)
@@ -1,38 +0,0 @@
-# Maintainer: Felix Yan 
-
-_hkgname=hspec
-pkgname=haskell-hspec
-pkgver=2.7.3
-pkgrel=3
-pkgdesc="A Testing Framework for Haskell"
-url="http://hspec.github.io/;
-license=('MIT')
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-quickcheck' 'haskell-hspec-core' 
'haskell-hspec-discover'
- 'haskell-hspec-expectations')
-makedepends=('ghc')
-source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('d5e3aa1cb5a4c621c3c9e1e053bdb04497df0a639c1083eaeacf60538e8c38cfad14157d38df8ed722b85f60bab8733ebf1e86d6f08792dfe841fa8f2c762988')
-
-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
-}

Copied: haskell-hspec/repos/community-staging-x86_64/PKGBUILD (from rev 699370, 
haskell-hspec/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 23:14:55 UTC (rev 699371)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hspec
+pkgname=haskell-hspec
+pkgver=2.7.3
+pkgrel=4
+pkgdesc="A Testing Framework for Haskell"
+url="http://hspec.github.io/;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-hspec-core' 
'haskell-hspec-discover'
+ 'haskell-hspec-expectations')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('d5e3aa1cb5a4c621c3c9e1e053bdb04497df0a639c1083eaeacf60538e8c38cfad14157d38df8ed722b85f60bab8733ebf1e86d6f08792dfe841fa8f2c762988')
+
+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-hspec-core/trunk (PKGBUILD)

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 23:11:28
  Author: felixonmars
Revision: 699368

upgpkg: haskell-hspec-core 2.7.3-4: rebuild with hspec 2.7.3, hspec-core 2.7.3, 
hspec-discover 2.7.3

Modified:
  haskell-hspec-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 21:56:09 UTC (rev 699367)
+++ PKGBUILD2020-09-06 23:11:28 UTC (rev 699368)
@@ -3,7 +3,7 @@
 _hkgname=hspec-core
 pkgname=haskell-hspec-core
 pkgver=2.7.3
-pkgrel=3
+pkgrel=4
 pkgdesc="A Testing Framework for Haskell"
 url="http://hspec.github.io/;
 license=('MIT')


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 23:11:38
  Author: felixonmars
Revision: 699369

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hspec-core/repos/community-staging-x86_64/PKGBUILD
(from rev 699368, haskell-hspec-core/trunk/PKGBUILD)
Deleted:
  haskell-hspec-core/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 23:11:28 UTC (rev 699368)
+++ PKGBUILD2020-09-06 23:11:38 UTC (rev 699369)
@@ -1,45 +0,0 @@
-# Maintainer: Felix Yan 
-
-_hkgname=hspec-core
-pkgname=haskell-hspec-core
-pkgver=2.7.3
-pkgrel=3
-pkgdesc="A Testing Framework for Haskell"
-url="http://hspec.github.io/;
-license=('MIT')
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-call-stack' 
'haskell-clock'
- 'haskell-hspec-expectations' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-quickcheck-io'
- 'haskell-random' 'haskell-setenv' 'haskell-tf-random')
-makedepends=('ghc' 'haskell-hspec-meta' 'haskell-silently' 'haskell-temporary')
-source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('8a71bca8985a9a75463e4ce41f565325dcec0e2948ebb52b7b041b3796fa06d3fceb46e2108201c9de7c6eeba4ae258303a512bbbf4e1b858e8de983023bbce5')
-
-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/hspec/hspec/issues/432
-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-hspec-core/repos/community-staging-x86_64/PKGBUILD (from rev 
699368, haskell-hspec-core/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 23:11:38 UTC (rev 699369)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hspec-core
+pkgname=haskell-hspec-core
+pkgver=2.7.3
+pkgrel=4
+pkgdesc="A Testing Framework for Haskell"
+url="http://hspec.github.io/;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-call-stack' 
'haskell-clock'
+ 'haskell-hspec-expectations' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-quickcheck-io'
+ 'haskell-random' 'haskell-setenv' 'haskell-tf-random')
+makedepends=('ghc' 'haskell-hspec-meta' 'haskell-silently' 'haskell-temporary')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('8a71bca8985a9a75463e4ce41f565325dcec0e2948ebb52b7b041b3796fa06d3fceb46e2108201c9de7c6eeba4ae258303a512bbbf4e1b858e8de983023bbce5')
+
+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/hspec/hspec/issues/432
+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 psi/repos/community-x86_64 (10 files)

2020-09-06 Thread Sergej Pupykin via arch-commits
Date: Sunday, September 6, 2020 @ 21:56:09
  Author: spupykin
Revision: 699367

archrelease: copy trunk to community-x86_64

Added:
  psi/repos/community-x86_64/PKGBUILD
(from rev 699366, psi/trunk/PKGBUILD)
  psi/repos/community-x86_64/appdata.patch
(from rev 699366, psi/trunk/appdata.patch)
  psi/repos/community-x86_64/no-qca-qt4.patch
(from rev 699366, psi/trunk/no-qca-qt4.patch)
  psi/repos/community-x86_64/qt-5.11.patch
(from rev 699366, psi/trunk/qt-5.11.patch)
  psi/repos/community-x86_64/qt-5.15.patch
(from rev 699366, psi/trunk/qt-5.15.patch)
Deleted:
  psi/repos/community-x86_64/PKGBUILD
  psi/repos/community-x86_64/appdata.patch
  psi/repos/community-x86_64/no-qca-qt4.patch
  psi/repos/community-x86_64/qt-5.11.patch
  psi/repos/community-x86_64/qt-5.15.patch

--+
 PKGBUILD |  140 ++---
 appdata.patch|   88 -
 no-qca-qt4.patch |   72 +--
 qt-5.11.patch|   42 +++
 qt-5.15.patch|  140 ++---
 5 files changed, 241 insertions(+), 241 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 21:55:54 UTC (rev 699366)
+++ PKGBUILD2020-09-06 21:56:09 UTC (rev 699367)
@@ -1,70 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=('psi' 'psi-nowebengine')
-pkgver=1.4
-pkgrel=5
-pkgdesc="Powerful XMPP (Jabber) client (Qt, C++) designed for power users"
-url="https://psi-im.org;
-license=('GPL2')
-arch=('x86_64')
-depends=('hunspell' 'qca' 'qt5-svg' 'qt5-webengine' 'qt5-x11extras' 'libidn')
-makedepends=('cmake' 'qt5-multimedia')
-source=("https://download.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz;
-"no-qca-qt4.patch"
-"qt-5.11.patch"
-"qt-5.15.patch"
-"appdata.patch")
-sha256sums=('761934c1c62daf69215f085ba24d7f9cd4db05ef0ad735383d68fb03d21571ad'
-'a6ea9a62100b6990b8a6c8590a6d0e9df095b99b6527bb5490a7fd3f6929ac23'
-'e56ec1a250488b2cf9d42887aac432ff2e0ef482eb7cc8500f3d52cb53949119'
-'5786131a946f8d50a0ef35dac6f3ea4b3abfe40c6e281cf3f52b22922850e7bc'
-'671bfebedbeebf3a159d3aa04caf62b8cb5f20bb31a95b0adb057619380cf6dd')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -p1 <"$srcdir"/no-qca-qt4.patch
-  patch -p1 <"$srcdir"/qt-5.11.patch
-  patch -p1 <"$srcdir"/qt-5.15.patch
-
-  # Upgrade appdata to meet with current spec
-  # https://github.com/psi-im/psi/pull/590
-  patch -p1 <"$srcdir"/appdata.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-  mkdir -p build
-  cd build
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ..
-  make
-  cd ..
-
-  mkdir -p build-nowebengine
-  cd build-nowebengine
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release 
-DENABLE_WEBKIT=OFF ..
-  make
-}
-
-package_psi() {
-  cd "$srcdir"/psi-$pkgver/build
-  make DESTDIR="$pkgdir" install
-  install -dm755 "$pkgdir/usr/include/psi/plugins"
-  install -m644 ../src/plugins/include/*.h "$pkgdir/usr/include/psi/plugins"
-  install -Dm644 ../$pkgbase.appdata.xml 
"$pkgdir/usr/share/metainfo/$pkgbase.appdata.xml"
-}
-
-package_psi-nowebengine() {
-  pkgdesc+=" without WebEngine support"
-  depends=('hunspell' 'minizip' 'qca-qt5' 'qt5-svg' 'qt5-x11extras' 'libidn')
-  provides=("$pkgbase=$pkgver")
-  conflicts=("$pkgbase")
-  replaces=('psi-nowebkit')
-
-  cd "$srcdir"/psi-$pkgver/build-nowebengine
-  make DESTDIR="$pkgdir" install
-  install -dm755 "$pkgdir/usr/include/psi/plugins"
-  install -m644 ../src/plugins/include/*.h "$pkgdir/usr/include/psi/plugins"
-
-  # Ignore package by AppStream to avoid duplicated IDs
-  echo 'X-AppStream-Ignore=true' >> 
"$pkgdir/usr/share/applications/$pkgbase.desktop"
-}

Copied: psi/repos/community-x86_64/PKGBUILD (from rev 699366, 
psi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 21:56:09 UTC (rev 699367)
@@ -0,0 +1,70 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=('psi' 'psi-nowebengine')
+pkgver=1.5
+pkgrel=1
+pkgdesc="Powerful XMPP (Jabber) client (Qt, C++) designed for power users"
+url="https://psi-im.org;
+license=('GPL2')
+arch=('x86_64')
+depends=('hunspell' 'qca' 'qt5-svg' 'qt5-webengine' 'qt5-x11extras' 'libidn')
+makedepends=('cmake' 'qt5-multimedia')
+source=("https://download.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz;
+"no-qca-qt4.patch"
+"qt-5.11.patch"
+"qt-5.15.patch"
+"appdata.patch")
+sha256sums=('3167350fd43fab4dc948cb5179ca10159a7aa318472d1a8a7617e41f5aa8b5b7'
+'a6ea9a62100b6990b8a6c8590a6d0e9df095b99b6527bb5490a7fd3f6929ac23'
+'e56ec1a250488b2cf9d42887aac432ff2e0ef482eb7cc8500f3d52cb53949119'
+'5786131a946f8d50a0ef35dac6f3ea4b3abfe40c6e281cf3f52b22922850e7bc'
+

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

2020-09-06 Thread Sergej Pupykin via arch-commits
Date: Sunday, September 6, 2020 @ 21:55:54
  Author: spupykin
Revision: 699366

upgpkg: psi 1.5-1

Modified:
  psi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 20:33:27 UTC (rev 699365)
+++ PKGBUILD2020-09-06 21:55:54 UTC (rev 699366)
@@ -1,8 +1,8 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname=('psi' 'psi-nowebengine')
-pkgver=1.4
-pkgrel=5
+pkgver=1.5
+pkgrel=1
 pkgdesc="Powerful XMPP (Jabber) client (Qt, C++) designed for power users"
 url="https://psi-im.org;
 license=('GPL2')
@@ -14,7 +14,7 @@
 "qt-5.11.patch"
 "qt-5.15.patch"
 "appdata.patch")
-sha256sums=('761934c1c62daf69215f085ba24d7f9cd4db05ef0ad735383d68fb03d21571ad'
+sha256sums=('3167350fd43fab4dc948cb5179ca10159a7aa318472d1a8a7617e41f5aa8b5b7'
 'a6ea9a62100b6990b8a6c8590a6d0e9df095b99b6527bb5490a7fd3f6929ac23'
 'e56ec1a250488b2cf9d42887aac432ff2e0ef482eb7cc8500f3d52cb53949119'
 '5786131a946f8d50a0ef35dac6f3ea4b3abfe40c6e281cf3f52b22922850e7bc'
@@ -23,12 +23,12 @@
 prepare() {
   cd $pkgname-$pkgver
   patch -p1 <"$srcdir"/no-qca-qt4.patch
-  patch -p1 <"$srcdir"/qt-5.11.patch
-  patch -p1 <"$srcdir"/qt-5.15.patch
+#  patch -p1 <"$srcdir"/qt-5.11.patch
+#  patch -p1 <"$srcdir"/qt-5.15.patch
 
   # Upgrade appdata to meet with current spec
   # https://github.com/psi-im/psi/pull/590
-  patch -p1 <"$srcdir"/appdata.patch
+#  patch -p1 <"$srcdir"/appdata.patch
 }
 
 build() {


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

2020-09-06 Thread Jan Steffens via arch-commits
Date: Sunday, September 6, 2020 @ 21:32:00
  Author: heftig
Revision: 395531

archrelease: copy trunk to testing-x86_64

Added:
  libxkbcommon/repos/testing-x86_64/
  libxkbcommon/repos/testing-x86_64/PKGBUILD
(from rev 395530, libxkbcommon/trunk/PKGBUILD)
  libxkbcommon/repos/testing-x86_64/fix-test.diff
(from rev 395530, libxkbcommon/trunk/fix-test.diff)

---+
 PKGBUILD  |   83 
 fix-test.diff |   13 
 2 files changed, 96 insertions(+)

Copied: libxkbcommon/repos/testing-x86_64/PKGBUILD (from rev 395530, 
libxkbcommon/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-09-06 21:32:00 UTC (rev 395531)
@@ -0,0 +1,83 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Daniel Micay 
+# Contributor: Mladen Pejakovic 
+
+pkgbase=libxkbcommon
+pkgname=(libxkbcommon libxkbcommon-doc libxkbcommon-x11)
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="Keymap handling library for toolkits and window systems"
+url="https://xkbcommon.org/;
+arch=(x86_64)
+license=(custom)
+makedepends=(xkeyboard-config libxml2 libxcb wayland wayland-protocols doxygen
+ git meson)
+checkdepends=(xorg-server-xvfb libgl python-pytest)
+_commit=12f99d0dfe012c07d82d70296bbcac8a0a8ac0a9  # tags/xkbcommon-1.0.0^0
+source=("git+https://github.com/xkbcommon/libxkbcommon#commit=$_commit;
+fix-test.diff)
+sha256sums=('SKIP'
+'e965cf7516d3158f3de1016e955f804a14b3e514df66520d7919e5289eefde69')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/^xkbcommon-//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgbase
+  git apply -3 ../fix-test.diff
+}
+
+build() {
+  arch-meson $pkgbase build
+  meson compile -C build
+}
+
+check() {
+  xvfb-run -a meson test -C build --print-errorlogs
+}
+
+_pick() {
+  local p="$1" f d; shift
+  for f; do
+d="$srcdir/$p/${f#$pkgdir/}"
+mkdir -p "$(dirname "$d")"
+mv "$f" "$d"
+rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
+  done
+}
+
+package_libxkbcommon() {
+  depends=(xkeyboard-config libxml2)
+  optdepends=('libxkbcommon-x11: xkbcli interactive-x11'
+  'wayland: xkbcli interactive-wayland')
+  provides=(libxkbcommon.so libxkbregistry.so)
+
+  DESTDIR="$pkgdir" meson install -C build
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgbase/LICENSE
+
+  _pick libxkbcommon-doc "$pkgdir"/usr/share/doc
+
+  _pick libxkbcommon-x11 "$pkgdir"/usr/lib/*x11*
+  _pick libxkbcommon-x11 "$pkgdir"/usr/lib/pkgconfig/*x11*
+  _pick libxkbcommon-x11 "$pkgdir"/usr/lib/xkbcommon/*x11*
+  _pick libxkbcommon-x11 "$pkgdir"/usr/include/xkbcommon/*x11*
+  _pick libxkbcommon-x11 "$pkgdir"/usr/share/man/man1/*x11*
+}
+
+package_libxkbcommon-doc() {
+  pkgdesc="API documentation for libxkbcommon"
+
+  mv libxkbcommon-doc/* "$pkgdir"
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgbase/LICENSE
+}
+
+package_libxkbcommon-x11() {
+  pkgdesc="Keyboard handling library using XKB data for X11 XCB clients"
+  depends=(libxkbcommon libxkbcommon.so libxcb)
+  provides=(libxkbcommon-x11.so)
+
+  mv libxkbcommon-x11/* "$pkgdir"
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgbase/LICENSE
+}

Copied: libxkbcommon/repos/testing-x86_64/fix-test.diff (from rev 395530, 
libxkbcommon/trunk/fix-test.diff)
===
--- testing-x86_64/fix-test.diff(rev 0)
+++ testing-x86_64/fix-test.diff2020-09-06 21:32:00 UTC (rev 395531)
@@ -0,0 +1,13 @@
+diff --git i/test/tool-option-parsing.py w/test/tool-option-parsing.py
+index de638d1..367e799 100755
+--- i/test/tool-option-parsing.py
 w/test/tool-option-parsing.py
+@@ -170,7 +170,7 @@ def test_invalid_option(tool):
+ # xkbcli --version
+ def test_xkbcli_version(xkbcli):
+ stdout, stderr = xkbcli.run_command_success(['--version'])
+-assert stdout.startswith('0')
++assert stdout.startswith('1')
+ assert stderr == ''
+ 
+ 


[arch-commits] Commit in libxkbcommon/trunk (PKGBUILD fix-test.diff)

2020-09-06 Thread Jan Steffens via arch-commits
Date: Sunday, September 6, 2020 @ 21:31:46
  Author: heftig
Revision: 395530

1.0.0-1

Added:
  libxkbcommon/trunk/fix-test.diff
Modified:
  libxkbcommon/trunk/PKGBUILD

---+
 PKGBUILD  |   71 ++--
 fix-test.diff |   13 ++
 2 files changed, 52 insertions(+), 32 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 18:01:06 UTC (rev 395529)
+++ PKGBUILD2020-09-06 21:31:46 UTC (rev 395530)
@@ -1,21 +1,23 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan Alexander Steffens (heftig) 
 # Contributor: Daniel Micay 
 # Contributor: Mladen Pejakovic 
 
 pkgbase=libxkbcommon
 pkgname=(libxkbcommon libxkbcommon-doc libxkbcommon-x11)
-pkgver=0.10.0
+pkgver=1.0.0
 pkgrel=1
 pkgdesc="Keymap handling library for toolkits and window systems"
 url="https://xkbcommon.org/;
 arch=(x86_64)
 license=(custom)
-depends=(xkeyboard-config glibc)
-makedepends=(libxcb doxygen git graphviz wayland wayland-protocols meson)
-checkdepends=(xorg-server-xvfb libgl)
-_commit=e3c3420a7146f4ea6225d6fb417baa05a79c8202  # tags/xkbcommon-0.10.0^0
-source=("git+https://github.com/xkbcommon/libxkbcommon#commit=$_commit;)
-sha256sums=('SKIP')
+makedepends=(xkeyboard-config libxml2 libxcb wayland wayland-protocols doxygen
+ git meson)
+checkdepends=(xorg-server-xvfb libgl python-pytest)
+_commit=12f99d0dfe012c07d82d70296bbcac8a0a8ac0a9  # tags/xkbcommon-1.0.0^0
+source=("git+https://github.com/xkbcommon/libxkbcommon#commit=$_commit;
+fix-test.diff)
+sha256sums=('SKIP'
+'e965cf7516d3158f3de1016e955f804a14b3e514df66520d7919e5289eefde69')
 
 pkgver() {
   cd $pkgbase
@@ -24,14 +26,12 @@
 
 prepare() {
   cd $pkgbase
-
-  printf '%s\n' >>doc/Doxyfile.in \
-HAVE_DOT=yes DOT_IMAGE_FORMAT=svg INTERACTIVE_SVG=yes
+  git apply -3 ../fix-test.diff
 }
 
 build() {
   arch-meson $pkgbase build
-  ninja -C build
+  meson compile -C build
 }
 
 check() {
@@ -38,39 +38,46 @@
   xvfb-run -a meson test -C build --print-errorlogs
 }
 
+_pick() {
+  local p="$1" f d; shift
+  for f; do
+d="$srcdir/$p/${f#$pkgdir/}"
+mkdir -p "$(dirname "$d")"
+mv "$f" "$d"
+rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
+  done
+}
+
 package_libxkbcommon() {
+  depends=(xkeyboard-config libxml2)
+  optdepends=('libxkbcommon-x11: xkbcli interactive-x11'
+  'wayland: xkbcli interactive-wayland')
+  provides=(libxkbcommon.so libxkbregistry.so)
+
   DESTDIR="$pkgdir" meson install -C build
   install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgbase/LICENSE
 
-### Split libxkbcommon-doc
+  _pick libxkbcommon-doc "$pkgdir"/usr/share/doc
 
-  mkdir -p "$srcdir"/doc/usr/share
-  mv "$pkgdir"/usr/share/doc "$srcdir/doc/usr/share"
-
-### Split libxkbcommon-x11
-
-  mkdir -p "$srcdir"/x11/usr/{include/xkbcommon,lib/pkgconfig}
-  mv "$pkgdir"/usr/lib/*x11* "$srcdir/x11/usr/lib"
-  mv "$pkgdir"/usr/lib/pkgconfig/*x11* "$srcdir/x11/usr/lib/pkgconfig"
-  mv "$pkgdir"/usr/include/xkbcommon/*x11* "$srcdir/x11/usr/include/xkbcommon"
+  _pick libxkbcommon-x11 "$pkgdir"/usr/lib/*x11*
+  _pick libxkbcommon-x11 "$pkgdir"/usr/lib/pkgconfig/*x11*
+  _pick libxkbcommon-x11 "$pkgdir"/usr/lib/xkbcommon/*x11*
+  _pick libxkbcommon-x11 "$pkgdir"/usr/include/xkbcommon/*x11*
+  _pick libxkbcommon-x11 "$pkgdir"/usr/share/man/man1/*x11*
 }
 
 package_libxkbcommon-doc() {
   pkgdesc="API documentation for libxkbcommon"
-  depends=(libxkbcommon)
 
-  mv doc/* "$pkgdir"
-
-  install -d "$pkgdir/usr/share/licenses"
-  ln -s libxkbcommon "$pkgdir/usr/share/licenses/$pkgname"
+  mv libxkbcommon-doc/* "$pkgdir"
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgbase/LICENSE
 }
 
 package_libxkbcommon-x11() {
   pkgdesc="Keyboard handling library using XKB data for X11 XCB clients"
-  depends=(libxkbcommon libxcb)
+  depends=(libxkbcommon libxkbcommon.so libxcb)
+  provides=(libxkbcommon-x11.so)
 
-  mv x11/* "$pkgdir"
-
-  install -d "$pkgdir/usr/share/licenses"
-  ln -s libxkbcommon "$pkgdir/usr/share/licenses/$pkgname"
+  mv libxkbcommon-x11/* "$pkgdir"
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgbase/LICENSE
 }

Added: fix-test.diff
===
--- fix-test.diff   (rev 0)
+++ fix-test.diff   2020-09-06 21:31:46 UTC (rev 395530)
@@ -0,0 +1,13 @@
+diff --git i/test/tool-option-parsing.py w/test/tool-option-parsing.py
+index de638d1..367e799 100755
+--- i/test/tool-option-parsing.py
 w/test/tool-option-parsing.py
+@@ -170,7 +170,7 @@ def test_invalid_option(tool):
+ # xkbcli --version
+ def test_xkbcli_version(xkbcli):
+ stdout, stderr = xkbcli.run_command_success(['--version'])
+-assert stdout.startswith('0')
++assert stdout.startswith('1')
+ assert stderr == ''
+ 
+ 


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:33:18
  Author: felixonmars
Revision: 699364

upgpkg: haskell-tasty-quickcheck 0.10.1.1-46: rebuild with hspec 2.7.3, 
hspec-core 2.7.3, hspec-discover 2.7.3

Modified:
  haskell-tasty-quickcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 20:32:38 UTC (rev 699363)
+++ PKGBUILD2020-09-06 20:33:18 UTC (rev 699364)
@@ -4,7 +4,7 @@
 _hkgname=tasty-quickcheck
 pkgname=haskell-tasty-quickcheck
 pkgver=0.10.1.1
-pkgrel=45
+pkgrel=46
 pkgdesc="QuickCheck support for the Tasty test framework."
 url="http://documentup.com/feuerbach/tasty;
 license=("MIT")


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:33:27
  Author: felixonmars
Revision: 699365

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-tasty-quickcheck/repos/community-staging-x86_64/PKGBUILD
(from rev 699364, haskell-tasty-quickcheck/trunk/PKGBUILD)
Deleted:
  haskell-tasty-quickcheck/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 20:33:18 UTC (rev 699364)
+++ PKGBUILD2020-09-06 20:33:27 UTC (rev 699365)
@@ -1,44 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-_hkgname=tasty-quickcheck
-pkgname=haskell-tasty-quickcheck
-pkgver=0.10.1.1
-pkgrel=45
-pkgdesc="QuickCheck support for the Tasty test framework."
-url="http://documentup.com/feuerbach/tasty;
-license=("MIT")
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-optparse-applicative' 'haskell-quickcheck' 
'haskell-random'
- 'haskell-tagged' 'haskell-tasty')
-makedepends=('ghc' 'haskell-tasty-hunit' 'haskell-pcre-light')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('13cfcc99eb9988d4842327d96f0e58f5ba6c653d3027a4adb307d4101bc2f7deee0033197b4358a837ace0d03423bdafe2197b029da6a64d8b650ee2f5bd958d')
-
-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-tasty-quickcheck/repos/community-staging-x86_64/PKGBUILD (from 
rev 699364, haskell-tasty-quickcheck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 20:33:27 UTC (rev 699365)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tasty-quickcheck
+pkgname=haskell-tasty-quickcheck
+pkgver=0.10.1.1
+pkgrel=46
+pkgdesc="QuickCheck support for the Tasty test framework."
+url="http://documentup.com/feuerbach/tasty;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-optparse-applicative' 'haskell-quickcheck' 
'haskell-random'
+ 'haskell-tagged' 'haskell-tasty')
+makedepends=('ghc' 'haskell-tasty-hunit' 'haskell-pcre-light')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('13cfcc99eb9988d4842327d96f0e58f5ba6c653d3027a4adb307d4101bc2f7deee0033197b4358a837ace0d03423bdafe2197b029da6a64d8b650ee2f5bd958d')
+
+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-tasty-hunit/repos/community-staging-x86_64 (2 files)

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:32:38
  Author: felixonmars
Revision: 699363

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-tasty-hunit/repos/community-staging-x86_64/PKGBUILD
(from rev 699362, haskell-tasty-hunit/trunk/PKGBUILD)
Deleted:
  haskell-tasty-hunit/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 20:32:28 UTC (rev 699362)
+++ PKGBUILD2020-09-06 20:32:38 UTC (rev 699363)
@@ -1,38 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-_hkgname=tasty-hunit
-pkgname=haskell-tasty-hunit
-pkgver=0.10.0.2
-pkgrel=54
-pkgdesc="HUnit support for the Tasty test framework."
-url="https://documentup.com/feuerbach/tasty;
-license=("MIT")
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-tasty' 'haskell-call-stack')
-makedepends=('ghc')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('82f70cd7813affeb756de89842a77070e688169eb35a386fbc4db36b65d8c960bca7b923294918e10b65281d3265820f9592398550af8af92027960d48562fd0')
-
-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
-}

Copied: haskell-tasty-hunit/repos/community-staging-x86_64/PKGBUILD (from rev 
699362, haskell-tasty-hunit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 20:32:38 UTC (rev 699363)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tasty-hunit
+pkgname=haskell-tasty-hunit
+pkgver=0.10.0.2
+pkgrel=55
+pkgdesc="HUnit support for the Tasty test framework."
+url="https://documentup.com/feuerbach/tasty;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-tasty' 'haskell-call-stack')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('82f70cd7813affeb756de89842a77070e688169eb35a386fbc4db36b65d8c960bca7b923294918e10b65281d3265820f9592398550af8af92027960d48562fd0')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:32:28
  Author: felixonmars
Revision: 699362

upgpkg: haskell-tasty-hunit 0.10.0.2-55: rebuild with hspec 2.7.3, hspec-core 
2.7.3, hspec-discover 2.7.3

Modified:
  haskell-tasty-hunit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 20:31:49 UTC (rev 699361)
+++ PKGBUILD2020-09-06 20:32:28 UTC (rev 699362)
@@ -4,7 +4,7 @@
 _hkgname=tasty-hunit
 pkgname=haskell-tasty-hunit
 pkgver=0.10.0.2
-pkgrel=54
+pkgrel=55
 pkgdesc="HUnit support for the Tasty test framework."
 url="https://documentup.com/feuerbach/tasty;
 license=("MIT")


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:30:47
  Author: felixonmars
Revision: 699358

upgpkg: haskell-split 0.2.3.4-54: rebuild with hspec 2.7.3, hspec-core 2.7.3, 
hspec-discover 2.7.3

Modified:
  haskell-split/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 20:29:58 UTC (rev 699357)
+++ PKGBUILD2020-09-06 20:30:47 UTC (rev 699358)
@@ -4,7 +4,7 @@
 _hkgname=split
 pkgname=haskell-split
 pkgver=0.2.3.4
-pkgrel=53
+pkgrel=54
 pkgdesc="Combinator library for splitting lists."
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("BSD")


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:31:49
  Author: felixonmars
Revision: 699361

archrelease: copy trunk to community-staging-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 20:31:40 UTC (rev 699360)
+++ PKGBUILD2020-09-06 20:31:49 UTC (rev 699361)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-_hkgname=tasty
-pkgname=haskell-tasty
-pkgver=1.3.1
-pkgrel=27
-pkgdesc="Modern and extensible testing framework"
-url="http://documentup.com/feuerbach/tasty;
-license=("MIT")
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-async' 'haskell-clock'
- 'haskell-optparse-applicative' 'haskell-tagged' 
'haskell-unbounded-delays'
- 'haskell-wcwidth')
-makedepends=('ghc')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('ed6e79f16a2c9e2fb7e82dce09b2ecb293b96bb42337d5cd8a15e822d3e35400842998ebda9b416c267d14f20a6e13c769a70ff22a58f7da5db3aa11e83411b2')
-
-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 \
--fclock
-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
-}

Copied: haskell-tasty/repos/community-staging-x86_64/PKGBUILD (from rev 699360, 
haskell-tasty/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 20:31:49 UTC (rev 699361)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tasty
+pkgname=haskell-tasty
+pkgver=1.3.1
+pkgrel=28
+pkgdesc="Modern and extensible testing framework"
+url="http://documentup.com/feuerbach/tasty;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-async' 'haskell-clock'
+ 'haskell-optparse-applicative' 'haskell-tagged' 
'haskell-unbounded-delays'
+ 'haskell-wcwidth')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('ed6e79f16a2c9e2fb7e82dce09b2ecb293b96bb42337d5cd8a15e822d3e35400842998ebda9b416c267d14f20a6e13c769a70ff22a58f7da5db3aa11e83411b2')
+
+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 \
+-fclock
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:31:40
  Author: felixonmars
Revision: 699360

upgpkg: haskell-tasty 1.3.1-28: rebuild with hspec 2.7.3, hspec-core 2.7.3, 
hspec-discover 2.7.3

Modified:
  haskell-tasty/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 20:30:56 UTC (rev 699359)
+++ PKGBUILD2020-09-06 20:31:40 UTC (rev 699360)
@@ -4,7 +4,7 @@
 _hkgname=tasty
 pkgname=haskell-tasty
 pkgver=1.3.1
-pkgrel=27
+pkgrel=28
 pkgdesc="Modern and extensible testing framework"
 url="http://documentup.com/feuerbach/tasty;
 license=("MIT")


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:30:56
  Author: felixonmars
Revision: 699359

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-split/repos/community-staging-x86_64/PKGBUILD (from rev 699358, 
haskell-split/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-06 20:30:56 UTC (rev 699359)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=split
+pkgname=haskell-split
+pkgver=0.2.3.4
+pkgrel=54
+pkgdesc="Combinator library for splitting lists."
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('a60566106a5f285224b0d555d30b2af3315c707012f5c8e9384d4b8216894e6a6263e838b0e367418c4f8bfb5f4f2cc056ca14acb6b27a5ca3446576b057ca15')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $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-meta/repos/community-staging-x86_64 (2 files)

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:29:58
  Author: felixonmars
Revision: 699357

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hspec-meta/repos/community-staging-x86_64/PKGBUILD
(from rev 699356, haskell-hspec-meta/trunk/PKGBUILD)
Deleted:
  haskell-hspec-meta/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 20:29:48 UTC (rev 699356)
+++ PKGBUILD2020-09-06 20:29:58 UTC (rev 699357)
@@ -1,39 +0,0 @@
-# Maintainer: Felix Yan 
-
-_hkgname=hspec-meta
-pkgname=haskell-hspec-meta
-pkgver=2.6.0
-pkgrel=99
-pkgdesc="A version of Hspec which is used to test Hspec itself"
-url="http://hspec.github.io/;
-license=('MIT')
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-quickcheck' 'haskell-hspec-expectations' 
'haskell-hunit'
- 'haskell-setenv' 'haskell-random' 'haskell-quickcheck-io' 
'haskell-ansi-terminal'
- 'haskell-clock' 'haskell-call-stack')
-makedepends=('ghc')
-source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('c35d09f84c093ab5fe7ae31cf004d485cf6d15a06ee7c98270d3f5c471da6e0c9a71c8ec6ca0aa87e7454c9470b218c24538270711677003dc63d316fb23dce9')
-
-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
-}

Copied: haskell-hspec-meta/repos/community-staging-x86_64/PKGBUILD (from rev 
699356, haskell-hspec-meta/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 20:29:58 UTC (rev 699357)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hspec-meta
+pkgname=haskell-hspec-meta
+pkgver=2.6.0
+pkgrel=100
+pkgdesc="A version of Hspec which is used to test Hspec itself"
+url="http://hspec.github.io/;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-hspec-expectations' 
'haskell-hunit'
+ 'haskell-setenv' 'haskell-random' 'haskell-quickcheck-io' 
'haskell-ansi-terminal'
+ 'haskell-clock' 'haskell-call-stack')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('c35d09f84c093ab5fe7ae31cf004d485cf6d15a06ee7c98270d3f5c471da6e0c9a71c8ec6ca0aa87e7454c9470b218c24538270711677003dc63d316fb23dce9')
+
+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-hspec-meta/trunk (PKGBUILD)

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:29:48
  Author: felixonmars
Revision: 699356

upgpkg: haskell-hspec-meta 2.6.0-100: rebuild with hspec 2.7.3, hspec-core 
2.7.3, hspec-discover 2.7.3

Modified:
  haskell-hspec-meta/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 20:29:01 UTC (rev 699355)
+++ PKGBUILD2020-09-06 20:29:48 UTC (rev 699356)
@@ -3,7 +3,7 @@
 _hkgname=hspec-meta
 pkgname=haskell-hspec-meta
 pkgver=2.6.0
-pkgrel=99
+pkgrel=100
 pkgdesc="A version of Hspec which is used to test Hspec itself"
 url="http://hspec.github.io/;
 license=('MIT')


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:29:01
  Author: felixonmars
Revision: 699355

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-quickcheck-io/repos/community-staging-x86_64/PKGBUILD
(from rev 699354, haskell-quickcheck-io/trunk/PKGBUILD)
Deleted:
  haskell-quickcheck-io/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 20:28:52 UTC (rev 699354)
+++ PKGBUILD2020-09-06 20:29:01 UTC (rev 699355)
@@ -1,37 +0,0 @@
-# Maintainer: Felix Yan 
-
-_hkgname=quickcheck-io
-pkgname=haskell-quickcheck-io
-pkgver=0.2.0
-pkgrel=103
-pkgdesc="Use HUnit assertions as QuickCheck properties"
-url="https://github.com/hspec/quickcheck-io;
-license=('MIT')
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-hunit' 'haskell-quickcheck')
-makedepends=('ghc')
-source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('02e1f40bac8f31f27c21d1d2df9f226816f9da871092b09f0451a8321e250c9e94887f94889be421c9d0034e0a27b02c907d16eb7da5a4376df42c7c1fbd01df')
-
-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
-}

Copied: haskell-quickcheck-io/repos/community-staging-x86_64/PKGBUILD (from rev 
699354, haskell-quickcheck-io/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 20:29:01 UTC (rev 699355)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+
+_hkgname=quickcheck-io
+pkgname=haskell-quickcheck-io
+pkgver=0.2.0
+pkgrel=104
+pkgdesc="Use HUnit assertions as QuickCheck properties"
+url="https://github.com/hspec/quickcheck-io;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hunit' 'haskell-quickcheck')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('02e1f40bac8f31f27c21d1d2df9f226816f9da871092b09f0451a8321e250c9e94887f94889be421c9d0034e0a27b02c907d16eb7da5a4376df42c7c1fbd01df')
+
+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-optparse-applicative/repos (2 files)

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:28:13
  Author: felixonmars
Revision: 699353

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-optparse-applicative/repos/community-staging-x86_64/
  haskell-optparse-applicative/repos/community-staging-x86_64/PKGBUILD
(from rev 699352, haskell-optparse-applicative/trunk/PKGBUILD)

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

Copied: haskell-optparse-applicative/repos/community-staging-x86_64/PKGBUILD 
(from rev 699352, haskell-optparse-applicative/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-06 20:28:13 UTC (rev 699353)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Roger Duran 
+
+_hkgname=optparse-applicative
+pkgname=haskell-optparse-applicative
+pkgver=0.15.1.0
+pkgrel=51
+pkgdesc="Utilities and combinators for parsing command line options"
+url="https://github.com/pcapriotti/optparse-applicative;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-ansi-wl-pprint" "haskell-transformers-compat")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('e7ab0a2b4812bbfe7802c2d51a45a4f5a5ea162b094631dc6ee4cd79e5def4101ccb04305cfa16942926809ed656f91aa6f68c4d98e93171ca9be99ba40cc51e')
+
+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-quickcheck-io/trunk (PKGBUILD)

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:28:52
  Author: felixonmars
Revision: 699354

upgpkg: haskell-quickcheck-io 0.2.0-104: rebuild with hspec 2.7.3, hspec-core 
2.7.3, hspec-discover 2.7.3

Modified:
  haskell-quickcheck-io/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 20:28:13 UTC (rev 699353)
+++ PKGBUILD2020-09-06 20:28:52 UTC (rev 699354)
@@ -3,7 +3,7 @@
 _hkgname=quickcheck-io
 pkgname=haskell-quickcheck-io
 pkgver=0.2.0
-pkgrel=103
+pkgrel=104
 pkgdesc="Use HUnit assertions as QuickCheck properties"
 url="https://github.com/hspec/quickcheck-io;
 license=('MIT')


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:28:05
  Author: felixonmars
Revision: 699352

upgpkg: haskell-optparse-applicative 0.15.1.0-51: rebuild with hspec 2.7.3, 
hspec-core 2.7.3, hspec-discover 2.7.3

Modified:
  haskell-optparse-applicative/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 20:27:23 UTC (rev 699351)
+++ PKGBUILD2020-09-06 20:28:05 UTC (rev 699352)
@@ -4,7 +4,7 @@
 _hkgname=optparse-applicative
 pkgname=haskell-optparse-applicative
 pkgver=0.15.1.0
-pkgrel=50
+pkgrel=51
 pkgdesc="Utilities and combinators for parsing command line options"
 url="https://github.com/pcapriotti/optparse-applicative;
 license=("BSD")


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:27:23
  Author: felixonmars
Revision: 699351

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-comonad/repos/community-staging-x86_64/PKGBUILD (from rev 
699350, haskell-comonad/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-06 20:27:23 UTC (rev 699351)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=comonad
+pkgname=haskell-comonad
+pkgver=5.0.6
+pkgrel=37
+pkgdesc="Comonads"
+url="https://github.com/ekmett/comonad/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-distributive' 'haskell-tagged' 
'haskell-transformers-compat')
+makedepends=('haskell-cabal-doctest' 'ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('0b7fc727a2b972203d1651049a4f4c371a8f134d64d36409d60fbc4d11b7eb9650c79cf917abaa3f66084d7c5e9f32b288862a5e93c3d93c16c11533a446cfa5')
+
+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 \
+-fdistributive -fcontravariant -fcontainers -ftest-doctests
+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-comonad/trunk (PKGBUILD)

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:27:14
  Author: felixonmars
Revision: 699350

upgpkg: haskell-comonad 5.0.6-37: rebuild with hspec 2.7.3, hspec-core 2.7.3, 
hspec-discover 2.7.3

Modified:
  haskell-comonad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 20:26:30 UTC (rev 699349)
+++ PKGBUILD2020-09-06 20:27:14 UTC (rev 699350)
@@ -4,7 +4,7 @@
 _hkgname=comonad
 pkgname=haskell-comonad
 pkgver=5.0.6
-pkgrel=36
+pkgrel=37
 pkgdesc="Comonads"
 url="https://github.com/ekmett/comonad/;
 license=("BSD")


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:26:22
  Author: felixonmars
Revision: 699348

upgpkg: haskell-distributive 0.6.2-18: rebuild with hspec 2.7.3, hspec-core 
2.7.3, hspec-discover 2.7.3

Modified:
  haskell-distributive/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 20:25:40 UTC (rev 699347)
+++ PKGBUILD2020-09-06 20:26:22 UTC (rev 699348)
@@ -4,7 +4,7 @@
 _hkgname=distributive
 pkgname=haskell-distributive
 pkgver=0.6.2
-pkgrel=17
+pkgrel=18
 pkgdesc="Distributive functors -- Dual to Traversable"
 url="https://github.com/ekmett/distributive/;
 license=("BSD")


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:26:30
  Author: felixonmars
Revision: 699349

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-distributive/repos/community-staging-x86_64/PKGBUILD (from rev 
699348, haskell-distributive/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-06 20:26:30 UTC (rev 699349)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=distributive
+pkgname=haskell-distributive
+pkgver=0.6.2
+pkgrel=18
+pkgdesc="Distributive functors -- Dual to Traversable"
+url="https://github.com/ekmett/distributive/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-base-orphans" "haskell-tagged")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('aff03270f8e9ce062ef6efb7d8cc27a811a286a6107dedd931850ff7abe271725cde8f27c1a7ea76c63a0888931a0ac058b5607d2097ef5b65b4ce95538d1fe1')
+
+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 \
+-ftagged -f-semigroups
+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-ansi-wl-pprint/trunk (PKGBUILD)

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:25:30
  Author: felixonmars
Revision: 699346

upgpkg: haskell-ansi-wl-pprint 0.6.9-54: rebuild with hspec 2.7.3, hspec-core 
2.7.3, hspec-discover 2.7.3

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

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 20:24:52 UTC (rev 699345)
+++ PKGBUILD2020-09-06 20:25:30 UTC (rev 699346)
@@ -4,7 +4,7 @@
 _hkgname=ansi-wl-pprint
 pkgname=haskell-ansi-wl-pprint
 pkgver=0.6.9
-pkgrel=53
+pkgrel=54
 pkgdesc="The Wadler/Leijen Pretty Printer for colored ANSI terminal output"
 url="https://github.com/ekmett/ansi-wl-pprint;
 license=("BSD")


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:25:40
  Author: felixonmars
Revision: 699347

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-ansi-wl-pprint/repos/community-staging-x86_64/PKGBUILD (from 
rev 699346, haskell-ansi-wl-pprint/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-06 20:25:40 UTC (rev 699347)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ansi-wl-pprint
+pkgname=haskell-ansi-wl-pprint
+pkgver=0.6.9
+pkgrel=54
+pkgdesc="The Wadler/Leijen Pretty Printer for colored ANSI terminal output"
+url="https://github.com/ekmett/ansi-wl-pprint;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ansi-terminal')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('2a66236f740f0b45b6133555e8b1315dc85ece1c16dd51e4aa7f31d2fee03d66869af5f81e6383aa840f503c2cad46f3655f53b784ebca7b3480efb53eea2a04')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *0.10/<1/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-example
+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-ansi-terminal/repos (2 files)

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:24:52
  Author: felixonmars
Revision: 699345

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-ansi-terminal/repos/community-staging-x86_64/
  haskell-ansi-terminal/repos/community-staging-x86_64/PKGBUILD
(from rev 699344, haskell-ansi-terminal/trunk/PKGBUILD)

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

Copied: haskell-ansi-terminal/repos/community-staging-x86_64/PKGBUILD (from rev 
699344, haskell-ansi-terminal/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-06 20:24:52 UTC (rev 699345)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ansi-terminal
+pkgname=haskell-ansi-terminal
+pkgver=0.10.3
+pkgrel=34
+pkgdesc="Simple ANSI terminal support, with Windows compatibility"
+url="https://github.com/feuerbach/ansi-terminal;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-colour')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('231dfaaef2e7b1fb40a0e63bcdce984f914dd0c17af90bc2415c127d503dc438d1952dadfbb524f9ae83d872b30a353d875dda74eb492536cf8953c1e4224187')
+
+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-example
+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-ansi-terminal/trunk (PKGBUILD)

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:24:44
  Author: felixonmars
Revision: 699344

upgpkg: haskell-ansi-terminal 0.10.3-34: rebuild with hspec 2.7.3, hspec-core 
2.7.3, hspec-discover 2.7.3

Modified:
  haskell-ansi-terminal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 20:23:54 UTC (rev 699343)
+++ PKGBUILD2020-09-06 20:24:44 UTC (rev 699344)
@@ -4,7 +4,7 @@
 _hkgname=ansi-terminal
 pkgname=haskell-ansi-terminal
 pkgver=0.10.3
-pkgrel=33
+pkgrel=34
 pkgdesc="Simple ANSI terminal support, with Windows compatibility"
 url="https://github.com/feuerbach/ansi-terminal;
 license=("BSD")


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:23:46
  Author: felixonmars
Revision: 699342

upgpkg: haskell-colour 2.3.5-58: rebuild with hspec 2.7.3, hspec-core 2.7.3, 
hspec-discover 2.7.3

Modified:
  haskell-colour/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 20:23:44 UTC (rev 699341)
+++ PKGBUILD2020-09-06 20:23:46 UTC (rev 699342)
@@ -4,7 +4,7 @@
 _hkgname=colour
 pkgname=haskell-colour
 pkgver=2.3.5
-pkgrel=57
+pkgrel=58
 pkgdesc="A model for human colour/color perception"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("MIT")


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:23:54
  Author: felixonmars
Revision: 699343

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-colour/repos/community-staging-x86_64/PKGBUILD (from rev 
699342, haskell-colour/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-06 20:23:54 UTC (rev 699343)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=colour
+pkgname=haskell-colour
+pkgver=2.3.5
+pkgrel=58
+pkgdesc="A model for human colour/color perception"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' )
+checkdepends=('haskell-quickcheck' 'haskell-random' 'haskell-test-framework'
+  'haskell-test-framework-quickcheck2')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('2232f51b3cfdda1a64436e8395c2441e49db083982a0370d3ec38c304b0a6234666887b3abc886107a9b21c425d3253284cce0186c1a210a302a0a14808364d8')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *2.14/<3/;s/< *1.2/<2/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --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 uglify-js/repos/community-any (4 files)

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:23:44
  Author: felixonmars
Revision: 699341

archrelease: copy trunk to community-any

Added:
  uglify-js/repos/community-any/PKGBUILD
(from rev 699340, uglify-js/trunk/PKGBUILD)
  uglify-js/repos/community-any/uglify-js.install
(from rev 699340, uglify-js/trunk/uglify-js.install)
Deleted:
  uglify-js/repos/community-any/PKGBUILD
  uglify-js/repos/community-any/uglify-js.install

---+
 PKGBUILD  |   64 ++--
 uglify-js.install |   16 ++---
 2 files changed, 40 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 20:23:33 UTC (rev 699340)
+++ PKGBUILD2020-09-06 20:23:44 UTC (rev 699341)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Daniel Nagy 
-
-pkgname=uglify-js
-pkgver=3.10.3
-pkgrel=1
-pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
-arch=('any')
-url='http://lisperator.net/uglifyjs'
-license=('BSD')
-depends=('nodejs')
-makedepends=('npm')
-install=${pkgname}.install
-source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-sha512sums=('2e1d348baf547fa1bbe26bd8a47088f4acb7075bfc6eefd613bc7ecc91cf73c8a51e48fcf4a305b4760ba3d1271abe7b3764e877c18eb727465bf7b65ada')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s "../../../lib/node_modules/uglify-js/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
-
-  # Non-deterministic race in npm gives 777 permissions to random directories.
-  # See https://github.com/npm/npm/issues/9359 for details.
-  chmod -R u=rwX,go=rX "$pkgdir"
-
-  # npm installs package.json owned by build user
-  # https://bugs.archlinux.org/task/63396
-  chown -R root:root "$pkgdir"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: uglify-js/repos/community-any/PKGBUILD (from rev 699340, 
uglify-js/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 20:23:44 UTC (rev 699341)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+
+pkgname=uglify-js
+pkgver=3.10.4
+pkgrel=1
+pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
+arch=('any')
+url='http://lisperator.net/uglifyjs'
+license=('BSD')
+depends=('nodejs')
+makedepends=('npm')
+install=${pkgname}.install
+source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+sha512sums=('901153dd4e03723e3fa49e76bdf8c249fc8bcaf1bd55862e1983e6acfbc0c51c3f8bbc47893e15bc27affae88431c1048aee94341e8a816986b5251821649c6f')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s "../../../lib/node_modules/uglify-js/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
+
+  # Non-deterministic race in npm gives 777 permissions to random directories.
+  # See https://github.com/npm/npm/issues/9359 for details.
+  chmod -R u=rwX,go=rX "$pkgdir"
+
+  # npm installs package.json owned by build user
+  # https://bugs.archlinux.org/task/63396
+  chown -R root:root "$pkgdir"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: uglify-js.install
===
--- uglify-js.install   2020-09-06 20:23:33 UTC (rev 699340)
+++ uglify-js.install   2020-09-06 20:23:44 UTC (rev 699341)
@@ -1,8 +0,0 @@
-post_install() {
-  # fixup permissions
-  chmod 755 /usr/lib/node_modules
-}
-
-post_upgrade() {
-  post_install
-}

Copied: uglify-js/repos/community-any/uglify-js.install (from rev 699340, 
uglify-js/trunk/uglify-js.install)
===
--- uglify-js.install   (rev 0)
+++ uglify-js.install   2020-09-06 20:23:44 UTC (rev 699341)
@@ -0,0 +1,8 @@
+post_install() {
+  # fixup permissions
+  chmod 755 /usr/lib/node_modules
+}
+
+post_upgrade() {
+  post_install
+}


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:23:33
  Author: felixonmars
Revision: 699340

upgpkg: uglify-js 3.10.4-1

Modified:
  uglify-js/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 20:22:53 UTC (rev 699339)
+++ PKGBUILD2020-09-06 20:23:33 UTC (rev 699340)
@@ -2,7 +2,7 @@
 # Contributor: Daniel Nagy 
 
 pkgname=uglify-js
-pkgver=3.10.3
+pkgver=3.10.4
 pkgrel=1
 pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
 arch=('any')
@@ -13,7 +13,7 @@
 install=${pkgname}.install
 source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-sha512sums=('2e1d348baf547fa1bbe26bd8a47088f4acb7075bfc6eefd613bc7ecc91cf73c8a51e48fcf4a305b4760ba3d1271abe7b3764e877c18eb727465bf7b65ada')
+sha512sums=('901153dd4e03723e3fa49e76bdf8c249fc8bcaf1bd55862e1983e6acfbc0c51c3f8bbc47893e15bc27affae88431c1048aee94341e8a816986b5251821649c6f')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:22:53
  Author: felixonmars
Revision: 699339

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-test-framework-quickcheck2/repos/community-staging-x86_64/
  haskell-test-framework-quickcheck2/repos/community-staging-x86_64/PKGBUILD
(from rev 699338, haskell-test-framework-quickcheck2/trunk/PKGBUILD)

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

Copied: 
haskell-test-framework-quickcheck2/repos/community-staging-x86_64/PKGBUILD 
(from rev 699338, haskell-test-framework-quickcheck2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-06 20:22:53 UTC (rev 699339)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=test-framework-quickcheck2
+pkgname=haskell-test-framework-quickcheck2
+pkgver=0.3.0.5
+pkgrel=80
+pkgdesc="QuickCheck-2 support for the test-framework package"
+url="https://haskell.github.io/test-framework/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-test-framework' 'haskell-quickcheck' 
'haskell-extensible-exceptions'
+ 'haskell-random')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('58c6177d52829ba1ea1858a11101e5b21ae4e4543f8f829779f62208ad16083b41e9f3b2275392693698ef3d46912096c368d90db0d67ff136af4fa73d5e1d43')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *2.13/<3/;s/< *1.2/<2/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--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-test-framework/repos (2 files)

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:21:56
  Author: felixonmars
Revision: 699337

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-test-framework/repos/community-staging-x86_64/PKGBUILD (from 
rev 699336, haskell-test-framework/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-06 20:21:56 UTC (rev 699337)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=test-framework
+pkgname=haskell-test-framework
+pkgver=0.8.2.0
+pkgrel=82
+pkgdesc="Framework for running and organising tests, with HUnit and QuickCheck 
support"
+url="https://batterseapower.github.io/test-framework/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-ansi-wl-pprint' 
'haskell-hostname'
+ 'haskell-old-locale' 'haskell-random' 'haskell-regex-posix' 
'haskell-xml')
+makedepends=('ghc' 'haskell-hunit' 'haskell-quickcheck' 'haskell-libxml')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('d8e7ea274819a1b49b9f938df527d22c808f456d25b84f03173ed5739c230fb037a57ce90c38f571801ee38e86bed6826df1c93f184e4a803c72ce5f41e4')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e '/semigroups/d' -e 's/< *0.6/<1/;s/< *0.9/<1/;s/< *1.9/<2/;s/< 
*1.2/<2/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+# --enable-tests \  Doesn't work with new QuickCheck
+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-test-framework-quickcheck2/trunk (PKGBUILD)

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:22:43
  Author: felixonmars
Revision: 699338

upgpkg: haskell-test-framework-quickcheck2 0.3.0.5-80: rebuild with hspec 
2.7.3, hspec-core 2.7.3, hspec-discover 2.7.3

Modified:
  haskell-test-framework-quickcheck2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 20:21:56 UTC (rev 699337)
+++ PKGBUILD2020-09-06 20:22:43 UTC (rev 699338)
@@ -4,7 +4,7 @@
 _hkgname=test-framework-quickcheck2
 pkgname=haskell-test-framework-quickcheck2
 pkgver=0.3.0.5
-pkgrel=79
+pkgrel=80
 pkgdesc="QuickCheck-2 support for the test-framework package"
 url="https://haskell.github.io/test-framework/;
 license=("BSD")


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 20:21:47
  Author: felixonmars
Revision: 699336

upgpkg: haskell-test-framework 0.8.2.0-82: rebuild with hspec 2.7.3, hspec-core 
2.7.3, hspec-discover 2.7.3

Modified:
  haskell-test-framework/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 19:33:27 UTC (rev 699335)
+++ PKGBUILD2020-09-06 20:21:47 UTC (rev 699336)
@@ -4,7 +4,7 @@
 _hkgname=test-framework
 pkgname=haskell-test-framework
 pkgver=0.8.2.0
-pkgrel=81
+pkgrel=82
 pkgdesc="Framework for running and organising tests, with HUnit and QuickCheck 
support"
 url="https://batterseapower.github.io/test-framework/;
 license=("BSD")


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

2020-09-06 Thread Maxim Baz via arch-commits
Date: Sunday, September 6, 2020 @ 19:33:27
  Author: maximbaz
Revision: 699335

archrelease: copy trunk to community-x86_64

Added:
  croc/repos/community-x86_64/PKGBUILD
(from rev 699334, croc/trunk/PKGBUILD)
Deleted:
  croc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 19:33:05 UTC (rev 699334)
+++ PKGBUILD2020-09-06 19:33:27 UTC (rev 699335)
@@ -1,36 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Mikuro Kagamine 
-
-pkgname=croc
-pkgver=8.3.1
-pkgrel=2
-pkgdesc='Easily and securely send things from one computer to another.'
-arch=('x86_64')
-url="https://github.com/schollz/${pkgname};
-license=('MIT')
-depends=('glibc')
-makedepends=('go')
-source=("${url}/releases/download/v${pkgver}/${pkgname}_${pkgver}_src.tar.gz")
-sha256sums=('58dbe55cdbd0c8255c40ac5045676b7e8a0af8e21732f80502efc8cd27330d87')
-
-build() {
-cd "${pkgname}-${pkgver}"
-export CGO_CPPFLAGS="${CPPFLAGS}"
-export CGO_CFLAGS="${CFLAGS}"
-export CGO_CXXFLAGS="${CXXFLAGS}"
-export CGO_LDFLAGS="${LDFLAGS}"
-export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=vendor -modcacherw"
-go build
-}
-
-check() {
-cd "${pkgname}-${pkgver}"
-go test ./...
-}
-
-package() {
-cd "${pkgname}-${pkgver}"
-install -Dm755 -t "${pkgdir}/usr/bin/" "${pkgname}"
-install -Dm644 -t "${pkgdir}/usr/lib/systemd/system/" "${pkgname}.service"
-install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
-}

Copied: croc/repos/community-x86_64/PKGBUILD (from rev 699334, 
croc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 19:33:27 UTC (rev 699335)
@@ -0,0 +1,36 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Mikuro Kagamine 
+
+pkgname=croc
+pkgver=8.3.1
+pkgrel=2
+pkgdesc='Easily and securely send things from one computer to another.'
+arch=('x86_64')
+url="https://github.com/schollz/${pkgname};
+license=('MIT')
+depends=('glibc')
+makedepends=('go')
+source=("${url}/releases/download/v${pkgver}/${pkgname}_${pkgver}_src.tar.gz")
+sha256sums=('58dbe55cdbd0c8255c40ac5045676b7e8a0af8e21732f80502efc8cd27330d87')
+
+build() {
+cd "${pkgname}-${pkgver}"
+export CGO_CPPFLAGS="${CPPFLAGS}"
+export CGO_CFLAGS="${CFLAGS}"
+export CGO_CXXFLAGS="${CXXFLAGS}"
+export CGO_LDFLAGS="${LDFLAGS}"
+export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=vendor -modcacherw"
+go build
+}
+
+check() {
+cd "${pkgname}-${pkgver}"
+go test ./...
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+install -Dm755 -t "${pkgdir}/usr/bin/" "${pkgname}"
+install -Dm644 -t "${pkgdir}/usr/lib/systemd/system/" "${pkgname}.service"
+install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
+}


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

2020-09-06 Thread Maxim Baz via arch-commits
Date: Sunday, September 6, 2020 @ 19:33:05
  Author: maximbaz
Revision: 699334

archrelease: copy trunk to community-x86_64

Added:
  croc/repos/community-x86_64/PKGBUILD
(from rev 699333, croc/trunk/PKGBUILD)
Deleted:
  croc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 19:33:02 UTC (rev 699333)
+++ PKGBUILD2020-09-06 19:33:05 UTC (rev 699334)
@@ -1,36 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Mikuro Kagamine 
-
-pkgname=croc
-pkgver=8.3.1
-pkgrel=1
-pkgdesc='Easily and securely send things from one computer to another.'
-arch=('x86_64')
-url="https://github.com/schollz/${pkgname};
-license=('MIT')
-depends=('glibc')
-makedepends=('go')
-source=("${url}/releases/download/v${pkgver}/${pkgname}_${pkgver}_src.tar.gz")
-sha256sums=('58dbe55cdbd0c8255c40ac5045676b7e8a0af8e21732f80502efc8cd27330d87')
-
-build() {
-cd "${pkgname}-${pkgver}"
-export CGO_CPPFLAGS="${CPPFLAGS}"
-export CGO_CFLAGS="${CFLAGS}"
-export CGO_CXXFLAGS="${CXXFLAGS}"
-export CGO_LDFLAGS="${LDFLAGS}"
-export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=readonly -modcacherw"
-go build
-}
-
-check() {
-cd "${pkgname}-${pkgver}"
-go test ./...
-}
-
-package() {
-cd "${pkgname}-${pkgver}"
-install -Dm755 -t "${pkgdir}/usr/bin/" "${pkgname}"
-install -Dm644 -t "${pkgdir}/usr/lib/systemd/system/" "${pkgname}.service"
-install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
-}

Copied: croc/repos/community-x86_64/PKGBUILD (from rev 699333, 
croc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 19:33:05 UTC (rev 699334)
@@ -0,0 +1,36 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Mikuro Kagamine 
+
+pkgname=croc
+pkgver=8.3.1
+pkgrel=2
+pkgdesc='Easily and securely send things from one computer to another.'
+arch=('x86_64')
+url="https://github.com/schollz/${pkgname};
+license=('MIT')
+depends=('glibc')
+makedepends=('go')
+source=("${url}/releases/download/v${pkgver}/${pkgname}_${pkgver}_src.tar.gz")
+sha256sums=('58dbe55cdbd0c8255c40ac5045676b7e8a0af8e21732f80502efc8cd27330d87')
+
+build() {
+cd "${pkgname}-${pkgver}"
+export CGO_CPPFLAGS="${CPPFLAGS}"
+export CGO_CFLAGS="${CFLAGS}"
+export CGO_CXXFLAGS="${CXXFLAGS}"
+export CGO_LDFLAGS="${LDFLAGS}"
+export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=vendor -modcacherw"
+go build
+}
+
+check() {
+cd "${pkgname}-${pkgver}"
+go test ./...
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+install -Dm755 -t "${pkgdir}/usr/bin/" "${pkgname}"
+install -Dm644 -t "${pkgdir}/usr/lib/systemd/system/" "${pkgname}.service"
+install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
+}


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

2020-09-06 Thread Maxim Baz via arch-commits
Date: Sunday, September 6, 2020 @ 19:33:02
  Author: maximbaz
Revision: 699333

upgpkg: croc 8.3.1-2

Modified:
  croc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 19:31:24 UTC (rev 699332)
+++ PKGBUILD2020-09-06 19:33:02 UTC (rev 699333)
@@ -3,7 +3,7 @@
 
 pkgname=croc
 pkgver=8.3.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Easily and securely send things from one computer to another.'
 arch=('x86_64')
 url="https://github.com/schollz/${pkgname};
@@ -19,7 +19,7 @@
 export CGO_CFLAGS="${CFLAGS}"
 export CGO_CXXFLAGS="${CXXFLAGS}"
 export CGO_LDFLAGS="${LDFLAGS}"
-export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=readonly -modcacherw"
+export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=vendor -modcacherw"
 go build
 }
 


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

2020-09-06 Thread Maxim Baz via arch-commits
Date: Sunday, September 6, 2020 @ 19:31:20
  Author: maximbaz
Revision: 699331

upgpkg: croc 8.3.1-1

Modified:
  croc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 19:18:59 UTC (rev 699330)
+++ PKGBUILD2020-09-06 19:31:20 UTC (rev 699331)
@@ -2,7 +2,7 @@
 # Contributor: Mikuro Kagamine 
 
 pkgname=croc
-pkgver=8.3.0
+pkgver=8.3.1
 pkgrel=1
 pkgdesc='Easily and securely send things from one computer to another.'
 arch=('x86_64')
@@ -11,12 +11,15 @@
 depends=('glibc')
 makedepends=('go')
 source=("${url}/releases/download/v${pkgver}/${pkgname}_${pkgver}_src.tar.gz")
-sha256sums=('3d9e09854e269ae61af17e653b3b2038ce2dda3b5a5830a1b4138b1c2724a190')
+sha256sums=('58dbe55cdbd0c8255c40ac5045676b7e8a0af8e21732f80502efc8cd27330d87')
 
 build() {
 cd "${pkgname}-${pkgver}"
-export CGO_LDFLAGS="$LDFLAGS"
-export GOFLAGS="-buildmode=pie -trimpath -mod=vendor -modcacherw"
+export CGO_CPPFLAGS="${CPPFLAGS}"
+export CGO_CFLAGS="${CFLAGS}"
+export CGO_CXXFLAGS="${CXXFLAGS}"
+export CGO_LDFLAGS="${LDFLAGS}"
+export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=readonly -modcacherw"
 go build
 }
 


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

2020-09-06 Thread Maxim Baz via arch-commits
Date: Sunday, September 6, 2020 @ 19:31:24
  Author: maximbaz
Revision: 699332

archrelease: copy trunk to community-x86_64

Added:
  croc/repos/community-x86_64/PKGBUILD
(from rev 699331, croc/trunk/PKGBUILD)
Deleted:
  croc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 19:31:20 UTC (rev 699331)
+++ PKGBUILD2020-09-06 19:31:24 UTC (rev 699332)
@@ -1,33 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Mikuro Kagamine 
-
-pkgname=croc
-pkgver=8.3.0
-pkgrel=1
-pkgdesc='Easily and securely send things from one computer to another.'
-arch=('x86_64')
-url="https://github.com/schollz/${pkgname};
-license=('MIT')
-depends=('glibc')
-makedepends=('go')
-source=("${url}/releases/download/v${pkgver}/${pkgname}_${pkgver}_src.tar.gz")
-sha256sums=('3d9e09854e269ae61af17e653b3b2038ce2dda3b5a5830a1b4138b1c2724a190')
-
-build() {
-cd "${pkgname}-${pkgver}"
-export CGO_LDFLAGS="$LDFLAGS"
-export GOFLAGS="-buildmode=pie -trimpath -mod=vendor -modcacherw"
-go build
-}
-
-check() {
-cd "${pkgname}-${pkgver}"
-go test ./...
-}
-
-package() {
-cd "${pkgname}-${pkgver}"
-install -Dm755 -t "${pkgdir}/usr/bin/" "${pkgname}"
-install -Dm644 -t "${pkgdir}/usr/lib/systemd/system/" "${pkgname}.service"
-install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
-}

Copied: croc/repos/community-x86_64/PKGBUILD (from rev 699331, 
croc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 19:31:24 UTC (rev 699332)
@@ -0,0 +1,36 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Mikuro Kagamine 
+
+pkgname=croc
+pkgver=8.3.1
+pkgrel=1
+pkgdesc='Easily and securely send things from one computer to another.'
+arch=('x86_64')
+url="https://github.com/schollz/${pkgname};
+license=('MIT')
+depends=('glibc')
+makedepends=('go')
+source=("${url}/releases/download/v${pkgver}/${pkgname}_${pkgver}_src.tar.gz")
+sha256sums=('58dbe55cdbd0c8255c40ac5045676b7e8a0af8e21732f80502efc8cd27330d87')
+
+build() {
+cd "${pkgname}-${pkgver}"
+export CGO_CPPFLAGS="${CPPFLAGS}"
+export CGO_CFLAGS="${CFLAGS}"
+export CGO_CXXFLAGS="${CXXFLAGS}"
+export CGO_LDFLAGS="${LDFLAGS}"
+export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=readonly -modcacherw"
+go build
+}
+
+check() {
+cd "${pkgname}-${pkgver}"
+go test ./...
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+install -Dm755 -t "${pkgdir}/usr/bin/" "${pkgname}"
+install -Dm644 -t "${pkgdir}/usr/lib/systemd/system/" "${pkgname}.service"
+install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
+}


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 19:18:51
  Author: felixonmars
Revision: 699329

upgpkg: haskell-base-orphans 0.8.2-45: rebuild with hspec 2.7.3, hspec-core 
2.7.3, hspec-discover 2.7.3

Modified:
  haskell-base-orphans/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 19:18:04 UTC (rev 699328)
+++ PKGBUILD2020-09-06 19:18:51 UTC (rev 699329)
@@ -4,7 +4,7 @@
 _hkgname=base-orphans
 pkgname=haskell-base-orphans
 pkgver=0.8.2
-pkgrel=43
+pkgrel=45
 pkgdesc="Backwards-compatible orphan instances for base"
 url="https://github.com/haskell-compat/base-orphans#readme;
 license=("MIT")


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 19:18:59
  Author: felixonmars
Revision: 699330

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-base-orphans/repos/community-staging-x86_64/
  haskell-base-orphans/repos/community-staging-x86_64/PKGBUILD
(from rev 699329, haskell-base-orphans/trunk/PKGBUILD)

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

Copied: haskell-base-orphans/repos/community-staging-x86_64/PKGBUILD (from rev 
699329, haskell-base-orphans/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-06 19:18:59 UTC (rev 699330)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=base-orphans
+pkgname=haskell-base-orphans
+pkgver=0.8.2
+pkgrel=45
+pkgdesc="Backwards-compatible orphan instances for base"
+url="https://github.com/haskell-compat/base-orphans#readme;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hspec-discover' 
'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('f438d3434fa2f276af3bd23288e4cab2af94dfbb392b0a7eec747af3fed3856cdac2ce5f9476962cbf5ddbb2e48577469155101e84f7603534fc4d097da882e9')
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 19:17:54
  Author: felixonmars
Revision: 699327

upgpkg: haskell-hspec 2.7.3-3: rebuild with hspec 2.7.3, hspec-core 2.7.3, 
hspec-discover 2.7.3

Modified:
  haskell-hspec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 19:17:12 UTC (rev 699326)
+++ PKGBUILD2020-09-06 19:17:54 UTC (rev 699327)
@@ -3,7 +3,7 @@
 _hkgname=hspec
 pkgname=haskell-hspec
 pkgver=2.7.3
-pkgrel=2
+pkgrel=3
 pkgdesc="A Testing Framework for Haskell"
 url="http://hspec.github.io/;
 license=('MIT')


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 19:18:04
  Author: felixonmars
Revision: 699328

archrelease: copy trunk to community-staging-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 19:17:54 UTC (rev 699327)
+++ PKGBUILD2020-09-06 19:18:04 UTC (rev 699328)
@@ -1,38 +0,0 @@
-# Maintainer: Felix Yan 
-
-_hkgname=hspec
-pkgname=haskell-hspec
-pkgver=2.7.3
-pkgrel=2
-pkgdesc="A Testing Framework for Haskell"
-url="http://hspec.github.io/;
-license=('MIT')
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-quickcheck' 'haskell-hspec-core' 
'haskell-hspec-discover'
- 'haskell-hspec-expectations')
-makedepends=('ghc')
-source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('d5e3aa1cb5a4c621c3c9e1e053bdb04497df0a639c1083eaeacf60538e8c38cfad14157d38df8ed722b85f60bab8733ebf1e86d6f08792dfe841fa8f2c762988')
-
-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
-}

Copied: haskell-hspec/repos/community-staging-x86_64/PKGBUILD (from rev 699327, 
haskell-hspec/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 19:18:04 UTC (rev 699328)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hspec
+pkgname=haskell-hspec
+pkgver=2.7.3
+pkgrel=3
+pkgdesc="A Testing Framework for Haskell"
+url="http://hspec.github.io/;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-hspec-core' 
'haskell-hspec-discover'
+ 'haskell-hspec-expectations')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('d5e3aa1cb5a4c621c3c9e1e053bdb04497df0a639c1083eaeacf60538e8c38cfad14157d38df8ed722b85f60bab8733ebf1e86d6f08792dfe841fa8f2c762988')
+
+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-hspec-core/repos/community-staging-x86_64 (2 files)

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 19:17:12
  Author: felixonmars
Revision: 699326

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hspec-core/repos/community-staging-x86_64/PKGBUILD
(from rev 699325, haskell-hspec-core/trunk/PKGBUILD)
Deleted:
  haskell-hspec-core/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 19:17:02 UTC (rev 699325)
+++ PKGBUILD2020-09-06 19:17:12 UTC (rev 699326)
@@ -1,45 +0,0 @@
-# Maintainer: Felix Yan 
-
-_hkgname=hspec-core
-pkgname=haskell-hspec-core
-pkgver=2.7.3
-pkgrel=2
-pkgdesc="A Testing Framework for Haskell"
-url="http://hspec.github.io/;
-license=('MIT')
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-call-stack' 
'haskell-clock'
- 'haskell-hspec-expectations' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-quickcheck-io'
- 'haskell-random' 'haskell-setenv' 'haskell-tf-random')
-makedepends=('ghc' 'haskell-hspec-meta' 'haskell-silently' 'haskell-temporary')
-source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('8a71bca8985a9a75463e4ce41f565325dcec0e2948ebb52b7b041b3796fa06d3fceb46e2108201c9de7c6eeba4ae258303a512bbbf4e1b858e8de983023bbce5')
-
-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/hspec/hspec/issues/432
-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-hspec-core/repos/community-staging-x86_64/PKGBUILD (from rev 
699325, haskell-hspec-core/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 19:17:12 UTC (rev 699326)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hspec-core
+pkgname=haskell-hspec-core
+pkgver=2.7.3
+pkgrel=3
+pkgdesc="A Testing Framework for Haskell"
+url="http://hspec.github.io/;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-call-stack' 
'haskell-clock'
+ 'haskell-hspec-expectations' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-quickcheck-io'
+ 'haskell-random' 'haskell-setenv' 'haskell-tf-random')
+makedepends=('ghc' 'haskell-hspec-meta' 'haskell-silently' 'haskell-temporary')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('8a71bca8985a9a75463e4ce41f565325dcec0e2948ebb52b7b041b3796fa06d3fceb46e2108201c9de7c6eeba4ae258303a512bbbf4e1b858e8de983023bbce5')
+
+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/hspec/hspec/issues/432
+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-core/trunk (PKGBUILD)

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 19:17:02
  Author: felixonmars
Revision: 699325

upgpkg: haskell-hspec-core 2.7.3-3: rebuild with hspec 2.7.3, hspec-core 2.7.3, 
hspec-discover 2.7.3

Modified:
  haskell-hspec-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 19:15:57 UTC (rev 699324)
+++ PKGBUILD2020-09-06 19:17:02 UTC (rev 699325)
@@ -3,7 +3,7 @@
 _hkgname=hspec-core
 pkgname=haskell-hspec-core
 pkgver=2.7.3
-pkgrel=2
+pkgrel=3
 pkgdesc="A Testing Framework for Haskell"
 url="http://hspec.github.io/;
 license=('MIT')


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 19:15:57
  Author: felixonmars
Revision: 699324

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hspec-meta/repos/community-staging-x86_64/PKGBUILD
(from rev 699323, haskell-hspec-meta/trunk/PKGBUILD)
Deleted:
  haskell-hspec-meta/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 19:15:47 UTC (rev 699323)
+++ PKGBUILD2020-09-06 19:15:57 UTC (rev 699324)
@@ -1,39 +0,0 @@
-# Maintainer: Felix Yan 
-
-_hkgname=hspec-meta
-pkgname=haskell-hspec-meta
-pkgver=2.6.0
-pkgrel=98
-pkgdesc="A version of Hspec which is used to test Hspec itself"
-url="http://hspec.github.io/;
-license=('MIT')
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-quickcheck' 'haskell-hspec-expectations' 
'haskell-hunit'
- 'haskell-setenv' 'haskell-random' 'haskell-quickcheck-io' 
'haskell-ansi-terminal'
- 'haskell-clock' 'haskell-call-stack')
-makedepends=('ghc')
-source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('c35d09f84c093ab5fe7ae31cf004d485cf6d15a06ee7c98270d3f5c471da6e0c9a71c8ec6ca0aa87e7454c9470b218c24538270711677003dc63d316fb23dce9')
-
-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
-}

Copied: haskell-hspec-meta/repos/community-staging-x86_64/PKGBUILD (from rev 
699323, haskell-hspec-meta/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 19:15:57 UTC (rev 699324)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hspec-meta
+pkgname=haskell-hspec-meta
+pkgver=2.6.0
+pkgrel=99
+pkgdesc="A version of Hspec which is used to test Hspec itself"
+url="http://hspec.github.io/;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-hspec-expectations' 
'haskell-hunit'
+ 'haskell-setenv' 'haskell-random' 'haskell-quickcheck-io' 
'haskell-ansi-terminal'
+ 'haskell-clock' 'haskell-call-stack')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('c35d09f84c093ab5fe7ae31cf004d485cf6d15a06ee7c98270d3f5c471da6e0c9a71c8ec6ca0aa87e7454c9470b218c24538270711677003dc63d316fb23dce9')
+
+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-hspec-meta/trunk (PKGBUILD)

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 19:15:47
  Author: felixonmars
Revision: 699323

upgpkg: haskell-hspec-meta 2.6.0-99: rebuild with hspec 2.7.3, hspec-core 
2.7.3, hspec-discover 2.7.3

Modified:
  haskell-hspec-meta/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 19:14:57 UTC (rev 699322)
+++ PKGBUILD2020-09-06 19:15:47 UTC (rev 699323)
@@ -3,7 +3,7 @@
 _hkgname=hspec-meta
 pkgname=haskell-hspec-meta
 pkgver=2.6.0
-pkgrel=98
+pkgrel=99
 pkgdesc="A version of Hspec which is used to test Hspec itself"
 url="http://hspec.github.io/;
 license=('MIT')


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 19:14:57
  Author: felixonmars
Revision: 699322

archrelease: copy trunk to community-staging-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 19:14:48 UTC (rev 699321)
+++ PKGBUILD2020-09-06 19:14:57 UTC (rev 699322)
@@ -1,43 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-_hkgname=temporary
-pkgname=haskell-temporary
-pkgver=1.3
-pkgrel=89
-pkgdesc="Portable temporary file and directory support"
-url="https://www.github.com/batterseapower/temporary;
-license=("BSD")
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-random')
-makedepends=('ghc' 'haskell-base-compat' 'haskell-tasty' 'haskell-tasty-hunit')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('e3078caf54da95c4efa9e9c936b35a98b62296ecce2242cd4e103605a9d29e8a9d6c7027dbf50d02b6a893bea558ea5b07dbb1df7c59bf26d86db76ccf112f25')
-
-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-temporary/repos/community-staging-x86_64/PKGBUILD (from rev 
699321, haskell-temporary/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 19:14:57 UTC (rev 699322)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=temporary
+pkgname=haskell-temporary
+pkgver=1.3
+pkgrel=90
+pkgdesc="Portable temporary file and directory support"
+url="https://www.github.com/batterseapower/temporary;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-random')
+makedepends=('ghc' 'haskell-base-compat' 'haskell-tasty' 'haskell-tasty-hunit')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('e3078caf54da95c4efa9e9c936b35a98b62296ecce2242cd4e103605a9d29e8a9d6c7027dbf50d02b6a893bea558ea5b07dbb1df7c59bf26d86db76ccf112f25')
+
+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-temporary/trunk (PKGBUILD)

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 19:14:48
  Author: felixonmars
Revision: 699321

upgpkg: haskell-temporary 1.3-90: rebuild with hspec 2.7.3, hspec-core 2.7.3, 
hspec-discover 2.7.3

Modified:
  haskell-temporary/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 18:57:02 UTC (rev 699320)
+++ PKGBUILD2020-09-06 19:14:48 UTC (rev 699321)
@@ -4,7 +4,7 @@
 _hkgname=temporary
 pkgname=haskell-temporary
 pkgver=1.3
-pkgrel=89
+pkgrel=90
 pkgdesc="Portable temporary file and directory support"
 url="https://www.github.com/batterseapower/temporary;
 license=("BSD")


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 18:57:02
  Author: felixonmars
Revision: 699320

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-tf-random/repos/community-staging-x86_64/PKGBUILD
(from rev 699319, haskell-tf-random/trunk/PKGBUILD)
Deleted:
  haskell-tf-random/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 18:56:53 UTC (rev 699319)
+++ PKGBUILD2020-09-06 18:57:02 UTC (rev 699320)
@@ -1,37 +0,0 @@
-# Maintainer: Alexander Rødseth 
-
-_hkgname=tf-random
-pkgname=haskell-tf-random
-pkgver=0.5
-pkgrel=52
-pkgdesc='High-quality splittable pseudorandom number generator'
-url="https://hackage.haskell.org/package/${_hkgname};
-license=('BSD')
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-random' 'haskell-primitive')
-makedepends=('ghc')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('a766909571b4b37da9fa1aa9739bd2db8c32c0f64452fd7c3717f4578090e5227b763772858c6c311c5f366dd461421ffc3beb295455902fea1fb133deb7')
-
-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
-}

Copied: haskell-tf-random/repos/community-staging-x86_64/PKGBUILD (from rev 
699319, haskell-tf-random/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 18:57:02 UTC (rev 699320)
@@ -0,0 +1,37 @@
+# Maintainer: Alexander Rødseth 
+
+_hkgname=tf-random
+pkgname=haskell-tf-random
+pkgver=0.5
+pkgrel=53
+pkgdesc='High-quality splittable pseudorandom number generator'
+url="https://hackage.haskell.org/package/${_hkgname};
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-random' 'haskell-primitive')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('a766909571b4b37da9fa1aa9739bd2db8c32c0f64452fd7c3717f4578090e5227b763772858c6c311c5f366dd461421ffc3beb295455902fea1fb133deb7')
+
+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-quickcheck-io/repos/community-staging-x86_64 (2 files)

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 18:56:11
  Author: felixonmars
Revision: 699318

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-quickcheck-io/repos/community-staging-x86_64/PKGBUILD
(from rev 699317, haskell-quickcheck-io/trunk/PKGBUILD)
Deleted:
  haskell-quickcheck-io/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 18:56:01 UTC (rev 699317)
+++ PKGBUILD2020-09-06 18:56:11 UTC (rev 699318)
@@ -1,37 +0,0 @@
-# Maintainer: Felix Yan 
-
-_hkgname=quickcheck-io
-pkgname=haskell-quickcheck-io
-pkgver=0.2.0
-pkgrel=102
-pkgdesc="Use HUnit assertions as QuickCheck properties"
-url="https://github.com/hspec/quickcheck-io;
-license=('MIT')
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-hunit' 'haskell-quickcheck')
-makedepends=('ghc')
-source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('02e1f40bac8f31f27c21d1d2df9f226816f9da871092b09f0451a8321e250c9e94887f94889be421c9d0034e0a27b02c907d16eb7da5a4376df42c7c1fbd01df')
-
-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
-}

Copied: haskell-quickcheck-io/repos/community-staging-x86_64/PKGBUILD (from rev 
699317, haskell-quickcheck-io/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 18:56:11 UTC (rev 699318)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+
+_hkgname=quickcheck-io
+pkgname=haskell-quickcheck-io
+pkgver=0.2.0
+pkgrel=103
+pkgdesc="Use HUnit assertions as QuickCheck properties"
+url="https://github.com/hspec/quickcheck-io;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hunit' 'haskell-quickcheck')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('02e1f40bac8f31f27c21d1d2df9f226816f9da871092b09f0451a8321e250c9e94887f94889be421c9d0034e0a27b02c907d16eb7da5a4376df42c7c1fbd01df')
+
+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-tf-random/trunk (PKGBUILD)

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 18:56:53
  Author: felixonmars
Revision: 699319

upgpkg: haskell-tf-random 0.5-53: rebuild with hspec 2.7.3, hspec-core 2.7.3, 
hspec-discover 2.7.3

Modified:
  haskell-tf-random/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 18:56:11 UTC (rev 699318)
+++ PKGBUILD2020-09-06 18:56:53 UTC (rev 699319)
@@ -3,7 +3,7 @@
 _hkgname=tf-random
 pkgname=haskell-tf-random
 pkgver=0.5
-pkgrel=52
+pkgrel=53
 pkgdesc='High-quality splittable pseudorandom number generator'
 url="https://hackage.haskell.org/package/${_hkgname};
 license=('BSD')


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 18:56:01
  Author: felixonmars
Revision: 699317

upgpkg: haskell-quickcheck-io 0.2.0-103: rebuild with hspec 2.7.3, hspec-core 
2.7.3, hspec-discover 2.7.3

Modified:
  haskell-quickcheck-io/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 18:51:27 UTC (rev 699316)
+++ PKGBUILD2020-09-06 18:56:01 UTC (rev 699317)
@@ -3,7 +3,7 @@
 _hkgname=quickcheck-io
 pkgname=haskell-quickcheck-io
 pkgver=0.2.0
-pkgrel=102
+pkgrel=103
 pkgdesc="Use HUnit assertions as QuickCheck properties"
 url="https://github.com/hspec/quickcheck-io;
 license=('MIT')


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

2020-09-06 Thread Morten Linderud via arch-commits
Date: Sunday, September 6, 2020 @ 18:51:18
  Author: foxboron
Revision: 699315

upgpkg: rofi 1.6.0-1

Modified:
  rofi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 18:24:49 UTC (rev 699314)
+++ PKGBUILD2020-09-06 18:51:18 UTC (rev 699315)
@@ -8,8 +8,8 @@
 # Contributor: SanskritFritz (gmail)
 
 pkgname=rofi
-pkgver=1.5.4
-pkgrel=2
+pkgver=1.6.0
+pkgrel=1
 pkgdesc='A window switcher, application launcher and dmenu replacement'
 arch=(x86_64)
 url="https://github.com/DaveDavenport/$pkgname;
@@ -18,7 +18,7 @@
 makedepends=(check)
 optdepends=('i3-wm: use as a window switcher')
 source=("$url/releases/download/$pkgver/$pkgname-$pkgver.tar.xz")
-sha256sums=('91a502cc29f964b529cd6228dbe655e82ab4e69c9852d23a24d9c1efb1af54db')
+sha256sums=('c487a8a010345bd596c433702e054db3728f0e8f275c325f58ee2e9a1259c614')
 
 build() {
   cd "$pkgname-$pkgver"


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

2020-09-06 Thread Morten Linderud via arch-commits
Date: Sunday, September 6, 2020 @ 18:51:27
  Author: foxboron
Revision: 699316

archrelease: copy trunk to community-x86_64

Added:
  rofi/repos/community-x86_64/PKGBUILD
(from rev 699315, rofi/trunk/PKGBUILD)
Deleted:
  rofi/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 18:51:18 UTC (rev 699315)
+++ PKGBUILD2020-09-06 18:51:27 UTC (rev 699316)
@@ -1,42 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Anatol Pomozov
-# Contributor: Benjamin Chrétien 
-# Contributor: Eric Engestrom 
-# Contributor: Rasi 
-# Contributor: Sean Pringle 
-# Contributor: SanskritFritz (gmail)
-
-pkgname=rofi
-pkgver=1.5.4
-pkgrel=2
-pkgdesc='A window switcher, application launcher and dmenu replacement'
-arch=(x86_64)
-url="https://github.com/DaveDavenport/$pkgname;
-license=(MIT)
-depends=(libxdg-basedir startup-notification libxkbcommon-x11 xcb-util-wm 
xcb-util-xrm librsvg)
-makedepends=(check)
-optdepends=('i3-wm: use as a window switcher')
-source=("$url/releases/download/$pkgver/$pkgname-$pkgver.tar.xz")
-sha256sums=('91a502cc29f964b529cd6228dbe655e82ab4e69c9852d23a24d9c1efb1af54db')
-
-build() {
-  cd "$pkgname-$pkgver"
-  autoreconf -i
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  LC_ALL=C make check
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make install install-man DESTDIR="$pkgdir"
-
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-  install -dm755 "$pkgdir/usr/share/doc/$pkgname/examples"
-  install -Dm755 Examples/*.sh "$pkgdir/usr/share/doc/$pkgname/examples"
-}

Copied: rofi/repos/community-x86_64/PKGBUILD (from rev 699315, 
rofi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 18:51:27 UTC (rev 699316)
@@ -0,0 +1,42 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Anatol Pomozov
+# Contributor: Benjamin Chrétien 
+# Contributor: Eric Engestrom 
+# Contributor: Rasi 
+# Contributor: Sean Pringle 
+# Contributor: SanskritFritz (gmail)
+
+pkgname=rofi
+pkgver=1.6.0
+pkgrel=1
+pkgdesc='A window switcher, application launcher and dmenu replacement'
+arch=(x86_64)
+url="https://github.com/DaveDavenport/$pkgname;
+license=(MIT)
+depends=(libxdg-basedir startup-notification libxkbcommon-x11 xcb-util-wm 
xcb-util-xrm librsvg)
+makedepends=(check)
+optdepends=('i3-wm: use as a window switcher')
+source=("$url/releases/download/$pkgver/$pkgname-$pkgver.tar.xz")
+sha256sums=('c487a8a010345bd596c433702e054db3728f0e8f275c325f58ee2e9a1259c614')
+
+build() {
+  cd "$pkgname-$pkgver"
+  autoreconf -i
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  LC_ALL=C make check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make install install-man DESTDIR="$pkgdir"
+
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+  install -dm755 "$pkgdir/usr/share/doc/$pkgname/examples"
+  install -Dm755 Examples/*.sh "$pkgdir/usr/share/doc/$pkgname/examples"
+}


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

2020-09-06 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, September 6, 2020 @ 18:24:42
  Author: svenstaro
Revision: 699313

upgpkg: zola 0.12.0-1

Modified:
  zola/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 17:29:53 UTC (rev 699312)
+++ PKGBUILD2020-09-06 18:24:42 UTC (rev 699313)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 pkgname=zola
-pkgver=0.11.0
-pkgrel=4
+pkgver=0.12.0
+pkgrel=1
 pkgdesc="An opinionated static site generator"
 arch=('x86_64')
 url="https://github.com/getzola/zola;
@@ -9,7 +9,7 @@
 makedepends=('rust')
 license=('MIT')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/getzola/zola/archive/v${pkgver}.tar.gz;)
-sha256sums=('09840a55d13a81a7a04767d01e5e44cc3710e79c78f43f0ebde4a6a17e0728ca')
+sha256sums=('d76b380189ddf9fa7ac3243aac8f47f38fb754b4c39f424a00d961c68f9dcd59')
 
 build() {
   cd zola-$pkgver


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

2020-09-06 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, September 6, 2020 @ 18:24:49
  Author: svenstaro
Revision: 699314

archrelease: copy trunk to community-x86_64

Added:
  zola/repos/community-x86_64/PKGBUILD
(from rev 699313, zola/trunk/PKGBUILD)
Deleted:
  zola/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 18:24:42 UTC (rev 699313)
+++ PKGBUILD2020-09-06 18:24:49 UTC (rev 699314)
@@ -1,30 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgname=zola
-pkgver=0.11.0
-pkgrel=4
-pkgdesc="An opinionated static site generator"
-arch=('x86_64')
-url="https://github.com/getzola/zola;
-depends=('gcc-libs')
-makedepends=('rust')
-license=('MIT')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/getzola/zola/archive/v${pkgver}.tar.gz;)
-sha256sums=('09840a55d13a81a7a04767d01e5e44cc3710e79c78f43f0ebde4a6a17e0728ca')
-
-build() {
-  cd zola-$pkgver
-  cargo build --release --locked
-}
-
-check() {
-  cd zola-$pkgver
-  cargo test --release --locked
-}
-
-package() {
-  cd zola-$pkgver
-  install -Dm755 target/release/zola "$pkgdir"/usr/bin/zola
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: zola/repos/community-x86_64/PKGBUILD (from rev 699313, 
zola/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 18:24:49 UTC (rev 699314)
@@ -0,0 +1,30 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=zola
+pkgver=0.12.0
+pkgrel=1
+pkgdesc="An opinionated static site generator"
+arch=('x86_64')
+url="https://github.com/getzola/zola;
+depends=('gcc-libs')
+makedepends=('rust')
+license=('MIT')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/getzola/zola/archive/v${pkgver}.tar.gz;)
+sha256sums=('d76b380189ddf9fa7ac3243aac8f47f38fb754b4c39f424a00d961c68f9dcd59')
+
+build() {
+  cd zola-$pkgver
+  cargo build --release --locked
+}
+
+check() {
+  cd zola-$pkgver
+  cargo test --release --locked
+}
+
+package() {
+  cd zola-$pkgver
+  install -Dm755 target/release/zola "$pkgdir"/usr/bin/zola
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in gnome-user-docs/repos/extra-any (PKGBUILD PKGBUILD)

2020-09-06 Thread Jan Steffens via arch-commits
Date: Sunday, September 6, 2020 @ 18:01:06
  Author: heftig
Revision: 395529

archrelease: copy trunk to extra-any

Added:
  gnome-user-docs/repos/extra-any/PKGBUILD
(from rev 395528, gnome-user-docs/trunk/PKGBUILD)
Deleted:
  gnome-user-docs/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 18:00:54 UTC (rev 395528)
+++ PKGBUILD2020-09-06 18:01:06 UTC (rev 395529)
@@ -1,38 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-
-pkgname=gnome-user-docs
-pkgver=3.36.2
-pkgrel=1
-pkgdesc="User documentation for GNOME"
-url="https://gitlab.gnome.org/GNOME/gnome-user-docs;
-arch=(any)
-license=(FDL)
-depends=(yelp)
-makedepends=(yelp-tools git)
-groups=(gnome)
-_commit=85f6497834d1fdae7f37621ea7ccdf5773c3b373  # tags/3.36.2^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-user-docs.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-  
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-user-docs/repos/extra-any/PKGBUILD (from rev 395528, 
gnome-user-docs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 18:01:06 UTC (rev 395529)
@@ -0,0 +1,38 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+
+pkgname=gnome-user-docs
+pkgver=3.36.6
+pkgrel=1
+pkgdesc="User documentation for GNOME"
+url="https://gitlab.gnome.org/GNOME/gnome-user-docs;
+arch=(any)
+license=(FDL)
+depends=(yelp)
+makedepends=(yelp-tools git)
+groups=(gnome)
+_commit=c00ce7aa957a479a95f03f2e2fba1cb468dde086  # tags/3.36.6^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-user-docs.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+  
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


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

2020-09-06 Thread Jan Steffens via arch-commits
Date: Sunday, September 6, 2020 @ 18:00:54
  Author: heftig
Revision: 395528

3.36.6-1

Modified:
  gnome-user-docs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 17:35:12 UTC (rev 395527)
+++ PKGBUILD2020-09-06 18:00:54 UTC (rev 395528)
@@ -1,8 +1,8 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan Alexander Steffens (heftig) 
 # Contributor: Ionut Biru 
 
 pkgname=gnome-user-docs
-pkgver=3.36.2
+pkgver=3.36.6
 pkgrel=1
 pkgdesc="User documentation for GNOME"
 url="https://gitlab.gnome.org/GNOME/gnome-user-docs;
@@ -11,7 +11,7 @@
 depends=(yelp)
 makedepends=(yelp-tools git)
 groups=(gnome)
-_commit=85f6497834d1fdae7f37621ea7ccdf5773c3b373  # tags/3.36.2^0
+_commit=c00ce7aa957a479a95f03f2e2fba1cb468dde086  # tags/3.36.6^0
 
source=("git+https://gitlab.gnome.org/GNOME/gnome-user-docs.git#commit=$_commit;)
 sha256sums=('SKIP')
 


[arch-commits] Commit in imagemagick/repos/extra-x86_64 (5 files)

2020-09-06 Thread Antonio Rojas via arch-commits
Date: Sunday, September 6, 2020 @ 17:35:12
  Author: arojas
Revision: 395527

archrelease: copy trunk to extra-x86_64

Added:
  imagemagick/repos/extra-x86_64/PKGBUILD
(from rev 395526, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/extra-x86_64/arch-fonts.diff
(from rev 395526, imagemagick/trunk/arch-fonts.diff)
Deleted:
  imagemagick/repos/extra-x86_64/PKGBUILD
  imagemagick/repos/extra-x86_64/arch-fonts.diff
  imagemagick/repos/extra-x86_64/imagemagick-inkscape-1.0.patch

+
 PKGBUILD   |  243 +++
 arch-fonts.diff|  214 +-
 imagemagick-inkscape-1.0.patch |   13 --
 3 files changed, 226 insertions(+), 244 deletions(-)

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

Copied: imagemagick/repos/extra-x86_64/PKGBUILD (from rev 395526, 
imagemagick/trunk/PKGBUILD)
===
--- PKGBUILD

[arch-commits] Commit in imagemagick/trunk (PKGBUILD imagemagick-inkscape-1.0.patch)

2020-09-06 Thread Antonio Rojas via arch-commits
Date: Sunday, September 6, 2020 @ 17:35:01
  Author: arojas
Revision: 395526

Update to 7.0.10.29

Modified:
  imagemagick/trunk/PKGBUILD
Deleted:
  imagemagick/trunk/imagemagick-inkscape-1.0.patch

+
 PKGBUILD   |   13 -
 imagemagick-inkscape-1.0.patch |   13 -
 2 files changed, 4 insertions(+), 22 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 16:32:24 UTC (rev 395525)
+++ PKGBUILD2020-09-06 17:35:01 UTC (rev 395526)
@@ -3,7 +3,7 @@
 
 pkgbase=imagemagick
 pkgname=(imagemagick imagemagick-doc)
-pkgver=7.0.10.28
+pkgver=7.0.10.29
 pkgrel=1
 pkgdesc="An image viewing/manipulation program"
 url="https://www.imagemagick.org/;
@@ -15,12 +15,10 @@
 _relname=ImageMagick-${pkgver%%.*}
 _tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
 source=(https://imagemagick.org/download/$_tarname.tar.xz{,.asc}
-arch-fonts.diff
-imagemagick-inkscape-1.0.patch)
-sha256sums=('6a6b32f04fa508f198eb0e3677d95729121796cbe156add05d3eb8070c7569b0'
+arch-fonts.diff)
+sha256sums=('0d2b0da5bcc4b4de82d25dc641a51c36bc59b73c847e0407468373a4bb989779'
 'SKIP'
-'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73'
-'dd856b0d7b5b98535d2bc61dfa995f4162677486c1eac14b384668a28a60af30')
+'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
 validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae
 
 shopt -s extglob
@@ -32,9 +30,6 @@
 
   # Fix up typemaps to match our packages, where possible
   patch -p1 -i ../arch-fonts.diff
-
-  # Use correct parameter for inkscape 1.0
-  patch -p1 -i ../imagemagick-inkscape-1.0.patch
 }
 
 build() {

Deleted: imagemagick-inkscape-1.0.patch
===
--- imagemagick-inkscape-1.0.patch  2020-09-06 16:32:24 UTC (rev 395525)
+++ imagemagick-inkscape-1.0.patch  2020-09-06 17:35:01 UTC (rev 395526)
@@ -1,13 +0,0 @@
-diff --git a/config/delegates.xml.in b/config/delegates.xml.in
-index 442fa1aca..19baaee91 100644
 a/config/delegates.xml.in
-+++ b/config/delegates.xml.in
-@@ -111,7 +111,7 @@
-   
-   
-   
--  
-+  
-   
-   
-   


[arch-commits] Commit in (python-pillow6)

2020-09-06 Thread Eli Schwartz via arch-commits
Date: Sunday, September 6, 2020 @ 17:29:53
  Author: eschwartz
Revision: 699312

This is not needed, only a split python2-pillow locked to the old version

Deleted:
  python-pillow6/


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

2020-09-06 Thread Antonio Rojas via arch-commits
Date: Sunday, September 6, 2020 @ 17:28:42
  Author: arojas
Revision: 699310

Rebuild to remove py2 make/checkdeps from archweb

Modified:
  python-qrencode/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 17:25:39 UTC (rev 699309)
+++ PKGBUILD2020-09-06 17:28:42 UTC (rev 699310)
@@ -3,7 +3,7 @@
 
 pkgname=python-qrencode
 pkgver=1.2
-pkgrel=6
+pkgrel=7
 pkgdesc='Simple wrapper for the C qrencode library'
 url='https://pypi.python.org/pypi/qrencode/'
 arch=('x86_64')


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

2020-09-06 Thread Antonio Rojas via arch-commits
Date: Sunday, September 6, 2020 @ 17:28:51
  Author: arojas
Revision: 699311

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 17:28:42 UTC (rev 699310)
+++ PKGBUILD2020-09-06 17:28:51 UTC (rev 699311)
@@ -1,20 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Martin Wimpress 
-
-pkgname=python-qrencode
-pkgver=1.2
-pkgrel=6
-pkgdesc='Simple wrapper for the C qrencode library'
-url='https://pypi.python.org/pypi/qrencode/'
-arch=('x86_64')
-license=('MIT')
-depends=('python' 'python-pillow' 'qrencode' 'glibc')
-source=(https://pypi.org/packages/source/q/qrencode/qrencode-${pkgver}.tar.gz)
-sha512sums=('e6ebf0c2d2081408ef3d4f4a2a44712e86f70019e34da5de49c1a31a26d69cafac07afb501be24bc95a2525e038a47a74f02279981ade1d33b3e96d3dbb5ce5f')
-
-package_python-qrencode() {
-  cd qrencode-${pkgver}
-  python setup.py install --prefix=/usr --root="${pkgdir}" -O1
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-qrencode/repos/community-x86_64/PKGBUILD (from rev 699310, 
python-qrencode/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 17:28:51 UTC (rev 699311)
@@ -0,0 +1,20 @@
+# Maintainer: Levente Polyak 
+# Contributor: Martin Wimpress 
+
+pkgname=python-qrencode
+pkgver=1.2
+pkgrel=7
+pkgdesc='Simple wrapper for the C qrencode library'
+url='https://pypi.python.org/pypi/qrencode/'
+arch=('x86_64')
+license=('MIT')
+depends=('python' 'python-pillow' 'qrencode' 'glibc')
+source=(https://pypi.org/packages/source/q/qrencode/qrencode-${pkgver}.tar.gz)
+sha512sums=('e6ebf0c2d2081408ef3d4f4a2a44712e86f70019e34da5de49c1a31a26d69cafac07afb501be24bc95a2525e038a47a74f02279981ade1d33b3e96d3dbb5ce5f')
+
+package_python-qrencode() {
+  cd qrencode-${pkgver}
+  python setup.py install --prefix=/usr --root="${pkgdir}" -O1
+}
+
+# vim: ts=2 sw=2 et:


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

2020-09-06 Thread Jelle van der Waa via arch-commits
Date: Sunday, September 6, 2020 @ 17:04:55
  Author: jelle
Revision: 699308

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 14:04:06 UTC (rev 699307)
+++ PKGBUILD2020-09-06 17:04:55 UTC (rev 699308)
@@ -1,59 +0,0 @@
-# Maintainer: Levente Polyak 
-
-_pkgname=htmlmin
-pkgbase=python-htmlmin
-pkgname=('htmlmin' 'python-htmlmin')
-pkgver=0.1.12
-_gitcommit=220b1d16442eb4b6fafed338ee3b61f698a01e63
-pkgrel=3
-pkgdesc='Configurable HTML Minifier with safety features'
-url='https://htmlmin.readthedocs.io/en/latest/'
-arch=('any')
-license=('BSD')
-makedepends=('python-sphinx' 'python-setuptools')
-checkdepends=('python-pytest')
-source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/mankyd/htmlmin/archive/${_gitcommit}.tar.gz)
-sha256sums=('9d96f711d1f3d997f29bf83e704fc8dae0233beb400afa278792ff8349cd22a2')
-sha512sums=('6d9db4b6bcdd6d223be8b4e3830da4d63ac6d7d28ee83abd97809b0b901968c994c8434c992fbdd148101ba25d8d786c93657cb5f82881af44dadbba40bf3252')
-
-build() {
-  msg2 "Building python..."
-  cd ${_pkgname}-${_gitcommit}
-   python setup.py build
-   sphinx-build -b text docs docs/_build/text
-   sphinx-build -b man docs docs/_build/man
-}
-
-check() {
-  msg2 "Checking python..."
-  cd ${_pkgname}-${_gitcommit}
-   python setup.py test
-}
-
-package_htmlmin() {
-  depends=('python' 'python-setuptools' 'python-htmlmin')
-  pkgdesc+=' (CLI)'
-  cd ${_pkgname}-${_gitcommit}
-  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-  install -d "${pkgdir}/usr/share/"{licenses,doc,man/man1}
-  ln -s /usr/share/licenses/python-htmlmin 
"${pkgdir}/usr/share/licenses/${pkgname}"
-  ln -s /usr/share/doc/python-htmlmin "${pkgdir}/usr/share/doc/${pkgname}"
-  ln -s /usr/share/man/man1/python-htmlmin.1.gz 
"${pkgdir}/usr/share/man/man1/htmlmin.1.gz"
-
-  rm -r "${pkgdir}"/usr/lib
-}
-
-package_python-htmlmin() {
-  depends=('python')
-  cd ${_pkgname}-${_gitcommit}
-  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-  install -Dm 644 README.rst CHANGELOG -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 docs/_build/text/*.txt -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 docs/_build/man/htmlmin.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-
-  rm -r "${pkgdir}"/usr/lib/python*/site-packages/htmlmin/tests \
-"${pkgdir}/usr/bin"
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-htmlmin/repos/community-any/PKGBUILD (from rev 699307, 
python-htmlmin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 17:04:55 UTC (rev 699308)
@@ -0,0 +1,59 @@
+# Maintainer: Levente Polyak 
+
+_pkgname=htmlmin
+pkgbase=python-htmlmin
+pkgname=('htmlmin' 'python-htmlmin')
+pkgver=0.1.12
+_gitcommit=220b1d16442eb4b6fafed338ee3b61f698a01e63
+pkgrel=4
+pkgdesc='Configurable HTML Minifier with safety features'
+url='https://htmlmin.readthedocs.io/en/latest/'
+arch=('any')
+license=('BSD')
+makedepends=('python-sphinx' 'python-setuptools')
+checkdepends=('python-pytest')
+source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/mankyd/htmlmin/archive/${_gitcommit}.tar.gz)
+sha256sums=('9d96f711d1f3d997f29bf83e704fc8dae0233beb400afa278792ff8349cd22a2')
+sha512sums=('6d9db4b6bcdd6d223be8b4e3830da4d63ac6d7d28ee83abd97809b0b901968c994c8434c992fbdd148101ba25d8d786c93657cb5f82881af44dadbba40bf3252')
+
+build() {
+  msg2 "Building python..."
+  cd ${_pkgname}-${_gitcommit}
+   python setup.py build
+   sphinx-build -b text docs docs/_build/text
+   sphinx-build -b man docs docs/_build/man
+}
+
+check() {
+  msg2 "Checking python..."
+  cd ${_pkgname}-${_gitcommit}
+   python setup.py test
+}
+
+package_htmlmin() {
+  depends=('python' 'python-setuptools' 'python-htmlmin')
+  pkgdesc+=' (CLI)'
+  cd ${_pkgname}-${_gitcommit}
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+  install -d "${pkgdir}/usr/share/"{licenses,doc,man/man1}
+  ln -s /usr/share/licenses/python-htmlmin 
"${pkgdir}/usr/share/licenses/${pkgname}"
+  ln -s /usr/share/doc/python-htmlmin "${pkgdir}/usr/share/doc/${pkgname}"
+  ln -s /usr/share/man/man1/python-htmlmin.1.gz 
"${pkgdir}/usr/share/man/man1/htmlmin.1.gz"
+
+  rm -r "${pkgdir}"/usr/lib
+}
+
+package_python-htmlmin() {
+  depends=('python')
+  cd ${_pkgname}-${_gitcommit}
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+  install -Dm 644 README.rst CHANGELOG -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE -t 

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

2020-09-06 Thread Jan Steffens via arch-commits
Date: Sunday, September 6, 2020 @ 16:32:03
  Author: heftig
Revision: 395524

3.36.5-1

Modified:
  gnome-music/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 15:33:51 UTC (rev 395523)
+++ PKGBUILD2020-09-06 16:32:03 UTC (rev 395524)
@@ -2,7 +2,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=gnome-music
-pkgver=3.36.4.1
+pkgver=3.36.5
 pkgrel=1
 epoch=1
 pkgdesc="Music player and management application"
@@ -17,7 +17,7 @@
 'gst-plugins-bad: Extra media codecs'
 'gst-libav: Extra media codecs')
 groups=(gnome)
-_commit=426243053fa10b95b188a4905f23371def048a63  # tags/3.36.4.1^0
+_commit=58c745b63664b87ce8d659259e4c4b8f7d9d40e6  # tags/3.36.5^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-music.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/libgd.git;
 "git+https://gitlab.gnome.org/mschraal/gfm.git;)


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

2020-09-06 Thread Jan Steffens via arch-commits
Date: Sunday, September 6, 2020 @ 16:32:24
  Author: heftig
Revision: 395525

archrelease: copy trunk to extra-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 16:32:03 UTC (rev 395524)
+++ PKGBUILD2020-09-06 16:32:24 UTC (rev 395525)
@@ -1,56 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=gnome-music
-pkgver=3.36.4.1
-pkgrel=1
-epoch=1
-pkgdesc="Music player and management application"
-url="https://wiki.gnome.org/Apps/Music;
-arch=(x86_64)
-license=(GPL)
-depends=(grilo grilo-plugins tracker-miners libdmapsharing libmediaart gtk3 
gvfs
- python-gobject python-cairo gst-plugins-base python-requests 
libdazzle)
-makedepends=(gobject-introspection git meson yelp-tools appstream-glib)
-optdepends=('gst-plugins-good: Extra media codecs'
-'gst-plugins-ugly: Extra media codecs'
-'gst-plugins-bad: Extra media codecs'
-'gst-libav: Extra media codecs')
-groups=(gnome)
-_commit=426243053fa10b95b188a4905f23371def048a63  # tags/3.36.4.1^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-music.git#commit=$_commit;
-"git+https://gitlab.gnome.org/GNOME/libgd.git;
-"git+https://gitlab.gnome.org/mschraal/gfm.git;)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-
-  git submodule init
-  git submodule set-url subprojects/libgd "$srcdir/libgd"
-  git submodule set-url subprojects/gfm "$srcdir/gfm"
-  git submodule update
-}
-
-build() {
-  arch-meson $pkgname build
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-
-  python -m compileall -d /usr/lib "$pkgdir/usr/lib"
-  python -O -m compileall -d /usr/lib "$pkgdir/usr/lib"
-}

Copied: gnome-music/repos/extra-x86_64/PKGBUILD (from rev 395524, 
gnome-music/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 16:32:24 UTC (rev 395525)
@@ -0,0 +1,56 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-music
+pkgver=3.36.5
+pkgrel=1
+epoch=1
+pkgdesc="Music player and management application"
+url="https://wiki.gnome.org/Apps/Music;
+arch=(x86_64)
+license=(GPL)
+depends=(grilo grilo-plugins tracker-miners libdmapsharing libmediaart gtk3 
gvfs
+ python-gobject python-cairo gst-plugins-base python-requests 
libdazzle)
+makedepends=(gobject-introspection git meson yelp-tools appstream-glib)
+optdepends=('gst-plugins-good: Extra media codecs'
+'gst-plugins-ugly: Extra media codecs'
+'gst-plugins-bad: Extra media codecs'
+'gst-libav: Extra media codecs')
+groups=(gnome)
+_commit=58c745b63664b87ce8d659259e4c4b8f7d9d40e6  # tags/3.36.5^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-music.git#commit=$_commit;
+"git+https://gitlab.gnome.org/GNOME/libgd.git;
+"git+https://gitlab.gnome.org/mschraal/gfm.git;)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git submodule set-url subprojects/libgd "$srcdir/libgd"
+  git submodule set-url subprojects/gfm "$srcdir/gfm"
+  git submodule update
+}
+
+build() {
+  arch-meson $pkgname build
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+
+  python -m compileall -d /usr/lib "$pkgdir/usr/lib"
+  python -O -m compileall -d /usr/lib "$pkgdir/usr/lib"
+}


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

2020-09-06 Thread Tobias Powalowski via arch-commits
Date: Sunday, September 6, 2020 @ 15:33:42
  Author: tpowa
Revision: 395522

upgpkg: iputils 20200821-1: bump to latest version, fix #63710 and #67643

Modified:
  iputils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 15:13:30 UTC (rev 395521)
+++ PKGBUILD2020-09-06 15:33:42 UTC (rev 395522)
@@ -4,41 +4,25 @@
 
 pkgname=iputils
 # Commit date + git rev-parse --short origin/master
-_rev=13e0084
-pkgver=20190709
-pkgrel=3
+_rev=23c3782a
+pkgver=20200821
+pkgrel=1
 pkgdesc="Network monitoring tools, including ping"
 arch=('x86_64')
 license=('GPL')
 url="http://www.skbuff.net/iputils/;
-depends=('openssl' 'libcap' 'libidn2')
-optdepends=('xinetd: for tftpd')
-makedepends=('perl-sgmls' 'git' 'docbook-xsl' 'meson')
+depends=('libcap' 'libidn2')
+makedepends=('perl-sgmls' 'git' 'docbook-xsl' 'meson' 'systemd')
 conflicts=('netkit-base' 'arping' 'netkit-tftpd')
 replaces=('netkit-base')
-backup=(etc/xinetd.d/tftp)
-install=${pkgname}.install
-source=("git+https://github.com/iputils/iputils.git#commit=${_rev};
-tftp.xinetd
-fix-setuid-redeclared.patch
-
https://github.com/iputils/iputils/commit/18f14be80466ddc8fb17a400be82764a779c8dcd.patch)
-sha1sums=('SKIP'
-  'fc2ae26f5609725e3f4aeaf4ab82dfa6d2e378fd'
-  'ea7c400d1c397d514de718957c28730d87cef656'
-  'cf00aff837580a9a9fea069d98ab1a89b353c714')
+source=("git+https://github.com/iputils/iputils.git#commit=${_rev};)
+sha1sums=('SKIP')
 
-prepare() {
-  cd $pkgname
-  patch -Np1 -i $srcdir/fix-setuid-redeclared.patch
-  #fix #66727 arping duplicate ip adress
-  patch -Np1 -i $srcdir/18f14be80466ddc8fb17a400be82764a779c8dcd.patch
-}
-
 build() {
   mkdir -p build
   cd build
 
-  arch-meson ../$pkgname -DBUILD_RARPD=true
+  arch-meson ../$pkgname -DBUILD_RARPD=true -DBUILD_TFTPD=true
   ninja
 }
 
@@ -46,8 +30,4 @@
   cd build
 
   DESTDIR="$pkgdir" ninja install
-
-  # FS#24768
-  install -dm755 "${pkgdir}"/etc/xinetd.d/
-  install -m644 "${srcdir}"/tftp.xinetd "${pkgdir}"/etc/xinetd.d/tftp
 }


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

2020-09-06 Thread Tobias Powalowski via arch-commits
Date: Sunday, September 6, 2020 @ 15:33:51
  Author: tpowa
Revision: 395523

archrelease: copy trunk to testing-x86_64

Added:
  iputils/repos/testing-x86_64/
  iputils/repos/testing-x86_64/PKGBUILD
(from rev 395522, iputils/trunk/PKGBUILD)
  iputils/repos/testing-x86_64/fix-setuid-redeclared.patch
(from rev 395522, iputils/trunk/fix-setuid-redeclared.patch)
  iputils/repos/testing-x86_64/iputils.install
(from rev 395522, iputils/trunk/iputils.install)
  iputils/repos/testing-x86_64/tftp.xinetd
(from rev 395522, iputils/trunk/tftp.xinetd)

-+
 PKGBUILD|   33 
 fix-setuid-redeclared.patch |   48 ++
 iputils.install |9 +++
 tftp.xinetd |   10 
 4 files changed, 100 insertions(+)

Copied: iputils/repos/testing-x86_64/PKGBUILD (from rev 395522, 
iputils/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-09-06 15:33:51 UTC (rev 395523)
@@ -0,0 +1,33 @@
+# Maintainer: Stéphane Gaudreault 
+# Maintainer: Tobias Powalowski 
+# Contributor: Aaron Griffin 
+
+pkgname=iputils
+# Commit date + git rev-parse --short origin/master
+_rev=23c3782a
+pkgver=20200821
+pkgrel=1
+pkgdesc="Network monitoring tools, including ping"
+arch=('x86_64')
+license=('GPL')
+url="http://www.skbuff.net/iputils/;
+depends=('libcap' 'libidn2')
+makedepends=('perl-sgmls' 'git' 'docbook-xsl' 'meson' 'systemd')
+conflicts=('netkit-base' 'arping' 'netkit-tftpd')
+replaces=('netkit-base')
+source=("git+https://github.com/iputils/iputils.git#commit=${_rev};)
+sha1sums=('SKIP')
+
+build() {
+  mkdir -p build
+  cd build
+
+  arch-meson ../$pkgname -DBUILD_RARPD=true -DBUILD_TFTPD=true
+  ninja
+}
+
+package() {
+  cd build
+
+  DESTDIR="$pkgdir" ninja install
+}

Copied: iputils/repos/testing-x86_64/fix-setuid-redeclared.patch (from rev 
395522, iputils/trunk/fix-setuid-redeclared.patch)
===
--- testing-x86_64/fix-setuid-redeclared.patch  (rev 0)
+++ testing-x86_64/fix-setuid-redeclared.patch  2020-09-06 15:33:51 UTC (rev 
395523)
@@ -0,0 +1,48 @@
+From 18f9a84e0e702841d6cc4d5f593de4fbd1348e83 Mon Sep 17 00:00:00 2001
+From: Sami Kerola 
+Date: Sat, 28 Dec 2019 17:16:27 +
+Subject: [PATCH] ninfod: change variable name to avoid colliding with function
+ name
+
+The sys/capability.h header has 'extern int cap_setuid(uid_t uid);'
+function prototype.
+
+Addresses: https://github.com/iputils/iputils/issues/246
+Signed-off-by: Sami Kerola 
+---
+ ninfod/ninfod.c | 8 
+ 1 file changed, 4 insertions(+), 4 deletions(-)
+
+diff --git a/ninfod/ninfod.c b/ninfod/ninfod.c
+index 26112d0..95583de 100644
+--- a/ninfod/ninfod.c
 b/ninfod/ninfod.c
+@@ -455,7 +455,7 @@ static void do_daemonize(void)
+ /* - */
+ #ifdef HAVE_LIBCAP
+ static const cap_value_t cap_net_raw = CAP_NET_RAW;
+-static const cap_value_t cap_setuid =  CAP_SETUID; 
++static const cap_value_t cap_setuserid = CAP_SETUID;
+ static cap_flag_value_t cap_ok;
+ #else
+ static uid_t euid;
+@@ -487,7 +487,7 @@ static void limit_capabilities(void)
+ 
+   cap_get_flag(cap_cur_p, CAP_SETUID, CAP_PERMITTED, _ok);
+   if (cap_ok != CAP_CLEAR)
+-  cap_set_flag(cap_p, CAP_PERMITTED, 1, _setuid, CAP_SET);
++  cap_set_flag(cap_p, CAP_PERMITTED, 1, _setuserid, CAP_SET);
+ 
+   if (cap_set_proc(cap_p) < 0) {
+   DEBUG(LOG_ERR, "cap_set_proc: %s\n", strerror(errno));
+@@ -520,8 +520,8 @@ static void drop_capabilities(void)
+ 
+   /* setuid / setuid */
+   if (cap_ok != CAP_CLEAR) {
+-  cap_set_flag(cap_p, CAP_PERMITTED, 1, _setuid, CAP_SET);
+-  cap_set_flag(cap_p, CAP_EFFECTIVE, 1, _setuid, CAP_SET);
++  cap_set_flag(cap_p, CAP_PERMITTED, 1, _setuserid, CAP_SET);
++  cap_set_flag(cap_p, CAP_EFFECTIVE, 1, _setuserid, CAP_SET);
+ 
+   if (cap_set_proc(cap_p) < 0) {
+   DEBUG(LOG_ERR, "cap_set_proc: %s\n", strerror(errno));

Copied: iputils/repos/testing-x86_64/iputils.install (from rev 395522, 
iputils/trunk/iputils.install)
===
--- testing-x86_64/iputils.install  (rev 0)
+++ testing-x86_64/iputils.install  2020-09-06 15:33:51 UTC (rev 395523)
@@ -0,0 +1,9 @@
+post_install() {
+  setcap cap_net_raw=ep usr/bin/ping  2>/dev/null || chmod +s usr/bin/ping 
+}
+
+post_upgrade() {
+  post_install "$1"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: iputils/repos/testing-x86_64/tftp.xinetd (from rev 395522, 
iputils/trunk/tftp.xinetd)
===
--- testing-x86_64/tftp.xinetd  (rev 0)
+++ 

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

2020-09-06 Thread Tobias Powalowski via arch-commits
Date: Sunday, September 6, 2020 @ 15:13:30
  Author: tpowa
Revision: 395521

archrelease: copy trunk to testing-x86_64

Added:
  xfsprogs/repos/testing-x86_64/
  xfsprogs/repos/testing-x86_64/PKGBUILD
(from rev 395520, xfsprogs/trunk/PKGBUILD)

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

Copied: xfsprogs/repos/testing-x86_64/PKGBUILD (from rev 395520, 
xfsprogs/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-09-06 15:13:30 UTC (rev 395521)
@@ -0,0 +1,34 @@
+# Maintainer : Tobias Powalowski 
+pkgname=xfsprogs
+pkgver=5.8.0
+pkgrel=1
+pkgdesc="XFS filesystem utilities"
+arch=('x86_64')
+license=('LGPL')
+url="https://xfs.org;
+depends=('sh' 'libutil-linux' 'icu' 'device-mapper')
+optdepends=('python: for xfs_scrub_all script'
+'smtp-forwarder: for xfs_scrub_fail script')
+makedepends=('git')
+options=('!makeflags')
+source=("git+https://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git#tag=v${pkgver};)
+md5sums=('SKIP')
+
+build() {
+  cd ${pkgname}-dev
+  make configure
+  export OPTIMIZER="-march=${CARCH/_/-} -O1"
+  export DEBUG=-DNDEBUG
+  ./configure --prefix=/usr --sbindir=/usr/bin 
--with-systemd-unit-dir=/usr/lib/systemd/system
+  make
+}
+
+package() {
+  cd ${pkgname}-dev
+  make DIST_ROOT="${pkgdir}" PKG_ROOT_SBIN_DIR="/usr/bin" install install-dev
+  chown -R root "$pkgdir"
+  chgrp -R root "$pkgdir"
+  # add hack as we cannot set rootlibdir
+  mv "${pkgdir}"/lib/libhandle.so* "${pkgdir}/usr/lib/"
+  rm -rf "${pkgdir}/lib"
+}


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

2020-09-06 Thread Tobias Powalowski via arch-commits
Date: Sunday, September 6, 2020 @ 15:13:23
  Author: tpowa
Revision: 395520

upgpkg: xfsprogs 5.8.0-1: bump to latest version

Modified:
  xfsprogs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-06 12:26:28 UTC (rev 395519)
+++ PKGBUILD2020-09-06 15:13:23 UTC (rev 395520)
@@ -1,7 +1,7 @@
 # Maintainer : Tobias Powalowski 
 pkgname=xfsprogs
-pkgver=5.7.0
-pkgrel=3
+pkgver=5.8.0
+pkgrel=1
 pkgdesc="XFS filesystem utilities"
 arch=('x86_64')
 license=('LGPL')


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

2020-09-06 Thread Felix Yan via arch-commits
Date: Sunday, September 6, 2020 @ 14:02:15
  Author: felixonmars
Revision: 699305

archrelease: copy trunk to community-staging-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-06 14:02:02 UTC (rev 699304)
+++ PKGBUILD2020-09-06 14:02:15 UTC (rev 699305)
@@ -1,57 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Thomas Dziedzic 
-
-_hkgname=random
-pkgname=haskell-random
-pkgver=1.2.0
-pkgrel=9
-pkgdesc="Pseudo-random number generation"
-url="https://hackage.haskell.org/package/${_hkgname};
-license=('BSD')
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-splitmix')
-makedepends=('ghc')
-checkdepends=('haskell-doctest' 'haskell-mwc-random' 'haskell-primitive' 
'haskell-smallcheck'
-  'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-smallcheck' 
'haskell-unliftio'
-  'haskell-vector')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('e482f318c245d87824d440885c4ecbd1c9bd85a3b3aa4d7fbb4a82da0cfd31749caa9ff7881c94b731035133fd1d550a0cb8bd4da958d3c72519bddcadc6c2e5')
-
-prepare() {
-cd $_hkgname-$pkgver
-sed -i '/tasty-expected-failure/d;s/< *0.15/<1/' $_hkgname.cabal
-}
-
-build() {
-cd $_hkgname-$pkgver
-
-if (( CHECKFUNC )); then
-_opts=('--enable-tests')
-else
-_opts=('--disable-tests')
-fi
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
-runhaskell Setup build $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-random/repos/community-staging-x86_64/PKGBUILD (from rev 
699304, haskell-random/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-06 14:02:15 UTC (rev 699305)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=random
+pkgname=haskell-random
+pkgver=1.2.0
+pkgrel=10
+pkgdesc="Pseudo-random number generation"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-splitmix')
+makedepends=('ghc')
+checkdepends=('haskell-doctest' 'haskell-mwc-random' 'haskell-primitive' 
'haskell-smallcheck'
+  'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-smallcheck' 
'haskell-unliftio'
+  'haskell-vector')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('e482f318c245d87824d440885c4ecbd1c9bd85a3b3aa4d7fbb4a82da0cfd31749caa9ff7881c94b731035133fd1d550a0cb8bd4da958d3c72519bddcadc6c2e5')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/tasty-expected-failure/d;s/< *0.15/<1/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $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"
+

  1   2   >