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

2019-06-10 Thread Gaëtan Bisson via arch-commits
Date: Tuesday, June 11, 2019 @ 04:40:56
  Author: bisson
Revision: 480168

archrelease: copy trunk to community-staging-x86_64

Added:
  collectd/repos/community-staging-x86_64/
  collectd/repos/community-staging-x86_64/PKGBUILD
(from rev 480167, collectd/trunk/PKGBUILD)
  collectd/repos/community-staging-x86_64/lm_sensors5to6.patch
(from rev 480167, collectd/trunk/lm_sensors5to6.patch)
  collectd/repos/community-staging-x86_64/service
(from rev 480167, collectd/trunk/service)

--+
 PKGBUILD |   77 +
 lm_sensors5to6.patch |   69 +++
 service  |   13 
 3 files changed, 159 insertions(+)

Copied: collectd/repos/community-staging-x86_64/PKGBUILD (from rev 480167, 
collectd/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-11 04:40:56 UTC (rev 480168)
@@ -0,0 +1,77 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.8.1
+pkgrel=7
+pkgdesc='Daemon which collects system performance statistics periodically'
+url='https://collectd.org/'
+arch=('x86_64')
+license=('GPL')
+
+optdepends=('curl: apache, ascent, curl, nginx, and write_http plugins'
+'libdbi: dbi plugin'
+'libesmtp: notify_email plugin'
+'libgcrypt: encryption and authentication for network plugin'
+'libmemcached: memcachec plugin'
+'mariadb-libs: mysql plugin'
+'systemd-libs: UdevNameAttr option'
+'iproute2: netlink plugin'
+'net-snmp: snmp plugin'
+'libnotify: notify_desktop plugin'
+'openipmi: ipmi plugin'
+'liboping: ping plugin'
+'libpcap: dns plugin'
+'perl: perl plugin'
+'postgresql-libs: postgresql plugin'
+'python: python plugin'
+'rrdtool: rrdtool and rrdcached plugins'
+'lm_sensors: lm_sensors and sensors plugins'
+'libvirt: libvirt plugin'
+'libxml2: ascent and libvirt plugins'
+'yajl: curl_json plugin'
+'libatasmart: smart plugin'
+'lvm2: lvm plugin'
+'protobuf-c: write_riemann plugin'
+'mosquitto: MQTT plugin'
+'libmicrohttpd: prometheus plugin'
+'librabbitmq-c: amqp plugin')
+
+makedepends=(${optdepends[@]%:*})
+depends=('libltdl' 'iptables' 'libnsl')
+
+source=("${url}files/${pkgname}-${pkgver}.tar.bz2"
+'lm_sensors5to6.patch'
+'service')
+sha256sums=('e796fda27ce06377f491ad91aa286962a68c2b54076aa77a29673d53204453da'
+'9946e796bcbc857160a540ccf38979a4dd722ec13e0761451523206b202591eb'
+'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
+
+backup=('etc/collectd.conf')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed 's/ -Werror//g' -i configure
+   patch -p1 -i ../lm_sensors5to6.patch
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   export MAKEFLAGS='-j1'
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --sbindir=/usr/bin \
+   --with-python=/usr/bin/python \
+   --with-perl-bindings='INSTALLDIRS=vendor'
+   make all
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   rmdir "${pkgdir}/var/run" # FS#30201
+   install -Dm644 ../service 
"${pkgdir}"/usr/lib/systemd/system/collectd.service
+   install -Dm644 contrib/collectd2html.pl 
"${pkgdir}"/usr/share/collectd/collectd2html.pl
+}

Copied: collectd/repos/community-staging-x86_64/lm_sensors5to6.patch (from rev 
480167, collectd/trunk/lm_sensors5to6.patch)
===
--- community-staging-x86_64/lm_sensors5to6.patch   
(rev 0)
+++ community-staging-x86_64/lm_sensors5to6.patch   2019-06-11 04:40:56 UTC 
(rev 480168)
@@ -0,0 +1,69 @@
+diff -Naur old/src/sensors.c new/src/sensors.c
+--- old/src/sensors.c  2018-10-22 20:57:09.027242628 -1000
 new/src/sensors.c  2018-11-29 09:51:36.950814002 -1000
+@@ -149,7 +149,7 @@
+ static char *conffile = SENSORS_CONF_PATH;
+ /* #endif SENSORS_API_VERSION < 0x400 */
+ 
+-#elif (SENSORS_API_VERSION >= 0x400) && (SENSORS_API_VERSION < 0x500)
++#elif (SENSORS_API_VERSION >= 0x400) && (SENSORS_API_VERSION < 0x600)
+ typedef struct featurelist {
+   const sensors_chip_name *chip;
+   const sensors_feature *feature;
+@@ -159,9 +159,9 @@
+ 
+ static char *conffile = NULL;
+ static _Bool use_labels = 0;
+-/* #endif (SENSORS_API_VERSION >= 0x400) && (SENSORS_API_VERSION < 0x500) */
++/* #endif (SENSORS_API_VERSION >= 0x400) && 

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

2019-06-10 Thread Gaëtan Bisson via arch-commits
Date: Tuesday, June 11, 2019 @ 04:40:49
  Author: bisson
Revision: 480167

rebuild for iptables-1:1.8.3

Modified:
  collectd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-11 03:31:39 UTC (rev 480166)
+++ PKGBUILD2019-06-11 04:40:49 UTC (rev 480167)
@@ -3,7 +3,7 @@
 
 pkgname=collectd
 pkgver=5.8.1
-pkgrel=6
+pkgrel=7
 pkgdesc='Daemon which collects system performance statistics periodically'
 url='https://collectd.org/'
 arch=('x86_64')


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

2019-06-10 Thread Sébastien Luttringer via arch-commits
Date: Tuesday, June 11, 2019 @ 00:26:01
  Author: seblu
Revision: 355604

archrelease: copy trunk to staging-x86_64

Added:
  nftables/repos/staging-x86_64/
  nftables/repos/staging-x86_64/PKGBUILD
(from rev 355603, nftables/trunk/PKGBUILD)
  nftables/repos/staging-x86_64/nftables.conf
(from rev 355603, nftables/trunk/nftables.conf)
  nftables/repos/staging-x86_64/nftables.service
(from rev 355603, nftables/trunk/nftables.service)

--+
 PKGBUILD |   57 +
 nftables.conf|   38 +++
 nftables.service |   15 +
 3 files changed, 110 insertions(+)

Copied: nftables/repos/staging-x86_64/PKGBUILD (from rev 355603, 
nftables/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-06-11 00:26:01 UTC (rev 355604)
@@ -0,0 +1,57 @@
+# Maintainer: Sébastien "Seblu" Luttringer 
+
+pkgname=nftables
+epoch=1
+pkgver=0.9.0
+pkgrel=4
+pkgdesc='Netfilter tables userspace tools'
+arch=('x86_64')
+url='https://netfilter.org/projects/nftables/'
+license=('GPL2')
+depends=('libmnl' 'libnftnl' 'gmp' 'readline' 'ncurses' 'jansson')
+makedepends=('docbook2x')
+backup=('etc/nftables.conf')
+validpgpkeys=('C09DB2063F1D7034BA6152ADAB4655A126D292E4') # Netfilter Core Team
+source=("https://netfilter.org/projects/nftables/files/nftables-$pkgver.tar.bz2"{,.sig}
+'nftables.conf'
+'nftables.service')
+sha1sums=('a3463fc6589c08631ec3f306f6db7f0905249542'
+  'SKIP'
+  '7869aa31ac802922073310ffd4cbbc16450171e5'
+  '59185e947ebfd599954800ad2c774171b3f4cd58')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename in "${source[@]}"; do
+if [[ "$filename" =~ \.patch$ ]]; then
+  msg2 "Applying patch ${filename##*/}"
+  patch -p1 -N -i "$srcdir/${filename##*/}"
+fi
+  done
+  :
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/usr/share \
+--with-json \
+CONFIG_MAN=y DB2MAN=docbook2man
+  make
+}
+
+package() {
+  pushd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  popd
+  # basic safe firewall config
+  install -Dm644 nftables.conf "$pkgdir/etc/nftables.conf"
+  # systemd
+  install -Dm644 nftables.service 
"$pkgdir/usr/lib/systemd/system/nftables.service"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: nftables/repos/staging-x86_64/nftables.conf (from rev 355603, 
nftables/trunk/nftables.conf)
===
--- staging-x86_64/nftables.conf(rev 0)
+++ staging-x86_64/nftables.conf2019-06-11 00:26:01 UTC (rev 355604)
@@ -0,0 +1,38 @@
+#!/usr/bin/nft -f
+# ipv4/ipv6 Simple & Safe Firewall
+# you can find examples in /usr/share/nftables/
+
+table inet filter {
+  chain input {
+type filter hook input priority 0;
+
+# allow established/related connections
+ct state {established, related} accept
+
+# early drop of invalid connections
+ct state invalid drop
+
+# allow from loopback
+iifname lo accept
+
+# allow icmp
+ip protocol icmp accept
+ip6 nexthdr icmpv6 accept
+
+# allow ssh
+tcp dport ssh accept
+
+# everything else
+reject with icmpx type port-unreachable
+  }
+  chain forward {
+type filter hook forward priority 0;
+drop
+  }
+  chain output {
+type filter hook output priority 0;
+  }
+
+}
+
+# vim:set ts=2 sw=2 et:

Copied: nftables/repos/staging-x86_64/nftables.service (from rev 355603, 
nftables/trunk/nftables.service)
===
--- staging-x86_64/nftables.service (rev 0)
+++ staging-x86_64/nftables.service 2019-06-11 00:26:01 UTC (rev 355604)
@@ -0,0 +1,15 @@
+[Unit]
+Description=Netfilter Tables
+Documentation=man:nft(8)
+Wants=network-pre.target
+Before=network-pre.target
+
+[Service]
+Type=oneshot
+ExecStart=/usr/bin/nft -f /etc/nftables.conf
+ExecReload=/usr/bin/nft flush ruleset ';' include '"/etc/nftables.conf"'
+ExecStop=/usr/bin/nft flush ruleset
+RemainAfterExit=yes
+
+[Install]
+WantedBy=multi-user.target


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

2019-06-10 Thread Sébastien Luttringer via arch-commits
Date: Tuesday, June 11, 2019 @ 00:20:09
  Author: seblu
Revision: 355603

Oh boy!

Deleted:
  nftables/repos/testing-x86_64/


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

2019-06-10 Thread Sébastien Luttringer via arch-commits
Date: Tuesday, June 11, 2019 @ 00:19:21
  Author: seblu
Revision: 479800

archrelease: copy trunk to community-staging-x86_64

Added:
  keepalived/repos/community-staging-x86_64/
  keepalived/repos/community-staging-x86_64/PKGBUILD
(from rev 479799, keepalived/trunk/PKGBUILD)

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

Copied: keepalived/repos/community-staging-x86_64/PKGBUILD (from rev 479799, 
keepalived/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-11 00:19:21 UTC (rev 479800)
@@ -0,0 +1,44 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Andrea Zucchelli 
+
+pkgname=keepalived
+pkgver=2.0.16
+pkgrel=2
+pkgdesc='Failover and monitoring daemon for LVS clusters'
+arch=('x86_64')
+url='http://www.keepalived.org/'
+license=('GPL2')
+backup=('etc/keepalived/keepalived.conf' 'etc/sysconfig/keepalived')
+makedepends=('ipset')
+depends=('glibc' 'libnl' 'openssl' 'file' 'iptables')
+optdepends=('ipset: ipset support')
+makedepends=('libnfnetlink' 'ipset' 'systemd')
+options=('!emptydirs')
+source=("http://www.keepalived.org/software/$pkgname-$pkgver.tar.gz;)
+md5sums=('03f202eace2ad392c61ced15bb710e24')
+
+build() {
+  # trick broken ./configure systemctl test
+  printf "#!/bin/sh\necho -.mount\n" > systemctl
+  chmod +x systemctl
+  PATH=$PWD:$PATH
+
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--runstatedir=/run
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  # move examples to /usr/share
+  install -d -m 755 "$pkgdir/usr/share/$pkgname"
+  mv "$pkgdir/etc/keepalived/samples" "$pkgdir/usr/share/$pkgname/samples"
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-06-10 Thread Sébastien Luttringer via arch-commits
Date: Monday, June 10, 2019 @ 23:45:34
  Author: seblu
Revision: 479799

I'm stupid

Deleted:
  keepalived/repos/testing-x86_64/


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

2019-06-10 Thread Sébastien Luttringer via arch-commits
Date: Monday, June 10, 2019 @ 23:43:21
  Author: seblu
Revision: 355602

archrelease: copy trunk to testing-x86_64

Added:
  nftables/repos/testing-x86_64/
  nftables/repos/testing-x86_64/PKGBUILD
(from rev 355601, nftables/trunk/PKGBUILD)
  nftables/repos/testing-x86_64/nftables.conf
(from rev 355601, nftables/trunk/nftables.conf)
  nftables/repos/testing-x86_64/nftables.service
(from rev 355601, nftables/trunk/nftables.service)

--+
 PKGBUILD |   57 +
 nftables.conf|   38 +++
 nftables.service |   15 +
 3 files changed, 110 insertions(+)

Copied: nftables/repos/testing-x86_64/PKGBUILD (from rev 355601, 
nftables/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-06-10 23:43:21 UTC (rev 355602)
@@ -0,0 +1,57 @@
+# Maintainer: Sébastien "Seblu" Luttringer 
+
+pkgname=nftables
+epoch=1
+pkgver=0.9.0
+pkgrel=4
+pkgdesc='Netfilter tables userspace tools'
+arch=('x86_64')
+url='https://netfilter.org/projects/nftables/'
+license=('GPL2')
+depends=('libmnl' 'libnftnl' 'gmp' 'readline' 'ncurses' 'jansson')
+makedepends=('docbook2x')
+backup=('etc/nftables.conf')
+validpgpkeys=('C09DB2063F1D7034BA6152ADAB4655A126D292E4') # Netfilter Core Team
+source=("https://netfilter.org/projects/nftables/files/nftables-$pkgver.tar.bz2"{,.sig}
+'nftables.conf'
+'nftables.service')
+sha1sums=('a3463fc6589c08631ec3f306f6db7f0905249542'
+  'SKIP'
+  '7869aa31ac802922073310ffd4cbbc16450171e5'
+  '59185e947ebfd599954800ad2c774171b3f4cd58')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename in "${source[@]}"; do
+if [[ "$filename" =~ \.patch$ ]]; then
+  msg2 "Applying patch ${filename##*/}"
+  patch -p1 -N -i "$srcdir/${filename##*/}"
+fi
+  done
+  :
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/usr/share \
+--with-json \
+CONFIG_MAN=y DB2MAN=docbook2man
+  make
+}
+
+package() {
+  pushd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  popd
+  # basic safe firewall config
+  install -Dm644 nftables.conf "$pkgdir/etc/nftables.conf"
+  # systemd
+  install -Dm644 nftables.service 
"$pkgdir/usr/lib/systemd/system/nftables.service"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: nftables/repos/testing-x86_64/nftables.conf (from rev 355601, 
nftables/trunk/nftables.conf)
===
--- testing-x86_64/nftables.conf(rev 0)
+++ testing-x86_64/nftables.conf2019-06-10 23:43:21 UTC (rev 355602)
@@ -0,0 +1,38 @@
+#!/usr/bin/nft -f
+# ipv4/ipv6 Simple & Safe Firewall
+# you can find examples in /usr/share/nftables/
+
+table inet filter {
+  chain input {
+type filter hook input priority 0;
+
+# allow established/related connections
+ct state {established, related} accept
+
+# early drop of invalid connections
+ct state invalid drop
+
+# allow from loopback
+iifname lo accept
+
+# allow icmp
+ip protocol icmp accept
+ip6 nexthdr icmpv6 accept
+
+# allow ssh
+tcp dport ssh accept
+
+# everything else
+reject with icmpx type port-unreachable
+  }
+  chain forward {
+type filter hook forward priority 0;
+drop
+  }
+  chain output {
+type filter hook output priority 0;
+  }
+
+}
+
+# vim:set ts=2 sw=2 et:

Copied: nftables/repos/testing-x86_64/nftables.service (from rev 355601, 
nftables/trunk/nftables.service)
===
--- testing-x86_64/nftables.service (rev 0)
+++ testing-x86_64/nftables.service 2019-06-10 23:43:21 UTC (rev 355602)
@@ -0,0 +1,15 @@
+[Unit]
+Description=Netfilter Tables
+Documentation=man:nft(8)
+Wants=network-pre.target
+Before=network-pre.target
+
+[Service]
+Type=oneshot
+ExecStart=/usr/bin/nft -f /etc/nftables.conf
+ExecReload=/usr/bin/nft flush ruleset ';' include '"/etc/nftables.conf"'
+ExecStop=/usr/bin/nft flush ruleset
+RemainAfterExit=yes
+
+[Install]
+WantedBy=multi-user.target


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

2019-06-10 Thread Sébastien Luttringer via arch-commits
Date: Monday, June 10, 2019 @ 23:43:11
  Author: seblu
Revision: 355601

upgpkg: nftables 1:0.9.0-4

Modified:
  nftables/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 21:31:52 UTC (rev 355600)
+++ PKGBUILD2019-06-10 23:43:11 UTC (rev 355601)
@@ -3,7 +3,7 @@
 pkgname=nftables
 epoch=1
 pkgver=0.9.0
-pkgrel=3
+pkgrel=4
 pkgdesc='Netfilter tables userspace tools'
 arch=('x86_64')
 url='https://netfilter.org/projects/nftables/'


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

2019-06-10 Thread Filipe Laíns via arch-commits
Date: Monday, June 10, 2019 @ 22:49:34
  Author: ffy00
Revision: 479797

upgpkg: cockatrice 2.7.1-1

Modified:
  cockatrice/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 20:53:03 UTC (rev 479796)
+++ PKGBUILD2019-06-10 22:49:34 UTC (rev 479797)
@@ -2,9 +2,10 @@
 
 pkgname=cockatrice
 _pkgname=Cockatrice
-pkgver=2.7.0
-_tag=2019-03-04-Release-$pkgver
-pkgrel=2
+pkgver=2.7.1
+_date=2019-06-08
+_tag=$_date-Release-$pkgver
+pkgrel=1
 pkgdesc='A cross-platform virtual tabletop for multiplayer card games'
 arch=('x86_64')
 url='https://cockatrice.github.io'
@@ -11,7 +12,7 @@
 license=('GPL2')
 depends=('qt5-base' 'protobuf' 'qt5-tools' 'qt5-svg' 'qt5-multimedia' 
'qt5-websockets')
 makedepends=('cmake' 'git' 'zlib')
-checkdepends=('gtest')
+checkdepends=('gtest' 'valgrind')
 optdepends=('zlib: Load zipped files in Oracle')
 provides=('cockatrice-client' 'cockatrice-server')
 conflicts=('cockatrice-client' 'cockatrice-server')


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

2019-06-10 Thread Filipe Laíns via arch-commits
Date: Monday, June 10, 2019 @ 22:49:38
  Author: ffy00
Revision: 479798

archrelease: copy trunk to community-x86_64

Added:
  cockatrice/repos/community-x86_64/PKGBUILD
(from rev 479797, cockatrice/trunk/PKGBUILD)
Deleted:
  cockatrice/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 22:49:34 UTC (rev 479797)
+++ PKGBUILD2019-06-10 22:49:38 UTC (rev 479798)
@@ -1,46 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=cockatrice
-_pkgname=Cockatrice
-pkgver=2.7.0
-_tag=2019-03-04-Release-$pkgver
-pkgrel=2
-pkgdesc='A cross-platform virtual tabletop for multiplayer card games'
-arch=('x86_64')
-url='https://cockatrice.github.io'
-license=('GPL2')
-depends=('qt5-base' 'protobuf' 'qt5-tools' 'qt5-svg' 'qt5-multimedia' 
'qt5-websockets')
-makedepends=('cmake' 'git' 'zlib')
-checkdepends=('gtest')
-optdepends=('zlib: Load zipped files in Oracle')
-provides=('cockatrice-client' 'cockatrice-server')
-conflicts=('cockatrice-client' 'cockatrice-server')
-source=("git+https://github.com/Cockatrice/Cockatrice.git#tag=$_tag;)
-sha512sums=('SKIP')
-
-build() {
-  mkdir -p $_pkgname/build
-  cd $_pkgname/build
-
-  cmake .. \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DWITH_ORACLE=ON \
-   -DWITH_CLIENT=ON \
-   -DWITH_SERVER=ON \
-   -DTEST=ON
-
-  make
-}
-
-#check() {
-#  cd $_pkgname/build
-#
-#  make test
-#}
-
-package() {
-  cd $_pkgname/build
-
-  make DESTDIR="$pkgdir" install
-}
-

Copied: cockatrice/repos/community-x86_64/PKGBUILD (from rev 479797, 
cockatrice/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 22:49:38 UTC (rev 479798)
@@ -0,0 +1,47 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=cockatrice
+_pkgname=Cockatrice
+pkgver=2.7.1
+_date=2019-06-08
+_tag=$_date-Release-$pkgver
+pkgrel=1
+pkgdesc='A cross-platform virtual tabletop for multiplayer card games'
+arch=('x86_64')
+url='https://cockatrice.github.io'
+license=('GPL2')
+depends=('qt5-base' 'protobuf' 'qt5-tools' 'qt5-svg' 'qt5-multimedia' 
'qt5-websockets')
+makedepends=('cmake' 'git' 'zlib')
+checkdepends=('gtest' 'valgrind')
+optdepends=('zlib: Load zipped files in Oracle')
+provides=('cockatrice-client' 'cockatrice-server')
+conflicts=('cockatrice-client' 'cockatrice-server')
+source=("git+https://github.com/Cockatrice/Cockatrice.git#tag=$_tag;)
+sha512sums=('SKIP')
+
+build() {
+  mkdir -p $_pkgname/build
+  cd $_pkgname/build
+
+  cmake .. \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DWITH_ORACLE=ON \
+   -DWITH_CLIENT=ON \
+   -DWITH_SERVER=ON \
+   -DTEST=ON
+
+  make
+}
+
+#check() {
+#  cd $_pkgname/build
+#
+#  make test
+#}
+
+package() {
+  cd $_pkgname/build
+
+  make DESTDIR="$pkgdir" install
+}
+


[arch-commits] Commit in systemd/repos (21 files)

2019-06-10 Thread Christian Hesse via arch-commits
Date: Monday, June 10, 2019 @ 21:31:37
  Author: eworm
Revision: 355599

archrelease: copy trunk to staging-x86_64

Added:
  systemd/repos/staging-x86_64/
  systemd/repos/staging-x86_64/0001-Use-Arch-Linux-device-access-groups.patch
(from rev 355598, 
systemd/trunk/0001-Use-Arch-Linux-device-access-groups.patch)
  systemd/repos/staging-x86_64/PKGBUILD
(from rev 355598, systemd/trunk/PKGBUILD)
  systemd/repos/staging-x86_64/arch.conf
(from rev 355598, systemd/trunk/arch.conf)
  systemd/repos/staging-x86_64/initcpio-hook-udev
(from rev 355598, systemd/trunk/initcpio-hook-udev)
  systemd/repos/staging-x86_64/initcpio-install-systemd
(from rev 355598, systemd/trunk/initcpio-install-systemd)
  systemd/repos/staging-x86_64/initcpio-install-udev
(from rev 355598, systemd/trunk/initcpio-install-udev)
  systemd/repos/staging-x86_64/loader.conf
(from rev 355598, systemd/trunk/loader.conf)
  systemd/repos/staging-x86_64/splash-arch.bmp
(from rev 355598, systemd/trunk/splash-arch.bmp)
  systemd/repos/staging-x86_64/systemd-binfmt.hook
(from rev 355598, systemd/trunk/systemd-binfmt.hook)
  systemd/repos/staging-x86_64/systemd-catalog.hook
(from rev 355598, systemd/trunk/systemd-catalog.hook)
  systemd/repos/staging-x86_64/systemd-daemon-reload.hook
(from rev 355598, systemd/trunk/systemd-daemon-reload.hook)
  systemd/repos/staging-x86_64/systemd-hook
(from rev 355598, systemd/trunk/systemd-hook)
  systemd/repos/staging-x86_64/systemd-hwdb.hook
(from rev 355598, systemd/trunk/systemd-hwdb.hook)
  systemd/repos/staging-x86_64/systemd-sysctl.hook
(from rev 355598, systemd/trunk/systemd-sysctl.hook)
  systemd/repos/staging-x86_64/systemd-sysusers.hook
(from rev 355598, systemd/trunk/systemd-sysusers.hook)
  systemd/repos/staging-x86_64/systemd-tmpfiles.hook
(from rev 355598, systemd/trunk/systemd-tmpfiles.hook)
  systemd/repos/staging-x86_64/systemd-udev-reload.hook
(from rev 355598, systemd/trunk/systemd-udev-reload.hook)
  systemd/repos/staging-x86_64/systemd-update.hook
(from rev 355598, systemd/trunk/systemd-update.hook)
  systemd/repos/staging-x86_64/systemd-user.pam
(from rev 355598, systemd/trunk/systemd-user.pam)
  systemd/repos/staging-x86_64/systemd.install
(from rev 355598, systemd/trunk/systemd.install)

+
 0001-Use-Arch-Linux-device-access-groups.patch |   75 +
 PKGBUILD   |  297 +++
 arch.conf  |7 
 initcpio-hook-udev |   22 +
 initcpio-install-systemd   |  202 +++
 initcpio-install-udev  |   29 ++
 loader.conf|1 
 systemd-binfmt.hook|   10 
 systemd-catalog.hook   |   11 
 systemd-daemon-reload.hook |   11 
 systemd-hook   |   32 ++
 systemd-hwdb.hook  |   11 
 systemd-sysctl.hook|   10 
 systemd-sysusers.hook  |   10 
 systemd-tmpfiles.hook  |   10 
 systemd-udev-reload.hook   |   11 
 systemd-update.hook|   11 
 systemd-user.pam   |5 
 systemd.install|  109 
 19 files changed, 874 insertions(+)

Copied: 
systemd/repos/staging-x86_64/0001-Use-Arch-Linux-device-access-groups.patch 
(from rev 355598, systemd/trunk/0001-Use-Arch-Linux-device-access-groups.patch)
===
--- staging-x86_64/0001-Use-Arch-Linux-device-access-groups.patch   
(rev 0)
+++ staging-x86_64/0001-Use-Arch-Linux-device-access-groups.patch   
2019-06-10 21:31:37 UTC (rev 355599)
@@ -0,0 +1,75 @@
+From 34e4b4953cb99642e9144d97823edf32b06ffe93 Mon Sep 17 00:00:00 2001
+Message-Id: 
<34e4b4953cb99642e9144d97823edf32b06ffe93.1520376078.git.jan.steff...@gmail.com>
+From: "Jan Alexander Steffens (heftig)" 
+Date: Tue, 6 Mar 2018 23:39:47 +0100
+Subject: [PATCH] Use Arch Linux' device access groups
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+  cdrom   → optical
+  dialout → uucp
+  tape→ storage
+---
+ rules/50-udev-default.rules.in | 14 +++---
+ sysusers.d/basic.conf.in   |  6 +++---
+ 2 files changed, 10 insertions(+), 10 deletions(-)
+
+diff --git a/rules/50-udev-default.rules.in b/rules/50-udev-default.rules.in
+index 191f56f42..f81c4d0fc 100644
+--- a/rules/50-udev-default.rules.in
 b/rules/50-udev-default.rules.in
+@@ -22,7 +22,7 @@ SUBSYSTEM=="tty", KERNEL=="sclp_line[0-9]*", GROUP="tty", 
MODE="0620"
+ SUBSYSTEM=="tty", KERNEL=="ttysclp[0-9]*", GROUP="tty", MODE="0620"
+ SUBSYSTEM=="tty", 

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

2019-06-10 Thread Christian Hesse via arch-commits
Date: Monday, June 10, 2019 @ 21:31:25
  Author: eworm
Revision: 355598

upgpkg: systemd 242.29-2

libnftnl 1.1.3 + iptables 1.8.3 rebuild

Modified:
  systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 21:12:24 UTC (rev 355597)
+++ PKGBUILD2019-06-10 21:31:25 UTC (rev 355598)
@@ -7,7 +7,7 @@
 # Can be from either systemd or systemd-stable
 _commit='298d13df7ef1097fa4801de573f668cef23a22b3'
 pkgver=242.29
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 url='https://www.github.com/systemd/systemd'
 makedepends=('acl' 'cryptsetup' 'docbook-xsl' 'gperf' 'lz4' 'xz' 'pam' 'libelf'
@@ -80,8 +80,6 @@
   '933c70a0a4e4fac47d18e0348ae97ee3d48dc139'
   # network: bump MTU bytes only when MTUByte= is not set
   'f6fcc1c2a41eae749467de58453174296b635a69'
-  # test-network: adjust mtu
-  '7d7be1b9d8c17b5c4a41d72b6169a1f0270dc7b8'
 )
 
 _reverts=(


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

2019-06-10 Thread Christian Hesse via arch-commits
Date: Monday, June 10, 2019 @ 21:12:24
  Author: eworm
Revision: 355597

more network fixes

Modified:
  systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 19:47:24 UTC (rev 355596)
+++ PKGBUILD2019-06-10 21:12:24 UTC (rev 355597)
@@ -72,6 +72,16 @@
   '51aba17b88617515e037e8985d3a4ea871ac47fe'
   # network: fix assertion when link get carrier
   'b9ea3d2e47b3741f3f46ba9c5e19640136933b71'
+
+  # network: do not use ordered_set_printf() for DOMAINS= or ROUTE_DOMAINS=
+  'fe0e16db093a7da09fcb52a2bc7017197047443d'
+
+  # network: honor MTUBytes= setting
+  '933c70a0a4e4fac47d18e0348ae97ee3d48dc139'
+  # network: bump MTU bytes only when MTUByte= is not set
+  'f6fcc1c2a41eae749467de58453174296b635a69'
+  # test-network: adjust mtu
+  '7d7be1b9d8c17b5c4a41d72b6169a1f0270dc7b8'
 )
 
 _reverts=(


[arch-commits] Commit in intel-compute-runtime/repos/community-x86_64 (2 files)

2019-06-10 Thread Daniel Bermond via arch-commits
Date: Monday, June 10, 2019 @ 20:53:03
  Author: dbermond
Revision: 479796

archrelease: copy trunk to community-x86_64

Added:
  intel-compute-runtime/repos/community-x86_64/PKGBUILD
(from rev 479795, intel-compute-runtime/trunk/PKGBUILD)
Deleted:
  intel-compute-runtime/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 20:52:34 UTC (rev 479795)
+++ PKGBUILD2019-06-10 20:53:03 UTC (rev 479796)
@@ -1,38 +0,0 @@
-# Maintainer: Daniel Bermond 
-# Maintainer: Bruno Pagani 
-
-_srcname=compute-runtime
-pkgname=intel-${_srcname}
-pkgver=19.22.13062
-pkgrel=1
-pkgdesc="Intel(R) Graphics Compute Runtime for OpenCL(TM). Replaces Beignet 
for Gen8 (Broadwell) and beyond."
-arch=(x86_64)
-url="https://01.org/compute-runtime;
-license=(MIT)
-depends=(gcc-libs intel-gmmlib intel-graphics-compiler)
-makedepends=(cmake libva)
-optdepends=('libva: for cl_intel_va_api_media_sharing'
-'libdrm: for cl_intel_va_api_media_sharing')
-provides=(opencl-driver)
-source=("https://github.com/intel/compute-runtime/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('38abf70e0c0f76c9f40f2ac5b76d3b0f1affe64e2db45fde958e1c059bd2197e')
-
-prepare() {
-mkdir -p build
-}
-
-build() {
-cd build
-cmake ../${_srcname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DNEO_DRIVER_VERSION=${pkgver}
-make
-}
-
-package() {
-cd build
-make DESTDIR="${pkgdir}" install
-install -Dm644 ../${_srcname}-${pkgver}/LICENSE -t 
"${pkgdir}"/usr/share/licenses/${pkgname}
-}

Copied: intel-compute-runtime/repos/community-x86_64/PKGBUILD (from rev 479795, 
intel-compute-runtime/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 20:53:03 UTC (rev 479796)
@@ -0,0 +1,38 @@
+# Maintainer: Daniel Bermond 
+# Maintainer: Bruno Pagani 
+
+_srcname=compute-runtime
+pkgname=intel-${_srcname}
+pkgver=19.22.13062
+pkgrel=2
+pkgdesc="Intel(R) Graphics Compute Runtime for OpenCL(TM). Replaces Beignet 
for Gen8 (Broadwell) and beyond."
+arch=(x86_64)
+url="https://01.org/compute-runtime;
+license=(MIT)
+depends=(gcc-libs intel-gmmlib intel-graphics-compiler)
+makedepends=(cmake libva)
+optdepends=('libva: for cl_intel_va_api_media_sharing'
+'libdrm: for cl_intel_va_api_media_sharing')
+provides=(opencl-driver)
+source=("https://github.com/intel/compute-runtime/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('38abf70e0c0f76c9f40f2ac5b76d3b0f1affe64e2db45fde958e1c059bd2197e')
+
+prepare() {
+mkdir -p build
+}
+
+build() {
+cd build
+cmake ../${_srcname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DNEO_DRIVER_VERSION=${pkgver}
+make
+}
+
+package() {
+cd build
+make DESTDIR="${pkgdir}" install
+install -Dm644 ../${_srcname}-${pkgver}/LICENSE -t 
"${pkgdir}"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in intel-compute-runtime/trunk (PKGBUILD)

2019-06-10 Thread Daniel Bermond via arch-commits
Date: Monday, June 10, 2019 @ 20:52:34
  Author: dbermond
Revision: 479795

upgpkg: intel-compute-runtime 19.22.13062-2

igc 1.0.8 rebuild.

Relevant igc headers changed[1]:
- IGC/AdaptorOCL/cif/cif/common/cif.h
- IGC/AdaptorOCL/cif/cif/os/lin/lin_library_handle.cpp

[1] 
https://github.com/intel/intel-graphics-compiler/compare/igc-1.0.7...igc-1.0.8

Modified:
  intel-compute-runtime/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 20:46:47 UTC (rev 479794)
+++ PKGBUILD2019-06-10 20:52:34 UTC (rev 479795)
@@ -4,7 +4,7 @@
 _srcname=compute-runtime
 pkgname=intel-${_srcname}
 pkgver=19.22.13062
-pkgrel=1
+pkgrel=2
 pkgdesc="Intel(R) Graphics Compute Runtime for OpenCL(TM). Replaces Beignet 
for Gen8 (Broadwell) and beyond."
 arch=(x86_64)
 url="https://01.org/compute-runtime;


[arch-commits] Commit in intel-graphics-compiler/repos/community-x86_64 (3 files)

2019-06-10 Thread Daniel Bermond via arch-commits
Date: Monday, June 10, 2019 @ 20:46:47
  Author: dbermond
Revision: 479794

archrelease: copy trunk to community-x86_64

Added:
  intel-graphics-compiler/repos/community-x86_64/PKGBUILD
(from rev 479793, intel-graphics-compiler/trunk/PKGBUILD)
Deleted:
  intel-graphics-compiler/repos/community-x86_64/PKGBUILD
  
intel-graphics-compiler/repos/community-x86_64/igc-fix-build-with-system-opencl-clang.patch

--+
 PKGBUILD |   95 +++--
 igc-fix-build-with-system-opencl-clang.patch |   69 --
 2 files changed, 44 insertions(+), 120 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 20:46:24 UTC (rev 479793)
+++ PKGBUILD2019-06-10 20:46:47 UTC (rev 479794)
@@ -1,51 +0,0 @@
-# Maintainer: Daniel Bermond 
-# Maintainer: Bruno Pagani 
-
-pkgname=intel-graphics-compiler
-epoch=1
-pkgver=1.0.7
-pkgrel=1
-pkgdesc="Intel Graphics Compiler for OpenCL"
-arch=(x86_64)
-url="https://github.com/intel/intel-graphics-compiler;
-license=(MIT)
-depends=(llvm-libs intel-opencl-clang)
-makedepends=(cmake clang llvm zlib python2)
-options=('!emptydirs')
-source=("${url}/archive/igc-${pkgver}.tar.gz"
-'igc-fix-build-with-system-opencl-clang.patch')
-noextract=("igc-${pkgver}.tar.gz")
-sha256sums=('b95afb8f983f38a8aedfa9d77ecb619706f58baae31dd7da0c4e31962b9205c1'
-'e4221ca82774d8afda7b581d5b80cffa6c47d8326aaee068546d8e63f5bef63d')
-
-prepare() {
-mkdir -p build ${pkgname}-${pkgver}
-bsdtar xf igc-${pkgver}.tar.gz -C ${pkgname}-${pkgver} 
--strip-components='1'
-
-# fix build with system opencl-clang
-# https://github.com/intel/intel-graphics-compiler/issues/95
-cd "${pkgname}-${pkgver}"
-patch -Np1 -i "${srcdir}/igc-fix-build-with-system-opencl-clang.patch"
-}
-
-build() {
-cd build
-cmake ../"${pkgname}-${pkgver}" \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DIGC_OPTION__ARCHITECTURE_TARGET='Linux64' \
--DIGC_PREFERRED_LLVM_VERSION='8.0.0' \
--Wno-dev
-make
-
-# License
-sed -n '2,20p' IGC/AdaptorOCL/igc.opencl.h > LICENSE # create file
-sed -i '1,22s/^.\{,3\}//' LICENSE # erase C comments
-}
-
-package() {
-cd build
-make DESTDIR="${pkgdir}" install
-install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}
-}

Copied: intel-graphics-compiler/repos/community-x86_64/PKGBUILD (from rev 
479793, intel-graphics-compiler/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 20:46:47 UTC (rev 479794)
@@ -0,0 +1,44 @@
+# Maintainer: Daniel Bermond 
+# Maintainer: Bruno Pagani 
+
+pkgname=intel-graphics-compiler
+epoch=1
+pkgver=1.0.8
+pkgrel=1
+pkgdesc="Intel Graphics Compiler for OpenCL"
+arch=(x86_64)
+url="https://github.com/intel/intel-graphics-compiler;
+license=(MIT)
+depends=(llvm-libs intel-opencl-clang)
+makedepends=(cmake clang llvm zlib python2)
+options=('!emptydirs')
+source=("${url}/archive/igc-${pkgver}.tar.gz")
+noextract=("igc-${pkgver}.tar.gz")
+sha256sums=('b66e78c3084aff92f3245e6352d363195c7b2d499c6b8ae8a3c73bd66cb2b94e')
+
+prepare() {
+mkdir -p build ${pkgname}-${pkgver}
+bsdtar xf igc-${pkgver}.tar.gz -C ${pkgname}-${pkgver} 
--strip-components='1'
+}
+
+build() {
+cd build
+cmake ../"${pkgname}-${pkgver}" \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DIGC_OPTION__ARCHITECTURE_TARGET='Linux64' \
+-DIGC_PREFERRED_LLVM_VERSION='8.0.0' \
+-Wno-dev
+make
+
+# License
+sed -n '2,20p' IGC/AdaptorOCL/igc.opencl.h > LICENSE # create file
+sed -i '1,22s/^.\{,3\}//' LICENSE # erase C comments
+}
+
+package() {
+cd build
+make DESTDIR="${pkgdir}" install
+install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}
+}

Deleted: igc-fix-build-with-system-opencl-clang.patch
===
--- igc-fix-build-with-system-opencl-clang.patch2019-06-10 20:46:24 UTC 
(rev 479793)
+++ igc-fix-build-with-system-opencl-clang.patch2019-06-10 20:46:47 UTC 
(rev 479794)
@@ -1,69 +0,0 @@
-intel-graphics-compiler 1.0.7
-Fix build with system opencl-clang
-https://github.com/intel/intel-graphics-compiler/issues/95
-
-Backport of:
-https://github.com/intel/intel-graphics-compiler/commit/5d2ab178abeee5a71ba6409a1e7208d4f1f0041a
-
-diff -Naurp a/IGC/BiFModule/CMakeLists.txt b/IGC/BiFModule/CMakeLists.txt
 a/IGC/BiFModule/CMakeLists.txt 2019-06-03 17:27:09.604195718 +
-+++ b/IGC/BiFModule/CMakeLists.txt 2019-06-04 01:11:06.739758208 +
-@@ -60,7 +60,7 @@ endif()
- ###
- 
- ### Check by order first available way to link 

[arch-commits] Commit in intel-graphics-compiler/trunk (2 files)

2019-06-10 Thread Daniel Bermond via arch-commits
Date: Monday, June 10, 2019 @ 20:46:24
  Author: dbermond
Revision: 479793

upgpkg: intel-graphics-compiler 1:1.0.8-1

Modified:
  intel-graphics-compiler/trunk/PKGBUILD
Deleted:
  intel-graphics-compiler/trunk/igc-fix-build-with-system-opencl-clang.patch

--+
 PKGBUILD |   13 +---
 igc-fix-build-with-system-opencl-clang.patch |   69 -
 2 files changed, 3 insertions(+), 79 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 20:42:20 UTC (rev 479792)
+++ PKGBUILD2019-06-10 20:46:24 UTC (rev 479793)
@@ -3,7 +3,7 @@
 
 pkgname=intel-graphics-compiler
 epoch=1
-pkgver=1.0.7
+pkgver=1.0.8
 pkgrel=1
 pkgdesc="Intel Graphics Compiler for OpenCL"
 arch=(x86_64)
@@ -12,20 +12,13 @@
 depends=(llvm-libs intel-opencl-clang)
 makedepends=(cmake clang llvm zlib python2)
 options=('!emptydirs')
-source=("${url}/archive/igc-${pkgver}.tar.gz"
-'igc-fix-build-with-system-opencl-clang.patch')
+source=("${url}/archive/igc-${pkgver}.tar.gz")
 noextract=("igc-${pkgver}.tar.gz")
-sha256sums=('b95afb8f983f38a8aedfa9d77ecb619706f58baae31dd7da0c4e31962b9205c1'
-'e4221ca82774d8afda7b581d5b80cffa6c47d8326aaee068546d8e63f5bef63d')
+sha256sums=('b66e78c3084aff92f3245e6352d363195c7b2d499c6b8ae8a3c73bd66cb2b94e')
 
 prepare() {
 mkdir -p build ${pkgname}-${pkgver}
 bsdtar xf igc-${pkgver}.tar.gz -C ${pkgname}-${pkgver} 
--strip-components='1'
-
-# fix build with system opencl-clang
-# https://github.com/intel/intel-graphics-compiler/issues/95
-cd "${pkgname}-${pkgver}"
-patch -Np1 -i "${srcdir}/igc-fix-build-with-system-opencl-clang.patch"
 }
 
 build() {

Deleted: igc-fix-build-with-system-opencl-clang.patch
===
--- igc-fix-build-with-system-opencl-clang.patch2019-06-10 20:42:20 UTC 
(rev 479792)
+++ igc-fix-build-with-system-opencl-clang.patch2019-06-10 20:46:24 UTC 
(rev 479793)
@@ -1,69 +0,0 @@
-intel-graphics-compiler 1.0.7
-Fix build with system opencl-clang
-https://github.com/intel/intel-graphics-compiler/issues/95
-
-Backport of:
-https://github.com/intel/intel-graphics-compiler/commit/5d2ab178abeee5a71ba6409a1e7208d4f1f0041a
-
-diff -Naurp a/IGC/BiFModule/CMakeLists.txt b/IGC/BiFModule/CMakeLists.txt
 a/IGC/BiFModule/CMakeLists.txt 2019-06-03 17:27:09.604195718 +
-+++ b/IGC/BiFModule/CMakeLists.txt 2019-06-04 01:11:06.739758208 +
-@@ -60,7 +60,7 @@ endif()
- ###
- 
- ### Check by order first available way to link with opencl-clang
--if(${CCLANG_FROM_SYSTEM})
-+if(CCLANG_FROM_SYSTEM)
-   message(STATUS "[IGC\\BiFModule] : opencl-clang will be taken from system")
- else()
-   if(NOT DEFINED CCLANG_BUILD_PREBUILDS_DIR)
-@@ -103,7 +103,7 @@ endif()
- ###
- 
- #1. CCLANG_FROM_SYSTEM - use installed on system opencl-clang toolchain
--if(${CCLANG_FROM_SYSTEM})
-+if(CCLANG_FROM_SYSTEM)
-   find_library(SYSTEM_COMMON_CLANG ${COMMON_CLANG_LIBRARY_NAME})
-   
-   add_library(opencl-clang-lib SHARED IMPORTED GLOBAL)
-@@ -127,12 +127,6 @@ elseif(${CCLANG_BUILD_PREBUILDS})
-   add_library(opencl-clang-lib SHARED IMPORTED GLOBAL)
-   set_property(TARGET opencl-clang-lib PROPERTY "IMPORTED_LOCATION" 
"${CCLANG_BUILD_PREBUILDS_DIR}/${COMMON_CLANG_LIB_FULL_NAME}")
-   
--  if(${LLVM_VERSION_MINOR} EQUAL 0 AND ${LLVM_VERSION_PATCH} EQUAL 0)
--set_property(TARGET opencl-clang-lib PROPERTY "IMPORTED_SONAME" 
"${COMMON_CLANG_LIB_FULL_NAME}.${LLVM_VERSION_MAJOR}")
--  else()
--set_property(TARGET opencl-clang-lib PROPERTY "IMPORTED_SONAME" 
"${COMMON_CLANG_LIB_FULL_NAME}.${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}")
--  endif()
--
-   add_executable(clang-tool IMPORTED GLOBAL)
-   set_property(TARGET clang-tool PROPERTY "IMPORTED_LOCATION" 
"${CCLANG_BUILD_PREBUILDS_DIR}/clang${CMAKE_EXECUTABLE_SUFFIX}")
- 
-@@ -146,13 +140,20 @@ elseif(${CCLANG_BUILD_INTREE_LLVM})
- endif()
- ###
- 
--if(UNIX AND NOT ${CCLANG_FROM_SYSTEM})
--  install(FILES $ DESTINATION 
${CMAKE_INSTALL_FULL_LIBDIR} COMPONENT igc-opencl)
--  install(FILES $ DESTINATION 
${CMAKE_INSTALL_FULL_LIBDIR} COMPONENT igc-opencl)
--  
--  install(FILES $ DESTINATION 
${CMAKE_INSTALL_FULL_BINDIR} COMPONENT igc-opencl-devel)
--  install(FILES $-${LLVM_VERSION_MAJOR} DESTINATION 
${CMAKE_INSTALL_FULL_BINDIR} COMPONENT igc-opencl-devel)
--  install(FILES ${opencl-header} DESTINATION ${CMAKE_INSTALL_FULL_INCLUDEDIR} 
COMPONENT igc-opencl-devel)
-+if(UNIX)
-+  if(${LLVM_VERSION_MINOR} EQUAL 0 AND ${LLVM_VERSION_PATCH} EQUAL 0)
-+set_property(TARGET opencl-clang-lib PROPERTY "IMPORTED_SONAME" 
"${COMMON_CLANG_LIB_FULL_NAME}.${LLVM_VERSION_MAJOR}")
-+  else()
-+set_property(TARGET opencl-clang-lib PROPERTY "IMPORTED_SONAME" 
"${COMMON_CLANG_LIB_FULL_NAME}.${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}")
-+  

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

2019-06-10 Thread Sébastien Luttringer via arch-commits
Date: Monday, June 10, 2019 @ 20:42:10
  Author: seblu
Revision: 479791

upgpkg: keepalived 2.0.16-2

Modified:
  keepalived/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 19:59:20 UTC (rev 479790)
+++ PKGBUILD2019-06-10 20:42:10 UTC (rev 479791)
@@ -3,7 +3,7 @@
 
 pkgname=keepalived
 pkgver=2.0.16
-pkgrel=1
+pkgrel=2
 pkgdesc='Failover and monitoring daemon for LVS clusters'
 arch=('x86_64')
 url='http://www.keepalived.org/'


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

2019-06-10 Thread Sébastien Luttringer via arch-commits
Date: Monday, June 10, 2019 @ 20:42:20
  Author: seblu
Revision: 479792

archrelease: copy trunk to testing-x86_64

Added:
  keepalived/repos/testing-x86_64/
  keepalived/repos/testing-x86_64/PKGBUILD
(from rev 479791, keepalived/trunk/PKGBUILD)

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

Copied: keepalived/repos/testing-x86_64/PKGBUILD (from rev 479791, 
keepalived/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-06-10 20:42:20 UTC (rev 479792)
@@ -0,0 +1,44 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Andrea Zucchelli 
+
+pkgname=keepalived
+pkgver=2.0.16
+pkgrel=2
+pkgdesc='Failover and monitoring daemon for LVS clusters'
+arch=('x86_64')
+url='http://www.keepalived.org/'
+license=('GPL2')
+backup=('etc/keepalived/keepalived.conf' 'etc/sysconfig/keepalived')
+makedepends=('ipset')
+depends=('glibc' 'libnl' 'openssl' 'file' 'iptables')
+optdepends=('ipset: ipset support')
+makedepends=('libnfnetlink' 'ipset' 'systemd')
+options=('!emptydirs')
+source=("http://www.keepalived.org/software/$pkgname-$pkgver.tar.gz;)
+md5sums=('03f202eace2ad392c61ced15bb710e24')
+
+build() {
+  # trick broken ./configure systemctl test
+  printf "#!/bin/sh\necho -.mount\n" > systemctl
+  chmod +x systemctl
+  PATH=$PWD:$PATH
+
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--runstatedir=/run
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  # move examples to /usr/share
+  install -d -m 755 "$pkgdir/usr/share/$pkgname"
+  mv "$pkgdir/etc/keepalived/samples" "$pkgdir/usr/share/$pkgname/samples"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in cacti/repos/community-any (7 files)

2019-06-10 Thread David Runge via arch-commits
Date: Monday, June 10, 2019 @ 19:59:20
  Author: dvzrv
Revision: 479790

archrelease: copy trunk to community-any

Added:
  cacti/repos/community-any/PKGBUILD
(from rev 479789, cacti/trunk/PKGBUILD)
  cacti/repos/community-any/cacti.install
(from rev 479789, cacti/trunk/cacti.install)
  cacti/repos/community-any/cacti.sysusers
(from rev 479789, cacti/trunk/cacti.sysusers)
  cacti/repos/community-any/cacti.tmpfiles
(from rev 479789, cacti/trunk/cacti.tmpfiles)
  cacti/repos/community-any/cacti.uwsgi
(from rev 479789, cacti/trunk/cacti.uwsgi)
Deleted:
  cacti/repos/community-any/PKGBUILD
  cacti/repos/community-any/tmpfiles.conf

+
 PKGBUILD   |  223 +++
 cacti.install  |9 ++
 cacti.sysusers |1 
 cacti.tmpfiles |   17 
 cacti.uwsgi|   38 +
 tmpfiles.conf  |2 
 6 files changed, 226 insertions(+), 64 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 19:59:13 UTC (rev 479789)
+++ PKGBUILD2019-06-10 19:59:20 UTC (rev 479790)
@@ -1,62 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Sergej Pupykin 
-# Contributor: tuxbubling 
-
-pkgname=cacti
-pkgver=1.2.2
-pkgrel=1
-pkgdesc="Network graphing solution using RRDTool"
-arch=('any')
-url="https://www.cacti.net;
-license=('GPL2')
-depends=('rrdtool' 'mariadb' 'php-gd' 'net-snmp' 'xorg-fonts-100dpi')
-backup=('etc/webapps/cacti/.htaccess'
-'etc/webapps/cacti/config.php')
-source=("https://www.${pkgname}.net/downloads/${pkgname}-${pkgver}.tar.gz;
-'tmpfiles.conf')
-sha512sums=('4a41aff20f06ad56f4723e52084d1a09e3b3eb017e8f1c957f700e4e2f9b12e8f0e599cb56611241c6fcc59bbd6bf957e948631f3beca72e2a7fdadacc473c65'
-
'6d25f182141ca7d13388f7241eb27d783ea99b991c0b147382f8ec9eeeb521303531f8ad9dd7c968cb36b7bb657cb517b8c7f46fd1d777e1b10923d76e4efbd6')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  # remove unneeded executable bits
-  find . -executable -type f -and -not -path "*scripts*" -exec chmod -c 644 {} 
\;
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  install -vDm 644 {CHANGELOG,README.md} -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  rm -v {CHANGELOG,LICENSE,README.md}
-  # create directories
-  install -vdm 0755 "${pkgdir}/usr/share/webapps/${pkgname}" \
-"${pkgdir}/etc/webapps/${pkgname}" \
-"${pkgdir}/var/log/" "${pkgdir}/var/lib/${pkgname}/"
-
-  # move sources
-  cp -av "../${pkgname}-${pkgver}"/* \
-"${pkgdir}/usr/share/webapps/${pkgname}"
-
-  # move and symlink configuration
-  echo "Require all denied" >> "${pkgdir}/etc/webapps/${pkgname}/.htaccess"
-  mv "${pkgdir}/usr/share/webapps/${pkgname}/include/config.php" \
-"${pkgdir}/etc/webapps/${pkgname}"
-  ln -sv "/etc/webapps/${pkgname}/.htaccess" \
-"${pkgdir}/usr/share/webapps/${pkgname}/.htaccess"
-  ln -sv "/etc/webapps/${pkgname}/config.php" \
-"${pkgdir}/usr/share/webapps/${pkgname}/include/config.php"
-
-  # move and symlink var directory
-  mv -v "${pkgdir}/usr/share/webapps/${pkgname}/rra" \
-"${pkgdir}/var/lib/${pkgname}/rra"
-  ln -sv "/var/lib/${pkgname}/rra" \
-"${pkgdir}/usr/share/webapps/${pkgname}/rra"
-
-  # move and symlink log directory
-  mv -v "${pkgdir}/usr/share/webapps/${pkgname}/log" \
-"${pkgdir}/var/log/${pkgname}"
-  ln -sv "/var/log/${pkgname}" "${pkgdir}/usr/share/webapps/${pkgname}/log"
-
-  # tmpfiles.d
-  install -vDm 644 "${srcdir}/tmpfiles.conf" \
-"${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
-}

Copied: cacti/repos/community-any/PKGBUILD (from rev 479789, 
cacti/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 19:59:20 UTC (rev 479790)
@@ -0,0 +1,161 @@
+# Maintainer: David Runge 
+# Contributor: Sergej Pupykin 
+# Contributor: tuxbubling 
+
+pkgname=cacti
+pkgver=1.2.4
+pkgrel=1
+pkgdesc="Network graphing solution using RRDTool"
+arch=('any')
+url="https://www.cacti.net;
+license=('GPL2')
+depends=('php-gd' 'php-snmp' 'rrdtool' 'ttf-dejavu')
+optdepends=('mariadb: use local MySQL server'
+'php-fpm: run in fastCGI process manager'
+'uwsgi: run as local application container')
+backup=('etc/webapps/cacti/.htaccess'
+'etc/webapps/cacti/config.php')
+source=("https://www.${pkgname}.net/downloads/${pkgname}-${pkgver}.tar.gz;
+"${pkgname}.uwsgi"
+"${pkgname}.sysusers"
+"${pkgname}.tmpfiles")
+install="${pkgname}.install"
+sha512sums=('b3b296a59eb5ba2c83ddc4fb7c44f121808a5444daa9d87cf4be5364d80ed91034b0ea1a68e117a555e87a5ae574e8de890ddbc16fe543b4c4888ecb259efbe5'
+
'a87241b12226fcad9e161d0f4cd344161015b5fa8e2f1f3af4431d22bd87aad8a4f9553226baed98d48376819e75266a50fd796b1c884b4e597ccf38a5e4de01'
+
'847e2b791de44d0790a2fdb81c77c8af9a66da9d44500f3f8a8d1c0f406d3a20082cc8fef1c6afe4de93ad989d35c79c9809abe14693a9ac6ea74d4696e3b6c1'
+  

[arch-commits] Commit in cacti/trunk (6 files)

2019-06-10 Thread David Runge via arch-commits
Date: Monday, June 10, 2019 @ 19:59:13
  Author: dvzrv
Revision: 479789

upgpkg: cacti 1.2.4-1

Upgrading to 1.2.4. Adding default uwsgi configuration. Installing as separate 
user/group cacti.
Moving all state files, logs, etc. to their respective FHS compliant locations. 
Adding install file to explain changes.

Added:
  cacti/trunk/cacti.install
  cacti/trunk/cacti.sysusers
  cacti/trunk/cacti.tmpfiles
(from rev 479788, cacti/trunk/tmpfiles.conf)
  cacti/trunk/cacti.uwsgi
Modified:
  cacti/trunk/PKGBUILD
Deleted:
  cacti/trunk/tmpfiles.conf

+
 PKGBUILD   |  159 ---
 cacti.install  |9 +++
 cacti.sysusers |1 
 cacti.tmpfiles |   17 +
 cacti.uwsgi|   38 +
 tmpfiles.conf  |2 
 6 files changed, 194 insertions(+), 32 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 18:50:23 UTC (rev 479788)
+++ PKGBUILD2019-06-10 19:59:13 UTC (rev 479789)
@@ -3,22 +3,37 @@
 # Contributor: tuxbubling 
 
 pkgname=cacti
-pkgver=1.2.2
+pkgver=1.2.4
 pkgrel=1
 pkgdesc="Network graphing solution using RRDTool"
 arch=('any')
 url="https://www.cacti.net;
 license=('GPL2')
-depends=('rrdtool' 'mariadb' 'php-gd' 'net-snmp' 'xorg-fonts-100dpi')
+depends=('php-gd' 'php-snmp' 'rrdtool' 'ttf-dejavu')
+optdepends=('mariadb: use local MySQL server'
+'php-fpm: run in fastCGI process manager'
+'uwsgi: run as local application container')
 backup=('etc/webapps/cacti/.htaccess'
 'etc/webapps/cacti/config.php')
 source=("https://www.${pkgname}.net/downloads/${pkgname}-${pkgver}.tar.gz;
-'tmpfiles.conf')
-sha512sums=('4a41aff20f06ad56f4723e52084d1a09e3b3eb017e8f1c957f700e4e2f9b12e8f0e599cb56611241c6fcc59bbd6bf957e948631f3beca72e2a7fdadacc473c65'
-
'6d25f182141ca7d13388f7241eb27d783ea99b991c0b147382f8ec9eeeb521303531f8ad9dd7c968cb36b7bb657cb517b8c7f46fd1d777e1b10923d76e4efbd6')
+"${pkgname}.uwsgi"
+"${pkgname}.sysusers"
+"${pkgname}.tmpfiles")
+install="${pkgname}.install"
+sha512sums=('b3b296a59eb5ba2c83ddc4fb7c44f121808a5444daa9d87cf4be5364d80ed91034b0ea1a68e117a555e87a5ae574e8de890ddbc16fe543b4c4888ecb259efbe5'
+
'a87241b12226fcad9e161d0f4cd344161015b5fa8e2f1f3af4431d22bd87aad8a4f9553226baed98d48376819e75266a50fd796b1c884b4e597ccf38a5e4de01'
+
'847e2b791de44d0790a2fdb81c77c8af9a66da9d44500f3f8a8d1c0f406d3a20082cc8fef1c6afe4de93ad989d35c79c9809abe14693a9ac6ea74d4696e3b6c1'
+
'e833e411f74e3c32589ba83cb1b2f28ca9b35931626480ab7daa63420d47ecfc3061e6703323646b69e1d98536b6f3afdd36faa483fb13aac9b818af0c6e')
 
 prepare() {
+  # adding default .htaccess
+  echo "Require all denied" > "${pkgname}-htaccess"
   cd "${pkgname}-${pkgver}"
+  # setting correct install path for spine
+  sed -e 's|/usr/local/spine/bin/spine|/usr/bin/spine|g' \
+  -i install/functions.php
+  # setting correct path for dejavu font
+  sed -e 's|/usr/share/fonts/dejavu/|/usr/share/fonts/TTF/|g' -i lib/rrd.php
   # remove unneeded executable bits
   find . -executable -type f -and -not -path "*scripts*" -exec chmod -c 644 {} 
\;
 }
@@ -25,38 +40,122 @@
 
 package() {
   cd "${pkgname}-${pkgver}"
-  install -vDm 644 {CHANGELOG,README.md} -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  rm -v {CHANGELOG,LICENSE,README.md}
-  # create directories
-  install -vdm 0755 "${pkgdir}/usr/share/webapps/${pkgname}" \
-"${pkgdir}/etc/webapps/${pkgname}" \
-"${pkgdir}/var/log/" "${pkgdir}/var/lib/${pkgname}/"
-
-  # move sources
-  cp -av "../${pkgname}-${pkgver}"/* \
-"${pkgdir}/usr/share/webapps/${pkgname}"
-
-  # move and symlink configuration
-  echo "Require all denied" >> "${pkgdir}/etc/webapps/${pkgname}/.htaccess"
-  mv "${pkgdir}/usr/share/webapps/${pkgname}/include/config.php" \
-"${pkgdir}/etc/webapps/${pkgname}"
+  # webapp
+  install -vDm 644 include/config.php -t "${pkgdir}/etc/webapps/${pkgname}"
+  rm -v include/config.php
+  install -vDm 644 *.{php,sql} -t "${pkgdir}/usr/share/webapps/${pkgname}"
+  install -vDm 644 cli/{*.php,.htaccess} \
+-t "${pkgdir}/usr/share/webapps/${pkgname}/cli"
+  install -vDm 644 docs/*.{css,html,sql} \
+-t "${pkgdir}/usr/share/webapps/${pkgname}/docs"
+  install -vDm 644 docs/images/*.png \
+-t "${pkgdir}/usr/share/webapps/${pkgname}/docs/images"
+  install -vDm 644 formats/*.{format,php} \
+-t "${pkgdir}/usr/share/webapps/${pkgname}/formats"
+  install -vDm 644 images/*.{gif,ico,png,svg} \
+-t "${pkgdir}/usr/share/webapps/${pkgname}/images"
+  install -vDm 644 include/{*.{php,js},cacti_version} \
+-t "${pkgdir}/usr/share/webapps/${pkgname}/include"
+  install -vDm 644 include/content/{*.{html,php},README} \
+-t "${pkgdir}/usr/share/webapps/${pkgname}/include/content"
+  install -vDm 644 include/fa/index.php \
+-t "${pkgdir}/usr/share/webapps/${pkgname}/include/fa"
+  install -vDm 644 

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

2019-06-10 Thread Bartłomiej Piotrowski via arch-commits
Date: Monday, June 10, 2019 @ 19:47:12
  Author: bpiotrowski
Revision: 355595

1:1.8.3-1

Modified:
  iptables/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 19:36:59 UTC (rev 355594)
+++ PKGBUILD2019-06-10 19:47:12 UTC (rev 355595)
@@ -3,7 +3,7 @@
 
 pkgbase=iptables
 pkgname=(iptables iptables-nft)
-pkgver=1.8.2
+pkgver=1.8.3
 pkgrel=1
 epoch=1
 pkgdesc='Linux kernel packet control tool'
@@ -16,7 +16,7 @@
 
source=(https://www.netfilter.org/projects/iptables/files/$pkgbase-$pkgver.tar.bz2{,.sig}
 empty.rules simple_firewall.rules 
empty-{filter,mangle,nat,raw,security}.rules
 {arp,eb,ip,ip6}tables.service iptables-{legacy,nft}-flush)
-sha1sums=('215c4ef4c6cd29ef0dd265b4fa5ec51a4f930c92'
+sha1sums=('6df99e90cb4d59032ab2050ebb426fe065249bd3'
   'SKIP'
   '83b3363878e3660ce23b2ad325b53cbd6c796ecf'
   'f085a71f467e4d7cb2cf094d9369b0bcc4bab6ec'


[arch-commits] Commit in iptables/repos (15 files)

2019-06-10 Thread Bartłomiej Piotrowski via arch-commits
Date: Monday, June 10, 2019 @ 19:47:24
  Author: bpiotrowski
Revision: 355596

archrelease: copy trunk to staging-x86_64

Added:
  iptables/repos/staging-x86_64/
  iptables/repos/staging-x86_64/PKGBUILD
(from rev 355595, iptables/trunk/PKGBUILD)
  iptables/repos/staging-x86_64/arptables.service
(from rev 355595, iptables/trunk/arptables.service)
  iptables/repos/staging-x86_64/ebtables.service
(from rev 355595, iptables/trunk/ebtables.service)
  iptables/repos/staging-x86_64/empty-filter.rules
(from rev 355595, iptables/trunk/empty-filter.rules)
  iptables/repos/staging-x86_64/empty-mangle.rules
(from rev 355595, iptables/trunk/empty-mangle.rules)
  iptables/repos/staging-x86_64/empty-nat.rules
(from rev 355595, iptables/trunk/empty-nat.rules)
  iptables/repos/staging-x86_64/empty-raw.rules
(from rev 355595, iptables/trunk/empty-raw.rules)
  iptables/repos/staging-x86_64/empty-security.rules
(from rev 355595, iptables/trunk/empty-security.rules)
  iptables/repos/staging-x86_64/empty.rules
(from rev 355595, iptables/trunk/empty.rules)
  iptables/repos/staging-x86_64/ip6tables.service
(from rev 355595, iptables/trunk/ip6tables.service)
  iptables/repos/staging-x86_64/iptables-legacy-flush
(from rev 355595, iptables/trunk/iptables-legacy-flush)
  iptables/repos/staging-x86_64/iptables-nft-flush
(from rev 355595, iptables/trunk/iptables-nft-flush)
  iptables/repos/staging-x86_64/iptables.service
(from rev 355595, iptables/trunk/iptables.service)
  iptables/repos/staging-x86_64/simple_firewall.rules
(from rev 355595, iptables/trunk/simple_firewall.rules)

---+
 PKGBUILD  |   97 
 arptables.service |   14 ++
 ebtables.service  |   14 ++
 empty-filter.rules|6 ++
 empty-mangle.rules|8 +++
 empty-nat.rules   |7 +++
 empty-raw.rules   |5 ++
 empty-security.rules  |6 ++
 empty.rules   |6 ++
 ip6tables.service |   15 +++
 iptables-legacy-flush |   18 
 iptables-nft-flush|   18 
 iptables.service  |   14 ++
 simple_firewall.rules |   11 +
 14 files changed, 239 insertions(+)

Copied: iptables/repos/staging-x86_64/PKGBUILD (from rev 355595, 
iptables/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-06-10 19:47:24 UTC (rev 355596)
@@ -0,0 +1,97 @@
+# Maintainer: Ronald van Haren 
+# Contributor: Thomas Baechler 
+
+pkgbase=iptables
+pkgname=(iptables iptables-nft)
+pkgver=1.8.3
+pkgrel=1
+epoch=1
+pkgdesc='Linux kernel packet control tool'
+arch=(x86_64)
+license=(GPL2)
+url='https://www.netfilter.org/projects/iptables/index.html'
+depends=(libnftnl libpcap libnfnetlink libnetfilter_conntrack bash)
+makedepends=(linux-api-headers)
+backup=(etc/ethertypes etc/iptables/{ip,ip6}tables.rules)
+source=(https://www.netfilter.org/projects/iptables/files/$pkgbase-$pkgver.tar.bz2{,.sig}
+empty.rules simple_firewall.rules 
empty-{filter,mangle,nat,raw,security}.rules
+{arp,eb,ip,ip6}tables.service iptables-{legacy,nft}-flush)
+sha1sums=('6df99e90cb4d59032ab2050ebb426fe065249bd3'
+  'SKIP'
+  '83b3363878e3660ce23b2ad325b53cbd6c796ecf'
+  'f085a71f467e4d7cb2cf094d9369b0bcc4bab6ec'
+  'd9f9f06b46b4187648e860afa0552335aafe3ce4'
+  'c45b738b5ec4cfb11611b984c21a83b91a2d58f3'
+  '1694d79b3e6e9d9d543f6a6e75fed06066c9a6c6'
+  '7db53bb882f62f6c677cc8559cff83d8bae2ef73'
+  'ebbd1424a1564fd45f455a81c61ce348f0a14c2e'
+  '95b0ee26f03132a948fea9f2136b2e2e6a4b40fe'
+  'b668ba50d55030c68431a95756bc1f291d74b2b2'
+  '8d66d21fa4cbfe2a80478301af94ba54f65e4ea0'
+  '9cec592787e32451f58fa608ea057870e07aa704'
+  'd10af7780d1634778d898c709e2d950aa1561856'
+  '15c1684f3e671f4d0ede639a7c9c08e1a841511c')
+validpgpkeys=('C09DB2063F1D7034BA6152ADAB4655A126D292E4') # Netfilter Core Team
+
+prepare() {
+  mkdir build
+  cd $pkgbase-$pkgver
+
+  # use system one
+  rm include/linux/types.h
+}
+
+build() {
+  cd build
+  ../$pkgbase-$pkgver/configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--libexecdir=/usr/lib \
+--enable-bpf-compiler \
+--enable-devel \
+--enable-libipq \
+--enable-shared
+  sed -e 's/ -shared / -Wl,-O1,--as-needed\0/g' -i libtool
+  make
+}
+
+package_iptables() {
+  pkgdesc+=' (using legacy interface)'
+  _package legacy
+}
+
+package_iptables-nft() {
+  pkgdesc+=' (using nft interface)'
+  depends+=(nftables)
+  provides=(iptables arptables ebtables)
+  conflicts=(iptables arptables ebtables)
+  backup+=(etc/{arp,eb}tables.conf)
+
+  _package nft
+
+  install -Dt "$pkgdir/usr/lib/systemd/system" -m644 {arp,eb}tables.service
+  touch "$pkgdir"/etc/{arp,eb}tables.conf
+}
+
+_package() {
+  

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

2019-06-10 Thread Bartłomiej Piotrowski via arch-commits
Date: Monday, June 10, 2019 @ 19:36:54
  Author: bpiotrowski
Revision: 355593

1.1.3-1

Modified:
  libnftnl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 18:11:27 UTC (rev 355592)
+++ PKGBUILD2019-06-10 19:36:54 UTC (rev 355593)
@@ -1,7 +1,7 @@
 # Maintainer: Sébastien Luttringer
 
 pkgname=libnftnl
-pkgver=1.1.1
+pkgver=1.1.3
 pkgrel=1
 pkgdesc='Netfilter library providing interface to the nf_tables subsystem'
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('libmnl')
 validpgpkeys=('C09DB2063F1D7034BA6152ADAB4655A126D292E4') # Netfilter Core Team
 
source=("https://netfilter.org/projects/libnftnl/files/libnftnl-$pkgver.tar.bz2"{,.sig})
-sha1sums=('d2be642a54e0f105cb5564471ae4aaaed8b97ca6'
+sha1sums=('d000e7d07b36fae73ddc3a1aa09e6d7918924eab'
   'SKIP')
 
 build() {


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

2019-06-10 Thread Bartłomiej Piotrowski via arch-commits
Date: Monday, June 10, 2019 @ 19:36:59
  Author: bpiotrowski
Revision: 355594

archrelease: copy trunk to staging-x86_64

Added:
  libnftnl/repos/staging-x86_64/
  libnftnl/repos/staging-x86_64/PKGBUILD
(from rev 355593, libnftnl/trunk/PKGBUILD)

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

Copied: libnftnl/repos/staging-x86_64/PKGBUILD (from rev 355593, 
libnftnl/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-06-10 19:36:59 UTC (rev 355594)
@@ -0,0 +1,32 @@
+# Maintainer: Sébastien Luttringer
+
+pkgname=libnftnl
+pkgver=1.1.3
+pkgrel=1
+pkgdesc='Netfilter library providing interface to the nf_tables subsystem'
+arch=('x86_64')
+url='https://netfilter.org/projects/libnftnl/'
+license=('GPL2')
+depends=('libmnl')
+validpgpkeys=('C09DB2063F1D7034BA6152ADAB4655A126D292E4') # Netfilter Core Team
+source=("https://netfilter.org/projects/libnftnl/files/libnftnl-$pkgver.tar.bz2"{,.sig})
+sha1sums=('d000e7d07b36fae73ddc3a1aa09e6d7918924eab'
+  'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-06-10 Thread Jan Steffens via arch-commits
Date: Monday, June 10, 2019 @ 18:11:27
  Author: heftig
Revision: 355592

67.0.2-1

Modified:
  firefox-i18n/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 18:10:42 UTC (rev 355591)
+++ PKGBUILD2019-06-10 18:11:27 UTC (rev 355592)
@@ -5,7 +5,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgbase=firefox-i18n
-pkgver=67.0.1
+pkgver=67.0.2
 pkgrel=1
 pkgdesc="Language pack for Firefox"
 arch=(any)
@@ -139,102 +139,102 @@
 
"$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
 }
 
-sha256sums=('8948b5bc3749cb16505f5be423e08a2193f97367ef8eec3a6d73fa5e16518664'
-'c5da7f10158619b9a8f6212b215f2d9b9b01a0acebca90c487f9dac9379a48cc'
-'4ddda9263913981d43d65fb09684db3160e627e0d8db164d65fca5e3860b654a'
-'ece74e90824251c50ddc6d9a4041cce198e7ad38552ba4681f1f3d645f68c1bc'
-'5a2bfe54ba0538c67a48c986af1414426e043b362e9e25082306d3a5b9c42566'
-'b8f4603ef99164f143eec439093e3def9c29de3ceabcb1d2301dbd558ec38c61'
-'6c9305d900b3b68eacf7d0302484a6f75ab68055673eab77759f67796f00ce3a'
-'115c0ac30e9eb3d3e8461e3de8e0ace1e28c5a6b3b872ed5257dc4d1b2ad0ada'
-'967218c9599bccee979cb54f2a550a7efc97fcb31c1112d5db7dcfa784a591cd'
-'32a2210fb9823eec5cefd190874798ec4ca5f177b28c2381cfcf42867cd0de43'
-'e9fc7a9e679b00c106e7a2816e379afcf59f8eb43f4a189b55fd6ead3f8903ca'
-'a0ab68bc5f5099bcdb972262e4ba8b76be1f99cd2595df9179e03ffd66c8fc8b'
-'5bda05ab737524b7236b72085bd7e8d1121987fbdc600fe0df83a6c4b10005ed'
-'d831856e9535a1c2e47c40714e39ecb39a8805ae0401617c9c433637a7d2954b'
-'bdf36ea892f81c65901391a36be5137d4b770fd0a841ae8a7c44eaddd2307d33'
-'16a3e4586c2eab446eac2b3a0ce6fac4c9c3c8504a83274a62994001063bdb93'
-'12c29e1e66683e9d70d80ec0f78a5b5d2a878541d0f820fd06f7041efe73285c'
-'13883b08ffb679ed46709d2d5b10e0a1a90544bffeb1e1fbdfabdaeb654d9338'
-'3f179c3d21ba247caabbb0765f921f52ca253c0b4fe85ef51b84747813a6ccef'
-'657e11faa9dd2873ea2e09f269a3cbd43a69d9439a9324314e7b952cea95927b'
-'cf0f32cd8f76c267f4c72f8c1f13f8b87a6bfeda1af34003e3a6e792268afb53'
-'aeaa30cdb13ee5e2f24e6d7d9932263a793c3866d68b6b4df4368d8c91e5ee7d'
-'023b360ee958af7c76bf16929baf6ffbf8dcde1a8e25ddfa81417b28b7b54648'
-'f8038d1f6e73d05863794898cb87cd81544b8204a50f421b05ba868f2989f374'
-'af5e482090a0ce81cb0d5342a0bd9027f8a166c09da8c5b8bae025bda32f0446'
-'aa73dff723fea84b78fbd18453cb492116ad4471de3ae15c1678030804a2f51f'
-'f2ff03259d3f7ce34967120007f9d9686336eb79a814e03206502e1249294846'
-'e9a16c6eee2a738cb2afddab8c7facdc5534aa675db2c4ae8779fdfdd96e9cbd'
-'5a40befde0d6b4fce9aa0ae26b63b940b7018c66326a0fa492e1b84d1975fc6e'
-'c9fe275847c3695e495efa77095b43b9cad38bf86545af8a3acc25b9bac9a3dd'
-'091f738b6900764fbab2cb28a9febc5c7fc320a9ab834546a678405bdb036a6f'
-'e111308f39402bda964294023a5666f97b2027ab1f4b3e0419f5965bb6971351'
-'1144254f869be77b8ce3906c3cb2246447fb9d61a5d7fb5fa42832dc56c0d32c'
-'359f14dbaec8994c2af2ff0152fe55f66670b08e0b795a3c38cfb59f2fc54124'
-'fa105030cc81e8fd7320d2cc284200114caaad160715f084bb6a92a1d4986414'
-'c8d8eee7917685abc8dc4afb43defc30ebc8dd8620b0efe58ea06969869d05ee'
-'c28e0b1359aea6a496ae32cb5a1e0734aa9be9776337286fa50ed942c46603b4'
-'7cf22ff237ae3389d9748883e801f520801a0fe27ddaf695b2ca8ba0bb0d0b91'
-'5472b9ed9ca64381b2b72ff816a93eb9c4e4a0040eeb18e6cba394241a88aabf'
-'87bf0650109989fa63d4af784b412e11af2fe21073cdf0063529a08604200d52'
-'ed31d7fef2541964d81221a156f212c740bfd649fce68871f4cc771594e59bbc'
-'824132feb064800d8bb01a9b542b55cfa154a4a5c72359f8c2aa9798d09fe66d'
-'d7aa4477c6e5926872bc0a30a4dbb78117d95174a3187ac01e98f834d308e03b'
-'63536a4530531b1ac3c4402931ba9236c871bdc219753fdcdbdcee1773c4215d'
-'58b56a4fe74549a1ffb4edb415a71eaabf1bb503636afe63e99b7eea8a6043e5'
-'6f91d424437da84936aa8f8f279eb4bcaa0d3085d174060faaa257d3283682c0'
-'a5934837f90e95436535f9d253b7b036825901cbdea66265c8725101dd4e3959'
-'6fd0d0ec55783f9f4c683d1b5540f6528d0f90776f68c9728195011f67595797'
-'3f3be6a83001b6a00b359cfa0d8f878826b35a871391dee6cbde8f0db23d2680'
-'3df0b210a80c6d0dc5eb29bd27ff03e8f64c58447ca7ab700d38c0fbd1a6253a'
-'f2e0014d26c114ca039f563758d91cbc9bd6e57e91e2f5382695003021d3'
-'c213da9f406d8e704c924bc3ee09d9a8f5242ca51a64c796ff3acbc7314540a9'
-'4c6e1e6f0e268cb101a3bcfa80e46117ed961f80db3eb41ede3cf362dc488ab9'
-  

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

2019-06-10 Thread Jan Steffens via arch-commits
Date: Monday, June 10, 2019 @ 18:10:42
  Author: heftig
Revision: 355591

archrelease: copy trunk to testing-x86_64

Added:
  glib2/repos/testing-x86_64/
  glib2/repos/testing-x86_64/PKGBUILD
(from rev 355590, glib2/trunk/PKGBUILD)
  glib2/repos/testing-x86_64/gio-querymodules.hook
(from rev 355590, glib2/trunk/gio-querymodules.hook)
  glib2/repos/testing-x86_64/glib-compile-schemas.hook
(from rev 355590, glib2/trunk/glib-compile-schemas.hook)
  glib2/repos/testing-x86_64/noisy-glib-compile-schemas.diff
(from rev 355590, glib2/trunk/noisy-glib-compile-schemas.diff)

-+
 PKGBUILD|   75 ++
 gio-querymodules.hook   |   11 +
 glib-compile-schemas.hook   |   12 ++
 noisy-glib-compile-schemas.diff |   24 
 4 files changed, 122 insertions(+)

Copied: glib2/repos/testing-x86_64/PKGBUILD (from rev 355590, 
glib2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-06-10 18:10:42 UTC (rev 355591)
@@ -0,0 +1,75 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+
+pkgbase=glib2
+pkgname=(glib2 glib2-docs)
+pkgver=2.60.4
+pkgrel=1
+pkgdesc="Low level core library"
+url="https://wiki.gnome.org/Projects/GLib;
+license=(LGPL2.1)
+arch=(x86_64)
+depends=(pcre libffi libutil-linux zlib)
+makedepends=(gettext gtk-doc shared-mime-info python libelf git util-linux 
meson dbus)
+checkdepends=(desktop-file-utils)
+optdepends=('python: gdbus-codegen, glib-genmarshal, glib-mkenums, 
gtester-report'
+'libelf: gresource inspection tool')
+options=(!emptydirs)
+_commit=6672d0cbed1f2bc87ca27ab69290900ff838224e  # tags/2.60.4^0
+source=("git+https://gitlab.gnome.org/GNOME/glib.git#commit=$_commit;
+noisy-glib-compile-schemas.diff
+glib-compile-schemas.hook gio-querymodules.hook)
+sha256sums=('SKIP'
+'81a4df0b638730cffb7fa263c04841f7ca6b9c9578ee5045db6f30ff0c3fc531'
+'e1123a5d85d2445faac33f6dae1085fdd620d83279a4e130a83fe38db52b62b3'
+'5ba204a2686304b1454d401a39a9d27d09dd25e4529664e3fd565be3d439f8b6')
+
+pkgver() {
+  cd glib
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd glib
+
+  # Suppress noise from glib-compile-schemas.hook
+  patch -Np1 -i ../noisy-glib-compile-schemas.diff
+}
+
+build() {
+  CFLAGS+=" -DG_DISABLE_CAST_CHECKS"
+  arch-meson glib build \
+-D selinux=disabled \
+-D man=true \
+-D gtk_doc=true
+  ninja -C build
+}
+
+check() {
+  meson test -C build --no-suite flaky --print-errorlogs
+}
+
+package_glib2() {
+  DESTDIR="$pkgdir" meson install -C build
+  install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook
+
+  python -m compileall -d /usr/share/glib-2.0/codegen 
"$pkgdir/usr/share/glib-2.0/codegen"
+  python -O -m compileall -d /usr/share/glib-2.0/codegen 
"$pkgdir/usr/share/glib-2.0/codegen"
+
+  # Split docs
+  mv "$pkgdir/usr/share/gtk-doc" "$srcdir"
+}
+
+package_glib2-docs() {
+  pkgdesc="Documentation for GLib"
+  depends=()
+  optdepends=()
+  license+=(custom)
+
+  mkdir -p "$pkgdir/usr/share"
+  mv gtk-doc "$pkgdir/usr/share"
+
+  install -Dt "$pkgdir/usr/share/licenses/glib2-docs" -m644 
glib/docs/reference/COPYING
+}
+
+# vim:set sw=2 et:

Copied: glib2/repos/testing-x86_64/gio-querymodules.hook (from rev 355590, 
glib2/trunk/gio-querymodules.hook)
===
--- testing-x86_64/gio-querymodules.hook(rev 0)
+++ testing-x86_64/gio-querymodules.hook2019-06-10 18:10:42 UTC (rev 
355591)
@@ -0,0 +1,11 @@
+[Trigger]
+Type = File
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = usr/lib/gio/modules/*.so
+
+[Action]
+Description = Updating GIO module cache...
+When = PostTransaction
+Exec = /usr/bin/gio-querymodules /usr/lib/gio/modules

Copied: glib2/repos/testing-x86_64/glib-compile-schemas.hook (from rev 355590, 
glib2/trunk/glib-compile-schemas.hook)
===
--- testing-x86_64/glib-compile-schemas.hook(rev 0)
+++ testing-x86_64/glib-compile-schemas.hook2019-06-10 18:10:42 UTC (rev 
355591)
@@ -0,0 +1,12 @@
+[Trigger]
+Type = File
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = usr/share/glib-2.0/schemas/*.gschema.xml
+Target = usr/share/glib-2.0/schemas/*.gschema.override
+
+[Action]
+Description = Compiling GSettings XML schema files...
+When = PostTransaction
+Exec = /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas

Copied: glib2/repos/testing-x86_64/noisy-glib-compile-schemas.diff (from rev 
355590, glib2/trunk/noisy-glib-compile-schemas.diff)
===
--- testing-x86_64/noisy-glib-compile-schemas.diff 

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

2019-06-10 Thread Jan Steffens via arch-commits
Date: Monday, June 10, 2019 @ 18:10:41
  Author: heftig
Revision: 479777

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-glib2/repos/multilib-testing-x86_64/
  lib32-glib2/repos/multilib-testing-x86_64/PKGBUILD
(from rev 479776, lib32-glib2/trunk/PKGBUILD)
  lib32-glib2/repos/multilib-testing-x86_64/gio-querymodules-32.hook
(from rev 479776, lib32-glib2/trunk/gio-querymodules-32.hook)
  lib32-glib2/repos/multilib-testing-x86_64/multilib.diff
(from rev 479776, lib32-glib2/trunk/multilib.diff)

--+
 PKGBUILD |   60 +
 gio-querymodules-32.hook |   11 
 multilib.diff|   25 ++
 3 files changed, 96 insertions(+)

Copied: lib32-glib2/repos/multilib-testing-x86_64/PKGBUILD (from rev 479776, 
lib32-glib2/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2019-06-10 18:10:41 UTC (rev 479777)
@@ -0,0 +1,60 @@
+# Contributor: Ionut Biru 
+# Contributor: Pierre Schmitz 
+# Contributor: Mikko Seppälä 
+
+pkgname=lib32-glib2
+pkgver=2.60.4
+pkgrel=1
+pkgdesc="Low level core library (32-bit)"
+url="https://wiki.gnome.org/Projects/GLib;
+license=(LGPL2.1)
+arch=(x86_64)
+depends=(lib32-pcre lib32-libffi lib32-util-linux lib32-zlib glib2)
+makedepends=(gettext gtk-doc shared-mime-info python lib32-libelf git 
util-linux meson lib32-dbus)
+checkdepends=(desktop-file-utils lib32-glib2)
+options=(!emptydirs)
+_commit=6672d0cbed1f2bc87ca27ab69290900ff838224e  # tags/2.60.4^0
+source=("git+https://gitlab.gnome.org/GNOME/glib.git#commit=$_commit;
+multilib.diff
+gio-querymodules-32.hook)
+sha256sums=('SKIP'
+'a0292252363f32324d03486fee0b84a79781bdcb51ad913a2bf37530d74c3b24'
+'73b6791b58180e2a02fe908938e6c547ee1b263f8c387262f9a8c4105ffa999a')
+
+pkgver() {
+  cd glib
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd glib
+  patch -Np1 -i ../multilib.diff
+}
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  CFLAGS+=" -DG_DISABLE_CAST_CHECKS"
+  arch-meson glib build \
+-D selinux=disabled \
+--libdir=/usr/lib32
+  ninja -C build
+}
+
+check() {
+  meson test -C build --no-suite flaky --no-suite slow --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+
+  rm -r "$pkgdir"/usr/{share,include}
+  find "$pkgdir/usr/bin" -type f -not -name gio-querymodules -printf 'Removing 
%P\n' -delete
+  mv "$pkgdir"/usr/bin/gio-querymodules{,-32}
+
+  install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook
+}
+
+# vim:set sw=2 et:

Copied: lib32-glib2/repos/multilib-testing-x86_64/gio-querymodules-32.hook 
(from rev 479776, lib32-glib2/trunk/gio-querymodules-32.hook)
===
--- multilib-testing-x86_64/gio-querymodules-32.hook
(rev 0)
+++ multilib-testing-x86_64/gio-querymodules-32.hook2019-06-10 18:10:41 UTC 
(rev 479777)
@@ -0,0 +1,11 @@
+[Trigger]
+Type = File
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = usr/lib32/gio/modules/*.so
+
+[Action]
+Description = Updating 32-bit GIO module cache...
+When = PostTransaction
+Exec = /usr/bin/gio-querymodules-32 /usr/lib32/gio/modules

Copied: lib32-glib2/repos/multilib-testing-x86_64/multilib.diff (from rev 
479776, lib32-glib2/trunk/multilib.diff)
===
--- multilib-testing-x86_64/multilib.diff   (rev 0)
+++ multilib-testing-x86_64/multilib.diff   2019-06-10 18:10:41 UTC (rev 
479777)
@@ -0,0 +1,25 @@
+diff --git i/gio/tests/meson.build w/gio/tests/meson.build
+index 65f43e267..3bd66bf60 100644
+--- i/gio/tests/meson.build
 w/gio/tests/meson.build
+@@ -598,6 +598,7 @@ if not meson.is_cross_build() or meson.has_exe_wrapper()
+  '-r',
+  '-b','binary',
+  '@INPUT@',
++ '--oformat', 'elf32-i386',
+  '-o','@OUTPUT@'])
+ 
+ # Rename symbol to match the one in the C file
+diff --git i/glib/tests/meson.build w/glib/tests/meson.build
+index d54fc41fa..ad5511ca5 100644
+--- i/glib/tests/meson.build
 w/glib/tests/meson.build
+@@ -92,7 +92,7 @@ glib_tests = {
+   'test-printf' : {},
+   'thread' : {},
+   'timeout' : {},
+-  'timer' : {},
++  'timer' : {'suite': ['flaky']},
+   'tree' : {},
+   'utf8-performance' : {},
+   'utf8-pointer' : {},


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

2019-06-10 Thread Jan Steffens via arch-commits
Date: Monday, June 10, 2019 @ 18:10:28
  Author: heftig
Revision: 479776

2.60.4-1

Modified:
  lib32-glib2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 18:03:28 UTC (rev 479775)
+++ PKGBUILD2019-06-10 18:10:28 UTC (rev 479776)
@@ -3,8 +3,8 @@
 # Contributor: Mikko Seppälä 
 
 pkgname=lib32-glib2
-pkgver=2.60.3
-pkgrel=2
+pkgver=2.60.4
+pkgrel=1
 pkgdesc="Low level core library (32-bit)"
 url="https://wiki.gnome.org/Projects/GLib;
 license=(LGPL2.1)
@@ -13,7 +13,7 @@
 makedepends=(gettext gtk-doc shared-mime-info python lib32-libelf git 
util-linux meson lib32-dbus)
 checkdepends=(desktop-file-utils lib32-glib2)
 options=(!emptydirs)
-_commit=0f6191d02a8e1ca7b08ffe0ccc4def88855baeae  # tags/2.60.3^0
+_commit=6672d0cbed1f2bc87ca27ab69290900ff838224e  # tags/2.60.4^0
 source=("git+https://gitlab.gnome.org/GNOME/glib.git#commit=$_commit;
 multilib.diff
 gio-querymodules-32.hook)


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

2019-06-10 Thread Jan Steffens via arch-commits
Date: Monday, June 10, 2019 @ 18:10:22
  Author: heftig
Revision: 355590

2.60.4-1

Modified:
  glib2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 18:09:31 UTC (rev 355589)
+++ PKGBUILD2019-06-10 18:10:22 UTC (rev 355590)
@@ -3,8 +3,8 @@
 
 pkgbase=glib2
 pkgname=(glib2 glib2-docs)
-pkgver=2.60.3
-pkgrel=2
+pkgver=2.60.4
+pkgrel=1
 pkgdesc="Low level core library"
 url="https://wiki.gnome.org/Projects/GLib;
 license=(LGPL2.1)
@@ -15,7 +15,7 @@
 optdepends=('python: gdbus-codegen, glib-genmarshal, glib-mkenums, 
gtester-report'
 'libelf: gresource inspection tool')
 options=(!emptydirs)
-_commit=0f6191d02a8e1ca7b08ffe0ccc4def88855baeae  # tags/2.60.3^0
+_commit=6672d0cbed1f2bc87ca27ab69290900ff838224e  # tags/2.60.4^0
 source=("git+https://gitlab.gnome.org/GNOME/glib.git#commit=$_commit;
 noisy-glib-compile-schemas.diff
 glib-compile-schemas.hook gio-querymodules.hook)


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

2019-06-10 Thread Bartłomiej Piotrowski via arch-commits
Date: Monday, June 10, 2019 @ 18:09:18
  Author: bpiotrowski
Revision: 355588

4.2.3-1

Modified:
  zabbix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 18:05:35 UTC (rev 355587)
+++ PKGBUILD2019-06-10 18:09:18 UTC (rev 355588)
@@ -3,7 +3,7 @@
 
 pkgbase=zabbix
 pkgname=(zabbix-server zabbix-agent zabbix-proxy zabbix-frontend-php)
-pkgver=4.2.2
+pkgver=4.2.3
 pkgrel=1
 arch=(x86_64)
 url='https://www.zabbix.com/'
@@ -14,7 +14,7 @@
 zabbix-server{-mysql,-pgsql}.service zabbix-server.{sysusers,tmpfiles}
 zabbix-proxy{-sqlite,-mysql,-pgsql}.service 
zabbix-proxy.{sysusers,tmpfiles})
 
-sha512sums=('d4734f50378685a749b76eb0f1bb232949a1ab24eb3e0b28717d5f82048d3558d7b884605be9b2977f709571939f058f5047551c45af2093ba0c33c5a5d46837'
+sha512sums=('2e7d7372d5ce84798743d3c10fea0230aac470b0d9936a722687eefbe818b51e16f5dc64040b8b1b1189f64e8785ceca108914534efecd152473d213b15f7e07'
 
'8c1fa2676bc0ef91bc39ec5f97b4d3ba5c365d063420455a3785121a54e120bc5afeacde42a48f4509c115f940dcc3b6c2f43044a7fbfb421182fc93b22a2444'
 
'3ab3ac1acc7e35c8896157aef601ebc30815237ac5252cbd0c1ecb26eeaf9eccf5c49938ae8c85bb79a6f95f607f082f6b80ed660829599ec03aa626cca6d3dc'
 
'ca6b4779de23829dfdd80ee21e924fbe4e2754f4e693bed4b1a2aa846cd87d150e399b1169d7fe58d30c50ed837c1b8254e580de420267d0a1834d6dc409c43d'


[arch-commits] Commit in zabbix/repos/extra-x86_64 (28 files)

2019-06-10 Thread Bartłomiej Piotrowski via arch-commits
Date: Monday, June 10, 2019 @ 18:09:31
  Author: bpiotrowski
Revision: 355589

archrelease: copy trunk to extra-x86_64

Added:
  zabbix/repos/extra-x86_64/PKGBUILD
(from rev 355588, zabbix/trunk/PKGBUILD)
  zabbix/repos/extra-x86_64/zabbix-agent.service
(from rev 355588, zabbix/trunk/zabbix-agent.service)
  zabbix/repos/extra-x86_64/zabbix-agent.sysusers
(from rev 355588, zabbix/trunk/zabbix-agent.sysusers)
  zabbix/repos/extra-x86_64/zabbix-agent.tmpfiles
(from rev 355588, zabbix/trunk/zabbix-agent.tmpfiles)
  zabbix/repos/extra-x86_64/zabbix-proxy-mysql.service
(from rev 355588, zabbix/trunk/zabbix-proxy-mysql.service)
  zabbix/repos/extra-x86_64/zabbix-proxy-pgsql.service
(from rev 355588, zabbix/trunk/zabbix-proxy-pgsql.service)
  zabbix/repos/extra-x86_64/zabbix-proxy-sqlite.service
(from rev 355588, zabbix/trunk/zabbix-proxy-sqlite.service)
  zabbix/repos/extra-x86_64/zabbix-proxy.sysusers
(from rev 355588, zabbix/trunk/zabbix-proxy.sysusers)
  zabbix/repos/extra-x86_64/zabbix-proxy.tmpfiles
(from rev 355588, zabbix/trunk/zabbix-proxy.tmpfiles)
  zabbix/repos/extra-x86_64/zabbix-server-mysql.service
(from rev 355588, zabbix/trunk/zabbix-server-mysql.service)
  zabbix/repos/extra-x86_64/zabbix-server-pgsql.service
(from rev 355588, zabbix/trunk/zabbix-server-pgsql.service)
  zabbix/repos/extra-x86_64/zabbix-server.install
(from rev 355588, zabbix/trunk/zabbix-server.install)
  zabbix/repos/extra-x86_64/zabbix-server.sysusers
(from rev 355588, zabbix/trunk/zabbix-server.sysusers)
  zabbix/repos/extra-x86_64/zabbix-server.tmpfiles
(from rev 355588, zabbix/trunk/zabbix-server.tmpfiles)
Deleted:
  zabbix/repos/extra-x86_64/PKGBUILD
  zabbix/repos/extra-x86_64/zabbix-agent.service
  zabbix/repos/extra-x86_64/zabbix-agent.sysusers
  zabbix/repos/extra-x86_64/zabbix-agent.tmpfiles
  zabbix/repos/extra-x86_64/zabbix-proxy-mysql.service
  zabbix/repos/extra-x86_64/zabbix-proxy-pgsql.service
  zabbix/repos/extra-x86_64/zabbix-proxy-sqlite.service
  zabbix/repos/extra-x86_64/zabbix-proxy.sysusers
  zabbix/repos/extra-x86_64/zabbix-proxy.tmpfiles
  zabbix/repos/extra-x86_64/zabbix-server-mysql.service
  zabbix/repos/extra-x86_64/zabbix-server-pgsql.service
  zabbix/repos/extra-x86_64/zabbix-server.install
  zabbix/repos/extra-x86_64/zabbix-server.sysusers
  zabbix/repos/extra-x86_64/zabbix-server.tmpfiles

-+
 PKGBUILD|  362 +-
 zabbix-agent.service|   22 +-
 zabbix-agent.sysusers   |2 
 zabbix-agent.tmpfiles   |2 
 zabbix-proxy-mysql.service  |   36 ++--
 zabbix-proxy-pgsql.service  |   36 ++--
 zabbix-proxy-sqlite.service |   36 ++--
 zabbix-proxy.sysusers   |2 
 zabbix-proxy.tmpfiles   |2 
 zabbix-server-mysql.service |   36 ++--
 zabbix-server-pgsql.service |   36 ++--
 zabbix-server.install   |   24 +-
 zabbix-server.sysusers  |2 
 zabbix-server.tmpfiles  |2 
 14 files changed, 300 insertions(+), 300 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 18:09:18 UTC (rev 355588)
+++ PKGBUILD2019-06-10 18:09:31 UTC (rev 355589)
@@ -1,181 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-# Maintainer: Florian Pritz 
-
-pkgbase=zabbix
-pkgname=(zabbix-server zabbix-agent zabbix-proxy zabbix-frontend-php)
-pkgver=4.2.2
-pkgrel=1
-arch=(x86_64)
-url='https://www.zabbix.com/'
-license=(GPL)
-makedepends=(postgresql-libs libxml2 unixodbc net-snmp mariadb-libs libldap 
libevent)
-source=(https://downloads.sourceforge.net/sourceforge/zabbix/zabbix-${pkgver}.tar.gz
-zabbix-agent.{service,sysusers,tmpfiles}
-zabbix-server{-mysql,-pgsql}.service zabbix-server.{sysusers,tmpfiles}
-zabbix-proxy{-sqlite,-mysql,-pgsql}.service 
zabbix-proxy.{sysusers,tmpfiles})
-
-sha512sums=('d4734f50378685a749b76eb0f1bb232949a1ab24eb3e0b28717d5f82048d3558d7b884605be9b2977f709571939f058f5047551c45af2093ba0c33c5a5d46837'
-
'8c1fa2676bc0ef91bc39ec5f97b4d3ba5c365d063420455a3785121a54e120bc5afeacde42a48f4509c115f940dcc3b6c2f43044a7fbfb421182fc93b22a2444'
-
'3ab3ac1acc7e35c8896157aef601ebc30815237ac5252cbd0c1ecb26eeaf9eccf5c49938ae8c85bb79a6f95f607f082f6b80ed660829599ec03aa626cca6d3dc'
-
'ca6b4779de23829dfdd80ee21e924fbe4e2754f4e693bed4b1a2aa846cd87d150e399b1169d7fe58d30c50ed837c1b8254e580de420267d0a1834d6dc409c43d'
-
'b35155a5d151eb7258bca62d53e7099a05605e58adac9d1510e12c2219abc22f931e92ea5d36bf86900e30982e893e429235d983a7823610d76c15082c373d1f'
-
'ac968d9954e5d9523eb7a9b8dcbcef40d4b47c1db3b2ff86d5fbc3f1871fcd03aff14f5b0cfeeeb494fdeb2d95e2e32b8622297c714a90d22c68ab3b3b914475'
-
'4254d3b13ff0d19a8e207f709c10ea59dbb6d4f333d862b1611a0fa4ced199e9a32313e88d8abadc129c1e4001b182c0545bcc84117d218116a8c524de88850e'
-

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

2019-06-10 Thread Bartłomiej Piotrowski via arch-commits
Date: Monday, June 10, 2019 @ 18:05:35
  Author: bpiotrowski
Revision: 355587

archrelease: copy trunk to extra-x86_64

Added:
  mercurial/repos/extra-x86_64/PKGBUILD
(from rev 355586, mercurial/trunk/PKGBUILD)
  mercurial/repos/extra-x86_64/mercurial.profile
(from rev 355586, mercurial/trunk/mercurial.profile)
Deleted:
  mercurial/repos/extra-x86_64/PKGBUILD
  mercurial/repos/extra-x86_64/mercurial.profile

---+
 PKGBUILD  |  126 ++--
 mercurial.profile |2 
 2 files changed, 64 insertions(+), 64 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 18:05:30 UTC (rev 355586)
+++ PKGBUILD2019-06-10 18:05:35 UTC (rev 355587)
@@ -1,63 +0,0 @@
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Giovanni Scafora 
-# Contributor: Douglas Soares de Andrade 
-
-pkgname=mercurial
-pkgver=5.0
-pkgrel=1
-pkgdesc='A scalable distributed SCM tool'
-arch=(x86_64)
-url="https://www.mercurial-scm.org/;
-license=(GPL)
-depends=(python2)
-optdepends=('tk: for the hgk GUI')
-backup=(etc/mercurial/hgrc)
-validpgpkeys=(2BCCE14F5C6725AA2EA8AEB7B9C9DC824AA5BDD5
-  3A8155163D0E20A530FCB78647A67FFAA346AACE)  
-source=(https://www.mercurial-scm.org/release/${pkgname}-${pkgver}.tar.gz{,.asc}
-mercurial.profile)
-sha256sums=('54ec76a0138d9b883873cfb2c651380659cd24aa99d92f8816982c6d0edd712a'
-'SKIP'
-'87427151713e689cd87dc50d50c048e0e58285815e4eb61962b50583532cbde5')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i -e 's#env python#env python2#' mercurial/lsprof.py contrib/hg-ssh
-}
-
-build() {
-  cd $pkgname-$pkgver/contrib/chg
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python2 setup.py install --root="$pkgdir" --optimize=1
-
-  install -d "$pkgdir/usr/share/man/"{man1,man5}
-  install -m644 doc/hg.1 "$pkgdir/usr/share/man/man1"
-  install -m644 doc/{hgrc.5,hgignore.5} "$pkgdir/usr/share/man/man5"
-  install -m644 -D contrib/zsh_completion 
"$pkgdir/usr/share/zsh/site-functions/_hg"
-  install -m644 -D contrib/bash_completion 
"$pkgdir/usr/share/bash-completion/completions/hg"
-
-  make -C contrib/chg DESTDIR="$pkgdir" PREFIX=/usr install
-  install -m755 contrib/hg-ssh "$pkgdir/usr/bin"
-  install -m755 contrib/hgk "$pkgdir/usr/bin"
-
-  install -d "$pkgdir/usr/share/emacs/site-lisp"
-  install -m644 contrib/{mq.el,mercurial.el} 
"$pkgdir/usr/share/emacs/site-lisp"
-
-  install -Dm644 contrib/vim/HGAnnotate.vim \
-"$pkgdir/usr/share/vim/vimfiles/syntax/HGAnnotate.vim"
-
-  # set some variables
-  install -m755 -d "$pkgdir/etc/profile.d"
-  install -m755 "$srcdir/mercurial.profile" 
"$pkgdir/etc/profile.d/mercurial.sh"
-
-  # FS#38825 - Add certs config to package
-  install -m755 -d "$pkgdir/etc/mercurial"
-  cat <<-EOF > "$pkgdir/etc/mercurial/hgrc"
-   [web]
-   cacerts = /etc/ssl/certs/ca-certificates.crt
-   EOF
-}

Copied: mercurial/repos/extra-x86_64/PKGBUILD (from rev 355586, 
mercurial/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 18:05:35 UTC (rev 355587)
@@ -0,0 +1,63 @@
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Giovanni Scafora 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=mercurial
+pkgver=5.0.1
+pkgrel=1
+pkgdesc='A scalable distributed SCM tool'
+arch=(x86_64)
+url="https://www.mercurial-scm.org/;
+license=(GPL)
+depends=(python2)
+optdepends=('tk: for the hgk GUI')
+backup=(etc/mercurial/hgrc)
+validpgpkeys=(2BCCE14F5C6725AA2EA8AEB7B9C9DC824AA5BDD5
+  3A8155163D0E20A530FCB78647A67FFAA346AACE)  
+source=(https://www.mercurial-scm.org/release/${pkgname}-${pkgver}.tar.gz{,.asc}
+mercurial.profile)
+sha256sums=('4c98a8e4cd5595feaa5ef7385ee2ac6b78bb4599353d3851c0823bd5543e62ce'
+'SKIP'
+'87427151713e689cd87dc50d50c048e0e58285815e4eb61962b50583532cbde5')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i -e 's#env python#env python2#' mercurial/lsprof.py contrib/hg-ssh
+}
+
+build() {
+  cd $pkgname-$pkgver/contrib/chg
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python2 setup.py install --root="$pkgdir" --optimize=1
+
+  install -d "$pkgdir/usr/share/man/"{man1,man5}
+  install -m644 doc/hg.1 "$pkgdir/usr/share/man/man1"
+  install -m644 doc/{hgrc.5,hgignore.5} "$pkgdir/usr/share/man/man5"
+  install -m644 -D contrib/zsh_completion 
"$pkgdir/usr/share/zsh/site-functions/_hg"
+  install -m644 -D contrib/bash_completion 
"$pkgdir/usr/share/bash-completion/completions/hg"
+
+  make -C contrib/chg DESTDIR="$pkgdir" PREFIX=/usr install
+  install -m755 contrib/hg-ssh "$pkgdir/usr/bin"
+  install -m755 contrib/hgk "$pkgdir/usr/bin"
+
+  install -d "$pkgdir/usr/share/emacs/site-lisp"
+  install -m644 contrib/{mq.el,mercurial.el} 
"$pkgdir/usr/share/emacs/site-lisp"
+
+  install -Dm644 contrib/vim/HGAnnotate.vim \
+   

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

2019-06-10 Thread Jan Steffens via arch-commits
Date: Monday, June 10, 2019 @ 18:04:48
  Author: heftig
Revision: 355584

1.10.2-1

Modified:
  modemmanager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 18:01:18 UTC (rev 355583)
+++ PKGBUILD2019-06-10 18:04:48 UTC (rev 355584)
@@ -3,7 +3,7 @@
 
 pkgbase=modemmanager
 pkgname=(modemmanager libmm-glib)
-pkgver=1.10.0
+pkgver=1.10.2
 pkgrel=1
 pkgdesc="Mobile broadband modem management service"
 arch=(x86_64)
@@ -11,7 +11,7 @@
 license=(GPL2 LGPL2.1)
 depends=(systemd libgudev polkit ppp libqmi libmbim)
 makedepends=(gtk-doc gobject-introspection vala autoconf-archive git)
-_commit=9268d4f9ef445ca7c9bf731fe125f432cf6385ac  # tags/1.10.0
+_commit=81446203ed8f5a0982b24764689bf3e80f4470bb  # tags/1.10.2
 
source=("git+https://gitlab.freedesktop.org/mobile-broadband/ModemManager.git#commit=$_commit;
 strict-filter.diff)
 sha256sums=('SKIP'


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

2019-06-10 Thread Bartłomiej Piotrowski via arch-commits
Date: Monday, June 10, 2019 @ 18:05:30
  Author: bpiotrowski
Revision: 355586

5.0.1-1

Modified:
  mercurial/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 18:05:17 UTC (rev 355585)
+++ PKGBUILD2019-06-10 18:05:30 UTC (rev 355586)
@@ -3,7 +3,7 @@
 # Contributor: Douglas Soares de Andrade 
 
 pkgname=mercurial
-pkgver=5.0
+pkgver=5.0.1
 pkgrel=1
 pkgdesc='A scalable distributed SCM tool'
 arch=(x86_64)
@@ -16,7 +16,7 @@
   3A8155163D0E20A530FCB78647A67FFAA346AACE)  
 
source=(https://www.mercurial-scm.org/release/${pkgname}-${pkgver}.tar.gz{,.asc}
 mercurial.profile)
-sha256sums=('54ec76a0138d9b883873cfb2c651380659cd24aa99d92f8816982c6d0edd712a'
+sha256sums=('4c98a8e4cd5595feaa5ef7385ee2ac6b78bb4599353d3851c0823bd5543e62ce'
 'SKIP'
 '87427151713e689cd87dc50d50c048e0e58285815e4eb61962b50583532cbde5')
 


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

2019-06-10 Thread Bartłomiej Piotrowski via arch-commits
Date: Monday, June 10, 2019 @ 18:01:15
  Author: bpiotrowski
Revision: 479772

archrelease: copy trunk to community-x86_64

Added:
  buildah/repos/community-x86_64/PKGBUILD
(from rev 479771, buildah/trunk/PKGBUILD)
Deleted:
  buildah/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 18:00:54 UTC (rev 479771)
+++ PKGBUILD2019-06-10 18:01:15 UTC (rev 479772)
@@ -1,37 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-
-pkgname=buildah
-pkgver=1.8.2
-pkgrel=1
-pkgdesc="A tool which facilitates building OCI images"
-arch=(x86_64)
-url="https://github.com/containers/buildah;
-license=(Apache)
-depends=(ostree runc skopeo)
-makedepends=(go-pie git bash-bats btrfs-progs device-mapper gpgme libassuan
- bzip2 go-md2man runc skopeo)
-_commit=e23314b1725544c4e4dd82afcfe2866e0fd2ddc5  # tags/v1.8.2
-source=(git://github.com/containers/buildah.git#commit=$_commit)
-md5sums=('SKIP')
-
-pkgver() {
-  cd buildah
-  git describe --tags | sed 's/^[vV]//;s/-/+/g'
-}
-
-prepare() {
-  mkdir -p src/github.com/containers
-  cp -r $pkgname src/github.com/containers
-}
-
-build() {
-  export GOPATH="${srcdir}"
-  cd src/github.com/containers/buildah
-  make PREFIX=/usr BUILDTAGS="containers_image_ostree_stub ostree seccomp"
-}
-
-package() {
-  cd src/github.com/containers/buildah
-  make DESTDIR="$pkgdir" PREFIX=usr install
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: buildah/repos/community-x86_64/PKGBUILD (from rev 479771, 
buildah/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 18:01:15 UTC (rev 479772)
@@ -0,0 +1,37 @@
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgname=buildah
+pkgver=1.8.3
+pkgrel=1
+pkgdesc="A tool which facilitates building OCI images"
+arch=(x86_64)
+url="https://github.com/containers/buildah;
+license=(Apache)
+depends=(ostree runc skopeo)
+makedepends=(go-pie git bash-bats btrfs-progs device-mapper gpgme libassuan
+ bzip2 go-md2man runc skopeo)
+_commit=547bd9a5cb56441f8c006d17751968984830838e  # tags/v1.8.3
+source=(git://github.com/containers/buildah.git#commit=$_commit)
+md5sums=('SKIP')
+
+pkgver() {
+  cd buildah
+  git describe --tags | sed 's/^[vV]//;s/-/+/g'
+}
+
+prepare() {
+  mkdir -p src/github.com/containers
+  cp -r $pkgname src/github.com/containers
+}
+
+build() {
+  export GOPATH="${srcdir}"
+  cd src/github.com/containers/buildah
+  make PREFIX=/usr BUILDTAGS="containers_image_ostree_stub ostree seccomp"
+}
+
+package() {
+  cd src/github.com/containers/buildah
+  make DESTDIR="$pkgdir" PREFIX=usr install
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2019-06-10 Thread Bartłomiej Piotrowski via arch-commits
Date: Monday, June 10, 2019 @ 18:03:28
  Author: bpiotrowski
Revision: 479775

archrelease: copy trunk to community-x86_64

Added:
  podman/repos/community-x86_64/PKGBUILD
(from rev 479774, podman/trunk/PKGBUILD)
Deleted:
  podman/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 18:03:21 UTC (rev 479774)
+++ PKGBUILD2019-06-10 18:03:28 UTC (rev 479775)
@@ -1,48 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-
-pkgbase=podman
-pkgname=(podman podman-docker)
-pkgver=1.3.2
-pkgrel=1
-pkgdesc='Tool and library for running OCI-based containers in pods'
-arch=(x86_64)
-url='https://github.com/containers/libpod'
-license=(Apache)
-depends=(cni-plugins conmon device-mapper iptables libseccomp ostree runc 
skopeo
- btrfs-progs slirp4netns)
-makedepends=(go-pie go-md2man git)
-source=(libpod-$pkgver.tar.gz::$url/archive/v${pkgver}.tar.gz)
-sha256sums=('ff860e009746ecf566c9228960e7721e8aeababbf9688e24724e6b31b0aefa00')
-
-prepare() {
-  mkdir -p src/github.com/containers src/github.com/varlink
-  cp -r libpod-$pkgver src/github.com/containers/libpod
-}
-
-build() {
-  export GOPATH="$srcdir"
-  export BUILDTAGS='seccomp ostree varlink containers_image_ostree_stub'
-
-  # buildsystem passes LDFLAGS to GO's -ldflags, which isn't really compatible
-  unset LDFLAGS
-
-  cd src/github.com/containers/libpod
-  make install.tools
-  make
-}
-
-package_podman() {
-  optdepends=('podman-docker: for Docker-compatible CLI')
-
-  cd src/github.com/containers/libpod
-  make install install.completions install.config DESTDIR="$pkgdir" 
PREFIX="$pkgdir/usr"
-}
-
-package_podman-docker() {
-  pkgdesc='Emulate Docker CLI using podman'
-  depends=(podman)
-  conflicts=(docker)
-
-  cd src/github.com/containers/libpod
-  make install.docker DESTDIR="$pkgdir" PREFIX="$pkgdir/usr"
-}

Copied: podman/repos/community-x86_64/PKGBUILD (from rev 479774, 
podman/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 18:03:28 UTC (rev 479775)
@@ -0,0 +1,48 @@
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgbase=podman
+pkgname=(podman podman-docker)
+pkgver=1.4.0
+pkgrel=1
+pkgdesc='Tool and library for running OCI-based containers in pods'
+arch=(x86_64)
+url='https://github.com/containers/libpod'
+license=(Apache)
+depends=(cni-plugins conmon device-mapper iptables libseccomp ostree runc 
skopeo
+ btrfs-progs slirp4netns)
+makedepends=(go-pie go-md2man git)
+source=(libpod-$pkgver.tar.gz::$url/archive/v${pkgver}.tar.gz)
+sha256sums=('17fdf68e85106d0848e89825e191198a4079bb6d9ca6dd3e415e5c010192db9e')
+
+prepare() {
+  mkdir -p src/github.com/containers src/github.com/varlink
+  cp -r libpod-$pkgver src/github.com/containers/libpod
+}
+
+build() {
+  export GOPATH="$srcdir"
+  export BUILDTAGS='seccomp ostree varlink containers_image_ostree_stub'
+
+  # buildsystem passes LDFLAGS to GO's -ldflags, which isn't really compatible
+  unset LDFLAGS
+
+  cd src/github.com/containers/libpod
+  make install.tools
+  make
+}
+
+package_podman() {
+  optdepends=('podman-docker: for Docker-compatible CLI')
+
+  cd src/github.com/containers/libpod
+  make install install.completions install.config DESTDIR="$pkgdir" 
PREFIX="$pkgdir/usr"
+}
+
+package_podman-docker() {
+  pkgdesc='Emulate Docker CLI using podman'
+  depends=(podman)
+  conflicts=(docker)
+
+  cd src/github.com/containers/libpod
+  make install.docker DESTDIR="$pkgdir" PREFIX="$pkgdir/usr"
+}


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

2019-06-10 Thread Bartłomiej Piotrowski via arch-commits
Date: Monday, June 10, 2019 @ 18:03:21
  Author: bpiotrowski
Revision: 479774

1.4.0-1

Modified:
  podman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 18:01:22 UTC (rev 479773)
+++ PKGBUILD2019-06-10 18:03:21 UTC (rev 479774)
@@ -2,7 +2,7 @@
 
 pkgbase=podman
 pkgname=(podman podman-docker)
-pkgver=1.3.2
+pkgver=1.4.0
 pkgrel=1
 pkgdesc='Tool and library for running OCI-based containers in pods'
 arch=(x86_64)
@@ -12,7 +12,7 @@
  btrfs-progs slirp4netns)
 makedepends=(go-pie go-md2man git)
 source=(libpod-$pkgver.tar.gz::$url/archive/v${pkgver}.tar.gz)
-sha256sums=('ff860e009746ecf566c9228960e7721e8aeababbf9688e24724e6b31b0aefa00')
+sha256sums=('17fdf68e85106d0848e89825e191198a4079bb6d9ca6dd3e415e5c010192db9e')
 
 prepare() {
   mkdir -p src/github.com/containers src/github.com/varlink


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

2019-06-10 Thread Bartłomiej Piotrowski via arch-commits
Date: Monday, June 10, 2019 @ 18:00:54
  Author: bpiotrowski
Revision: 479771

1.8.3-1

Modified:
  buildah/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 18:00:45 UTC (rev 479770)
+++ PKGBUILD2019-06-10 18:00:54 UTC (rev 479771)
@@ -1,7 +1,7 @@
 # Maintainer: Bartłomiej Piotrowski 
 
 pkgname=buildah
-pkgver=1.8.2
+pkgver=1.8.3
 pkgrel=1
 pkgdesc="A tool which facilitates building OCI images"
 arch=(x86_64)
@@ -10,7 +10,7 @@
 depends=(ostree runc skopeo)
 makedepends=(go-pie git bash-bats btrfs-progs device-mapper gpgme libassuan
  bzip2 go-md2man runc skopeo)
-_commit=e23314b1725544c4e4dd82afcfe2866e0fd2ddc5  # tags/v1.8.2
+_commit=547bd9a5cb56441f8c006d17751968984830838e  # tags/v1.8.3
 source=(git://github.com/containers/buildah.git#commit=$_commit)
 md5sums=('SKIP')
 


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

2019-06-10 Thread Jan Steffens via arch-commits
Date: Monday, June 10, 2019 @ 18:05:17
  Author: heftig
Revision: 355585

archrelease: copy trunk to extra-x86_64

Added:
  modemmanager/repos/extra-x86_64/PKGBUILD
(from rev 355584, modemmanager/trunk/PKGBUILD)
  modemmanager/repos/extra-x86_64/strict-filter.diff
(from rev 355584, modemmanager/trunk/strict-filter.diff)
Deleted:
  modemmanager/repos/extra-x86_64/PKGBUILD
  modemmanager/repos/extra-x86_64/strict-filter.diff

+
 PKGBUILD   |  172 +--
 strict-filter.diff |   26 +++
 2 files changed, 99 insertions(+), 99 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 18:04:48 UTC (rev 355584)
+++ PKGBUILD2019-06-10 18:05:17 UTC (rev 355585)
@@ -1,86 +0,0 @@
-# Contributor: Ionut Biru 
-# Contributor: Jan Alexander Steffens (heftig) 
-
-pkgbase=modemmanager
-pkgname=(modemmanager libmm-glib)
-pkgver=1.10.0
-pkgrel=1
-pkgdesc="Mobile broadband modem management service"
-arch=(x86_64)
-url="https://www.freedesktop.org/wiki/Software/ModemManager/;
-license=(GPL2 LGPL2.1)
-depends=(systemd libgudev polkit ppp libqmi libmbim)
-makedepends=(gtk-doc gobject-introspection vala autoconf-archive git)
-_commit=9268d4f9ef445ca7c9bf731fe125f432cf6385ac  # tags/1.10.0
-source=("git+https://gitlab.freedesktop.org/mobile-broadband/ModemManager.git#commit=$_commit;
-strict-filter.diff)
-sha256sums=('SKIP'
-'0602cc5088b193426c3af3d6ce14a7fd6502b06f77982dc56291d834280f311e')
-
-pkgver() {
-  cd ModemManager
-  git describe --tags | sed 's/-rc/rc/;s/-/+/g'
-}
-
-prepare() {
-  cd ModemManager
-
-  # Recommended by upstream
-  patch -Np1 -i ../strict-filter.diff
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd ModemManager
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---sbindir=/usr/bin \
---with-dbus-sys-dir=/usr/share/dbus-1/system.d \
---with-udev-base-dir=/usr/lib/udev \
---with-polkit=permissive \
---with-systemd-journal \
---with-systemd-suspend-resume \
---enable-gtk-doc \
---disable-static
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd ModemManager
-  make -k check
-}
-
-package_modemmanager() {
-  depends+=(libmm-glib)
-  optdepends=('usb_modeswitch: install if your modem shows up as a storage 
drive')
-  options=(!emptydirs)
-
-  cd ModemManager
-  make DESTDIR="$pkgdir" install
-  make DESTDIR="$pkgdir" -C libmm-glib uninstall
-  make DESTDIR="$pkgdir" -C vapi uninstall
-
-  # Some stuff to move is left over
-  mv "$pkgdir/usr/include" ..
-  mv "$pkgdir/usr/lib/pkgconfig" ..
-}
-
-package_libmm-glib() {
-  pkgdesc="ModemManager library"
-  depends=(glib2)
-
-  install -d "$pkgdir/usr/lib"
-  mv include "$pkgdir/usr"
-  mv pkgconfig "$pkgdir/usr/lib"
-
-  cd ModemManager
-  make DESTDIR="$pkgdir" -C libmm-glib install
-  make DESTDIR="$pkgdir" -C vapi install
-}

Copied: modemmanager/repos/extra-x86_64/PKGBUILD (from rev 355584, 
modemmanager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 18:05:17 UTC (rev 355585)
@@ -0,0 +1,86 @@
+# Contributor: Ionut Biru 
+# Contributor: Jan Alexander Steffens (heftig) 
+
+pkgbase=modemmanager
+pkgname=(modemmanager libmm-glib)
+pkgver=1.10.2
+pkgrel=1
+pkgdesc="Mobile broadband modem management service"
+arch=(x86_64)
+url="https://www.freedesktop.org/wiki/Software/ModemManager/;
+license=(GPL2 LGPL2.1)
+depends=(systemd libgudev polkit ppp libqmi libmbim)
+makedepends=(gtk-doc gobject-introspection vala autoconf-archive git)
+_commit=81446203ed8f5a0982b24764689bf3e80f4470bb  # tags/1.10.2
+source=("git+https://gitlab.freedesktop.org/mobile-broadband/ModemManager.git#commit=$_commit;
+strict-filter.diff)
+sha256sums=('SKIP'
+'0602cc5088b193426c3af3d6ce14a7fd6502b06f77982dc56291d834280f311e')
+
+pkgver() {
+  cd ModemManager
+  git describe --tags | sed 's/-rc/rc/;s/-/+/g'
+}
+
+prepare() {
+  cd ModemManager
+
+  # Recommended by upstream
+  patch -Np1 -i ../strict-filter.diff
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd ModemManager
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sbindir=/usr/bin \
+--with-dbus-sys-dir=/usr/share/dbus-1/system.d \
+--with-udev-base-dir=/usr/lib/udev \
+--with-polkit=permissive \
+--with-systemd-journal \
+--with-systemd-suspend-resume \
+--enable-gtk-doc \
+--disable-static
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd ModemManager
+  make -k check
+}
+
+package_modemmanager() {
+  depends+=(libmm-glib)
+  optdepends=('usb_modeswitch: install if your modem 

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

2019-06-10 Thread Bartłomiej Piotrowski via arch-commits
Date: Monday, June 10, 2019 @ 18:00:45
  Author: bpiotrowski
Revision: 479770

archrelease: copy trunk to community-x86_64

Added:
  cni-plugins/repos/community-x86_64/PKGBUILD
(from rev 479769, cni-plugins/trunk/PKGBUILD)
Deleted:
  cni-plugins/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 18:00:39 UTC (rev 479769)
+++ PKGBUILD2019-06-10 18:00:45 UTC (rev 479770)
@@ -1,27 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-
-pkgname=cni-plugins
-pkgver=0.8.0
-pkgrel=1
-pkgdesc='Some standard networking plugins, maintained by the CNI team'
-arch=(x86_64)
-url="https://github.com/containernetworking/plugins;
-license=(Apache)
-depends=(glibc)
-makedepends=(go-pie)
-source=($pkgname-$pkgver.tar.gz::$url/archive/v${pkgver}.tar.gz)
-sha512sums=('de685a66e0e875e8a2209b76c5d1f5fd0e426804e3db6084cf2e89695a8b1876eae47ff1fcfdf065a3b027918fe7c4775d2321358402dbd1206928538edb52b4')
-
-build() {
-  cd plugins-$pkgver
-  ./build_linux.sh
-}
-
-package() {
-  cd plugins-$pkgver/bin
-  for bin in *; do
-install -Dm755 $bin "$pkgdir/usr/lib/cni/$bin"
-  done
-
-  install -Dm644 ../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: cni-plugins/repos/community-x86_64/PKGBUILD (from rev 479769, 
cni-plugins/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 18:00:45 UTC (rev 479770)
@@ -0,0 +1,27 @@
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgname=cni-plugins
+pkgver=0.8.1
+pkgrel=1
+pkgdesc='Some standard networking plugins, maintained by the CNI team'
+arch=(x86_64)
+url="https://github.com/containernetworking/plugins;
+license=(Apache)
+depends=(glibc)
+makedepends=(go-pie)
+source=($pkgname-$pkgver.tar.gz::$url/archive/v${pkgver}.tar.gz)
+sha512sums=('ed57162fc3d014c897ee2f7f82b738624ca42ad7c238ac6ac5c1eb9ac865fe27f8ded1510cfb131f7b43e44f6cd0366ab83011386bcb6add36ea11235767760f')
+
+build() {
+  cd plugins-$pkgver
+  ./build_linux.sh
+}
+
+package() {
+  cd plugins-$pkgver/bin
+  for bin in *; do
+install -Dm755 $bin "$pkgdir/usr/lib/cni/$bin"
+  done
+
+  install -Dm644 ../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2019-06-10 Thread Bartłomiej Piotrowski via arch-commits
Date: Monday, June 10, 2019 @ 18:00:39
  Author: bpiotrowski
Revision: 479769

0.8.1-1

Modified:
  cni-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 18:00:33 UTC (rev 479768)
+++ PKGBUILD2019-06-10 18:00:39 UTC (rev 479769)
@@ -1,7 +1,7 @@
 # Maintainer: Bartłomiej Piotrowski 
 
 pkgname=cni-plugins
-pkgver=0.8.0
+pkgver=0.8.1
 pkgrel=1
 pkgdesc='Some standard networking plugins, maintained by the CNI team'
 arch=(x86_64)
@@ -10,7 +10,7 @@
 depends=(glibc)
 makedepends=(go-pie)
 source=($pkgname-$pkgver.tar.gz::$url/archive/v${pkgver}.tar.gz)
-sha512sums=('de685a66e0e875e8a2209b76c5d1f5fd0e426804e3db6084cf2e89695a8b1876eae47ff1fcfdf065a3b027918fe7c4775d2321358402dbd1206928538edb52b4')
+sha512sums=('ed57162fc3d014c897ee2f7f82b738624ca42ad7c238ac6ac5c1eb9ac865fe27f8ded1510cfb131f7b43e44f6cd0366ab83011386bcb6add36ea11235767760f')
 
 build() {
   cd plugins-$pkgver


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

2019-06-10 Thread Felix Yan via arch-commits
Date: Monday, June 10, 2019 @ 17:59:28
  Author: felixonmars
Revision: 479758

archrelease: copy trunk to community-staging-x86_64

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

---+
 PKGBUILD  |   75 
 stack.install |4 ++
 2 files changed, 79 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 479757, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-10 17:59:28 UTC (rev 479758)
@@ -0,0 +1,75 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=1.9.3.1
+pkgrel=54
+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-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-hpack' 'haskell-hpc' 'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-microlens' 'haskell-mintty' 'haskell-monad-logger' 
'haskell-mono-traversable'
+ 'haskell-mustache' 'haskell-neat-interpolation' 'haskell-network-uri' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'haskell-optparse-simple' 
'haskell-path' 'haskell-path-io'
+ 'haskell-persistent' 'haskell-persistent-sqlite' 
'haskell-persistent-template'
+ 'haskell-primitive' 'haskell-project-template' 
'haskell-regex-applicative-text'
+ 'haskell-resourcet' 'haskell-retry' 'haskell-rio' 'haskell-split' 
'haskell-store'
+ 'haskell-store-core' 'haskell-streaming-commons' 'haskell-tar' 
'haskell-temporary'
+ 'haskell-text-metrics' 'haskell-th-reify-many' 'haskell-tls' 
'haskell-typed-process'
+ 'haskell-unicode-transforms' 'haskell-unix-compat' 'haskell-unliftio'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-yaml' 
'haskell-zip-archive'
+ 'haskell-zlib' 'haskell-bindings-uname')
+makedepends=('ghc' 'git' 'haskell-quickcheck' 'haskell-hspec' 
'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;)
+sha512sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  hpack
+  sed -i -e '/semigroups/d' -e 's/< *0.8/<1/' $pkgname.cabal
+}
+
+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
+  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"
+
+  LD_PRELOAD=$(ls "$pkgdir"/usr/lib/libHSstack-*-ghc*.so) 
"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+  install -Dm644 stack_completion_script 
"${pkgdir}/usr/share/bash-completion/completions/stack"
+}

Copied: stack/repos/community-staging-x86_64/stack.install (from rev 479757, 
stack/trunk/stack.install)
===
--- community-staging-x86_64/stack.install  (rev 0)
+++ community-staging-x86_64/stack.install  2019-06-10 17:59:28 UTC (rev 
479758)
@@ -0,0 +1,4 @@

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

2019-06-10 Thread Felix Yan via arch-commits
Date: Monday, June 10, 2019 @ 17:59:06
  Author: felixonmars
Revision: 479757

upgpkg: stack 1.9.3.1-54

rebuild with tls-session-manager 0.0.1.0

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 17:49:49 UTC (rev 479756)
+++ PKGBUILD2019-06-10 17:59:06 UTC (rev 479757)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=1.9.3.1
-pkgrel=53
+pkgrel=54
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("BSD")


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

2019-06-10 Thread Daniel M. Capella via arch-commits
Date: Monday, June 10, 2019 @ 17:49:49
  Author: polyzen
Revision: 479756

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 17:49:30 UTC (rev 479755)
+++ PKGBUILD2019-06-10 17:49:49 UTC (rev 479756)
@@ -1,53 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Maintainer: Daniel M. Capella 
-# Contributor: Sébastien Luttringer
-# Contributor: Angel Velasquez 
-# Contributor: Fabio Volpe 
-
-pkgname=python-sphinx
-pkgver=2.1.0
-pkgrel=1
-pkgdesc='Python documentation generator'
-arch=('any')
-url=http://www.sphinx-doc.org/
-license=('BSD')
-depends=('python-babel'
- 'python-docutils'
- 'python-imagesize'
- 'python-jinja'
- 'python-pygments'
- 'python-requests'
- 'python-setuptools'
- 'python-snowballstemmer'
- 'python-sphinx-alabaster-theme'
- 
'python-sphinxcontrib-'{{apple,dev,html}help,jsmath,qthelp,serializinghtml})
-checkdepends=('imagemagick' 'librsvg'
-  'python-html5lib'
-  'python-pytest'
-  'texlive-fontsextra' 'texlive-latexextra')
-optdepends=('imagemagick: for ext.imgconverter'
-'texlive-latexextra: for generation of PDF documentation')
-source=("https://pypi.org/packages/source/S/Sphinx/Sphinx-$pkgver.tar.gz"{,.asc})
-sha256sums=('7a359a91fb04054ec77d68ff97cb8728f8cc322e25f22dc94299d67e0e6a7123'
-'SKIP')
-validpgpkeys=('8A11B79A5D0D749A66F0A030102C2C17498D6B9E'  # Takeshi KOMIYA
-  'E9BEABB07E7B9CC3F56E62C91425F8CE5EBA0E07') # Takayuki 
Shimizukawa
-
-build() {
-  cd Sphinx-$pkgver
-  make build
-}
-
-check() {
-  cd Sphinx-$pkgver
-  LC_ALL="en_US.UTF-8" make test
-  rm -r tests
-}
-
-package() {
-  cd Sphinx-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-sphinx/repos/community-any/PKGBUILD (from rev 479755, 
python-sphinx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 17:49:49 UTC (rev 479756)
@@ -0,0 +1,53 @@
+# Maintainer: Johannes Löthberg 
+# Maintainer: Daniel M. Capella 
+# Contributor: Sébastien Luttringer
+# Contributor: Angel Velasquez 
+# Contributor: Fabio Volpe 
+
+pkgname=python-sphinx
+pkgver=2.1.1
+pkgrel=1
+pkgdesc='Python documentation generator'
+arch=('any')
+url=http://www.sphinx-doc.org/
+license=('BSD')
+depends=('python-babel'
+ 'python-docutils'
+ 'python-imagesize'
+ 'python-jinja'
+ 'python-pygments'
+ 'python-requests'
+ 'python-setuptools'
+ 'python-snowballstemmer'
+ 'python-sphinx-alabaster-theme'
+ 
'python-sphinxcontrib-'{{apple,dev,html}help,jsmath,qthelp,serializinghtml})
+checkdepends=('imagemagick' 'librsvg'
+  'python-html5lib'
+  'python-pytest'
+  'texlive-fontsextra' 'texlive-latexextra')
+optdepends=('imagemagick: for ext.imgconverter'
+'texlive-latexextra: for generation of PDF documentation')
+source=("https://pypi.org/packages/source/S/Sphinx/Sphinx-$pkgver.tar.gz"{,.asc})
+sha256sums=('15143166e786c7faa76fa990d3b6b38ebffe081ef81cffd1d656b07f3b28a1fa'
+'SKIP')
+validpgpkeys=('8A11B79A5D0D749A66F0A030102C2C17498D6B9E'  # Takeshi KOMIYA
+  'E9BEABB07E7B9CC3F56E62C91425F8CE5EBA0E07') # Takayuki 
Shimizukawa
+
+build() {
+  cd Sphinx-$pkgver
+  make build
+}
+
+check() {
+  cd Sphinx-$pkgver
+  LC_ALL="en_US.UTF-8" make test
+  rm -r tests
+}
+
+package() {
+  cd Sphinx-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-06-10 Thread Daniel M. Capella via arch-commits
Date: Monday, June 10, 2019 @ 17:49:30
  Author: polyzen
Revision: 479755

upgpkg: python-sphinx 2.1.1-1

Modified:
  python-sphinx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 17:45:49 UTC (rev 479754)
+++ PKGBUILD2019-06-10 17:49:30 UTC (rev 479755)
@@ -5,7 +5,7 @@
 # Contributor: Fabio Volpe 
 
 pkgname=python-sphinx
-pkgver=2.1.0
+pkgver=2.1.1
 pkgrel=1
 pkgdesc='Python documentation generator'
 arch=('any')
@@ -28,7 +28,7 @@
 optdepends=('imagemagick: for ext.imgconverter'
 'texlive-latexextra: for generation of PDF documentation')
 
source=("https://pypi.org/packages/source/S/Sphinx/Sphinx-$pkgver.tar.gz"{,.asc})
-sha256sums=('7a359a91fb04054ec77d68ff97cb8728f8cc322e25f22dc94299d67e0e6a7123'
+sha256sums=('15143166e786c7faa76fa990d3b6b38ebffe081ef81cffd1d656b07f3b28a1fa'
 'SKIP')
 validpgpkeys=('8A11B79A5D0D749A66F0A030102C2C17498D6B9E'  # Takeshi KOMIYA
   'E9BEABB07E7B9CC3F56E62C91425F8CE5EBA0E07') # Takayuki 
Shimizukawa


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

2019-06-10 Thread Felix Yan via arch-commits
Date: Monday, June 10, 2019 @ 17:45:49
  Author: felixonmars
Revision: 479754

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hoogle/repos/community-staging-x86_64/PKGBUILD (from rev 479753, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-10 17:45:49 UTC (rev 479754)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.17.9
+pkgrel=7
+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=('d9a7d2ec6fc8aed6cff986b87ef268a76ddfb15946ed406c99478a26c02389272e6a7561a5b3b1895e6122f8158071f845f78bfccf9c999a2991652158d29332')
+
+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
+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-06-10 Thread Felix Yan via arch-commits
Date: Monday, June 10, 2019 @ 17:45:27
  Author: felixonmars
Revision: 479753

upgpkg: hoogle 5.0.17.9-7

rebuild with tls-session-manager 0.0.1.0

Modified:
  hoogle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 17:42:24 UTC (rev 479752)
+++ PKGBUILD2019-06-10 17:45:27 UTC (rev 479753)
@@ -3,7 +3,7 @@
 
 pkgname=hoogle
 pkgver=5.0.17.9
-pkgrel=6
+pkgrel=7
 pkgdesc="Haskell API Search"
 url="https://www.haskell.org/hoogle/;
 license=("BSD")


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

2019-06-10 Thread Felix Yan via arch-commits
Date: Monday, June 10, 2019 @ 17:42:04
  Author: felixonmars
Revision: 479751

upgpkg: hledger-web 1.14.1-64

rebuild with tls-session-manager 0.0.1.0

Modified:
  hledger-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 17:39:07 UTC (rev 479750)
+++ PKGBUILD2019-06-10 17:42:04 UTC (rev 479751)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-web
 pkgver=1.14.1
-pkgrel=63
+pkgrel=64
 pkgdesc="Web interface for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2019-06-10 Thread Felix Yan via arch-commits
Date: Monday, June 10, 2019 @ 17:42:24
  Author: felixonmars
Revision: 479752

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 479751, hledger-web/trunk/PKGBUILD)

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

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 479751, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-10 17:42:24 UTC (rev 479752)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.14.1
+pkgrel=64
+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')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('3eb50a27e96b8e4590719c41fe00dbf7add431a8bbc300f1d2614c09dbae5eaa2eb43ac96c597c441a2f43bf4096fe8c450bb3bdb601cc2a06fd840768b45786')
+
+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 haskell-yesod-auth/trunk (PKGBUILD)

2019-06-10 Thread Felix Yan via arch-commits
Date: Monday, June 10, 2019 @ 17:38:46
  Author: felixonmars
Revision: 479749

upgpkg: haskell-yesod-auth 1.6.6-67

rebuild with tls-session-manager 0.0.1.0

Modified:
  haskell-yesod-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 17:36:18 UTC (rev 479748)
+++ PKGBUILD2019-06-10 17:38:46 UTC (rev 479749)
@@ -4,7 +4,7 @@
 _hkgname=yesod-auth
 pkgname=haskell-yesod-auth
 pkgver=1.6.6
-pkgrel=66
+pkgrel=67
 pkgdesc="Authentication for Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2019-06-10 Thread Felix Yan via arch-commits
Date: Monday, June 10, 2019 @ 17:39:07
  Author: felixonmars
Revision: 479750

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 479749, haskell-yesod-auth/trunk/PKGBUILD)

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

Copied: haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD (from rev 
479749, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-10 17:39:07 UTC (rev 479750)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.6.6
+pkgrel=67
+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=('4512a28e0e90e586b0b4cfbc1461c8773339c980e4244f7136e04ddd77f1a9fc1b7eb1311962bfb4a68b0163ea29eca50761cfc52e50e01e10fbc6184b2d481b')
+
+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-hakyll/repos (2 files)

2019-06-10 Thread Felix Yan via arch-commits
Date: Monday, June 10, 2019 @ 17:36:18
  Author: felixonmars
Revision: 479748

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 479747, haskell-hakyll/trunk/PKGBUILD)

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
479747, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-10 17:36:18 UTC (rev 479748)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.12.5.2
+pkgrel=23
+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 's/< *2.13/<3/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --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-06-10 Thread Felix Yan via arch-commits
Date: Monday, June 10, 2019 @ 17:35:55
  Author: felixonmars
Revision: 479747

upgpkg: haskell-hakyll 4.12.5.2-23

rebuild with tls-session-manager 0.0.1.0

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 17:32:15 UTC (rev 479746)
+++ PKGBUILD2019-06-10 17:35:55 UTC (rev 479747)
@@ -4,7 +4,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.12.5.2
-pkgrel=22
+pkgrel=23
 pkgdesc="A static website compiler library"
 url="https://jaspervdj.be/hakyll;
 license=("BSD")


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

2019-06-10 Thread Felix Yan via arch-commits
Date: Monday, June 10, 2019 @ 17:32:15
  Author: felixonmars
Revision: 479746

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 479745, git-annex/trunk/PKGBUILD)
  git-annex/repos/community-staging-x86_64/socks-0.6.patch
(from rev 479745, git-annex/trunk/socks-0.6.patch)

-+
 PKGBUILD|   58 ++
 socks-0.6.patch |   13 
 2 files changed, 71 insertions(+)

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 479745, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-10 17:32:15 UTC (rev 479746)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=7.20190507
+pkgrel=25
+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-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;
+socks-0.6.patch)
+sha512sums=('SKIP'
+
'572cfde516ac8efd7c7b7b734d7de2276e7fa4143d8ed66de101d987a81ac71b911161454979f5a6b3d89f0080423f5086eb73aa02e9ebfdde63f0167bcac608')
+
+prepare() {
+  cd git-annex
+  patch -p1 -i ../socks-0.6.patch
+}
+
+build() {
+  cd git-annex
+
+  runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla \
+--docdir="/usr/share/doc/$pkgname" \
+-ftorrentparser -fproduction -fpairing -fwebapp \
+-fassistant -fwebdav -fs3 -f-benchmark -fdbus -fmagicmime -f-networkbsd
+  runhaskell Setup build
+}
+
+package() {
+  cd git-annex
+  runhaskell Setup copy --destdir="$pkgdir"
+  make GHC="ghc -dynamic" BUILDER=true DESTDIR="$pkgdir" install-desktop 
install-completions
+
+  rm "$pkgdir"/usr/share/doc/git-annex/COPYRIGHT
+  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
+}

Copied: git-annex/repos/community-staging-x86_64/socks-0.6.patch (from rev 
479745, git-annex/trunk/socks-0.6.patch)
===
--- community-staging-x86_64/socks-0.6.patch(rev 0)
+++ community-staging-x86_64/socks-0.6.patch2019-06-10 17:32:15 UTC (rev 
479746)
@@ -0,0 +1,13 @@
+diff --git a/Utility/Tor.hs b/Utility/Tor.hs
+index 427fb100bc..0ee904ca2a 100644
+--- a/Utility/Tor.hs
 b/Utility/Tor.hs
+@@ -37,7 +37,7 @@ connectHiddenService (OnionAddress address) port = do
+   return s
+   where
+   torsocksport = 9050
+-  torsockconf = defaultSocksConf "127.0.0.1" torsocksport
++  torsockconf = defaultSocksConf $ SockAddrInet torsocksport $ 
tupleToHostAddress (127, 0, 0, 1)
+   socksdomain = SocksAddrDomainName (BU8.fromString address)
+   socksaddr = SocksAddress socksdomain (fromIntegral port)
+ 


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

2019-06-10 Thread Felix Yan via arch-commits
Date: Monday, June 10, 2019 @ 17:31:40
  Author: felixonmars
Revision: 479745

upgpkg: git-annex 7.20190507-25

rebuild with tls-session-manager 0.0.1.0

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 17:21:34 UTC (rev 479744)
+++ PKGBUILD2019-06-10 17:31:40 UTC (rev 479745)
@@ -3,7 +3,7 @@
 
 pkgname=git-annex
 pkgver=7.20190507
-pkgrel=24
+pkgrel=25
 pkgdesc="Manage files with git, without checking their contents into git"
 url="https://git-annex.branchable.com/;
 license=("AGPL3")


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

2019-06-10 Thread Anatol Pomozov via arch-commits
Date: Monday, June 10, 2019 @ 17:27:52
  Author: anatolik
Revision: 355578

archrelease: copy trunk to testing-x86_64

Added:
  libevent/repos/testing-x86_64/
  libevent/repos/testing-x86_64/PKGBUILD
(from rev 355577, libevent/trunk/PKGBUILD)

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

Copied: libevent/repos/testing-x86_64/PKGBUILD (from rev 355577, 
libevent/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-06-10 17:27:52 UTC (rev 355578)
@@ -0,0 +1,35 @@
+# Maintainer: Tom Gundersen 
+# Contributor: Judd 
+
+pkgname=libevent
+pkgver=2.1.10
+pkgrel=1
+pkgdesc="An event notification library"
+arch=('x86_64')
+url="https://libevent.org/;
+license=('BSD')
+depends=('openssl')
+optdepends=('python2: to use event_rpcgen.py')
+source=(https://github.com/libevent/libevent/releases/download/release-$pkgver-stable/$pkgname-$pkgver-stable.tar.gz{,.asc})
+sha256sums=('e864af41a336bb11dab1a23f32993afe963c1f69618bd9292b89ecf6904845b0'
+'SKIP')
+validpgpkeys=('B35BF85BF19489D04E28C33C21194EBB165733EA'
+  '9E3AC83A27974B84D1B3401DB86086848EF8686D')
+
+build() {
+  cd ${pkgname}-${pkgver}-stable
+  ./autogen.sh
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-libevent-regress
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}-stable
+  make -j1 check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}-stable
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 LICENSE "${pkgdir}"/usr/share/licenses/libevent/LICENSE
+}


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

2019-06-10 Thread Anatol Pomozov via arch-commits
Date: Monday, June 10, 2019 @ 17:27:32
  Author: anatolik
Revision: 355577

upgpkg: libevent 2.1.10-1

Modified:
  libevent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 16:55:04 UTC (rev 355576)
+++ PKGBUILD2019-06-10 17:27:32 UTC (rev 355577)
@@ -2,8 +2,8 @@
 # Contributor: Judd 
 
 pkgname=libevent
-pkgver=2.1.8
-pkgrel=2
+pkgver=2.1.10
+pkgrel=1
 pkgdesc="An event notification library"
 arch=('x86_64')
 url="https://libevent.org/;
@@ -11,7 +11,7 @@
 depends=('openssl')
 optdepends=('python2: to use event_rpcgen.py')
 
source=(https://github.com/libevent/libevent/releases/download/release-$pkgver-stable/$pkgname-$pkgver-stable.tar.gz{,.asc})
-sha256sums=('965cc5a8bb46ce4199a47e9b2c9e1cae3b137e8356ffdad6d94d3b9069b71dc2'
+sha256sums=('e864af41a336bb11dab1a23f32993afe963c1f69618bd9292b89ecf6904845b0'
 'SKIP')
 validpgpkeys=('B35BF85BF19489D04E28C33C21194EBB165733EA'
   '9E3AC83A27974B84D1B3401DB86086848EF8686D')


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

2019-06-10 Thread Felix Yan via arch-commits
Date: Monday, June 10, 2019 @ 17:21:34
  Author: felixonmars
Revision: 479744

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 479743, haskell-aws/trunk/PKGBUILD)

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

Copied: haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 479743, 
haskell-aws/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-10 17:21:34 UTC (rev 479744)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aws
+pkgname=haskell-aws
+pkgver=0.21.1
+pkgrel=49
+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-06-10 Thread Felix Yan via arch-commits
Date: Monday, June 10, 2019 @ 17:21:17
  Author: felixonmars
Revision: 479743

upgpkg: haskell-aws 0.21.1-49

rebuild with tls-session-manager 0.0.1.0

Modified:
  haskell-aws/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 17:18:12 UTC (rev 479742)
+++ PKGBUILD2019-06-10 17:21:17 UTC (rev 479743)
@@ -4,7 +4,7 @@
 _hkgname=aws
 pkgname=haskell-aws
 pkgver=0.21.1
-pkgrel=48
+pkgrel=49
 pkgdesc="Amazon Web Services (AWS) for Haskell"
 url="https://github.com/aristidb/aws;
 license=("BSD")


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

2019-06-10 Thread Felix Yan via arch-commits
Date: Monday, June 10, 2019 @ 17:17:55
  Author: felixonmars
Revision: 479741

upgpkg: haskell-authenticate 1.3.4-295

rebuild with tls-session-manager 0.0.1.0

Modified:
  haskell-authenticate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 17:16:53 UTC (rev 479740)
+++ PKGBUILD2019-06-10 17:17:55 UTC (rev 479741)
@@ -4,7 +4,7 @@
 _hkgname=authenticate
 pkgname=haskell-authenticate
 pkgver=1.3.4
-pkgrel=294
+pkgrel=295
 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-06-10 Thread Felix Yan via arch-commits
Date: Monday, June 10, 2019 @ 17:18:12
  Author: felixonmars
Revision: 479742

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 479741, haskell-authenticate/trunk/PKGBUILD)

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

Copied: haskell-authenticate/repos/community-staging-x86_64/PKGBUILD (from rev 
479741, haskell-authenticate/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-10 17:18:12 UTC (rev 479742)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=authenticate
+pkgname=haskell-authenticate
+pkgver=1.3.4
+pkgrel=295
+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-http-conduit' 
'haskell-http-types'
+ 'haskell-network-uri' 'haskell-resourcet' 'haskell-tagstream-conduit'
+ 'haskell-unordered-containers' 'haskell-xml-conduit')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('a6e5a9f4c20ca2bb980958c0cc6273492a6488a3f7c1954170bb8b40e46a4c2f7b607c961506e11ddc5421289c907148c1bc70b855bd16664bc1153ef7865571')
+
+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/repos (2 files)

2019-06-10 Thread Felix Yan via arch-commits
Date: Monday, June 10, 2019 @ 17:16:53
  Author: felixonmars
Revision: 479740

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 479739, haskell-http-conduit/trunk/PKGBUILD)

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

Copied: haskell-http-conduit/repos/community-staging-x86_64/PKGBUILD (from rev 
479739, haskell-http-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-10 17:16:53 UTC (rev 479740)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-conduit
+pkgname=haskell-http-conduit
+pkgver=2.3.7.1
+pkgrel=20
+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=('39308e85a9b8c292930803b0b0bb00d4fb58e64e3a8273a30fee4f6016fe18ae9cbd75ece5b67ff88237d87c0b895896b9d715eaa45d396f3baf1deb2b8388ba')
+
+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-conduit/trunk (PKGBUILD)

2019-06-10 Thread Felix Yan via arch-commits
Date: Monday, June 10, 2019 @ 17:16:37
  Author: felixonmars
Revision: 479739

upgpkg: haskell-http-conduit 2.3.7.1-20

rebuild with tls-session-manager 0.0.1.0

Modified:
  haskell-http-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 17:15:13 UTC (rev 479738)
+++ PKGBUILD2019-06-10 17:16:37 UTC (rev 479739)
@@ -4,7 +4,7 @@
 _hkgname=http-conduit
 pkgname=haskell-http-conduit
 pkgver=2.3.7.1
-pkgrel=19
+pkgrel=20
 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-warp-tls/repos (2 files)

2019-06-10 Thread Felix Yan via arch-commits
Date: Monday, June 10, 2019 @ 17:15:13
  Author: felixonmars
Revision: 479738

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 479737, haskell-warp-tls/trunk/PKGBUILD)

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

Copied: haskell-warp-tls/repos/community-staging-x86_64/PKGBUILD (from rev 
479737, haskell-warp-tls/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-10 17:15:13 UTC (rev 479738)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=warp-tls
+pkgname=haskell-warp-tls
+pkgver=3.2.5
+pkgrel=28
+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=('32d8524e0845b4dde1bdaf4a11a87719c569dd1cc59ea0b89895a9be7f6b086509bb7f4f1ebebe8b5c57a277fb7e1f47c0044a9527817292382fc7fd2e2c4c9d')
+
+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-06-10 Thread Felix Yan via arch-commits
Date: Monday, June 10, 2019 @ 17:14:55
  Author: felixonmars
Revision: 479737

upgpkg: haskell-warp-tls 3.2.5-28

rebuild with tls-session-manager 0.0.1.0

Modified:
  haskell-warp-tls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 17:14:02 UTC (rev 479736)
+++ PKGBUILD2019-06-10 17:14:55 UTC (rev 479737)
@@ -4,7 +4,7 @@
 _hkgname=warp-tls
 pkgname=haskell-warp-tls
 pkgver=3.2.5
-pkgrel=27
+pkgrel=28
 pkgdesc="HTTP over TLS support for Warp via the TLS package"
 url="https://github.com/yesodweb/wai;
 license=("MIT")


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

2019-06-10 Thread Felix Yan via arch-commits
Date: Monday, June 10, 2019 @ 17:14:02
  Author: felixonmars
Revision: 479736

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-tls-session-manager/repos/community-staging-x86_64/
  haskell-tls-session-manager/repos/community-staging-x86_64/PKGBUILD
(from rev 479735, haskell-tls-session-manager/trunk/PKGBUILD)

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

Copied: haskell-tls-session-manager/repos/community-staging-x86_64/PKGBUILD 
(from rev 479735, haskell-tls-session-manager/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-10 17:14:02 UTC (rev 479736)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tls-session-manager
+pkgname=haskell-tls-session-manager
+pkgver=0.0.1.0
+pkgrel=1
+pkgdesc="In-memory TLS session manager"
+url="https://hackage.haskell.org/package/tls-session-manager;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-auto-update" "haskell-clock" "haskell-psqueues" 
"haskell-tls")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('f9b614fe0b14b0983ba9441ad6255b6040db43a3e7329244d3f10f545f73cc8371b02b3ac95f0bbfe38c64d75e9ff569bdd3836dad120fb94d4e2816c14e4d66')
+
+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-tls-session-manager/trunk (PKGBUILD)

2019-06-10 Thread Felix Yan via arch-commits
Date: Monday, June 10, 2019 @ 17:13:46
  Author: felixonmars
Revision: 479735

upgpkg: haskell-tls-session-manager 0.0.1.0-1

rebuild with tls-session-manager 0.0.1.0

Modified:
  haskell-tls-session-manager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-10 16:42:43 UTC (rev 479734)
+++ PKGBUILD2019-06-10 17:13:46 UTC (rev 479735)
@@ -3,8 +3,8 @@
 
 _hkgname=tls-session-manager
 pkgname=haskell-tls-session-manager
-pkgver=0.0.0.2
-pkgrel=102
+pkgver=0.0.1.0
+pkgrel=1
 pkgdesc="In-memory TLS session manager"
 url="https://hackage.haskell.org/package/tls-session-manager;
 license=("BSD")
@@ -12,7 +12,7 @@
 depends=('ghc-libs' "haskell-auto-update" "haskell-clock" "haskell-psqueues" 
"haskell-tls")
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('5c46de84f2398852faf9749673e2d61543908cd0a51194d43facad4feae2d6590d1559318a1123c5964b25a8e9bf7e06dd7cc54a345d0eb613b3ca3a1399')
+sha512sums=('f9b614fe0b14b0983ba9441ad6255b6040db43a3e7329244d3f10f545f73cc8371b02b3ac95f0bbfe38c64d75e9ff569bdd3836dad120fb94d4e2816c14e4d66')
 
 build() {
 cd $_hkgname-$pkgver


[arch-commits] Commit in qt5-x11extras/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:54:55
  Author: arojas
Revision: 355575

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-x11extras/repos/kde-unstable-x86_64/PKGBUILD
(from rev 355574, qt5-x11extras/kde-unstable/PKGBUILD)
Deleted:
  qt5-x11extras/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:54:45 UTC (rev 355574)
+++ PKGBUILD2019-06-10 16:54:55 UTC (rev 355575)
@@ -1,40 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-x11extras
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='Provides platform-specific APIs for X11'
-depends=('qt5-base')
-makedepends=()
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('a6839efd1c45fd22f0c1df279479d810dadc0f6831e936d3240c6f849b7f9793')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-x11extras/repos/kde-unstable-x86_64/PKGBUILD (from rev 355574, 
qt5-x11extras/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:54:55 UTC (rev 355575)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-x11extras
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides platform-specific APIs for X11'
+depends=('qt5-base')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('0fac209cef1df77ca2bb3990cc91662b229d8db361571524fbb178eb30d831f9')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-xmlpatterns/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:55:04
  Author: arojas
Revision: 355576

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-xmlpatterns/repos/kde-unstable-x86_64/PKGBUILD
(from rev 355575, qt5-xmlpatterns/kde-unstable/PKGBUILD)
Deleted:
  qt5-xmlpatterns/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:54:55 UTC (rev 355575)
+++ PKGBUILD2019-06-10 16:55:04 UTC (rev 355576)
@@ -1,42 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-xmlpatterns
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='Support for XPath, XQuery, XSLT and XML schema validation'
-depends=('qt5-base')
-makedepends=('qt5-declarative')
-optdepends=('qt5-declarative: QML bindings')
-conflicts=('qtchooser')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('bd80835ea785061866cca66db7ade9393873a6a9fc09975a516ad744fe966051')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-xmlpatterns/repos/kde-unstable-x86_64/PKGBUILD (from rev 355575, 
qt5-xmlpatterns/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:55:04 UTC (rev 355576)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-xmlpatterns
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Support for XPath, XQuery, XSLT and XML schema validation'
+depends=('qt5-base')
+makedepends=('qt5-declarative')
+optdepends=('qt5-declarative: QML bindings')
+conflicts=('qtchooser')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('199459492ba98506d481790f2fcf14ab7de6ac965051e4930933744e1c932797')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-webglplugin/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:54:35
  Author: arojas
Revision: 355573

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-webglplugin/repos/kde-unstable-x86_64/PKGBUILD
(from rev 355572, qt5-webglplugin/kde-unstable/PKGBUILD)
Deleted:
  qt5-webglplugin/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:54:25 UTC (rev 355572)
+++ PKGBUILD2019-06-10 16:54:35 UTC (rev 355573)
@@ -1,39 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-
-pkgname=qt5-webglplugin
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=(x86_64)
-url='https://www.qt.io'
-license=(GPL3 LGPL3 FDL custom)
-pkgdesc='QPA plugin for running an application via a browser using streamed 
WebGL commands'
-depends=(qt5-websockets qt5-declarative)
-groups=(qt qt5)
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('cbebde7ca65a839c1dbb35d18081b26a6639ef4700b860336518f5e2f048aac3')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-webglplugin/repos/kde-unstable-x86_64/PKGBUILD (from rev 355572, 
qt5-webglplugin/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:54:35 UTC (rev 355573)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=qt5-webglplugin
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='QPA plugin for running an application via a browser using streamed 
WebGL commands'
+depends=(qt5-websockets qt5-declarative)
+groups=(qt qt5)
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('d0408eda8c9694b421eabaf7be968c842f110b953f19d6f65fffb10a1efcbac1')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-webview/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:54:45
  Author: arojas
Revision: 355574

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-webview/repos/kde-unstable-x86_64/PKGBUILD
(from rev 355573, qt5-webview/kde-unstable/PKGBUILD)
Deleted:
  qt5-webview/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:54:35 UTC (rev 355573)
+++ PKGBUILD2019-06-10 16:54:45 UTC (rev 355574)
@@ -1,40 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-
-pkgname=qt5-webview
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='Provides a way to display web content in a QML application'
-depends=('qt5-webengine')
-makedepends=()
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('9bf942647c86a5922f5d5fd70cd307bab59926b259a1435a0a66455ffb7aebb9')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-webview/repos/kde-unstable-x86_64/PKGBUILD (from rev 355573, 
qt5-webview/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:54:45 UTC (rev 355574)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=qt5-webview
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides a way to display web content in a QML application'
+depends=('qt5-webengine')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('f11e68d34e2f690eb12984c4da513a281b7e517f184e73695d2d63ad80b3')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-wayland/repos/kde-unstable-x86_64 (4 files)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:54:25
  Author: arojas
Revision: 355572

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-wayland/repos/kde-unstable-x86_64/PKGBUILD
(from rev 355571, qt5-wayland/kde-unstable/PKGBUILD)
  qt5-wayland/repos/kde-unstable-x86_64/qtwayland-kscreenlocker-crash.patch
(from rev 355571, 
qt5-wayland/kde-unstable/qtwayland-kscreenlocker-crash.patch)
Deleted:
  qt5-wayland/repos/kde-unstable-x86_64/PKGBUILD
  qt5-wayland/repos/kde-unstable-x86_64/qtwayland-kscreenlocker-crash.patch

-+
 PKGBUILD|   80 +-
 qtwayland-kscreenlocker-crash.patch |   78 -
 2 files changed, 79 insertions(+), 79 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:54:06 UTC (rev 355571)
+++ PKGBUILD2019-06-10 16:54:25 UTC (rev 355572)
@@ -1,40 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-wayland
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='Provides APIs for Wayland'
-depends=('qt5-declarative' 'libxcomposite' 'wayland') # namcap note: wayland 
is needed for nvidia-libgl users
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('fb697dc87edaf7015600ee96e242952da761a84e37e7919b3b3821b3427393da')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-wayland/repos/kde-unstable-x86_64/PKGBUILD (from rev 355571, 
qt5-wayland/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:54:25 UTC (rev 355572)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-wayland
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides APIs for Wayland'
+depends=('qt5-declarative' 'libxcomposite' 'wayland') # namcap note: wayland 
is needed for nvidia-libgl users
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('e056c45ff5936f2773b24fd03641fd68b26c2018b80b435e4631f44dea7bfc94')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}

Deleted: qtwayland-kscreenlocker-crash.patch
===
--- qtwayland-kscreenlocker-crash.patch 2019-06-10 16:54:06 UTC (rev 355571)
+++ qtwayland-kscreenlocker-crash.patch 2019-06-10 16:54:25 UTC (rev 355572)
@@ -1,39 +0,0 @@
-From 999bdb0dafe6f65ea41a4faf24ef5062f3dd6bcc Mon Sep 17 00:00:00 2001
-From: Johan Klokkhammer Helsing 
-Date: Tue, 21 May 2019 09:06:30 +0200
-Subject: [PATCH 1/1] Client: Don't crash when the cursor theme fails to load
-
-Fixes: QTBUG-75920
-Change-Id: I29d84b487afb2a90b8a633abce2fcc39ca75adae

- src/client/qwaylandinputdevice.cpp | 7 +++
- 1 file changed, 7 insertions(+)
-
-diff --git a/src/client/qwaylandinputdevice.cpp 
b/src/client/qwaylandinputdevice.cpp
-index 39c02d962..7f6f01cd1 100644
 a/src/client/qwaylandinputdevice.cpp
-+++ b/src/client/qwaylandinputdevice.cpp
-@@ -272,6 +272,10 @@ void QWaylandInputDevice::Pointer::updateCursorTheme()
- int pixelSize = cursorSize() * scale;
- auto *display = seat()->mQDisplay;
- mCursor.theme = display->loadCursorTheme(cursorThemeName(), pixelSize);
-+
-+if (!mCursor.theme)
-+return; // A warning has already been printed in loadCursorTheme
-+
- if (auto *arrow = mCursor.theme->cursorImage(Qt::ArrowCursor)) {
- int arrowPixelSize = qMax(arrow->width, arrow->height); // Not all 
cursor themes are square
- while (scale > 1 && arrowPixelSize / scale < cursorSize())
-@@ -310,6 +314,9 @@ void 

[arch-commits] Commit in qt5-virtualkeyboard/repos/kde-unstable-x86_64 (2 files)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:54:06
  Author: arojas
Revision: 355571

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-virtualkeyboard/repos/kde-unstable-x86_64/PKGBUILD
(from rev 355570, qt5-virtualkeyboard/kde-unstable/PKGBUILD)
Deleted:
  qt5-virtualkeyboard/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:53:57 UTC (rev 355570)
+++ PKGBUILD2019-06-10 16:54:06 UTC (rev 355571)
@@ -1,37 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-
-pkgname=qt5-virtualkeyboard
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3')
-pkgdesc='Virtual keyboard framework'
-depends=('qt5-declarative' 'qt5-svg' 'hunspell')
-makedepends=()
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('e95f858dfd81e70a780f126fa01b23fa80a18b8756c077ee57b6b339a926b00f')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn} CONFIG+="lang-all handwriting"
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-}

Copied: qt5-virtualkeyboard/repos/kde-unstable-x86_64/PKGBUILD (from rev 
355570, qt5-virtualkeyboard/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:54:06 UTC (rev 355571)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=qt5-virtualkeyboard
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3')
+pkgdesc='Virtual keyboard framework'
+depends=('qt5-declarative' 'qt5-svg' 'hunspell')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('1ff9a085c77f35b755c40bdbbc764f658ebdb69697edd6b84c2cadc8795b218a')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn} CONFIG+="lang-all handwriting"
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+}


[arch-commits] Commit in qt5-serialbus/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:53:38
  Author: arojas
Revision: 355568

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-serialbus/repos/kde-unstable-x86_64/PKGBUILD
(from rev 355567, qt5-serialbus/kde-unstable/PKGBUILD)
Deleted:
  qt5-serialbus/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:53:29 UTC (rev 355567)
+++ PKGBUILD2019-06-10 16:53:38 UTC (rev 355568)
@@ -1,40 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-serialbus
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='Qt module for general purpose serial bus access'
-depends=('qt5-serialport')
-makedepends=()
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('ab94e95107f0f0f7c69c963cab7271baa0a457cdd4dc9e2342a4887b33324696')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-serialbus/repos/kde-unstable-x86_64/PKGBUILD (from rev 355567, 
qt5-serialbus/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:53:38 UTC (rev 355568)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-serialbus
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Qt module for general purpose serial bus access'
+depends=('qt5-serialport')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('37aff0f56d325257e5b009fd43be834d34aeff243d3538a242996f2c266aa41a')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-speech/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:53:48
  Author: arojas
Revision: 355569

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-speech/repos/kde-unstable-x86_64/PKGBUILD
(from rev 355568, qt5-speech/kde-unstable/PKGBUILD)
Deleted:
  qt5-speech/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:53:38 UTC (rev 355568)
+++ PKGBUILD2019-06-10 16:53:48 UTC (rev 355569)
@@ -1,41 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgname=qt5-speech
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=(x86_64)
-url='https://www.qt.io'
-license=(GPL3 LGPL3 FDL custom)
-pkgdesc='Qt module to make text to speech and speech recognition easy'
-depends=(qt5-multimedia)
-makedepends=(flite speech-dispatcher)
-optdepends=('flite: flite TTS backend' 'speech-dispatcher: speech-dispatcher 
TTS backend')
-groups=(qt qt5)
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('0b90dc1f8b11a672f319c4000c3753d3102f0f40dd97973f13f8a41ac9fa3e94')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-speech/repos/kde-unstable-x86_64/PKGBUILD (from rev 355568, 
qt5-speech/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:53:48 UTC (rev 355569)
@@ -0,0 +1,41 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=qt5-speech
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Qt module to make text to speech and speech recognition easy'
+depends=(qt5-multimedia)
+makedepends=(flite speech-dispatcher)
+optdepends=('flite: flite TTS backend' 'speech-dispatcher: speech-dispatcher 
TTS backend')
+groups=(qt qt5)
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('cab8eda37fa085b4280b53ff8de8afc4920e8067a771dac8df3b581dd03413d1')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-svg/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:53:57
  Author: arojas
Revision: 355570

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-svg/repos/kde-unstable-x86_64/PKGBUILD
(from rev 355569, qt5-svg/kde-unstable/PKGBUILD)
Deleted:
  qt5-svg/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:53:48 UTC (rev 355569)
+++ PKGBUILD2019-06-10 16:53:57 UTC (rev 355570)
@@ -1,39 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-svg
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='Classes for displaying the contents of SVG files'
-depends=('qt5-base')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('a1fedb178201f5fada7a87759c671321309d499239bc9df801bf2d93dd7b5937')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-svg/repos/kde-unstable-x86_64/PKGBUILD (from rev 355569, 
qt5-svg/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:53:57 UTC (rev 355570)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-svg
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Classes for displaying the contents of SVG files'
+depends=('qt5-base')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('b1b806f076c67b29c2161142150960750e4e11598aaf3b85a8e1fd267e617ae7')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-scxml/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:53:29
  Author: arojas
Revision: 355567

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-scxml/repos/kde-unstable-x86_64/PKGBUILD
(from rev 355566, qt5-scxml/kde-unstable/PKGBUILD)
Deleted:
  qt5-scxml/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:53:18 UTC (rev 355566)
+++ PKGBUILD2019-06-10 16:53:29 UTC (rev 355567)
@@ -1,40 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-
-pkgname=qt5-scxml
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='Static and runtime integration of SCXML models into Qt code'
-depends=('qt5-declarative')
-makedepends=()
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('6efb27cfa7861d50b134a5d0da325c6846621a96d5acbce27304285142dcff26')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-scxml/repos/kde-unstable-x86_64/PKGBUILD (from rev 355566, 
qt5-scxml/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:53:29 UTC (rev 355567)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=qt5-scxml
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Static and runtime integration of SCXML models into Qt code'
+depends=('qt5-declarative')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('eeb82ab6723be5fa0fea326f45a14b7d432f7d48dde83bd5ed4cda59cf637a65')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-script/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:53:18
  Author: arojas
Revision: 355566

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-script/repos/kde-unstable-x86_64/PKGBUILD
(from rev 355565, qt5-script/kde-unstable/PKGBUILD)
Deleted:
  qt5-script/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:53:08 UTC (rev 355565)
+++ PKGBUILD2019-06-10 16:53:18 UTC (rev 355566)
@@ -1,40 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-script
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='Classes for making Qt applications scriptable. Provided for Qt 4.x 
compatibility'
-depends=('qt5-base')
-makedepends=()
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('9b112915e9044ad9135530e49e787f51a33ac6c3c35428921eedd43e87e4fcd7')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-script/repos/kde-unstable-x86_64/PKGBUILD (from rev 355565, 
qt5-script/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:53:18 UTC (rev 355566)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-script
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Classes for making Qt applications scriptable. Provided for Qt 4.x 
compatibility'
+depends=('qt5-base')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('3919d0f4da72893ee165197101bc18792c06db627f9275987a63d1aa86801d2c')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-remoteobjects/repos/kde-unstable-x86_64 (2 files)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:53:08
  Author: arojas
Revision: 355565

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-remoteobjects/repos/kde-unstable-x86_64/PKGBUILD
(from rev 355564, qt5-remoteobjects/kde-unstable/PKGBUILD)
Deleted:
  qt5-remoteobjects/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:52:58 UTC (rev 355564)
+++ PKGBUILD2019-06-10 16:53:08 UTC (rev 355565)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-
-pkgname=qt5-remoteobjects
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=(x86_64)
-url='https://www.qt.io'
-license=(GPL3 LGPL3 FDL custom)
-pkgdesc='Inter-process communication (IPC) module developed for Qt'
-depends=(qt5-base)
-makedepends=(qt5-declarative)
-optdepends=('qt5-declarative: QML bindings')
-groups=(qt qt5)
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('5401dbc8cdc8155c50758402399cf9f06b3ac6d780d20bb4286a35aa5ed1573a')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-remoteobjects/repos/kde-unstable-x86_64/PKGBUILD (from rev 355564, 
qt5-remoteobjects/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:53:08 UTC (rev 355565)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=qt5-remoteobjects
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Inter-process communication (IPC) module developed for Qt'
+depends=(qt5-base)
+makedepends=(qt5-declarative)
+optdepends=('qt5-declarative: QML bindings')
+groups=(qt qt5)
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('23c45b6477be0da7c34a216f8ba3cbc64017a8b24408c4837fdb3ff5995e82cd')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-quickcontrols2/repos/kde-unstable-x86_64 (2 files)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:52:58
  Author: arojas
Revision: 355564

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-quickcontrols2/repos/kde-unstable-x86_64/PKGBUILD
(from rev 355563, qt5-quickcontrols2/kde-unstable/PKGBUILD)
Deleted:
  qt5-quickcontrols2/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:52:48 UTC (rev 355563)
+++ PKGBUILD2019-06-10 16:52:58 UTC (rev 355564)
@@ -1,40 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-quickcontrols2
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='Next generation user interface controls based on Qt Quick'
-depends=('qt5-declarative')
-optdepends=('qt5-graphicaleffects: for the Material style')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('38ff6a75095ebad5266b788b9f993d667b1f99a9ad4d50d7c795eebd0322bfcb')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-quickcontrols2/repos/kde-unstable-x86_64/PKGBUILD (from rev 355563, 
qt5-quickcontrols2/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:52:58 UTC (rev 355564)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-quickcontrols2
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Next generation user interface controls based on Qt Quick'
+depends=('qt5-declarative')
+optdepends=('qt5-graphicaleffects: for the Material style')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('77a5f9dbac116ce786ad5c7d1ac1bbe649df7b7886e0d2ce232924609a247920')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-quickcontrols/repos/kde-unstable-x86_64 (2 files)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:52:48
  Author: arojas
Revision: 355563

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-quickcontrols/repos/kde-unstable-x86_64/PKGBUILD
(from rev 355562, qt5-quickcontrols/kde-unstable/PKGBUILD)
Deleted:
  qt5-quickcontrols/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:52:39 UTC (rev 355562)
+++ PKGBUILD2019-06-10 16:52:48 UTC (rev 355563)
@@ -1,40 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-quickcontrols
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='Reusable Qt Quick based UI controls to create classic desktop-style 
user interfaces'
-depends=('qt5-declarative')
-makedepends=()
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('8d66584fbb75d8a90ae5bdacb1bbf77a45af533a85863f1a88207a3beb23b044')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-quickcontrols/repos/kde-unstable-x86_64/PKGBUILD (from rev 355562, 
qt5-quickcontrols/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:52:48 UTC (rev 355563)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-quickcontrols
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Reusable Qt Quick based UI controls to create classic desktop-style 
user interfaces'
+depends=('qt5-declarative')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('c5e60dd191849359b01f9ef8032878a09b908bc56c45fa049fcc1d764855c23c')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-networkauth/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:52:30
  Author: arojas
Revision: 355561

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-networkauth/repos/kde-unstable-x86_64/PKGBUILD
(from rev 355560, qt5-networkauth/kde-unstable/PKGBUILD)
Deleted:
  qt5-networkauth/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:52:21 UTC (rev 355560)
+++ PKGBUILD2019-06-10 16:52:30 UTC (rev 355561)
@@ -1,39 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgname=qt5-networkauth
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=(x86_64)
-url='https://www.qt.io'
-license=(GPL3 LGPL3 FDL custom)
-pkgdesc='Network authentication module'
-depends=(qt5-base)
-groups=(qt qt5)
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('1d4e81c72086b99f6e275b71704855ef62a86c609ed8c4e81606bdaa53a167bf')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-networkauth/repos/kde-unstable-x86_64/PKGBUILD (from rev 355560, 
qt5-networkauth/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:52:30 UTC (rev 355561)
@@ -0,0 +1,39 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=qt5-networkauth
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Network authentication module'
+depends=(qt5-base)
+groups=(qt qt5)
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('f05543714b9a6d6c2529db416a854f76d80103ba56140ddf2678d8234d196960')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-purchasing/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:52:39
  Author: arojas
Revision: 355562

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-purchasing/repos/kde-unstable-x86_64/PKGBUILD
(from rev 355561, qt5-purchasing/kde-unstable/PKGBUILD)
Deleted:
  qt5-purchasing/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:52:30 UTC (rev 355561)
+++ PKGBUILD2019-06-10 16:52:39 UTC (rev 355562)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-
-pkgname=qt5-purchasing
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='Qt In-App Purchasing API'
-depends=('qt5-base')
-makedepends=('qt5-declarative')
-optdepends=('qt5-declarative: QML bindings')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('ed554adf5c9ec6f605cc05d020486f413d525acafbbeca4722b76e780eacd030')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-purchasing/repos/kde-unstable-x86_64/PKGBUILD (from rev 355561, 
qt5-purchasing/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:52:39 UTC (rev 355562)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=qt5-purchasing
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Qt In-App Purchasing API'
+depends=('qt5-base')
+makedepends=('qt5-declarative')
+optdepends=('qt5-declarative: QML bindings')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('f3d12e54e32d6cdecd5b0fe8f69c74046e2497b7a66cfac1e01c8bb3104a112c')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-multimedia/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:52:21
  Author: arojas
Revision: 355560

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-multimedia/repos/kde-unstable-x86_64/PKGBUILD
(from rev 39, qt5-multimedia/kde-unstable/PKGBUILD)
Deleted:
  qt5-multimedia/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:52:11 UTC (rev 39)
+++ PKGBUILD2019-06-10 16:52:21 UTC (rev 355560)
@@ -1,43 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-multimedia
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='Classes for audio, video, radio and camera functionality'
-depends=('qt5-base' 'gst-plugins-base' 'libpulse' 'openal')
-makedepends=('qt5-declarative' 'gst-plugins-bad')
-optdepends=('qt5-declarative: QML bindings' 'gst-plugins-good: camera support, 
additional plugins'
-'gst-plugins-bad: camera support, additional plugins' 
'gst-plugins-ugly: additional plugins'
-'gst-libav: ffmpeg plugin')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('512bf4b5dde617e9317b455e027a9821ce0b03478779be90e59f8c2e4bd6a6f4')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-multimedia/repos/kde-unstable-x86_64/PKGBUILD (from rev 39, 
qt5-multimedia/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:52:21 UTC (rev 355560)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-multimedia
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Classes for audio, video, radio and camera functionality'
+depends=('qt5-base' 'gst-plugins-base' 'libpulse' 'openal')
+makedepends=('qt5-declarative' 'gst-plugins-bad')
+optdepends=('qt5-declarative: QML bindings' 'gst-plugins-good: camera support, 
additional plugins'
+'gst-plugins-bad: camera support, additional plugins' 
'gst-plugins-ugly: additional plugins'
+'gst-libav: ffmpeg plugin')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('0eaa27e5a207b20614656288e500515e9b657f8c733ad8243c92b32f6c888e5e')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-lottie/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:52:11
  Author: arojas
Revision: 39

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-lottie/repos/kde-unstable-x86_64/PKGBUILD
(from rev 38, qt5-lottie/kde-unstable/PKGBUILD)
Deleted:
  qt5-lottie/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:52:02 UTC (rev 38)
+++ PKGBUILD2019-06-10 16:52:11 UTC (rev 39)
@@ -1,39 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgname=qt5-lottie
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='A family of player software for a certain json-based file format for 
describing 2d vector graphics animations'
-depends=('qt5-declarative')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('5176bf101b73fe8b3fc27a282b46a823f0e6c2c43200dc80c86baeacc24f7ae3')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-lottie/repos/kde-unstable-x86_64/PKGBUILD (from rev 38, 
qt5-lottie/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:52:11 UTC (rev 39)
@@ -0,0 +1,39 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=qt5-lottie
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='A family of player software for a certain json-based file format for 
describing 2d vector graphics animations'
+depends=('qt5-declarative')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('47df29ab2543c8e3272bd2130df57ba2ba6d6944c762db7165eea167b8f9a28c')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-imageformats/repos/kde-unstable-x86_64 (2 files)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:52:02
  Author: arojas
Revision: 38

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-imageformats/repos/kde-unstable-x86_64/PKGBUILD
(from rev 37, qt5-imageformats/kde-unstable/PKGBUILD)
Deleted:
  qt5-imageformats/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:51:53 UTC (rev 37)
+++ PKGBUILD2019-06-10 16:52:02 UTC (rev 38)
@@ -1,36 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-imageformats
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='Plugins for additional image formats: TIFF, MNG, TGA, WBMP'
-depends=('qt5-base' 'jasper' 'libmng' 'libwebp')
-makedepends=()
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('d3e45575f9835575ab49a6fd772e67d85a9337a9f4293edc66b4ec1be1d8d82b')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-imageformats/repos/kde-unstable-x86_64/PKGBUILD (from rev 37, 
qt5-imageformats/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:52:02 UTC (rev 38)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-imageformats
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Plugins for additional image formats: TIFF, MNG, TGA, WBMP'
+depends=('qt5-base' 'jasper' 'libmng' 'libwebp')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('2f2cc0ac0afe75773f35c18d6e65bd79cd89b1ad766209b61e7ffa90d17cb942')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-graphicaleffects/repos/kde-unstable-x86_64 (2 files)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:51:53
  Author: arojas
Revision: 37

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-graphicaleffects/repos/kde-unstable-x86_64/PKGBUILD
(from rev 36, qt5-graphicaleffects/kde-unstable/PKGBUILD)
Deleted:
  qt5-graphicaleffects/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:51:44 UTC (rev 36)
+++ PKGBUILD2019-06-10 16:51:53 UTC (rev 37)
@@ -1,36 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-graphicaleffects
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='Graphical effects for use with Qt Quick 2'
-depends=('qt5-declarative')
-makedepends=()
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('2b4f2e82373d69b8beaafe46921e679309a2f777173c6c78471781615daec720')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-graphicaleffects/repos/kde-unstable-x86_64/PKGBUILD (from rev 
36, qt5-graphicaleffects/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:51:53 UTC (rev 37)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-graphicaleffects
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Graphical effects for use with Qt Quick 2'
+depends=('qt5-declarative')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('5d885888df73d83437a8b219eb1202f0f1326a5a573b121ab8688da72047ff65')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-gamepad/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:51:44
  Author: arojas
Revision: 36

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-gamepad/repos/kde-unstable-x86_64/PKGBUILD
(from rev 35, qt5-gamepad/kde-unstable/PKGBUILD)
Deleted:
  qt5-gamepad/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:46:58 UTC (rev 35)
+++ PKGBUILD2019-06-10 16:51:44 UTC (rev 36)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-
-pkgname=qt5-gamepad
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='Adds support for getting events from gamepad devices'
-depends=('qt5-base' 'sdl2')
-makedepends=('qt5-declarative')
-optdepends=('qt5-declarative: QML bindings')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('bcf6d5f50e86d3900eb970e78efd20cc80e56f0321c38b916efe08cd9d835417')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-gamepad/repos/kde-unstable-x86_64/PKGBUILD (from rev 35, 
qt5-gamepad/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:51:44 UTC (rev 36)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=qt5-gamepad
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Adds support for getting events from gamepad devices'
+depends=('qt5-base' 'sdl2')
+makedepends=('qt5-declarative')
+optdepends=('qt5-declarative: QML bindings')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('a609fdc6036c1b54d88826b4dd2c125828dedb317868c4d4a30fb0fac5e07fa4')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-sensors/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:44:15
  Author: arojas
Revision: 355544

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-sensors/repos/kde-unstable-x86_64/PKGBUILD
(from rev 355543, qt5-sensors/kde-unstable/PKGBUILD)
Deleted:
  qt5-sensors/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:44:02 UTC (rev 355543)
+++ PKGBUILD2019-06-10 16:44:15 UTC (rev 355544)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-sensors
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='Provides access to sensor hardware and motion gesture recognition'
-depends=('qt5-base')
-makedepends=('qt5-declarative')
-optdepends=('qt5-declarative: QML bindings')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('58a998110271aa1aa1376f9661d13eb2a45f3c84be36094e77ff4d7625d3144a')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-sensors/repos/kde-unstable-x86_64/PKGBUILD (from rev 355543, 
qt5-sensors/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:44:15 UTC (rev 355544)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-sensors
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides access to sensor hardware and motion gesture recognition'
+depends=('qt5-base')
+makedepends=('qt5-declarative')
+optdepends=('qt5-declarative: QML bindings')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('152c3148fb04a68f94adfde90ce651e9d8713252a3f8c0002cf7721474d49c8a')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-base/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:43:30
  Author: arojas
Revision: 355541

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-base/repos/kde-unstable-x86_64/PKGBUILD
(from rev 355540, qt5-base/kde-unstable/PKGBUILD)
Deleted:
  qt5-base/repos/kde-unstable-x86_64/PKGBUILD

--+
 PKGBUILD |  202 ++---
 1 file changed, 101 insertions(+), 101 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:34:21 UTC (rev 355540)
+++ PKGBUILD2019-06-10 16:43:30 UTC (rev 355541)
@@ -1,101 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgbase=qt5-base
-pkgname=(qt5-base qt5-xcb-private-headers)
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='A cross-platform application and UI framework'
-depends=('libjpeg-turbo' 'xcb-util-keysyms' 'xcb-util-renderutil' 'libgl' 
'fontconfig' 'xdg-utils'
- 'shared-mime-info' 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 
'xcb-util-image' 'mesa'
- 'tslib' 'libinput' 'libxkbcommon-x11' 'libproxy' 'libcups' 
'double-conversion')
-makedepends=('libfbclient' 'mariadb-libs' 'sqlite' 'unixodbc' 
'postgresql-libs' 'alsa-lib' 'gst-plugins-base-libs'
- 'gtk3' 'libpulse' 'cups' 'freetds' 'vulkan-headers')
-optdepends=('qt5-svg: to use SVG icon themes'
-'qt5-translations: for some native UI translations'
-'postgresql-libs: PostgreSQL driver'
-'mariadb-libs: MariaDB driver'
-'unixodbc: ODBC driver'
-'libfbclient: Firebird/iBase driver'
-'freetds: MS SQL driver'
-'gtk3: GTK platform plugin')
-conflicts=('qtchooser')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgbase/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('03f994bdeb849e69e44c368eed2080787feb01a1c0a583f32ca9633ae4f16589')
-
-prepare() {
-  cd ${_pkgfqn}
-
-  # Build qmake using Arch {C,LD}FLAGS
-  # This also sets default {C,CXX,LD}FLAGS for projects built using qmake
-  sed -i -e "s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}|" \
-mkspecs/common/gcc-base.conf
-  sed -i -e "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}|" \
-mkspecs/common/g++-unix.conf
-}
-
-build() {
-  cd ${_pkgfqn}
-
-  ./configure -confirm-license -opensource -v \
--prefix /usr \
--docdir /usr/share/doc/qt \
--headerdir /usr/include/qt \
--archdatadir /usr/lib/qt \
--datadir /usr/share/qt \
--sysconfdir /etc/xdg \
--examplesdir /usr/share/doc/qt/examples \
--plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
--system-sqlite \
--openssl-linked \
--nomake examples \
--no-rpath \
--optimized-qmake \
--dbus-linked \
--system-harfbuzz \
--journald \
--no-use-gold-linker \
--reduce-relocations
-  make
-}
-
-package_qt5-base() {
-  pkgdesc='A cross-platform application and UI framework'
-
-  cd ${_pkgfqn}
-  make INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 LICENSE* -t "$pkgdir"/usr/share/licenses/$pkgbase
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "${pkgdir}/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  # Fix wrong qmake path in pri file
-  sed -i "s|${srcdir}/${_pkgfqn}|/usr|" \
-"${pkgdir}"/usr/lib/qt/mkspecs/modules/qt_lib_bootstrap_private.pri
-
-  # Symlinks for backwards compatibility
-  for b in "${pkgdir}"/usr/bin/*; do
-ln -s $(basename $b) "${pkgdir}"/usr/bin/$(basename $b)-qt5
-  done
-}
-
-package_qt5-xcb-private-headers() {
-  pkgdesc='Private headers for Qt5 Xcb'
-
-  depends=("qt5-base=$pkgver")
-  optdepends=()
-  groups=()
-  conflicts=()
-
-  cd ${_pkgfqn}
-  install -d -m755 "$pkgdir"/usr/include/qtxcb-private
-  cp -r src/plugins/platforms/xcb/*.h "$pkgdir"/usr/include/qtxcb-private/
-}

Copied: qt5-base/repos/kde-unstable-x86_64/PKGBUILD (from rev 355540, 
qt5-base/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:43:30 UTC (rev 355541)
@@ -0,0 +1,101 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgbase=qt5-base
+pkgname=(qt5-base qt5-xcb-private-headers)
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='A cross-platform application and UI framework'
+depends=('libjpeg-turbo' 'xcb-util-keysyms' 'xcb-util-renderutil' 'libgl' 
'fontconfig' 'xdg-utils'
+ 'shared-mime-info' 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 
'xcb-util-image' 'mesa'
+ 'tslib' 'libinput' 'libxkbcommon-x11' 'libproxy' 'libcups' 
'double-conversion')
+makedepends=('libfbclient' 'mariadb-libs' 'sqlite' 'unixodbc' 

[arch-commits] Commit in qt5-location/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:44:02
  Author: arojas
Revision: 355543

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-location/repos/kde-unstable-x86_64/PKGBUILD
(from rev 355542, qt5-location/kde-unstable/PKGBUILD)
Deleted:
  qt5-location/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:43:50 UTC (rev 355542)
+++ PKGBUILD2019-06-10 16:44:02 UTC (rev 355543)
@@ -1,39 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-location
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='Provides access to position, satellite and area monitoring classes'
-depends=('qt5-declarative')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('d47e86aaeea6bbab9b3ef3a1cb50b79b58db692feb1f9af2d07984bcdf3cec81')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-location/repos/kde-unstable-x86_64/PKGBUILD (from rev 355542, 
qt5-location/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:44:02 UTC (rev 355543)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-location
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides access to position, satellite and area monitoring classes'
+depends=('qt5-declarative')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('36c7d0973f4a911971d446d95009072cb4352a62199ffb4935702f538c0fff9c')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-webchannel/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:45:05
  Author: arojas
Revision: 355548

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-webchannel/repos/kde-unstable-x86_64/PKGBUILD
(from rev 355547, qt5-webchannel/kde-unstable/PKGBUILD)
Deleted:
  qt5-webchannel/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:44:54 UTC (rev 355547)
+++ PKGBUILD2019-06-10 16:45:05 UTC (rev 355548)
@@ -1,40 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-webchannel
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='Provides access to QObject or QML objects from HTML clients for 
seamless integration of Qt applications with HTML/JavaScript clients'
-depends=('qt5-declarative')
-makedepends=()
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('697555b28cd52a645e09c9394b7239f4de8a3e8e493f45444fd158e23d9966d5')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-webchannel/repos/kde-unstable-x86_64/PKGBUILD (from rev 355547, 
qt5-webchannel/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:45:05 UTC (rev 355548)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-webchannel
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides access to QObject or QML objects from HTML clients for 
seamless integration of Qt applications with HTML/JavaScript clients'
+depends=('qt5-declarative')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('d0bf36bdd07fef13759150496c8d8fe48f22d380324e49676d509f1ec62866a9')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


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

2019-06-10 Thread Filipe Laíns via arch-commits
Date: Monday, June 10, 2019 @ 16:42:43
  Author: ffy00
Revision: 479734

archrelease: copy trunk to community-x86_64

Added:
  soapybladerf/repos/community-x86_64/PKGBUILD
(from rev 479733, soapybladerf/trunk/PKGBUILD)
Deleted:
  soapybladerf/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:42:28 UTC (rev 479733)
+++ PKGBUILD2019-06-10 16:42:43 UTC (rev 479734)
@@ -1,33 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=soapybladerf
-pkgver=0.4.0
-_pkgname=SoapyBladeRF
-_gitver=soapy-bladerf-$pkgver
-pkgrel=2
-pkgdesc='Soapy SDR plugin for the BladeRF'
-arch=('x86_64')
-url='https://github.com/pothosware/SoapyBladeRF'
-license=('GPL3')
-depends=('soapysdr' 'bladerf')
-makedepends=('cmake')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$_gitver.tar.gz")
-sha512sums=('69347847e25239c8686506cc7101dd9263b57fa3d3b5f518c915d9a9e0cb7e3a5627ee87ad7afb3022751aa212aa3698d8dbb16b6cddcc597292c7d2f5f806d4')
-
-build() {
-  mkdir -p $_pkgname-$_gitver/build
-  cd $_pkgname-$_gitver/build
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-
-  make
-}
-
-package() {
-  cd $_pkgname-$_gitver/build
-
-  make DESTDIR="$pkgdir" install
-}
-

Copied: soapybladerf/repos/community-x86_64/PKGBUILD (from rev 479733, 
soapybladerf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:42:43 UTC (rev 479734)
@@ -0,0 +1,33 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=soapybladerf
+pkgver=0.4.1
+_pkgname=SoapyBladeRF
+_gitver=soapy-bladerf-$pkgver
+pkgrel=1
+pkgdesc='Soapy SDR plugin for the BladeRF'
+arch=('x86_64')
+url='https://github.com/pothosware/SoapyBladeRF'
+license=('GPL3')
+depends=('soapysdr' 'bladerf')
+makedepends=('cmake')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$_gitver.tar.gz")
+sha512sums=('73cd5c56b6f2faa37fb8eb8aca359061fd2da94fb081c1eb60f61894385f5f0175c9e3955835dc38478e513b0fd5a15fd100123be89e4ad62a0b7134557ab73e')
+
+build() {
+  mkdir -p $_pkgname-$_gitver/build
+  cd $_pkgname-$_gitver/build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+
+  make
+}
+
+package() {
+  cd $_pkgname-$_gitver/build
+
+  make DESTDIR="$pkgdir" install
+}
+


[arch-commits] Commit in qt5-3d/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:46:11
  Author: arojas
Revision: 31

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-3d/repos/kde-unstable-x86_64/PKGBUILD
(from rev 30, qt5-3d/kde-unstable/PKGBUILD)
Deleted:
  qt5-3d/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:46:00 UTC (rev 30)
+++ PKGBUILD2019-06-10 16:46:11 UTC (rev 31)
@@ -1,39 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-3d
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='C++ and QML APIs for easy inclusion of 3D graphics'
-depends=('qt5-declarative' 'assimp')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('bc4e556eccbd2cc57d944d243a9e5ebe1e2d3d44c43ecc9d87edc1cfec69d515')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-3d/repos/kde-unstable-x86_64/PKGBUILD (from rev 30, 
qt5-3d/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:46:11 UTC (rev 31)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-3d
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='C++ and QML APIs for easy inclusion of 3D graphics'
+depends=('qt5-declarative' 'assimp')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('4a9327626c201c0197760580addaf26c43e75484a40cd57ad5f0900bc26e19df')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-doc/repos/kde-unstable-any (PKGBUILD PKGBUILD)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:46:58
  Author: arojas
Revision: 35

archrelease: copy kde-unstable to kde-unstable-any

Added:
  qt5-doc/repos/kde-unstable-any/PKGBUILD
(from rev 34, qt5-doc/kde-unstable/PKGBUILD)
Deleted:
  qt5-doc/repos/kde-unstable-any/PKGBUILD

--+
 PKGBUILD |  162 ++---
 1 file changed, 81 insertions(+), 81 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:46:43 UTC (rev 34)
+++ PKGBUILD2019-06-10 16:46:58 UTC (rev 35)
@@ -1,81 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Michael Hansen 
-
-pkgbase=qt5-doc
-pkgname=(qt5-doc qt5-examples)
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=2
-arch=('any')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-makedepends=('qt5-tools' 'python2' 'pciutils' 'libxtst' 'libxcursor' 
'libxrandr' 'libxss' 'libxcomposite'
- 'gperf' 'nss' 'clang')
-groups=('qt' 'qt5')
-_pkgfqn="qt-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/single/${_pkgfqn}.tar.xz;)
-sha256sums=('5febada464e27908e03d3d177389060d89821ecc3a4ac684a28e389d570a8b4b')
-
-prepare() {
-  cd ${_pkgfqn}
-
-  ln -s /usr/bin qttools/
-  ln -s /usr/bin/{rcc,uic,moc} qtbase/bin/
-
-  # Hack to force using python2
-  cd "$srcdir"
-  mkdir -p bin
-  ln -s /usr/bin/python2 bin/python
-}
-
-build() {
-  cd ${_pkgfqn}
-
-  export PATH="$srcdir/bin:$PATH"
-  PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource \
--prefix /usr \
--docdir /usr/share/doc/qt \
--headerdir /usr/include/qt \
--archdatadir /usr/lib/qt \
--datadir /usr/share/qt \
--sysconfdir /etc/xdg \
--nomake examples
-  make docs
-}
-
-package_qt5-doc() {
-  pkgdesc='A cross-platform application and UI framework (Documentation)'
-  depends=('qt5-base')
-
-  cd ${_pkgfqn}
-  make INSTALL_ROOT="$pkgdir" install_docs
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}
-
-package_qt5-examples() {
-  pkgdesc='Examples and demos from qt5 documentation'
-  depends=('qt5-doc')
-
-  _base="$pkgdir"/usr/share/doc/qt/examples
-
-  # The various example dirs have conflicting .pro files, but
-  # QtCreator requires them to be in the same top-level directory.
-  # Matching the Qt5 installer, only the qtbase project is kept.
-  mkdir -p $_base
-  cp ${_pkgfqn}/qtbase/examples/examples.pro $_base
-
-  _fdirs=$(find "${_pkgfqn}" -maxdepth 2 -type d -name examples)
-  for _dir in $_fdirs; do
-  _mod=$(basename ${_dir%/examples})
-
-  if [ -e "$_dir/README" ]; then
-cp $_dir/README $_dir/README.$_mod
-  fi
-
-# mkdir $_base/$_mod
-  cp -rn $_dir/* $_base
-  done
-}

Copied: qt5-doc/repos/kde-unstable-any/PKGBUILD (from rev 34, 
qt5-doc/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:46:58 UTC (rev 35)
@@ -0,0 +1,81 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Michael Hansen 
+
+pkgbase=qt5-doc
+pkgname=(qt5-doc qt5-examples)
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('any')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+makedepends=('qt5-tools' 'python2' 'pciutils' 'libxtst' 'libxcursor' 
'libxrandr' 'libxss' 'libxcomposite'
+ 'gperf' 'nss' 'clang')
+groups=('qt' 'qt5')
+_pkgfqn="qt-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/single/${_pkgfqn}.tar.xz;)
+sha256sums=('cf2601065f70724c0fe8aedfaa253f15078954d22b5d32a036a624570cc6b491')
+
+prepare() {
+  cd ${_pkgfqn}
+
+  ln -s /usr/bin qttools/
+  ln -s /usr/bin/{rcc,uic,moc} qtbase/bin/
+
+  # Hack to force using python2
+  cd "$srcdir"
+  mkdir -p bin
+  ln -s /usr/bin/python2 bin/python
+}
+
+build() {
+  cd ${_pkgfqn}
+
+  export PATH="$srcdir/bin:$PATH"
+  PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource \
+-prefix /usr \
+-docdir /usr/share/doc/qt \
+-headerdir /usr/include/qt \
+-archdatadir /usr/lib/qt \
+-datadir /usr/share/qt \
+-sysconfdir /etc/xdg \
+-nomake examples
+  make docs
+}
+
+package_qt5-doc() {
+  pkgdesc='A cross-platform application and UI framework (Documentation)'
+  depends=('qt5-base')
+
+  cd ${_pkgfqn}
+  make INSTALL_ROOT="$pkgdir" install_docs
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}
+
+package_qt5-examples() {
+  pkgdesc='Examples and demos from qt5 documentation'
+  depends=('qt5-doc')
+
+  _base="$pkgdir"/usr/share/doc/qt/examples
+
+  # The various example dirs have conflicting .pro files, but
+  # QtCreator requires them to be in the same top-level 

[arch-commits] Commit in qt5-charts/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:46:22
  Author: arojas
Revision: 32

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-charts/repos/kde-unstable-x86_64/PKGBUILD
(from rev 31, qt5-charts/kde-unstable/PKGBUILD)
Deleted:
  qt5-charts/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:46:11 UTC (rev 31)
+++ PKGBUILD2019-06-10 16:46:22 UTC (rev 32)
@@ -1,38 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-
-pkgname=qt5-charts
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3')
-pkgdesc='Provides a set of easy to use chart components'
-depends=('qt5-base')
-makedepends=('qt5-declarative')
-optdepends=('qt5-declarative: QML bindings')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('b51be1c0972fc1c8c9f44a5daf03f7c644d37dbf6fb179e0bf51178b325ad89a')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-}

Copied: qt5-charts/repos/kde-unstable-x86_64/PKGBUILD (from rev 31, 
qt5-charts/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:46:22 UTC (rev 32)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=qt5-charts
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3')
+pkgdesc='Provides a set of easy to use chart components'
+depends=('qt5-base')
+makedepends=('qt5-declarative')
+optdepends=('qt5-declarative: QML bindings')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('103b662acb0c0827fe2232295d8f4c4cb699a65b129f5ef4b96a54e3dbee2b3a')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+}


[arch-commits] Commit in qt5-connectivity/repos/kde-unstable-x86_64 (2 files)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:46:33
  Author: arojas
Revision: 33

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-connectivity/repos/kde-unstable-x86_64/PKGBUILD
(from rev 32, qt5-connectivity/kde-unstable/PKGBUILD)
Deleted:
  qt5-connectivity/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:46:22 UTC (rev 32)
+++ PKGBUILD2019-06-10 16:46:33 UTC (rev 33)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-connectivity
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='Provides access to Bluetooth hardware'
-depends=('qt5-base' 'bluez-libs')
-makedepends=('qt5-declarative')
-optdepends=('qt5-declarative: QML bindings')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('57e489c4fea104421e4bbaeba1225588e77a84294b561b9f201522c20b11e6de')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-connectivity/repos/kde-unstable-x86_64/PKGBUILD (from rev 32, 
qt5-connectivity/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:46:33 UTC (rev 33)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-connectivity
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides access to Bluetooth hardware'
+depends=('qt5-base' 'bluez-libs')
+makedepends=('qt5-declarative')
+optdepends=('qt5-declarative: QML bindings')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('2d95ce0a7fd61cbc777367781bab8efc584b3b452351d095b05b78133ce4ceeb')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-datavis3d/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:46:43
  Author: arojas
Revision: 34

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-datavis3d/repos/kde-unstable-x86_64/PKGBUILD
(from rev 33, qt5-datavis3d/kde-unstable/PKGBUILD)
Deleted:
  qt5-datavis3d/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:46:33 UTC (rev 33)
+++ PKGBUILD2019-06-10 16:46:43 UTC (rev 34)
@@ -1,38 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-
-pkgname=qt5-datavis3d
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3')
-pkgdesc='Qt Data Visualization module'
-depends=('qt5-base')
-makedepends=('qt5-declarative')
-optdepends=('qt5-declarative: QML bindings')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('b6e53e47c8c68141d02eee01b1abc40abb68846e962b3109097ad02ea3457406')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-}

Copied: qt5-datavis3d/repos/kde-unstable-x86_64/PKGBUILD (from rev 33, 
qt5-datavis3d/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:46:43 UTC (rev 34)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=qt5-datavis3d
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3')
+pkgdesc='Qt Data Visualization module'
+depends=('qt5-base')
+makedepends=('qt5-declarative')
+optdepends=('qt5-declarative: QML bindings')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('b2a69b19993cfa9ff6545f29afabc86e58b8c3927e5b729b2fc796d8594a427b')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+}


[arch-commits] Commit in qt5-websockets/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2019-06-10 Thread Antonio Rojas via arch-commits
Date: Monday, June 10, 2019 @ 16:46:00
  Author: arojas
Revision: 30

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-websockets/repos/kde-unstable-x86_64/PKGBUILD
(from rev 355549, qt5-websockets/kde-unstable/PKGBUILD)
Deleted:
  qt5-websockets/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-10 16:45:17 UTC (rev 355549)
+++ PKGBUILD2019-06-10 16:46:00 UTC (rev 30)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-websockets
-_qtver=5.13.0-rc
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='Provides WebSocket communication compliant with RFC 6455'
-depends=('qt5-base')
-makedepends=('qt5-declarative')
-optdepends=('qt5-declarative: QML bindings')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
-source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('89bd9fb19b65a9607f05abd0564ce403947097741db35c8257ffaf7076b08f87')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-websockets/repos/kde-unstable-x86_64/PKGBUILD (from rev 355549, 
qt5-websockets/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-10 16:46:00 UTC (rev 30)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-websockets
+_qtver=5.13.0-rc2
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides WebSocket communication compliant with RFC 6455'
+depends=('qt5-base')
+makedepends=('qt5-declarative')
+optdepends=('qt5-declarative: QML bindings')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('1260cb837ba982198969bbcf6ea856a4fda19f67c76114cccb4204460ef6e18d')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


  1   2   3   >