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

2019-12-21 Thread Antonio Rojas via arch-commits
Date: Sunday, December 22, 2019 @ 00:10:20
  Author: arojas
Revision: 372060

archrelease: copy trunk to testing-x86_64

Added:
  dhcpcd/repos/testing-x86_64/
  dhcpcd/repos/testing-x86_64/PKGBUILD
(from rev 372059, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-x86_64/dhcpcd.service
(from rev 372059, dhcpcd/trunk/dhcpcd.service)
  dhcpcd/repos/testing-x86_64/dhcpcd_.service
(from rev 372059, dhcpcd/trunk/dhcpcd_.service)

-+
 PKGBUILD|   63 ++
 dhcpcd.service  |   13 +++
 dhcpcd_.service |   15 
 3 files changed, 91 insertions(+)

Copied: dhcpcd/repos/testing-x86_64/PKGBUILD (from rev 372059, 
dhcpcd/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-12-22 00:10:20 UTC (rev 372060)
@@ -0,0 +1,63 @@
+# Maintainer: Ronald van Haren 
+# Contributor: Tom Killian 
+# Contributor: Judd Vinet 
+
+pkgname=dhcpcd
+pkgver=8.1.4
+pkgrel=1
+pkgdesc="RFC2131 compliant DHCP client daemon"
+url="https://roy.marples.name/projects/dhcpcd/;
+arch=('x86_64')
+license=('BSD')
+depends=('glibc' 'sh' 'udev' 'systemd-libs')
+optdepends=('openresolv: resolvconf support')
+provides=('dhcp-client')
+backup=('etc/dhcpcd.conf')
+options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
+source=("https://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.xz;
+'dhcpcd_.service'
+'dhcpcd.service')
+validpgpkeys=('A785ED2755955D9E93EA59F6597F97EA9AD45549')  # Roy Marples 
(NetBSD) 
+sha256sums=('27a0d1a37aa1aa23e9d3a906455cf8fd56a83589370dfe9da3c5f3225cc4c13d'
+'72dba5d6e7a99cf6d9a796f79ee395e2434af12d6d4e76573d428c6d0c2986ed'
+'782ba5fc31518e6f499d119120efe5ea68ce29ebbb797306d5e17b2a545c2f9e')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  # configure variables
+  ./configure \
+  --prefix=/usr \
+  --sysconfdir=/etc \
+  --sbindir=/usr/bin \
+  --libexecdir=/usr/lib/dhcpcd \
+  --dbdir=/var/lib/dhcpcd \
+  --rundir=/run
+
+  # Build
+  make
+}
+
+
+check() {
+  cd ${pkgname}-${pkgver}
+
+  make test
+}
+
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  # Install License
+  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/LICENSE" \
+ "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Set Options in /etc/dhcpcd.conf
+  echo noipv4ll >> "${pkgdir}/etc/dhcpcd.conf" # Disable ip4vall
+
+  # install systemd files
+  install -Dm644 "${srcdir}/dhcpcd_.service" 
"${pkgdir}/usr/lib/systemd/system/dhcpcd@.service"
+  install -Dm644 "${srcdir}/dhcpcd.service" 
"${pkgdir}/usr/lib/systemd/system/dhcpcd.service" # FS#31543
+}

Copied: dhcpcd/repos/testing-x86_64/dhcpcd.service (from rev 372059, 
dhcpcd/trunk/dhcpcd.service)
===
--- testing-x86_64/dhcpcd.service   (rev 0)
+++ testing-x86_64/dhcpcd.service   2019-12-22 00:10:20 UTC (rev 372060)
@@ -0,0 +1,13 @@
+[Unit]
+Description=dhcpcd on all interfaces
+Wants=network.target
+Before=network.target
+
+[Service]
+Type=forking
+PIDFile=/run/dhcpcd.pid
+ExecStart=/usr/bin/dhcpcd -q -b
+ExecStop=/usr/bin/dhcpcd -x
+
+[Install]
+WantedBy=multi-user.target

Copied: dhcpcd/repos/testing-x86_64/dhcpcd_.service (from rev 372059, 
dhcpcd/trunk/dhcpcd_.service)
===
--- testing-x86_64/dhcpcd_.service  (rev 0)
+++ testing-x86_64/dhcpcd_.service  2019-12-22 00:10:20 UTC (rev 372060)
@@ -0,0 +1,15 @@
+[Unit]
+Description=dhcpcd on %I
+Wants=network.target
+Before=network.target
+BindsTo=sys-subsystem-net-devices-%i.device
+After=sys-subsystem-net-devices-%i.device
+
+[Service]
+Type=forking
+PIDFile=/run/dhcpcd-%I.pid
+ExecStart=/usr/bin/dhcpcd -q -w %I
+ExecStop=/usr/bin/dhcpcd -x %I
+
+[Install]
+WantedBy=multi-user.target


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

2019-12-21 Thread Antonio Rojas via arch-commits
Date: Sunday, December 22, 2019 @ 00:09:54
  Author: arojas
Revision: 372059

Update to 8.1.4

Modified:
  dhcpcd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 23:30:12 UTC (rev 372058)
+++ PKGBUILD2019-12-22 00:09:54 UTC (rev 372059)
@@ -3,7 +3,7 @@
 # Contributor: Judd Vinet 
 
 pkgname=dhcpcd
-pkgver=8.1.2
+pkgver=8.1.4
 pkgrel=1
 pkgdesc="RFC2131 compliant DHCP client daemon"
 url="https://roy.marples.name/projects/dhcpcd/;
@@ -18,7 +18,7 @@
 'dhcpcd_.service'
 'dhcpcd.service')
 validpgpkeys=('A785ED2755955D9E93EA59F6597F97EA9AD45549')  # Roy Marples 
(NetBSD) 
-sha256sums=('cbd3e7ab1584a5a3a49d863376fa138e5fa388397a3e27d2b35bb81a2e8c35ad'
+sha256sums=('27a0d1a37aa1aa23e9d3a906455cf8fd56a83589370dfe9da3c5f3225cc4c13d'
 '72dba5d6e7a99cf6d9a796f79ee395e2434af12d6d4e76573d428c6d0c2986ed'
 '782ba5fc31518e6f499d119120efe5ea68ce29ebbb797306d5e17b2a545c2f9e')
 


[arch-commits] Commit in packer/repos/community-x86_64 (4 files)

2019-12-21 Thread Christian Rebischke via arch-commits
Date: Saturday, December 21, 2019 @ 23:59:55
  Author: shibumi
Revision: 538820

archrelease: copy trunk to community-x86_64

Added:
  packer/repos/community-x86_64/CHANGELOG.md
(from rev 538819, packer/trunk/CHANGELOG.md)
  packer/repos/community-x86_64/PKGBUILD
(from rev 538819, packer/trunk/PKGBUILD)
Deleted:
  packer/repos/community-x86_64/CHANGELOG.md
  packer/repos/community-x86_64/PKGBUILD

--+
 CHANGELOG.md | 7228 -
 PKGBUILD |   70 
 2 files changed, 3649 insertions(+), 3649 deletions(-)

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


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

2019-12-21 Thread Christian Rebischke via arch-commits
Date: Saturday, December 21, 2019 @ 23:59:47
  Author: shibumi
Revision: 538819

upgpkg: packer 1.5.0-1

Modified:
  packer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 23:48:51 UTC (rev 538818)
+++ PKGBUILD2019-12-21 23:59:47 UTC (rev 538819)
@@ -1,7 +1,7 @@
 # Maintainer: Christian Rebischke 
 pkgname=packer
 replaces=('packer-io')
-pkgver=1.4.5
+pkgver=1.5.0
 pkgrel=1
 pkgdesc="tool for creating identical machine images for multiple platforms 
from a single source configuration"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 makedepends=('git' 'go-pie' 'go-tools')
 depends=('glibc')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/hashicorp/packer/archive/v${pkgver}.tar.gz;)
-sha512sums=('b2a3ae27612c78fcfcb2ac655437faf2cff6e587fd10033b39ddaca8b92b634b93ecd0ae7e3ee43253ee716a2c0f7da532b3ae0ce33c59d1d3896f9187d9a657')
+sha512sums=('5e205db0c12c33f958f015642f2599d397cd563d6b185c79088da928cfbdc8e1b85f8c4e39137773fdda48f93ebc4be97c70d2c173a8a237bd66f8d7d89df087')
 changelog=CHANGELOG.md
 
 prepare() {


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

2019-12-21 Thread Christian Rebischke via arch-commits
Date: Saturday, December 21, 2019 @ 23:48:51
  Author: shibumi
Revision: 538818

archrelease: copy trunk to community-x86_64

Added:
  iwd/repos/community-x86_64/ChangeLog
(from rev 538817, iwd/trunk/ChangeLog)
  iwd/repos/community-x86_64/PKGBUILD
(from rev 538817, iwd/trunk/PKGBUILD)
  iwd/repos/community-x86_64/iwd.install
(from rev 538817, iwd/trunk/iwd.install)
Deleted:
  iwd/repos/community-x86_64/ChangeLog
  iwd/repos/community-x86_64/PKGBUILD
  iwd/repos/community-x86_64/iwd.install

-+
 ChangeLog   |  314 +-
 PKGBUILD|  104 +--
 iwd.install |   12 +-
 3 files changed, 215 insertions(+), 215 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2019-12-21 23:48:44 UTC (rev 538817)
+++ ChangeLog   2019-12-21 23:48:51 UTC (rev 538818)
@@ -1,157 +0,0 @@
-ver 1.0:
-   Add support for stable D-Bus interfaces.
-   Add support for network configuration documentation.
-
-ver 0.23:
-   Fix issue with strict certificate chain checks.
-   Fix issue with parsing RSNE_ADVANCE information.
-   Fix issue with parsing RSN information for WPA1.
-   Fix issue with logic error in scan frequency validation.
-   Fix issue with integer overflow and authentication frames.
-   Add support for installing various manual pages.
-
-ver 0.22:
-   Fix issue with hotplug and device capability detection.
-   Add support for IPv6 network configuration handling.
-   Add support for embedding certificates in profiles.
-
-ver 0.21:
-   Fix issue with cleartext ACK and tunneled EAP-Success.
-   Fix issue with setting bits in extended capabilities.
-   Fix issue with WPA-1 information element parsing.
-   Add support for handling QoS Map IE and frames.
-   Add support for STATE_DIRECTORY environment.
-   Add support for CONFIGURATION_DIRECTORY environment.
-
-ver 0.20:
-   Add support for adding Extended Capabilities bits.
-   Add support for ServerDomainMask configuration option.
-
-ver 0.19:
-   Add support for Hotspot 2.0 functionality.
-   Add support for FILS Fast Transition feature.
-   Add support for network configuration handling.
-   Add support for resolution services framework.
-
-ver 0.18:
-   Fix issue with handling stale scan results.
-   Fix issue with handling OWE group renegotiation.
-   Fix issue with handshake failures on FT-PSK.
-   Add support for FILS (Fast Initial Link Setup).
-
-ver 0.17:
-   Fix issue with handling association failure path.
-   Fix issue with handling checks for valid ECC point/scalar.
-   Fix issue with handling potential infinite loop and SAE.
-   Fix issue with handling randomization for passive scans.
-   Add support for randomization of SN for probe requests.
-   Add support for handling the FILS cipher suites.
-   Add support for ERP key caching feature.
-
-ver 0.16:
-   Add missing pkcs8.conf for module loading.
-
-ver 0.15:
-   Fix issue with handling RSSI thresholds.
-   Fix issue with handling abort for a connection.
-   Fix issue with stopping Access Point operation.
-   Add support for individual BSS blacklisting.
-   Add support for utilizing MAC randomization.
-   Add support for utilizing different key lengths.
-   Add support for 16, 24 and 32 byte MIC lengths.
-   Add support for handling driver rekying feature.
-
-ver 0.14:
-   Add support for tunneled MSCHAPv2 authentication.
-
-ver 0.13:
-   Fix issue with WSC interface runtime handling.
-   Add support for Opportunistic Wireless Encryption.
-   Add support for common EAP-TLS framework.
-
-ver 0.12:
-   Fix issue with handling 802.1x automatic connection.
-   Fix issue with handling missing support for backtrace.
-
-ver 0.11:
-   Fix issue with handling EAP-TTLS and redundant L flags.
-   Fix issue with handling EAP-TLS upper limit on request size.
-   Fix issue with handling handshake complete after setting keys.
-   Fix issue with handling access points with too many rates.
-   Fix issue with requiring PSK if passphrase is present.
-   Add support for retrieving list of hidden access points.
-   Add support for tunneled MS-CHAP.
-
-ver 0.10:
-   Fix issue with Ethernet authentication packet handling.
-   Fix issue with ad-hoc network scan results in station mode.
-   Fix issue with cancellation of ongoing rekey offload.
-   Add support for setting per-mac GTK credentials.
-   Add support for using external Embedded Linux library.
-
-ver 0.9:
-   Fix issue with handling EAP-WSC passwords.
-   Add support for TTLS-CHAP and TTLS-PAP.
-   Add support for handling FT over SAE.
-
-ver 0.8:
-   Fix issue with handling EAP_CACHE_NEVER secret types.
-   Fix issue with redundant usage of the L flag and PEAP.

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

2019-12-21 Thread Christian Rebischke via arch-commits
Date: Saturday, December 21, 2019 @ 23:48:44
  Author: shibumi
Revision: 538817

upgpkg: iwd 1.4-1

Modified:
  iwd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 23:23:34 UTC (rev 538816)
+++ PKGBUILD2019-12-21 23:48:44 UTC (rev 538817)
@@ -3,7 +3,7 @@
 # Contributor: AndyRTR 
 
 pkgname=iwd
-pkgver=1.3
+pkgver=1.4
 pkgrel=1
 pkgdesc='Internet Wireless Daemon'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 makedepends=('python-docutils')
 backup=(etc/iwd/main.conf)
 
source=("https://www.kernel.org/pub/linux/network/wireless/iwd-${pkgver}.tar"{.xz,.sign})
-sha512sums=('cf6afbdffd35bba8118b6c14e552e857c1fdb0a27a85314264547cb63ee62598c5c765c6cc41b999fbad5c832861084e69b0551b72b67cc1b58a229fa3e2'
+sha512sums=('3b06fa24666e7cf37353d95d0e9abc41b8be921ae7313c014f20f704fe7919d154d6a5441c6d87d4cd08ee65e15218ec01f4ff4aafc7e4a358faf3ca4a6dcb18'
 'SKIP')
 validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659')
 changelog=ChangeLog


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 23:30:12
  Author: felixonmars
Revision: 372058

archrelease: copy trunk to testing-x86_64

Added:
  libtorrent-rasterbar/repos/testing-x86_64/
  libtorrent-rasterbar/repos/testing-x86_64/PKGBUILD
(from rev 372057, libtorrent-rasterbar/trunk/PKGBUILD)

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

Copied: libtorrent-rasterbar/repos/testing-x86_64/PKGBUILD (from rev 372057, 
libtorrent-rasterbar/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-12-21 23:30:12 UTC (rev 372058)
@@ -0,0 +1,60 @@
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Hugo Doria 
+
+pkgname=libtorrent-rasterbar
+pkgver=1.2.3
+pkgrel=1
+epoch=1
+pkgdesc="A C++ BitTorrent library that aims to be a good alternative to all 
the other implementations around"
+url="https://www.rasterbar.com/products/libtorrent/;
+arch=('x86_64')
+license=('BSD')
+depends=('boost-libs')
+makedepends=('boost' 'python2' 'python')
+options=('!emptydirs')
+_pkgver=${pkgver//./_}
+source=(https://github.com/arvidn/libtorrent/releases/download/libtorrent-$_pkgver/$pkgname-$pkgver.tar.gz)
+sha512sums=('18cffb86c5affcde79860236440eaca492fce71f16c2ccc5e20ec0d9351fbfb6c15d97e203b61c8cf8168f86cf31459ce0b76a4b0559244f9add385434ff4ae6')
+
+prepare() {
+  mkdir py2 py3
+  cd $pkgname-$pkgver
+
+  # Avoid depending on newer processors
+  sed -i 's/-msse4.2//' configure.ac
+
+  autoreconf -if
+}
+
+_build() (
+  cd py$1
+
+  # FS#50745
+  _boost="boost_python"
+  if [ $1 -eq 3 ]; then _boost="boost_python3"; fi
+
+  PYTHON=/usr/bin/python$1 \
+  ../$pkgname-$pkgver/configure \
+--prefix=/usr \
+--enable-python-binding \
+--enable-examples \
+--disable-static \
+--with-libiconv \
+--with-boost-python=$_boost
+)
+
+build() {
+  _build 2
+  _build 3
+}
+
+package() {
+  make -C py2 DESTDIR="$pkgdir" install
+  make -C py3 DESTDIR="$pkgdir" install
+  install -Dm644 $pkgname-$pkgver/COPYING \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Remove most example binaries
+  rm "$pkgdir"/usr/bin/{*_test,*_tester,simple_client,stats_counters}
+}


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 23:30:05
  Author: felixonmars
Revision: 372057

upgpkg: libtorrent-rasterbar 1:1.2.3-1

Modified:
  libtorrent-rasterbar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 23:11:09 UTC (rev 372056)
+++ PKGBUILD2019-12-21 23:30:05 UTC (rev 372057)
@@ -3,7 +3,7 @@
 # Contributor: Hugo Doria 
 
 pkgname=libtorrent-rasterbar
-pkgver=1.2.2
+pkgver=1.2.3
 pkgrel=1
 epoch=1
 pkgdesc="A C++ BitTorrent library that aims to be a good alternative to all 
the other implementations around"
@@ -15,7 +15,7 @@
 options=('!emptydirs')
 _pkgver=${pkgver//./_}
 
source=(https://github.com/arvidn/libtorrent/releases/download/libtorrent-$_pkgver/$pkgname-$pkgver.tar.gz)
-sha512sums=('8ef867d253fe187336ec5919683526997298319b755bcd72eeca2c56c81462d2aed912d2eadcd560d2a8729b36798718f9a1668a83927211f49667af9bdf0a06')
+sha512sums=('18cffb86c5affcde79860236440eaca492fce71f16c2ccc5e20ec0d9351fbfb6c15d97e203b61c8cf8168f86cf31459ce0b76a4b0559244f9add385434ff4ae6')
 
 prepare() {
   mkdir py2 py3


[arch-commits] Commit in kio-fuse (3 files)

2019-12-21 Thread Antonio Rojas via arch-commits
Date: Saturday, December 21, 2019 @ 23:23:34
  Author: arojas
Revision: 538816

archrelease: copy trunk to community-x86_64

Added:
  kio-fuse/repos/
  kio-fuse/repos/community-x86_64/
  kio-fuse/repos/community-x86_64/PKGBUILD
(from rev 538815, kio-fuse/trunk/PKGBUILD)

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

Copied: kio-fuse/repos/community-x86_64/PKGBUILD (from rev 538815, 
kio-fuse/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2019-12-21 23:23:34 UTC (rev 538816)
@@ -0,0 +1,32 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kio-fuse
+pkgver=4.90.0
+pkgrel=1
+arch=(x86_64)
+pkgdesc="FUSE interface for KIO"
+url="https://kde.org/;
+license=(GPL)
+depends=(kio fuse3)
+makedepends=(extra-cmake-modules)
+source=(https://download.kde.org/unstable/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('c7ec3a56b10bfc0d2d5631623b8434e8bc4b24990525eafef41cea588144d71e'
+'SKIP')
+validpgpkeys=('21EC3FD75D26B39E820BE6FBD27C2C1AF21D8BAD') # Fabian Vogt 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package(){
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2019-12-21 Thread Antonio Rojas via arch-commits
Date: Saturday, December 21, 2019 @ 23:22:55
  Author: arojas
Revision: 538815

Add kio-fuse

Added:
  kio-fuse/
  kio-fuse/trunk/
  kio-fuse/trunk/PKGBUILD

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

Added: kio-fuse/trunk/PKGBUILD
===
--- kio-fuse/trunk/PKGBUILD (rev 0)
+++ kio-fuse/trunk/PKGBUILD 2019-12-21 23:22:55 UTC (rev 538815)
@@ -0,0 +1,32 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kio-fuse
+pkgver=4.90.0
+pkgrel=1
+arch=(x86_64)
+pkgdesc="FUSE interface for KIO"
+url="https://kde.org/;
+license=(GPL)
+depends=(kio fuse3)
+makedepends=(extra-cmake-modules)
+source=(https://download.kde.org/unstable/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('c7ec3a56b10bfc0d2d5631623b8434e8bc4b24990525eafef41cea588144d71e'
+'SKIP')
+validpgpkeys=('21EC3FD75D26B39E820BE6FBD27C2C1AF21D8BAD') # Fabian Vogt 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package(){
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:46:13
  Author: felixonmars
Revision: 538771

archrelease: copy trunk to community-staging-x86_64

Added:
  xmobar/repos/community-staging-x86_64/
  xmobar/repos/community-staging-x86_64/PKGBUILD
(from rev 538770, xmobar/trunk/PKGBUILD)

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

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 538770, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-21 22:46:13 UTC (rev 538771)
@@ -0,0 +1,45 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jelle van der Waa 
+# Contributer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.31
+pkgrel=30
+pkgdesc='Minimalistic Text Based Status Bar'
+url='https://hackage.haskell.org/package/xmobar'
+license=('BSD')
+arch=('x86_64')
+depends=('libxft' 'libxinerama' 'libxrandr' 'libxpm' 'ghc-libs' 'haskell-x11'
+ 'haskell-x11-xft' 'haskell-utf8-string' 'haskell-network-uri'
+ 'haskell-hinotify' 'haskell-stm' 'haskell-parsec' 
'haskell-parsec-numbers'
+ 'haskell-mtl' 'haskell-regex-base' 'haskell-regex-compat'
+ 'haskell-http' 'haskell-dbus' 'haskell-libmpd' 'haskell-iwlib'
+ 'wireless_tools' 'haskell-text' 'haskell-async' 
'haskell-extensible-exceptions')
+makedepends=('ghc')
+source=(https://github.com/jaor/xmobar/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('b0afe21f398a16a2e9d6e94ecb643fc5a259e1f60504ce50acd90ae31ae2e14d0925afb66f9593ff2a9bb016e39ab612027e836ece8ede665c66badac3386d01')
+
+prepare() {
+  cd xmobar-$pkgver
+  sed -i -e 's/==.*0.3/== 0.4/' -e 's/< *4.12/<5/' -e 's/< *2.5/<3/' 
xmobar.cabal
+}
+
+build() {
+  cd xmobar-${pkgver}
+  runhaskell setup configure -O \
+--enable-shared \
+--prefix=/usr \
+--enable-executable-dynamic --disable-library-vanilla \
+--disable-library-vanilla \
+--flags="with_utf8 with_xft with_iwlib with_xpm with_inotify with_mpd 
with_dbus with_mpris"
+  runhaskell setup build
+}
+
+package() {
+  cd xmobar-${pkgver}
+  runhaskell setup copy --destdir="${pkgdir}"
+  install -Dm 644 license "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:46:05
  Author: felixonmars
Revision: 538770

upgpkg: xmobar 0.31-30: rebuild with warp 3.3.5, warp-tls 3.2.9

Modified:
  xmobar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 22:44:45 UTC (rev 538769)
+++ PKGBUILD2019-12-21 22:46:05 UTC (rev 538770)
@@ -5,7 +5,7 @@
 
 pkgname=xmobar
 pkgver=0.31
-pkgrel=29
+pkgrel=30
 pkgdesc='Minimalistic Text Based Status Bar'
 url='https://hackage.haskell.org/package/xmobar'
 license=('BSD')


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:44:45
  Author: felixonmars
Revision: 538769

archrelease: copy trunk to community-staging-x86_64

Added:
  tamarin-prover/repos/community-staging-x86_64/
  tamarin-prover/repos/community-staging-x86_64/PKGBUILD
(from rev 538768, tamarin-prover/trunk/PKGBUILD)

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

Copied: tamarin-prover/repos/community-staging-x86_64/PKGBUILD (from rev 
538768, tamarin-prover/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-21 22:44:45 UTC (rev 538769)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=tamarin-prover
+pkgver=1.4.1
+pkgrel=204
+pkgdesc="The Tamarin prover for security protocol analysis"
+url="https://tamarin-prover.github.io;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'graphviz' 'maude' 'haskell-hunit' 'haskell-binary-orphans'
+ 'haskell-blaze-builder' 'haskell-blaze-html' 'haskell-cmdargs' 
'haskell-conduit'
+ 'haskell-fclabels' 'haskell-file-embed' 'haskell-gitrev' 
'haskell-http-types'
+ 'haskell-lifted-base' 'haskell-monad-unlift'
+ 'haskell-resourcet' 'haskell-safe' 'haskell-shakespeare' 
'haskell-threads'
+ 'haskell-wai' 'haskell-warp' 'haskell-yesod-core' 
'haskell-yesod-static'
+ 'haskell-tamarin-prover-utils' 'haskell-tamarin-prover-term'
+ 'haskell-tamarin-prover-theory')
+optdepends=('ocaml: for sapic support')
+makedepends=('ghc' 'ocaml')
+source=("tamarin-prover-$pkgver.tar.gz::https://github.com/tamarin-prover/tamarin-prover/archive/$pkgver.tar.gz;)
+sha512sums=('4d3aeae02be5d430bff6c55d78656e3c9a648674d235bfeb36ce227a39abd3054a132b99ff8040abf05d8e26506fe85d21ecfb6fce73062dd45b5ba98d941144')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+sed -i '/cp sapic/d' plugins/sapic/Makefile
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-executable-dynamic --prefix=/usr \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \
+-fthreaded -ftest-coverage -f-build-tests --ghc-option='-pie'
+runhaskell Setup build
+
+cd plugins/sapic
+make -j1
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+install -Dm644 etc/filetype.vim 
"$pkgdir"/usr/share/vim/vimfiles/ftdetect/tamarin.vim
+install -Dm644 etc/spthy.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/spthy.vim
+install -Dm644 etc/sapic.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/sapic.vim
+
+cd plugins/sapic
+install -Dm755 sapic "$pkgdir"/usr/bin/sapic
+}


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:44:37
  Author: felixonmars
Revision: 538768

upgpkg: tamarin-prover 1.4.1-204: rebuild with warp 3.3.5, warp-tls 3.2.9

Modified:
  tamarin-prover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 22:42:57 UTC (rev 538767)
+++ PKGBUILD2019-12-21 22:44:37 UTC (rev 538768)
@@ -3,7 +3,7 @@
 
 pkgname=tamarin-prover
 pkgver=1.4.1
-pkgrel=203
+pkgrel=204
 pkgdesc="The Tamarin prover for security protocol analysis"
 url="https://tamarin-prover.github.io;
 license=("GPL")


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:42:57
  Author: felixonmars
Revision: 538767

archrelease: copy trunk to community-staging-x86_64

Added:
  stack/repos/community-staging-x86_64/
  stack/repos/community-staging-x86_64/PKGBUILD
(from rev 538766, stack/trunk/PKGBUILD)
  stack/repos/community-staging-x86_64/stack.install
(from rev 538766, stack/trunk/stack.install)

---+
 PKGBUILD  |   84 
 stack.install |4 ++
 2 files changed, 88 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 538766, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-21 22:42:57 UTC (rev 538767)
@@ -0,0 +1,84 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=2.1.3
+pkgrel=94
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-async' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-colour'
+ 'haskell-conduit' 'haskell-conduit-extra' 'haskell-cryptonite' 
'haskell-cryptonite-conduit'
+ 'haskell-echo' 'haskell-exceptions' 'haskell-extra' 
'haskell-file-embed' 'haskell-filelock'
+ 'haskell-fsnotify' 'haskell-generic-deriving' 'haskell-githash' 
'haskell-hackage-security'
+ 'haskell-hashable' 'haskell-hi-file-parser' 'haskell-hpack' 
'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 
'haskell-http-download'
+ 'haskell-http-types' 'haskell-memory' 'haskell-microlens' 
'haskell-mintty'
+ 'haskell-mono-traversable' 'haskell-mustache' 
'haskell-neat-interpolation'
+ 'haskell-network-uri' 'haskell-open-browser' 
'haskell-optparse-applicative'
+ 'haskell-optparse-generic' 'haskell-optparse-simple' 'haskell-pantry' 
'haskell-path'
+ 'haskell-path-io' 'haskell-persistent' 'haskell-persistent-sqlite'
+ 'haskell-persistent-template' 'haskell-primitive' 
'haskell-project-template'
+ 'haskell-regex-applicative-text' 'haskell-resource-pool' 
'haskell-resourcet'
+ 'haskell-retry' 'haskell-rio' 'haskell-rio-prettyprint' 
'haskell-split'
+ 'haskell-streaming-commons' 'haskell-tar' 'haskell-temporary' 
'haskell-terminal-size'
+ 'haskell-text-metrics' 'haskell-th-reify-many' 'haskell-tls' 
'haskell-typed-process'
+ 'haskell-unicode-transforms' 'haskell-unix-compat' 'haskell-unliftio'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-yaml' 
'haskell-zip-archive'
+ 'haskell-zlib' 'haskell-bindings-uname')
+makedepends=('ghc' 'git' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-raw-strings-qq'
+ 'haskell-smallcheck')
+checkdepends=('cabal-install')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("git+https://github.com/commercialhaskell/stack.git#tag=v$pkgver;
+
https://github.com/commercialhaskell/stack/commit/62c24fa0552dc722260f1cee75325145e837ab6a.patch)
+sha512sums=('SKIP'
+
'99bb04cf6581a8d712413822f834856b036b37ab2ae41307e82a7064b12cdfa43c6ccc60adfa870057f9ba197e1ae4eda144a7088306630400c0798a2b60d9c6')
+
+prepare() {
+  cd $pkgname
+  patch -p1 -i ../62c24fa0552dc722260f1cee75325145e837ab6a.patch || :
+  hpack
+  sed -i -e '/semigroups/d' $pkgname.cabal
+
+  sed -i '1i {-# LANGUAGE UndecidableInstances #-}' 
src/Stack/Storage/{User,Project}.hs
+}
+
+build() {
+  cd $pkgname
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+  -f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions -f-supported-build \
+  --ghc-option='-pie'
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $pkgname
+  # cabal update
+  LD_LIBRARY_PATH="$PWD"/dist/build PATH="$PWD"/dist/build/stack:"$PATH" 
runhaskell Setup test
+  # Integration tests will result in 4 failures on Arch currently
+}
+
+package() {
+  cd $pkgname
+
+  install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  runhaskell Setup copy --destdir="${pkgdir}"
+  install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+  

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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:42:48
  Author: felixonmars
Revision: 538766

upgpkg: stack 2.1.3-94: rebuild with warp 3.3.5, warp-tls 3.2.9

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 22:40:29 UTC (rev 538765)
+++ PKGBUILD2019-12-21 22:42:48 UTC (rev 538766)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=2.1.3
-pkgrel=93
+pkgrel=94
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("BSD")


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

2019-12-21 Thread Antonio Rojas via arch-commits
Date: Saturday, December 21, 2019 @ 22:40:29
  Author: arojas
Revision: 538765

xorgproto makedepends no longer needed

Modified:
  gmic/trunk/PKGBUILD
  performous/trunk/PKGBUILD

---+
 gmic/trunk/PKGBUILD   |2 +-
 performous/trunk/PKGBUILD |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Modified: gmic/trunk/PKGBUILD
===
--- gmic/trunk/PKGBUILD 2019-12-21 22:37:31 UTC (rev 538764)
+++ gmic/trunk/PKGBUILD 2019-12-21 22:40:29 UTC (rev 538765)
@@ -11,7 +11,7 @@
 arch=(x86_64)
 url="https://gmic.eu/;
 license=(custom:CeCILL)
-makedepends=(gimp qt5-base fftw openexr opencv eigen git xorgproto)
+makedepends=(gimp qt5-base fftw openexr opencv eigen git)
 source=(https://gmic.eu/files/source/gmic_$pkgver.tar.gz zart-opencv4.patch
 git+https://github.com/c-koi/zart#commit=2d8727b5)
 sha256sums=('1a2b4c75c428201e52e920bd07e6c04118ae294cb89fce3c1c4ef386421b2a7a'

Modified: performous/trunk/PKGBUILD
===
--- performous/trunk/PKGBUILD   2019-12-21 22:37:31 UTC (rev 538764)
+++ performous/trunk/PKGBUILD   2019-12-21 22:40:29 UTC (rev 538765)
@@ -9,7 +9,7 @@
 url="https://performous.org/;
 license=('GPL')
 depends=('boost-libs' 'libepoxy' 'libxml++2.6' 'portaudio' 'portmidi' 
'librsvg' 'ffmpeg' 'opencv' 'sdl2')
-makedepends=('cmake' 'pkgconfig' 'help2man' 'boost' 'mesa' 'xorgproto')
+makedepends=('cmake' 'pkgconfig' 'help2man' 'boost' 'mesa')
 optdepends=('performous-freesongs: free songs for performous')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/performous/${pkgname}/archive/${pkgver}.tar.gz
 boost-1.67.patch


[arch-commits] Commit in (4 files)

2019-12-21 Thread Antonio Rojas via arch-commits
Date: Saturday, December 21, 2019 @ 22:39:40
  Author: arojas
Revision: 372052

xorgproto makedepends no longer needed

Modified:
  digikam/trunk/PKGBUILD
  falkon/trunk/PKGBUILD
  mlt/trunk/PKGBUILD
  opencv/trunk/PKGBUILD

+
 digikam/trunk/PKGBUILD |2 +-
 falkon/trunk/PKGBUILD  |2 +-
 mlt/trunk/PKGBUILD |2 +-
 opencv/trunk/PKGBUILD  |2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

Modified: digikam/trunk/PKGBUILD
===
--- digikam/trunk/PKGBUILD  2019-12-21 22:37:46 UTC (rev 372051)
+++ digikam/trunk/PKGBUILD  2019-12-21 22:39:40 UTC (rev 372052)
@@ -14,7 +14,7 @@
 url="https://www.digikam.org/;
 depends=(lensfun opencv akonadi-contacts knotifyconfig libksane kfilemetadata 
qtav marble-common threadweaver kcalendarcore
  qt5-xmlpatterns imagemagick glu)
-makedepends=(extra-cmake-modules doxygen eigen boost kdoctools libkvkontakte 
xorgproto)
+makedepends=(extra-cmake-modules doxygen eigen boost kdoctools libkvkontakte)
 optdepends=('hugin: panorama tool' 'qt5-imageformats: support for additional 
image formats (WEBP, TIFF)'
 'libkvkontakte: VKontakte plugin'
 'rawtherapee: RAW import' 'darktable: RAW import')

Modified: falkon/trunk/PKGBUILD
===
--- falkon/trunk/PKGBUILD   2019-12-21 22:37:46 UTC (rev 372051)
+++ falkon/trunk/PKGBUILD   2019-12-21 22:39:40 UTC (rev 372052)
@@ -8,7 +8,7 @@
 url="https://www.falkon.org/;
 license=(GPL3)
 depends=(qt5-webengine qt5-x11extras qt5-svg)
-makedepends=(extra-cmake-modules qt5-tools kio purpose libgnome-keyring 
pyside2 shiboken2 xorgproto)
+makedepends=(extra-cmake-modules qt5-tools kio purpose libgnome-keyring 
pyside2 shiboken2)
 optdepends=('kio: KDE integration' 'purpose: KDE integration' 
'libgnome-keyring: gnome keyring integration'
 'pyside2: Python plugins')
 replaces=(qupzilla)

Modified: mlt/trunk/PKGBUILD
===
--- mlt/trunk/PKGBUILD  2019-12-21 22:37:46 UTC (rev 372051)
+++ mlt/trunk/PKGBUILD  2019-12-21 22:39:40 UTC (rev 372052)
@@ -15,7 +15,7 @@
 url="https://www.mltframework.org;
 license=(GPL)
 makedepends=(ladspa frei0r-plugins libdv sdl_image libsamplerate sox ffmpeg 
vid.stab qt5-svg
- jack libexif python swig movit eigen opencv libebur128 gtk2 
xorgproto)
+ jack libexif python swig movit eigen opencv libebur128 gtk2)
 
source=($pkgname-$pkgver.tar.gz::"https://github.com/mltframework/mlt/archive/v$pkgver.tar.gz;
 mlt-opencv4.patch)
 sha256sums=('9ea6775300b9f997460f5d6adde1ea41e525ecfd30a70b987e13800e4c387ddb'

Modified: opencv/trunk/PKGBUILD
===
--- opencv/trunk/PKGBUILD   2019-12-21 22:37:46 UTC (rev 372051)
+++ opencv/trunk/PKGBUILD   2019-12-21 22:39:40 UTC (rev 372052)
@@ -10,7 +10,7 @@
 license=(BSD)
 url="https://opencv.org/;
 depends=(intel-tbb openexr gst-plugins-base libdc1394 cblas lapack libgphoto2 
jasper ffmpeg)
-makedepends=(cmake python-numpy python-setuptools mesa eigen hdf5 lapacke 
qt5-base vtk glew ant java-environment xorgproto)
+makedepends=(cmake python-numpy python-setuptools mesa eigen hdf5 lapacke 
qt5-base vtk glew ant java-environment)
 optdepends=('opencv-samples: samples'
 'vtk: for the viz module'
 'qt5-base: for the HighGUI module and the Python bindings'


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:37:31
  Author: felixonmars
Revision: 538764

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: shellcheck/repos/community-staging-x86_64/PKGBUILD (from rev 538763, 
shellcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-21 22:37:31 UTC (rev 538764)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ShellCheck
+pkgname=shellcheck
+pkgver=0.7.0
+pkgrel=74
+pkgdesc="Shell script analysis tool"
+url="https://www.shellcheck.net;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-diff' 'haskell-quickcheck' 
'haskell-regex-tdfa')
+makedepends=('ghc' 'pandoc')
+source=("$_hkgname-$pkgver.tar.gz::https://github.com/koalaman/shellcheck/archive/v$pkgver.tar.gz;)
+sha512sums=('46ef486dff09bd51bdc5f053b1dda9e3f2943c66bbf6788824ddf8fcf3b69b7a3a9c00bf98bca0dee9d57ee6df833ca4088252dbf773815248be0fa667f35215')
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option='-pie'
+runhaskell Setup build
+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
+
+pandoc -s -t man shellcheck.1.md -o shellcheck.1
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m644 ${pkgname}.1   "${pkgdir}/usr/share/man/man1/${pkgname}.1"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-12-21 Thread Antonio Rojas via arch-commits
Date: Saturday, December 21, 2019 @ 22:37:46
  Author: arojas
Revision: 372051

xorgproto makedepends no longer needed

Modified:
  qt5-wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 22:04:52 UTC (rev 372050)
+++ PKGBUILD2019-12-21 22:37:46 UTC (rev 372051)
@@ -10,7 +10,7 @@
 license=('GPL3' 'LGPL3' 'FDL' 'custom')
 pkgdesc='Provides APIs for Wayland'
 depends=('qt5-declarative' 'libxcomposite')
-makedepends=('vulkan-headers' 'xorgproto')
+makedepends=('vulkan-headers')
 groups=('qt' 'qt5')
 _pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
 
source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;


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

2019-12-21 Thread Antonio Rojas via arch-commits
Date: Saturday, December 21, 2019 @ 22:36:52
  Author: arojas
Revision: 538762

archrelease: copy trunk to community-staging-x86_64

Added:
  python-pytorch/repos/community-staging-x86_64/PKGBUILD
(from rev 538761, python-pytorch/trunk/PKGBUILD)
Deleted:
  python-pytorch/repos/community-staging-x86_64/PKGBUILD

--+
 PKGBUILD |  326 ++---
 1 file changed, 163 insertions(+), 163 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-21 22:34:08 UTC (rev 538761)
+++ PKGBUILD2019-12-21 22:36:52 UTC (rev 538762)
@@ -1,163 +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.3.1
-pkgrel=6
-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' 'python-numpy' 'protobuf' 'ffmpeg' 'python-future' 'qt5-base')
-makedepends=('python' 'python-setuptools' 'python-yaml' 'python-numpy' 'cmake' 
'cuda' 'cudnn' 'git' 'magma')
-source=("${_pkgname}-${pkgver}::git+https://github.com/pytorch/pytorch.git#tag=v$pkgver;)
-sha256sums=('SKIP')
-
-get_pyver () {
-  python -c 'import sys; print(str(sys.version_info[0]) + "." + 
str(sys.version_info[1]))'
-}
-
-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://github.com/pytorch/pytorch/issues/26555
-  sed -i 's#^  ${CMAKE_CURRENT_SOURCE_DIR}/tensor_iterator_test.cpp##g' 
aten/src/ATen/test/CMakeLists.txt
-
-  # Fix build with Python 3.8
-  # https://github.com/pytorch/pytorch/issues/28060
-  find -name '*.cpp' -exec sed -i '/tp_print/s/nullptr/0/' {} +
-
-  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=OFF
-  # 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 CUDAHOSTCXX=g++-8
-  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 
TORCH_CUDA_ARCH_LIST="3.2;3.5;3.7;5.0;5.2;5.3;6.0;6.0+PTX;6.1;6.1+PTX;6.2;6.2+PTX;7.0;7.0+PTX;7.2;7.2+PTX;7.5;7.5+PTX"
-}
-
-build() {
-  echo "Building without cuda and without non-x86-64 optimizations"
-  export USE_CUDA=0
-  export USE_CUDNN=0
-  cd "${srcdir}/${_pkgname}-${pkgver}"
-  python setup.py build
-
-
-  echo "Building without cuda and with non-x86-64 optimizations"
-  export USE_CUDA=0
-  export USE_CUDNN=0
-  cd "${srcdir}/${_pkgname}-${pkgver}-opt"
-  echo "add_definitions(-march=haswell)" >> cmake/MiscCheck.cmake
-  python setup.py build
-
-
-  echo "Building with cuda and without non-x86-64 optimizations"
-  export USE_CUDA=1
-  export USE_CUDNN=1
-  cd "${srcdir}/${_pkgname}-${pkgver}-cuda"
-  python setup.py build
-
-
-  echo "Building with cuda and with non-x86-64 optimizations"
-  export USE_CUDA=1
-  export USE_CUDNN=1
-  cd "${srcdir}/${_pkgname}-${pkgver}-opt-cuda"
-  echo "add_definitions(-march=haswell)" >> cmake/MiscCheck.cmake
-  python setup.py build
-}
-
-_package() {
-  # Prevent setup.py from re-running CMake and rebuilding
-  sed -e 's/RUN_BUILD_DEPS = True/RUN_BUILD_DEPS = False/g' -i setup.py
-
-  python setup.py install --root="${pkgdir}"/ --optimize=1 --skip-build
-
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
-  pytorchpath="usr/lib/python$(get_pyver)/site-packages/torch"
-  install -d "${pkgdir}/usr/lib"
-
-  # put CMake files in correct place
-  mv "${pkgdir}/${pytorchpath}/share/cmake" "${pkgdir}/usr/lib/cmake"
-
-  # put C++ API in correct place
-  mv "${pkgdir}/${pytorchpath}/include" "${pkgdir}/usr/include"
-  mv "${pkgdir}/${pytorchpath}/lib"/*.so* "${pkgdir}/usr/lib/"
-
-  # clean up duplicates
-  # TODO: move towards direct shared library dependecy of:
-  #   c10, caffe2, libcpuinfo, CUDA RT, gloo, GTest, 

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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:37:23
  Author: felixonmars
Revision: 538763

upgpkg: shellcheck 0.7.0-74: rebuild with warp 3.3.5, warp-tls 3.2.9

Modified:
  shellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 22:36:52 UTC (rev 538762)
+++ PKGBUILD2019-12-21 22:37:23 UTC (rev 538763)
@@ -4,7 +4,7 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.7.0
-pkgrel=73
+pkgrel=74
 pkgdesc="Shell script analysis tool"
 url="https://www.shellcheck.net;
 license=("GPL")


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:34:08
  Author: felixonmars
Revision: 538761

archrelease: copy trunk to community-staging-x86_64

Added:
  postgrest/repos/community-staging-x86_64/
  postgrest/repos/community-staging-x86_64/PKGBUILD
(from rev 538760, postgrest/trunk/PKGBUILD)

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

Copied: postgrest/repos/community-staging-x86_64/PKGBUILD (from rev 538760, 
postgrest/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-21 22:34:08 UTC (rev 538761)
@@ -0,0 +1,72 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=postgrest
+pkgver=6.0.2
+pkgrel=6
+pkgdesc="REST API for any Postgres database"
+url="https://github.com/begriffs/postgrest;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-http' 'haskell-ranged-sets' 'haskell-aeson' 
'haskell-ansi-wl-pprint'
+ 'haskell-base64-bytestring' 'haskell-case-insensitive' 
'haskell-cassava'
+ 'haskell-configurator-pg' 'haskell-contravariant' 
'haskell-contravariant-extras'
+ 'haskell-cookie' 'haskell-either' 'haskell-gitrev' 'haskell-hasql' 
'haskell-hasql-pool'
+ 'haskell-hasql-transaction' 'haskell-heredoc' 'haskell-http-types'
+ 'haskell-insert-ordered-containers' 
'haskell-interpolatedstring-perl6' 'haskell-jose'
+ 'haskell-lens' 'haskell-lens-aeson' 'haskell-network-uri' 
'haskell-optparse-applicative'
+ 'haskell-parsec' 'haskell-protolude' 'haskell-regex-tdfa' 
'haskell-scientific'
+ 'haskell-swagger2' 'haskell-unordered-containers' 'haskell-vector' 
'haskell-wai'
+ 'haskell-wai-cors' 'haskell-wai-extra' 'haskell-wai-middleware-static'
+ 'haskell-auto-update' 'haskell-retry' 'haskell-warp')
+makedepends=('ghc' 'haskell-aeson-qq' 'haskell-async' 'haskell-hspec' 
'haskell-hspec-wai'
+ 'haskell-hspec-wai-json' 'haskell-monad-control' 
'haskell-transformers-base')
+checkdepends=('pifpaf' 'postgresql' 'procps-ng')
+source=("$pkgname-$pkgver.tar.bz2::https://github.com/begriffs/postgrest/archive/v$pkgver.tar.gz;)
+sha512sums=('abdcec3291c2216cb7383e13c80cb36c7bbecaded95ebebdc4482e44418d11abafab591ed1e5568ac38cdfc8e3f8b2c6c1c2a0e3e846ee6f97ab48b42c4c580d')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i 's/< *3.3/<4/' $pkgname.cabal
+
+sed -i 's/5432/9824/' test/fixtures/dumpfixture.sh
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-CI --ghc-option='-pie'
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+
+eval $(pifpaf run postgresql --host 127.0.0.1)
+createdb postgrest_test
+
+# TODO: user authentication issue?
+POSTGREST_TEST_CONNECTION=$(test/create_test_db 
"postgres://$USER@localhost" postgrest_test) runhaskell Setup test || warning 
"Tests failed"
+
+# Disabled: uses stack
+# test/io-tests.sh
+
+pifpaf_stop
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:34:01
  Author: felixonmars
Revision: 538760

upgpkg: postgrest 6.0.2-6: rebuild with warp 3.3.5, warp-tls 3.2.9

Modified:
  postgrest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 22:33:52 UTC (rev 538759)
+++ PKGBUILD2019-12-21 22:34:01 UTC (rev 538760)
@@ -3,7 +3,7 @@
 
 pkgname=postgrest
 pkgver=6.0.2
-pkgrel=5
+pkgrel=6
 pkgdesc="REST API for any Postgres database"
 url="https://github.com/begriffs/postgrest;
 license=("MIT")


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

2019-12-21 Thread Antonio Rojas via arch-commits
Date: Saturday, December 21, 2019 @ 22:33:52
  Author: arojas
Revision: 538759

archrelease: copy trunk to community-staging-x86_64

Added:
  python-pytorch/repos/community-staging-x86_64/
  python-pytorch/repos/community-staging-x86_64/PKGBUILD
(from rev 538758, python-pytorch/trunk/PKGBUILD)

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

Copied: python-pytorch/repos/community-staging-x86_64/PKGBUILD (from rev 
538758, python-pytorch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-21 22:33:52 UTC (rev 538759)
@@ -0,0 +1,163 @@
+# 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.3.1
+pkgrel=6
+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' 'python-numpy' 'protobuf' 'ffmpeg' 'python-future' 'qt5-base')
+makedepends=('python' 'python-setuptools' 'python-yaml' 'python-numpy' 'cmake' 
'cuda' 'cudnn' 'git' 'magma')
+source=("${_pkgname}-${pkgver}::git+https://github.com/pytorch/pytorch.git#tag=v$pkgver;)
+sha256sums=('SKIP')
+
+get_pyver () {
+  python -c 'import sys; print(str(sys.version_info[0]) + "." + 
str(sys.version_info[1]))'
+}
+
+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://github.com/pytorch/pytorch/issues/26555
+  sed -i 's#^  ${CMAKE_CURRENT_SOURCE_DIR}/tensor_iterator_test.cpp##g' 
aten/src/ATen/test/CMakeLists.txt
+
+  # Fix build with Python 3.8
+  # https://github.com/pytorch/pytorch/issues/28060
+  find -name '*.cpp' -exec sed -i '/tp_print/s/nullptr/0/' {} +
+
+  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=OFF
+  # 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 CUDAHOSTCXX=g++-8
+  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 
TORCH_CUDA_ARCH_LIST="3.2;3.5;3.7;5.0;5.2;5.3;6.0;6.0+PTX;6.1;6.1+PTX;6.2;6.2+PTX;7.0;7.0+PTX;7.2;7.2+PTX;7.5;7.5+PTX"
+}
+
+build() {
+  echo "Building without cuda and without non-x86-64 optimizations"
+  export USE_CUDA=0
+  export USE_CUDNN=0
+  cd "${srcdir}/${_pkgname}-${pkgver}"
+  python setup.py build
+
+
+  echo "Building without cuda and with non-x86-64 optimizations"
+  export USE_CUDA=0
+  export USE_CUDNN=0
+  cd "${srcdir}/${_pkgname}-${pkgver}-opt"
+  echo "add_definitions(-march=haswell)" >> cmake/MiscCheck.cmake
+  python setup.py build
+
+
+  echo "Building with cuda and without non-x86-64 optimizations"
+  export USE_CUDA=1
+  export USE_CUDNN=1
+  cd "${srcdir}/${_pkgname}-${pkgver}-cuda"
+  python setup.py build
+
+
+  echo "Building with cuda and with non-x86-64 optimizations"
+  export USE_CUDA=1
+  export USE_CUDNN=1
+  cd "${srcdir}/${_pkgname}-${pkgver}-opt-cuda"
+  echo "add_definitions(-march=haswell)" >> cmake/MiscCheck.cmake
+  python setup.py build
+}
+
+_package() {
+  # Prevent setup.py from re-running CMake and rebuilding
+  sed -e 's/RUN_BUILD_DEPS = True/RUN_BUILD_DEPS = False/g' -i setup.py
+
+  python setup.py install --root="${pkgdir}"/ --optimize=1 --skip-build
+
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  pytorchpath="usr/lib/python$(get_pyver)/site-packages/torch"
+  install -d "${pkgdir}/usr/lib"
+
+  # put CMake files in correct place
+  mv "${pkgdir}/${pytorchpath}/share/cmake" "${pkgdir}/usr/lib/cmake"
+
+  # put C++ API in correct place
+  mv "${pkgdir}/${pytorchpath}/include" "${pkgdir}/usr/include"
+  mv "${pkgdir}/${pytorchpath}/lib"/*.so* "${pkgdir}/usr/lib/"
+
+  # clean up duplicates
+  # TODO: 

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

2019-12-21 Thread Antonio Rojas via arch-commits
Date: Saturday, December 21, 2019 @ 22:32:16
  Author: arojas
Revision: 538758

opencv 4.2 rebuild

Modified:
  python-pytorch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 22:30:58 UTC (rev 538757)
+++ PKGBUILD2019-12-21 22:32:16 UTC (rev 538758)
@@ -5,7 +5,7 @@
 pkgname=("python-pytorch" "python-pytorch-opt" "python-pytorch-cuda" 
"python-pytorch-opt-cuda")
 _pkgname="pytorch"
 pkgver=1.3.1
-pkgrel=5
+pkgrel=6
 pkgdesc="Tensors and Dynamic neural networks in Python with strong GPU 
acceleration"
 arch=('x86_64')
 url="https://pytorch.org;


[arch-commits] Commit in exim/trunk (PKGBUILD exim.Makefile)

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:30:35
  Author: felixonmars
Revision: 538756

upgpkg: exim 4.93-1

Modified:
  exim/trunk/PKGBUILD
  exim/trunk/exim.Makefile

---+
 PKGBUILD  |8 
 exim.Makefile |  469 +++-
 2 files changed, 372 insertions(+), 105 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 22:30:09 UTC (rev 538755)
+++ PKGBUILD2019-12-21 22:30:35 UTC (rev 538756)
@@ -5,7 +5,7 @@
 # Contributor: judd 
 
 pkgname=exim
-pkgver=4.92.3
+pkgver=4.93
 pkgrel=1
 pkgdesc='Message Transfer Agent'
 arch=('x86_64')
@@ -12,7 +12,7 @@
 url='https://www.exim.org/'
 license=('GPL')
 backup=('etc/mail/aliases' 'etc/mail/exim.conf' 'etc/logrotate.d/exim')
-depends=('gdbm' 'libldap' 'libnsl' 'openssl' 'pam' 'pcre' 'sqlite')
+depends=('gdbm' 'libldap' 'libidn' 'libidn2' 'libnsl' 'libspf2' 'openssl' 
'pam' 'pcre' 'sqlite')
 provides=('smtp-server' 'smtp-forwarder')
 conflicts=('smtp-server' 'smtp-forwarder')
 source=("https://ftp.exim.org/pub/exim/exim4/exim-$pkgver.tar.bz2"{,.asc}
@@ -26,11 +26,11 @@
 exim-submission.socket
 exim.sysusers
 exim.tmpfiles)
-sha512sums=('6c42faa319fb17574a95d8f831d1b6c572edb611973d67967dbff704b7e0829b7a11461dc1ea8245a5e8d53c369905faf01e12a2b6b11bb0ed2a213595292c4e'
+sha512sums=('18301520ff02978e4f19d7b651495bc9b86d99e45c60d4bef63aa07ec43a5d8ee2e1bdbd512861c974af2210a3aeae2d34d41cff1112a97ec7cedf771126b499'
 'SKIP'
 
'a91c6a9e5b3ac9d143741dba01e11616812ba44c3a8c768c8232364026460f0b8fdeeb120a2f2b86742a6e3ebbfc9d6335b86d108b044e43108b4a6f0374c9ad'
 
'd8e3b466e0bba8175cfe762058dec49018495a260aa5efd139f4ef435284c305958cbd7fc514e81042146368b749ae38f0bf276fc0b4b91918ef33126900aa81'
-
'3e9f65cf6f510cf7e9728ab52ec6b7896f123733c8dfaf88928098d6de55f3cc3b6b47686bc3cc0fcb18c16a3f326977be0ceeda11429a5b48897ea54026419a'
+
'f52c7c32e70977ef14d6615e79beb813db3c3ef319985060a1b4bfd1ef3a547b7adedbf7f2f63058f677061f972d52d34743b8ff0daa6c48e02e2364023e5df8'
 
'dc28698f15e8eaa4614ae81fc8cb76d92fed1110ce02f7a6ee8feace418dbb194711eb2d4dd444cf818628c11721e21d80b7b974879ab6ddd78cc717cce17c2f'
 
'e2fc3966c320460a26fbbf83e98df725587dc126dfe9d7a84c3285eb4b22a061b30499425c70f3d73cf13aa81c194274004efd20ce1316836463b982117909f8'
 
'11c8133ee15b3e5193c9b1c59aed66c81b6e045dd23310bede9fcde6c88905db5ef08afdb798b53b75a7465915ea1247e980edf95db07a7f9b7bb58ce95fbb5a'

Modified: exim.Makefile
===
--- exim.Makefile   2019-12-21 22:30:09 UTC (rev 538755)
+++ exim.Makefile   2019-12-21 22:30:35 UTC (rev 538756)
@@ -1,5 +1,4 @@
-# $Cambridge: exim/src/src/EDITME,v 1.27 2010/06/12 15:21:25 jetmore Exp $
-
+# $Cambridge: exim/src/src/EDITME,v 4.93 $
 ##
 #  The Exim mail transport agent #
 ##
@@ -14,11 +13,13 @@
 # Exim distribution directory before running the "make" command.
 
 # Things that depend on the operating system have default settings in
-# OS/Makefile-Default, but these are overridden for some OS by files called
-# called OS/Makefile-. You can further override these by creating files
-# called Local/Makefile-, where "" stands for the name of your
-# operating system - look at the names in the OS directory to see which names
-# are recognized.
+# OS/Makefile-Default, but these are overridden for some OS by files
+# called called OS/Makefile-. You can further override these by
+# creating files called Local/Makefile-, and
+# Local/Makefile- (where "" stands for the name of
+# your operating system - look at the names in the OS directory to see
+# which names are recognized, and "" is derived from the
+# environment variable "build")
 
 # However, if you are building Exim for a single OS only, you don't need to
 # worry about setting up Local/Makefile-. Any build-time configuration
@@ -52,6 +53,9 @@
 # Exim can also be configured to use the native calls for Berkeley DB (obsolete
 # versions 1.85, 2.x, 3.x, or the current 4.x version) and also for gdbm.
 
+USE_GDBM=yes
+DBMLIB=-lgdbm
+
 # For some operating systems, a default DBM library (other than ndbm) is
 # selected by a setting in the OS-specific Makefile. Most modern OS now have
 # a DBM library installed as standard, and in many cases this will be selected
@@ -133,7 +137,7 @@
 # deliveries. (Local deliveries run as various non-root users, typically as the
 # owner of a local mailbox.) Specifying these values as root is not supported.
 
-EXIM_USER=ref:exim
+# EXIM_USER=
 
 # If you specify EXIM_USER as a name, this is looked up at build time, and the
 # uid number is built into the binary. However, you can specify that this
@@ -140,7 +144,7 @@
 # lookup is deferred until runtime. In this case, it is the name 

[arch-commits] Commit in exim/repos (12 files)

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:30:58
  Author: felixonmars
Revision: 538757

archrelease: copy trunk to community-testing-x86_64

Added:
  exim/repos/community-testing-x86_64/
  exim/repos/community-testing-x86_64/PKGBUILD
(from rev 538756, exim/trunk/PKGBUILD)
  exim/repos/community-testing-x86_64/aliases
(from rev 538756, exim/trunk/aliases)
  exim/repos/community-testing-x86_64/exim-submission.socket
(from rev 538756, exim/trunk/exim-submission.socket)
  exim/repos/community-testing-x86_64/exim-submission@.service
(from rev 538756, exim/trunk/exim-submission@.service)
  exim/repos/community-testing-x86_64/exim.Makefile
(from rev 538756, exim/trunk/exim.Makefile)
  exim/repos/community-testing-x86_64/exim.logrotate
(from rev 538756, exim/trunk/exim.logrotate)
  exim/repos/community-testing-x86_64/exim.service
(from rev 538756, exim/trunk/exim.service)
  exim/repos/community-testing-x86_64/exim.socket
(from rev 538756, exim/trunk/exim.socket)
  exim/repos/community-testing-x86_64/exim.sysusers
(from rev 538756, exim/trunk/exim.sysusers)
  exim/repos/community-testing-x86_64/exim.tmpfiles
(from rev 538756, exim/trunk/exim.tmpfiles)
  exim/repos/community-testing-x86_64/exim@.service
(from rev 538756, exim/trunk/exim@.service)

--+
 PKGBUILD |   95 ++
 aliases  |   35 +
 exim-submission.socket   |   10 
 exim-submission@.service |   11 
 exim.Makefile| 1497 +
 exim.logrotate   |6 
 exim.service |   10 
 exim.socket  |   10 
 exim.sysusers|1 
 exim.tmpfiles|3 
 exim@.service|7 
 11 files changed, 1685 insertions(+)

Copied: exim/repos/community-testing-x86_64/PKGBUILD (from rev 538756, 
exim/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-12-21 22:30:58 UTC (rev 538757)
@@ -0,0 +1,95 @@
+# Maintainer: Felix Yan 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Lukas Fleischer 
+# Contributor: Angel Velasquez 
+# Contributor: judd 
+
+pkgname=exim
+pkgver=4.93
+pkgrel=1
+pkgdesc='Message Transfer Agent'
+arch=('x86_64')
+url='https://www.exim.org/'
+license=('GPL')
+backup=('etc/mail/aliases' 'etc/mail/exim.conf' 'etc/logrotate.d/exim')
+depends=('gdbm' 'libldap' 'libidn' 'libidn2' 'libnsl' 'libspf2' 'openssl' 
'pam' 'pcre' 'sqlite')
+provides=('smtp-server' 'smtp-forwarder')
+conflicts=('smtp-server' 'smtp-forwarder')
+source=("https://ftp.exim.org/pub/exim/exim4/exim-$pkgver.tar.bz2"{,.asc}
+aliases
+exim.logrotate
+exim.Makefile
+exim-submission@.service
+exim.service
+exim@.service
+exim.socket
+exim-submission.socket
+exim.sysusers
+exim.tmpfiles)
+sha512sums=('18301520ff02978e4f19d7b651495bc9b86d99e45c60d4bef63aa07ec43a5d8ee2e1bdbd512861c974af2210a3aeae2d34d41cff1112a97ec7cedf771126b499'
+'SKIP'
+
'a91c6a9e5b3ac9d143741dba01e11616812ba44c3a8c768c8232364026460f0b8fdeeb120a2f2b86742a6e3ebbfc9d6335b86d108b044e43108b4a6f0374c9ad'
+
'd8e3b466e0bba8175cfe762058dec49018495a260aa5efd139f4ef435284c305958cbd7fc514e81042146368b749ae38f0bf276fc0b4b91918ef33126900aa81'
+
'f52c7c32e70977ef14d6615e79beb813db3c3ef319985060a1b4bfd1ef3a547b7adedbf7f2f63058f677061f972d52d34743b8ff0daa6c48e02e2364023e5df8'
+
'dc28698f15e8eaa4614ae81fc8cb76d92fed1110ce02f7a6ee8feace418dbb194711eb2d4dd444cf818628c11721e21d80b7b974879ab6ddd78cc717cce17c2f'
+
'e2fc3966c320460a26fbbf83e98df725587dc126dfe9d7a84c3285eb4b22a061b30499425c70f3d73cf13aa81c194274004efd20ce1316836463b982117909f8'
+
'11c8133ee15b3e5193c9b1c59aed66c81b6e045dd23310bede9fcde6c88905db5ef08afdb798b53b75a7465915ea1247e980edf95db07a7f9b7bb58ce95fbb5a'
+
'db621116907ceb573e6f34581f47c91f751bff593054d7ddc32397b34c7f2405bec184bdb0589d2ac457fa3a61bcba072761e3a6293a99c9c764d2d9fd6069ae'
+
'4a233761793e3510e9efa5aad3a6098c41b757f13133a7ea825680f2b393aba8d7935f16bf1dd065dde884fe7ba45639a8d398333a7d9bf0a6b72f88c8f2a09d'
+
'87a16aa7bd60a8df0da8131bb811825232f25e934b9326460a2f8f0f8e0f44c53d71b1225ecfee8d30c8714f6e9f85f5f0821e346a7751d43683b406376d605b'
+
'f8a34fea0a65d0992732bc444bbb334d060de7d91d9cca6f00bc950ba289afa813783517dd3999437f89bc194290785805df7081606a65abb1db3fd3b3aa94ca')
+validpgpkeys=('C693A034E1ED6EE954CAE2DA13DAD99C7E41519C'  # Phil Pennock 

+  'ACBB4324393ADE3515DA2DDA4D1E900E14C1CC04'  # Phil Pennock 

+  'E5CA331D44AB8E4C806FDBEE26101B62F69376CE'  # Heiko 
Schlittermann (Exim MTA Maintainer) 
+  'A986F3A6BD6377D8730958DEBCE58C8CE41F32DF') # Jeremy Harris 

+
+build() {
+  cd $pkgname-$pkgver
+
+  cp ../$pkgname.Makefile 

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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:30:09
  Author: felixonmars
Revision: 538755

archrelease: copy trunk to community-staging-x86_64

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

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

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


[arch-commits] Commit in wine-staging/repos/multilib-x86_64 (8 files)

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:29:44
  Author: felixonmars
Revision: 538753

archrelease: copy trunk to multilib-x86_64

Added:
  wine-staging/repos/multilib-x86_64/30-win32-aliases.conf
(from rev 538752, wine-staging/trunk/30-win32-aliases.conf)
  wine-staging/repos/multilib-x86_64/PKGBUILD
(from rev 538752, wine-staging/trunk/PKGBUILD)
  wine-staging/repos/multilib-x86_64/wine-binfmt.conf
(from rev 538752, wine-staging/trunk/wine-binfmt.conf)
  wine-staging/repos/multilib-x86_64/wine.install
(from rev 538752, wine-staging/trunk/wine.install)
Deleted:
  wine-staging/repos/multilib-x86_64/30-win32-aliases.conf
  wine-staging/repos/multilib-x86_64/PKGBUILD
  wine-staging/repos/multilib-x86_64/wine-binfmt.conf
  wine-staging/repos/multilib-x86_64/wine.install

--+
 PKGBUILD |  382 ++---
 wine-binfmt.conf |4 
 wine.install |   14 -
 3 files changed, 200 insertions(+), 200 deletions(-)

Deleted: 30-win32-aliases.conf
===
(Binary files differ)

Copied: wine-staging/repos/multilib-x86_64/30-win32-aliases.conf (from rev 
538752, wine-staging/trunk/30-win32-aliases.conf)
===
(Binary files differ)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-21 22:29:31 UTC (rev 538752)
+++ PKGBUILD2019-12-21 22:29:44 UTC (rev 538753)
@@ -1,191 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine-staging
-pkgver=4.21
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=(https://dl.winehq.org/wine/source/4.x/wine-$_pkgbasever.tar.xz{,.sign}
-
"wine-staging-v$_pkgbasever.tar.gz::https://github.com/wine-staging/wine-staging/archive/v$_pkgbasever.tar.gz;
-30-win32-aliases.conf
-wine-binfmt.conf)
-sha512sums=('f962e47577db2de4e74022b8d51e81e30a004f98b37d8eee5889334271f013123e3ff53e5ac1416c2dd93ec90bee8a2d300b3842c20124df99ef067ac5c72f53'
-'SKIP'
-
'0c6c32f86d252f827ebb8d5df2b046c4f0a49aa7c0ca47939b33844786e561d5f676db1e199ec3cd9969757985f66b865099061f5e77234c3aabd4fd29d3a063'
-
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb'
-
'bdde7ae015d8a98ba55e84b86dc05aca1d4f8de85be7e4bd6187054bfe4ac83b5a20538945b63fb073caab78022141e9545685e4e3698c97ff173cf30859e285')
-validpgpkeys=(5AC1A08B03BD7A313E0A955AF5E6E9EEB9461DD7
-  DA23579A74D4AD9AF9D3F945CEFAC8EAAF17519D)
-
-pkgdesc="A compatibility layer for running Windows programs - Staging branch"
-url="https://www.wine-staging.com;
-arch=(x86_64)
-options=(staticlibs)
-license=(LGPL)
-
-depends=(
-  attr lib32-attr
-  fontconfig   lib32-fontconfig
-  lcms2lib32-lcms2
-  libxml2  lib32-libxml2
-  libxcursor   lib32-libxcursor
-  libxrandrlib32-libxrandr
-  libxdamage   lib32-libxdamage
-  libxilib32-libxi
-  gettext  lib32-gettext
-  freetype2lib32-freetype2
-  glu  lib32-glu
-  libsmlib32-libsm
-  gcc-libs lib32-gcc-libs
-  libpcap  lib32-libpcap
-  desktop-file-utils
-)
-
-makedepends=(autoconf ncurses bison perl fontforge flex
-  'gcc>=4.5.0-2'
-  gifliblib32-giflib
-  libpnglib32-libpng
-  gnutlslib32-gnutls
-  libxinerama   lib32-libxinerama
-  libxcomposite lib32-libxcomposite
-  libxmulib32-libxmu
-  libxxf86vmlib32-libxxf86vm
-  libldap   lib32-libldap
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  alsa-lib  lib32-alsa-lib
-  libxcomposite lib32-libxcomposite
-  mesa  lib32-mesa
-  mesa-libgllib32-mesa-libgl
-  opencl-icd-loader lib32-opencl-icd-loader
-  libxslt   lib32-libxslt
-  libpulse  lib32-libpulse
-  libva lib32-libva
-  gtk3  lib32-gtk3
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  vulkan-icd-loader lib32-vulkan-icd-loader
-  sdl2  lib32-sdl2
-  vkd3d lib32-vkd3d
-  libcups   lib32-libcups
-  sane
-  libgphoto2
-  gsm
-  ffmpeg
-  samba
-  opencl-headers
-)
-
-optdepends=(
-  gifliblib32-giflib
-  libpnglib32-libpng
-  libldap   lib32-libldap
-  gnutlslib32-gnutls
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-plugins  lib32-alsa-plugins
-  

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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:29:55
  Author: felixonmars
Revision: 538754

upgpkg: pandoc-crossref 0.3.4.1-139: rebuild with warp 3.3.5, warp-tls 3.2.9

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 22:29:44 UTC (rev 538753)
+++ PKGBUILD2019-12-21 22:29:55 UTC (rev 538754)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.4.1
-pkgrel=138
+pkgrel=139
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname};
 license=("GPL2")


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:29:31
  Author: felixonmars
Revision: 538752

upgpkg: wine-staging 5.0rc1-1

Modified:
  wine-staging/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 22:28:54 UTC (rev 538751)
+++ PKGBUILD2019-12-21 22:29:31 UTC (rev 538752)
@@ -5,18 +5,18 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=wine-staging
-pkgver=4.21
+pkgver=5.0rc1
 pkgrel=1
 
 _pkgbasever=${pkgver/rc/-rc}
 
-source=(https://dl.winehq.org/wine/source/4.x/wine-$_pkgbasever.tar.xz{,.sign}
+source=(https://dl.winehq.org/wine/source/5.0/wine-$_pkgbasever.tar.xz{,.sign}
 
"wine-staging-v$_pkgbasever.tar.gz::https://github.com/wine-staging/wine-staging/archive/v$_pkgbasever.tar.gz;
 30-win32-aliases.conf
 wine-binfmt.conf)
-sha512sums=('f962e47577db2de4e74022b8d51e81e30a004f98b37d8eee5889334271f013123e3ff53e5ac1416c2dd93ec90bee8a2d300b3842c20124df99ef067ac5c72f53'
+sha512sums=('43877cd200e951ffe0e61c3877f140b9c95da835c114b5c8ba5f39e85f4950fa3704fd39a13dd36c73461d81bc668f92dc2c45feca0974d80fd41d7ba5d5c7b0'
 'SKIP'
-
'0c6c32f86d252f827ebb8d5df2b046c4f0a49aa7c0ca47939b33844786e561d5f676db1e199ec3cd9969757985f66b865099061f5e77234c3aabd4fd29d3a063'
+
'5aefbfd8f821a4dcd971b9d0a069d26a8653eb0d096e649da9e9f76410aa14898d1b00608127485197d6c5984142e0930757d621940d8911c7d72955beb3f136'
 
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb'
 
'bdde7ae015d8a98ba55e84b86dc05aca1d4f8de85be7e4bd6187054bfe4ac83b5a20538945b63fb073caab78022141e9545685e4e3698c97ff173cf30859e285')
 validpgpkeys=(5AC1A08B03BD7A313E0A955AF5E6E9EEB9461DD7


[arch-commits] Commit in wine/repos/multilib-x86_64 (8 files)

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:28:54
  Author: felixonmars
Revision: 538751

archrelease: copy trunk to multilib-x86_64

Added:
  wine/repos/multilib-x86_64/30-win32-aliases.conf
(from rev 538750, wine/trunk/30-win32-aliases.conf)
  wine/repos/multilib-x86_64/PKGBUILD
(from rev 538750, wine/trunk/PKGBUILD)
  wine/repos/multilib-x86_64/wine-binfmt.conf
(from rev 538750, wine/trunk/wine-binfmt.conf)
  wine/repos/multilib-x86_64/wine.install
(from rev 538750, wine/trunk/wine.install)
Deleted:
  wine/repos/multilib-x86_64/30-win32-aliases.conf
  wine/repos/multilib-x86_64/PKGBUILD
  wine/repos/multilib-x86_64/wine-binfmt.conf
  wine/repos/multilib-x86_64/wine.install

---+
 30-win32-aliases.conf |   40 ++---
 PKGBUILD  |  352 
 wine-binfmt.conf  |4 
 wine.install  |   14 -
 4 files changed, 205 insertions(+), 205 deletions(-)

Deleted: 30-win32-aliases.conf
===
--- 30-win32-aliases.conf   2019-12-21 22:28:41 UTC (rev 538750)
+++ 30-win32-aliases.conf   2019-12-21 22:28:54 UTC (rev 538751)
@@ -1,20 +0,0 @@
-
-
-
-  
-MS Shell Dlg
-Microsoft Sans Serif
-sans-serif
-  
-  
-MS Shell Dlg 2
-Tahoma
-sans-serif
-  
-
-  
-MS Sans Serif
-Microsoft Sans Serif
-sans-serif
-  
-

Copied: wine/repos/multilib-x86_64/30-win32-aliases.conf (from rev 538750, 
wine/trunk/30-win32-aliases.conf)
===
--- 30-win32-aliases.conf   (rev 0)
+++ 30-win32-aliases.conf   2019-12-21 22:28:54 UTC (rev 538751)
@@ -0,0 +1,20 @@
+
+
+
+  
+MS Shell Dlg
+Microsoft Sans Serif
+sans-serif
+  
+  
+MS Shell Dlg 2
+Tahoma
+sans-serif
+  
+
+  
+MS Sans Serif
+Microsoft Sans Serif
+sans-serif
+  
+

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-21 22:28:41 UTC (rev 538750)
+++ PKGBUILD2019-12-21 22:28:54 UTC (rev 538751)
@@ -1,176 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine
-pkgver=4.21
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=(https://dl.winehq.org/wine/source/4.x/$pkgname-$_pkgbasever.tar.xz{,.sign}
-30-win32-aliases.conf
-wine-binfmt.conf)
-sha512sums=('f962e47577db2de4e74022b8d51e81e30a004f98b37d8eee5889334271f013123e3ff53e5ac1416c2dd93ec90bee8a2d300b3842c20124df99ef067ac5c72f53'
-'SKIP'
-
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb'
-
'bdde7ae015d8a98ba55e84b86dc05aca1d4f8de85be7e4bd6187054bfe4ac83b5a20538945b63fb073caab78022141e9545685e4e3698c97ff173cf30859e285')
-validpgpkeys=(5AC1A08B03BD7A313E0A955AF5E6E9EEB9461DD7
-  DA23579A74D4AD9AF9D3F945CEFAC8EAAF17519D)
-
-pkgdesc="A compatibility layer for running Windows programs"
-url="http://www.winehq.com;
-arch=(x86_64)
-options=(staticlibs)
-license=(LGPL)
-depends=(
-  fontconfig  lib32-fontconfig
-  lcms2   lib32-lcms2
-  libxml2 lib32-libxml2
-  libxcursor  lib32-libxcursor
-  libxrandr   lib32-libxrandr
-  libxdamage  lib32-libxdamage
-  libxi   lib32-libxi
-  gettext lib32-gettext
-  freetype2   lib32-freetype2
-  glu lib32-glu
-  libsm   lib32-libsm
-  gcc-libslib32-gcc-libs
-  libpcap lib32-libpcap
-  faudio  lib32-faudio
-  desktop-file-utils
-)
-makedepends=(autoconf ncurses bison perl fontforge flex
-  'gcc>=4.5.0-2'
-  gifliblib32-giflib
-  libpnglib32-libpng
-  gnutlslib32-gnutls
-  libxinerama   lib32-libxinerama
-  libxcomposite lib32-libxcomposite
-  libxmulib32-libxmu
-  libxxf86vmlib32-libxxf86vm
-  libldap   lib32-libldap
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-lib  lib32-alsa-lib
-  libxcomposite lib32-libxcomposite
-  mesa  lib32-mesa
-  mesa-libgllib32-mesa-libgl
-  opencl-icd-loader lib32-opencl-icd-loader
-  libxslt   lib32-libxslt
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  vulkan-icd-loader lib32-vulkan-icd-loader
-  vkd3d lib32-vkd3d
-  sdl2  lib32-sdl2
-  libcups   lib32-libcups
-  libgphoto2
-  sane
-  gsm
-  vulkan-headers
-  samba
-  opencl-headers
-)
-optdepends=(
-  gifliblib32-giflib
-  libpnglib32-libpng
-  libldap   lib32-libldap
-  gnutlslib32-gnutls
-  

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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:28:15
  Author: felixonmars
Revision: 538749

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
538748, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-21 22:28:15 UTC (rev 538749)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.12.5.2
+pkgrel=142
+pkgdesc="A static website compiler library"
+url="https://jaspervdj.be/hakyll;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptohash'
+ 'haskell-data-default' 'haskell-file-embed' 'haskell-fsnotify' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-lrucache' 'haskell-network-uri'
+ 'haskell-optparse-applicative' 'pandoc' 'pandoc-citeproc' 
'haskell-random'
+ 'haskell-regex-tdfa' 'haskell-resourcet' 'haskell-scientific' 
'haskell-tagsoup'
+ 'haskell-time-locale-compat' 'haskell-unordered-containers' 
'haskell-vector'
+ 'haskell-wai' 'haskell-wai-app-static' 'haskell-warp' 'haskell-yaml')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-tasty' 'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('715324fa19b85e8f39e33b4d5082a04f40fc667737b41117da68a6a0eedad288a551929fa2eea636dd421d4d416996125ff9d83752c7daaf64ecc191e9790469')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e 's/< *2.13/<3/' -e 's/< *3.3/<4/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir="$pkgname" 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -fwatchserver -fpreviewserver -fusepandoc
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test || warning 
"https://github.com/jaspervdj/hakyll/issues/682;
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:28:08
  Author: felixonmars
Revision: 538748

upgpkg: haskell-hakyll 4.12.5.2-142: rebuild with warp 3.3.5, warp-tls 3.2.9

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 22:26:02 UTC (rev 538747)
+++ PKGBUILD2019-12-21 22:28:08 UTC (rev 538748)
@@ -4,7 +4,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.12.5.2
-pkgrel=141
+pkgrel=142
 pkgdesc="A static website compiler library"
 url="https://jaspervdj.be/hakyll;
 license=("BSD")


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:28:41
  Author: felixonmars
Revision: 538750

upgpkg: wine 5.0rc1-1

Modified:
  wine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 22:28:15 UTC (rev 538749)
+++ PKGBUILD2019-12-21 22:28:41 UTC (rev 538750)
@@ -4,15 +4,15 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=wine
-pkgver=4.21
+pkgver=5.0rc1
 pkgrel=1
 
 _pkgbasever=${pkgver/rc/-rc}
 
-source=(https://dl.winehq.org/wine/source/4.x/$pkgname-$_pkgbasever.tar.xz{,.sign}
+source=(https://dl.winehq.org/wine/source/5.0/$pkgname-$_pkgbasever.tar.xz{,.sign}
 30-win32-aliases.conf
 wine-binfmt.conf)
-sha512sums=('f962e47577db2de4e74022b8d51e81e30a004f98b37d8eee5889334271f013123e3ff53e5ac1416c2dd93ec90bee8a2d300b3842c20124df99ef067ac5c72f53'
+sha512sums=('43877cd200e951ffe0e61c3877f140b9c95da835c114b5c8ba5f39e85f4950fa3704fd39a13dd36c73461d81bc668f92dc2c45feca0974d80fd41d7ba5d5c7b0'
 'SKIP'
 
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb'
 
'bdde7ae015d8a98ba55e84b86dc05aca1d4f8de85be7e4bd6187054bfe4ac83b5a20538945b63fb073caab78022141e9545685e4e3698c97ff173cf30859e285')


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:26:02
  Author: felixonmars
Revision: 538747

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:25:55
  Author: felixonmars
Revision: 538746

upgpkg: pandoc-citeproc 0.16.2-158: rebuild with warp 3.3.5, warp-tls 3.2.9

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 22:23:42 UTC (rev 538745)
+++ PKGBUILD2019-12-21 22:25:55 UTC (rev 538746)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.16.2
-pkgrel=157
+pkgrel=158
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname;
 license=("BSD")


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:23:31
  Author: felixonmars
Revision: 538744

upgpkg: agda-stdlib 1.2-1

Modified:
  agda-stdlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 22:23:05 UTC (rev 538743)
+++ PKGBUILD2019-12-21 22:23:31 UTC (rev 538744)
@@ -2,7 +2,7 @@
 # Contributor: Arch Haskell Team 
 
 pkgname=agda-stdlib
-pkgver=1.1
+pkgver=1.2
 pkgrel=1
 pkgdesc="Agda standard libraries"
 url="https://github.com/agda/agda-stdlib;
@@ -13,7 +13,7 @@
 options=('staticlibs')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/agda/agda-stdlib/archive/v$pkgver.tar.gz;
 standard-library.agda-lib)
-sha512sums=('1d73b6bbac70653b6be13714fdb3c077600ab08809ea8a3741e54d94e1e11294ed5adb30b17cc3073d7942451a53c9a7d005d1c6a4541b78fbfd50fdffe24c74'
+sha512sums=('0007a591bf8cf5470ec63381b511692afd2e5665b6894a8864b30a17e02e8294a39d1522a815f66ac2e0175502bd6ad8da7f01f55c6900b6923a5140f4b714ca'
 
'92fad2f9b941af4506bb0d5d9d533d09823df89f7530ee5d787b741816ba07e68f25b96d6653ae6ed949ec23484c1fba47a63cc6401311462a55b5e06cfc032c')
 
 build() {


[arch-commits] Commit in agda-stdlib/repos/community-x86_64 (4 files)

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:23:42
  Author: felixonmars
Revision: 538745

archrelease: copy trunk to community-x86_64

Added:
  agda-stdlib/repos/community-x86_64/PKGBUILD
(from rev 538744, agda-stdlib/trunk/PKGBUILD)
  agda-stdlib/repos/community-x86_64/standard-library.agda-lib
(from rev 538744, agda-stdlib/trunk/standard-library.agda-lib)
Deleted:
  agda-stdlib/repos/community-x86_64/PKGBUILD
  agda-stdlib/repos/community-x86_64/standard-library.agda-lib

---+
 PKGBUILD  |   76 ++--
 standard-library.agda-lib |4 +-
 2 files changed, 40 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-21 22:23:31 UTC (rev 538744)
+++ PKGBUILD2019-12-21 22:23:42 UTC (rev 538745)
@@ -1,38 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-pkgname=agda-stdlib
-pkgver=1.1
-pkgrel=1
-pkgdesc="Agda standard libraries"
-url="https://github.com/agda/agda-stdlib;
-license=("MIT")
-arch=('x86_64')
-depends=('agda')
-makedepends=('ghc' 'haskell-filemanip')
-options=('staticlibs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/agda/agda-stdlib/archive/v$pkgver.tar.gz;
-standard-library.agda-lib)
-sha512sums=('1d73b6bbac70653b6be13714fdb3c077600ab08809ea8a3741e54d94e1e11294ed5adb30b17cc3073d7942451a53c9a7d005d1c6a4541b78fbfd50fdffe24c74'
-
'92fad2f9b941af4506bb0d5d9d533d09823df89f7530ee5d787b741816ba07e68f25b96d6653ae6ed949ec23484c1fba47a63cc6401311462a55b5e06cfc032c')
-
-build() {
-cd $pkgname-$pkgver
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla
-runhaskell Setup build
-
-dist/build/GenerateEverything/GenerateEverything
-
-agda -i. -isrc Everything.agda
-agda --html -i. -isrc README.agda
-}
-
-package() {
-install -D -m644 standard-library.agda-lib 
"$pkgdir"/usr/share/agda/lib/standard-library.agda-lib
-
-cd $pkgname-$pkgver
-install -dm755 "$pkgdir"/usr/share/agda/lib/stdlib
-cp -pr Everything.agda* src/* "$pkgdir"/usr/share/agda/lib/stdlib
-install -D -m644 LICENCE "$pkgdir"/usr/share/licenses/$pkgname/LICENCE
-}

Copied: agda-stdlib/repos/community-x86_64/PKGBUILD (from rev 538744, 
agda-stdlib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-21 22:23:42 UTC (rev 538745)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=agda-stdlib
+pkgver=1.2
+pkgrel=1
+pkgdesc="Agda standard libraries"
+url="https://github.com/agda/agda-stdlib;
+license=("MIT")
+arch=('x86_64')
+depends=('agda')
+makedepends=('ghc' 'haskell-filemanip')
+options=('staticlibs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/agda/agda-stdlib/archive/v$pkgver.tar.gz;
+standard-library.agda-lib)
+sha512sums=('0007a591bf8cf5470ec63381b511692afd2e5665b6894a8864b30a17e02e8294a39d1522a815f66ac2e0175502bd6ad8da7f01f55c6900b6923a5140f4b714ca'
+
'92fad2f9b941af4506bb0d5d9d533d09823df89f7530ee5d787b741816ba07e68f25b96d6653ae6ed949ec23484c1fba47a63cc6401311462a55b5e06cfc032c')
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla
+runhaskell Setup build
+
+dist/build/GenerateEverything/GenerateEverything
+
+agda -i. -isrc Everything.agda
+agda --html -i. -isrc README.agda
+}
+
+package() {
+install -D -m644 standard-library.agda-lib 
"$pkgdir"/usr/share/agda/lib/standard-library.agda-lib
+
+cd $pkgname-$pkgver
+install -dm755 "$pkgdir"/usr/share/agda/lib/stdlib
+cp -pr Everything.agda* src/* "$pkgdir"/usr/share/agda/lib/stdlib
+install -D -m644 LICENCE "$pkgdir"/usr/share/licenses/$pkgname/LICENCE
+}

Deleted: standard-library.agda-lib
===
--- standard-library.agda-lib   2019-12-21 22:23:31 UTC (rev 538744)
+++ standard-library.agda-lib   2019-12-21 22:23:42 UTC (rev 538745)
@@ -1,2 +0,0 @@
-name: standard-library
-include: stdlib

Copied: agda-stdlib/repos/community-x86_64/standard-library.agda-lib (from rev 
538744, agda-stdlib/trunk/standard-library.agda-lib)
===
--- standard-library.agda-lib   (rev 0)
+++ standard-library.agda-lib   2019-12-21 22:23:42 UTC (rev 538745)
@@ -0,0 +1,2 @@
+name: standard-library
+include: stdlib


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:22:58
  Author: felixonmars
Revision: 538742

upgpkg: pandoc 2.7.3-90: rebuild with warp 3.3.5, warp-tls 3.2.9

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 22:11:37 UTC (rev 538741)
+++ PKGBUILD2019-12-21 22:22:58 UTC (rev 538742)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc
 pkgver=2.7.3
-pkgrel=89
+pkgrel=90
 pkgdesc='Conversion between markup formats'
 url='https://pandoc.org'
 license=('GPL')


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:23:05
  Author: felixonmars
Revision: 538743

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:11:37
  Author: felixonmars
Revision: 538741

archrelease: copy trunk to community-staging-x86_64

Added:
  hoogle/repos/community-staging-x86_64/
  hoogle/repos/community-staging-x86_64/PKGBUILD
(from rev 538740, hoogle/trunk/PKGBUILD)

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

Copied: hoogle/repos/community-staging-x86_64/PKGBUILD (from rev 538740, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-21 22:11:37 UTC (rev 538741)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.17.11
+pkgrel=38
+pkgdesc="Haskell API Search"
+url="https://www.haskell.org/hoogle/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-aeson' 'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-cmdargs' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-connection' 'haskell-extra' 'haskell-foundation' 
'haskell-hashable'
+ 'haskell-http-conduit' 'haskell-http-types' 'haskell-js-flot' 
'haskell-js-jquery'
+ 'haskell-mmap' 'haskell-network' 'haskell-old-locale' 
'haskell-process-extras'
+ 'haskell-resourcet' 'haskell-src-exts' 'haskell-storable-tuple' 
'haskell-tar'
+ 'haskell-uniplate' 'haskell-utf8-string' 'haskell-vector' 
'haskell-wai'
+ 'haskell-wai-logger' 'haskell-warp' 'haskell-warp-tls' 'haskell-zlib')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('1bbb076b31a3289d0578741044d2747fca1b530b3f828922375379b4618de42cf4b0708eb022db841bbf91528da11183465895a2ac0378da2f7a8c3512a95b8d')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option='-pie'
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:11:30
  Author: felixonmars
Revision: 538740

upgpkg: hoogle 5.0.17.11-38: rebuild with warp 3.3.5, warp-tls 3.2.9

Modified:
  hoogle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 22:09:40 UTC (rev 538739)
+++ PKGBUILD2019-12-21 22:11:30 UTC (rev 538740)
@@ -3,7 +3,7 @@
 
 pkgname=hoogle
 pkgver=5.0.17.11
-pkgrel=37
+pkgrel=38
 pkgdesc="Haskell API Search"
 url="https://www.haskell.org/hoogle/;
 license=("BSD")


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:09:32
  Author: felixonmars
Revision: 538738

upgpkg: hledger-web 1.15-63: rebuild with warp 3.3.5, warp-tls 3.2.9

Modified:
  hledger-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 22:07:30 UTC (rev 538737)
+++ PKGBUILD2019-12-21 22:09:32 UTC (rev 538738)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-web
 pkgver=1.15
-pkgrel=62
+pkgrel=63
 pkgdesc="Web interface for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:09:40
  Author: felixonmars
Revision: 538739

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 538738, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-21 22:09:40 UTC (rev 538739)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.15
+pkgrel=63
+pkgdesc="Web interface for the hledger accounting tool"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-aeson' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-case-insensitive' 
'haskell-clientsession'
+ 'haskell-cmdargs' 'haskell-conduit' 'haskell-data-default' 
'haskell-decimal'
+ 'haskell-hjsmin' 'haskell-http-conduit' 'haskell-http-client' 
'haskell-http-types'
+ 'haskell-conduit-extra' 'haskell-safe' 'haskell-shakespeare' 
'haskell-wai'
+ 'haskell-wai-extra' 'haskell-wai-handler-launch' 'haskell-warp' 
'haskell-yesod'
+ 'haskell-yesod-core' 'haskell-yesod-form' 'haskell-yesod-static' 
'haskell-json'
+ 'haskell-megaparsec')
+makedepends=('ghc' 'haskell-hspec' 'haskell-yesod-test')
+replaces=('hledger-api')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('1743835e21cf7b6c38ef31e293e0db80d1bf87dd064f382678547d2430b04f95c6d2dcf6d5175179e43f151581b239dead2400b208bd1cdda3bafbf2ca30')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i -e '/semigroups/d' $pkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-dev -f-library-only -fthreaded
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:07:30
  Author: felixonmars
Revision: 538737

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:07:22
  Author: felixonmars
Revision: 538736

upgpkg: git-annex 7.20191218-3: rebuild with warp 3.3.5, warp-tls 3.2.9

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 22:06:12 UTC (rev 538735)
+++ PKGBUILD2019-12-21 22:07:22 UTC (rev 538736)
@@ -3,7 +3,7 @@
 
 pkgname=git-annex
 pkgver=7.20191218
-pkgrel=2
+pkgrel=3
 pkgdesc="Manage files with git, without checking their contents into git"
 url="https://git-annex.branchable.com/;
 license=("AGPL3")


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:04:04
  Author: felixonmars
Revision: 538731

upgpkg: batctl 2019.5-1

Modified:
  batctl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 21:59:16 UTC (rev 538730)
+++ PKGBUILD2019-12-21 22:04:04 UTC (rev 538731)
@@ -3,7 +3,7 @@
 # Contributor: Nathan Owe 
 
 pkgname=batctl
-pkgver=2019.4
+pkgver=2019.5
 _advver=$pkgver
 pkgrel=1
 pkgdesc='B.A.T.M.A.N. advanced control and management tool'
@@ -12,7 +12,7 @@
 license=('GPL')
 depends=('libnl')
 
source=("http://downloads.open-mesh.net/batman/releases/batman-adv-$_advver/batctl-$pkgver.tar.gz"{,.asc})
-sha512sums=('a509bfe48374daa3d07d4e03e8987ea53e8207d5fd72b85fd1a49528a9f0e05811d604ac0ce144bbe867832538b9209fff43a9a568017ce039f250d89bca959f'
+sha512sums=('9805994eff345d7a1538d244784ebdc064dae1e642d77bd94bf935129c5d6ba3302917263fc2d45ccd0a3924ea4ba638075d16c729f478252ff94f0998d190d0'
 'SKIP')
 validpgpkeys=('2DE9541A85CC87D5D9836D5E0C8A47A2ABD72DF9')  # Simon Wunderlich
 


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 22:04:12
  Author: felixonmars
Revision: 538732

archrelease: copy trunk to community-x86_64

Added:
  batctl/repos/community-x86_64/PKGBUILD
(from rev 538731, batctl/trunk/PKGBUILD)
Deleted:
  batctl/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-21 22:04:04 UTC (rev 538731)
+++ PKGBUILD2019-12-21 22:04:12 UTC (rev 538732)
@@ -1,27 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Thomas Weißschuh 
-# Contributor: Nathan Owe 
-
-pkgname=batctl
-pkgver=2019.4
-_advver=$pkgver
-pkgrel=1
-pkgdesc='B.A.T.M.A.N. advanced control and management tool'
-arch=('x86_64')
-url='http://www.open-mesh.net/'
-license=('GPL')
-depends=('libnl')
-source=("http://downloads.open-mesh.net/batman/releases/batman-adv-$_advver/batctl-$pkgver.tar.gz"{,.asc})
-sha512sums=('a509bfe48374daa3d07d4e03e8987ea53e8207d5fd72b85fd1a49528a9f0e05811d604ac0ce144bbe867832538b9209fff43a9a568017ce039f250d89bca959f'
-'SKIP')
-validpgpkeys=('2DE9541A85CC87D5D9836D5E0C8A47A2ABD72DF9')  # Simon Wunderlich
-
-build(){
-  cd batctl-$pkgver
-  make
-}
-
-package() {
-  cd batctl-$pkgver
-  make DESTDIR="$pkgdir" PREFIX=/usr SBINDIR=/usr/bin install
-}

Copied: batctl/repos/community-x86_64/PKGBUILD (from rev 538731, 
batctl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-21 22:04:12 UTC (rev 538732)
@@ -0,0 +1,27 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Weißschuh 
+# Contributor: Nathan Owe 
+
+pkgname=batctl
+pkgver=2019.5
+_advver=$pkgver
+pkgrel=1
+pkgdesc='B.A.T.M.A.N. advanced control and management tool'
+arch=('x86_64')
+url='http://www.open-mesh.net/'
+license=('GPL')
+depends=('libnl')
+source=("http://downloads.open-mesh.net/batman/releases/batman-adv-$_advver/batctl-$pkgver.tar.gz"{,.asc})
+sha512sums=('9805994eff345d7a1538d244784ebdc064dae1e642d77bd94bf935129c5d6ba3302917263fc2d45ccd0a3924ea4ba638075d16c729f478252ff94f0998d190d0'
+'SKIP')
+validpgpkeys=('2DE9541A85CC87D5D9836D5E0C8A47A2ABD72DF9')  # Simon Wunderlich
+
+build(){
+  cd batctl-$pkgver
+  make
+}
+
+package() {
+  cd batctl-$pkgver
+  make DESTDIR="$pkgdir" PREFIX=/usr SBINDIR=/usr/bin install
+}


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:59:09
  Author: felixonmars
Revision: 538729

upgpkg: haskell-yesod-static 1.6.0.1-242: rebuild with warp 3.3.5, warp-tls 
3.2.9

Modified:
  haskell-yesod-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 21:57:43 UTC (rev 538728)
+++ PKGBUILD2019-12-21 21:59:09 UTC (rev 538729)
@@ -4,7 +4,7 @@
 _hkgname=yesod-static
 pkgname=haskell-yesod-static
 pkgver=1.6.0.1
-pkgrel=241
+pkgrel=242
 pkgdesc="Static file serving subsite for Yesod Web Framework."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:59:16
  Author: felixonmars
Revision: 538730

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod-static/repos/community-staging-x86_64/PKGBUILD (from rev 
538729, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-21 21:59:16 UTC (rev 538730)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-static
+pkgname=haskell-yesod-static
+pkgver=1.6.0.1
+pkgrel=242
+pkgdesc="Static file serving subsite for Yesod Web Framework."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-attoparsec' 
'haskell-base64-bytestring'
+ 'haskell-blaze-builder' 'haskell-conduit' 'haskell-cryptonite'
+ 'haskell-cryptonite-conduit' 'haskell-css-text' 'haskell-data-default'
+ 'haskell-file-embed' 'haskell-hashable' 'haskell-hjsmin' 
'haskell-http-types'
+ 'haskell-memory' 'haskell-mime-types' 'haskell-unix-compat' 
'haskell-unordered-containers'
+ 'haskell-wai' 'haskell-wai-app-static' 'haskell-yesod-core')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hunit' 'haskell-wai-extra' 
'haskell-yesod-test')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('2e1e4873248d435a9d58f3075b6c06cde2edcdd520f700dc7f0427039c236d28787f62a643a8cf57b74d85a885625474a5662b91a56c25e8f4d1737be525bc2f')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:57:35
  Author: felixonmars
Revision: 538727

upgpkg: haskell-yesod-test 1.6.9-5: rebuild with warp 3.3.5, warp-tls 3.2.9

Modified:
  haskell-yesod-test/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 21:56:21 UTC (rev 538726)
+++ PKGBUILD2019-12-21 21:57:35 UTC (rev 538727)
@@ -3,7 +3,7 @@
 _hkgname=yesod-test
 pkgname=haskell-yesod-test
 pkgver=1.6.9
-pkgrel=4
+pkgrel=5
 pkgdesc="Integration testing for WAI/Yesod Applications"
 url="https://www.yesodweb.com;
 license=('MIT')


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:57:43
  Author: felixonmars
Revision: 538728

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod-test/repos/community-staging-x86_64/PKGBUILD (from rev 
538727, haskell-yesod-test/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-21 21:57:43 UTC (rev 538728)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=yesod-test
+pkgname=haskell-yesod-test
+pkgver=1.6.9
+pkgrel=5
+pkgdesc="Integration testing for WAI/Yesod Applications"
+url="https://www.yesodweb.com;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hunit' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-blaze-builder'
+ 'haskell-blaze-html' 'haskell-case-insensitive' 'haskell-conduit'
+ 'haskell-cookie' 'haskell-hspec-core' 'haskell-html-conduit' 
'haskell-http-types'
+ 'haskell-memory' 'haskell-network' 'haskell-pretty-show' 'haskell-wai'
+ 'haskell-wai-extra' 'haskell-xml-conduit' 'haskell-xml-types' 
'haskell-yesod-core')
+makedepends=('ghc' 'haskell-yesod-form' 'haskell-hspec' 'haskell-unliftio' 
'haskell-unliftio-core')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('a09cec464ca4ebe9839eb08cc5da93076bed7450f17d2df8d40625e8d8d8157ba81284cea5e73b0b4e4e30169e0211af99cb8f6898d2039a826a68405cf681e2')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:56:14
  Author: felixonmars
Revision: 538725

upgpkg: haskell-yesod-auth 1.6.8-59: rebuild with warp 3.3.5, warp-tls 3.2.9

Modified:
  haskell-yesod-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 21:54:55 UTC (rev 538724)
+++ PKGBUILD2019-12-21 21:56:14 UTC (rev 538725)
@@ -4,7 +4,7 @@
 _hkgname=yesod-auth
 pkgname=haskell-yesod-auth
 pkgver=1.6.8
-pkgrel=58
+pkgrel=59
 pkgdesc="Authentication for Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:56:21
  Author: felixonmars
Revision: 538726

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:54:55
  Author: felixonmars
Revision: 538724

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:54:48
  Author: felixonmars
Revision: 538723

upgpkg: haskell-yesod 1.6.0-386: rebuild with warp 3.3.5, warp-tls 3.2.9

Modified:
  haskell-yesod/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 21:53:50 UTC (rev 538722)
+++ PKGBUILD2019-12-21 21:54:48 UTC (rev 538723)
@@ -4,7 +4,7 @@
 _hkgname=yesod
 pkgname=haskell-yesod
 pkgver=1.6.0
-pkgrel=385
+pkgrel=386
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:53:50
  Author: felixonmars
Revision: 538722

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:53:43
  Author: felixonmars
Revision: 538721

upgpkg: haskell-yesod-form 1.6.7-45: rebuild with warp 3.3.5, warp-tls 3.2.9

Modified:
  haskell-yesod-form/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 21:52:25 UTC (rev 538720)
+++ PKGBUILD2019-12-21 21:53:43 UTC (rev 538721)
@@ -4,7 +4,7 @@
 _hkgname=yesod-form
 pkgname=haskell-yesod-form
 pkgver=1.6.7
-pkgrel=44
+pkgrel=45
 pkgdesc="Form handling support for Yesod Web Framework"
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:52:25
  Author: felixonmars
Revision: 538720

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod-persistent/repos/community-staging-x86_64/PKGBUILD (from 
rev 538719, haskell-yesod-persistent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-21 21:52:25 UTC (rev 538720)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-persistent
+pkgname=haskell-yesod-persistent
+pkgver=1.6.0.3
+pkgrel=20
+pkgdesc="Some helpers for using Persistent from Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-blaze-builder" "haskell-conduit" 
"haskell-persistent"
+ "haskell-persistent-template" "haskell-resource-pool" 
"haskell-resourcet"
+ "haskell-yesod-core")
+makedepends=('ghc' 'haskell-hspec' 'haskell-wai-extra' 
'haskell-persistent-sqlite')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('fd82ecf576f4fc8878c614e52c6f10032d9da339189463dcc1f69a56061fca20030560f3e402246fd83b042f001cfd9465e96023e05523ec4480fa153491ffde')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:52:18
  Author: felixonmars
Revision: 538719

upgpkg: haskell-yesod-persistent 1.6.0.3-20: rebuild with warp 3.3.5, warp-tls 
3.2.9

Modified:
  haskell-yesod-persistent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 21:51:19 UTC (rev 538718)
+++ PKGBUILD2019-12-21 21:52:18 UTC (rev 538719)
@@ -4,7 +4,7 @@
 _hkgname=yesod-persistent
 pkgname=haskell-yesod-persistent
 pkgver=1.6.0.3
-pkgrel=19
+pkgrel=20
 pkgdesc="Some helpers for using Persistent from Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:51:19
  Author: felixonmars
Revision: 538718

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:51:11
  Author: felixonmars
Revision: 538717

upgpkg: haskell-yesod-default 1.2.0-623: rebuild with warp 3.3.5, warp-tls 3.2.9

Modified:
  haskell-yesod-default/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 21:50:07 UTC (rev 538716)
+++ PKGBUILD2019-12-21 21:51:11 UTC (rev 538717)
@@ -4,7 +4,7 @@
 _hkgname=yesod-default
 pkgname=haskell-yesod-default
 pkgver=1.2.0
-pkgrel=622
+pkgrel=623
 pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:50:07
  Author: felixonmars
Revision: 538716

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:49:59
  Author: felixonmars
Revision: 538715

upgpkg: haskell-yesod-core 1.6.17-6: rebuild with warp 3.3.5, warp-tls 3.2.9

Modified:
  haskell-yesod-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 21:49:59 UTC (rev 538714)
+++ PKGBUILD2019-12-21 21:49:59 UTC (rev 538715)
@@ -4,7 +4,7 @@
 _hkgname=yesod-core
 pkgname=haskell-yesod-core
 pkgver=1.6.17
-pkgrel=5
+pkgrel=6
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:49:49
  Author: felixonmars
Revision: 538713

upgpkg: unicode-emoji 12.0-1

Modified:
  unicode-emoji/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 21:49:05 UTC (rev 538712)
+++ PKGBUILD2019-12-21 21:49:49 UTC (rev 538713)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=unicode-emoji
-pkgver=11.0
+pkgver=12.0
 pkgrel=1
 pkgdesc="Unicode Emoji Data Files"
 arch=(any)
@@ -13,11 +13,11 @@
 
"emoji-variation-sequences-$pkgver.txt::http://www.unicode.org/Public/emoji/$pkgver/emoji-variation-sequences.txt;
 
"emoji-zwj-sequences-$pkgver.txt::http://www.unicode.org/Public/emoji/$pkgver/emoji-zwj-sequences.txt;
 LICENSE)
-sha512sums=('501847414275564c7753b7d2b8e45cdfbf9fe96a96f0f3eea81f34c480da551b317b432ca426f6441c95eea520992eead749e9c60da38233afd159d9b555'
-
'c9af23e0738350b6d61691498ac82cccec970bb2cd4a0c5d6fab6c86fef742c09c6a83f50124c1f98c285e706d145786bb29cbf4339ff1a01c75ad7515b159a6'
-
'89c5a0f2eb460234e50dcc0fc904fbb254a1c0afa54b5bb672032f01764e0bed3624d1a4cd5627c83fcf1ea1347c9e3baaca05b2c685890afa505763baf8be79'
-
'a0a487ef43d9cd49ff2ced654794e7190f357b00dd70ec9b84e640181dc5b2df44b2063aa4b16447d00815094155b24531f115e9121c51c95635b0af4b043643'
-
'a2a50cd5451d3ba1da0f3b46e18a10d621ead0372599b98dad0fd47fdb271407f72bd72854136c93311b13950cedc2b1594f06d460e551ab120ed30ba8abce4d'
+sha512sums=('3e60e8a63abb40332a7ace61d1790b29e00251edca92afe52075627fb210a1097eea6033b727b458b6a5c7935018706ae71a2c1ec439bea3ccb8501c47c4abb5'
+
'7ddadff1259c08d503b5936aecac9ad51e9cb2b0ed84c70fdaf0df370b2edd5e24ebed99d5df7325becf269e9f2d931d1bbbabe5d95c1b9af08111bf37bd29b3'
+
'b02c7977961f1b9a8c52322ba6b8d27afb84a2d131887add18352460dc6eb2488afd7bb9dac2e3f62b88604b69d02e4289bbaad551463d8b4b0589fbc16b64b9'
+
'aaf6c964db27ba41b0becc6aad87e40ea7b3d7a593d33052a4ad1a67528cdf663a46622c367830b6ac47e3efccf1e52eeb18802b235560b47a7fc485097e1fba'
+
'8d7c59d01d702d10f162476d7f96feea0d515521d1dca6aa819ed4d482a83d54c26ed225fcf864b607999a7016dddc89961b0760584d7ec0b5cbdf8e12b85051'
 
'9ba78d68ed39745e55538180f132ff47423edb46adde7ac3e62a489870d153808bcf2db57b77e6a7cdae9b4fa03aba99cf228315b9a15be090bedef00b9e69ed')
 
 package() {


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:49:59
  Author: felixonmars
Revision: 538714

archrelease: copy trunk to community-any

Added:
  unicode-emoji/repos/community-any/LICENSE
(from rev 538713, unicode-emoji/trunk/LICENSE)
  unicode-emoji/repos/community-any/PKGBUILD
(from rev 538713, unicode-emoji/trunk/PKGBUILD)
Deleted:
  unicode-emoji/repos/community-any/LICENSE
  unicode-emoji/repos/community-any/PKGBUILD

--+
 LICENSE  |   66 ++---
 PKGBUILD |   59 ++
 2 files changed, 62 insertions(+), 63 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2019-12-21 21:49:49 UTC (rev 538713)
+++ LICENSE 2019-12-21 21:49:59 UTC (rev 538714)
@@ -1,33 +0,0 @@
-COPYRIGHT AND PERMISSION NOTICE
-
-Copyright © 1991-2017 Unicode, Inc. All rights reserved.
-Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-
-Permission is hereby granted, free of charge, to any person obtaining
-a copy of the Unicode data files and any associated documentation
-(the "Data Files") or Unicode software and any associated documentation
-(the "Software") to deal in the Data Files or Software
-without restriction, including without limitation the rights to use,
-copy, modify, merge, publish, distribute, and/or sell copies of
-the Data Files or Software, and to permit persons to whom the Data Files
-or Software are furnished to do so, provided that either
-(a) this copyright and permission notice appear with all copies
-of the Data Files or Software, or
-(b) this copyright and permission notice appear in associated
-Documentation.
-
-THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
-ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
-WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT OF THIRD PARTY RIGHTS.
-IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS
-NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
-DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
-DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-
-Except as contained in this notice, the name of a copyright holder
-shall not be used in advertising or otherwise to promote the sale,
-use or other dealings in these Data Files or Software without prior
-written authorization of the copyright holder.

Copied: unicode-emoji/repos/community-any/LICENSE (from rev 538713, 
unicode-emoji/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2019-12-21 21:49:59 UTC (rev 538714)
@@ -0,0 +1,33 @@
+COPYRIGHT AND PERMISSION NOTICE
+
+Copyright © 1991-2017 Unicode, Inc. All rights reserved.
+Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Unicode data files and any associated documentation
+(the "Data Files") or Unicode software and any associated documentation
+(the "Software") to deal in the Data Files or Software
+without restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, and/or sell copies of
+the Data Files or Software, and to permit persons to whom the Data Files
+or Software are furnished to do so, provided that either
+(a) this copyright and permission notice appear with all copies
+of the Data Files or Software, or
+(b) this copyright and permission notice appear in associated
+Documentation.
+
+THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT OF THIRD PARTY RIGHTS.
+IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS
+NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
+DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+PERFORMANCE OF THE DATA FILES OR SOFTWARE.
+
+Except as contained in this notice, the name of a copyright holder
+shall not be used in advertising or otherwise to promote the sale,
+use or other dealings in these Data Files or Software without prior
+written authorization of the copyright holder.

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-21 21:49:49 UTC (rev 538713)
+++ PKGBUILD2019-12-21 21:49:59 UTC (rev 538714)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=unicode-emoji
-pkgver=11.0
-pkgrel=1
-pkgdesc="Unicode 

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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:48:53
  Author: felixonmars
Revision: 538711

upgpkg: sbt 1:1.3.5-1

Modified:
  sbt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 21:48:29 UTC (rev 538710)
+++ PKGBUILD2019-12-21 21:48:53 UTC (rev 538711)
@@ -4,7 +4,7 @@
 
 pkgname=sbt
 epoch=1
-pkgver=1.3.4
+pkgver=1.3.5
 pkgrel=1
 pkgdesc='The interactive build tool'
 arch=('any')
@@ -17,7 +17,7 @@
 
source=(https://github.com/${pkgname}/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tgz{,.asc}
 LICENSE)
 validpgpkeys=('2EE0EA64E40A89B84B2DF73499E82A75642AC823') # sbt build tool
-sha512sums=('e2dea253e36160710fbcb46f6d1aa3a79751738bd416f2977bf8816d5427cfa7c7c2942e4fb233b5b9dca56c6026353afbdedd7c9647cbecf209eeecd26020ff'
+sha512sums=('435b4dd845945e12ca89b84d22e0840e7eb3c4f632e919c084b82288e98c8398660cb8b1bb1b4d7ec1574487def4d572b25dfa4d6ff24a51709454ded817815f'
 'SKIP'
 
'49fefd36f8e3e796efd2b95aec76781832f64163445b6ebba624e385446bcbd308e27a82770b5e7b1ce7d4cd406d771549f0a121f1310611c92b3e15bff209d0')
 backup=(etc/${pkgname}/sbtopts)


[arch-commits] Commit in sbt/repos/community-any (6 files)

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:49:05
  Author: felixonmars
Revision: 538712

archrelease: copy trunk to community-any

Added:
  sbt/repos/community-any/LICENSE
(from rev 538711, sbt/trunk/LICENSE)
  sbt/repos/community-any/PKGBUILD
(from rev 538711, sbt/trunk/PKGBUILD)
  sbt/repos/community-any/sbt.install
(from rev 538711, sbt/trunk/sbt.install)
Deleted:
  sbt/repos/community-any/LICENSE
  sbt/repos/community-any/PKGBUILD
  sbt/repos/community-any/sbt.install

-+
 LICENSE |   50 -
 PKGBUILD|   86 +-
 sbt.install |   16 +-
 3 files changed, 76 insertions(+), 76 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2019-12-21 21:48:53 UTC (rev 538711)
+++ LICENSE 2019-12-21 21:49:05 UTC (rev 538712)
@@ -1,25 +0,0 @@
-Copyright (c) 2008-2014 Typesafe Inc, Mark Harrah, Grzegorz Kossakowski, Josh 
Suereth, Indrajit Raychaudhuri, Eugene Yokota, and other contributors.
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions
-are met:
-1. Redistributions of source code must retain the above copyright
-   notice, this list of conditions and the following disclaimer.
-2. Redistributions in binary form must reproduce the above copyright
-   notice, this list of conditions and the following disclaimer in the
-   documentation and/or other materials provided with the distribution.
-3. The name of the author may not be used to endorse or promote products
-   derived from this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
-IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
-OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
-IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
-INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
-NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-

Copied: sbt/repos/community-any/LICENSE (from rev 538711, sbt/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2019-12-21 21:49:05 UTC (rev 538712)
@@ -0,0 +1,25 @@
+Copyright (c) 2008-2014 Typesafe Inc, Mark Harrah, Grzegorz Kossakowski, Josh 
Suereth, Indrajit Raychaudhuri, Eugene Yokota, and other contributors.
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+1. Redistributions of source code must retain the above copyright
+   notice, this list of conditions and the following disclaimer.
+2. Redistributions in binary form must reproduce the above copyright
+   notice, this list of conditions and the following disclaimer in the
+   documentation and/or other materials provided with the distribution.
+3. The name of the author may not be used to endorse or promote products
+   derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-21 21:48:53 UTC (rev 538711)
+++ PKGBUILD2019-12-21 21:49:05 UTC (rev 538712)
@@ -1,43 +0,0 @@
-# Maintainer: Guillaume ALAUX 
-# Contributor: Andrea Scarpino 
-# Contributor: Leif Warner 
-
-pkgname=sbt
-epoch=1
-pkgver=1.3.4
-pkgrel=1
-pkgdesc='The interactive build tool'
-arch=('any')
-url='https://www.scala-sbt.org/'
-license=('BSD')
-depends=('java-runtime-headless' 'sh')
-IFS='.' read -a _pkgver <<< "${pkgver}"
-_majorver=${_pkgver[0]}.x
-install=sbt.install
-source=(https://github.com/${pkgname}/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tgz{,.asc}
-LICENSE)

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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:48:29
  Author: felixonmars
Revision: 538710

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-pantry/repos/community-staging-x86_64/PKGBUILD (from rev 
538709, haskell-pantry/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-21 21:48:29 UTC (rev 538710)
@@ -0,0 +1,61 @@
+# Maintainer: Felix Yan 
+
+_hkgname=pantry
+pkgname=haskell-pantry
+pkgver=0.1.1.1
+pkgrel=79
+pkgdesc="Content addressable Haskell package management"
+url="https://github.com/commercialhaskell/pantry;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 
'haskell-base-orphans'
+ 'haskell-base64-bytestring' 'haskell-conduit' 'haskell-conduit-extra'
+ 'haskell-contravariant' 'haskell-cryptonite' 
'haskell-cryptonite-conduit'
+ 'haskell-digest' 'haskell-filelock' 'haskell-generic-deriving' 
'haskell-hackage-security'
+ 'haskell-hashable' 'haskell-hpack' 'haskell-http-client' 
'haskell-http-client-tls'
+ 'haskell-http-conduit' 'haskell-http-download' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-mono-traversable' 'haskell-network' 'haskell-network-uri' 
'haskell-path'
+ 'haskell-path-io' 'haskell-persistent' 'haskell-persistent-sqlite'
+ 'haskell-persistent-template' 'haskell-primitive' 'haskell-resourcet' 
'haskell-rio'
+ 'haskell-rio-orphans' 'haskell-rio-prettyprint' 'haskell-safe' 
'haskell-syb'
+ 'haskell-tar-conduit' 'haskell-text-metrics' 'haskell-th-lift' 
'haskell-th-lift-instances'
+ 'haskell-th-orphans' 'haskell-th-reify-many' 'haskell-th-utilities' 
'haskell-unix-compat'
+ 'haskell-unliftio' 'haskell-unordered-containers' 'haskell-vector' 
'haskell-yaml'
+ 'haskell-zip-archive')
+makedepends=('ghc' 'haskell-hedgehog' 'haskell-hspec' 'haskell-quickcheck' 
'haskell-raw-strings-qq')
+checkdepends=('git' 'mercurial')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('aee544d5c18f7f1d8614470d236fb8e0f3d9260991b8ee895a5c7c863dd3023677260330fd34d9d30789780efb84f3faa49823827fe7aae69165eb9468b13a62')
+
+prepare() {
+cd $_hkgname-$pkgver
+echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:48:21
  Author: felixonmars
Revision: 538709

upgpkg: haskell-pantry 0.1.1.1-79: rebuild with warp 3.3.5, warp-tls 3.2.9

Modified:
  haskell-pantry/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 21:46:51 UTC (rev 538708)
+++ PKGBUILD2019-12-21 21:48:21 UTC (rev 538709)
@@ -3,7 +3,7 @@
 _hkgname=pantry
 pkgname=haskell-pantry
 pkgver=0.1.1.1
-pkgrel=78
+pkgrel=79
 pkgdesc="Content addressable Haskell package management"
 url="https://github.com/commercialhaskell/pantry;
 license=('BSD')


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:46:51
  Author: felixonmars
Revision: 538708

archrelease: copy trunk to community-x86_64

Added:
  ibus-hangul/repos/community-x86_64/PKGBUILD
(from rev 538707, ibus-hangul/trunk/PKGBUILD)
Deleted:
  ibus-hangul/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-21 21:46:43 UTC (rev 538707)
+++ PKGBUILD2019-12-21 21:46:51 UTC (rev 538708)
@@ -1,31 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Radim Hvizdák 
-
-pkgname=ibus-hangul
-pkgver=1.5.1
-pkgrel=2
-pkgdesc='Korean input engine for IBus'
-arch=('x86_64')
-url='http://ibus.googlecode.com'
-license=('GPL')
-depends=('ibus' 'libhangul' 'iso-codes' 'gtk-update-icon-cache' 
'python-gobject')
-makedepends=('intltool' 'gnome-common')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/choehwanjin/ibus-hangul/archive/${pkgver}.tar.gz;)
-sha512sums=('12052570d953a73ba8b26f5903b2911b8354a89196e8222922320d0deaf1220fadc7e4bade86b5d8862ea0d44a9040558f28ef8bdafa43e95281080ec824c641')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  autoreconf --verbose --force --install
-  intltoolize --automake --force --copy
-  ./configure --prefix=/usr --libexecdir=/usr/lib/ibus
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make NO_INDEX=true DESTDIR="${pkgdir}" install
-
-  # Fix symlink
-  ln -sf ../lib/ibus/ibus-setup-hangul "$pkgdir/usr/bin/ibus-setup-hangul"
-}

Copied: ibus-hangul/repos/community-x86_64/PKGBUILD (from rev 538707, 
ibus-hangul/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-21 21:46:51 UTC (rev 538708)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Radim Hvizdák 
+
+pkgname=ibus-hangul
+pkgver=1.5.2
+pkgrel=1
+pkgdesc='Korean input engine for IBus'
+arch=('x86_64')
+url='http://ibus.googlecode.com'
+license=('GPL')
+depends=('ibus' 'libhangul' 'iso-codes' 'gtk-update-icon-cache' 
'python-gobject')
+makedepends=('intltool' 'gnome-common')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/choehwanjin/ibus-hangul/archive/${pkgver}.tar.gz;)
+sha512sums=('66fe5da9b8d680eca8d5e90b6256d10fb6f13415c7227fdf38a8f728ae0a0961d0e6c0be4999f18645484885e5ea4cd28f88a4cef8116935db617a042bfd3bf7')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  autoreconf --verbose --force --install
+  ./configure --prefix=/usr --libexecdir=/usr/lib/ibus
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make NO_INDEX=true DESTDIR="${pkgdir}" install
+
+  # Fix symlink
+  ln -sf ../lib/ibus/ibus-setup-hangul "$pkgdir/usr/bin/ibus-setup-hangul"
+}


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:46:25
  Author: felixonmars
Revision: 538705

upgpkg: sstp-client 1.0.13-1

Modified:
  sstp-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 21:44:31 UTC (rev 538704)
+++ PKGBUILD2019-12-21 21:46:25 UTC (rev 538705)
@@ -4,10 +4,10 @@
 # Contributor: Martchus 
 
 pkgname=sstp-client
-pkgver=1.0.12
-pkgrel=4
+pkgver=1.0.13
+pkgrel=1
 pkgdesc="SSTP client stable revision"
-arch=("i686" "x86_64")
+arch=("x86_64")
 url="http://sstp-client.sourceforge.net/;
 license=('GPL2')
 depends=('libevent' 'openssl')
@@ -19,7 +19,7 @@
 
"https://sourceforge.net/projects/sstp-client/files/sstp-client/$pkgname-$pkgver.tar.gz;)
 sha1sums=('65ad1d0700e8f52ed1e1b21433a99b5962a5a320'
   'c3a81ad7ce4c8cdbfb53a780110e92cf64412c68'
-  'afe80911a5ec033eac583242c642cc5ad00e6ac4')
+  '7c86f50f5693a70a5305b2a3f3c23d89d8a95d4f')
 
 build() {
   pppd_version="$(pppd --version 2>&1 | awk '{print $3}')"


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:46:38
  Author: felixonmars
Revision: 538706

archrelease: copy trunk to community-x86_64

Added:
  sstp-client/repos/community-x86_64/50-sstp.PROFILE.sh.sample
(from rev 538705, sstp-client/trunk/50-sstp.PROFILE.sh.sample)
  sstp-client/repos/community-x86_64/PKGBUILD
(from rev 538705, sstp-client/trunk/PKGBUILD)
  sstp-client/repos/community-x86_64/sstp-client.install
(from rev 538705, sstp-client/trunk/sstp-client.install)
  sstp-client/repos/community-x86_64/sstp.options.sample
(from rev 538705, sstp-client/trunk/sstp.options.sample)
Deleted:
  sstp-client/repos/community-x86_64/50-sstp.PROFILE.sh.sample
  sstp-client/repos/community-x86_64/PKGBUILD
  sstp-client/repos/community-x86_64/sstp-client.install
  sstp-client/repos/community-x86_64/sstp.options.sample

---+
 50-sstp.PROFILE.sh.sample |   14 +++---
 PKGBUILD  |  102 ++--
 sstp-client.install   |   42 +-
 sstp.options.sample   |   18 +++
 4 files changed, 88 insertions(+), 88 deletions(-)

Deleted: 50-sstp.PROFILE.sh.sample
===
--- 50-sstp.PROFILE.sh.sample   2019-12-21 21:46:25 UTC (rev 538705)
+++ 50-sstp.PROFILE.sh.sample   2019-12-21 21:46:38 UTC (rev 538706)
@@ -1,7 +0,0 @@
-#!/bin/bash
-
-echo "please replace this sample with normal script and rename to .sh (will 
not run otherwise)"
-#
-# if [ "$6" == "" ]; then
-#   ip route add 10.0.0.0/16 dev ppp0 # or whatever needed for routing
-# fi

Copied: sstp-client/repos/community-x86_64/50-sstp.PROFILE.sh.sample (from rev 
538705, sstp-client/trunk/50-sstp.PROFILE.sh.sample)
===
--- 50-sstp.PROFILE.sh.sample   (rev 0)
+++ 50-sstp.PROFILE.sh.sample   2019-12-21 21:46:38 UTC (rev 538706)
@@ -0,0 +1,7 @@
+#!/bin/bash
+
+echo "please replace this sample with normal script and rename to .sh (will 
not run otherwise)"
+#
+# if [ "$6" == "" ]; then
+#   ip route add 10.0.0.0/16 dev ppp0 # or whatever needed for routing
+# fi

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-21 21:46:25 UTC (rev 538705)
+++ PKGBUILD2019-12-21 21:46:38 UTC (rev 538706)
@@ -1,51 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Echizen Ryoma 
-# Contributor: Dmitry V. Luciv 
-# Contributor: Martchus 
-
-pkgname=sstp-client
-pkgver=1.0.12
-pkgrel=4
-pkgdesc="SSTP client stable revision"
-arch=("i686" "x86_64")
-url="http://sstp-client.sourceforge.net/;
-license=('GPL2')
-depends=('libevent' 'openssl')
-makedepends=('ppp')
-optdepends=('ppp')
-install=$pkgname.install
-source=('50-sstp.PROFILE.sh.sample'
-'sstp.options.sample'
-
"https://sourceforge.net/projects/sstp-client/files/sstp-client/$pkgname-$pkgver.tar.gz;)
-sha1sums=('65ad1d0700e8f52ed1e1b21433a99b5962a5a320'
-  'c3a81ad7ce4c8cdbfb53a780110e92cf64412c68'
-  'afe80911a5ec033eac583242c642cc5ad00e6ac4')
-
-build() {
-  pppd_version="$(pppd --version 2>&1 | awk '{print $3}')"
-  cd "$srcdir"/$pkgname-$pkgver
-
-  ./configure \
---prefix=/usr \
---localstatedir=/ \
---with-pppd-plugin-dir=/usr/lib/pppd/$pppd_version
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-
-  install -d "$pkgdir"/run/sstpc
-  install -d "$pkgdir"/etc/sstpc
-  install -d "$pkgdir"/etc/ppp/ip-up.d
-
-  install -Dm644 "$srcdir"/sstp.options.sample 
"$pkgdir"/etc/sstpc/sstp.options.sample
-  install -Dm744 "$srcdir"/50-sstp.PROFILE.sh.sample 
"$pkgdir"/etc/ppp/ip-up.d/50-sstp.PROFILE.sh.sample
-
-  rm -rf "$pkgdir"/var
-  rm -rf "$pkgdir"/run
-
-  mv "$pkgdir"/usr/sbin "$pkgdir"/usr/bin
-}

Copied: sstp-client/repos/community-x86_64/PKGBUILD (from rev 538705, 
sstp-client/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-21 21:46:38 UTC (rev 538706)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Echizen Ryoma 
+# Contributor: Dmitry V. Luciv 
+# Contributor: Martchus 
+
+pkgname=sstp-client
+pkgver=1.0.13
+pkgrel=1
+pkgdesc="SSTP client stable revision"
+arch=("x86_64")
+url="http://sstp-client.sourceforge.net/;
+license=('GPL2')
+depends=('libevent' 'openssl')
+makedepends=('ppp')
+optdepends=('ppp')
+install=$pkgname.install
+source=('50-sstp.PROFILE.sh.sample'
+'sstp.options.sample'
+
"https://sourceforge.net/projects/sstp-client/files/sstp-client/$pkgname-$pkgver.tar.gz;)
+sha1sums=('65ad1d0700e8f52ed1e1b21433a99b5962a5a320'
+  'c3a81ad7ce4c8cdbfb53a780110e92cf64412c68'
+  '7c86f50f5693a70a5305b2a3f3c23d89d8a95d4f')
+
+build() {
+  pppd_version="$(pppd --version 2>&1 | awk '{print $3}')"
+  cd "$srcdir"/$pkgname-$pkgver
+
+  ./configure \
+--prefix=/usr \
+

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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:46:43
  Author: felixonmars
Revision: 538707

upgpkg: ibus-hangul 1.5.2-1

Modified:
  ibus-hangul/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 21:46:38 UTC (rev 538706)
+++ PKGBUILD2019-12-21 21:46:43 UTC (rev 538707)
@@ -3,8 +3,8 @@
 # Contributor: Radim Hvizdák 
 
 pkgname=ibus-hangul
-pkgver=1.5.1
-pkgrel=2
+pkgver=1.5.2
+pkgrel=1
 pkgdesc='Korean input engine for IBus'
 arch=('x86_64')
 url='http://ibus.googlecode.com'
@@ -12,12 +12,11 @@
 depends=('ibus' 'libhangul' 'iso-codes' 'gtk-update-icon-cache' 
'python-gobject')
 makedepends=('intltool' 'gnome-common')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/choehwanjin/ibus-hangul/archive/${pkgver}.tar.gz;)
-sha512sums=('12052570d953a73ba8b26f5903b2911b8354a89196e8222922320d0deaf1220fadc7e4bade86b5d8862ea0d44a9040558f28ef8bdafa43e95281080ec824c641')
+sha512sums=('66fe5da9b8d680eca8d5e90b6256d10fb6f13415c7227fdf38a8f728ae0a0961d0e6c0be4999f18645484885e5ea4cd28f88a4cef8116935db617a042bfd3bf7')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
   autoreconf --verbose --force --install
-  intltoolize --automake --force --copy
   ./configure --prefix=/usr --libexecdir=/usr/lib/ibus
   make
 }


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:44:31
  Author: felixonmars
Revision: 538704

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-http-download/repos/community-staging-x86_64/PKGBUILD (from rev 
538703, haskell-http-download/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-21 21:44:31 UTC (rev 538704)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+
+_hkgname=http-download
+pkgname=haskell-http-download
+pkgver=0.1.0.0
+pkgrel=55
+pkgdesc="Verified downloads with retries"
+url="https://github.com/commercialhaskell/stack;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base64-bytestring' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-cryptonite-conduit' 'haskell-exceptions'
+ 'haskell-http-client' 'haskell-http-conduit' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-path' 'haskell-path-io' 'haskell-retry' 'haskell-rio' 
'haskell-rio-prettyprint')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hspec-discover')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('0d8c768ac87c9c2fdfe7503e88bbc6135e6edd0938790b46849346f86c62f5416abd18dcb14349c2624a956990cac8b66e93c3ef5043ffc60e1df7f6dab950e6')
+
+prepare() {
+cd $_hkgname-$pkgver
+echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:44:24
  Author: felixonmars
Revision: 538703

upgpkg: haskell-http-download 0.1.0.0-55: rebuild with warp 3.3.5, warp-tls 
3.2.9

Modified:
  haskell-http-download/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 21:43:25 UTC (rev 538702)
+++ PKGBUILD2019-12-21 21:44:24 UTC (rev 538703)
@@ -3,7 +3,7 @@
 _hkgname=http-download
 pkgname=haskell-http-download
 pkgver=0.1.0.0
-pkgrel=54
+pkgrel=55
 pkgdesc="Verified downloads with retries"
 url="https://github.com/commercialhaskell/stack;
 license=('MIT')


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:43:25
  Author: felixonmars
Revision: 538702

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 538701, 
haskell-aws/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-21 21:43:25 UTC (rev 538702)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aws
+pkgname=haskell-aws
+pkgver=0.21.1
+pkgrel=129
+pkgdesc="Amazon Web Services (AWS) for Haskell"
+url="https://github.com/aristidb/aws;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-base64-bytestring' 'haskell-blaze-builder' 'haskell-byteable'
+ 'haskell-case-insensitive' 'haskell-cereal' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-data-default' 'haskell-exceptions' 
'haskell-http-conduit'
+ 'haskell-http-client-tls' 'haskell-http-types' 'haskell-lifted-base' 
'haskell-memory'
+ 'haskell-monad-control' 'haskell-network' 'haskell-old-locale' 
'haskell-resourcet'
+ 'haskell-safe' 'haskell-scientific' 'haskell-tagged' 
'haskell-unordered-containers'
+ 'haskell-utf8-string' 'haskell-vector' 'haskell-xml-conduit')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-errors' 'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-quickcheck-instances' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 
'haskell-transformers-base')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('ab22fd2113b579404c218abbef42ebc04e3b5d90c4a1ecc4ad36aa720c8071c07d8b49bd2441bc07d1383122cfdd5e95a04fad6929adedb66e5d5b684eed2f37')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *0.6/<1/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-examples
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test || warning "Requires AWS credentials to 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-aws/trunk (PKGBUILD)

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:43:18
  Author: felixonmars
Revision: 538701

upgpkg: haskell-aws 0.21.1-129: rebuild with warp 3.3.5, warp-tls 3.2.9

Modified:
  haskell-aws/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 21:40:55 UTC (rev 538700)
+++ PKGBUILD2019-12-21 21:43:18 UTC (rev 538701)
@@ -4,7 +4,7 @@
 _hkgname=aws
 pkgname=haskell-aws
 pkgver=0.21.1
-pkgrel=128
+pkgrel=129
 pkgdesc="Amazon Web Services (AWS) for Haskell"
 url="https://github.com/aristidb/aws;
 license=("BSD")


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:40:47
  Author: felixonmars
Revision: 538699

upgpkg: haskell-authenticate 1.3.5-7: rebuild with warp 3.3.5, warp-tls 3.2.9

Modified:
  haskell-authenticate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 21:39:56 UTC (rev 538698)
+++ PKGBUILD2019-12-21 21:40:47 UTC (rev 538699)
@@ -4,7 +4,7 @@
 _hkgname=authenticate
 pkgname=haskell-authenticate
 pkgver=1.3.5
-pkgrel=6
+pkgrel=7
 pkgdesc="Authentication methods for Haskell web applications."
 url="https://github.com/yesodweb/authenticate;
 license=("MIT")


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:40:55
  Author: felixonmars
Revision: 538700

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-authenticate/repos/community-staging-x86_64/PKGBUILD (from rev 
538699, haskell-authenticate/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-21 21:40:55 UTC (rev 538700)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=authenticate
+pkgname=haskell-authenticate
+pkgver=1.3.5
+pkgrel=7
+pkgdesc="Authentication methods for Haskell web applications."
+url="https://github.com/yesodweb/authenticate;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-blaze-builder'
+ 'haskell-case-insensitive' 'haskell-conduit' 'haskell-html-conduit' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-network-uri' 'haskell-resourcet'
+ 'haskell-unordered-containers' 'haskell-xml-conduit')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('12962fcf71c732a7e709e7069d46691917b9ee9f2af6aab5556b76a4556b6ffc39e52082a4fcdbe501c2cbc7cc496b1164b6a9f2c3883597fcdd0a8298d4ac1a')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:39:49
  Author: felixonmars
Revision: 538697

upgpkg: haskell-http-conduit 2.3.7.3-21: rebuild with warp 3.3.5, warp-tls 3.2.9

Modified:
  haskell-http-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 21:38:34 UTC (rev 538696)
+++ PKGBUILD2019-12-21 21:39:49 UTC (rev 538697)
@@ -4,7 +4,7 @@
 _hkgname=http-conduit
 pkgname=haskell-http-conduit
 pkgver=2.3.7.3
-pkgrel=20
+pkgrel=21
 pkgdesc="HTTP client package with conduit interface and HTTPS support"
 url="https://www.yesodweb.com/book/http-conduit;
 license=("BSD")


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:39:56
  Author: felixonmars
Revision: 538698

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-http-conduit/repos/community-staging-x86_64/PKGBUILD (from rev 
538697, haskell-http-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-21 21:39:56 UTC (rev 538698)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-conduit
+pkgname=haskell-http-conduit
+pkgver=2.3.7.3
+pkgrel=21
+pkgdesc="HTTP client package with conduit interface and HTTPS support"
+url="https://www.yesodweb.com/book/http-conduit;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-http-client' 'haskell-http-client-tls' 'haskell-http-types' 
'haskell-resourcet'
+ 'haskell-unliftio-core')
+makedepends=('ghc' 'haskell-blaze-builder' 'haskell-case-insensitive' 
'haskell-connection'
+ 'haskell-cookie' 'haskell-data-default-class' 'haskell-hunit' 
'haskell-hspec'
+ 'haskell-lifted-base' 'haskell-network' 
'haskell-streaming-commons' 'haskell-temporary'
+ 'haskell-unliftio' 'haskell-utf8-string' 'haskell-wai' 
'haskell-wai-conduit'
+ 'haskell-warp' 'haskell-warp-tls')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('0b3733ce031299ee3b93ca44d45a913e384dbfcd43efe5c65076efb5ff8266058ecb07e90f699ebb54d2d37f4a299be79717c3988e72cce631d417ba21ed4d08')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:38:34
  Author: felixonmars
Revision: 538696

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-warp-tls/repos/community-staging-x86_64/PKGBUILD (from rev 
538695, haskell-warp-tls/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-21 21:38:34 UTC (rev 538696)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=warp-tls
+pkgname=haskell-warp-tls
+pkgver=3.2.9
+pkgrel=1
+pkgdesc="HTTP over TLS support for Warp via the TLS package"
+url="https://github.com/yesodweb/wai;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-cryptonite" "haskell-data-default-class" 
"haskell-network"
+ "haskell-streaming-commons" "haskell-tls" 
"haskell-tls-session-manager" "haskell-wai"
+ "haskell-warp")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('4158ac20ea6d03ac52253256fde75b1a8e8c5bf9ab6c4c673011a3836334629422830b37d4564e5448b2b473d52f031e531ac91a14fb0493715b4cc161580fae')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:38:27
  Author: felixonmars
Revision: 538695

upgpkg: haskell-warp-tls 3.2.9-1: rebuild with warp 3.3.5, warp-tls 3.2.9

Modified:
  haskell-warp-tls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 21:11:39 UTC (rev 538694)
+++ PKGBUILD2019-12-21 21:38:27 UTC (rev 538695)
@@ -3,8 +3,8 @@
 
 _hkgname=warp-tls
 pkgname=haskell-warp-tls
-pkgver=3.2.8
-pkgrel=32
+pkgver=3.2.9
+pkgrel=1
 pkgdesc="HTTP over TLS support for Warp via the TLS package"
 url="https://github.com/yesodweb/wai;
 license=("MIT")
@@ -14,7 +14,7 @@
  "haskell-warp")
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('1346c56828b8090608dc82420f6053488592929549bc31fb62218a7d9a295b3adc09bb97d2c6280855ef758248a03cf48f88329b3af17f30bba7f17a7d3d11c7')
+sha512sums=('4158ac20ea6d03ac52253256fde75b1a8e8c5bf9ab6c4c673011a3836334629422830b37d4564e5448b2b473d52f031e531ac91a14fb0493715b4cc161580fae')
 
 build() {
 cd $_hkgname-$pkgver


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:34:40
  Author: felixonmars
Revision: 372048

upgpkg: python 3.8.1-1

Modified:
  python/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 20:45:56 UTC (rev 372047)
+++ PKGBUILD2019-12-21 21:34:40 UTC (rev 372048)
@@ -5,7 +5,7 @@
 # Contributor: Jason Chu 
 
 pkgname=python
-pkgver=3.8.0
+pkgver=3.8.1
 pkgrel=1
 _pybasever=${pkgver%.*}
 pkgdesc="Next generation of the python high-level scripting language"
@@ -24,7 +24,7 @@
 replaces=('python3')
 
source=("https://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz"{,.asc}
 0001-compileall-Fix-ddir-when-recursing.patch)
-sha512sums=('5f9bfcb3acdf592770a9d5abd2c32c68c55a49b92f958ded069e3ef31cf2d415e67112b4f6738fab237dc29e5c622298719946d2e9471e7e78e3a6bdf2fac1d1'
+sha512sums=('d41381848cc1ec8009643b71875f395a9ac2c8e12a5b1efef33caf8a9e99a337c790d4354695c85352d11b62092ae372b5af62f78724363fcbf3504ff9a6ddca'
 'SKIP'
 
'ebd04c3b6d41321b1f0d439d356e0ce463760db55dc64109854c70d017cf56608aa19de9fc4a21bf840795ff202b4703444f9af8074b661780798c17e03089ff')
 validpgpkeys=('0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D'  # Ned Deily (Python 
release signing key) 


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:34:52
  Author: felixonmars
Revision: 372049

archrelease: copy trunk to testing-x86_64

Added:
  python/repos/testing-x86_64/
  python/repos/testing-x86_64/0001-compileall-Fix-ddir-when-recursing.patch
(from rev 372048, 
python/trunk/0001-compileall-Fix-ddir-when-recursing.patch)
  python/repos/testing-x86_64/PKGBUILD
(from rev 372048, python/trunk/PKGBUILD)
  python/repos/testing-x86_64/genrebuild
(from rev 372048, python/trunk/genrebuild)

---+
 0001-compileall-Fix-ddir-when-recursing.patch |   57 ++
 PKGBUILD  |  129 
 genrebuild|7 +
 3 files changed, 193 insertions(+)

Copied: 
python/repos/testing-x86_64/0001-compileall-Fix-ddir-when-recursing.patch (from 
rev 372048, python/trunk/0001-compileall-Fix-ddir-when-recursing.patch)
===
--- testing-x86_64/0001-compileall-Fix-ddir-when-recursing.patch
(rev 0)
+++ testing-x86_64/0001-compileall-Fix-ddir-when-recursing.patch
2019-12-21 21:34:52 UTC (rev 372049)
@@ -0,0 +1,57 @@
+From 84fdbc156ed424d030686de350fbfc6c3593263f Mon Sep 17 00:00:00 2001
+Message-Id: 
<84fdbc156ed424d030686de350fbfc6c3593263f.1537028533.git.jan.steff...@gmail.com>
+From: "Jan Alexander Steffens (heftig)" 
+Date: Sat, 15 Sep 2018 18:22:06 +0200
+Subject: [PATCH] compileall: Fix ddir when recursing
+
+---
+ Lib/compileall.py | 14 +-
+ 1 file changed, 9 insertions(+), 5 deletions(-)
+
+diff --git a/Lib/compileall.py b/Lib/compileall.py
+index 72592126d7..70e246fd96 100644
+--- a/Lib/compileall.py
 b/Lib/compileall.py
+@@ -45,12 +45,16 @@ def _walk_dir(dir, ddir=None, maxlevels=10, quiet=0):
+ else:
+ dfile = None
+ if not os.path.isdir(fullname):
+-yield fullname
++yield fullname, ddir
+ elif (maxlevels > 0 and name != os.curdir and name != os.pardir and
+   os.path.isdir(fullname) and not os.path.islink(fullname)):
+ yield from _walk_dir(fullname, ddir=dfile,
+  maxlevels=maxlevels - 1, quiet=quiet)
+ 
++def _compile_one(file_ddir, *args, **kwargs):
++file, ddir = file_ddir
++return compile_file(file, ddir, *args, **kwargs)
++
+ def compile_dir(dir, maxlevels=10, ddir=None, force=False, rx=None,
+ quiet=0, legacy=False, optimize=-1, workers=1,
+ invalidation_mode=py_compile.PycInvalidationMode.TIMESTAMP):
+@@ -79,17 +83,17 @@ def compile_dir(dir, maxlevels=10, ddir=None, force=False, 
rx=None,
+ if workers is not None and workers != 1 and ProcessPoolExecutor is not 
None:
+ workers = workers or None
+ with ProcessPoolExecutor(max_workers=workers) as executor:
+-results = executor.map(partial(compile_file,
+-   ddir=ddir, force=force,
++results = executor.map(partial(_compile_one,
++   force=force,
+rx=rx, quiet=quiet,
+legacy=legacy,
+optimize=optimize,
+
invalidation_mode=invalidation_mode),
+files)
+ success = min(results, default=True)
+ else:
+-for file in files:
+-if not compile_file(file, ddir, force, rx, quiet,
++for file_ddir in files:
++if not _compile_one(file_ddir, force, rx, quiet,
+ legacy, optimize, invalidation_mode):
+ success = False
+ return success
+-- 
+2.18.0
+

Copied: python/repos/testing-x86_64/PKGBUILD (from rev 372048, 
python/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-12-21 21:34:52 UTC (rev 372049)
@@ -0,0 +1,129 @@
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Allan McRae 
+# Contributor: Jason Chu 
+
+pkgname=python
+pkgver=3.8.1
+pkgrel=1
+_pybasever=${pkgver%.*}
+pkgdesc="Next generation of the python high-level scripting language"
+arch=('x86_64')
+license=('custom')
+url="https://www.python.org/;
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib' 'libnsl')
+makedepends=('tk' 'sqlite' 'valgrind' 'bluez-libs' 'mpdecimal' 'llvm' 'gdb' 
'xorg-server-xvfb')
+optdepends=('python-setuptools'
+'python-pip'
+'sqlite'
+'mpdecimal: for decimal'
+'xz: for lzma'
+'tk: for tkinter')
+provides=('python3')
+replaces=('python3')

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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:11:39
  Author: felixonmars
Revision: 538694

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wai-handler-launch/repos/community-staging-x86_64/
  haskell-wai-handler-launch/repos/community-staging-x86_64/PKGBUILD
(from rev 538693, haskell-wai-handler-launch/trunk/PKGBUILD)

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

Copied: haskell-wai-handler-launch/repos/community-staging-x86_64/PKGBUILD 
(from rev 538693, haskell-wai-handler-launch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-21 21:11:39 UTC (rev 538694)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-handler-launch
+pkgname=haskell-wai-handler-launch
+pkgver=3.0.2.4
+pkgrel=240
+pkgdesc="Launch a web app in the default browser."
+url="https://github.com/yesodweb/wai;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-wai' 'haskell-warp' 'haskell-http-types' 
'haskell-streaming-commons'
+ 'haskell-async')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('77a8047201687a56d19c70f70e4fcac9c81c2a4f0ec9bbccad8730de5d74582f52c79c62feb73ebcb4c870435cb1393c2d5fba90c9c952eff8ff3a675eab73fb')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *3.3/<4/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:11:32
  Author: felixonmars
Revision: 538693

upgpkg: haskell-wai-handler-launch 3.0.2.4-240: rebuild with warp 3.3.5

Modified:
  haskell-wai-handler-launch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 21:10:48 UTC (rev 538692)
+++ PKGBUILD2019-12-21 21:11:32 UTC (rev 538693)
@@ -4,7 +4,7 @@
 _hkgname=wai-handler-launch
 pkgname=haskell-wai-handler-launch
 pkgver=3.0.2.4
-pkgrel=239
+pkgrel=240
 pkgdesc="Launch a web app in the default browser."
 url="https://github.com/yesodweb/wai;
 license=("MIT")


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:10:48
  Author: felixonmars
Revision: 538692

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-servant-server/repos/community-staging-x86_64/PKGBUILD (from 
rev 538691, haskell-servant-server/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-21 21:10:48 UTC (rev 538692)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=servant-server
+pkgname=haskell-servant-server
+pkgver=0.16.2
+pkgrel=50
+pkgdesc="A family of combinators for defining webservices APIs and serving 
them"
+url="https://haskell-servant.readthedocs.org/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-compat' 'haskell-aeson' 
'haskell-base64-bytestring'
+ 'haskell-exceptions' 'haskell-http-api-data' 'haskell-http-media' 
'haskell-http-types'
+ 'haskell-network-uri' 'haskell-monad-control' 'haskell-network' 
'haskell-servant'
+ 'haskell-string-conversions' 'haskell-resourcet' 'haskell-tagged'
+ 'haskell-transformers-base' 'haskell-wai' 'haskell-wai-app-static' 
'haskell-warp'
+ 'haskell-word8')
+makedepends=('ghc' 'haskell-cabal-doctest' 'haskell-doctest' 'haskell-hspec' 
'haskell-hspec-wai'
+ 'haskell-should-not-typecheck' 'haskell-quickcheck' 
'haskell-safe' 'haskell-wai-extra'
+ 'haskell-temporary' 'haskell-transformers-compat')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('e3bf75e6fb6422e30d7851be7b07f33509f37d9c9c28464c20b3a1fd9cea9b7dd7c328b54438efabf42beecdf0f08fee174be526742c8915ad035fef701ca871')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:10:40
  Author: felixonmars
Revision: 538691

upgpkg: haskell-servant-server 0.16.2-50: rebuild with warp 3.3.5

Modified:
  haskell-servant-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 21:08:49 UTC (rev 538690)
+++ PKGBUILD2019-12-21 21:10:40 UTC (rev 538691)
@@ -4,7 +4,7 @@
 _hkgname=servant-server
 pkgname=haskell-servant-server
 pkgver=0.16.2
-pkgrel=49
+pkgrel=50
 pkgdesc="A family of combinators for defining webservices APIs and serving 
them"
 url="https://haskell-servant.readthedocs.org/;
 license=("BSD")


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:08:49
  Author: felixonmars
Revision: 538690

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-21 21:08:42 UTC (rev 538689)
+++ PKGBUILD2019-12-21 21:08:49 UTC (rev 538690)
@@ -1,34 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-
-pkgname=python-cmd2
-pkgver=0.9.20
-pkgrel=1
-pkgdesc="A tool for building interactive command line apps"
-arch=('any')
-url="https://github.com/python-cmd2/cmd2;
-license=('MIT')
-depends=('python-attrs' 'python-colorama' 'python-pyperclip' 'python-wcwidth')
-makedepends=('python-setuptools-scm')
-checkdepends=('python-pytest-runner' 'python-pytest-xdist' 
'python-pytest-mock' 'vi')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/python-cmd2/cmd2/archive/$pkgver.tar.gz;)
-sha512sums=('0b23fc632b868d3982b8c8bfc72afeb5041dd3c5a5d60d573eb047db91677cac59f7955375451c6ea4625cfc86dbc845fb1424fa52016a839d3e1d8b76f3f5c7')
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-
-build() {
-  cd cmd2-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd cmd2-$pkgver
-  python setup.py pytest
-}
-
-package() {
-  cd cmd2-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-cmd2/repos/community-any/PKGBUILD (from rev 538689, 
python-cmd2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-21 21:08:49 UTC (rev 538690)
@@ -0,0 +1,34 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgname=python-cmd2
+pkgver=0.9.21
+pkgrel=1
+pkgdesc="A tool for building interactive command line apps"
+arch=('any')
+url="https://github.com/python-cmd2/cmd2;
+license=('MIT')
+depends=('python-attrs' 'python-colorama' 'python-pyperclip' 'python-wcwidth')
+makedepends=('python-setuptools-scm')
+checkdepends=('python-pytest-runner' 'python-pytest-xdist' 
'python-pytest-mock' 'vi')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/python-cmd2/cmd2/archive/$pkgver.tar.gz;)
+sha512sums=('6ae22fd61ef7cb8fed98efcc8a4827a33bed77fe55607c28b429178dea37495543401eddd48493c03e39577b38b1f9ffbaa587559531a16fe128e2d57d8988ea')
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+
+build() {
+  cd cmd2-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd cmd2-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd cmd2-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:08:38
  Author: felixonmars
Revision: 538688

upgpkg: python-cmd2 0.9.21-1

Modified:
  python-cmd2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 21:08:35 UTC (rev 538687)
+++ PKGBUILD2019-12-21 21:08:38 UTC (rev 538688)
@@ -2,7 +2,7 @@
 # Contributor: Daniel Wallace 
 
 pkgname=python-cmd2
-pkgver=0.9.20
+pkgver=0.9.21
 pkgrel=1
 pkgdesc="A tool for building interactive command line apps"
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('python-setuptools-scm')
 checkdepends=('python-pytest-runner' 'python-pytest-xdist' 
'python-pytest-mock' 'vi')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/python-cmd2/cmd2/archive/$pkgver.tar.gz;)
-sha512sums=('0b23fc632b868d3982b8c8bfc72afeb5041dd3c5a5d60d573eb047db91677cac59f7955375451c6ea4625cfc86dbc845fb1424fa52016a839d3e1d8b76f3f5c7')
+sha512sums=('6ae22fd61ef7cb8fed98efcc8a4827a33bed77fe55607c28b429178dea37495543401eddd48493c03e39577b38b1f9ffbaa587559531a16fe128e2d57d8988ea')
 
 export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
 


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:08:42
  Author: felixonmars
Revision: 538689

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wai-app-static/repos/community-staging-x86_64/
  haskell-wai-app-static/repos/community-staging-x86_64/PKGBUILD
(from rev 538688, haskell-wai-app-static/trunk/PKGBUILD)

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

Copied: haskell-wai-app-static/repos/community-staging-x86_64/PKGBUILD (from 
rev 538688, haskell-wai-app-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-12-21 21:08:42 UTC (rev 538689)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-app-static
+pkgname=haskell-wai-app-static
+pkgver=3.1.6.3
+pkgrel=130
+pkgdesc="WAI application for static serving"
+url="https://www.yesodweb.com/book/web-application-interface;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptonite'
+ 'haskell-file-embed' 'haskell-http-date' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-mime-types' 'haskell-old-locale' 
'haskell-optparse-applicative'
+ 'haskell-unix-compat' 'haskell-unordered-containers' 'haskell-wai' 
'haskell-wai-extra'
+ 'haskell-warp' 'haskell-zlib')
+makedepends=('ghc' 'haskell-hspec' 'haskell-mockery' 'haskell-network' 
'haskell-temporary')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('acbbb499bd357e758ba46f8d8f0afab22242e4541c3cbaa97bbb5d81d55dfd6fc7c336c36b84591718d9d910dc0a7cbdadd07434cb6a4019ca595040bd18cb79')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *3.3/<4/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-print
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:07:59
  Author: felixonmars
Revision: 538686

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-21 21:07:51 UTC (rev 538685)
+++ PKGBUILD2019-12-21 21:07:59 UTC (rev 538686)
@@ -1,70 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-hypothesis
-pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=4.52.0
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
- 'python-coverage' 'python2-coverage' 'python2-enum34')
-checkdepends=('python-pytest-runner' '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')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('544c9f70e56b7000176cc6f5939dd3e24feffcd2d77b1ddd1e4c34c3082dff147850c03f0737a8134b6cf7e6de7a3711c57c429b324e7cd7f83b2f146fc900e3')
-
-prepare() {
-  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
-
-  cp -a hypothesis-$pkgver{,-py2}
-
-  rm -r hypothesis-$pkgver/hypothesis-python/tests/py2
-  rm -r hypothesis-$pkgver-py2/hypothesis-python/tests/py3
-
-  export LC_CTYPE=en_US.UTF-8
-}
-
-build() {
-  cd "$srcdir"/hypothesis-$pkgver/hypothesis-python
-  python setup.py build
-
-  cd "$srcdir"/hypothesis-$pkgver-py2/hypothesis-python
-  python2 setup.py build
-}
-
-check() {
-  cd hypothesis-$pkgver/hypothesis-python
-  mv tests/django ../
-  python setup.py pytest
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m tests.django.manage test 
tests.django
-}
-
-package_python-hypothesis() {
-  depends=('python-attrs' 'python-coverage')
-  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')
-
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-hypothesis() {
-  depends=('python2-attrs' 'python2-coverage' 'python2-enum34')
-  optdepends=('python2-pytz: for datetime and django module'
-  'python2-faker: for fakefactory and django module'
-  'python2-django: for django module'
-  'python2-numpy: for numpy module'
-  'python2-pytest: for pytest module'
-  'python2-lark-parser: for lark module')
-
-  cd hypothesis-$pkgver-py2/hypothesis-python
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 538685, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-21 21:07:59 UTC (rev 538686)
@@ -0,0 +1,70 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-hypothesis
+pkgname=('python-hypothesis' 'python2-hypothesis')
+pkgver=4.53.0
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
+ 'python-coverage' 'python2-coverage' 'python2-enum34')
+checkdepends=('python-pytest-runner' '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')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
+sha512sums=('13bb6582de902e278202611a3ec804a974fb95aa398bba3d8ed5a061b8274d2857d43a1c3a6bf76cbc5e7e8e80dde262cf4e7678c96a582df0b15a0eeef41a2b')
+
+prepare() {
+  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
+
+  cp -a hypothesis-$pkgver{,-py2}
+
+  rm -r hypothesis-$pkgver/hypothesis-python/tests/py2
+  rm -r hypothesis-$pkgver-py2/hypothesis-python/tests/py3
+
+  export LC_CTYPE=en_US.UTF-8
+}
+
+build() {
+  cd "$srcdir"/hypothesis-$pkgver/hypothesis-python
+  python setup.py build
+
+  cd 

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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:07:51
  Author: felixonmars
Revision: 538685

upgpkg: python-hypothesis 4.53.0-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 21:07:25 UTC (rev 538684)
+++ PKGBUILD2019-12-21 21:07:51 UTC (rev 538685)
@@ -2,7 +2,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=4.52.0
+pkgver=4.53.0
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -14,7 +14,7 @@
   'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
   'python-pytest-xdist' 'python-lark-parser' 'python-pexpect')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('544c9f70e56b7000176cc6f5939dd3e24feffcd2d77b1ddd1e4c34c3082dff147850c03f0737a8134b6cf7e6de7a3711c57c429b324e7cd7f83b2f146fc900e3')
+sha512sums=('13bb6582de902e278202611a3ec804a974fb95aa398bba3d8ed5a061b8274d2857d43a1c3a6bf76cbc5e7e8e80dde262cf4e7678c96a582df0b15a0eeef41a2b')
 
 prepare() {
   mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:08:35
  Author: felixonmars
Revision: 538687

upgpkg: haskell-wai-app-static 3.1.6.3-130: rebuild with warp 3.3.5

Modified:
  haskell-wai-app-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 21:07:59 UTC (rev 538686)
+++ PKGBUILD2019-12-21 21:08:35 UTC (rev 538687)
@@ -4,7 +4,7 @@
 _hkgname=wai-app-static
 pkgname=haskell-wai-app-static
 pkgver=3.1.6.3
-pkgrel=129
+pkgrel=130
 pkgdesc="WAI application for static serving"
 url="https://www.yesodweb.com/book/web-application-interface;
 license=("MIT")


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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:07:08
  Author: felixonmars
Revision: 538682

archrelease: copy trunk to community-staging-x86_64

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

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

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

2019-12-21 Thread Felix Yan via arch-commits
Date: Saturday, December 21, 2019 @ 21:07:17
  Author: felixonmars
Revision: 538683

upgpkg: python-rtree 0.9.3-1

Modified:
  python-rtree/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-21 21:07:08 UTC (rev 538682)
+++ PKGBUILD2019-12-21 21:07:17 UTC (rev 538683)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-rtree
-pkgver=0.9.2
+pkgver=0.9.3
 pkgrel=1
 pkgdesc="Rtree: spatial index for Python GIS"
 url="https://toblerity.github.com/rtree/;
@@ -10,7 +10,7 @@
 depends=('spatialindex' 'python-setuptools')
 checkdepends=('python-pytest-runner' 'python-pytest-cov' 'python-numpy')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/Toblerity/rtree/archive/$pkgver.tar.gz;)
-sha512sums=('85ffeb1474102c9d00df8e9a51f4a19de992f23cff066cef2bef95da5dbed29ac652fa2cdd7ce6bf8e3a9f536594ad6ee40b4079f7cd330bfb1d7e772688a2be')
+sha512sums=('5e08d00cefba903cafff3e25531ff534f50281203969024c9252730edba223d9fcc1372eef45a9527a1a021beb437c0aa7bdd3532157d1e6d0f7f0c46b1d0c81')
 
 build() {
   cd rtree-$pkgver


  1   2   3   >