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

2017-01-01 Thread Gaëtan Bisson
Date: Sunday, January 1, 2017 @ 08:15:23
  Author: bisson
Revision: 203472

rebuild against libldns.so.2

Modified:
  dnscrypt-proxy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 07:58:34 UTC (rev 203471)
+++ PKGBUILD2017-01-01 08:15:23 UTC (rev 203472)
@@ -5,7 +5,7 @@
 
 pkgname=dnscrypt-proxy
 pkgver=1.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A tool for securing communications between a client and a DNS 
resolver"
 arch=('i686' 'x86_64')
 url="http://dnscrypt.org/";


[arch-commits] Commit in dnscrypt-proxy/repos (6 files)

2017-01-01 Thread Gaëtan Bisson
Date: Sunday, January 1, 2017 @ 08:15:57
  Author: bisson
Revision: 203473

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  dnscrypt-proxy/repos/community-staging-i686/
  dnscrypt-proxy/repos/community-staging-i686/PKGBUILD
(from rev 203472, dnscrypt-proxy/trunk/PKGBUILD)
  dnscrypt-proxy/repos/community-staging-i686/dnscrypt-proxy.install
(from rev 203472, dnscrypt-proxy/trunk/dnscrypt-proxy.install)
  dnscrypt-proxy/repos/community-staging-x86_64/
  dnscrypt-proxy/repos/community-staging-x86_64/PKGBUILD
(from rev 203472, dnscrypt-proxy/trunk/PKGBUILD)
  dnscrypt-proxy/repos/community-staging-x86_64/dnscrypt-proxy.install
(from rev 203472, dnscrypt-proxy/trunk/dnscrypt-proxy.install)

-+
 community-staging-i686/PKGBUILD |   44 ++
 community-staging-i686/dnscrypt-proxy.install   |6 +++
 community-staging-x86_64/PKGBUILD   |   44 ++
 community-staging-x86_64/dnscrypt-proxy.install |6 +++
 4 files changed, 100 insertions(+)

Copied: dnscrypt-proxy/repos/community-staging-i686/PKGBUILD (from rev 203472, 
dnscrypt-proxy/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-01-01 08:15:57 UTC (rev 203473)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Techlive Zheng 
+# Contributor: peace4all 
+
+pkgname=dnscrypt-proxy
+pkgver=1.9.0
+pkgrel=2
+pkgdesc="A tool for securing communications between a client and a DNS 
resolver"
+arch=('i686' 'x86_64')
+url="http://dnscrypt.org/";
+license=('custom:ISC')
+depends=('libsodium' 'systemd' 'libtool' 'ldns')
+install=dnscrypt-proxy.install
+backup=('etc/dnscrypt-proxy.conf')
+source=("http://download.dnscrypt.org/$pkgname/$pkgname-$pkgver.tar.gz";)
+sha512sums=('62623c9f10d4d0b459a4f4efc85231f3683cf2379dc32fcbc5c4c691daa5050924bf65e1ef4782848f8698f76141272aed7221c6cdd13884d6d25bec264c4b7c')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  sed -e '/--resolver-name/d' \
+  -e '/--user/d' \
+  -e 's|^ExecStart=.*|ExecStart=/usr/bin/dnscrypt-proxy 
/etc/dnscrypt-proxy.conf|' \
+  -i dnscrypt-proxy.service
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sbindir=/usr/bin --sysconfdir=/etc --with-systemd
+  make -j2
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  mkdir -p "$pkgdir"/{usr/share/{licenses,doc}/$pkgname,usr/lib/systemd/system}
+  install -m 644 COPYING "$pkgdir"/usr/share/licenses/$pkgname
+  install -m 644 AUTHORS NEWS README README.markdown 
"$pkgdir"/usr/share/doc/$pkgname
+  install -m 644 dnscrypt-proxy.service "$pkgdir"/usr/lib/systemd/system
+  install -m 644 dnscrypt-proxy.socket "$pkgdir"/usr/lib/systemd/system
+}

Copied: dnscrypt-proxy/repos/community-staging-i686/dnscrypt-proxy.install 
(from rev 203472, dnscrypt-proxy/trunk/dnscrypt-proxy.install)
===
--- community-staging-i686/dnscrypt-proxy.install   
(rev 0)
+++ community-staging-i686/dnscrypt-proxy.install   2017-01-01 08:15:57 UTC 
(rev 203473)
@@ -0,0 +1,6 @@
+post_upgrade() {
+  if [ "$(vercmp $2 1.8.1-1)" -lt 0 ]
+  then
+echo 'Since 1.8.1-1 there is a new configuration file at 
/etc/dnscrypt-proxy.conf. The systemd unit has been configured to use it, so 
please adjust your settings there.'
+  fi
+}

Copied: dnscrypt-proxy/repos/community-staging-x86_64/PKGBUILD (from rev 
203472, dnscrypt-proxy/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-01-01 08:15:57 UTC (rev 203473)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Techlive Zheng 
+# Contributor: peace4all 
+
+pkgname=dnscrypt-proxy
+pkgver=1.9.0
+pkgrel=2
+pkgdesc="A tool for securing communications between a client and a DNS 
resolver"
+arch=('i686' 'x86_64')
+url="http://dnscrypt.org/";
+license=('custom:ISC')
+depends=('libsodium' 'systemd' 'libtool' 'ldns')
+install=dnscrypt-proxy.install
+backup=('etc/dnscrypt-proxy.conf')
+source=("http://download.dnscrypt.org/$pkgname/$pkgname-$pkgver.tar.gz";)
+sha512sums=('62623c9f10d4d0b459a4f4efc85231f3683cf2379dc32fcbc5c4c691daa5050924bf65e1ef4782848f8698f76141272aed7221c6cdd13884d6d25bec264c4b7c')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  sed -e '/--resolver-name/d' \
+  -e '/--user/d' \
+  -e 's|^ExecStart=.*|ExecStart=/usr/bin/dnscrypt-proxy 
/etc/dnscrypt-proxy.conf|' \
+  -i dnscrypt-proxy.service
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sbindir=/usr/bin --sysconfdir=/etc --with-systemd
+  make -j2
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+

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

2017-01-01 Thread Gaëtan Bisson
Date: Sunday, January 1, 2017 @ 08:40:34
  Author: bisson
Revision: 285009

rebuild against libldns.so.2

Modified:
  openssh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 07:56:13 UTC (rev 285008)
+++ PKGBUILD2017-01-01 08:40:34 UTC (rev 285009)
@@ -5,7 +5,7 @@
 
 pkgname=openssh
 pkgver=7.4p1
-pkgrel=1
+pkgrel=2
 pkgdesc='Free version of the SSH connectivity tools'
 url='https://www.openssh.com/portable.html'
 license=('custom:BSD')


[arch-commits] Commit in openssh/repos (16 files)

2017-01-01 Thread Gaëtan Bisson
Date: Sunday, January 1, 2017 @ 08:42:19
  Author: bisson
Revision: 285010

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  openssh/repos/staging-i686/
  openssh/repos/staging-i686/PKGBUILD
(from rev 285009, openssh/trunk/PKGBUILD)
  openssh/repos/staging-i686/sshd.conf
(from rev 285009, openssh/trunk/sshd.conf)
  openssh/repos/staging-i686/sshd.pam
(from rev 285009, openssh/trunk/sshd.pam)
  openssh/repos/staging-i686/sshd.service
(from rev 285009, openssh/trunk/sshd.service)
  openssh/repos/staging-i686/sshd.socket
(from rev 285009, openssh/trunk/sshd.socket)
  openssh/repos/staging-i686/sshd@.service
(from rev 285009, openssh/trunk/sshd@.service)
  openssh/repos/staging-i686/sshdgenkeys.service
(from rev 285009, openssh/trunk/sshdgenkeys.service)
  openssh/repos/staging-x86_64/
  openssh/repos/staging-x86_64/PKGBUILD
(from rev 285009, openssh/trunk/PKGBUILD)
  openssh/repos/staging-x86_64/sshd.conf
(from rev 285009, openssh/trunk/sshd.conf)
  openssh/repos/staging-x86_64/sshd.pam
(from rev 285009, openssh/trunk/sshd.pam)
  openssh/repos/staging-x86_64/sshd.service
(from rev 285009, openssh/trunk/sshd.service)
  openssh/repos/staging-x86_64/sshd.socket
(from rev 285009, openssh/trunk/sshd.socket)
  openssh/repos/staging-x86_64/sshd@.service
(from rev 285009, openssh/trunk/sshd@.service)
  openssh/repos/staging-x86_64/sshdgenkeys.service
(from rev 285009, openssh/trunk/sshdgenkeys.service)

+
 staging-i686/PKGBUILD  |   89 +++
 staging-i686/sshd.conf |1 
 staging-i686/sshd.pam  |6 ++
 staging-i686/sshd.service  |   17 ++
 staging-i686/sshd.socket   |   10 +++
 staging-i686/sshd@.service |8 +++
 staging-i686/sshdgenkeys.service   |   15 +
 staging-x86_64/PKGBUILD|   89 +++
 staging-x86_64/sshd.conf   |1 
 staging-x86_64/sshd.pam|6 ++
 staging-x86_64/sshd.service|   17 ++
 staging-x86_64/sshd.socket |   10 +++
 staging-x86_64/sshd@.service   |8 +++
 staging-x86_64/sshdgenkeys.service |   15 +
 14 files changed, 292 insertions(+)

Copied: openssh/repos/staging-i686/PKGBUILD (from rev 285009, 
openssh/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-01-01 08:42:19 UTC (rev 285010)
@@ -0,0 +1,89 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Aaron Griffin 
+# Contributor: judd 
+
+pkgname=openssh
+pkgver=7.4p1
+pkgrel=2
+pkgdesc='Free version of the SSH connectivity tools'
+url='https://www.openssh.com/portable.html'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+makedepends=('linux-headers')
+depends=('krb5' 'openssl' 'libedit' 'ldns')
+optdepends=('xorg-xauth: X11 forwarding'
+'x11-ssh-askpass: input passphrase in X')
+validpgpkeys=('59C2118ED206D927E667EBE3D3E5F56B6D920D30')
+source=("https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz"{,.asc}
+'sshdgenkeys.service'
+'sshd@.service'
+'sshd.service'
+'sshd.socket'
+'sshd.conf'
+'sshd.pam')
+sha1sums=('2330bbf82ed08cf3ac70e0acf00186ef3eeb97e0' 'SKIP'
+  'caaa801da59a5d14c0c29c43e9de5fef281ea03e'
+  '6a0ff3305692cf83aca96e10f3bb51e1c26fccda'
+  'ec49c6beba923e201505f5669cea48cad29014db'
+  'e12fa910b26a5634e5a6ac39ce1399a132cf6796'
+  'c9b2e4ce259cd62ddb00364d3ee6f00a8bf2d05f'
+  'd93dca5ebda4610ff7647187f8928a3de28703f3')
+
+backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/ssh \
+   --sysconfdir=/etc/ssh \
+   --with-ldns \
+   --with-libedit \
+   --with-ssl-engine \
+   --with-pam \
+   --with-privsep-user=nobody \
+   --with-kerberos5=/usr \
+   --with-xauth=/usr/bin/xauth \
+   --with-md5-passwords \
+   --with-pid-dir=/run \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   make tests
+
+   # Connectivity tests will fail with makechrootpkg since
+   # it runs as nobody which has /bin/false as login shell.
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   make DESTDIR="${pkgdir}" install
+
+   ln -sf ssh.1.gz "${pkgdir}"/usr/share/man/man1/slogin.1.gz
+   install -Dm644 LICENCE "${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
+
+   install -Dm644 ../sshdgenkeys.service 
"${pkgdir}"/usr/lib/systemd/system/sshdgenkeys.service
+   install -Dm644 ../sshd

[arch-commits] Commit in ldns/repos (6 files)

2017-01-01 Thread Gaëtan Bisson
Date: Sunday, January 1, 2017 @ 08:43:59
  Author: bisson
Revision: 285011

db-move: moved ldns from [staging] to [testing] (i686, x86_64)

Added:
  ldns/repos/testing-i686/
  ldns/repos/testing-i686/PKGBUILD
(from rev 285010, ldns/repos/staging-i686/PKGBUILD)
  ldns/repos/testing-x86_64/
  ldns/repos/testing-x86_64/PKGBUILD
(from rev 285010, ldns/repos/staging-x86_64/PKGBUILD)
Deleted:
  ldns/repos/staging-i686/
  ldns/repos/staging-x86_64/

-+
 testing-i686/PKGBUILD   |   39 +++
 testing-x86_64/PKGBUILD |   39 +++
 2 files changed, 78 insertions(+)

Copied: ldns/repos/testing-i686/PKGBUILD (from rev 285010, 
ldns/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-01-01 08:43:59 UTC (rev 285011)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: mathieui 
+# Contributor: jiribb 
+
+pkgname=ldns
+pkgver=1.7.0
+pkgrel=1
+pkgdesc='Fast DNS library supporting recent RFCs'
+url='https://www.nlnetlabs.nl/projects/ldns/'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+depends=('openssl' 'dnssec-anchors')
+optdepends=('libpcap: ldns-dpa tool')
+makedepends=('libpcap')
+source=("https://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+sha1sums=('ceeeccf8a27e61a854762737f6ee02f44662c1b8')
+
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --disable-rpath \
+   --with-drill \
+   --with-examples \
+   --with-trust-anchor=/etc/trusted-key.key \
+   --disable-dane-verify # needs openssl>=1.1.0
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   install -D -m644 LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: ldns/repos/testing-x86_64/PKGBUILD (from rev 285010, 
ldns/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-01-01 08:43:59 UTC (rev 285011)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: mathieui 
+# Contributor: jiribb 
+
+pkgname=ldns
+pkgver=1.7.0
+pkgrel=1
+pkgdesc='Fast DNS library supporting recent RFCs'
+url='https://www.nlnetlabs.nl/projects/ldns/'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+depends=('openssl' 'dnssec-anchors')
+optdepends=('libpcap: ldns-dpa tool')
+makedepends=('libpcap')
+source=("https://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+sha1sums=('ceeeccf8a27e61a854762737f6ee02f44662c1b8')
+
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --disable-rpath \
+   --with-drill \
+   --with-examples \
+   --with-trust-anchor=/etc/trusted-key.key \
+   --disable-dane-verify # needs openssl>=1.1.0
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   install -D -m644 LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2017-01-01 Thread Gaëtan Bisson
Date: Sunday, January 1, 2017 @ 08:44:31
  Author: bisson
Revision: 203474

db-move: moved dnscrypt-proxy from [community-staging] to [community-testing] 
(i686, x86_64)

Added:
  dnscrypt-proxy/repos/community-testing-i686/
  dnscrypt-proxy/repos/community-testing-i686/PKGBUILD
(from rev 203473, dnscrypt-proxy/repos/community-staging-i686/PKGBUILD)
  dnscrypt-proxy/repos/community-testing-i686/dnscrypt-proxy.install
(from rev 203473, 
dnscrypt-proxy/repos/community-staging-i686/dnscrypt-proxy.install)
  dnscrypt-proxy/repos/community-testing-x86_64/
  dnscrypt-proxy/repos/community-testing-x86_64/PKGBUILD
(from rev 203473, dnscrypt-proxy/repos/community-staging-x86_64/PKGBUILD)
  dnscrypt-proxy/repos/community-testing-x86_64/dnscrypt-proxy.install
(from rev 203473, 
dnscrypt-proxy/repos/community-staging-x86_64/dnscrypt-proxy.install)
Deleted:
  dnscrypt-proxy/repos/community-staging-i686/
  dnscrypt-proxy/repos/community-staging-x86_64/

-+
 community-testing-i686/PKGBUILD |   44 ++
 community-testing-i686/dnscrypt-proxy.install   |6 +++
 community-testing-x86_64/PKGBUILD   |   44 ++
 community-testing-x86_64/dnscrypt-proxy.install |6 +++
 4 files changed, 100 insertions(+)

Copied: dnscrypt-proxy/repos/community-testing-i686/PKGBUILD (from rev 203473, 
dnscrypt-proxy/repos/community-staging-i686/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-01-01 08:44:31 UTC (rev 203474)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Techlive Zheng 
+# Contributor: peace4all 
+
+pkgname=dnscrypt-proxy
+pkgver=1.9.0
+pkgrel=2
+pkgdesc="A tool for securing communications between a client and a DNS 
resolver"
+arch=('i686' 'x86_64')
+url="http://dnscrypt.org/";
+license=('custom:ISC')
+depends=('libsodium' 'systemd' 'libtool' 'ldns')
+install=dnscrypt-proxy.install
+backup=('etc/dnscrypt-proxy.conf')
+source=("http://download.dnscrypt.org/$pkgname/$pkgname-$pkgver.tar.gz";)
+sha512sums=('62623c9f10d4d0b459a4f4efc85231f3683cf2379dc32fcbc5c4c691daa5050924bf65e1ef4782848f8698f76141272aed7221c6cdd13884d6d25bec264c4b7c')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  sed -e '/--resolver-name/d' \
+  -e '/--user/d' \
+  -e 's|^ExecStart=.*|ExecStart=/usr/bin/dnscrypt-proxy 
/etc/dnscrypt-proxy.conf|' \
+  -i dnscrypt-proxy.service
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sbindir=/usr/bin --sysconfdir=/etc --with-systemd
+  make -j2
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  mkdir -p "$pkgdir"/{usr/share/{licenses,doc}/$pkgname,usr/lib/systemd/system}
+  install -m 644 COPYING "$pkgdir"/usr/share/licenses/$pkgname
+  install -m 644 AUTHORS NEWS README README.markdown 
"$pkgdir"/usr/share/doc/$pkgname
+  install -m 644 dnscrypt-proxy.service "$pkgdir"/usr/lib/systemd/system
+  install -m 644 dnscrypt-proxy.socket "$pkgdir"/usr/lib/systemd/system
+}

Copied: dnscrypt-proxy/repos/community-testing-i686/dnscrypt-proxy.install 
(from rev 203473, 
dnscrypt-proxy/repos/community-staging-i686/dnscrypt-proxy.install)
===
--- community-testing-i686/dnscrypt-proxy.install   
(rev 0)
+++ community-testing-i686/dnscrypt-proxy.install   2017-01-01 08:44:31 UTC 
(rev 203474)
@@ -0,0 +1,6 @@
+post_upgrade() {
+  if [ "$(vercmp $2 1.8.1-1)" -lt 0 ]
+  then
+echo 'Since 1.8.1-1 there is a new configuration file at 
/etc/dnscrypt-proxy.conf. The systemd unit has been configured to use it, so 
please adjust your settings there.'
+  fi
+}

Copied: dnscrypt-proxy/repos/community-testing-x86_64/PKGBUILD (from rev 
203473, dnscrypt-proxy/repos/community-staging-x86_64/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-01-01 08:44:31 UTC (rev 203474)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Techlive Zheng 
+# Contributor: peace4all 
+
+pkgname=dnscrypt-proxy
+pkgver=1.9.0
+pkgrel=2
+pkgdesc="A tool for securing communications between a client and a DNS 
resolver"
+arch=('i686' 'x86_64')
+url="http://dnscrypt.org/";
+license=('custom:ISC')
+depends=('libsodium' 'systemd' 'libtool' 'ldns')
+install=dnscrypt-proxy.install
+backup=('etc/dnscrypt-proxy.conf')
+source=("http://download.dnscrypt.org/$pkgname/$pkgname-$pkgver.tar.gz";)
+sha512sums=('62623c9f10d4d0b459a4f4efc85231f3683cf2379dc32fcbc5c4c691daa5050924bf65e1ef4782848f8698f76141272aed7221c6cdd13884d6d25bec264c4b7c')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  sed -e '/--resolver-name/d' \
+  -e '/--user/d' \
+  -e 's|^ExecStart=.*|ExecStart=/usr/

[arch-commits] Commit in openssh/repos (18 files)

2017-01-01 Thread Gaëtan Bisson
Date: Sunday, January 1, 2017 @ 08:44:02
  Author: bisson
Revision: 285012

db-move: moved openssh from [staging] to [testing] (i686, x86_64)

Added:
  openssh/repos/testing-i686/
  openssh/repos/testing-i686/PKGBUILD
(from rev 285011, openssh/repos/staging-i686/PKGBUILD)
  openssh/repos/testing-i686/sshd.conf
(from rev 285011, openssh/repos/staging-i686/sshd.conf)
  openssh/repos/testing-i686/sshd.pam
(from rev 285011, openssh/repos/staging-i686/sshd.pam)
  openssh/repos/testing-i686/sshd.service
(from rev 285011, openssh/repos/staging-i686/sshd.service)
  openssh/repos/testing-i686/sshd.socket
(from rev 285011, openssh/repos/staging-i686/sshd.socket)
  openssh/repos/testing-i686/sshd@.service
(from rev 285011, openssh/repos/staging-i686/sshd@.service)
  openssh/repos/testing-i686/sshdgenkeys.service
(from rev 285011, openssh/repos/staging-i686/sshdgenkeys.service)
  openssh/repos/testing-x86_64/
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 285011, openssh/repos/staging-x86_64/PKGBUILD)
  openssh/repos/testing-x86_64/sshd.conf
(from rev 285011, openssh/repos/staging-x86_64/sshd.conf)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 285011, openssh/repos/staging-x86_64/sshd.pam)
  openssh/repos/testing-x86_64/sshd.service
(from rev 285011, openssh/repos/staging-x86_64/sshd.service)
  openssh/repos/testing-x86_64/sshd.socket
(from rev 285011, openssh/repos/staging-x86_64/sshd.socket)
  openssh/repos/testing-x86_64/sshd@.service
(from rev 285011, openssh/repos/staging-x86_64/sshd@.service)
  openssh/repos/testing-x86_64/sshdgenkeys.service
(from rev 285011, openssh/repos/staging-x86_64/sshdgenkeys.service)
Deleted:
  openssh/repos/staging-i686/
  openssh/repos/staging-x86_64/

+
 testing-i686/PKGBUILD  |   89 +++
 testing-i686/sshd.conf |1 
 testing-i686/sshd.pam  |6 ++
 testing-i686/sshd.service  |   17 ++
 testing-i686/sshd.socket   |   10 +++
 testing-i686/sshd@.service |8 +++
 testing-i686/sshdgenkeys.service   |   15 +
 testing-x86_64/PKGBUILD|   89 +++
 testing-x86_64/sshd.conf   |1 
 testing-x86_64/sshd.pam|6 ++
 testing-x86_64/sshd.service|   17 ++
 testing-x86_64/sshd.socket |   10 +++
 testing-x86_64/sshd@.service   |8 +++
 testing-x86_64/sshdgenkeys.service |   15 +
 14 files changed, 292 insertions(+)

Copied: openssh/repos/testing-i686/PKGBUILD (from rev 285011, 
openssh/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-01-01 08:44:02 UTC (rev 285012)
@@ -0,0 +1,89 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Aaron Griffin 
+# Contributor: judd 
+
+pkgname=openssh
+pkgver=7.4p1
+pkgrel=2
+pkgdesc='Free version of the SSH connectivity tools'
+url='https://www.openssh.com/portable.html'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+makedepends=('linux-headers')
+depends=('krb5' 'openssl' 'libedit' 'ldns')
+optdepends=('xorg-xauth: X11 forwarding'
+'x11-ssh-askpass: input passphrase in X')
+validpgpkeys=('59C2118ED206D927E667EBE3D3E5F56B6D920D30')
+source=("https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz"{,.asc}
+'sshdgenkeys.service'
+'sshd@.service'
+'sshd.service'
+'sshd.socket'
+'sshd.conf'
+'sshd.pam')
+sha1sums=('2330bbf82ed08cf3ac70e0acf00186ef3eeb97e0' 'SKIP'
+  'caaa801da59a5d14c0c29c43e9de5fef281ea03e'
+  '6a0ff3305692cf83aca96e10f3bb51e1c26fccda'
+  'ec49c6beba923e201505f5669cea48cad29014db'
+  'e12fa910b26a5634e5a6ac39ce1399a132cf6796'
+  'c9b2e4ce259cd62ddb00364d3ee6f00a8bf2d05f'
+  'd93dca5ebda4610ff7647187f8928a3de28703f3')
+
+backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/ssh \
+   --sysconfdir=/etc/ssh \
+   --with-ldns \
+   --with-libedit \
+   --with-ssl-engine \
+   --with-pam \
+   --with-privsep-user=nobody \
+   --with-kerberos5=/usr \
+   --with-xauth=/usr/bin/xauth \
+   --with-md5-passwords \
+   --with-pid-dir=/run \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   make tests
+
+   # Connectivity tests will fail with makechrootpkg since
+   # it runs as nobody which has /bin/false as login shell.
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   make DESTDIR="${pkgdir}" in

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

2017-01-01 Thread Jelle van der Waa
Date: Sunday, January 1, 2017 @ 14:33:58
  Author: jelle
Revision: 203475

upgpkg: calibre 2.76.0-1

Modified:
  calibre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 08:44:31 UTC (rev 203474)
+++ PKGBUILD2017-01-01 14:33:58 UTC (rev 203475)
@@ -8,7 +8,7 @@
 # Contributor: Eli Schwartz 
 
 pkgname=calibre
-pkgver=2.75.0
+pkgver=2.76.0
 pkgrel=1
 pkgdesc="Ebook management application"
 arch=('i686' 'x86_64')
@@ -29,7 +29,7 @@
 )
 source=("https://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz";
 "https://calibre-ebook.com/signatures/${pkgname}-${pkgver}.tar.xz.sig";)
-sha256sums=('a2191c018a4bf3639793baf39cc3f4d57edf8e475f5a5762b12bbba90e8fa207'
+sha256sums=('680ff5183638cc4fb2addb19ea5394891b097d5cb508eb6725a43e630d2ad5f5'
 'SKIP')
 validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C')
 


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

2017-01-01 Thread Jelle van der Waa
Date: Sunday, January 1, 2017 @ 14:34:13
  Author: jelle
Revision: 203476

archrelease: copy trunk to community-i686, community-x86_64

Added:
  calibre/repos/community-i686/PKGBUILD
(from rev 203475, calibre/trunk/PKGBUILD)
  calibre/repos/community-x86_64/PKGBUILD
(from rev 203475, calibre/trunk/PKGBUILD)
Deleted:
  calibre/repos/community-i686/PKGBUILD
  calibre/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  154 
 community-i686/PKGBUILD   |   77 --
 community-x86_64/PKGBUILD |   77 --
 3 files changed, 154 insertions(+), 154 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-01 14:33:58 UTC (rev 203475)
+++ community-i686/PKGBUILD 2017-01-01 14:34:13 UTC (rev 203476)
@@ -1,77 +0,0 @@
-# $Id$
-# Maintainer: Jelle van der Waa 
-# Maintainer: Daniel Wallace 
-# Contributor: Giovanni Scafora 
-# Contributor: Petrov Roman 
-# Contributor: Andrea Fagiani 
-# Contributor: Larry Hajali 
-# Contributor: Eli Schwartz 
-
-pkgname=calibre
-pkgver=2.75.0
-pkgrel=1
-pkgdesc="Ebook management application"
-arch=('i686' 'x86_64')
-url="https://calibre-ebook.com/";
-license=('GPL3')
-depends=('python2-six' 'python2-dateutil' 'python2-cssutils' 'python2-cherrypy'
- 'python2-mechanize' 'podofo' 'libwmf'
- 'chmlib' 'python2-lxml' 'libusbx'
- 'python2-pillow' 'shared-mime-info' 'python2-dnspython'
- 'python2-pyqt5' 'python2-psutil' 'icu' 'libmtp' 'python2-dbus'
- 'python2-netifaces' 'python2-cssselect' 'python2-apsw' 'qt5-webkit'
- 'qt5-svg' 'python2-chardet' 'python2-pygments' 'mtdev'
- 'desktop-file-utils' 'gtk-update-icon-cache' 'optipng')
-makedepends=('qt5-x11extras' 'xdg-utils')
-optdepends=('ipython2: to use calibre-debug'
-'udisks: required for mounting certain devices'
-'poppler: required for converting pdf to html'
-)
-source=("https://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz";
-"https://calibre-ebook.com/signatures/${pkgname}-${pkgver}.tar.xz.sig";)
-sha256sums=('a2191c018a4bf3639793baf39cc3f4d57edf8e475f5a5762b12bbba90e8fa207'
-'SKIP')
-validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C')
-
-prepare(){
-  cd "${pkgname}-${pkgver}"
-
-  # Remove unneeded files and libs
-  # FIXME: remove html5lib too, but the latest html5lib breaks calibre. And 
calibre
-  # really needs to get the latest changes into html5lib, cause forking is bad 
m'okay.
-  rm -rf resources/${pkgname}-portable.* \
- src/cherrypy \
- src/chardet
-
-  # Desktop integration (e.g. enforce arch defaults)
-  sed -e "/self.create_uninstaller()/,/os.rmdir(config_dir)/d" \
-  -e "/cc(\['xdg-desktop-menu', 'forceupdate'\])/d" \
-  -e "/cc(\['xdg-mime', 'install', MIME\])/d" \
-  -e "s/'ctc-posml'/'text' not in mt and 'pdf' not in mt and 'xhtml'/" \
-  -e "s/^Name=calibre/Name=Calibre/g" \
-  -i  src/calibre/linux.py
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-
-  LANG='en_US.UTF-8' python2 setup.py build
-  LANG='en_US.UTF-8' python2 setup.py gui
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-
-  install -d "${pkgdir}/usr/share/zsh/site-functions" \
- 
"${pkgdir}"/usr/share/{applications,desktop-directories,icons/hicolor}
-
-  install -Dm644 resources/calibre-mimetypes.xml \
-"${pkgdir}/usr/share/mime/packages/calibre-mimetypes.xml"
-
-  XDG_DATA_DIRS="${pkgdir}/usr/share" LANG='en_US.UTF-8' \
-python2 setup.py install --staging-root="${pkgdir}/usr" --prefix=/usr
-
-  # Compiling bytecode FS#33392
-  python2 -m compileall "${pkgdir}/usr/lib/calibre/"
-  python2 -O -m compileall "${pkgdir}/usr/lib/calibre/"
-}

Copied: calibre/repos/community-i686/PKGBUILD (from rev 203475, 
calibre/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-01 14:34:13 UTC (rev 203476)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Jelle van der Waa 
+# Maintainer: Daniel Wallace 
+# Contributor: Giovanni Scafora 
+# Contributor: Petrov Roman 
+# Contributor: Andrea Fagiani 
+# Contributor: Larry Hajali 
+# Contributor: Eli Schwartz 
+
+pkgname=calibre
+pkgver=2.76.0
+pkgrel=1
+pkgdesc="Ebook management application"
+arch=('i686' 'x86_64')
+url="https://calibre-ebook.com/";
+license=('GPL3')
+depends=('python2-six' 'python2-dateutil' 'python2-cssutils' 'python2-cherrypy'
+ 'python2-mechanize' 'podofo' 'libwmf'
+ 'chmlib' 'python2-lxml' 'libusbx'
+ 'python2-pillow' 'shared-mime-info' 'python2-dnspython'
+ 'python2-pyqt5' 'python2-psutil' 'icu' 'libmtp' 'python2-dbus'
+ 'python2-netifaces' 'python2-cssselect' 'python2-apsw' 'qt5-webkit'
+ 'qt5-svg' 'python2-chardet' 'python2-pygm

[arch-commits] Commit in (ttf-roboto)

2017-01-01 Thread Johannes Löthberg
Date: Sunday, January 1, 2017 @ 14:51:55
  Author: demize
Revision: 203477

Added:
  ttf-roboto/


[arch-commits] Commit in ttf-roboto (repos trunk trunk/PKGBUILD)

2017-01-01 Thread Johannes Löthberg
Date: Sunday, January 1, 2017 @ 14:56:21
  Author: demize
Revision: 203478

Import ttf-roboto

Added:
  ttf-roboto/repos/
  ttf-roboto/trunk/
  ttf-roboto/trunk/PKGBUILD

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

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2017-01-01 14:56:21 UTC (rev 203478)
@@ -0,0 +1,21 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Daniel Greve 
+
+pkgname=ttf-roboto
+pkgver=2.136
+pkgrel=1
+
+pkgdesc="Google's signature family of fonts"
+url='https://material.google.com/style/typography.html'
+arch=('any')
+license=('Apache')
+
+depends=('fontconfig')
+
+source=("https://github.com/google/roboto/releases/download/v${pkgver}/roboto-hinted.zip";)
+md5sums=('b796348e23f38be21c84b9bc64c04046')
+
+package() {
+  cd roboto-hinted
+  install -Dm644 *.ttf -t "$pkgdir"/usr/share/fonts/TTF
+}


Property changes on: ttf-roboto/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2017-01-01 Thread Pierre Schmitz
Date: Sunday, January 1, 2017 @ 14:58:58
  Author: pierre
Revision: 285017

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  zlib/repos/testing-i686/
  zlib/repos/testing-i686/PKGBUILD
(from rev 285016, zlib/trunk/PKGBUILD)
  zlib/repos/testing-x86_64/
  zlib/repos/testing-x86_64/PKGBUILD
(from rev 285016, zlib/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   60 ++
 testing-x86_64/PKGBUILD |   60 ++
 2 files changed, 120 insertions(+)

Copied: zlib/repos/testing-i686/PKGBUILD (from rev 285016, zlib/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-01-01 14:58:58 UTC (rev 285017)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgbase=zlib
+pkgname=(zlib minizip)
+epoch=1
+pkgver=1.2.9
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('custom')
+url="http://www.zlib.net/";
+depends=('glibc')
+options=('staticlibs')  # needed by binutils testsuite
+source=("http://zlib.net/zlib-${pkgver}.tar.gz"{,.asc})
+md5sums=('e453644539a07783aa525e834491134e'
+ 'SKIP')
+validpgpkeys=('5ED46A6721D365587791E2AA783FCD8E58BCAFBA')
+
+prepare() {
+   cd ${srcdir}/zlib-$pkgver
+   grep -A 24 '^  Copyright' zlib.h > LICENSE
+}
+
+build() {
+   cd ${srcdir}/zlib-$pkgver
+   ./configure --prefix=/usr
+   make
+
+   cd contrib/minizip
+   cp Makefile Makefile.orig
+   cp ../README.contrib readme.txt
+   autoreconf --install
+   ./configure --prefix=/usr --enable-static=no
+   make
+}
+
+check() {
+   cd ${srcdir}/zlib-$pkgver
+   make test
+
+   cd contrib/minizip
+   make -f Makefile.orig test
+}
+
+package_zlib() {
+   pkgdesc='Compression library implementing the deflate compression 
method found in gzip and PKZIP'
+
+   cd ${srcdir}/zlib-$pkgver
+   make install DESTDIR=${pkgdir}
+   install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/zlib/LICENSE
+}
+
+package_minizip() {
+   pkgdesc='Mini zip and unzip based on zlib'
+   depends=('zlib')
+
+   cd ${srcdir}/zlib-$pkgver/contrib/minizip
+   make install DESTDIR=${pkgdir}
+   install -D -m644 ${srcdir}/zlib-$pkgver/LICENSE 
${pkgdir}/usr/share/licenses/minizip/LICENSE
+}

Copied: zlib/repos/testing-x86_64/PKGBUILD (from rev 285016, 
zlib/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-01-01 14:58:58 UTC (rev 285017)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgbase=zlib
+pkgname=(zlib minizip)
+epoch=1
+pkgver=1.2.9
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('custom')
+url="http://www.zlib.net/";
+depends=('glibc')
+options=('staticlibs')  # needed by binutils testsuite
+source=("http://zlib.net/zlib-${pkgver}.tar.gz"{,.asc})
+md5sums=('e453644539a07783aa525e834491134e'
+ 'SKIP')
+validpgpkeys=('5ED46A6721D365587791E2AA783FCD8E58BCAFBA')
+
+prepare() {
+   cd ${srcdir}/zlib-$pkgver
+   grep -A 24 '^  Copyright' zlib.h > LICENSE
+}
+
+build() {
+   cd ${srcdir}/zlib-$pkgver
+   ./configure --prefix=/usr
+   make
+
+   cd contrib/minizip
+   cp Makefile Makefile.orig
+   cp ../README.contrib readme.txt
+   autoreconf --install
+   ./configure --prefix=/usr --enable-static=no
+   make
+}
+
+check() {
+   cd ${srcdir}/zlib-$pkgver
+   make test
+
+   cd contrib/minizip
+   make -f Makefile.orig test
+}
+
+package_zlib() {
+   pkgdesc='Compression library implementing the deflate compression 
method found in gzip and PKZIP'
+
+   cd ${srcdir}/zlib-$pkgver
+   make install DESTDIR=${pkgdir}
+   install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/zlib/LICENSE
+}
+
+package_minizip() {
+   pkgdesc='Mini zip and unzip based on zlib'
+   depends=('zlib')
+
+   cd ${srcdir}/zlib-$pkgver/contrib/minizip
+   make install DESTDIR=${pkgdir}
+   install -D -m644 ${srcdir}/zlib-$pkgver/LICENSE 
${pkgdir}/usr/share/licenses/minizip/LICENSE
+}


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

2017-01-01 Thread Pierre Schmitz
Date: Sunday, January 1, 2017 @ 14:58:42
  Author: pierre
Revision: 285016

upgpkg: zlib 1:1.2.9-1

Modified:
  zlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 10:04:59 UTC (rev 285015)
+++ PKGBUILD2017-01-01 14:58:42 UTC (rev 285016)
@@ -4,8 +4,8 @@
 pkgbase=zlib
 pkgname=(zlib minizip)
 epoch=1
-pkgver=1.2.8
-pkgrel=7
+pkgver=1.2.9
+pkgrel=1
 arch=('i686' 'x86_64')
 license=('custom')
 url="http://www.zlib.net/";
@@ -12,7 +12,7 @@
 depends=('glibc')
 options=('staticlibs')  # needed by binutils testsuite
 source=("http://zlib.net/zlib-${pkgver}.tar.gz"{,.asc})
-md5sums=('44d667c142d7cda120332623eab69f40'
+md5sums=('e453644539a07783aa525e834491134e'
  'SKIP')
 validpgpkeys=('5ED46A6721D365587791E2AA783FCD8E58BCAFBA')
 


[arch-commits] Commit in ttf-roboto/repos (community-any community-any/PKGBUILD)

2017-01-01 Thread Johannes Löthberg
Date: Sunday, January 1, 2017 @ 14:58:32
  Author: demize
Revision: 203479

archrelease: copy trunk to community-any

Added:
  ttf-roboto/repos/community-any/
  ttf-roboto/repos/community-any/PKGBUILD
(from rev 203478, ttf-roboto/trunk/PKGBUILD)

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

Copied: ttf-roboto/repos/community-any/PKGBUILD (from rev 203478, 
ttf-roboto/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2017-01-01 14:58:32 UTC (rev 203479)
@@ -0,0 +1,21 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Daniel Greve 
+
+pkgname=ttf-roboto
+pkgver=2.136
+pkgrel=1
+
+pkgdesc="Google's signature family of fonts"
+url='https://material.google.com/style/typography.html'
+arch=('any')
+license=('Apache')
+
+depends=('fontconfig')
+
+source=("https://github.com/google/roboto/releases/download/v${pkgver}/roboto-hinted.zip";)
+md5sums=('b796348e23f38be21c84b9bc64c04046')
+
+package() {
+  cd roboto-hinted
+  install -Dm644 *.ttf -t "$pkgdir"/usr/share/fonts/TTF
+}


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

2017-01-01 Thread Jelle van der Waa
Date: Sunday, January 1, 2017 @ 15:00:35
  Author: jelle
Revision: 203480

upgpkg: cppcheck 1.77-1

Modified:
  cppcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 14:58:32 UTC (rev 203479)
+++ PKGBUILD2017-01-01 15:00:35 UTC (rev 203480)
@@ -3,7 +3,7 @@
 # Maintainer: Stéphane Gaudreault 
 
 pkgname=cppcheck
-pkgver=1.76.1
+pkgver=1.77
 pkgrel=1
 pkgdesc="A tool for static C/C++ code analysis"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('qt5-base' 'python-pygments')
 makedepends=('docbook-xsl' 'qt5-tools' 'python')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/danmar/cppcheck/archive/${pkgver}.tar.gz)
-sha1sums=('a58409e82d30629af220035c3d66e413dee3c156')
+sha1sums=('932ae16decf76c0c056a49f99145dd236d52753c')
 
 build() {
cd "${pkgname}-${pkgver}"


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

2017-01-01 Thread Jelle van der Waa
Date: Sunday, January 1, 2017 @ 15:00:48
  Author: jelle
Revision: 203481

archrelease: copy trunk to community-i686, community-x86_64

Added:
  cppcheck/repos/community-i686/PKGBUILD
(from rev 203480, cppcheck/trunk/PKGBUILD)
  cppcheck/repos/community-x86_64/PKGBUILD
(from rev 203480, cppcheck/trunk/PKGBUILD)
Deleted:
  cppcheck/repos/community-i686/PKGBUILD
  cppcheck/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  102 
 community-i686/PKGBUILD   |   51 --
 community-x86_64/PKGBUILD |   51 --
 3 files changed, 102 insertions(+), 102 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-01 15:00:35 UTC (rev 203480)
+++ community-i686/PKGBUILD 2017-01-01 15:00:48 UTC (rev 203481)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Jelle van der Waa 
-# Maintainer: Stéphane Gaudreault 
-
-pkgname=cppcheck
-pkgver=1.76.1
-pkgrel=1
-pkgdesc="A tool for static C/C++ code analysis"
-arch=('i686' 'x86_64')
-url="http://cppcheck.sourceforge.net/";
-license=('GPL')
-depends=('qt5-base' 'python-pygments')
-makedepends=('docbook-xsl' 'qt5-tools' 'python')
-source=($pkgname-$pkgver.tar.gz::https://github.com/danmar/cppcheck/archive/${pkgver}.tar.gz)
-sha1sums=('a58409e82d30629af220035c3d66e413dee3c156')
-
-build() {
-   cd "${pkgname}-${pkgver}"
-   # Unicode fix
-   
-   LANG='en_US.UTF-8' make SRCDIR=build CFGDIR=/usr/share/cppcheck/cfg 
HAVE_RULES=yes
-
-   make 
DB2MAN=/usr/share/xml/docbook/xsl-stylesheets-1.79.1/manpages/docbook.xsl 
CFGDIR=/usr/share/cppcheck/cfg man
-
-   cd gui
-   lrelease gui.pro
-   qmake HAVE_RULES=yes
-   make SRCDIR=build CFGDIR=/usr/share/cppcheck/cfg HAVE_RULES=yes
-}
-
-check() {
-   cd "${pkgname}-${pkgver}"
-
-   #LANG='en_US.UTF-8' make SRCDIR=build CFGDIR=/usr/share/cppcheck/cfg 
HAVE_RULES=yes test
-}
-
-package() {
-   cd "${pkgname}-${pkgver}"
-   LANG='en_US.UTF-8' make DESTDIR=${pkgdir} CFGDIR=/usr/share/cppcheck/cfg 
SRCDIR=build HAVE_RULES=yes install 
-
-   install -D -p -m 644 cppcheck.1 "${pkgdir}"/usr/share/man/man1/cppcheck.1
-
-   # GUI
-   install -m755 gui/cppcheck-gui "${pkgdir}"/usr/bin
-
-   install -d "${pkgdir}"/usr/share/cppcheck/cfg
-   install -D ./cfg/* -t "${pkgdir}"/usr/share/cppcheck/cfg
-
-   install -d "${pkgdir}"/usr/share/cppcheck/cfg/lang
-   install -D gui/*.qm -t "${pkgdir}"/usr/share/cppcheck/cfg/lang/
-}

Copied: cppcheck/repos/community-i686/PKGBUILD (from rev 203480, 
cppcheck/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-01 15:00:48 UTC (rev 203481)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Jelle van der Waa 
+# Maintainer: Stéphane Gaudreault 
+
+pkgname=cppcheck
+pkgver=1.77
+pkgrel=1
+pkgdesc="A tool for static C/C++ code analysis"
+arch=('i686' 'x86_64')
+url="http://cppcheck.sourceforge.net/";
+license=('GPL')
+depends=('qt5-base' 'python-pygments')
+makedepends=('docbook-xsl' 'qt5-tools' 'python')
+source=($pkgname-$pkgver.tar.gz::https://github.com/danmar/cppcheck/archive/${pkgver}.tar.gz)
+sha1sums=('932ae16decf76c0c056a49f99145dd236d52753c')
+
+build() {
+   cd "${pkgname}-${pkgver}"
+   # Unicode fix
+   
+   LANG='en_US.UTF-8' make SRCDIR=build CFGDIR=/usr/share/cppcheck/cfg 
HAVE_RULES=yes
+
+   make 
DB2MAN=/usr/share/xml/docbook/xsl-stylesheets-1.79.1/manpages/docbook.xsl 
CFGDIR=/usr/share/cppcheck/cfg man
+
+   cd gui
+   lrelease gui.pro
+   qmake HAVE_RULES=yes
+   make SRCDIR=build CFGDIR=/usr/share/cppcheck/cfg HAVE_RULES=yes
+}
+
+check() {
+   cd "${pkgname}-${pkgver}"
+
+   #LANG='en_US.UTF-8' make SRCDIR=build CFGDIR=/usr/share/cppcheck/cfg 
HAVE_RULES=yes test
+}
+
+package() {
+   cd "${pkgname}-${pkgver}"
+   LANG='en_US.UTF-8' make DESTDIR=${pkgdir} CFGDIR=/usr/share/cppcheck/cfg 
SRCDIR=build HAVE_RULES=yes install 
+
+   install -D -p -m 644 cppcheck.1 "${pkgdir}"/usr/share/man/man1/cppcheck.1
+
+   # GUI
+   install -m755 gui/cppcheck-gui "${pkgdir}"/usr/bin
+
+   install -d "${pkgdir}"/usr/share/cppcheck/cfg
+   install -D ./cfg/* -t "${pkgdir}"/usr/share/cppcheck/cfg
+
+   install -d "${pkgdir}"/usr/share/cppcheck/cfg/lang
+   install -D gui/*.qm -t "${pkgdir}"/usr/share/cppcheck/cfg/lang/
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-01-01 15:00:35 UTC (rev 203480)
+++ community-x86_64/PKGBUILD   2017-01-01 15:00:48 UTC (rev 203481)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Jelle van der Waa 
-# Maintainer: Stéphane Gaudreault 
-
-pkgname=cppcheck
-pkgver=1.76.1
-pkgrel=1
-pkgdesc="A tool for static C/C++ code analysis"
-arch=('i686' 'x86_64')
-url="http://cppcheck.sourceforge.net/";
-license=('GPL')
-depends=('qt5-base' 'python-pygments')
-maked

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

2017-01-01 Thread Pierre Schmitz
Date: Sunday, January 1, 2017 @ 15:01:19
  Author: pierre
Revision: 203482

upgpkg: lib32-zlib 1.2.9-1

Modified:
  lib32-zlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 15:00:48 UTC (rev 203481)
+++ PKGBUILD2017-01-01 15:01:19 UTC (rev 203482)
@@ -4,7 +4,7 @@
 
 _pkgbasename=zlib
 pkgname=lib32-$_pkgbasename
-pkgver=1.2.8
+pkgver=1.2.9
 pkgrel=1
 pkgdesc='Compression library implementing the deflate compression method found 
in gzip and PKZIP (32-bit)'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 depends=('lib32-glibc' "$_pkgbasename")
 makedepends=('gcc-multilib')
 source=("http://zlib.net/current/zlib-${pkgver}.tar.gz";)
-md5sums=('44d667c142d7cda120332623eab69f40')
+md5sums=('e453644539a07783aa525e834491134e')
 
 build() {
export CC="gcc -m32"


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

2017-01-01 Thread Pierre Schmitz
Date: Sunday, January 1, 2017 @ 15:01:26
  Author: pierre
Revision: 203483

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-zlib/repos/multilib-testing-x86_64/
  lib32-zlib/repos/multilib-testing-x86_64/PKGBUILD
(from rev 203482, lib32-zlib/trunk/PKGBUILD)

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

Copied: lib32-zlib/repos/multilib-testing-x86_64/PKGBUILD (from rev 203482, 
lib32-zlib/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2017-01-01 15:01:26 UTC (rev 203483)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Ionut Biru 
+# Contributor: Pierre Schmitz 
+
+_pkgbasename=zlib
+pkgname=lib32-$_pkgbasename
+pkgver=1.2.9
+pkgrel=1
+pkgdesc='Compression library implementing the deflate compression method found 
in gzip and PKZIP (32-bit)'
+arch=('x86_64')
+license=('custom')
+url="http://www.zlib.net/";
+depends=('lib32-glibc' "$_pkgbasename")
+makedepends=('gcc-multilib')
+source=("http://zlib.net/current/zlib-${pkgver}.tar.gz";)
+md5sums=('e453644539a07783aa525e834491134e')
+
+build() {
+   export CC="gcc -m32"
+   export CXX="g++ -m32"
+   export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+   cd ${srcdir}/zlib-$pkgver
+   ./configure --prefix=/usr \
+   --libdir=/usr/lib32
+   make
+}
+
+check() {
+   cd ${srcdir}/zlib-$pkgver
+   make test
+}
+
+package() {
+   cd ${srcdir}/zlib-$pkgver
+   make install DESTDIR=${pkgdir}
+
+   rm -rf "${pkgdir}"/usr/{include,share,bin}
+   mkdir -p "$pkgdir/usr/share/licenses"
+   ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
+}


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

2017-01-01 Thread Evangelos Foutras
Date: Sunday, January 1, 2017 @ 15:06:03
  Author: foutrelis
Revision: 203484

Python 3.6 rebuild

Modified:
  python-pyodbc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 15:01:26 UTC (rev 203483)
+++ PKGBUILD2017-01-01 15:06:03 UTC (rev 203484)
@@ -6,7 +6,7 @@
 pkgname=(python-pyodbc python2-pyodbc)
 _srcname=pyodbc
 pkgver=4.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc='ODBC module for Python'
 arch=('i686' 'x86_64')
 url='https://github.com/mkleehammer/pyodbc'


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

2017-01-01 Thread Evangelos Foutras
Date: Sunday, January 1, 2017 @ 15:06:36
  Author: foutrelis
Revision: 203486

Python 3.6 rebuild

Modified:
  python-werkzeug/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 15:06:12 UTC (rev 203485)
+++ PKGBUILD2017-01-01 15:06:36 UTC (rev 203486)
@@ -7,7 +7,7 @@
 
 pkgname=('python-werkzeug' 'python2-werkzeug')
 pkgver=0.11.13
-pkgrel=1
+pkgrel=2
 pkgdesc='Swiss Army knife of Python web development'
 url='http://werkzeug.pocoo.org/'
 arch=('any')


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

2017-01-01 Thread Evangelos Foutras
Date: Sunday, January 1, 2017 @ 15:06:43
  Author: foutrelis
Revision: 203487

archrelease: copy trunk to community-staging-any

Added:
  python-werkzeug/repos/community-staging-any/PKGBUILD
(from rev 203486, python-werkzeug/trunk/PKGBUILD)
Deleted:
  python-werkzeug/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-01 15:06:36 UTC (rev 203486)
+++ PKGBUILD2017-01-01 15:06:43 UTC (rev 203487)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Alexander Rødseth 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Dan Serban
-# Contributor: Richard Murri
-
-pkgname=('python-werkzeug' 'python2-werkzeug')
-pkgver=0.11.11
-pkgrel=2
-pkgdesc='Swiss Army knife of Python web development'
-url='http://werkzeug.pocoo.org/'
-arch=('any')
-license=('custom:BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-pytest' 
'python2-pytest' 'python-requests' 'python2-requests')
-source=("https://github.com/pallets/werkzeug/archive/${pkgver}.tar.gz";)
-sha256sums=('9dd1a2a873b8ce8d4d1d8deb9015c5bb7f2884d97a34a4b80cd68715ee3c0418')
-
-prepare() {
-  cp -r "werkzeug-$pkgver" "python-werkzeug-$pkgver"
-  cp -r "werkzeug-$pkgver" "python2-werkzeug-$pkgver"
-}
-
-build_python-werkzeug() {
-  cd "$pkgname-$pkgver"
-
-  python setup.py build
-}
-
-build_python2-werkzeug() {
-  cd "$pkgname-$pkgver"
-
-  python2 setup.py build
-}
-
-#check() {
-#  cd "python-werkzeug-$pkgver"
-#  python setup.py test
-#
-#  cd "python-werkzeug-$pkgver"
-#  p3ython2 setup.py test
-#}
-
-package_python-werkzeug() {
-  depends+=('python')
-  cd "$pkgname-$pkgver"
-
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-werkzeug() {
-  depends+=('python2')
-  cd "$pkgname-$pkgver"
-
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# getver: https://github.com/mitsuhiko/werkzeug
-# vim:set ts=2 sw=2 et:

Copied: python-werkzeug/repos/community-staging-any/PKGBUILD (from rev 203486, 
python-werkzeug/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-01 15:06:43 UTC (rev 203487)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Alexander Rødseth 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Dan Serban
+# Contributor: Richard Murri
+
+pkgname=('python-werkzeug' 'python2-werkzeug')
+pkgver=0.11.13
+pkgrel=2
+pkgdesc='Swiss Army knife of Python web development'
+url='http://werkzeug.pocoo.org/'
+arch=('any')
+license=('custom:BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-pytest' 
'python2-pytest' 'python-requests' 'python2-requests')
+source=("https://github.com/pallets/werkzeug/archive/${pkgver}.tar.gz";)
+sha256sums=('27d54a73ee6f74228112ab6936c101892fedff321e2eff948d452b07042a9b43')
+
+prepare() {
+  cp -r "werkzeug-$pkgver" "python-werkzeug-$pkgver"
+  cp -r "werkzeug-$pkgver" "python2-werkzeug-$pkgver"
+}
+
+build_python-werkzeug() {
+  cd "$pkgname-$pkgver"
+
+  python setup.py build
+}
+
+build_python2-werkzeug() {
+  cd "$pkgname-$pkgver"
+
+  python2 setup.py build
+}
+
+#check() {
+#  cd "python-werkzeug-$pkgver"
+#  python setup.py test
+#
+#  cd "python-werkzeug-$pkgver"
+#  p3ython2 setup.py test
+#}
+
+package_python-werkzeug() {
+  depends+=('python')
+  cd "$pkgname-$pkgver"
+
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-werkzeug() {
+  depends+=('python2')
+  cd "$pkgname-$pkgver"
+
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# getver: https://github.com/mitsuhiko/werkzeug
+# vim:set ts=2 sw=2 et:


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

2017-01-01 Thread Evangelos Foutras
Date: Sunday, January 1, 2017 @ 15:06:12
  Author: foutrelis
Revision: 203485

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  python-pyodbc/repos/community-staging-i686/PKGBUILD
(from rev 203484, python-pyodbc/trunk/PKGBUILD)
  python-pyodbc/repos/community-staging-x86_64/PKGBUILD
(from rev 203484, python-pyodbc/trunk/PKGBUILD)
Deleted:
  python-pyodbc/repos/community-staging-i686/PKGBUILD
  python-pyodbc/repos/community-staging-x86_64/PKGBUILD

---+
 /PKGBUILD |   78 
 community-staging-i686/PKGBUILD   |   39 --
 community-staging-x86_64/PKGBUILD |   39 --
 3 files changed, 78 insertions(+), 78 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2017-01-01 15:06:03 UTC (rev 203484)
+++ community-staging-i686/PKGBUILD 2017-01-01 15:06:12 UTC (rev 203485)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-# Contributor: Robert Knauer 
-
-pkgbase=python-pyodbc
-pkgname=(python-pyodbc python2-pyodbc)
-_srcname=pyodbc
-pkgver=3.1.1
-pkgrel=2
-pkgdesc='ODBC module for Python'
-arch=('i686' 'x86_64')
-url='https://github.com/mkleehammer/pyodbc'
-license=('MIT')
-makedepends=('python' 'python2' 'unixodbc')
-source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/mkleehammer/pyodbc/archive/${pkgver}.tar.gz";)
-sha256sums=('dba853c5854cb3706e2c2febaba87a7be69d1d267c5bc82a8122d6d2f4f9899d')
-
-prepare() {
-   echo "Version: ${pkgver}.0" > "${srcdir}/${_srcname}-${pkgver}/PKG-INFO"
-}
-
-package_python-pyodbc() {
-   pkgdesc='ODBC module for Python 3.x'
-   depends=('python' 'unixodbc')
-
-   cd "${srcdir}/${_srcname}-${pkgver}"
-
-   python setup.py install --root="${pkgdir}/" --optimize=1
-}
-
-package_python2-pyodbc() {
-   pkgdesc='ODBC module for Python 2.x'
-   depends=('python2' 'unixodbc')
-
-   cd "${srcdir}/${_srcname}-${pkgver}"
-
-   python2 setup.py install --root="${pkgdir}/" --optimize=1
-}
-

Copied: python-pyodbc/repos/community-staging-i686/PKGBUILD (from rev 203484, 
python-pyodbc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-01-01 15:06:12 UTC (rev 203485)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Robert Knauer 
+
+pkgbase=python-pyodbc
+pkgname=(python-pyodbc python2-pyodbc)
+_srcname=pyodbc
+pkgver=4.0.0
+pkgrel=2
+pkgdesc='ODBC module for Python'
+arch=('i686' 'x86_64')
+url='https://github.com/mkleehammer/pyodbc'
+license=('MIT')
+makedepends=('python' 'python2' 'unixodbc')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/mkleehammer/pyodbc/archive/${pkgver}.tar.gz";)
+sha256sums=('d3c9435325857112aed2b4ab1c1bfa10b578d27dd1a2e241c95cf98bd907f322')
+
+prepare() {
+   echo "Version: ${pkgver}.0" > "${srcdir}/${_srcname}-${pkgver}/PKG-INFO"
+}
+
+package_python-pyodbc() {
+   pkgdesc='ODBC module for Python 3.x'
+   depends=('python' 'unixodbc')
+
+   cd "${srcdir}/${_srcname}-${pkgver}"
+
+   python setup.py install --root="${pkgdir}/" --optimize=1
+}
+
+package_python2-pyodbc() {
+   pkgdesc='ODBC module for Python 2.x'
+   depends=('python2' 'unixodbc')
+
+   cd "${srcdir}/${_srcname}-${pkgver}"
+
+   python2 setup.py install --root="${pkgdir}/" --optimize=1
+}
+

Deleted: community-staging-x86_64/PKGBUILD
===
--- community-staging-x86_64/PKGBUILD   2017-01-01 15:06:03 UTC (rev 203484)
+++ community-staging-x86_64/PKGBUILD   2017-01-01 15:06:12 UTC (rev 203485)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-# Contributor: Robert Knauer 
-
-pkgbase=python-pyodbc
-pkgname=(python-pyodbc python2-pyodbc)
-_srcname=pyodbc
-pkgver=3.1.1
-pkgrel=2
-pkgdesc='ODBC module for Python'
-arch=('i686' 'x86_64')
-url='https://github.com/mkleehammer/pyodbc'
-license=('MIT')
-makedepends=('python' 'python2' 'unixodbc')
-source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/mkleehammer/pyodbc/archive/${pkgver}.tar.gz";)
-sha256sums=('dba853c5854cb3706e2c2febaba87a7be69d1d267c5bc82a8122d6d2f4f9899d')
-
-prepare() {
-   echo "Version: ${pkgver}.0" > "${srcdir}/${_srcname}-${pkgver}/PKG-INFO"
-}
-
-package_python-pyodbc() {
-   pkgdesc='ODBC module for Python 3.x'
-   depends=('python' 'unixodbc')
-
-   cd "${srcdir}/${_srcname}-${pkgver}"
-
-   python setup.py install --root="${pkgdir}/" --optimize=1
-}
-
-package_python2-pyodbc() {
-   pkgdesc='ODBC module for Python 2.x'
-   depends=('python2' 'unixodbc')
-
-   cd "${srcdir}/${_srcname}-${pkgver}"
-
-   python2 setup.py install --root="${pkgdir}/" --optimize=1
-}
-

Copied: python-pyodbc/repos/c

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

2017-01-01 Thread Evangelos Foutras
Date: Sunday, January 1, 2017 @ 15:07:09
  Author: foutrelis
Revision: 203488

Python 3.6 rebuild

Modified:
  python-cherrypy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 15:06:43 UTC (rev 203487)
+++ PKGBUILD2017-01-01 15:07:09 UTC (rev 203488)
@@ -6,7 +6,7 @@
 # Contributor: Florian Richter 
 pkgname=('python-cherrypy' 'python2-cherrypy')
 pkgver=8.5.0
-pkgrel=3
+pkgrel=4
 pkgdesc="A pythonic, object-oriented web development framework"
 arch=('any')
 url="http://www.cherrypy.org";


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

2017-01-01 Thread Evangelos Foutras
Date: Sunday, January 1, 2017 @ 15:07:15
  Author: foutrelis
Revision: 203489

archrelease: copy trunk to community-staging-any

Added:
  python-cherrypy/repos/community-staging-any/PKGBUILD
(from rev 203488, python-cherrypy/trunk/PKGBUILD)
Deleted:
  python-cherrypy/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-01 15:07:09 UTC (rev 203488)
+++ PKGBUILD2017-01-01 15:07:15 UTC (rev 203489)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez  
-# Contributor: Kaiting Chen 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Armando M. Baratti 
-# Contributor: Florian Richter 
-pkgname=('python-cherrypy' 'python2-cherrypy')
-pkgver=8.1.2
-pkgrel=2
-pkgdesc="A pythonic, object-oriented web development framework"
-arch=('any')
-url="http://www.cherrypy.org";
-license=('BSD')
-makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
-source=("https://pypi.python.org/packages/d9/ec/a9cd68e57af9fead92158028d32cc79f1908fd81f486d8a3826e9847ada6/CherryPy-8.1.2.tar.gz";)
-md5sums=('553f054152c2adbe60738682ed5390c5')
-
-build() {
-  cp -r CherryPy-${pkgver} CherryPy-${pkgver}-py2
-
-  cd CherryPy-${pkgver}
-  python ./setup.py build
-
-  cd "${srcdir}/CherryPy-${pkgver}-py2"
-  python2 ./setup.py build
-}
-
-package_python-cherrypy() {
-  depends=('python' 'python-six')
-
-  cd CherryPy-${pkgver}
-
-  python ./setup.py install --root="${pkgdir}" --optimize=1
-
-  install -Dm644 cherrypy/LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.txt"
-}
-
-package_python2-cherrypy() {
-  depends=('python2')
-
-  cd CherryPy-${pkgver}-py2
-
-  python2 ./setup.py install --root="${pkgdir}" --optimize=1
-  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
-
-  install -Dm644 cherrypy/LICENSE.txt \
-"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.txt"
-}
-
-check() {
-  cd CherryPy-${pkgver}
-#  python2 ./setup.py test
-
-  cd ../CherryPy-${pkgver}
-#  python3 ./setup.py check
-}

Copied: python-cherrypy/repos/community-staging-any/PKGBUILD (from rev 203488, 
python-cherrypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-01 15:07:15 UTC (rev 203489)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Angel Velasquez  
+# Contributor: Kaiting Chen 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Armando M. Baratti 
+# Contributor: Florian Richter 
+pkgname=('python-cherrypy' 'python2-cherrypy')
+pkgver=8.5.0
+pkgrel=4
+pkgdesc="A pythonic, object-oriented web development framework"
+arch=('any')
+url="http://www.cherrypy.org";
+license=('BSD')
+makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools')
+source=('https://pypi.python.org/packages/70/82/e179ecc2c84768da6a4397e9c7300f2c249f9882e0ed83a7599b38aa42b2/CherryPy-8.5.0.tar.gz')
+md5sums=('a43755ddd675ed5a11134f77ef033ad1')
+
+build() {
+  cp -r CherryPy-${pkgver} CherryPy-${pkgver}-py2
+
+  cd CherryPy-${pkgver}
+  python ./setup.py build
+
+  cd "${srcdir}/CherryPy-${pkgver}-py2"
+  python2 ./setup.py build
+}
+
+package_python-cherrypy() {
+  depends=('python' 'python-six')
+
+  cd CherryPy-${pkgver}
+
+  python ./setup.py install --root="${pkgdir}" --optimize=1
+
+  install -Dm644 LICENSE.md \
+"${pkgdir}/usr/share/licenses/python-cherrypy/LICENSE.md"
+}
+
+package_python2-cherrypy() {
+  depends=('python2')
+
+  cd CherryPy-${pkgver}-py2
+
+  python2 ./setup.py install --root="${pkgdir}" --optimize=1
+  mv "${pkgdir}/usr/bin/cherryd" "${pkgdir}/usr/bin/cherryd2"
+
+  install -Dm644 LICENSE.md \
+"${pkgdir}/usr/share/licenses/python2-cherrypy/LICENSE.md"
+}
+
+check() {
+  cd CherryPy-${pkgver}
+#  python2 ./setup.py test
+
+  cd ../CherryPy-${pkgver}
+#  python3 ./setup.py check
+}


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

2017-01-01 Thread Evangelos Foutras
Date: Sunday, January 1, 2017 @ 15:07:44
  Author: foutrelis
Revision: 203490

Python 3.6 rebuild

Modified:
  python-autobahn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 15:07:15 UTC (rev 203489)
+++ PKGBUILD2017-01-01 15:07:44 UTC (rev 203490)
@@ -4,7 +4,7 @@
 pkgbase=python-autobahn
 pkgname=(python-autobahn python2-autobahn)
 pkgver=0.17.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
 arch=(any)
 url='http://autobahn.ws/python/'


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

2017-01-01 Thread Evangelos Foutras
Date: Sunday, January 1, 2017 @ 15:07:50
  Author: foutrelis
Revision: 203491

archrelease: copy trunk to community-staging-any

Added:
  python-autobahn/repos/community-staging-any/PKGBUILD
(from rev 203490, python-autobahn/trunk/PKGBUILD)
Deleted:
  python-autobahn/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-01 15:07:44 UTC (rev 203490)
+++ PKGBUILD2017-01-01 15:07:50 UTC (rev 203491)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov
-
-pkgbase=python-autobahn
-pkgname=(python-autobahn python2-autobahn)
-pkgver=0.17.0
-pkgrel=2
-pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
-arch=(any)
-url='http://autobahn.ws/python/'
-license=(MIT)
-makedepends=(python-setuptools python2-setuptools python-twisted python-six 
python-txaio python2-twisted python2-six python2-txaio)
-source=(https://pypi.io/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
-sha1sums=('fe9ff4c0619e5645e4042d789a090098aa740f17')
-
-prepare() {
-  cp -a autobahn-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir/autobahn-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/autobahn-$pkgver-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/autobahn-$pkgver"
-  #It requires python-unittest2 in [community]
-  #python setup.py test
-
-  cd "$srcdir/autobahn-$pkgver-py2"
-  #python2 setup.py test
-}
-
-package_python-autobahn() {
-  depends=(python python-twisted python-six python-txaio)
-
-  cd "$srcdir/autobahn-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-autobahn() {
-  depends=(python2 python2-twisted python2-six python2-txaio)
-
-  cd "$srcdir/autobahn-$pkgver-py2"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-autobahn/repos/community-staging-any/PKGBUILD (from rev 203490, 
python-autobahn/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-01 15:07:50 UTC (rev 203491)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+
+pkgbase=python-autobahn
+pkgname=(python-autobahn python2-autobahn)
+pkgver=0.17.1
+pkgrel=2
+pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
+arch=(any)
+url='http://autobahn.ws/python/'
+license=(MIT)
+makedepends=(python-setuptools python2-setuptools python-twisted python-six 
python-txaio python2-twisted python2-six python2-txaio)
+source=(https://pypi.io/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
+sha1sums=('395164a4e9773c6431d3b94b3e9f6a135182282b')
+
+prepare() {
+  cp -a autobahn-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir/autobahn-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/autobahn-$pkgver-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/autobahn-$pkgver"
+  #It requires python-unittest2 in [community]
+  #python setup.py test
+
+  cd "$srcdir/autobahn-$pkgver-py2"
+  #python2 setup.py test
+}
+
+package_python-autobahn() {
+  depends=(python python-twisted python-six python-txaio)
+
+  cd "$srcdir/autobahn-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-autobahn() {
+  depends=(python2 python2-twisted python2-six python2-txaio)
+
+  cd "$srcdir/autobahn-$pkgver-py2"
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in qutebrowser/repos/community-staging-any (PKGBUILD PKGBUILD)

2017-01-01 Thread Evangelos Foutras
Date: Sunday, January 1, 2017 @ 15:08:35
  Author: foutrelis
Revision: 203493

archrelease: copy trunk to community-staging-any

Added:
  qutebrowser/repos/community-staging-any/PKGBUILD
(from rev 203492, qutebrowser/trunk/PKGBUILD)
Deleted:
  qutebrowser/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-01 15:08:29 UTC (rev 203492)
+++ PKGBUILD2017-01-01 15:08:35 UTC (rev 203493)
@@ -1,48 +0,0 @@
-# Maintainer: Pierre Neidhardt 
-# Contributor: Florian Bruhin (The Compiler) 
-
-pkgname=qutebrowser
-pkgver=0.8.4
-pkgrel=2
-pkgdesc="A keyboard-driven, vim-like browser based on PyQt5 and QtWebKit"
-arch=("any")
-url="http://www.qutebrowser.org/";
-license=("GPL")
-depends=("desktop-file-utils" "hicolor-icon-theme" "libxkbcommon-x11"
-   "python-jinja" "python-pygments" "python-pypeg2" "python-pyqt5>=5.2"
-   "python-yaml" "qt5-base>=5.2" "qt5-webkit>=5.2" "xdg-utils")
-makedepends=("asciidoc")
-optdepends=("python-colorlog: colored logging output"
-   "gst-libav: media playback"
-   "gst-plugins-base: media playback"
-   "gst-plugins-good: media playback"
-   "gst-plugins-bad: media playback"
-   "gst-plugins-ugly: media playback"
-   "pdfjs: Displaying PDF in-browser")
-options=(!emptydirs)
-source=("https://qutebrowser.org/releases/v$pkgver/qutebrowser-$pkgver.tar.gz";
-   
"https://qutebrowser.org/releases/v$pkgver/qutebrowser-$pkgver.tar.gz.asc";)
-validpgpkeys=("E04E560002401B8EF0E76F0A916EB0C8FD55A072")
-sha256sums=('f5ce98c5bc57ae29dc31f8896fad6911feab91277a9554761126219e0f8e8671'
-'SKIP')
-
-build() {
-   cd "$srcdir/$pkgname-$pkgver"
-   a2x -f manpage doc/qutebrowser.1.asciidoc
-   python setup.py build
-}
-
-package() {
-   cd "$srcdir/$pkgname-$pkgver"
-   python setup.py install --root="$pkgdir/" --optimize=1
-   install -Dm644 doc/qutebrowser.1 
"$pkgdir/usr/share/man/man1/qutebrowser.1"
-   install -Dm644 qutebrowser.desktop \
-   "$pkgdir/usr/share/applications/qutebrowser.desktop"
-   for i in 16 24 32 48 64 128 256 512; do
-   install -Dm644 "icons/qutebrowser-${i}x$i.png" \
-   
"$pkgdir/usr/share/icons/hicolor/${i}x$i/apps/qutebrowser.png"
-   done
-   install -Dm644 icons/qutebrowser.svg \
-   "$pkgdir/usr/share/icons/hicolor/scalable/apps/qutebrowser.svg"
-   install -Dm755 -t "$pkgdir/usr/share/qutebrowser/userscripts/" 
misc/userscripts/*
-}

Copied: qutebrowser/repos/community-staging-any/PKGBUILD (from rev 203492, 
qutebrowser/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-01 15:08:35 UTC (rev 203493)
@@ -0,0 +1,48 @@
+# Maintainer: Pierre Neidhardt 
+# Contributor: Florian Bruhin (The Compiler) 
+
+pkgname=qutebrowser
+pkgver=0.9.0
+pkgrel=2
+pkgdesc="A keyboard-driven, vim-like browser based on PyQt5 and QtWebKit"
+arch=("any")
+url="http://www.qutebrowser.org/";
+license=("GPL")
+depends=("desktop-file-utils" "hicolor-icon-theme" "libxkbcommon-x11"
+   "python-jinja" "python-pygments" "python-pypeg2" "python-pyqt5>=5.2"
+   "python-yaml" "qt5-base>=5.2" "qt5-webkit>=5.2" "xdg-utils")
+makedepends=("asciidoc")
+optdepends=("python-colorlog: colored logging output"
+   "gst-libav: media playback"
+   "gst-plugins-base: media playback"
+   "gst-plugins-good: media playback"
+   "gst-plugins-bad: media playback"
+   "gst-plugins-ugly: media playback"
+   "pdfjs: Displaying PDF in-browser")
+options=(!emptydirs)
+source=("https://qutebrowser.org/releases/v$pkgver/qutebrowser-$pkgver.tar.gz";
+   
"https://qutebrowser.org/releases/v$pkgver/qutebrowser-$pkgver.tar.gz.asc";)
+validpgpkeys=("E04E560002401B8EF0E76F0A916EB0C8FD55A072")
+sha256sums=('d87df940a74af5114109a7aa1e8bc269216ef7f8e4bd003a34be76d45bf3e7ba'
+'SKIP')
+
+build() {
+   cd "$srcdir/$pkgname-$pkgver"
+   a2x -f manpage doc/qutebrowser.1.asciidoc
+   python setup.py build
+}
+
+package() {
+   cd "$srcdir/$pkgname-$pkgver"
+   python setup.py install --root="$pkgdir/" --optimize=1
+   install -Dm644 doc/qutebrowser.1 
"$pkgdir/usr/share/man/man1/qutebrowser.1"
+   install -Dm644 qutebrowser.desktop \
+   "$pkgdir/usr/share/applications/qutebrowser.desktop"
+   for i in 16 24 32 48 64 128 256 512; do
+   install -Dm644 "icons/qutebrowser-${i}x$i.png" \
+   
"$pkgdir/usr/share/icons/hicolor/${i}x$i/apps/qutebrowser.png"
+   done
+   install -Dm644 icons/qutebrowser.svg \
+   "$pkgdir/usr/share/icons/hicolor/scalable/apps/qutebrowser.svg"
+   install -Dm755 -t "$pkgdir/usr/share/q

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

2017-01-01 Thread Evangelos Foutras
Date: Sunday, January 1, 2017 @ 15:08:29
  Author: foutrelis
Revision: 203492

Python 3.6 rebuild

Modified:
  qutebrowser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 15:07:50 UTC (rev 203491)
+++ PKGBUILD2017-01-01 15:08:29 UTC (rev 203492)
@@ -3,7 +3,7 @@
 
 pkgname=qutebrowser
 pkgver=0.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A keyboard-driven, vim-like browser based on PyQt5 and QtWebKit"
 arch=("any")
 url="http://www.qutebrowser.org/";


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

2017-01-01 Thread Felix Yan
Date: Sunday, January 1, 2017 @ 15:11:30
  Author: felixonmars
Revision: 203494

upgpkg: git-annex 6.20170101-1

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 15:08:35 UTC (rev 203493)
+++ PKGBUILD2017-01-01 15:11:30 UTC (rev 203494)
@@ -3,8 +3,8 @@
 # Contributor: Arch Haskell Team 
 
 pkgname=git-annex
-pkgver=6.20161210
-pkgrel=26
+pkgver=6.20170101
+pkgrel=1
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/";
 license=("AGPL3")
@@ -16,21 +16,21 @@
  "haskell-crypto-api" "haskell-cryptonite" "haskell-data-default" 
"haskell-dav"
  "haskell-dbus" "haskell-disk-free-space" "haskell-dlist" 
"haskell-dns"
  "haskell-edit-distance" "haskell-esqueleto" "haskell-exceptions" 
"haskell-fdo-notify"
- "haskell-feed" "haskell-gnutls" "haskell-hinotify" 
"haskell-hslogger"
- "haskell-http-client" "haskell-http-conduit" "haskell-http-types" 
"haskell-ifelse"
- "haskell-magic" "haskell-missingh" "haskell-monad-control" 
"haskell-monad-logger"
- "haskell-mountpoints" "haskell-mtl" "haskell-network" 
"haskell-network-info"
- "haskell-network-multicast" "haskell-network-protocol-xmpp" 
"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-stm" "haskell-stm-chans" "haskell-tasty" 
"haskell-tasty-hunit"
- "haskell-tasty-quickcheck" "haskell-tasty-rerun" "haskell-text" 
"haskell-torrent"
- "haskell-unix-compat" "haskell-unordered-containers" 
"haskell-utf8-string"
- "haskell-uuid" "haskell-wai" "haskell-wai-extra" "haskell-warp" 
"haskell-warp-tls"
- "haskell-xml-types" "haskell-yesod" "haskell-yesod-core" 
"haskell-yesod-default"
- "haskell-yesod-form" "haskell-yesod-static")
+ "haskell-feed" "haskell-hinotify" "haskell-hslogger" 
"haskell-http-client"
+ "haskell-http-conduit" "haskell-http-types" "haskell-ifelse" 
"haskell-magic"
+ "haskell-missingh" "haskell-monad-control" "haskell-monad-logger" 
"haskell-mountpoints"
+ "haskell-mtl" "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-stm"
+ "haskell-stm-chans" "haskell-tasty" "haskell-tasty-hunit" 
"haskell-tasty-quickcheck"
+ "haskell-tasty-rerun" "haskell-text" "haskell-torrent" 
"haskell-unix-compat"
+ "haskell-unordered-containers" "haskell-utf8-string" 
"haskell-uuid" "haskell-wai"
+ "haskell-wai-extra" "haskell-warp" "haskell-warp-tls" 
"haskell-yesod"
+ "haskell-yesod-core" "haskell-yesod-default" "haskell-yesod-form"
+ "haskell-yesod-static")
 source=("git+https://github.com/joeyh/git-annex.git#tag=$pkgver";)
 sha256sums=('SKIP')
 
@@ -40,7 +40,7 @@
   runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/$pkgname" \
 -fcryptonite -fnetwork-uri -fconcurrentoutput -ftorrentparser \
 -ftestsuite -f-androidsplice -f-android -fproduction -fpairing -fwebapp \
--fassistant -fwebdav -fs3 -f-benchmark -fdbus -fxmpp -fmagicmime
+-fassistant -fwebdav -fs3 -f-benchmark -fdbus -fmagicmime
   runhaskell Setup build
 }
 


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

2017-01-01 Thread Felix Yan
Date: Sunday, January 1, 2017 @ 15:12:06
  Author: felixonmars
Revision: 203495

archrelease: copy trunk to community-i686, community-x86_64

Added:
  git-annex/repos/community-i686/PKGBUILD
(from rev 203494, git-annex/trunk/PKGBUILD)
  git-annex/repos/community-x86_64/PKGBUILD
(from rev 203494, git-annex/trunk/PKGBUILD)
Deleted:
  git-annex/repos/community-i686/PKGBUILD
  git-annex/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  108 
 community-i686/PKGBUILD   |   54 --
 community-x86_64/PKGBUILD |   54 --
 3 files changed, 108 insertions(+), 108 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-01 15:11:30 UTC (rev 203494)
+++ community-i686/PKGBUILD 2017-01-01 15:12:06 UTC (rev 203495)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-pkgname=git-annex
-pkgver=6.20161210
-pkgrel=26
-pkgdesc="Manage files with git, without checking their contents into git"
-url="http://git-annex.branchable.com/";
-license=("AGPL3")
-arch=('i686' 'x86_64')
-depends=('git' 'rsync' 'libxml2' 'gsasl' 'file')
-makedepends=("ghc=8.0.1" "git" "haskell-aeson" "haskell-async" "haskell-aws" 
"haskell-blaze-builder"
- "haskell-bloomfilter" "haskell-byteable" 
"haskell-case-insensitive"
- "haskell-clientsession" "haskell-concurrent-output" 
"haskell-conduit"
- "haskell-crypto-api" "haskell-cryptonite" "haskell-data-default" 
"haskell-dav"
- "haskell-dbus" "haskell-disk-free-space" "haskell-dlist" 
"haskell-dns"
- "haskell-edit-distance" "haskell-esqueleto" "haskell-exceptions" 
"haskell-fdo-notify"
- "haskell-feed" "haskell-gnutls" "haskell-hinotify" 
"haskell-hslogger"
- "haskell-http-client" "haskell-http-conduit" "haskell-http-types" 
"haskell-ifelse"
- "haskell-magic" "haskell-missingh" "haskell-monad-control" 
"haskell-monad-logger"
- "haskell-mountpoints" "haskell-mtl" "haskell-network" 
"haskell-network-info"
- "haskell-network-multicast" "haskell-network-protocol-xmpp" 
"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-stm" "haskell-stm-chans" "haskell-tasty" 
"haskell-tasty-hunit"
- "haskell-tasty-quickcheck" "haskell-tasty-rerun" "haskell-text" 
"haskell-torrent"
- "haskell-unix-compat" "haskell-unordered-containers" 
"haskell-utf8-string"
- "haskell-uuid" "haskell-wai" "haskell-wai-extra" "haskell-warp" 
"haskell-warp-tls"
- "haskell-xml-types" "haskell-yesod" "haskell-yesod-core" 
"haskell-yesod-default"
- "haskell-yesod-form" "haskell-yesod-static")
-source=("git+https://github.com/joeyh/git-annex.git#tag=$pkgver";)
-sha256sums=('SKIP')
-
-build() {
-  cd git-annex
-  
-  runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/$pkgname" \
--fcryptonite -fnetwork-uri -fconcurrentoutput -ftorrentparser \
--ftestsuite -f-androidsplice -f-android -fproduction -fpairing -fwebapp \
--fassistant -fwebdav -fs3 -f-benchmark -fdbus -fxmpp -fmagicmime
-  runhaskell Setup build
-}
-
-package() {
-  cd git-annex
-  runhaskell Setup copy --destdir="$pkgdir"
-  make DESTDIR="$pkgdir" install-misc
-
-  rm "$pkgdir"/usr/share/doc/git-annex/COPYRIGHT
-  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
-}

Copied: git-annex/repos/community-i686/PKGBUILD (from rev 203494, 
git-annex/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-01 15:12:06 UTC (rev 203495)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20170101
+pkgrel=1
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/";
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('git' 'rsync' 'libxml2' 'gsasl' 'file')
+makedepends=("ghc=8.0.1" "git" "haskell-aeson" "haskell-async" "haskell-aws" 
"haskell-blaze-builder"
+ "haskell-bloomfilter" "haskell-byteable" 
"haskell-case-insensitive"
+ "haskell-clientsession" "haskell-concurrent-output" 
"haskell-conduit"
+ "haskell-crypto-api" "haskell-cryptonite" "haskell-data-default" 
"haskell-dav"
+ "haskell-dbus" "haskell-disk-free-space" "haskell-dlist" 

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

2017-01-01 Thread Johannes Löthberg
Date: Sunday, January 1, 2017 @ 15:14:58
  Author: demize
Revision: 203496

upgpkg: pkgconf 1.1.0-1

Modified:
  pkgconf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 15:12:06 UTC (rev 203495)
+++ PKGBUILD2017-01-01 15:14:58 UTC (rev 203496)
@@ -4,7 +4,7 @@
 # Contributor: Bartlomiej Piotrowski 
 
 pkgname=pkgconf
-pkgver=1.0.2
+pkgver=1.1.0
 pkgrel=1
 
 pkgdesc='Light pkg-config replacement'
@@ -15,9 +15,9 @@
 conflicts=('pkg-config')
 provides=('pkg-config')
 
-source=("http://rabbit.dereferenced.org/~nenolod/distfiles/pkgconf-$pkgver.tar.gz";)
+source=("https://distfiles.dereferenced.org/pkgconf/pkgconf-$pkgver.tar.xz";)
 
-sha256sums=('fb62bd77a4e164c7dfa43fcbd30b68b52cc78b19a2a427cef1aed19070a3349a')
+sha256sums=('5f1ef65d73a880fa5e7012102a17f7b32010e5e46139aed85851a541ba828a63')
 
 build() {
cd pkgconf-$pkgver


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

2017-01-01 Thread Johannes Löthberg
Date: Sunday, January 1, 2017 @ 15:15:06
  Author: demize
Revision: 203497

archrelease: copy trunk to community-x86_64

Added:
  pkgconf/repos/community-x86_64/PKGBUILD
(from rev 203496, pkgconf/trunk/PKGBUILD)
Deleted:
  pkgconf/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-01 15:14:58 UTC (rev 203496)
+++ PKGBUILD2017-01-01 15:15:06 UTC (rev 203497)
@@ -1,33 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Contributor: Piotr Gorski 
-# Contributor: Lucy 
-# Contributor: Bartlomiej Piotrowski 
-
-pkgname=pkgconf
-pkgver=1.0.2
-pkgrel=1
-
-pkgdesc='Light pkg-config replacement'
-url='https://github.com/pkgconf/pkgconf'
-arch=('i686' 'x86_64')
-license=('custom:ISC')
-
-conflicts=('pkg-config')
-provides=('pkg-config')
-
-source=("http://rabbit.dereferenced.org/~nenolod/distfiles/pkgconf-$pkgver.tar.gz";)
-
-sha256sums=('fb62bd77a4e164c7dfa43fcbd30b68b52cc78b19a2a427cef1aed19070a3349a')
-
-build() {
-   cd pkgconf-$pkgver
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd pkgconf-$pkgver
-   make DESTDIR="$pkgdir" install
-   ln -s /usr/bin/pkgconf "$pkgdir"/usr/bin/pkg-config
-   install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
-}

Copied: pkgconf/repos/community-x86_64/PKGBUILD (from rev 203496, 
pkgconf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-01 15:15:06 UTC (rev 203497)
@@ -0,0 +1,33 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Piotr Gorski 
+# Contributor: Lucy 
+# Contributor: Bartlomiej Piotrowski 
+
+pkgname=pkgconf
+pkgver=1.1.0
+pkgrel=1
+
+pkgdesc='Light pkg-config replacement'
+url='https://github.com/pkgconf/pkgconf'
+arch=('i686' 'x86_64')
+license=('custom:ISC')
+
+conflicts=('pkg-config')
+provides=('pkg-config')
+
+source=("https://distfiles.dereferenced.org/pkgconf/pkgconf-$pkgver.tar.xz";)
+
+sha256sums=('5f1ef65d73a880fa5e7012102a17f7b32010e5e46139aed85851a541ba828a63')
+
+build() {
+   cd pkgconf-$pkgver
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd pkgconf-$pkgver
+   make DESTDIR="$pkgdir" install
+   ln -s /usr/bin/pkgconf "$pkgdir"/usr/bin/pkg-config
+   install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}


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

2017-01-01 Thread Johannes Löthberg
Date: Sunday, January 1, 2017 @ 15:17:47
  Author: demize
Revision: 203498

archrelease: copy trunk to community-i686, community-x86_64

Added:
  pkgconf/repos/community-i686/PKGBUILD
(from rev 203497, pkgconf/trunk/PKGBUILD)
  pkgconf/repos/community-x86_64/PKGBUILD
(from rev 203497, pkgconf/trunk/PKGBUILD)
Deleted:
  pkgconf/repos/community-i686/PKGBUILD
  pkgconf/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   66 
 community-i686/PKGBUILD   |   33 --
 community-x86_64/PKGBUILD |   33 --
 3 files changed, 66 insertions(+), 66 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-01 15:15:06 UTC (rev 203497)
+++ community-i686/PKGBUILD 2017-01-01 15:17:47 UTC (rev 203498)
@@ -1,33 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Contributor: Piotr Gorski 
-# Contributor: Lucy 
-# Contributor: Bartlomiej Piotrowski 
-
-pkgname=pkgconf
-pkgver=1.0.2
-pkgrel=1
-
-pkgdesc='Light pkg-config replacement'
-url='https://github.com/pkgconf/pkgconf'
-arch=('i686' 'x86_64')
-license=('custom:ISC')
-
-conflicts=('pkg-config')
-provides=('pkg-config')
-
-source=("http://rabbit.dereferenced.org/~nenolod/distfiles/pkgconf-$pkgver.tar.gz";)
-
-sha256sums=('fb62bd77a4e164c7dfa43fcbd30b68b52cc78b19a2a427cef1aed19070a3349a')
-
-build() {
-   cd pkgconf-$pkgver
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd pkgconf-$pkgver
-   make DESTDIR="$pkgdir" install
-   ln -s /usr/bin/pkgconf "$pkgdir"/usr/bin/pkg-config
-   install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
-}

Copied: pkgconf/repos/community-i686/PKGBUILD (from rev 203497, 
pkgconf/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-01 15:17:47 UTC (rev 203498)
@@ -0,0 +1,33 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Piotr Gorski 
+# Contributor: Lucy 
+# Contributor: Bartlomiej Piotrowski 
+
+pkgname=pkgconf
+pkgver=1.1.0
+pkgrel=1
+
+pkgdesc='Light pkg-config replacement'
+url='https://github.com/pkgconf/pkgconf'
+arch=('i686' 'x86_64')
+license=('custom:ISC')
+
+conflicts=('pkg-config')
+provides=('pkg-config')
+
+source=("https://distfiles.dereferenced.org/pkgconf/pkgconf-$pkgver.tar.xz";)
+
+sha256sums=('5f1ef65d73a880fa5e7012102a17f7b32010e5e46139aed85851a541ba828a63')
+
+build() {
+   cd pkgconf-$pkgver
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd pkgconf-$pkgver
+   make DESTDIR="$pkgdir" install
+   ln -s /usr/bin/pkgconf "$pkgdir"/usr/bin/pkg-config
+   install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-01-01 15:15:06 UTC (rev 203497)
+++ community-x86_64/PKGBUILD   2017-01-01 15:17:47 UTC (rev 203498)
@@ -1,33 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Contributor: Piotr Gorski 
-# Contributor: Lucy 
-# Contributor: Bartlomiej Piotrowski 
-
-pkgname=pkgconf
-pkgver=1.1.0
-pkgrel=1
-
-pkgdesc='Light pkg-config replacement'
-url='https://github.com/pkgconf/pkgconf'
-arch=('i686' 'x86_64')
-license=('custom:ISC')
-
-conflicts=('pkg-config')
-provides=('pkg-config')
-
-source=("https://distfiles.dereferenced.org/pkgconf/pkgconf-$pkgver.tar.xz";)
-
-sha256sums=('5f1ef65d73a880fa5e7012102a17f7b32010e5e46139aed85851a541ba828a63')
-
-build() {
-   cd pkgconf-$pkgver
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd pkgconf-$pkgver
-   make DESTDIR="$pkgdir" install
-   ln -s /usr/bin/pkgconf "$pkgdir"/usr/bin/pkg-config
-   install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
-}

Copied: pkgconf/repos/community-x86_64/PKGBUILD (from rev 203497, 
pkgconf/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-01-01 15:17:47 UTC (rev 203498)
@@ -0,0 +1,33 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Piotr Gorski 
+# Contributor: Lucy 
+# Contributor: Bartlomiej Piotrowski 
+
+pkgname=pkgconf
+pkgver=1.1.0
+pkgrel=1
+
+pkgdesc='Light pkg-config replacement'
+url='https://github.com/pkgconf/pkgconf'
+arch=('i686' 'x86_64')
+license=('custom:ISC')
+
+conflicts=('pkg-config')
+provides=('pkg-config')
+
+source=("https://distfiles.dereferenced.org/pkgconf/pkgconf-$pkgver.tar.xz";)
+
+sha256sums=('5f1ef65d73a880fa5e7012102a17f7b32010e5e46139aed85851a541ba828a63')
+
+build() {
+   cd pkgconf-$pkgver
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd pkgconf-$pkgver
+   make DESTDIR="$pkgdir" instal

[arch-commits] Commit in haproxy/repos (14 files)

2017-01-01 Thread Johannes Löthberg
Date: Sunday, January 1, 2017 @ 15:23:10
  Author: demize
Revision: 203499

db-move: moved haproxy from [community-testing] to [community] (i686, x86_64)

Added:
  haproxy/repos/community-i686/PKGBUILD
(from rev 203498, haproxy/repos/community-testing-i686/PKGBUILD)
  haproxy/repos/community-i686/haproxy.cfg
(from rev 203498, haproxy/repos/community-testing-i686/haproxy.cfg)
  haproxy/repos/community-i686/haproxy.install
(from rev 203498, haproxy/repos/community-testing-i686/haproxy.install)
  haproxy/repos/community-x86_64/PKGBUILD
(from rev 203498, haproxy/repos/community-testing-x86_64/PKGBUILD)
  haproxy/repos/community-x86_64/haproxy.cfg
(from rev 203498, haproxy/repos/community-testing-x86_64/haproxy.cfg)
  haproxy/repos/community-x86_64/haproxy.install
(from rev 203498, haproxy/repos/community-testing-x86_64/haproxy.install)
Deleted:
  haproxy/repos/community-i686/PKGBUILD
  haproxy/repos/community-i686/haproxy.cfg
  haproxy/repos/community-i686/haproxy.install
  haproxy/repos/community-testing-i686/
  haproxy/repos/community-testing-x86_64/
  haproxy/repos/community-x86_64/PKGBUILD
  haproxy/repos/community-x86_64/haproxy.cfg
  haproxy/repos/community-x86_64/haproxy.install

--+
 /PKGBUILD|  140 +
 /haproxy.cfg |   98 +
 /haproxy.install |   24 ++
 community-i686/PKGBUILD  |   70 --
 community-i686/haproxy.cfg   |   49 
 community-i686/haproxy.install   |   12 ---
 community-x86_64/PKGBUILD|   70 --
 community-x86_64/haproxy.cfg |   49 
 community-x86_64/haproxy.install |   12 ---
 9 files changed, 262 insertions(+), 262 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-01 15:17:47 UTC (rev 203498)
+++ community-i686/PKGBUILD 2017-01-01 15:23:10 UTC (rev 203499)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Johannes Löthberg 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgname=haproxy
-pkgver=1.7.0
-pkgrel=1
-
-pkgdesc='Reliable, high performance TCP/HTTP load balancer'
-url='http://haproxy.org/'
-arch=('i686' 'x86_64')
-license=('GPL')
-
-depends=('openssl' 'pcre' 'zlib' 'lua')
-
-backup=('etc/haproxy/haproxy.cfg')
-
-install=haproxy.install
-
-source=(http://haproxy.org/download/${pkgver%.*}/src/haproxy-$pkgver.tar.gz
-haproxy.cfg)
-
-md5sums=('ab6e169aeb1b53364aacda80c904398a'
- '02241a8ca257d12f7eb131e2d7da3f3b')
-
-prepare() {
-  cd haproxy-$pkgver
-  sed -i 's:/usr/sbin/haproxy:/usr/bin/haproxy:' src/haproxy-systemd-wrapper.c
-}
-
-build() {
-  cd haproxy-$pkgver
-
-  make CPU=generic TARGET=linux2628 \
-USE_GETADDRINFO=1 \
-USE_OPENSSL=1 \
-USE_PCRE=1 USE_PCRE_JIT=1 \
-USE_ZLIB=1 \
-USE_LUA=1
-
-  for contrib in halog iprange systemd; do
-make -C contrib/$contrib SBINDIR=/usr/bin
-  done
-}
-
-package() {
-  cd haproxy-$pkgver
-  make \
-EXTRA=haproxy-systemd-wrapper \
-PREFIX="$pkgdir"/usr \
-SBINDIR="$pkgdir"/usr/bin \
-DOCDIR="$pkgdir"/usr/share/$pkgname \
-install
-
-  for contrib in halog iprange; do
-install -Dm755 contrib/$contrib/$contrib "$pkgdir"/usr/bin/$contrib
-  done
-
-  install -Dm644 ../haproxy.cfg "$pkgdir"/etc/haproxy/haproxy.cfg
-  install -Dm644 contrib/systemd/haproxy.service \
-"$pkgdir"/usr/lib/systemd/system/haproxy.service
-
-  install -d "$pkgdir"/usr/share/haproxy/examples/errorfiles
-  install -m644 examples/*.cfg "$pkgdir"/usr/share/haproxy/examples/
-  install -m644 examples/errorfiles/*.http \
-"$pkgdir"/usr/share/haproxy/examples/errorfiles/
-
-  install -Dm644 examples/haproxy.vim \
-"$pkgdir"/usr/share/vim/vimfiles/syntax/haproxy.vim
-}

Copied: haproxy/repos/community-i686/PKGBUILD (from rev 203498, 
haproxy/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-01 15:23:10 UTC (rev 203499)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Johannes Löthberg 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=haproxy
+pkgver=1.7.1
+pkgrel=1
+
+pkgdesc='Reliable, high performance TCP/HTTP load balancer'
+url='http://haproxy.org/'
+arch=('i686' 'x86_64')
+license=('GPL')
+
+depends=('openssl' 'pcre' 'zlib' 'lua')
+
+backup=('etc/haproxy/haproxy.cfg')
+
+install=haproxy.install
+
+source=(http://haproxy.org/download/${pkgver%.*}/src/haproxy-$pkgver.tar.gz
+haproxy.cfg)
+
+md5sums=('d0acaae02e444039e11892ea31dde478'
+ '27941f31d25d5629f4bdef6bc4b2555a')
+
+prepare() {
+  cd haproxy-$pkgver
+  sed -i 's:/usr/sbin/haproxy:/usr/bin/haproxy:' src/haproxy-systemd-wrapper.c
+}
+
+build() {
+  cd haproxy-$pkgver
+
+  make CPU=generic TARGET=linux2628 \
+USE_GETADDRINFO=1 \

[arch-commits] Commit in lib32-xz/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2017-01-01 Thread Pierre Schmitz
Date: Sunday, January 1, 2017 @ 15:53:25
  Author: pierre
Revision: 203501

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-xz/repos/multilib-x86_64/PKGBUILD
(from rev 203500, lib32-xz/trunk/PKGBUILD)
Deleted:
  lib32-xz/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-01 15:53:17 UTC (rev 203500)
+++ PKGBUILD2017-01-01 15:53:25 UTC (rev 203501)
@@ -1,48 +0,0 @@
-# $Id$
-# Contributor: Pierre Schmitz 
-# Contributor: François Charette 
-
-pkgname=lib32-xz
-_pkgbasename=xz
-pkgver=5.2.2
-pkgrel=1
-pkgdesc='Library and command line tools for XZ and LZMA compressed files 
(32-bit)'
-arch=('x86_64')
-url='http://tukaani.org/xz/'
-license=('GPL' 'LGPL' 'custom')
-depends=('lib32-glibc' 'xz')
-makedepends=('gcc-multilib')
-source=("http://tukaani.org/xz/${_pkgbasename}-${pkgver}.tar.gz";
-"http://tukaani.org/xz/${_pkgbasename}-${pkgver}.tar.gz.sig";)
-md5sums=('7cf6a8544a7dae8e8106fdf7addfa28c'
- 'SKIP')
-validpgpkeys=('3690C240CE51B4670D30AD1C38EE757D69184620')  # Lasse Collin
-
-build() {
-   cd ${srcdir}/xz-${pkgver}
-
-   export CC="gcc -m32"
-   export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-   
-   ./configure --prefix=/usr \
-   --libdir=/usr/lib32 \
-   --disable-rpath \
-   --enable-werror
-   make
-}
-
-check() {
-   cd ${srcdir}/xz-${pkgver}
-
-   make check
-}
-
-package() {
-   cd ${srcdir}/xz-${pkgver}
-   
-   make DESTDIR=${pkgdir} install
-
-   rm -rf "${pkgdir}"/usr/{bin,include,share}
-   install -d -m755 "${pkgdir}"/usr/share/licenses
-   ln -s xz "$pkgdir/usr/share/licenses/lib32-xz"
-}

Copied: lib32-xz/repos/multilib-x86_64/PKGBUILD (from rev 203500, 
lib32-xz/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-01 15:53:25 UTC (rev 203501)
@@ -0,0 +1,48 @@
+# $Id$
+# Contributor: Pierre Schmitz 
+# Contributor: François Charette 
+
+pkgname=lib32-xz
+_pkgbasename=xz
+pkgver=5.2.3
+pkgrel=1
+pkgdesc='Library and command line tools for XZ and LZMA compressed files 
(32-bit)'
+arch=('x86_64')
+url='http://tukaani.org/xz/'
+license=('GPL' 'LGPL' 'custom')
+depends=('lib32-glibc' 'xz')
+makedepends=('gcc-multilib')
+source=("http://tukaani.org/xz/${_pkgbasename}-${pkgver}.tar.gz";
+"http://tukaani.org/xz/${_pkgbasename}-${pkgver}.tar.gz.sig";)
+md5sums=('ef68674fb47a8b8e741b34e429d86e9d'
+ 'SKIP')
+validpgpkeys=('3690C240CE51B4670D30AD1C38EE757D69184620')  # Lasse Collin
+
+build() {
+   cd ${srcdir}/xz-${pkgver}
+
+   export CC="gcc -m32"
+   export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+   
+   ./configure --prefix=/usr \
+   --libdir=/usr/lib32 \
+   --disable-rpath \
+   --enable-werror
+   make
+}
+
+check() {
+   cd ${srcdir}/xz-${pkgver}
+
+   make check
+}
+
+package() {
+   cd ${srcdir}/xz-${pkgver}
+   
+   make DESTDIR=${pkgdir} install
+
+   rm -rf "${pkgdir}"/usr/{bin,include,share}
+   install -d -m755 "${pkgdir}"/usr/share/licenses
+   ln -s xz "$pkgdir/usr/share/licenses/lib32-xz"
+}


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

2017-01-01 Thread Pierre Schmitz
Date: Sunday, January 1, 2017 @ 15:53:17
  Author: pierre
Revision: 203500

upgpkg: lib32-xz 5.2.3-1

Modified:
  lib32-xz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 15:23:10 UTC (rev 203499)
+++ PKGBUILD2017-01-01 15:53:17 UTC (rev 203500)
@@ -4,7 +4,7 @@
 
 pkgname=lib32-xz
 _pkgbasename=xz
-pkgver=5.2.2
+pkgver=5.2.3
 pkgrel=1
 pkgdesc='Library and command line tools for XZ and LZMA compressed files 
(32-bit)'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 makedepends=('gcc-multilib')
 source=("http://tukaani.org/xz/${_pkgbasename}-${pkgver}.tar.gz";
 "http://tukaani.org/xz/${_pkgbasename}-${pkgver}.tar.gz.sig";)
-md5sums=('7cf6a8544a7dae8e8106fdf7addfa28c'
+md5sums=('ef68674fb47a8b8e741b34e429d86e9d'
  'SKIP')
 validpgpkeys=('3690C240CE51B4670D30AD1C38EE757D69184620')  # Lasse Collin
 


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

2017-01-01 Thread Felix Yan
Date: Sunday, January 1, 2017 @ 16:07:23
  Author: felixonmars
Revision: 285133

upgpkg: openconnect 1:7.08-1

Modified:
  openconnect/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 16:02:24 UTC (rev 285132)
+++ PKGBUILD2017-01-01 16:07:23 UTC (rev 285133)
@@ -3,7 +3,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=openconnect
-pkgver=7.07
+pkgver=7.08
 pkgrel=1
 epoch=1
 pkgdesc="Open client for Cisco AnyConnect VPN"
@@ -14,7 +14,7 @@
 makedepends=('intltool' 'python2')
 options=('!emptydirs')
 source=(ftp://ftp.infradead.org/pub/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('582692c4bd8c157daadfcc89d6680cb8')
+md5sums=('ca2ca1f61b8515879b481dcf6ed4366b')
 
 build() {
   cd $pkgname-$pkgver


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

2017-01-01 Thread Felix Yan
Date: Sunday, January 1, 2017 @ 16:07:53
  Author: felixonmars
Revision: 285134

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  openconnect/repos/extra-i686/PKGBUILD
(from rev 285133, openconnect/trunk/PKGBUILD)
  openconnect/repos/extra-x86_64/PKGBUILD
(from rev 285133, openconnect/trunk/PKGBUILD)
Deleted:
  openconnect/repos/extra-i686/PKGBUILD
  openconnect/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   60 
 extra-i686/PKGBUILD   |   30 
 extra-x86_64/PKGBUILD |   30 
 3 files changed, 60 insertions(+), 60 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-01 16:07:23 UTC (rev 285133)
+++ extra-i686/PKGBUILD 2017-01-01 16:07:53 UTC (rev 285134)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-# Maintainer: Felix Yan 
-
-pkgname=openconnect
-pkgver=7.07
-pkgrel=1
-epoch=1
-pkgdesc="Open client for Cisco AnyConnect VPN"
-arch=('i686' 'x86_64')
-license=('LGPL2.1')
-url="http://www.infradead.org/openconnect.html";
-depends=('libxml2' 'gnutls' 'libproxy' 'vpnc' 'krb5' 'lz4' 'pcsclite')
-makedepends=('intltool' 'python2')
-options=('!emptydirs')
-source=(ftp://ftp.infradead.org/pub/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('582692c4bd8c157daadfcc89d6680cb8')
-
-build() {
-  cd $pkgname-$pkgver
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
-  --sbindir=/usr/bin \
-  --disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: openconnect/repos/extra-i686/PKGBUILD (from rev 285133, 
openconnect/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-01-01 16:07:53 UTC (rev 285134)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Ionut Biru 
+# Maintainer: Felix Yan 
+
+pkgname=openconnect
+pkgver=7.08
+pkgrel=1
+epoch=1
+pkgdesc="Open client for Cisco AnyConnect VPN"
+arch=('i686' 'x86_64')
+license=('LGPL2.1')
+url="http://www.infradead.org/openconnect.html";
+depends=('libxml2' 'gnutls' 'libproxy' 'vpnc' 'krb5' 'lz4' 'pcsclite')
+makedepends=('intltool' 'python2')
+options=('!emptydirs')
+source=(ftp://ftp.infradead.org/pub/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('ca2ca1f61b8515879b481dcf6ed4366b')
+
+build() {
+  cd $pkgname-$pkgver
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+  --sbindir=/usr/bin \
+  --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-01-01 16:07:23 UTC (rev 285133)
+++ extra-x86_64/PKGBUILD   2017-01-01 16:07:53 UTC (rev 285134)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-# Maintainer: Felix Yan 
-
-pkgname=openconnect
-pkgver=7.07
-pkgrel=1
-epoch=1
-pkgdesc="Open client for Cisco AnyConnect VPN"
-arch=('i686' 'x86_64')
-license=('LGPL2.1')
-url="http://www.infradead.org/openconnect.html";
-depends=('libxml2' 'gnutls' 'libproxy' 'vpnc' 'krb5' 'lz4' 'pcsclite')
-makedepends=('intltool' 'python2')
-options=('!emptydirs')
-source=(ftp://ftp.infradead.org/pub/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('582692c4bd8c157daadfcc89d6680cb8')
-
-build() {
-  cd $pkgname-$pkgver
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
-  --sbindir=/usr/bin \
-  --disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: openconnect/repos/extra-x86_64/PKGBUILD (from rev 285133, 
openconnect/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-01-01 16:07:53 UTC (rev 285134)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Ionut Biru 
+# Maintainer: Felix Yan 
+
+pkgname=openconnect
+pkgver=7.08
+pkgrel=1
+epoch=1
+pkgdesc="Open client for Cisco AnyConnect VPN"
+arch=('i686' 'x86_64')
+license=('LGPL2.1')
+url="http://www.infradead.org/openconnect.html";
+depends=('libxml2' 'gnutls' 'libproxy' 'vpnc' 'krb5' 'lz4' 'pcsclite')
+makedepends=('intltool' 'python2')
+options=('!emptydirs')
+source=(ftp://ftp.infradead.org/pub/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('ca2ca1f61b8515879b481dcf6ed4366b')
+
+build() {
+  cd $pkgname-$pkgver
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+  --sbindir=/usr/bin \
+  --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2017-01-01 Thread Felix Yan
Date: Sunday, January 1, 2017 @ 16:39:32
  Author: felixonmars
Revision: 204102

upgpkg: python-txaio 2.6.0-1

Modified:
  python-txaio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 16:34:18 UTC (rev 204101)
+++ PKGBUILD2017-01-01 16:39:32 UTC (rev 204102)
@@ -3,8 +3,8 @@
 
 pkgbase=python-txaio
 pkgname=(python-txaio python2-txaio)
-pkgver=2.5.2
-pkgrel=2
+pkgver=2.6.0
+pkgrel=1
 pkgdesc='Utilities to support code that runs unmodified on Twisted and asyncio'
 arch=(any)
 url='https://github.com/tavendo/txaio'
@@ -11,7 +11,7 @@
 license=(MIT)
 makedepends=(python-setuptools python2-setuptools python-twisted 
python2-twisted)
 source=(https://pypi.io/packages/source/t/txaio/txaio-$pkgver.tar.gz)
-sha1sums=('65813586147b24985e9e4138d689d6789e619df8')
+sha1sums=('bca77609fe219a7ed37a0864974b6597dd121c99')
 
 prepare() {
   cp -a txaio-$pkgver{,-py2}


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

2017-01-01 Thread Felix Yan
Date: Sunday, January 1, 2017 @ 16:40:23
  Author: felixonmars
Revision: 204104

archrelease: copy trunk to community-testing-any

Added:
  python-txaio/repos/community-testing-any/PKGBUILD
(from rev 204103, python-txaio/trunk/PKGBUILD)
Deleted:
  python-txaio/repos/community-testing-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-01 16:39:47 UTC (rev 204103)
+++ PKGBUILD2017-01-01 16:40:23 UTC (rev 204104)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov
-
-pkgbase=python-txaio
-pkgname=(python-txaio python2-txaio)
-pkgver=2.6.0
-pkgrel=1
-pkgdesc='Utilities to support code that runs unmodified on Twisted and asyncio'
-arch=(any)
-url='https://github.com/tavendo/txaio'
-license=(MIT)
-makedepends=(python-setuptools python2-setuptools python-twisted 
python2-twisted)
-source=(https://pypi.io/packages/source/t/txaio/txaio-$pkgver.tar.gz)
-sha1sums=('bca77609fe219a7ed37a0864974b6597dd121c99')
-
-prepare() {
-  cp -a txaio-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir/txaio-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/txaio-$pkgver-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/txaio-$pkgver"
-  python setup.py test
-
-  cd "$srcdir/txaio-$pkgver-py2"
-  python2 setup.py test
-}
-
-package_python-txaio() {
-  depends=(python python-six python-twisted)
-
-  cd "$srcdir/txaio-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-txaio() {
-  depends=(python2 python2-six python2-twisted)
-
-  cd "$srcdir/txaio-$pkgver-py2"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-txaio/repos/community-testing-any/PKGBUILD (from rev 204103, 
python-txaio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-01 16:40:23 UTC (rev 204104)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+
+pkgbase=python-txaio
+pkgname=(python-txaio python2-txaio)
+pkgver=2.6.0
+pkgrel=1
+pkgdesc='Utilities to support code that runs unmodified on Twisted and asyncio'
+arch=(any)
+url='https://github.com/tavendo/txaio'
+license=(MIT)
+makedepends=(python-setuptools python2-setuptools python-twisted 
python2-twisted)
+source=(https://pypi.io/packages/source/t/txaio/txaio-$pkgver.tar.gz)
+sha1sums=('bca77609fe219a7ed37a0864974b6597dd121c99')
+
+prepare() {
+  cp -a txaio-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir/txaio-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/txaio-$pkgver-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/txaio-$pkgver"
+  python setup.py test
+
+  cd "$srcdir/txaio-$pkgver-py2"
+  python2 setup.py test
+}
+
+package_python-txaio() {
+  depends=(python python-six python-twisted)
+
+  cd "$srcdir/txaio-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-txaio() {
+  depends=(python2 python2-six python2-twisted)
+
+  cd "$srcdir/txaio-$pkgver-py2"
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2017-01-01 Thread Felix Yan
Date: Sunday, January 1, 2017 @ 16:39:47
  Author: felixonmars
Revision: 204103

archrelease: copy trunk to community-testing-any

Added:
  python-txaio/repos/community-testing-any/PKGBUILD
(from rev 204102, python-txaio/trunk/PKGBUILD)
Deleted:
  python-txaio/repos/community-testing-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-01 16:39:32 UTC (rev 204102)
+++ PKGBUILD2017-01-01 16:39:47 UTC (rev 204103)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov
-
-pkgbase=python-txaio
-pkgname=(python-txaio python2-txaio)
-pkgver=2.5.2
-pkgrel=2
-pkgdesc='Utilities to support code that runs unmodified on Twisted and asyncio'
-arch=(any)
-url='https://github.com/tavendo/txaio'
-license=(MIT)
-makedepends=(python-setuptools python2-setuptools python-twisted 
python2-twisted)
-source=(https://pypi.io/packages/source/t/txaio/txaio-$pkgver.tar.gz)
-sha1sums=('65813586147b24985e9e4138d689d6789e619df8')
-
-prepare() {
-  cp -a txaio-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir/txaio-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/txaio-$pkgver-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/txaio-$pkgver"
-  python setup.py test
-
-  cd "$srcdir/txaio-$pkgver-py2"
-  python2 setup.py test
-}
-
-package_python-txaio() {
-  depends=(python python-six python-twisted)
-
-  cd "$srcdir/txaio-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-txaio() {
-  depends=(python2 python2-six python2-twisted)
-
-  cd "$srcdir/txaio-$pkgver-py2"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-txaio/repos/community-testing-any/PKGBUILD (from rev 204102, 
python-txaio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-01 16:39:47 UTC (rev 204103)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+
+pkgbase=python-txaio
+pkgname=(python-txaio python2-txaio)
+pkgver=2.6.0
+pkgrel=1
+pkgdesc='Utilities to support code that runs unmodified on Twisted and asyncio'
+arch=(any)
+url='https://github.com/tavendo/txaio'
+license=(MIT)
+makedepends=(python-setuptools python2-setuptools python-twisted 
python2-twisted)
+source=(https://pypi.io/packages/source/t/txaio/txaio-$pkgver.tar.gz)
+sha1sums=('bca77609fe219a7ed37a0864974b6597dd121c99')
+
+prepare() {
+  cp -a txaio-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir/txaio-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/txaio-$pkgver-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/txaio-$pkgver"
+  python setup.py test
+
+  cd "$srcdir/txaio-$pkgver-py2"
+  python2 setup.py test
+}
+
+package_python-txaio() {
+  depends=(python python-six python-twisted)
+
+  cd "$srcdir/txaio-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-txaio() {
+  depends=(python2 python2-six python2-twisted)
+
+  cd "$srcdir/txaio-$pkgver-py2"
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2017-01-01 Thread Felix Yan
Date: Sunday, January 1, 2017 @ 16:41:42
  Author: felixonmars
Revision: 204105

archrelease: copy trunk to community-testing-any

Added:
  python-txaio/repos/community-testing-any/PKGBUILD
(from rev 204104, python-txaio/trunk/PKGBUILD)
Deleted:
  python-txaio/repos/community-testing-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-01 16:40:23 UTC (rev 204104)
+++ PKGBUILD2017-01-01 16:41:42 UTC (rev 204105)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov
-
-pkgbase=python-txaio
-pkgname=(python-txaio python2-txaio)
-pkgver=2.6.0
-pkgrel=1
-pkgdesc='Utilities to support code that runs unmodified on Twisted and asyncio'
-arch=(any)
-url='https://github.com/tavendo/txaio'
-license=(MIT)
-makedepends=(python-setuptools python2-setuptools python-twisted 
python2-twisted)
-source=(https://pypi.io/packages/source/t/txaio/txaio-$pkgver.tar.gz)
-sha1sums=('bca77609fe219a7ed37a0864974b6597dd121c99')
-
-prepare() {
-  cp -a txaio-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir/txaio-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/txaio-$pkgver-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/txaio-$pkgver"
-  python setup.py test
-
-  cd "$srcdir/txaio-$pkgver-py2"
-  python2 setup.py test
-}
-
-package_python-txaio() {
-  depends=(python python-six python-twisted)
-
-  cd "$srcdir/txaio-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-txaio() {
-  depends=(python2 python2-six python2-twisted)
-
-  cd "$srcdir/txaio-$pkgver-py2"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-txaio/repos/community-testing-any/PKGBUILD (from rev 204104, 
python-txaio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-01 16:41:42 UTC (rev 204105)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+
+pkgbase=python-txaio
+pkgname=(python-txaio python2-txaio)
+pkgver=2.6.0
+pkgrel=1
+pkgdesc='Utilities to support code that runs unmodified on Twisted and asyncio'
+arch=(any)
+url='https://github.com/tavendo/txaio'
+license=(MIT)
+makedepends=(python-setuptools python2-setuptools python-twisted 
python2-twisted)
+source=(https://pypi.io/packages/source/t/txaio/txaio-$pkgver.tar.gz)
+sha1sums=('bca77609fe219a7ed37a0864974b6597dd121c99')
+
+prepare() {
+  cp -a txaio-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir/txaio-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/txaio-$pkgver-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/txaio-$pkgver"
+  python setup.py test
+
+  cd "$srcdir/txaio-$pkgver-py2"
+  python2 setup.py test
+}
+
+package_python-txaio() {
+  depends=(python python-six python-twisted)
+
+  cd "$srcdir/txaio-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-txaio() {
+  depends=(python2 python2-six python2-twisted)
+
+  cd "$srcdir/txaio-$pkgver-py2"
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2017-01-01 Thread Felix Yan
Date: Sunday, January 1, 2017 @ 16:42:23
  Author: felixonmars
Revision: 204106

archrelease: copy trunk to community-testing-any

Added:
  python-txaio/repos/community-testing-any/PKGBUILD
(from rev 204105, python-txaio/trunk/PKGBUILD)
Deleted:
  python-txaio/repos/community-testing-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-01 16:41:42 UTC (rev 204105)
+++ PKGBUILD2017-01-01 16:42:23 UTC (rev 204106)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov
-
-pkgbase=python-txaio
-pkgname=(python-txaio python2-txaio)
-pkgver=2.6.0
-pkgrel=1
-pkgdesc='Utilities to support code that runs unmodified on Twisted and asyncio'
-arch=(any)
-url='https://github.com/tavendo/txaio'
-license=(MIT)
-makedepends=(python-setuptools python2-setuptools python-twisted 
python2-twisted)
-source=(https://pypi.io/packages/source/t/txaio/txaio-$pkgver.tar.gz)
-sha1sums=('bca77609fe219a7ed37a0864974b6597dd121c99')
-
-prepare() {
-  cp -a txaio-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir/txaio-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/txaio-$pkgver-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/txaio-$pkgver"
-  python setup.py test
-
-  cd "$srcdir/txaio-$pkgver-py2"
-  python2 setup.py test
-}
-
-package_python-txaio() {
-  depends=(python python-six python-twisted)
-
-  cd "$srcdir/txaio-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-txaio() {
-  depends=(python2 python2-six python2-twisted)
-
-  cd "$srcdir/txaio-$pkgver-py2"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-txaio/repos/community-testing-any/PKGBUILD (from rev 204105, 
python-txaio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-01 16:42:23 UTC (rev 204106)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+
+pkgbase=python-txaio
+pkgname=(python-txaio python2-txaio)
+pkgver=2.6.0
+pkgrel=1
+pkgdesc='Utilities to support code that runs unmodified on Twisted and asyncio'
+arch=(any)
+url='https://github.com/tavendo/txaio'
+license=(MIT)
+makedepends=(python-setuptools python2-setuptools python-twisted 
python2-twisted)
+source=(https://pypi.io/packages/source/t/txaio/txaio-$pkgver.tar.gz)
+sha1sums=('bca77609fe219a7ed37a0864974b6597dd121c99')
+
+prepare() {
+  cp -a txaio-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir/txaio-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/txaio-$pkgver-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/txaio-$pkgver"
+  python setup.py test
+
+  cd "$srcdir/txaio-$pkgver-py2"
+  python2 setup.py test
+}
+
+package_python-txaio() {
+  depends=(python python-six python-twisted)
+
+  cd "$srcdir/txaio-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-txaio() {
+  depends=(python2 python2-six python2-twisted)
+
+  cd "$srcdir/txaio-$pkgver-py2"
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2017-01-01 Thread Felix Yan
Date: Sunday, January 1, 2017 @ 16:42:53
  Author: felixonmars
Revision: 204107

archrelease: copy trunk to community-testing-any

Added:
  python-txaio/repos/community-testing-any/PKGBUILD
(from rev 204106, python-txaio/trunk/PKGBUILD)
Deleted:
  python-txaio/repos/community-testing-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-01 16:42:23 UTC (rev 204106)
+++ PKGBUILD2017-01-01 16:42:53 UTC (rev 204107)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov
-
-pkgbase=python-txaio
-pkgname=(python-txaio python2-txaio)
-pkgver=2.6.0
-pkgrel=1
-pkgdesc='Utilities to support code that runs unmodified on Twisted and asyncio'
-arch=(any)
-url='https://github.com/tavendo/txaio'
-license=(MIT)
-makedepends=(python-setuptools python2-setuptools python-twisted 
python2-twisted)
-source=(https://pypi.io/packages/source/t/txaio/txaio-$pkgver.tar.gz)
-sha1sums=('bca77609fe219a7ed37a0864974b6597dd121c99')
-
-prepare() {
-  cp -a txaio-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir/txaio-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/txaio-$pkgver-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/txaio-$pkgver"
-  python setup.py test
-
-  cd "$srcdir/txaio-$pkgver-py2"
-  python2 setup.py test
-}
-
-package_python-txaio() {
-  depends=(python python-six python-twisted)
-
-  cd "$srcdir/txaio-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-txaio() {
-  depends=(python2 python2-six python2-twisted)
-
-  cd "$srcdir/txaio-$pkgver-py2"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-txaio/repos/community-testing-any/PKGBUILD (from rev 204106, 
python-txaio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-01 16:42:53 UTC (rev 204107)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+
+pkgbase=python-txaio
+pkgname=(python-txaio python2-txaio)
+pkgver=2.6.0
+pkgrel=1
+pkgdesc='Utilities to support code that runs unmodified on Twisted and asyncio'
+arch=(any)
+url='https://github.com/tavendo/txaio'
+license=(MIT)
+makedepends=(python-setuptools python2-setuptools python-twisted 
python2-twisted)
+source=(https://pypi.io/packages/source/t/txaio/txaio-$pkgver.tar.gz)
+sha1sums=('bca77609fe219a7ed37a0864974b6597dd121c99')
+
+prepare() {
+  cp -a txaio-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir/txaio-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/txaio-$pkgver-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/txaio-$pkgver"
+  python setup.py test
+
+  cd "$srcdir/txaio-$pkgver-py2"
+  python2 setup.py test
+}
+
+package_python-txaio() {
+  depends=(python python-six python-twisted)
+
+  cd "$srcdir/txaio-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-txaio() {
+  depends=(python2 python2-six python2-twisted)
+
+  cd "$srcdir/txaio-$pkgver-py2"
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2017-01-01 Thread Felix Yan
Date: Sunday, January 1, 2017 @ 16:44:45
  Author: felixonmars
Revision: 204108

archrelease: copy trunk to community-testing-any

Added:
  python-txaio/repos/community-testing-any/PKGBUILD
(from rev 204107, python-txaio/trunk/PKGBUILD)
Deleted:
  python-txaio/repos/community-testing-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-01 16:42:53 UTC (rev 204107)
+++ PKGBUILD2017-01-01 16:44:45 UTC (rev 204108)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov
-
-pkgbase=python-txaio
-pkgname=(python-txaio python2-txaio)
-pkgver=2.6.0
-pkgrel=1
-pkgdesc='Utilities to support code that runs unmodified on Twisted and asyncio'
-arch=(any)
-url='https://github.com/tavendo/txaio'
-license=(MIT)
-makedepends=(python-setuptools python2-setuptools python-twisted 
python2-twisted)
-source=(https://pypi.io/packages/source/t/txaio/txaio-$pkgver.tar.gz)
-sha1sums=('bca77609fe219a7ed37a0864974b6597dd121c99')
-
-prepare() {
-  cp -a txaio-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir/txaio-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/txaio-$pkgver-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/txaio-$pkgver"
-  python setup.py test
-
-  cd "$srcdir/txaio-$pkgver-py2"
-  python2 setup.py test
-}
-
-package_python-txaio() {
-  depends=(python python-six python-twisted)
-
-  cd "$srcdir/txaio-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-txaio() {
-  depends=(python2 python2-six python2-twisted)
-
-  cd "$srcdir/txaio-$pkgver-py2"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-txaio/repos/community-testing-any/PKGBUILD (from rev 204107, 
python-txaio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-01 16:44:45 UTC (rev 204108)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+
+pkgbase=python-txaio
+pkgname=(python-txaio python2-txaio)
+pkgver=2.6.0
+pkgrel=1
+pkgdesc='Utilities to support code that runs unmodified on Twisted and asyncio'
+arch=(any)
+url='https://github.com/tavendo/txaio'
+license=(MIT)
+makedepends=(python-setuptools python2-setuptools python-twisted 
python2-twisted)
+source=(https://pypi.io/packages/source/t/txaio/txaio-$pkgver.tar.gz)
+sha1sums=('bca77609fe219a7ed37a0864974b6597dd121c99')
+
+prepare() {
+  cp -a txaio-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir/txaio-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/txaio-$pkgver-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/txaio-$pkgver"
+  python setup.py test
+
+  cd "$srcdir/txaio-$pkgver-py2"
+  python2 setup.py test
+}
+
+package_python-txaio() {
+  depends=(python python-six python-twisted)
+
+  cd "$srcdir/txaio-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-txaio() {
+  depends=(python2 python2-six python2-twisted)
+
+  cd "$srcdir/txaio-$pkgver-py2"
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2017-01-01 Thread Felix Yan
Date: Sunday, January 1, 2017 @ 16:46:48
  Author: felixonmars
Revision: 204109

archrelease: copy trunk to community-testing-any

Added:
  python-txaio/repos/community-testing-any/PKGBUILD
(from rev 204108, python-txaio/trunk/PKGBUILD)
Deleted:
  python-txaio/repos/community-testing-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-01 16:44:45 UTC (rev 204108)
+++ PKGBUILD2017-01-01 16:46:48 UTC (rev 204109)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov
-
-pkgbase=python-txaio
-pkgname=(python-txaio python2-txaio)
-pkgver=2.6.0
-pkgrel=1
-pkgdesc='Utilities to support code that runs unmodified on Twisted and asyncio'
-arch=(any)
-url='https://github.com/tavendo/txaio'
-license=(MIT)
-makedepends=(python-setuptools python2-setuptools python-twisted 
python2-twisted)
-source=(https://pypi.io/packages/source/t/txaio/txaio-$pkgver.tar.gz)
-sha1sums=('bca77609fe219a7ed37a0864974b6597dd121c99')
-
-prepare() {
-  cp -a txaio-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir/txaio-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/txaio-$pkgver-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/txaio-$pkgver"
-  python setup.py test
-
-  cd "$srcdir/txaio-$pkgver-py2"
-  python2 setup.py test
-}
-
-package_python-txaio() {
-  depends=(python python-six python-twisted)
-
-  cd "$srcdir/txaio-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-txaio() {
-  depends=(python2 python2-six python2-twisted)
-
-  cd "$srcdir/txaio-$pkgver-py2"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-txaio/repos/community-testing-any/PKGBUILD (from rev 204108, 
python-txaio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-01 16:46:48 UTC (rev 204109)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+
+pkgbase=python-txaio
+pkgname=(python-txaio python2-txaio)
+pkgver=2.6.0
+pkgrel=1
+pkgdesc='Utilities to support code that runs unmodified on Twisted and asyncio'
+arch=(any)
+url='https://github.com/tavendo/txaio'
+license=(MIT)
+makedepends=(python-setuptools python2-setuptools python-twisted 
python2-twisted)
+source=(https://pypi.io/packages/source/t/txaio/txaio-$pkgver.tar.gz)
+sha1sums=('bca77609fe219a7ed37a0864974b6597dd121c99')
+
+prepare() {
+  cp -a txaio-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir/txaio-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/txaio-$pkgver-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/txaio-$pkgver"
+  python setup.py test
+
+  cd "$srcdir/txaio-$pkgver-py2"
+  python2 setup.py test
+}
+
+package_python-txaio() {
+  depends=(python python-six python-twisted)
+
+  cd "$srcdir/txaio-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-txaio() {
+  depends=(python2 python2-six python2-twisted)
+
+  cd "$srcdir/txaio-$pkgver-py2"
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2017-01-01 Thread Felix Yan
Date: Sunday, January 1, 2017 @ 17:14:22
  Author: felixonmars
Revision: 204110

upgpkg: wine-staging 2.0rc3-1

Modified:
  wine-staging/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 16:46:48 UTC (rev 204109)
+++ PKGBUILD2017-01-01 17:14:22 UTC (rev 204110)
@@ -6,7 +6,7 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=wine-staging
-pkgver=2.0rc2
+pkgver=2.0rc3
 pkgrel=1
 
 _pkgbasever=${pkgver/rc/-rc}
@@ -13,7 +13,7 @@
 
 
source=("https://github.com/wine-compholio/wine-patched/archive/staging-$_pkgbasever.tar.gz";
 30-win32-aliases.conf)
-sha1sums=('4529805e3291b7570734001e2bc1ac646afc1705'
+sha1sums=('3b8bf862775a7efdce886115d8c9e550066f563f'
   '023a5c901c6a091c56e76b6a62d141d87cce9fdb')
 
 pkgdesc="A compatibility layer for running Windows programs - Staging branch"


[arch-commits] Commit in wine-staging/repos/community-i686 (4 files)

2017-01-01 Thread Felix Yan
Date: Sunday, January 1, 2017 @ 17:14:37
  Author: felixonmars
Revision: 204111

archrelease: copy trunk to community-i686

Added:
  wine-staging/repos/community-i686/30-win32-aliases.conf
(from rev 204110, wine-staging/trunk/30-win32-aliases.conf)
  wine-staging/repos/community-i686/PKGBUILD
(from rev 204110, wine-staging/trunk/PKGBUILD)
Deleted:
  wine-staging/repos/community-i686/30-win32-aliases.conf
  wine-staging/repos/community-i686/PKGBUILD

--+
 PKGBUILD |  368 ++---
 1 file changed, 184 insertions(+), 184 deletions(-)

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

Copied: wine-staging/repos/community-i686/30-win32-aliases.conf (from rev 
204110, wine-staging/trunk/30-win32-aliases.conf)
===
(Binary files differ)

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-01 17:14:22 UTC (rev 204110)
+++ PKGBUILD2017-01-01 17:14:37 UTC (rev 204111)
@@ -1,184 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine-staging
-pkgver=2.0rc2
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=("https://github.com/wine-compholio/wine-patched/archive/staging-$_pkgbasever.tar.gz";
-30-win32-aliases.conf)
-sha1sums=('4529805e3291b7570734001e2bc1ac646afc1705'
-  '023a5c901c6a091c56e76b6a62d141d87cce9fdb')
-
-pkgdesc="A compatibility layer for running Windows programs - Staging branch"
-url="http://www.wine-staging.com";
-arch=(i686 x86_64)
-options=(staticlibs)
-license=(LGPL)
-
-_depends=(
-  attr lib32-attr
-  fontconfig   lib32-fontconfig
-  lcms2lib32-lcms2
-  libxml2  lib32-libxml2
-  libxcursor   lib32-libxcursor
-  libxrandrlib32-libxrandr
-  libxdamage   lib32-libxdamage
-  libxilib32-libxi
-  gettext  lib32-gettext
-  freetype2lib32-freetype2
-  glu  lib32-glu
-  libsmlib32-libsm
-  gcc-libs lib32-gcc-libs
-  libpcap  lib32-libpcap
-  desktop-file-utils
-)
-
-makedepends=(autoconf ncurses bison perl fontforge flex
-  'gcc>=4.5.0-2'   'gcc-multilib>=4.5.0-2'
-  gifliblib32-giflib
-  libpnglib32-libpng
-  gnutlslib32-gnutls
-  libxinerama   lib32-libxinerama
-  libxcomposite lib32-libxcomposite
-  libxmulib32-libxmu
-  libxxf86vmlib32-libxxf86vm
-  libldap   lib32-libldap
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  alsa-lib  lib32-alsa-lib
-  libxcomposite lib32-libxcomposite
-  mesa  lib32-mesa
-  mesa-libgllib32-mesa-libgl
-  opencl-icd-loader lib32-opencl-icd-loader
-  libxslt   lib32-libxslt
-  libpulse  lib32-libpulse
-  libva lib32-libva
-  gtk3  lib32-gtk3
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  samba
-  opencl-headers
-)
-  
-optdepends=(
-  gifliblib32-giflib
-  libpnglib32-libpng
-  libldap   lib32-libldap
-  gnutlslib32-gnutls
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-plugins  lib32-alsa-plugins
-  alsa-lib  lib32-alsa-lib
-  libjpeg-turbo lib32-libjpeg-turbo
-  libxcomposite lib32-libxcomposite
-  libxinerama   lib32-libxinerama
-  ncurses   lib32-ncurses
-  opencl-icd-loader lib32-opencl-icd-loader
-  libxslt   lib32-libxslt
-  libva lib32-libva
-  gtk3  lib32-gtk3
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  vulkan-icd-loader lib32-vulkan-icd-loader
-  cups
-  samba   dosbox
-)
-
-if [[ $CARCH == i686 ]]; then
-  # Strip lib32 etc. on i686
-  _depends=(${_depends[@]/*32-*/})
-  makedepends=(${makedepends[@]/*32-*/} ${_depends[@]})
-  makedepends=(${makedepends[@]/*-multilib*/})
-  optdepends=(${optdepends[@]/*32-*/})
-  provides=("wine=$pkgver")
-  conflicts=('wine')
-else
-  makedepends=(${makedepends[@]} ${_depends[@]})
-  provides=("wine=$pkgver" "wine-wow64=$pkgver")
-  conflicts=('wine' 'wine-wow64')
-fi
-
-prepare() {
-  # Allow ccache to work
-  mv wine-patched-staging-$_pkgbasever $pkgname
-
-  sed 's|OpenCL/opencl.h|CL/opencl.h|g' -i $pkgname/configure*
-
-  # Get rid of old build dirs
-  rm -rf $pkgname-{32,64}-build
-  mkdir $pkgname-32-build
-}
-
-build() {
-  cd "$srcdir"
-
-  if [[ $CARCH == x86_64 ]]; then
-msg2 "Building Wine-

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

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 17:17:49
  Author: arojas
Revision: 204112

Update to 0.141

Modified:
  pan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 17:14:37 UTC (rev 204111)
+++ PKGBUILD2017-01-01 17:17:49 UTC (rev 204112)
@@ -3,8 +3,8 @@
 # Contributor: Bernard Baeyens (berbae) 
 
 pkgname=pan
-pkgver=0.140
-pkgrel=3
+pkgver=0.141
+pkgrel=1
 pkgdesc="A powerful Newsgroup Article reader"
 arch=(i686 x86_64)
 url="http://pan.rebelbase.com/";
@@ -12,7 +12,7 @@
 depends=(gtkspell webkitgtk2 gmime)
 makedepends=(intltool)
 
source=("http://pan.rebelbase.com/download/releases/$pkgver/source/$pkgname-$pkgver.tar.bz2";)
-md5sums=('6c6a879e8ea73efbb5512ac00977fd82')
+md5sums=('306003e506d8e7d16b6caccc9a160ab3')
 
 prepare() {
   cd $pkgname-$pkgver


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

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 17:18:37
  Author: arojas
Revision: 204113

archrelease: copy trunk to community-i686, community-x86_64

Added:
  pan/repos/community-i686/PKGBUILD
(from rev 204112, pan/trunk/PKGBUILD)
  pan/repos/community-x86_64/PKGBUILD
(from rev 204112, pan/trunk/PKGBUILD)
Deleted:
  pan/repos/community-i686/PKGBUILD
  pan/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   66 
 community-i686/PKGBUILD   |   33 --
 community-x86_64/PKGBUILD |   33 --
 3 files changed, 66 insertions(+), 66 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-01 17:17:49 UTC (rev 204112)
+++ community-i686/PKGBUILD 2017-01-01 17:18:37 UTC (rev 204113)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Bernard Baeyens (berbae) 
-
-pkgname=pan
-pkgver=0.140
-pkgrel=3
-pkgdesc="A powerful Newsgroup Article reader"
-arch=(i686 x86_64)
-url="http://pan.rebelbase.com/";
-license=(GPL2)
-depends=(gtkspell webkitgtk2 gmime)
-makedepends=(intltool)
-source=("http://pan.rebelbase.com/download/releases/$pkgver/source/$pkgname-$pkgver.tar.bz2";)
-md5sums=('6c6a879e8ea73efbb5512ac00977fd82')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -e 's|@WEBKITGTK_CFLAGS@-DPANLOCALEDIR|@WEBKITGTK_CFLAGS@ 
-DPANLOCALEDIR|' -i pan/gui/Makefile.am
-  sed -e 's|webkitgtk-1.0|webkit-1.0|g' -i configure.ac
-  autoreconf -vi
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --with-webkit --with-gnutls
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: pan/repos/community-i686/PKGBUILD (from rev 204112, pan/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-01 17:18:37 UTC (rev 204113)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Bernard Baeyens (berbae) 
+
+pkgname=pan
+pkgver=0.141
+pkgrel=1
+pkgdesc="A powerful Newsgroup Article reader"
+arch=(i686 x86_64)
+url="http://pan.rebelbase.com/";
+license=(GPL2)
+depends=(gtkspell webkitgtk2 gmime)
+makedepends=(intltool)
+source=("http://pan.rebelbase.com/download/releases/$pkgver/source/$pkgname-$pkgver.tar.bz2";)
+md5sums=('306003e506d8e7d16b6caccc9a160ab3')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -e 's|@WEBKITGTK_CFLAGS@-DPANLOCALEDIR|@WEBKITGTK_CFLAGS@ 
-DPANLOCALEDIR|' -i pan/gui/Makefile.am
+  sed -e 's|webkitgtk-1.0|webkit-1.0|g' -i configure.ac
+  autoreconf -vi
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --with-webkit --with-gnutls
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-01-01 17:17:49 UTC (rev 204112)
+++ community-x86_64/PKGBUILD   2017-01-01 17:18:37 UTC (rev 204113)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Bernard Baeyens (berbae) 
-
-pkgname=pan
-pkgver=0.140
-pkgrel=3
-pkgdesc="A powerful Newsgroup Article reader"
-arch=(i686 x86_64)
-url="http://pan.rebelbase.com/";
-license=(GPL2)
-depends=(gtkspell webkitgtk2 gmime)
-makedepends=(intltool)
-source=("http://pan.rebelbase.com/download/releases/$pkgver/source/$pkgname-$pkgver.tar.bz2";)
-md5sums=('6c6a879e8ea73efbb5512ac00977fd82')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -e 's|@WEBKITGTK_CFLAGS@-DPANLOCALEDIR|@WEBKITGTK_CFLAGS@ 
-DPANLOCALEDIR|' -i pan/gui/Makefile.am
-  sed -e 's|webkitgtk-1.0|webkit-1.0|g' -i configure.ac
-  autoreconf -vi
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --with-webkit --with-gnutls
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: pan/repos/community-x86_64/PKGBUILD (from rev 204112, 
pan/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-01-01 17:18:37 UTC (rev 204113)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Bernard Baeyens (berbae) 
+
+pkgname=pan
+pkgver=0.141
+pkgrel=1
+pkgdesc="A powerful Newsgroup Article reader"
+arch=(i686 x86_64)
+url="http://pan.rebelbase.com/";
+license=(GPL2)
+depends=(gtkspell webkitgtk2 gmime)
+makedepends=(intltool)
+source=("http://pan.rebelbase.com/download/releases/$pkgver/source/$pkgname-$pkgver.tar.bz2";)
+md5sums=('306003e506d8e7d16b6caccc9a160ab3')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -e 's|@WEBKITGTK_CFLAGS@-DPANLOCALEDIR|@WEBKITGTK_CFLAGS@ 
-DPANLOCALEDIR|' -i pan/gui/Makefile.am
+  sed -e 's|webkitgtk-1.0|webkit-1.0|g' -i configure.ac
+  autoreconf -vi
+}
+
+build() {
+  cd $pkgname-$pkgver
+

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

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 17:26:02
  Author: arojas
Revision: 204114

Update to 20161230

Modified:
  eclib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 17:18:37 UTC (rev 204113)
+++ PKGBUILD2017-01-01 17:26:02 UTC (rev 204114)
@@ -2,7 +2,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=eclib
-pkgver=20161219
+pkgver=20161230
 pkgrel=1
 pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
 arch=(i686 x86_64)
@@ -11,7 +11,7 @@
 depends=(flint pari-sage boost-libs)
 makedepends=(boost)
 source=("https://github.com/JohnCremona/eclib/archive/v$pkgver.tar.gz";)
-md5sums=('f1503947c55be3007724675cb610e9c5')
+md5sums=('1005d7caf7f12c46dab0e76d0d203cd5')
 
 build() {
   cd $pkgname-$pkgver


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

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 17:27:03
  Author: arojas
Revision: 204115

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  eclib/repos/community-staging-i686/
  eclib/repos/community-staging-i686/PKGBUILD
(from rev 204114, eclib/trunk/PKGBUILD)
  eclib/repos/community-staging-x86_64/
  eclib/repos/community-staging-x86_64/PKGBUILD
(from rev 204114, eclib/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   27 +++
 community-staging-x86_64/PKGBUILD |   27 +++
 2 files changed, 54 insertions(+)

Copied: eclib/repos/community-staging-i686/PKGBUILD (from rev 204114, 
eclib/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-01-01 17:27:03 UTC (rev 204115)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=eclib
+pkgver=20161230
+pkgrel=1
+pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
+arch=(i686 x86_64)
+url="https://github.com/JohnCremona/eclib/";
+license=(GPL)
+depends=(flint pari-sage boost-libs)
+makedepends=(boost)
+source=("https://github.com/JohnCremona/eclib/archive/v$pkgver.tar.gz";)
+md5sums=('1005d7caf7f12c46dab0e76d0d203cd5')
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh
+  ./configure --prefix=/usr --with-flint=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make install DESTDIR="$pkgdir"
+}
+

Copied: eclib/repos/community-staging-x86_64/PKGBUILD (from rev 204114, 
eclib/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-01-01 17:27:03 UTC (rev 204115)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=eclib
+pkgver=20161230
+pkgrel=1
+pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
+arch=(i686 x86_64)
+url="https://github.com/JohnCremona/eclib/";
+license=(GPL)
+depends=(flint pari-sage boost-libs)
+makedepends=(boost)
+source=("https://github.com/JohnCremona/eclib/archive/v$pkgver.tar.gz";)
+md5sums=('1005d7caf7f12c46dab0e76d0d203cd5')
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh
+  ./configure --prefix=/usr --with-flint=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make install DESTDIR="$pkgdir"
+}
+


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

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 17:31:09
  Author: arojas
Revision: 204116

Update to 3.0.1

Modified:
  kpmcore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 17:27:03 UTC (rev 204115)
+++ PKGBUILD2017-01-01 17:31:09 UTC (rev 204116)
@@ -2,7 +2,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=kpmcore
-pkgver=3.0.0
+pkgver=3.0.1
 pkgrel=1
 pkgdesc="Library for managing partitions"
 arch=(i686 x86_64)
@@ -18,7 +18,7 @@
 'dosfstools: FAT32 support'
 'f2fs-tools: F2FS support')
 
source=("http://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-md5sums=('88b09d324188079472770ecbb0f8514f'
+md5sums=('cd0fd0dfe8fd7c2061e49c3771f45c23'
  'SKIP')
 validpgpkeys=(1EE5A3205904BAA2B88C0A9D24FD31940095C0E1) # Andrius Štikonas 

 


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

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 17:31:44
  Author: arojas
Revision: 204117

archrelease: copy trunk to community-i686, community-x86_64

Added:
  kpmcore/repos/community-i686/PKGBUILD
(from rev 204116, kpmcore/trunk/PKGBUILD)
  kpmcore/repos/community-x86_64/PKGBUILD
(from rev 204116, kpmcore/trunk/PKGBUILD)
Deleted:
  kpmcore/repos/community-i686/PKGBUILD
  kpmcore/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   84 
 community-i686/PKGBUILD   |   42 --
 community-x86_64/PKGBUILD |   42 --
 3 files changed, 84 insertions(+), 84 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-01 17:31:09 UTC (rev 204116)
+++ community-i686/PKGBUILD 2017-01-01 17:31:44 UTC (rev 204117)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=kpmcore
-pkgver=3.0.0
-pkgrel=1
-pkgdesc="Library for managing partitions"
-arch=(i686 x86_64)
-url="http://kde.org/applications/system/kdepartitionmanager/";
-license=(GPL2)
-depends=(kio parted)
-makedepends=(extra-cmake-modules python)
-optdepends=('e2fsprogs: ext2/3/4 support'
-   'xfsprogs: XFS support'
-   'jfsutils: JFS support'
-   'reiserfsprogs: Reiser support'
-   'ntfs-3g: NTFS support'
-'dosfstools: FAT32 support'
-'f2fs-tools: F2FS support')
-source=("http://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-md5sums=('88b09d324188079472770ecbb0f8514f'
- 'SKIP')
-validpgpkeys=(1EE5A3205904BAA2B88C0A9D24FD31940095C0E1) # Andrius Štikonas 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kpmcore/repos/community-i686/PKGBUILD (from rev 204116, 
kpmcore/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-01 17:31:44 UTC (rev 204117)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=kpmcore
+pkgver=3.0.1
+pkgrel=1
+pkgdesc="Library for managing partitions"
+arch=(i686 x86_64)
+url="http://kde.org/applications/system/kdepartitionmanager/";
+license=(GPL2)
+depends=(kio parted)
+makedepends=(extra-cmake-modules python)
+optdepends=('e2fsprogs: ext2/3/4 support'
+   'xfsprogs: XFS support'
+   'jfsutils: JFS support'
+   'reiserfsprogs: Reiser support'
+   'ntfs-3g: NTFS support'
+'dosfstools: FAT32 support'
+'f2fs-tools: F2FS support')
+source=("http://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+md5sums=('cd0fd0dfe8fd7c2061e49c3771f45c23'
+ 'SKIP')
+validpgpkeys=(1EE5A3205904BAA2B88C0A9D24FD31940095C0E1) # Andrius Štikonas 

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

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-01-01 17:31:09 UTC (rev 204116)
+++ community-x86_64/PKGBUILD   2017-01-01 17:31:44 UTC (rev 204117)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=kpmcore
-pkgver=3.0.0
-pkgrel=1
-pkgdesc="Library for managing partitions"
-arch=(i686 x86_64)
-url="http://kde.org/applications/system/kdepartitionmanager/";
-license=(GPL2)
-depends=(kio parted)
-makedepends=(extra-cmake-modules python)
-optdepends=('e2fsprogs: ext2/3/4 support'
-   'xfsprogs: XFS support'
-   'jfsutils: JFS support'
-   'reiserfsprogs: Reiser support'
-   'ntfs-3g: NTFS support'
-'dosfstools: FAT32 support'
-'f2fs-tools: F2FS support')
-source=("http://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-md5sums=('88b09d324188079472770ecbb0f8514f'
- 'SKIP')
-validpgpkeys=(1EE5A3205904BAA2B88C0A9D24FD31940095C0E1) # Andrius Štikonas 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kpmcore/repos/community-x86_64/PKGBUILD (from rev 204116, 
kpmcore/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD  

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

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 17:39:41
  Author: arojas
Revision: 204118

Update to 0.29

Modified:
  bup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 17:31:44 UTC (rev 204117)
+++ PKGBUILD2017-01-01 17:39:41 UTC (rev 204118)
@@ -8,7 +8,7 @@
 # Contributor: SanskritFritz (gmail)
 
 pkgname=bup
-pkgver=0.28.1
+pkgver=0.29
 pkgrel=1
 pkgdesc='Efficient backup system based on the git packfile format'
 arch=('x86_64' 'i686')
@@ -19,7 +19,7 @@
 checkdepends=('rsync' 'python2-tornado')
 optdepends=('python2-tornado: for bup web')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/bup/bup/archive/$pkgver.tar.gz";)
-md5sums=('94d47ec13c5edcad4061b8abe2e8dcdd')
+md5sums=('ed717612ff59ec1eb4c0d53f3e11d064')
 
 build() {
   cd $pkgname-$pkgver


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

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 17:40:17
  Author: arojas
Revision: 204119

archrelease: copy trunk to community-x86_64, community-i686

Added:
  bup/repos/community-i686/PKGBUILD
(from rev 204118, bup/trunk/PKGBUILD)
  bup/repos/community-x86_64/PKGBUILD
(from rev 204118, bup/trunk/PKGBUILD)
Deleted:
  bup/repos/community-i686/PKGBUILD
  bup/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   76 
 community-i686/PKGBUILD   |   38 --
 community-x86_64/PKGBUILD |   38 --
 3 files changed, 76 insertions(+), 76 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-01 17:39:41 UTC (rev 204118)
+++ community-i686/PKGBUILD 2017-01-01 17:40:17 UTC (rev 204119)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor:  Bartłomiej Piotrowski 
-# Contributor: Jakob Matthes 
-# Contributor: Bram Schoenmakers 
-# Contributor: henning mueller 
-# Contributor: rakoo (AUR)
-# Contributor: SanskritFritz (gmail)
-
-pkgname=bup
-pkgver=0.28.1
-pkgrel=1
-pkgdesc='Efficient backup system based on the git packfile format'
-arch=('x86_64' 'i686')
-url='https://bup.github.io/'
-license=('GPL')
-depends=('python2-fuse' 'par2cmdline' 'pylibacl' 'python2-pyxattr' 'git')
-makedepends=('ruby-ronn' 'git' 'setconf' 'pandoc')
-checkdepends=('rsync' 'python2-tornado')
-optdepends=('python2-tornado: for bup web')
-source=("https://github.com/bup/bup/archive/$pkgver.tar.gz";)
-md5sums=('94d47ec13c5edcad4061b8abe2e8dcdd')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make test -j1
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" PREFIX=/usr install
-}

Copied: bup/repos/community-i686/PKGBUILD (from rev 204118, bup/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-01 17:40:17 UTC (rev 204119)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Jakob Matthes 
+# Contributor: Bram Schoenmakers 
+# Contributor: henning mueller 
+# Contributor: rakoo (AUR)
+# Contributor: SanskritFritz (gmail)
+
+pkgname=bup
+pkgver=0.29
+pkgrel=1
+pkgdesc='Efficient backup system based on the git packfile format'
+arch=('x86_64' 'i686')
+url='https://bup.github.io/'
+license=('GPL')
+depends=('python2-fuse' 'par2cmdline' 'pylibacl' 'python2-pyxattr' 'git')
+makedepends=('ruby-ronn' 'git' 'setconf' 'pandoc')
+checkdepends=('rsync' 'python2-tornado')
+optdepends=('python2-tornado: for bup web')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/bup/bup/archive/$pkgver.tar.gz";)
+md5sums=('ed717612ff59ec1eb4c0d53f3e11d064')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make test -j1
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" PREFIX=/usr install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-01-01 17:39:41 UTC (rev 204118)
+++ community-x86_64/PKGBUILD   2017-01-01 17:40:17 UTC (rev 204119)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor:  Bartłomiej Piotrowski 
-# Contributor: Jakob Matthes 
-# Contributor: Bram Schoenmakers 
-# Contributor: henning mueller 
-# Contributor: rakoo (AUR)
-# Contributor: SanskritFritz (gmail)
-
-pkgname=bup
-pkgver=0.28.1
-pkgrel=1
-pkgdesc='Efficient backup system based on the git packfile format'
-arch=('x86_64' 'i686')
-url='https://bup.github.io/'
-license=('GPL')
-depends=('python2-fuse' 'par2cmdline' 'pylibacl' 'python2-pyxattr' 'git')
-makedepends=('ruby-ronn' 'git' 'setconf' 'pandoc')
-checkdepends=('rsync' 'python2-tornado')
-optdepends=('python2-tornado: for bup web')
-source=("https://github.com/bup/bup/archive/$pkgver.tar.gz";)
-md5sums=('94d47ec13c5edcad4061b8abe2e8dcdd')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make test -j1
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" PREFIX=/usr install
-}

Copied: bup/repos/community-x86_64/PKGBUILD (from rev 204118, 
bup/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-01-01 17:40:17 UTC (rev 204119)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Jakob Matthes 
+# Contributor: Bram Schoenmakers 
+# Contributor: henning mueller 
+# Contributor: rakoo (AUR)
+# Contributor: SanskritFritz (gmail)
+
+pkgname=bup
+pkgver=0.29
+pkgrel=1
+pkgdesc='Efficient backup system based 

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

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 17:52:04
  Author: arojas
Revision: 204120

Install to the new expected location

Modified:
  mustache-d/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 17:40:17 UTC (rev 204119)
+++ PKGBUILD2017-01-01 17:52:04 UTC (rev 204120)
@@ -3,7 +3,7 @@
 
 pkgname=mustache-d
 pkgver=0.1.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Moustache template engine for D"
 arch=(any)
 url="https://github.com/repeatedly/mustache-d";
@@ -16,6 +16,6 @@
 
 package() {
   cd $pkgname-$pkgver
-  install -Dm644 src/mustache.d 
"$pkgdir"/usr/include/d/mustache-d/src/mustache.d
+  install -Dm644 src/mustache.d "$pkgdir"/usr/include/d/mustache-d/mustache.d
   install -Dm644 "$srcdir"/LICENSE_1_0.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }


[arch-commits] Commit in mustache-d/repos/community-any (PKGBUILD PKGBUILD)

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 17:52:26
  Author: arojas
Revision: 204121

archrelease: copy trunk to community-any

Added:
  mustache-d/repos/community-any/PKGBUILD
(from rev 204120, mustache-d/trunk/PKGBUILD)
Deleted:
  mustache-d/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-01 17:52:04 UTC (rev 204120)
+++ PKGBUILD2017-01-01 17:52:26 UTC (rev 204121)
@@ -1,21 +0,0 @@
-# $Id: PKGBUILD 188929 2016-09-07 12:50:30Z arojas $
-# Maintainer: Antonio Rojas 
-
-pkgname=mustache-d
-pkgver=0.1.1
-pkgrel=1
-pkgdesc="Moustache template engine for D"
-arch=(any)
-url="https://github.com/repeatedly/mustache-d";
-license=(custom:boost)
-depends=()
-makedepends=()
-source=($pkgname-$pkgver::"https://github.com/repeatedly/mustache-d/archive/v$pkgver.tar.gz";
 "http://www.boost.org/LICENSE_1_0.txt";)
-sha256sums=('b2ad2aa9b8461bd2dbde9c3fa68a91ff4164955a2e9eacdc17d54f0d4244f9e0'
-'c9bff75738922193e67fa726fa225535870d2aa1059f91452c411736284ad566')
-
-package() {
-  cd $pkgname-$pkgver
-  install -Dm644 src/mustache.d 
"$pkgdir"/usr/include/d/mustache-d/src/mustache.d
-  install -Dm644 "$srcdir"/LICENSE_1_0.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: mustache-d/repos/community-any/PKGBUILD (from rev 204120, 
mustache-d/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-01 17:52:26 UTC (rev 204121)
@@ -0,0 +1,21 @@
+# $Id: PKGBUILD 188929 2016-09-07 12:50:30Z arojas $
+# Maintainer: Antonio Rojas 
+
+pkgname=mustache-d
+pkgver=0.1.1
+pkgrel=2
+pkgdesc="Moustache template engine for D"
+arch=(any)
+url="https://github.com/repeatedly/mustache-d";
+license=(custom:boost)
+depends=()
+makedepends=()
+source=($pkgname-$pkgver::"https://github.com/repeatedly/mustache-d/archive/v$pkgver.tar.gz";
 "http://www.boost.org/LICENSE_1_0.txt";)
+sha256sums=('b2ad2aa9b8461bd2dbde9c3fa68a91ff4164955a2e9eacdc17d54f0d4244f9e0'
+'c9bff75738922193e67fa726fa225535870d2aa1059f91452c411736284ad566')
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dm644 src/mustache.d "$pkgdir"/usr/include/d/mustache-d/mustache.d
+  install -Dm644 "$srcdir"/LICENSE_1_0.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 17:55:30
  Author: arojas
Revision: 204122

Update to 0.1.2

Modified:
  mustache-d/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 17:52:26 UTC (rev 204121)
+++ PKGBUILD2017-01-01 17:55:30 UTC (rev 204122)
@@ -2,8 +2,8 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=mustache-d
-pkgver=0.1.1
-pkgrel=2
+pkgver=0.1.2
+pkgrel=1
 pkgdesc="Moustache template engine for D"
 arch=(any)
 url="https://github.com/repeatedly/mustache-d";
@@ -11,7 +11,7 @@
 depends=()
 makedepends=()
 
source=($pkgname-$pkgver::"https://github.com/repeatedly/mustache-d/archive/v$pkgver.tar.gz";
 "http://www.boost.org/LICENSE_1_0.txt";)
-sha256sums=('b2ad2aa9b8461bd2dbde9c3fa68a91ff4164955a2e9eacdc17d54f0d4244f9e0'
+sha256sums=('39f1eda9453837dc3ca3ee8cded19fa569d0b5f4a43d775a8a258bce53523164'
 'c9bff75738922193e67fa726fa225535870d2aa1059f91452c411736284ad566')
 
 package() {


[arch-commits] Commit in mustache-d/repos/community-any (PKGBUILD PKGBUILD)

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 17:55:50
  Author: arojas
Revision: 204123

archrelease: copy trunk to community-any

Added:
  mustache-d/repos/community-any/PKGBUILD
(from rev 204122, mustache-d/trunk/PKGBUILD)
Deleted:
  mustache-d/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-01 17:55:30 UTC (rev 204122)
+++ PKGBUILD2017-01-01 17:55:50 UTC (rev 204123)
@@ -1,21 +0,0 @@
-# $Id: PKGBUILD 188929 2016-09-07 12:50:30Z arojas $
-# Maintainer: Antonio Rojas 
-
-pkgname=mustache-d
-pkgver=0.1.1
-pkgrel=2
-pkgdesc="Moustache template engine for D"
-arch=(any)
-url="https://github.com/repeatedly/mustache-d";
-license=(custom:boost)
-depends=()
-makedepends=()
-source=($pkgname-$pkgver::"https://github.com/repeatedly/mustache-d/archive/v$pkgver.tar.gz";
 "http://www.boost.org/LICENSE_1_0.txt";)
-sha256sums=('b2ad2aa9b8461bd2dbde9c3fa68a91ff4164955a2e9eacdc17d54f0d4244f9e0'
-'c9bff75738922193e67fa726fa225535870d2aa1059f91452c411736284ad566')
-
-package() {
-  cd $pkgname-$pkgver
-  install -Dm644 src/mustache.d "$pkgdir"/usr/include/d/mustache-d/mustache.d
-  install -Dm644 "$srcdir"/LICENSE_1_0.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: mustache-d/repos/community-any/PKGBUILD (from rev 204122, 
mustache-d/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-01 17:55:50 UTC (rev 204123)
@@ -0,0 +1,21 @@
+# $Id: PKGBUILD 188929 2016-09-07 12:50:30Z arojas $
+# Maintainer: Antonio Rojas 
+
+pkgname=mustache-d
+pkgver=0.1.2
+pkgrel=1
+pkgdesc="Moustache template engine for D"
+arch=(any)
+url="https://github.com/repeatedly/mustache-d";
+license=(custom:boost)
+depends=()
+makedepends=()
+source=($pkgname-$pkgver::"https://github.com/repeatedly/mustache-d/archive/v$pkgver.tar.gz";
 "http://www.boost.org/LICENSE_1_0.txt";)
+sha256sums=('39f1eda9453837dc3ca3ee8cded19fa569d0b5f4a43d775a8a258bce53523164'
+'c9bff75738922193e67fa726fa225535870d2aa1059f91452c411736284ad566')
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dm644 src/mustache.d "$pkgdir"/usr/include/d/mustache-d/mustache.d
+  install -Dm644 "$srcdir"/LICENSE_1_0.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 18:08:28
  Author: arojas
Revision: 204124

Update to 0.6.1

Modified:
  appstream-generator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 17:55:50 UTC (rev 204123)
+++ PKGBUILD2017-01-01 18:08:28 UTC (rev 204124)
@@ -2,24 +2,21 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=appstream-generator
-pkgver=0.6.0
-pkgrel=4
+pkgver=0.6.1
+pkgrel=1
 pkgdesc="A fast AppStream metadata generator"
 arch=(i686 x86_64)
 url="https://github.com/ximion/appstream-generator";
 license=(GPL3)
 depends=(appstream libarchive librsvg lmdb)
-makedepends=(dmd meson ninja mustache-d curl)
+makedepends=(gdc meson ninja mustache-d curl)
 
source=("https://github.com/ximion/appstream-generator/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz";
 metainfo-no-summary-warning.patch)
-sha256sums=('68f538f2163004b8e2171c694233af401c2cd47a9ea1472265753a48b20600e3'
+sha256sums=('b7d893c99e4e74c9a90f48afb79ffe671ba19bbe48f37f00755ef0ca849acb9f'
 '6ae502ac0e5b6aad3d3617e0e32b6b13752baa97b4d5f051a298db707b2cb4e6')
 
 prepare() {
   mkdir -p build
 
-# fix build
-  sed -e 's/core.sys.linux.stdio/core.sys.posix.stdio/' -i 
$pkgname-$pkgver/src/asgen/utils.d
-
 # Don't treat 'metainfo-no-summary' hints as errors, it excludes too many 
packages
   cd $pkgname-$pkgver
   patch -p1 -i ../metainfo-no-summary-warning.patch


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

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 18:08:55
  Author: arojas
Revision: 204125

archrelease: copy trunk to community-i686, community-x86_64

Added:
  appstream-generator/repos/community-i686/PKGBUILD
(from rev 204124, appstream-generator/trunk/PKGBUILD)
  appstream-generator/repos/community-i686/metainfo-no-summary-warning.patch
(from rev 204124, 
appstream-generator/trunk/metainfo-no-summary-warning.patch)
  appstream-generator/repos/community-x86_64/PKGBUILD
(from rev 204124, appstream-generator/trunk/PKGBUILD)
  appstream-generator/repos/community-x86_64/metainfo-no-summary-warning.patch
(from rev 204124, 
appstream-generator/trunk/metainfo-no-summary-warning.patch)
Deleted:
  appstream-generator/repos/community-i686/PKGBUILD
  appstream-generator/repos/community-i686/metainfo-no-summary-warning.patch
  appstream-generator/repos/community-x86_64/PKGBUILD
  appstream-generator/repos/community-x86_64/metainfo-no-summary-warning.patch

+
 /PKGBUILD  |   68 +++
 /metainfo-no-summary-warning.patch |   22 ++
 community-i686/PKGBUILD|   37 --
 community-i686/metainfo-no-summary-warning.patch   |   11 ---
 community-x86_64/PKGBUILD  |   37 --
 community-x86_64/metainfo-no-summary-warning.patch |   11 ---
 6 files changed, 90 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-01 18:08:28 UTC (rev 204124)
+++ community-i686/PKGBUILD 2017-01-01 18:08:55 UTC (rev 204125)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=appstream-generator
-pkgver=0.6.0
-pkgrel=4
-pkgdesc="A fast AppStream metadata generator"
-arch=(i686 x86_64)
-url="https://github.com/ximion/appstream-generator";
-license=(GPL3)
-depends=(appstream libarchive librsvg lmdb)
-makedepends=(dmd meson ninja mustache-d curl)
-source=("https://github.com/ximion/appstream-generator/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz";
 metainfo-no-summary-warning.patch)
-sha256sums=('68f538f2163004b8e2171c694233af401c2cd47a9ea1472265753a48b20600e3'
-'6ae502ac0e5b6aad3d3617e0e32b6b13752baa97b4d5f051a298db707b2cb4e6')
-
-prepare() {
-  mkdir -p build
-
-# fix build
-  sed -e 's/core.sys.linux.stdio/core.sys.posix.stdio/' -i 
$pkgname-$pkgver/src/asgen/utils.d
-
-# Don't treat 'metainfo-no-summary' hints as errors, it excludes too many 
packages
-  cd $pkgname-$pkgver
-  patch -p1 -i ../metainfo-no-summary-warning.patch
-}
-
-build() {
-  cd build
-  meson ../$pkgname-$pkgver -Ddownload_js=false --prefix=/usr
-  ninja -j1
-}
-
-package() {
-  cd build
-  DESTDIR="$pkgdir" ninja install
-}

Copied: appstream-generator/repos/community-i686/PKGBUILD (from rev 204124, 
appstream-generator/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-01 18:08:55 UTC (rev 204125)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=appstream-generator
+pkgver=0.6.1
+pkgrel=1
+pkgdesc="A fast AppStream metadata generator"
+arch=(i686 x86_64)
+url="https://github.com/ximion/appstream-generator";
+license=(GPL3)
+depends=(appstream libarchive librsvg lmdb)
+makedepends=(gdc meson ninja mustache-d curl)
+source=("https://github.com/ximion/appstream-generator/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz";
 metainfo-no-summary-warning.patch)
+sha256sums=('b7d893c99e4e74c9a90f48afb79ffe671ba19bbe48f37f00755ef0ca849acb9f'
+'6ae502ac0e5b6aad3d3617e0e32b6b13752baa97b4d5f051a298db707b2cb4e6')
+
+prepare() {
+  mkdir -p build
+
+# Don't treat 'metainfo-no-summary' hints as errors, it excludes too many 
packages
+  cd $pkgname-$pkgver
+  patch -p1 -i ../metainfo-no-summary-warning.patch
+}
+
+build() {
+  cd build
+  meson ../$pkgname-$pkgver -Ddownload_js=false --prefix=/usr
+  ninja -j1
+}
+
+package() {
+  cd build
+  DESTDIR="$pkgdir" ninja install
+}

Deleted: community-i686/metainfo-no-summary-warning.patch
===
--- community-i686/metainfo-no-summary-warning.patch2017-01-01 18:08:28 UTC 
(rev 204124)
+++ community-i686/metainfo-no-summary-warning.patch2017-01-01 18:08:55 UTC 
(rev 204125)
@@ -1,11 +0,0 @@
 appstream-generator-0.6.0/data/asgen-hints.json.orig   2016-10-15 
21:12:11.009366464 +0200
-+++ appstream-generator-0.6.0/data/asgen-hints.json2016-10-15 
21:50:30.559324994 +0200
-@@ -140,7 +140,7 @@
-"has a Comment= field set.",
-"More information can be found in the http://standards.freedesktop.org/desktop-entry-spec/latest/ar01s05.html\";>Desktop
 Entry specification",
-"and the https://www.freedesktop.org/software/appstream/docs/sect

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

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 18:15:56
  Author: arojas
Revision: 285135

Fix save dialog regression

Modified:
  plasma-integration/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 16:07:53 UTC (rev 285134)
+++ PKGBUILD2017-01-01 18:15:56 UTC (rev 285135)
@@ -4,7 +4,7 @@
 
 pkgname=plasma-integration
 pkgver=5.8.5
-pkgrel=2
+pkgrel=3
 pkgdesc="Qt Platform Theme integration plugins for the Plasma workspaces"
 arch=(i686 x86_64)
 url='https://www.kde.org/workspaces/plasmadesktop/'
@@ -12,9 +12,11 @@
 depends=(kio kwayland libxcursor noto-fonts ttf-hack)
 makedepends=(extra-cmake-modules python breeze)
 groups=(plasma)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig}
+
fix-save-dialog.patch::"https://cgit.kde.org/plasma-integration.git/patch/?id=87b27476";)
 sha256sums=('cb4da56f940e87e1195a0ba19e07ea3384fed1dcd26ca91dee1d7dee8f00a7ea'
-'SKIP')
+'SKIP'
+'ff5ca909bafdabb6aeaa259cb4ab00b4ba5d08768dc4c57c304717aff2fbbc3e')
 validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
   '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
   'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
@@ -21,6 +23,10 @@
 
 prepare() {
   mkdir -p build
+
+# Fix open dialog showing instead of save dialog
+  cd $pkgname-$pkgver
+  patch -p1 -i ../fix-save-dialog.patch
 }
 
 build() {


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

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 18:16:29
  Author: arojas
Revision: 285136

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  plasma-integration/repos/extra-i686/PKGBUILD
(from rev 285135, plasma-integration/trunk/PKGBUILD)
  plasma-integration/repos/extra-x86_64/PKGBUILD
(from rev 285135, plasma-integration/trunk/PKGBUILD)
Deleted:
  plasma-integration/repos/extra-i686/PKGBUILD
  plasma-integration/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   90 
 extra-i686/PKGBUILD   |   39 
 extra-x86_64/PKGBUILD |   39 
 3 files changed, 90 insertions(+), 78 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-01 18:15:56 UTC (rev 285135)
+++ extra-i686/PKGBUILD 2017-01-01 18:16:29 UTC (rev 285136)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgname=plasma-integration
-pkgver=5.8.5
-pkgrel=1
-pkgdesc="Qt Platform Theme integration plugins for the Plasma workspaces"
-arch=(i686 x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(kio kwayland libxcursor noto-fonts ttf-hack)
-makedepends=(extra-cmake-modules python breeze)
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('cb4da56f940e87e1195a0ba19e07ea3384fed1dcd26ca91dee1d7dee8f00a7ea'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: plasma-integration/repos/extra-i686/PKGBUILD (from rev 285135, 
plasma-integration/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-01-01 18:16:29 UTC (rev 285136)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=plasma-integration
+pkgver=5.8.5
+pkgrel=3
+pkgdesc="Qt Platform Theme integration plugins for the Plasma workspaces"
+arch=(i686 x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(kio kwayland libxcursor noto-fonts ttf-hack)
+makedepends=(extra-cmake-modules python breeze)
+groups=(plasma)
+source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig}
+
fix-save-dialog.patch::"https://cgit.kde.org/plasma-integration.git/patch/?id=87b27476";)
+sha256sums=('cb4da56f940e87e1195a0ba19e07ea3384fed1dcd26ca91dee1d7dee8f00a7ea'
+'SKIP'
+'ff5ca909bafdabb6aeaa259cb4ab00b4ba5d08768dc4c57c304717aff2fbbc3e')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+
+# Fix open dialog showing instead of save dialog
+  cd $pkgname-$pkgver
+  patch -p1 -i ../fix-save-dialog.patch
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-01-01 18:15:56 UTC (rev 285135)
+++ extra-x86_64/PKGBUILD   2017-01-01 18:16:29 UTC (rev 285136)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgname=plasma-integration
-pkgver=5.8.5
-pkgrel=1
-pkgdesc="Qt Platform Theme integration plugins for the Plasma workspaces"
-arch=(i686 x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(kio kwayland libxcursor noto-fonts ttf-hack)
-makedepends=(extra-cmake-modules python breeze)
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('cb4da56f940e87e1195a0ba19e07ea3384fed1dcd26ca91dee1d7dee8f00a7ea'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_P

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

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 18:17:52
  Author: arojas
Revision: 285137

Qt 5.8 rebuild

Modified:
  plasma-integration/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 18:16:29 UTC (rev 285136)
+++ PKGBUILD2017-01-01 18:17:52 UTC (rev 285137)
@@ -4,7 +4,7 @@
 
 pkgname=plasma-integration
 pkgver=5.8.5
-pkgrel=3
+pkgrel=4
 pkgdesc="Qt Platform Theme integration plugins for the Plasma workspaces"
 arch=(i686 x86_64)
 url='https://www.kde.org/workspaces/plasmadesktop/'


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

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 18:18:31
  Author: arojas
Revision: 285138

archrelease: copy trunk to kde-unstable-i686, kde-unstable-x86_64

Added:
  plasma-integration/repos/kde-unstable-i686/PKGBUILD
(from rev 285137, plasma-integration/trunk/PKGBUILD)
  plasma-integration/repos/kde-unstable-x86_64/PKGBUILD
(from rev 285137, plasma-integration/trunk/PKGBUILD)
Deleted:
  plasma-integration/repos/kde-unstable-i686/PKGBUILD
  plasma-integration/repos/kde-unstable-x86_64/PKGBUILD

--+
 /PKGBUILD|   90 +
 kde-unstable-i686/PKGBUILD   |   39 -
 kde-unstable-x86_64/PKGBUILD |   39 -
 3 files changed, 90 insertions(+), 78 deletions(-)

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2017-01-01 18:17:52 UTC (rev 285137)
+++ kde-unstable-i686/PKGBUILD  2017-01-01 18:18:31 UTC (rev 285138)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgname=plasma-integration
-pkgver=5.8.5
-pkgrel=2
-pkgdesc="Qt Platform Theme integration plugins for the Plasma workspaces"
-arch=(i686 x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(kio kwayland libxcursor noto-fonts ttf-hack)
-makedepends=(extra-cmake-modules python breeze)
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('cb4da56f940e87e1195a0ba19e07ea3384fed1dcd26ca91dee1d7dee8f00a7ea'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: plasma-integration/repos/kde-unstable-i686/PKGBUILD (from rev 285137, 
plasma-integration/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2017-01-01 18:18:31 UTC (rev 285138)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=plasma-integration
+pkgver=5.8.5
+pkgrel=4
+pkgdesc="Qt Platform Theme integration plugins for the Plasma workspaces"
+arch=(i686 x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(kio kwayland libxcursor noto-fonts ttf-hack)
+makedepends=(extra-cmake-modules python breeze)
+groups=(plasma)
+source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig}
+
fix-save-dialog.patch::"https://cgit.kde.org/plasma-integration.git/patch/?id=87b27476";)
+sha256sums=('cb4da56f940e87e1195a0ba19e07ea3384fed1dcd26ca91dee1d7dee8f00a7ea'
+'SKIP'
+'ff5ca909bafdabb6aeaa259cb4ab00b4ba5d08768dc4c57c304717aff2fbbc3e')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+
+# Fix open dialog showing instead of save dialog
+  cd $pkgname-$pkgver
+  patch -p1 -i ../fix-save-dialog.patch
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2017-01-01 18:17:52 UTC (rev 285137)
+++ kde-unstable-x86_64/PKGBUILD2017-01-01 18:18:31 UTC (rev 285138)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgname=plasma-integration
-pkgver=5.8.5
-pkgrel=2
-pkgdesc="Qt Platform Theme integration plugins for the Plasma workspaces"
-arch=(i686 x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(kio kwayland libxcursor noto-fonts ttf-hack)
-makedepends=(extra-cmake-modules python breeze)
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('cb4da56f940e87e1195a0ba19e07ea3384fed1dcd26ca91dee1d7dee8f00a7ea'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdi

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

2017-01-01 Thread Bartłomiej Piotrowski
Date: Sunday, January 1, 2017 @ 18:23:48
  Author: bpiotrowski
Revision: 285139

upgpkg: whois 5.2.14-1

new upstream release

Modified:
  whois/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 18:18:31 UTC (rev 285138)
+++ PKGBUILD2017-01-01 18:23:48 UTC (rev 285139)
@@ -3,7 +3,7 @@
 # Contributor: Tom Newsom 
 
 pkgname=whois
-pkgver=5.2.12
+pkgver=5.2.14
 pkgrel=1
 pkgdesc="The whois client by Marco d'Itri"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('perl')
 backup=('etc/whois.conf')
 
source=("http://ftp.debian.org/debian/pool/main/w/whois/${pkgname}_${pkgver}.tar.xz";)
-md5sums=('b8f1482827137788016a418cc1ae364b')
+md5sums=('f5fb84dca2225162a1af2824c0143943')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"


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

2017-01-01 Thread Bartłomiej Piotrowski
Date: Sunday, January 1, 2017 @ 18:23:57
  Author: bpiotrowski
Revision: 285140

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  whois/repos/extra-i686/PKGBUILD
(from rev 285139, whois/trunk/PKGBUILD)
  whois/repos/extra-x86_64/PKGBUILD
(from rev 285139, whois/trunk/PKGBUILD)
Deleted:
  whois/repos/extra-i686/PKGBUILD
  whois/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   66 
 extra-i686/PKGBUILD   |   33 
 extra-x86_64/PKGBUILD |   33 
 3 files changed, 66 insertions(+), 66 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-01 18:23:48 UTC (rev 285139)
+++ extra-i686/PKGBUILD 2017-01-01 18:23:57 UTC (rev 285140)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Tom Newsom 
-
-pkgname=whois
-pkgver=5.2.12
-pkgrel=1
-pkgdesc="The whois client by Marco d'Itri"
-arch=('i686' 'x86_64')
-url="http://www.linux.it/~md/software/";
-license=('GPL')
-depends=('libidn')
-makedepends=('perl')
-backup=('etc/whois.conf')
-source=("http://ftp.debian.org/debian/pool/main/w/whois/${pkgname}_${pkgver}.tar.xz";)
-md5sums=('b8f1482827137788016a418cc1ae364b')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make prefix=/usr \
-   CFLAGS="$CFLAGS $CPPFLAGS" \
-   CONFIG_FILE=/etc/whois.conf \
-   HAVE_LIBIDN=1 \
-   HAVE_ICONV=1
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make prefix=/usr BASEDIR="${pkgdir}" install-whois
-  install -D -m644 whois.conf "${pkgdir}/etc/whois.conf"
-}

Copied: whois/repos/extra-i686/PKGBUILD (from rev 285139, whois/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-01-01 18:23:57 UTC (rev 285140)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Tom Newsom 
+
+pkgname=whois
+pkgver=5.2.14
+pkgrel=1
+pkgdesc="The whois client by Marco d'Itri"
+arch=('i686' 'x86_64')
+url="http://www.linux.it/~md/software/";
+license=('GPL')
+depends=('libidn')
+makedepends=('perl')
+backup=('etc/whois.conf')
+source=("http://ftp.debian.org/debian/pool/main/w/whois/${pkgname}_${pkgver}.tar.xz";)
+md5sums=('f5fb84dca2225162a1af2824c0143943')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make prefix=/usr \
+   CFLAGS="$CFLAGS $CPPFLAGS" \
+   CONFIG_FILE=/etc/whois.conf \
+   HAVE_LIBIDN=1 \
+   HAVE_ICONV=1
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make prefix=/usr BASEDIR="${pkgdir}" install-whois
+  install -D -m644 whois.conf "${pkgdir}/etc/whois.conf"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-01-01 18:23:48 UTC (rev 285139)
+++ extra-x86_64/PKGBUILD   2017-01-01 18:23:57 UTC (rev 285140)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Tom Newsom 
-
-pkgname=whois
-pkgver=5.2.12
-pkgrel=1
-pkgdesc="The whois client by Marco d'Itri"
-arch=('i686' 'x86_64')
-url="http://www.linux.it/~md/software/";
-license=('GPL')
-depends=('libidn')
-makedepends=('perl')
-backup=('etc/whois.conf')
-source=("http://ftp.debian.org/debian/pool/main/w/whois/${pkgname}_${pkgver}.tar.xz";)
-md5sums=('b8f1482827137788016a418cc1ae364b')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make prefix=/usr \
-   CFLAGS="$CFLAGS $CPPFLAGS" \
-   CONFIG_FILE=/etc/whois.conf \
-   HAVE_LIBIDN=1 \
-   HAVE_ICONV=1
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make prefix=/usr BASEDIR="${pkgdir}" install-whois
-  install -D -m644 whois.conf "${pkgdir}/etc/whois.conf"
-}

Copied: whois/repos/extra-x86_64/PKGBUILD (from rev 285139, 
whois/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-01-01 18:23:57 UTC (rev 285140)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Tom Newsom 
+
+pkgname=whois
+pkgver=5.2.14
+pkgrel=1
+pkgdesc="The whois client by Marco d'Itri"
+arch=('i686' 'x86_64')
+url="http://www.linux.it/~md/software/";
+license=('GPL')
+depends=('libidn')
+makedepends=('perl')
+backup=('etc/whois.conf')
+source=("http://ftp.debian.org/debian/pool/main/w/whois/${pkgname}_${pkgver}.tar.xz";)
+md5sums=('f5fb84dca2225162a1af2824c0143943')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make prefix=/usr \
+   CFLAGS="$CFLAGS $CPPFLAGS" \
+   CONFIG_FILE=/etc/whois.conf \
+   HAVE_LIBIDN=1 \
+   HAVE_ICONV=1
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make prefix=/usr BASEDIR="${pkgdir}" install-whois
+  install -D -m644 whois.conf "${pkgdir}/etc/whois.conf"
+}


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

2017-01-01 Thread Bartłomiej Piotrowski
Date: Sunday, January 1, 2017 @ 18:27:25
  Author: bpiotrowski
Revision: 285141

upgpkg: libnl 3.2.29-1

new upstream patchset

Modified:
  libnl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 18:23:57 UTC (rev 285140)
+++ PKGBUILD2017-01-01 18:27:25 UTC (rev 285141)
@@ -1,22 +1,23 @@
 # $Id$
+# Maintainer:  Bartłomiej Piotrowski 
 # Maintainer: Thomas Bächler 
 
 pkgname=libnl
-pkgver=3.2.28
+pkgver=3.2.29
 pkgrel=1
-pkgdesc="Library for applications dealing with netlink sockets"
+pkgdesc='Library for applications dealing with netlink sockets'
 arch=(i686 x86_64)
-url="http://www.infradead.org/~tgr/libnl/";
-license=(GPL)
-depends=(glibc)
-backup=(etc/libnl/classid etc/libnl/pktloc)
+url='http://www.infradead.org/~tgr/libnl/'
+license=('GPL')
+depends=('glibc')
+backup=('etc/libnl/classid' 'etc/libnl/pktloc')
 
source=(https://github.com/thom311/libnl/releases/download/libnl${pkgver//./_}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('cd608992c656e8f6e3ab6c1391b162a5a51c49336b9219f7f390e61fc5437c41'
+sha256sums=('0beb593dc6abfffa18a5c787b27884979c1b7e7f1fd468c801e3cc938a685922'
 'SKIP')
 validpgpkeys=('49EA7C670E0850E7419514F629C2366E4DFC5728') # Thomas Haller
 
 build() {
-  cd "$srcdir"/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   ./configure \
 --prefix=/usr \
 --sysconfdir=/etc \
@@ -25,7 +26,12 @@
   make
 }
 
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
 package() {
-  cd "$srcdir"/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   make DESTDIR="$pkgdir" install
 }


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

2017-01-01 Thread Bartłomiej Piotrowski
Date: Sunday, January 1, 2017 @ 18:27:41
  Author: bpiotrowski
Revision: 285142

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  libnl/repos/testing-i686/
  libnl/repos/testing-i686/PKGBUILD
(from rev 285141, libnl/trunk/PKGBUILD)
  libnl/repos/testing-x86_64/
  libnl/repos/testing-x86_64/PKGBUILD
(from rev 285141, libnl/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   37 +
 testing-x86_64/PKGBUILD |   37 +
 2 files changed, 74 insertions(+)

Copied: libnl/repos/testing-i686/PKGBUILD (from rev 285141, 
libnl/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-01-01 18:27:41 UTC (rev 285142)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Maintainer: Thomas Bächler 
+
+pkgname=libnl
+pkgver=3.2.29
+pkgrel=1
+pkgdesc='Library for applications dealing with netlink sockets'
+arch=(i686 x86_64)
+url='http://www.infradead.org/~tgr/libnl/'
+license=('GPL')
+depends=('glibc')
+backup=('etc/libnl/classid' 'etc/libnl/pktloc')
+source=(https://github.com/thom311/libnl/releases/download/libnl${pkgver//./_}/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('0beb593dc6abfffa18a5c787b27884979c1b7e7f1fd468c801e3cc938a685922'
+'SKIP')
+validpgpkeys=('49EA7C670E0850E7419514F629C2366E4DFC5728') # Thomas Haller
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: libnl/repos/testing-x86_64/PKGBUILD (from rev 285141, 
libnl/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-01-01 18:27:41 UTC (rev 285142)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Maintainer: Thomas Bächler 
+
+pkgname=libnl
+pkgver=3.2.29
+pkgrel=1
+pkgdesc='Library for applications dealing with netlink sockets'
+arch=(i686 x86_64)
+url='http://www.infradead.org/~tgr/libnl/'
+license=('GPL')
+depends=('glibc')
+backup=('etc/libnl/classid' 'etc/libnl/pktloc')
+source=(https://github.com/thom311/libnl/releases/download/libnl${pkgver//./_}/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('0beb593dc6abfffa18a5c787b27884979c1b7e7f1fd468c801e3cc938a685922'
+'SKIP')
+validpgpkeys=('49EA7C670E0850E7419514F629C2366E4DFC5728') # Thomas Haller
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 18:28:53
  Author: arojas
Revision: 204126

eclib 20161230 rebuild

Modified:
  sagemath/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 18:08:55 UTC (rev 204125)
+++ PKGBUILD2017-01-01 18:28:53 UTC (rev 204126)
@@ -10,7 +10,7 @@
 pkgbase=sagemath
 pkgname=(sagemath sagemath-jupyter)
 pkgver=7.4
-pkgrel=14
+pkgrel=15
 pkgdesc="Open Source Mathematics Software, free alternative to Magma, Maple, 
Mathematica, and Matlab"
 arch=(i686 x86_64)
 url="http://www.sagemath.org";


[arch-commits] Commit in sagemath/repos (34 files)

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 18:30:27
  Author: arojas
Revision: 204127

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  sagemath/repos/community-staging-i686/
  sagemath/repos/community-staging-i686/PKGBUILD
(from rev 204126, sagemath/trunk/PKGBUILD)
  sagemath/repos/community-staging-i686/cython-sys-path.patch
(from rev 204126, sagemath/trunk/cython-sys-path.patch)
  sagemath/repos/community-staging-i686/disable-fes.patch
(from rev 204126, sagemath/trunk/disable-fes.patch)
  sagemath/repos/community-staging-i686/ecm-7.patch
(from rev 204126, sagemath/trunk/ecm-7.patch)
  sagemath/repos/community-staging-i686/env.patch
(from rev 204126, sagemath/trunk/env.patch)
  sagemath/repos/community-staging-i686/increase-rtol.patch
(from rev 204126, sagemath/trunk/increase-rtol.patch)
  sagemath/repos/community-staging-i686/is-package-installed.patch
(from rev 204126, sagemath/trunk/is-package-installed.patch)
  sagemath/repos/community-staging-i686/jupyter-path.patch
(from rev 204126, sagemath/trunk/jupyter-path.patch)
  sagemath/repos/community-staging-i686/package.patch
(from rev 204126, sagemath/trunk/package.patch)
  sagemath/repos/community-staging-i686/pynac-0.7.1.patch
(from rev 204126, sagemath/trunk/pynac-0.7.1.patch)
  sagemath/repos/community-staging-i686/python-2.7.11.patch
(from rev 204126, sagemath/trunk/python-2.7.11.patch)
  sagemath/repos/community-staging-i686/sagemath-cython0.25.patch
(from rev 204126, sagemath/trunk/sagemath-cython0.25.patch)
  sagemath/repos/community-staging-i686/sagemath-python2-pkgconfig-1.2.patch
(from rev 204126, sagemath/trunk/sagemath-python2-pkgconfig-1.2.patch)
  sagemath/repos/community-staging-i686/sagemath-singular4.patch
(from rev 204126, sagemath/trunk/sagemath-singular4.patch)
  sagemath/repos/community-staging-i686/skip-check.patch
(from rev 204126, sagemath/trunk/skip-check.patch)
  sagemath/repos/community-staging-i686/test-optional.patch
(from rev 204126, sagemath/trunk/test-optional.patch)
  sagemath/repos/community-staging-x86_64/
  sagemath/repos/community-staging-x86_64/PKGBUILD
(from rev 204126, sagemath/trunk/PKGBUILD)
  sagemath/repos/community-staging-x86_64/cython-sys-path.patch
(from rev 204126, sagemath/trunk/cython-sys-path.patch)
  sagemath/repos/community-staging-x86_64/disable-fes.patch
(from rev 204126, sagemath/trunk/disable-fes.patch)
  sagemath/repos/community-staging-x86_64/ecm-7.patch
(from rev 204126, sagemath/trunk/ecm-7.patch)
  sagemath/repos/community-staging-x86_64/env.patch
(from rev 204126, sagemath/trunk/env.patch)
  sagemath/repos/community-staging-x86_64/increase-rtol.patch
(from rev 204126, sagemath/trunk/increase-rtol.patch)
  sagemath/repos/community-staging-x86_64/is-package-installed.patch
(from rev 204126, sagemath/trunk/is-package-installed.patch)
  sagemath/repos/community-staging-x86_64/jupyter-path.patch
(from rev 204126, sagemath/trunk/jupyter-path.patch)
  sagemath/repos/community-staging-x86_64/package.patch
(from rev 204126, sagemath/trunk/package.patch)
  sagemath/repos/community-staging-x86_64/pynac-0.7.1.patch
(from rev 204126, sagemath/trunk/pynac-0.7.1.patch)
  sagemath/repos/community-staging-x86_64/python-2.7.11.patch
(from rev 204126, sagemath/trunk/python-2.7.11.patch)
  sagemath/repos/community-staging-x86_64/sagemath-cython0.25.patch
(from rev 204126, sagemath/trunk/sagemath-cython0.25.patch)
  sagemath/repos/community-staging-x86_64/sagemath-python2-pkgconfig-1.2.patch
(from rev 204126, sagemath/trunk/sagemath-python2-pkgconfig-1.2.patch)
  sagemath/repos/community-staging-x86_64/sagemath-singular4.patch
(from rev 204126, sagemath/trunk/sagemath-singular4.patch)
  sagemath/repos/community-staging-x86_64/skip-check.patch
(from rev 204126, sagemath/trunk/skip-check.patch)
  sagemath/repos/community-staging-x86_64/test-optional.patch
(from rev 204126, sagemath/trunk/test-optional.patch)

---+
 community-staging-i686/PKGBUILD   |  169 
 community-staging-i686/cython-sys-path.patch  |   10 
 community-staging-i686/disable-fes.patch  |   19 
 community-staging-i686/ecm-7.patch|   79 
 community-staging-i686/env.patch  |   93 
 community-staging-i686/increase-rtol.patch|   37 
 community-staging-i686/is-package-installed.patch |  329 
 community-staging-i686/jupyter-path.patch |   22 
 community-staging-i686/package.patch  |   38 
 community-staging-i686/pynac-0.7.1.patch  |   42 
 community-staging-i686/python-2.7.11.patch|   11 
 community-staging-i686/sagemath-cython0.25.patch  |  144 
 community-staging-i686/sagemath-python2-pkgconfi

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

2017-01-01 Thread Bartłomiej Piotrowski
Date: Sunday, January 1, 2017 @ 19:46:42
  Author: bpiotrowski
Revision: 285143

upgpkg: boost 1.63.0-1

new upstream release

Modified:
  boost/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 18:27:41 UTC (rev 285142)
+++ PKGBUILD2017-01-01 19:46:42 UTC (rev 285143)
@@ -9,15 +9,15 @@
 
 pkgbase=boost
 pkgname=('boost-libs' 'boost')
-pkgver=1.62.0
+pkgver=1.63.0
 _boostver=${pkgver//./_}
-pkgrel=4
+pkgrel=1
 url='http://www.boost.org/'
 arch=('i686' 'x86_64')
 license=('custom')
-makedepends=('icu>=55.1' 'python>=3.5' 'python<3.6' 'python2' 'bzip2' 'zlib' 
'openmpi')
+makedepends=('icu>=55.1' 'python' 'python2' 'bzip2' 'zlib' 'openmpi')
 
source=(https://downloads.sourceforge.net/project/${pkgbase}/${pkgbase}/${pkgver}/${pkgbase}_${_boostver}.tar.bz2)
-sha1sums=('5fd97433c3f859d8cbab1eaed4156d3068ae3648')
+sha256sums=('beae2529f759f6b3bf3f4969a19c2e9d6f0c503edcb2de4a61d1428519fcb3b0')
 
 build() {
export _stagedir="${srcdir}/stagedir"
@@ -77,7 +77,7 @@
   runtime-link=shared \
   link=shared,static \
   toolset=gcc \
-  python=3.5 \
+  python=3.6 \
   cflags="${CPPFLAGS} ${CFLAGS} -fPIC -O3" \
   cxxflags="${CPPFLAGS} ${CXXFLAGS} -std=c++14 -fPIC -O3" \
   linkflags="${LDFLAGS}" \


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

2017-01-01 Thread Bartłomiej Piotrowski
Date: Sunday, January 1, 2017 @ 19:47:04
  Author: bpiotrowski
Revision: 285144

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  boost/repos/staging-i686/
  boost/repos/staging-i686/PKGBUILD
(from rev 285143, boost/trunk/PKGBUILD)
  boost/repos/staging-x86_64/
  boost/repos/staging-x86_64/PKGBUILD
(from rev 285143, boost/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |  129 ++
 staging-x86_64/PKGBUILD |  129 ++
 2 files changed, 258 insertions(+)

Copied: boost/repos/staging-i686/PKGBUILD (from rev 285143, 
boost/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-01-01 19:47:04 UTC (rev 285144)
@@ -0,0 +1,129 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Ionut Biru 
+# Contributor: Stéphane Gaudreault 
+# Contributor: kevin 
+# Contributor: Giovanni Scafora 
+# Contributor: Kritoke 
+# Contributor: Luca Roccia 
+
+pkgbase=boost
+pkgname=('boost-libs' 'boost')
+pkgver=1.63.0
+_boostver=${pkgver//./_}
+pkgrel=1
+url='http://www.boost.org/'
+arch=('i686' 'x86_64')
+license=('custom')
+makedepends=('icu>=55.1' 'python' 'python2' 'bzip2' 'zlib' 'openmpi')
+source=(https://downloads.sourceforge.net/project/${pkgbase}/${pkgbase}/${pkgver}/${pkgbase}_${_boostver}.tar.bz2)
+sha256sums=('beae2529f759f6b3bf3f4969a19c2e9d6f0c503edcb2de4a61d1428519fcb3b0')
+
+build() {
+   export _stagedir="${srcdir}/stagedir"
+   local JOBS="$(sed -e 's/.*\(-j *[0-9]\+\).*/\1/' <<< ${MAKEFLAGS})"
+
+   cd ${pkgbase}_${_boostver}
+
+   ./bootstrap.sh --with-toolset=gcc --with-icu --with-python=/usr/bin/python2
+
+   _bindir="bin.linuxx86"
+   [[ "${CARCH}" = "x86_64" ]] && _bindir="bin.linuxx86_64"
+   install -Dm755 tools/build/src/engine/$_bindir/b2 "${_stagedir}"/bin/b2
+
+   # Support for OpenMPI
+   echo "using mpi ;" >> project-config.jam
+
+   # boostbook is needed by quickbook
+   install -dm755 "${_stagedir}"/share/boostbook
+   cp -a tools/boostbook/{xsl,dtd} "${_stagedir}"/share/boostbook/
+
+   # default "minimal" install: "release link=shared,static
+   # runtime-link=shared threading=single,multi"
+   # --layout=tagged will add the "-mt" suffix for multithreaded libraries
+   # and installs includes in /usr/include/boost.
+   # --layout=system no longer adds the -mt suffix for multi-threaded libs.
+   # install to ${_stagedir} in preparation for split packaging
+   "${_stagedir}"/bin/b2 \
+  variant=release \
+  debug-symbols=off \
+  threading=multi \
+  runtime-link=shared \
+  link=shared,static \
+  toolset=gcc \
+  python=2.7 \
+  cflags="${CPPFLAGS} ${CFLAGS} -fPIC -O3" \
+  cxxflags="${CPPFLAGS} ${CXXFLAGS} -std=c++14 -fPIC -O3" \
+  linkflags="${LDFLAGS}" \
+  --layout=system \
+  ${JOBS} \
+  \
+  --prefix="${_stagedir}" \
+  install
+
+   # because b2 in boost 1.62.0 doesn't seem to respect python parameter, we
+   # need another run for liboost_python3.so
+   sed -e '/using python/ s@;@: 
/usr/include/python${PYTHON_VERSION/3*/${PYTHON_VERSION}m} ;@' \
+  -i bootstrap.sh
+
+   ./bootstrap.sh --with-toolset=gcc --with-icu --with-python=/usr/bin/python3 
\
+  --with-libraries=python
+
+   "${_stagedir}"/bin/b2 clean
+   "${_stagedir}"/bin/b2 \
+  variant=release \
+  debug-symbols=off \
+  threading=multi \
+  runtime-link=shared \
+  link=shared,static \
+  toolset=gcc \
+  python=3.6 \
+  cflags="${CPPFLAGS} ${CFLAGS} -fPIC -O3" \
+  cxxflags="${CPPFLAGS} ${CXXFLAGS} -std=c++14 -fPIC -O3" \
+  linkflags="${LDFLAGS}" \
+  --layout=system \
+  ${JOBS} \
+  \
+  --prefix="${_stagedir}/python3" \
+  --with-python \
+  install
+}
+
+package_boost() {
+   pkgdesc='Free peer-reviewed portable C++ source libraries - development 
headers'
+   depends=("boost-libs=${pkgver}")
+   optdepends=('python: for python bindings'
+   'python2: for python2 bindings')
+   options=('staticlibs')
+
+   install -dm755 "${pkgdir}"/usr
+   cp -a "${_stagedir}"/{bin,include,share} "${pkgdir}"/usr
+
+   install -d "${pkgdir}"/usr/lib
+   cp -a "${_stagedir}"/lib/*.a "${pkgdir}"/usr/lib/
+
+   install -Dm644 "${srcdir}/"${pkgbase}_${_boostver}/LICENSE_1_0.txt \
+  "${pkgdir}"/usr/share/licenses/boost/LICENSE_1_0.txt
+
+   install -Dm644 "${_stagedir}"/python3/lib/libboost_python3.a \
+  "${pkgdir}"/usr/lib/libboost_python3.a
+
+   ln -s /usr/bin/b2 "$pkgdir"/usr/bin/bjam
+}
+
+package_boost-libs() {
+   pkgdesc='Free peer-reviewed portable C++ source libraries - runtime 
libraries'
+   depends=('bzip2' 'zlib' 'icu')
+   optdepends=('openmpi: for mpi support')
+
+   # powerdns-recursor keeps being rebuild against outdated boost-libs
+   provides=('libboost_context.so')
+
+   install -dm755 "${pkgdir}"/u

[arch-commits] Commit in (8 files)

2017-01-01 Thread Alexander Rødseth
Date: Sunday, January 1, 2017 @ 20:51:39
  Author: arodseth
Revision: 204130

Move from AUR

Added:
  smlnj/
  smlnj/repos/
  smlnj/repos/community-i686/
  smlnj/repos/community-x86_64/
  smlnj/trunk/
  smlnj/trunk/PKGBUILD
  smlnj/trunk/profile.d-smlnj.sh
  smlnj/trunk/urlgetter.sh

+
 PKGBUILD   |   90 +++
 profile.d-smlnj.sh |2 +
 urlgetter.sh   |   31 +
 3 files changed, 123 insertions(+)

Added: smlnj/trunk/PKGBUILD
===
--- smlnj/trunk/PKGBUILD(rev 0)
+++ smlnj/trunk/PKGBUILD2017-01-01 20:51:39 UTC (rev 204130)
@@ -0,0 +1,90 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Thomas Weißschuh 
+
+pkgname=smlnj
+pkgver=110.80
+pkgrel=2
+pkgdesc='Compiler for Standard ML, from New Jersey'
+url='http://www.smlnj.org/'
+license=('BSD')
+arch=('x86_64' 'i686')
+provides=('sml')
+depends=('bash')
+depends_x86_64+=('lib32-glibc')
+makedepends_x86_64+=('gcc-multilib')
+_url="http://smlnj.cs.uchicago.edu/dist/working/$pkgver/";
+source=(
+  "urlgetter.sh"
+  "profile.d-smlnj.sh"
+  "smlnj-$pkgver-boot.x86-unix.tgz::${_url}boot.x86-unix.tgz"
+  "smlnj-$pkgver-config.tgz::${_url}config.tgz"
+  "smlnj-$pkgver-cm.tgz::${_url}cm.tgz"
+  "smlnj-$pkgver-compiler.tgz::${_url}compiler.tgz"
+  "smlnj-$pkgver-runtime.tgz::${_url}runtime.tgz"
+  "smlnj-$pkgver-system.tgz::${_url}system.tgz"
+  "smlnj-$pkgver-MLRISC.tgz::${_url}MLRISC.tgz"
+  "smlnj-$pkgver-smlnj-lib.tgz::${_url}smlnj-lib.tgz"
+  "smlnj-$pkgver-ckit.tgz::${_url}ckit.tgz"
+  "smlnj-$pkgver-nlffi.tgz::${_url}nlffi.tgz"
+  "smlnj-$pkgver-cml.tgz::${_url}cml.tgz"
+  "smlnj-$pkgver-ml-lpt.tgz::${_url}ml-lpt.tgz"
+  "smlnj-$pkgver-ml-lex.tgz::${_url}ml-lex.tgz"
+  "smlnj-$pkgver-ml-yacc.tgz::${_url}ml-yacc.tgz"
+  "smlnj-$pkgver-ml-burg.tgz::${_url}ml-burg.tgz"
+  "smlnj-$pkgver-trace-debug-profile.tgz::${_url}trace-debug-profile.tgz"
+)
+sha256sums=('4da78effe7d3644c28c731c8e4003a9cecec9f8f61d2fa4553981a729f2d200b'
+'dd20a81a5d2899f60183215ab6a412d522d2c6801d454c142225716899e089f3'
+'e4e0def3d38816eab5ce3d50b0c6d732779ff83ef65d2aef34b7c69d780a3488'
+'fd2120ebae607b71778914700385a70b38596e13c350e489c483058693217b03'
+'ae892f431c6c570e52603c3297b829a81cd0e126c3793a484eaf37966c52820c'
+'f1855a1070793cd4474af2752a816d72227994233a000877c27b2c4269a60d6e'
+'6e13a544bd346e6b4103d51300290eb2f056983c903aa658db3b1489a8ab9d45'
+'dc2198c9c423af9c5f3d65da7166ba690e1672291a247cd1e6ba9e8419eaf1a8'
+'425a4b648e0f5d0cf660e5a325756cf6f373daacf8261d8c424d163d277fd9f0'
+'a8c3aca6a638fff540055791236f5bc30e7d8044782d220beddd711eaa7ea352'
+'7fe672bbdb917aca5825246658b692b63f7f66a15afefeb707baf914263187ba'
+'4d1b048b4bced62820dba17b92e0276d34336f98f298aa77240da6d8fed5a128'
+'23ae9fcf214636301941119b46b044f61f1d2f4b6f337b2fe72213e18a7a489a'
+'3d73a4c0d68694adeec6111f10a94386204db51fc86814669c364802776b0c79'
+'441c2895b0cf592a207a5bc13ec5625f3463b32c7b7f7cd717f16ce587073102'
+'64c7acaa07e664f7751e46da1d6c9c1d3a080f70b28fcf611e05fd96e1382ca1'
+'fcade4c8518621099022bc28d4795e6ae972f8b3b64b01fb14778a714bfe44db'
+'d1148cddbff76e38a96d2db95edb33b5b81e603ce8e2d4e8d3b4b54040db934a')
+
+build() {
+  # The build system uses this env variable
+  URLGETTER="$srcdir/urlgetter.sh"
+
+  # urlgetter.sh uses these variables
+  export srcdir
+  export pkgver
+
+  # Parallel builds won't work
+  unset MAKEFLAGS
+
+  # Confuses install.sh
+  unset SMLNJ_HOME
+
+  INSTALLDIR="$srcdir/install"
+  mkdir $INSTALLDIR
+  export INSTALLDIR
+
+  config/install.sh
+}
+
+package() {
+  mkdir -p "$pkgdir/usr/lib/smlnj"
+  cp -R "$srcdir/install/"{bin,lib} "$pkgdir/usr/lib/smlnj"
+
+  mkdir -p "$pkgdir/etc/profile.d"
+  cp "$srcdir/profile.d-smlnj.sh" "$pkgdir/etc/profile.d/smlnj.sh"
+
+  mkdir -p "$pkgdir/usr/share/"
+  cp -R "$srcdir/doc/man" "$pkgdir/usr/share/"
+  find "$pkgdir/usr/share/man" -name '._*' -delete
+
+  install -Dm644 compiler/LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Added: smlnj/trunk/profile.d-smlnj.sh
===
--- smlnj/trunk/profile.d-smlnj.sh  (rev 0)
+++ smlnj/trunk/profile.d-smlnj.sh  2017-01-01 20:51:39 UTC (rev 204130)
@@ -0,0 +1,2 @@
+export SMLNJ_HOME=/usr/lib/smlnj
+export PATH="$PATH:/usr/lib/smlnj/bin"

Added: smlnj/trunk/urlgetter.sh
===
--- smlnj/trunk/urlgetter.sh(rev 0)
+++ smlnj/trunk/urlgetter.sh2017-01-01 20:51:39 UTC (rev 204130)
@@ -0,0 +1,31 @@
+#!/bin/bash
+
+# invocation:
+# urlgetter.sh  
+# where source is a remote path
+
+SOURCE="$1"
+DE

[arch-commits] Commit in smlnj/repos (6 files)

2017-01-01 Thread Alexander Rødseth
Date: Sunday, January 1, 2017 @ 20:53:10
  Author: arodseth
Revision: 204131

archrelease: copy trunk to community-x86_64, community-i686

Added:
  smlnj/repos/community-i686/PKGBUILD
(from rev 204130, smlnj/trunk/PKGBUILD)
  smlnj/repos/community-i686/profile.d-smlnj.sh
(from rev 204130, smlnj/trunk/profile.d-smlnj.sh)
  smlnj/repos/community-i686/urlgetter.sh
(from rev 204130, smlnj/trunk/urlgetter.sh)
  smlnj/repos/community-x86_64/PKGBUILD
(from rev 204130, smlnj/trunk/PKGBUILD)
  smlnj/repos/community-x86_64/profile.d-smlnj.sh
(from rev 204130, smlnj/trunk/profile.d-smlnj.sh)
  smlnj/repos/community-x86_64/urlgetter.sh
(from rev 204130, smlnj/trunk/urlgetter.sh)

-+
 community-i686/PKGBUILD |   90 ++
 community-i686/profile.d-smlnj.sh   |2 
 community-i686/urlgetter.sh |   31 +++
 community-x86_64/PKGBUILD   |   90 ++
 community-x86_64/profile.d-smlnj.sh |2 
 community-x86_64/urlgetter.sh   |   31 +++
 6 files changed, 246 insertions(+)

Copied: smlnj/repos/community-i686/PKGBUILD (from rev 204130, 
smlnj/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-01 20:53:10 UTC (rev 204131)
@@ -0,0 +1,90 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Thomas Weißschuh 
+
+pkgname=smlnj
+pkgver=110.80
+pkgrel=2
+pkgdesc='Compiler for Standard ML, from New Jersey'
+url='http://www.smlnj.org/'
+license=('BSD')
+arch=('x86_64' 'i686')
+provides=('sml')
+depends=('bash')
+depends_x86_64+=('lib32-glibc')
+makedepends_x86_64+=('gcc-multilib')
+_url="http://smlnj.cs.uchicago.edu/dist/working/$pkgver/";
+source=(
+  "urlgetter.sh"
+  "profile.d-smlnj.sh"
+  "smlnj-$pkgver-boot.x86-unix.tgz::${_url}boot.x86-unix.tgz"
+  "smlnj-$pkgver-config.tgz::${_url}config.tgz"
+  "smlnj-$pkgver-cm.tgz::${_url}cm.tgz"
+  "smlnj-$pkgver-compiler.tgz::${_url}compiler.tgz"
+  "smlnj-$pkgver-runtime.tgz::${_url}runtime.tgz"
+  "smlnj-$pkgver-system.tgz::${_url}system.tgz"
+  "smlnj-$pkgver-MLRISC.tgz::${_url}MLRISC.tgz"
+  "smlnj-$pkgver-smlnj-lib.tgz::${_url}smlnj-lib.tgz"
+  "smlnj-$pkgver-ckit.tgz::${_url}ckit.tgz"
+  "smlnj-$pkgver-nlffi.tgz::${_url}nlffi.tgz"
+  "smlnj-$pkgver-cml.tgz::${_url}cml.tgz"
+  "smlnj-$pkgver-ml-lpt.tgz::${_url}ml-lpt.tgz"
+  "smlnj-$pkgver-ml-lex.tgz::${_url}ml-lex.tgz"
+  "smlnj-$pkgver-ml-yacc.tgz::${_url}ml-yacc.tgz"
+  "smlnj-$pkgver-ml-burg.tgz::${_url}ml-burg.tgz"
+  "smlnj-$pkgver-trace-debug-profile.tgz::${_url}trace-debug-profile.tgz"
+)
+sha256sums=('4da78effe7d3644c28c731c8e4003a9cecec9f8f61d2fa4553981a729f2d200b'
+'dd20a81a5d2899f60183215ab6a412d522d2c6801d454c142225716899e089f3'
+'e4e0def3d38816eab5ce3d50b0c6d732779ff83ef65d2aef34b7c69d780a3488'
+'fd2120ebae607b71778914700385a70b38596e13c350e489c483058693217b03'
+'ae892f431c6c570e52603c3297b829a81cd0e126c3793a484eaf37966c52820c'
+'f1855a1070793cd4474af2752a816d72227994233a000877c27b2c4269a60d6e'
+'6e13a544bd346e6b4103d51300290eb2f056983c903aa658db3b1489a8ab9d45'
+'dc2198c9c423af9c5f3d65da7166ba690e1672291a247cd1e6ba9e8419eaf1a8'
+'425a4b648e0f5d0cf660e5a325756cf6f373daacf8261d8c424d163d277fd9f0'
+'a8c3aca6a638fff540055791236f5bc30e7d8044782d220beddd711eaa7ea352'
+'7fe672bbdb917aca5825246658b692b63f7f66a15afefeb707baf914263187ba'
+'4d1b048b4bced62820dba17b92e0276d34336f98f298aa77240da6d8fed5a128'
+'23ae9fcf214636301941119b46b044f61f1d2f4b6f337b2fe72213e18a7a489a'
+'3d73a4c0d68694adeec6111f10a94386204db51fc86814669c364802776b0c79'
+'441c2895b0cf592a207a5bc13ec5625f3463b32c7b7f7cd717f16ce587073102'
+'64c7acaa07e664f7751e46da1d6c9c1d3a080f70b28fcf611e05fd96e1382ca1'
+'fcade4c8518621099022bc28d4795e6ae972f8b3b64b01fb14778a714bfe44db'
+'d1148cddbff76e38a96d2db95edb33b5b81e603ce8e2d4e8d3b4b54040db934a')
+
+build() {
+  # The build system uses this env variable
+  URLGETTER="$srcdir/urlgetter.sh"
+
+  # urlgetter.sh uses these variables
+  export srcdir
+  export pkgver
+
+  # Parallel builds won't work
+  unset MAKEFLAGS
+
+  # Confuses install.sh
+  unset SMLNJ_HOME
+
+  INSTALLDIR="$srcdir/install"
+  mkdir $INSTALLDIR
+  export INSTALLDIR
+
+  config/install.sh
+}
+
+package() {
+  mkdir -p "$pkgdir/usr/lib/smlnj"
+  cp -R "$srcdir/install/"{bin,lib} "$pkgdir/usr/lib/smlnj"
+
+  mkdir -p "$pkgdir/etc/profile.d"
+  cp "$srcdir/profile.d-smlnj.sh" "$pkgdir/etc/profile.d/smlnj.sh"
+
+  mkdir -p "$pkgdir/usr/share/"
+  cp -R "$srcdir/doc/man" "$pkgdir/usr/share/"
+  find "$pkgdir/usr/share/man" -name '._*' -delete
+
+  install -Dm644 compiler/LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

[arch-commits] Commit in libnatpmp/trunk (PKGBUILD fix_header_issue.diff)

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 21:03:48
  Author: arojas
Revision: 204132

Update to 20150609

Modified:
  libnatpmp/trunk/PKGBUILD
Deleted:
  libnatpmp/trunk/fix_header_issue.diff

---+
 PKGBUILD  |   12 +++--
 fix_header_issue.diff |   59 
 2 files changed, 4 insertions(+), 67 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 20:53:10 UTC (rev 204131)
+++ PKGBUILD2017-01-01 21:03:48 UTC (rev 204132)
@@ -5,23 +5,19 @@
 # Contributor: Pierre Bourdon 
 
 pkgname=libnatpmp
-pkgver=20140401
-pkgrel=2
+pkgver=20150609
+pkgrel=1
 pkgdesc='A portable and fully compliant implementation of the NAT-PMP protocol'
 arch=(i686 x86_64)
 url='http://miniupnp.free.fr/libnatpmp.html'
 license=(BSD)
 depends=(glibc)
-source=(http://miniupnp.tuxfamily.org/files/libnatpmp-$pkgver.tar.gz
-fix_header_issue.diff)
-sha1sums=('e9511edecb9a75dbe8c9ed39c0469a18dc7e950b'
-  '58baa3fe61edfc117ae92452fbc8176d095bd7d2')
+source=(http://miniupnp.tuxfamily.org/files/libnatpmp-$pkgver.tar.gz)
+sha1sums=('8a4eb09b9512c73ebe4b44b6b66b43504cb69539')
 
 prepare() {
   cd $pkgname-$pkgver
   sed -e 's/CFLAGS = /CFLAGS += /' -i Makefile
-  # The patch comes from upstream 
https://github.com/miniupnp/libnatpmp/commit/f376ab72bc4de0b45f4e10c9b287b7ffe2a1fcd1
-  patch -p1 < "$srcdir"/fix_header_issue.diff 
 }
 
 build() {

Deleted: fix_header_issue.diff
===
--- fix_header_issue.diff   2017-01-01 20:53:10 UTC (rev 204131)
+++ fix_header_issue.diff   2017-01-01 21:03:48 UTC (rev 204132)
@@ -1,59 +0,0 @@
-commit f376ab72bc4de0b45f4e10c9b287b7ffe2a1fcd1
-Author: Thomas Bernard 
-Date:   Thu Apr 10 23:09:44 2014 +0200
-
-remove declspec.h problems. still has to be fixed definitely
-
-diff --git a/getgateway.h b/getgateway.h
-index d868f80..b3e17c6 100644
 a/getgateway.h
-+++ b/getgateway.h
-@@ -1,6 +1,6 @@
- /* $Id: getgateway.h,v 1.7 2013/09/10 20:09:04 nanard Exp $ */
- /* libnatpmp
--Copyright (c) 2007-2013, Thomas BERNARD
-+Copyright (c) 2007-2014, Thomas BERNARD
- All rights reserved.
- 
- Redistribution and use in source and binary forms, with or without
-@@ -38,12 +38,12 @@ typedef unsigned short uint16_t;
- #endif
- #define in_addr_t uint32_t
- #endif
--#include "declspec.h"
-+/* #include "declspec.h" */
- 
- /* getdefaultgateway() :
-  * return value :
-  *0 : success
-  *   -1 : failure*/
--LIBSPEC int getdefaultgateway(in_addr_t * addr);
-+/* LIBSPEC */int getdefaultgateway(in_addr_t * addr);
- 
- #endif
-diff --git a/natpmp.h b/natpmp.h
-index 62d113f..2399afb 100644
 a/natpmp.h
-+++ b/natpmp.h
-@@ -1,6 +1,6 @@
- /* $Id: natpmp.h,v 1.19 2014/04/01 09:39:29 nanard Exp $ */
- /* libnatpmp
--Copyright (c) 2007-2013, Thomas BERNARD
-+Copyright (c) 2007-2014, Thomas BERNARD
- All rights reserved.
- 
- Redistribution and use in source and binary forms, with or without
-@@ -48,10 +48,12 @@ typedef unsigned short uint16_t;
- #define in_addr_t uint32_t
- #include "declspec.h"
- #else /* WIN32 */
-+#define LIBSPEC
- #include 
- #endif/* WIN32 */
- 
--#include "declspec.h"
-+/* causes problem when installing. Maybe should it be inlined ? */
-+/* #include "declspec.h" */
- 
- typedef struct {
-   int s;  /* socket */


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

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 21:04:38
  Author: arojas
Revision: 204133

archrelease: copy trunk to community-testing-i686, community-testing-x86_64

Added:
  libnatpmp/repos/community-testing-i686/
  libnatpmp/repos/community-testing-i686/PKGBUILD
(from rev 204132, libnatpmp/trunk/PKGBUILD)
  libnatpmp/repos/community-testing-x86_64/
  libnatpmp/repos/community-testing-x86_64/PKGBUILD
(from rev 204132, libnatpmp/trunk/PKGBUILD)

---+
 community-testing-i686/PKGBUILD   |   33 +
 community-testing-x86_64/PKGBUILD |   33 +
 2 files changed, 66 insertions(+)

Copied: libnatpmp/repos/community-testing-i686/PKGBUILD (from rev 204132, 
libnatpmp/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-01-01 21:04:38 UTC (rev 204133)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: Gustavo Alvarez 
+# Contributor: Kristjan Reinloo 
+# Contributor: Pierre Bourdon 
+
+pkgname=libnatpmp
+pkgver=20150609
+pkgrel=1
+pkgdesc='A portable and fully compliant implementation of the NAT-PMP protocol'
+arch=(i686 x86_64)
+url='http://miniupnp.free.fr/libnatpmp.html'
+license=(BSD)
+depends=(glibc)
+source=(http://miniupnp.tuxfamily.org/files/libnatpmp-$pkgver.tar.gz)
+sha1sums=('8a4eb09b9512c73ebe4b44b6b66b43504cb69539')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -e 's/CFLAGS = /CFLAGS += /' -i Makefile
+}
+
+build() {
+  cd $pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make INSTALLPREFIX="$pkgdir/usr" INSTALLDIRINC="$pkgdir/usr/include" install
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 natpmpc.1 "$pkgdir/usr/share/man/man1/natpmpc.1"
+}

Copied: libnatpmp/repos/community-testing-x86_64/PKGBUILD (from rev 204132, 
libnatpmp/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-01-01 21:04:38 UTC (rev 204133)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: Gustavo Alvarez 
+# Contributor: Kristjan Reinloo 
+# Contributor: Pierre Bourdon 
+
+pkgname=libnatpmp
+pkgver=20150609
+pkgrel=1
+pkgdesc='A portable and fully compliant implementation of the NAT-PMP protocol'
+arch=(i686 x86_64)
+url='http://miniupnp.free.fr/libnatpmp.html'
+license=(BSD)
+depends=(glibc)
+source=(http://miniupnp.tuxfamily.org/files/libnatpmp-$pkgver.tar.gz)
+sha1sums=('8a4eb09b9512c73ebe4b44b6b66b43504cb69539')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -e 's/CFLAGS = /CFLAGS += /' -i Makefile
+}
+
+build() {
+  cd $pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make INSTALLPREFIX="$pkgdir/usr" INSTALLDIRINC="$pkgdir/usr/include" install
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 natpmpc.1 "$pkgdir/usr/share/man/man1/natpmpc.1"
+}


[arch-commits] Commit in ceph/repos (16 files)

2017-01-01 Thread Bartłomiej Piotrowski
Date: Sunday, January 1, 2017 @ 21:10:12
  Author: bpiotrowski
Revision: 285146

archrelease: copy trunk to staging-x86_64, staging-i686

Added:
  ceph/repos/staging-i686/
  ceph/repos/staging-i686/01-virtualenv2.patch
(from rev 285145, ceph/trunk/01-virtualenv2.patch)
  ceph/repos/staging-i686/02-setup-python2.patch
(from rev 285145, ceph/trunk/02-setup-python2.patch)
  ceph/repos/staging-i686/03-Revert-rgw-ldap-fix-ldap-bindpw-parsing.patch
(from rev 285145, 
ceph/trunk/03-Revert-rgw-ldap-fix-ldap-bindpw-parsing.patch)
  ceph/repos/staging-i686/04-fix-686-build.patch
(from rev 285145, ceph/trunk/04-fix-686-build.patch)
  ceph/repos/staging-i686/PKGBUILD
(from rev 285145, ceph/trunk/PKGBUILD)
  ceph/repos/staging-i686/ceph.install
(from rev 285145, ceph/trunk/ceph.install)
  ceph/repos/staging-i686/ceph.sysusers
(from rev 285145, ceph/trunk/ceph.sysusers)
  ceph/repos/staging-x86_64/
  ceph/repos/staging-x86_64/01-virtualenv2.patch
(from rev 285145, ceph/trunk/01-virtualenv2.patch)
  ceph/repos/staging-x86_64/02-setup-python2.patch
(from rev 285145, ceph/trunk/02-setup-python2.patch)
  ceph/repos/staging-x86_64/03-Revert-rgw-ldap-fix-ldap-bindpw-parsing.patch
(from rev 285145, 
ceph/trunk/03-Revert-rgw-ldap-fix-ldap-bindpw-parsing.patch)
  ceph/repos/staging-x86_64/04-fix-686-build.patch
(from rev 285145, ceph/trunk/04-fix-686-build.patch)
  ceph/repos/staging-x86_64/PKGBUILD
(from rev 285145, ceph/trunk/PKGBUILD)
  ceph/repos/staging-x86_64/ceph.install
(from rev 285145, ceph/trunk/ceph.install)
  ceph/repos/staging-x86_64/ceph.sysusers
(from rev 285145, ceph/trunk/ceph.sysusers)

-+
 staging-i686/01-virtualenv2.patch   |   11 
 staging-i686/02-setup-python2.patch |   38 +
 staging-i686/03-Revert-rgw-ldap-fix-ldap-bindpw-parsing.patch   |  309 
++
 staging-i686/04-fix-686-build.patch |  199 ++
 staging-i686/PKGBUILD   |   91 ++
 staging-i686/ceph.install   |   16 
 staging-i686/ceph.sysusers  |1 
 staging-x86_64/01-virtualenv2.patch |   11 
 staging-x86_64/02-setup-python2.patch   |   38 +
 staging-x86_64/03-Revert-rgw-ldap-fix-ldap-bindpw-parsing.patch |  309 
++
 staging-x86_64/04-fix-686-build.patch   |  199 ++
 staging-x86_64/PKGBUILD |   91 ++
 staging-x86_64/ceph.install |   16 
 staging-x86_64/ceph.sysusers|1 
 14 files changed, 1330 insertions(+)

Copied: ceph/repos/staging-i686/01-virtualenv2.patch (from rev 285145, 
ceph/trunk/01-virtualenv2.patch)
===
--- staging-i686/01-virtualenv2.patch   (rev 0)
+++ staging-i686/01-virtualenv2.patch   2017-01-01 21:10:12 UTC (rev 285146)
@@ -0,0 +1,11 @@
+--- a/src/tools/setup-virtualenv.sh2016-06-14 13:43:58.0 +0200
 b/src/tools/setup-virtualenv.sh2016-08-18 02:13:31.418624320 +0200
+@@ -18,7 +18,7 @@
+ DIR=$1
+ rm -fr $DIR
+ mkdir -p $DIR
+-virtualenv --python python2.7 $DIR
++virtualenv2 --python python2.7 $DIR
+ . $DIR/bin/activate
+ # older versions of pip will not install wrap_console scripts
+ # when using wheel packages

Copied: ceph/repos/staging-i686/02-setup-python2.patch (from rev 285145, 
ceph/trunk/02-setup-python2.patch)
===
--- staging-i686/02-setup-python2.patch (rev 0)
+++ staging-i686/02-setup-python2.patch 2017-01-01 21:10:12 UTC (rev 285146)
@@ -0,0 +1,38 @@
+--- a/src/Makefile.in  2016-06-14 13:44:59.0 +0200
 b/src/Makefile.in  2016-08-19 22:09:15.526703376 +0200
+@@ -32623,7 +32623,7 @@
+   cd $(srcdir)/ceph-detect-init ; ../tools/setup-virtualenv.sh 
${CEPH_DETECT_INIT_VIRTUALENV} ; test -d wheelhouse && export 
NO_INDEX=--no-index ; ${CEPH_DETECT_INIT_VIRTUALENV}/bin/pip install $$NO_INDEX 
--use-wheel --find-links=file://$$(pwd)/wheelhouse -e .
+ 
+ ceph-detect-init-clean:
+-  cd $(srcdir)/ceph-detect-init ; python setup.py clean ; rm -fr 
wheelhouse .tox build ${CEPH_DETECT_INIT_VIRTUALENV} .coverage *.egg-info
++  cd $(srcdir)/ceph-detect-init ; python2 setup.py clean ; rm -fr 
wheelhouse .tox build ${CEPH_DETECT_INIT_VIRTUALENV} .coverage *.egg-info
+ 
+ ceph-detect-init-install-data:
+   cd $(srcdir)/ceph-detect-init ; \
+@@ -32635,7 +32635,7 @@
+   fi ; \
+   root="--root=$(DESTDIR)" ; \
+   fi ; \
+-  python setup.py install $$root $$options
++  python2 setup.py install $$root $$options
+ 
+ export CEPH_DISK_VIRTUALENV = ${CEPH_BUILD_VIRTUAL

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

2017-01-01 Thread Bartłomiej Piotrowski
Date: Sunday, January 1, 2017 @ 21:09:54
  Author: bpiotrowski
Revision: 285145

upgpkg: ceph 10.2.3-2

rebuild against boost 1.63.0

Modified:
  ceph/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 19:47:04 UTC (rev 285144)
+++ PKGBUILD2017-01-01 21:09:54 UTC (rev 285145)
@@ -3,7 +3,7 @@
 
 pkgname=ceph
 pkgver=10.2.3
-pkgrel=1
+pkgrel=2
 pkgdesc='Distributed, fault-tolerant storage platform delivering object, 
block, and file system'
 arch=('x86_64' 'i686')
 url='https://ceph.com/'


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

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 21:11:22
  Author: arojas
Revision: 204134

Update to 0.5.7

Modified:
  vor/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 21:04:38 UTC (rev 204133)
+++ PKGBUILD2017-01-01 21:11:22 UTC (rev 204134)
@@ -4,8 +4,8 @@
 # Contributor: nut543 
 
 pkgname=vor
-pkgver=0.5.5
-pkgrel=3
+pkgver=0.5.7
+pkgrel=1
 pkgdesc='Classic spaceship versus asteroid field arcade game'
 arch=('x86_64' 'i686')
 url='http://jasonwoof.org/vor'
@@ -15,9 +15,9 @@
 optdepends=('netpbm: for customizing game graphics'
 'povray: for customizing game graphics')
 options=('!emptydirs')
-source=("http://qualdan.com/$pkgname/$pkgname-$pkgver.tar.bz2";
+source=("https://jasonwoof.com/downloads/vor/vor-$pkgver.tgz";
 "$pkgname.png")
-sha256sums=('ead1b9786741e26d37ff7c5185b7fe1e91f90f76ebed3785225312e323b7c7da'
+sha256sums=('f3411f747fa998d9ae13b5636ecb478a2bd9abc804030f8440c878bd2c6f8f09'
 '07a805928f5cf2b3351e2b9ff820ea69352ad80faad43311889ffbd5f62da872')
 
 prepare() {
@@ -27,7 +27,7 @@
 build() {
   cd "$pkgname-$pkgver"
   ./configure --prefix=/usr
-  make LDFLAGS=-lm
+  make
 }
 
 package() {
@@ -37,5 +37,3 @@
   install -Dm644 "$pkgname.desktop" \
 "$pkgdir/usr/share/applications/$pkgname.desktop"
 }
-
-# vim:set ts=2 sw=2 et:


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

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 21:11:52
  Author: arojas
Revision: 204135

archrelease: copy trunk to community-x86_64, community-i686

Added:
  vor/repos/community-i686/PKGBUILD
(from rev 204134, vor/trunk/PKGBUILD)
  vor/repos/community-i686/vor.png
(from rev 204134, vor/trunk/vor.png)
  vor/repos/community-x86_64/PKGBUILD
(from rev 204134, vor/trunk/PKGBUILD)
  vor/repos/community-x86_64/vor.png
(from rev 204134, vor/trunk/vor.png)
Deleted:
  vor/repos/community-i686/PKGBUILD
  vor/repos/community-i686/vor.png
  vor/repos/community-x86_64/PKGBUILD
  vor/repos/community-x86_64/vor.png

---+
 /PKGBUILD |   78 
 community-i686/PKGBUILD   |   41 ---
 community-x86_64/PKGBUILD |   41 ---
 3 files changed, 78 insertions(+), 82 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-01 21:11:22 UTC (rev 204134)
+++ community-i686/PKGBUILD 2017-01-01 21:11:52 UTC (rev 204135)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: tdy 
-# Contributor: nut543 
-
-pkgname=vor
-pkgver=0.5.5
-pkgrel=3
-pkgdesc='Classic spaceship versus asteroid field arcade game'
-arch=('x86_64' 'i686')
-url='http://jasonwoof.org/vor'
-license=('GPL')
-depends=('sdl_image' 'sdl_mixer')
-makedepends=('gendesk')
-optdepends=('netpbm: for customizing game graphics'
-'povray: for customizing game graphics')
-options=('!emptydirs')
-source=("http://qualdan.com/$pkgname/$pkgname-$pkgver.tar.bz2";
-"$pkgname.png")
-sha256sums=('ead1b9786741e26d37ff7c5185b7fe1e91f90f76ebed3785225312e323b7c7da'
-'07a805928f5cf2b3351e2b9ff820ea69352ad80faad43311889ffbd5f62da872')
-
-prepare() {
-  gendesk -f --pkgname "$pkgname" --pkgdesc "$pkgdesc"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr
-  make LDFLAGS=-lm
-}
-
-package() {
-  install -d "$pkgdir/usr/bin"
-  make -C "$pkgname-$pkgver" prefix=/usr DESTDIR="$pkgdir" install
-  install -Dm644 "$pkgname.png" "$pkgdir/usr/share/pixmaps/$pkgname.png"
-  install -Dm644 "$pkgname.desktop" \
-"$pkgdir/usr/share/applications/$pkgname.desktop"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: vor/repos/community-i686/PKGBUILD (from rev 204134, vor/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-01 21:11:52 UTC (rev 204135)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: tdy 
+# Contributor: nut543 
+
+pkgname=vor
+pkgver=0.5.7
+pkgrel=1
+pkgdesc='Classic spaceship versus asteroid field arcade game'
+arch=('x86_64' 'i686')
+url='http://jasonwoof.org/vor'
+license=('GPL')
+depends=('sdl_image' 'sdl_mixer')
+makedepends=('gendesk')
+optdepends=('netpbm: for customizing game graphics'
+'povray: for customizing game graphics')
+options=('!emptydirs')
+source=("https://jasonwoof.com/downloads/vor/vor-$pkgver.tgz";
+"$pkgname.png")
+sha256sums=('f3411f747fa998d9ae13b5636ecb478a2bd9abc804030f8440c878bd2c6f8f09'
+'07a805928f5cf2b3351e2b9ff820ea69352ad80faad43311889ffbd5f62da872')
+
+prepare() {
+  gendesk -f --pkgname "$pkgname" --pkgdesc "$pkgdesc"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  install -d "$pkgdir/usr/bin"
+  make -C "$pkgname-$pkgver" prefix=/usr DESTDIR="$pkgdir" install
+  install -Dm644 "$pkgname.png" "$pkgdir/usr/share/pixmaps/$pkgname.png"
+  install -Dm644 "$pkgname.desktop" \
+"$pkgdir/usr/share/applications/$pkgname.desktop"
+}

Deleted: community-i686/vor.png
===
(Binary files differ)

Copied: vor/repos/community-i686/vor.png (from rev 204134, vor/trunk/vor.png)
===
(Binary files differ)

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-01-01 21:11:22 UTC (rev 204134)
+++ community-x86_64/PKGBUILD   2017-01-01 21:11:52 UTC (rev 204135)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: tdy 
-# Contributor: nut543 
-
-pkgname=vor
-pkgver=0.5.5
-pkgrel=3
-pkgdesc='Classic spaceship versus asteroid field arcade game'
-arch=('x86_64' 'i686')
-url='http://jasonwoof.org/vor'
-license=('GPL')
-depends=('sdl_image' 'sdl_mixer')
-makedepends=('gendesk')
-optdepends=('netpbm: for customizing game graphics'
-'povray: for customizing game graphics')
-options=('!emptydirs')
-source=("http://qualdan.com/$pkgname/$pkgname-$pkgver.tar.bz2";
-"$pkgname.png")
-sha256sums=('ead1b9786741e26d37ff7c5185b7fe1e91f90f76ebed3785225312e323b7c7da'
-'07a805928f5cf2b3351e2b9ff820ea69352ad80fa

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

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 21:17:55
  Author: arojas
Revision: 285147

Update to 3.7.0

Modified:
  lapack/trunk/PKGBUILD

--+
 PKGBUILD |   18 +-
 1 file changed, 5 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 21:10:12 UTC (rev 285146)
+++ PKGBUILD2017-01-01 21:17:55 UTC (rev 285147)
@@ -6,25 +6,17 @@
 
 pkgbase=lapack
 pkgname=('lapack' 'blas' 'cblas' 'lapacke')
-pkgver=3.6.1
-pkgrel=2
+pkgver=3.7.0
+pkgrel=1
 url="http://www.netlib.org/lapack";
 pkgdesc="Linear Algebra PACKage"
 makedepends=('gcc-fortran' 'cmake' 'python')
 arch=('i686' 'x86_64')
 license=("custom")
-source=(http://www.netlib.org/${pkgbase}/${pkgbase}-${pkgver}.tgz LICENSE.blas
-
fix-pkgconfig.patch::"https://github.com/Reference-LAPACK/lapack/commit/e0975e7b.patch";)
-sha1sums=('7220a9bc9c766cb513007f313b804d88f110c228'
-  '2491a151a37f0162b25fc4e4e9a8ac444b574a76'
-  '75635a902bbe8813337bbebe6becf301d0973ee7')
+source=(http://www.netlib.org/${pkgbase}/${pkgbase}-${pkgver}.tgz LICENSE.blas)
+sha1sums=('27dbd06bedc76619150f8e28de6412f7df0c649a'
+  '2491a151a37f0162b25fc4e4e9a8ac444b574a76')
 
-prepare() {
-  cd $pkgname-$pkgver
-  # Fix cblas and lapacke .pc files
-  patch -p1 -i ../fix-pkgconfig.patch
-}
-
 build() {
   install -d build
   cd build


[arch-commits] Commit in lapack/repos (6 files)

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 21:18:32
  Author: arojas
Revision: 285148

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  lapack/repos/testing-i686/
  lapack/repos/testing-i686/LICENSE.blas
(from rev 285147, lapack/trunk/LICENSE.blas)
  lapack/repos/testing-i686/PKGBUILD
(from rev 285147, lapack/trunk/PKGBUILD)
  lapack/repos/testing-x86_64/
  lapack/repos/testing-x86_64/LICENSE.blas
(from rev 285147, lapack/trunk/LICENSE.blas)
  lapack/repos/testing-x86_64/PKGBUILD
(from rev 285147, lapack/trunk/PKGBUILD)

-+
 testing-i686/LICENSE.blas   |   19 ++
 testing-i686/PKGBUILD   |   76 ++
 testing-x86_64/LICENSE.blas |   19 ++
 testing-x86_64/PKGBUILD |   76 ++
 4 files changed, 190 insertions(+)

Copied: lapack/repos/testing-i686/LICENSE.blas (from rev 285147, 
lapack/trunk/LICENSE.blas)
===
--- testing-i686/LICENSE.blas   (rev 0)
+++ testing-i686/LICENSE.blas   2017-01-01 21:18:32 UTC (rev 285148)
@@ -0,0 +1,19 @@
+From: http://www.netlib.org/blas/faq.html
+
+ 2) Are there legal restrictions on the use of BLAS reference
+implementation software? 
+
+The reference BLAS is a freely-available software package. It is
+available from netlib via anonymous ftp and the World Wide Web. Thus,
+it can be included in commercial software packages (and has been). We
+only ask that proper credit be given to the authors. 
+
+Like all software, it is copyrighted. It is not trademarked, but we do
+ask the following: 
+
+If you modify the source for these routines we ask that you change the
+name of the routine and comment the changes made to the original. 
+
+We will gladly answer any questions regarding the software. If a
+modification is done, however, it is the responsibility of the person
+who modified the routine to provide support. 

Copied: lapack/repos/testing-i686/PKGBUILD (from rev 285147, 
lapack/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-01-01 21:18:32 UTC (rev 285148)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Jan de Groot 
+# Contributor: damir 
+# Contributor: Jason Taylor 
+
+pkgbase=lapack
+pkgname=('lapack' 'blas' 'cblas' 'lapacke')
+pkgver=3.7.0
+pkgrel=1
+url="http://www.netlib.org/lapack";
+pkgdesc="Linear Algebra PACKage"
+makedepends=('gcc-fortran' 'cmake' 'python')
+arch=('i686' 'x86_64')
+license=("custom")
+source=(http://www.netlib.org/${pkgbase}/${pkgbase}-${pkgver}.tgz LICENSE.blas)
+sha1sums=('27dbd06bedc76619150f8e28de6412f7df0c649a'
+  '2491a151a37f0162b25fc4e4e9a8ac444b574a76')
+
+build() {
+  install -d build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON \
+-DBUILD_SHARED_LIBS=ON \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_Fortran_COMPILER=gfortran \
+-DLAPACKE=ON \
+-DCBLAS=ON \
+-DBUILD_DEPRECATED=ON
+  make
+}
+
+package_lapack() {
+  depends=("blas")
+  
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm -r "$pkgdir"/usr/lib/{libblas.*,libcblas.*,liblapacke.*}
+  rm -r "$pkgdir"/usr/lib/pkgconfig/{blas.*,cblas.*,lapacke.*}
+  rm -r "$pkgdir"/usr/lib/cmake/{cblas*,lapacke*}
+  rm -r "$pkgdir"/usr/include
+}
+
+package_blas() {
+  pkgdesc="Basic Linear Algebra Subprograms"
+  depends=('gcc-libs')
+
+  cd build/BLAS
+  make DESTDIR="$pkgdir" install
+  
+  install -m755 -d "${pkgdir}/usr/share/licenses/blas"
+  install -m644 "${srcdir}/LICENSE.blas" \
+"${pkgdir}/usr/share/licenses/blas/"
+}
+
+package_cblas() {
+  pkgdesc="C interface to BLAS"
+  depends=("blas")
+
+  cd build/CBLAS
+  make DESTDIR="$pkgdir" install
+}
+
+package_lapacke() {
+  pkgdesc="C interface to LAPACK"
+  depends=("lapack")
+
+  cd build/LAPACKE
+  make DESTDIR="$pkgdir" install
+}
+

Copied: lapack/repos/testing-x86_64/LICENSE.blas (from rev 285147, 
lapack/trunk/LICENSE.blas)
===
--- testing-x86_64/LICENSE.blas (rev 0)
+++ testing-x86_64/LICENSE.blas 2017-01-01 21:18:32 UTC (rev 285148)
@@ -0,0 +1,19 @@
+From: http://www.netlib.org/blas/faq.html
+
+ 2) Are there legal restrictions on the use of BLAS reference
+implementation software? 
+
+The reference BLAS is a freely-available software package. It is
+available from netlib via anonymous ftp and the World Wide Web. Thus,
+it can be included in commercial software packages (and has been). We
+only ask that proper credit be given to the authors. 
+
+Like all software, it is copyrighted. It is not trademarked, but we do
+ask the following: 
+
+If you modify the source for these routines we ask

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

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 21:19:37
  Author: arojas
Revision: 285149

Update to 1.0.16

Modified:
  gsm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 21:18:32 UTC (rev 285148)
+++ PKGBUILD2017-01-01 21:19:37 UTC (rev 285149)
@@ -4,7 +4,7 @@
 # Contributor: Darwin Bautista 
 
 pkgname=gsm
-pkgver=1.0.14
+pkgver=1.0.16
 pkgrel=1
 pkgdesc="Shared libraries for GSM 06.10 lossy speech compression"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('glibc')
 source=("http://www.quut.com/${pkgname}/${pkgname}-${pkgver}.tar.gz";
 'gsm.patch')
-md5sums=('4cbb4e7b73842de3d12d30b0d74200d4'
+md5sums=('94b03ba7b9cf7da7caa8456c219a8673'
  '30f46c92d0a5e5654258e707a9e8b5a6')
 
 build() {


[arch-commits] Commit in gsm/repos (6 files)

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 21:20:25
  Author: arojas
Revision: 285150

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gsm/repos/testing-i686/
  gsm/repos/testing-i686/PKGBUILD
(from rev 285149, gsm/trunk/PKGBUILD)
  gsm/repos/testing-i686/gsm.patch
(from rev 285149, gsm/trunk/gsm.patch)
  gsm/repos/testing-x86_64/
  gsm/repos/testing-x86_64/PKGBUILD
(from rev 285149, gsm/trunk/PKGBUILD)
  gsm/repos/testing-x86_64/gsm.patch
(from rev 285149, gsm/trunk/gsm.patch)

--+
 testing-i686/PKGBUILD|   43 +
 testing-i686/gsm.patch   |  198 +
 testing-x86_64/PKGBUILD  |   43 +
 testing-x86_64/gsm.patch |  198 +
 4 files changed, 482 insertions(+)

Copied: gsm/repos/testing-i686/PKGBUILD (from rev 285149, gsm/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-01-01 21:20:25 UTC (rev 285150)
@@ -0,0 +1,43 @@
+# $Id: $
+# Maintainer: Jan de Groot 
+# Contributor: Maxime de Roucy 
+# Contributor: Darwin Bautista 
+
+pkgname=gsm
+pkgver=1.0.16
+pkgrel=1
+pkgdesc="Shared libraries for GSM 06.10 lossy speech compression"
+arch=('i686' 'x86_64')
+url="http://www.quut.com/gsm/";
+license=('custom')
+depends=('glibc')
+source=("http://www.quut.com/${pkgname}/${pkgname}-${pkgver}.tar.gz";
+'gsm.patch')
+md5sums=('94b03ba7b9cf7da7caa8456c219a8673'
+ '30f46c92d0a5e5654258e707a9e8b5a6')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver%.*}-pl${pkgver##*.}/"
+
+  patch -Np0 -i "${srcdir}/${pkgname}.patch"
+
+  # flags for shared lib
+  CFLAGS="${CFLAGS} -fPIC"
+  make CCFLAGS="-c ${CFLAGS}"
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver%.*}-pl${pkgver##*.}/"
+
+  # Prepare directories
+  install -m755 -d 
"${pkgdir}"/usr/{bin,lib,include/gsm,share/{licenses/${pkgname},man/man{1,3}}}
+
+  make -j1 INSTALL_ROOT="${pkgdir}/usr" \
+GSM_INSTALL_INC="${pkgdir}/usr/include/gsm" \
+GSM_INSTALL_MAN="${pkgdir}/usr/share/man/man3" \
+TOAST_INSTALL_MAN="${pkgdir}/usr/share/man/man1" \
+install
+
+  # Install license
+  install -m644 COPYRIGHT ${pkgdir}/usr/share/licenses/${pkgname}/license.txt
+}

Copied: gsm/repos/testing-i686/gsm.patch (from rev 285149, gsm/trunk/gsm.patch)
===
--- testing-i686/gsm.patch  (rev 0)
+++ testing-i686/gsm.patch  2017-01-01 21:20:25 UTC (rev 285150)
@@ -0,0 +1,198 @@
+--- Makefile   2006-04-26 15:14:26.0 -0400
 Makefile   2010-06-19 16:53:25.0 -0400
+@@ -44,7 +44,7 @@
+ # CCFLAGS = -c -O
+ 
+ CC= gcc -ansi -pedantic
+-CCFLAGS   = -c -O2 -DNeedFunctionPrototypes=1
++CCFLAGS   = -c -O2 -fPIC -DNeedFunctionPrototypes=1
+ 
+ LD= $(CC)
+ 
+@@ -96,11 +96,11 @@
+ #  Other tools
+ 
+ SHELL = /bin/sh
+-LN= ln
++LN= ln -s -f
+ BASENAME  = basename
+ AR= ar
+ ARFLAGS   = cr
+-RMFLAGS   =
++RMFLAGS   = -f
+ FIND  = find
+ COMPRESS  = compress
+ COMPRESSFLAGS = 
+@@ -139,7 +139,7 @@
+ 
+ # Targets
+ 
+-LIBGSM= $(LIB)/libgsm.a
++LIBGSMSO = $(LIB)/libgsm.so
+ 
+ TOAST = $(BIN)/toast
+ UNTOAST   = $(BIN)/untoast
+@@ -257,7 +257,7 @@
+ # Install targets
+ 
+ GSM_INSTALL_TARGETS = \
+-  $(GSM_INSTALL_LIB)/libgsm.a \
++  $(GSM_INSTALL_LIB)/libgsm.so\
+   $(GSM_INSTALL_INC)/gsm.h\
+   $(GSM_INSTALL_MAN)/gsm.3\
+   $(GSM_INSTALL_MAN)/gsm_explode.3\
+@@ -279,7 +279,7 @@
+ 
+ # Target rules
+ 
+-all:  $(LIBGSM) $(TOAST) $(TCAT) $(UNTOAST)
++all:  $(LIBGSMSO) $(TOAST) $(TCAT) $(UNTOAST)
+   @-echo $(ROOT): Done.
+ 
+ tst:  $(TST)/lin2cod $(TST)/cod2lin $(TOAST) $(TST)/test-result
+@@ -299,24 +299,23 @@
+ 
+ # The basic API: libgsm
+ 
+-$(LIBGSM):$(LIB) $(GSM_OBJECTS)
+-  -rm $(RMFLAGS) $(LIBGSM)
+-  $(AR) $(ARFLAGS) $(LIBGSM) $(GSM_OBJECTS)
+-  $(RANLIB) $(LIBGSM)
+-
++$(LIBGSMSO): $(LIB) $(GSM_OBJECTS)
++  $(LD) -shared -Wl,-soname,libgsm.so.1 -o $@.1.0.13 $(GSM_OBJECTS)
++  $(LN) libgsm.so.1.0.13 $(LIBGSMSO).1
++  $(LN) libgsm.so.1.0.13 $(LIBGSMSO)
+ 
+ # Toast, Untoast and Tcat -- the compress-like frontends to gsm.
+ 
+-$(TOAST): $(BIN) $(TOAST_OBJECTS) $(LIBGSM)
+-  $(LD) $(LFLAGS) -o $(TOAST) $(TOAST_OBJECTS) $(LIBGSM) $(LDLIB)
++$(TOAST): $(BIN) $(TOAST_OBJECTS) $(LIBGSMSO)
++  $(LD) $(LFLAGS) -o $(TOAST) $(TOAST_OBJECTS) $(LIBGSMSO) 
$(LDLIB)
+ 
+ $(UNTOAST):   $(BIN) $(TOAST)
+   -rm $(RMFLAGS) $(UNTOAST)
+-  $(LN) $(TOAST) $(UNTOAST)
++  $(LN) toas

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

2017-01-01 Thread Bartłomiej Piotrowski
Date: Sunday, January 1, 2017 @ 21:20:51
  Author: bpiotrowski
Revision: 285151

upgpkg: hugin 2016.2.0-5

rebuild against boost 1.63.0

Modified:
  hugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 21:20:25 UTC (rev 285150)
+++ PKGBUILD2017-01-01 21:20:51 UTC (rev 285151)
@@ -6,7 +6,7 @@
 
 pkgname=hugin
 pkgver=2016.2.0
-pkgrel=4
+pkgrel=5
 pkgdesc='Panorama photo stitcher'
 url='http://hugin.sourceforge.net/'
 license=('GPL')


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

2017-01-01 Thread Bartłomiej Piotrowski
Date: Sunday, January 1, 2017 @ 21:21:00
  Author: bpiotrowski
Revision: 285152

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  hugin/repos/staging-i686/
  hugin/repos/staging-i686/PKGBUILD
(from rev 285151, hugin/trunk/PKGBUILD)
  hugin/repos/staging-x86_64/
  hugin/repos/staging-x86_64/PKGBUILD
(from rev 285151, hugin/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   37 +
 staging-x86_64/PKGBUILD |   37 +
 2 files changed, 74 insertions(+)

Copied: hugin/repos/staging-i686/PKGBUILD (from rev 285151, 
hugin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-01-01 21:21:00 UTC (rev 285152)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Kieslich 
+# Contributor: Giovanni Scafora 
+# Contributor: Dominik Ryba 
+
+pkgname=hugin
+pkgver=2016.2.0
+pkgrel=5
+pkgdesc='Panorama photo stitcher'
+url='http://hugin.sourceforge.net/'
+license=('GPL')
+arch=('i686' 'x86_64')
+makedepends=('cmake' 'boost' 'tclap' 'mesa' 'swig')
+depends=('wxgtk' 'boost-libs' 'enblend-enfuse' 'exiv2' 'libpano13'
+ 'python' 'lensfun' 'lapack' 'make' 'sqlite' 'perl-image-exiftool'
+  'glew' 'desktop-file-utils')
+source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgname}-${pkgver%.*}/${pkgname}-${pkgver/r/_r}.tar.bz2";)
+sha1sums=('9d28609d973fa72b95b1e2506cf1de7d24578e67')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver/rc?}"
+   install -d build
+   cd build
+   cmake .. \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DENABLE_LAPACK=yes \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver/rc?}"
+   cd build
+   make DESTDIR="${pkgdir}" install
+}

Copied: hugin/repos/staging-x86_64/PKGBUILD (from rev 285151, 
hugin/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-01-01 21:21:00 UTC (rev 285152)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Kieslich 
+# Contributor: Giovanni Scafora 
+# Contributor: Dominik Ryba 
+
+pkgname=hugin
+pkgver=2016.2.0
+pkgrel=5
+pkgdesc='Panorama photo stitcher'
+url='http://hugin.sourceforge.net/'
+license=('GPL')
+arch=('i686' 'x86_64')
+makedepends=('cmake' 'boost' 'tclap' 'mesa' 'swig')
+depends=('wxgtk' 'boost-libs' 'enblend-enfuse' 'exiv2' 'libpano13'
+ 'python' 'lensfun' 'lapack' 'make' 'sqlite' 'perl-image-exiftool'
+  'glew' 'desktop-file-utils')
+source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgname}-${pkgver%.*}/${pkgname}-${pkgver/r/_r}.tar.bz2";)
+sha1sums=('9d28609d973fa72b95b1e2506cf1de7d24578e67')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver/rc?}"
+   install -d build
+   cd build
+   cmake .. \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DENABLE_LAPACK=yes \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver/rc?}"
+   cd build
+   make DESTDIR="${pkgdir}" install
+}


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

2017-01-01 Thread Bartłomiej Piotrowski
Date: Sunday, January 1, 2017 @ 21:23:55
  Author: bpiotrowski
Revision: 285153

upgpkg: kig 16.12.0-2

rebuild against boost 1.63.0

Modified:
  kig/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 21:21:00 UTC (rev 285152)
+++ PKGBUILD2017-01-01 21:23:55 UTC (rev 285153)
@@ -4,7 +4,7 @@
 
 pkgname=kig
 pkgver=16.12.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Interactive Geometry"
 url="http://kde.org/applications/education/kig/";
 arch=('i686' 'x86_64')


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

2017-01-01 Thread Bartłomiej Piotrowski
Date: Sunday, January 1, 2017 @ 21:24:05
  Author: bpiotrowski
Revision: 285154

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  kig/repos/staging-i686/
  kig/repos/staging-i686/PKGBUILD
(from rev 285153, kig/trunk/PKGBUILD)
  kig/repos/staging-x86_64/
  kig/repos/staging-x86_64/PKGBUILD
(from rev 285153, kig/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   43 +++
 staging-x86_64/PKGBUILD |   43 +++
 2 files changed, 86 insertions(+)

Copied: kig/repos/staging-i686/PKGBUILD (from rev 285153, kig/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-01-01 21:24:05 UTC (rev 285154)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kig
+pkgver=16.12.0
+pkgrel=2
+pkgdesc="Interactive Geometry"
+url="http://kde.org/applications/education/kig/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeedu')
+depends=('ktexteditor' 'boost-libs' 'python2' 'hicolor-icon-theme') # 
kemoticons, kitemmodels are only required for tests
+makedepends=('extra-cmake-modules' 'kdoctools' 'boost' 'qt5-xmlpatterns')
+optdepends=('qt5-xmlpatterns: support for GeoGebra files')
+replaces=('kdeedu-kig')
+conflicts=('kdeedu-kig')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kig-${pkgver}.tar.xz"{,.sig})
+sha1sums=('5f5a15433b55634e8c2b52a84c5bf6efc6726b7f'
+  'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+
+  # Use the python2 executable
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' 
"${pkgdir}"/usr/bin/pykig.py
+}

Copied: kig/repos/staging-x86_64/PKGBUILD (from rev 285153, kig/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-01-01 21:24:05 UTC (rev 285154)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kig
+pkgver=16.12.0
+pkgrel=2
+pkgdesc="Interactive Geometry"
+url="http://kde.org/applications/education/kig/";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeedu')
+depends=('ktexteditor' 'boost-libs' 'python2' 'hicolor-icon-theme') # 
kemoticons, kitemmodels are only required for tests
+makedepends=('extra-cmake-modules' 'kdoctools' 'boost' 'qt5-xmlpatterns')
+optdepends=('qt5-xmlpatterns: support for GeoGebra files')
+replaces=('kdeedu-kig')
+conflicts=('kdeedu-kig')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kig-${pkgver}.tar.xz"{,.sig})
+sha1sums=('5f5a15433b55634e8c2b52a84c5bf6efc6726b7f'
+  'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+
+  # Use the python2 executable
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' 
"${pkgdir}"/usr/bin/pykig.py
+}


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

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 21:24:50
  Author: arojas
Revision: 204137

archrelease: copy trunk to community-i686, community-x86_64

Added:
  pcsclite/repos/community-i686/PKGBUILD
(from rev 204136, pcsclite/trunk/PKGBUILD)
  pcsclite/repos/community-x86_64/PKGBUILD
(from rev 204136, pcsclite/trunk/PKGBUILD)
Deleted:
  pcsclite/repos/community-i686/PKGBUILD
  pcsclite/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   88 
 community-i686/PKGBUILD   |   44 --
 community-x86_64/PKGBUILD |   44 --
 3 files changed, 88 insertions(+), 88 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-01 21:24:17 UTC (rev 204136)
+++ community-i686/PKGBUILD 2017-01-01 21:24:50 UTC (rev 204137)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Daniel Plaza 
-
-pkgname=pcsclite
-pkgver=1.8.18
-pkgrel=1
-pkgdesc="PC/SC Architecture smartcard middleware library"
-arch=('i686' 'x86_64')
-url="https://alioth.debian.org/projects/pcsclite/";
-license=('BSD')
-depends=('python2' 'systemd')
-makedepends=('pkg-config')
-options=('!docs')
-source=("https://alioth.debian.org/frs/download.php/file/4179/pcsc-lite-${pkgver}.tar.bz2";
-
"https://alioth.debian.org/frs/download.php/file/4180/pcsc-lite-${pkgver}.tar.bz2.asc";)
-md5sums=('03d92b060183b9cb0b559ea38c6c6c6f'
- 'SKIP')
-validpgpkeys=('F5E11B9FFE911146F41D953D78A1B4DFE8F9C57E') # Ludovic Rousseau 

-
-build() {
-  cd "${srcdir}/pcsc-lite-${pkgver}"
-
-  sed -i -e "s:python:python2:g" src/spy/pcsc-spy
-
-  ./configure --prefix=/usr \
-  --sbindir=/usr/bin \
-  --enable-libudev \
-  --sysconfdir=/etc \
-  --enable-ipcdir=/run/pcscd \
-  --enable-usbdropdir=/usr/lib/pcsc/drivers \
-  --with-systemdsystemunitdir=/usr/lib/systemd/system
-
-  make
-}
-
-package() {
-  cd "${srcdir}/pcsc-lite-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-
-  install -D -m644 ${srcdir}/pcsc-lite-${pkgver}/COPYING 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-  install -d ${pkgdir}/usr/lib/pcsc/drivers
-}

Copied: pcsclite/repos/community-i686/PKGBUILD (from rev 204136, 
pcsclite/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-01 21:24:50 UTC (rev 204137)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Daniel Plaza 
+
+pkgname=pcsclite
+pkgver=1.8.20
+pkgrel=1
+pkgdesc="PC/SC Architecture smartcard middleware library"
+arch=('i686' 'x86_64')
+url="https://alioth.debian.org/projects/pcsclite/";
+license=('BSD')
+depends=('python2' 'systemd')
+makedepends=('pkg-config')
+options=('!docs')
+source=("https://alioth.debian.org/frs/download.php/file/4203/pcsc-lite-${pkgver}.tar.bz2";
+
"https://alioth.debian.org/frs/download.php/file/4204/pcsc-lite-${pkgver}.tar.bz2.asc";)
+md5sums=('5e195a90ce1b96625cde1c49c8bf7790'
+ 'SKIP')
+validpgpkeys=('F5E11B9FFE911146F41D953D78A1B4DFE8F9C57E') # Ludovic Rousseau 

+
+build() {
+  cd "${srcdir}/pcsc-lite-${pkgver}"
+
+  sed -i -e "s:python:python2:g" src/spy/pcsc-spy
+
+  ./configure --prefix=/usr \
+  --sbindir=/usr/bin \
+  --enable-libudev \
+  --sysconfdir=/etc \
+  --enable-ipcdir=/run/pcscd \
+  --enable-usbdropdir=/usr/lib/pcsc/drivers \
+  --with-systemdsystemunitdir=/usr/lib/systemd/system
+
+  make
+}
+
+package() {
+  cd "${srcdir}/pcsc-lite-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  install -D -m644 ${srcdir}/pcsc-lite-${pkgver}/COPYING 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  install -d ${pkgdir}/usr/lib/pcsc/drivers
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-01-01 21:24:17 UTC (rev 204136)
+++ community-x86_64/PKGBUILD   2017-01-01 21:24:50 UTC (rev 204137)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Daniel Plaza 
-
-pkgname=pcsclite
-pkgver=1.8.18
-pkgrel=1
-pkgdesc="PC/SC Architecture smartcard middleware library"
-arch=('i686' 'x86_64')
-url="https://alioth.debian.org/projects/pcsclite/";
-license=('BSD')
-depends=('python2' 'systemd')
-makedepends=('pkg-config')
-options=('!docs')
-source=("https://alioth.debian.org/frs/download.php/file/4179/pcsc-lite-${pkgver}.tar.bz2";
-
"https://alioth.debian.org/frs/download.php/file/4180/pcsc-lite-${pkgver}.tar.bz2.asc";)
-md5sums=('03d92b060183b9cb0b559ea38c6c6c6f'
- 'SKIP')
-validpgpkeys=('F5E11B9FFE911146F41D953D78A1B4DFE8F9C57E') # Ludovic Rousseau 

-
-build() {
-  cd "${srcdir}/pcsc-lite-${pkgver}"
-
-  sed -i -e "s:python:python2:g" 

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

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 21:24:17
  Author: arojas
Revision: 204136

Update to 1.8.20

Modified:
  pcsclite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 21:11:52 UTC (rev 204135)
+++ PKGBUILD2017-01-01 21:24:17 UTC (rev 204136)
@@ -3,7 +3,7 @@
 # Contributor: Daniel Plaza 
 
 pkgname=pcsclite
-pkgver=1.8.18
+pkgver=1.8.20
 pkgrel=1
 pkgdesc="PC/SC Architecture smartcard middleware library"
 arch=('i686' 'x86_64')
@@ -12,9 +12,9 @@
 depends=('python2' 'systemd')
 makedepends=('pkg-config')
 options=('!docs')
-source=("https://alioth.debian.org/frs/download.php/file/4179/pcsc-lite-${pkgver}.tar.bz2";
-
"https://alioth.debian.org/frs/download.php/file/4180/pcsc-lite-${pkgver}.tar.bz2.asc";)
-md5sums=('03d92b060183b9cb0b559ea38c6c6c6f'
+source=("https://alioth.debian.org/frs/download.php/file/4203/pcsc-lite-${pkgver}.tar.bz2";
+
"https://alioth.debian.org/frs/download.php/file/4204/pcsc-lite-${pkgver}.tar.bz2.asc";)
+md5sums=('5e195a90ce1b96625cde1c49c8bf7790'
  'SKIP')
 validpgpkeys=('F5E11B9FFE911146F41D953D78A1B4DFE8F9C57E') # Ludovic Rousseau 

 


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

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 21:45:30
  Author: arojas
Revision: 204138

Boost 1.63 rebuild

Modified:
  eclib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 21:24:50 UTC (rev 204137)
+++ PKGBUILD2017-01-01 21:45:30 UTC (rev 204138)
@@ -3,7 +3,7 @@
 
 pkgname=eclib
 pkgver=20161230
-pkgrel=1
+pkgrel=2
 pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
 arch=(i686 x86_64)
 url="https://github.com/JohnCremona/eclib/";


[arch-commits] Commit in eclib/repos (6 files)

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 21:47:04
  Author: arojas
Revision: 204139

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  eclib/repos/community-staging-i686/
  eclib/repos/community-staging-i686/PKGBUILD
(from rev 204138, eclib/trunk/PKGBUILD)
  eclib/repos/community-staging-x86_64/
  eclib/repos/community-staging-x86_64/PKGBUILD
(from rev 204138, eclib/trunk/PKGBUILD)
Deleted:
  eclib/repos/community-staging-i686/PKGBUILD
  eclib/repos/community-staging-x86_64/PKGBUILD

---+
 /PKGBUILD |   54 
 community-staging-i686/PKGBUILD   |   27 --
 community-staging-x86_64/PKGBUILD |   27 --
 3 files changed, 54 insertions(+), 54 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2017-01-01 17:27:03 UTC (rev 204115)
+++ community-staging-i686/PKGBUILD 2017-01-01 21:47:04 UTC (rev 204139)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=eclib
-pkgver=20161230
-pkgrel=1
-pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
-arch=(i686 x86_64)
-url="https://github.com/JohnCremona/eclib/";
-license=(GPL)
-depends=(flint pari-sage boost-libs)
-makedepends=(boost)
-source=("https://github.com/JohnCremona/eclib/archive/v$pkgver.tar.gz";)
-md5sums=('1005d7caf7f12c46dab0e76d0d203cd5')
-
-build() {
-  cd $pkgname-$pkgver
-  ./autogen.sh
-  ./configure --prefix=/usr --with-flint=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make install DESTDIR="$pkgdir"
-}
-

Copied: eclib/repos/community-staging-i686/PKGBUILD (from rev 204138, 
eclib/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-01-01 21:47:04 UTC (rev 204139)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=eclib
+pkgver=20161230
+pkgrel=2
+pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
+arch=(i686 x86_64)
+url="https://github.com/JohnCremona/eclib/";
+license=(GPL)
+depends=(flint pari-sage boost-libs)
+makedepends=(boost)
+source=("https://github.com/JohnCremona/eclib/archive/v$pkgver.tar.gz";)
+md5sums=('1005d7caf7f12c46dab0e76d0d203cd5')
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh
+  ./configure --prefix=/usr --with-flint=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make install DESTDIR="$pkgdir"
+}
+

Deleted: community-staging-x86_64/PKGBUILD
===
--- community-staging-x86_64/PKGBUILD   2017-01-01 17:27:03 UTC (rev 204115)
+++ community-staging-x86_64/PKGBUILD   2017-01-01 21:47:04 UTC (rev 204139)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=eclib
-pkgver=20161230
-pkgrel=1
-pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
-arch=(i686 x86_64)
-url="https://github.com/JohnCremona/eclib/";
-license=(GPL)
-depends=(flint pari-sage boost-libs)
-makedepends=(boost)
-source=("https://github.com/JohnCremona/eclib/archive/v$pkgver.tar.gz";)
-md5sums=('1005d7caf7f12c46dab0e76d0d203cd5')
-
-build() {
-  cd $pkgname-$pkgver
-  ./autogen.sh
-  ./configure --prefix=/usr --with-flint=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make install DESTDIR="$pkgdir"
-}
-

Copied: eclib/repos/community-staging-x86_64/PKGBUILD (from rev 204138, 
eclib/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-01-01 21:47:04 UTC (rev 204139)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=eclib
+pkgver=20161230
+pkgrel=2
+pkgdesc="Includes mwrank (for 2-descent on elliptic curves over Q) and modular 
symbol code used to create the elliptic curve database"
+arch=(i686 x86_64)
+url="https://github.com/JohnCremona/eclib/";
+license=(GPL)
+depends=(flint pari-sage boost-libs)
+makedepends=(boost)
+source=("https://github.com/JohnCremona/eclib/archive/v$pkgver.tar.gz";)
+md5sums=('1005d7caf7f12c46dab0e76d0d203cd5')
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh
+  ./configure --prefix=/usr --with-flint=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make install DESTDIR="$pkgdir"
+}
+


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

2017-01-01 Thread Bartłomiej Piotrowski
Date: Sunday, January 1, 2017 @ 21:49:09
  Author: bpiotrowski
Revision: 285155

upgpkg: krita 3.1.1-2

rebuild against boost 1.63.0

Modified:
  krita/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 21:24:05 UTC (rev 285154)
+++ PKGBUILD2017-01-01 21:49:09 UTC (rev 285155)
@@ -3,7 +3,7 @@
 
 pkgname=krita
 pkgver=3.1.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Edit and paint images"
 arch=(i686 x86_64)
 url="http://krita.org";


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

2017-01-01 Thread Bartłomiej Piotrowski
Date: Sunday, January 1, 2017 @ 21:49:18
  Author: bpiotrowski
Revision: 285156

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  krita/repos/staging-i686/
  krita/repos/staging-i686/PKGBUILD
(from rev 285155, krita/trunk/PKGBUILD)
  krita/repos/staging-x86_64/
  krita/repos/staging-x86_64/PKGBUILD
(from rev 285155, krita/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   38 ++
 staging-x86_64/PKGBUILD |   38 ++
 2 files changed, 76 insertions(+)

Copied: krita/repos/staging-i686/PKGBUILD (from rev 285155, 
krita/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-01-01 21:49:18 UTC (rev 285156)
@@ -0,0 +1,38 @@
+# $Id: PKGBUILD 262594 2016-03-26 20:49:29Z arojas $
+# Maintainer: Antonio Rojas 
+
+pkgname=krita
+pkgver=3.1.1
+pkgrel=2
+pkgdesc="Edit and paint images"
+arch=(i686 x86_64)
+url="http://krita.org";
+license=(LGPL)
+depends=(kio kitemmodels gsl libraw opencolorio exiv2 openexr fftw curl 
boost-libs hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools python boost eigen vc poppler-qt5)
+optdepends=('poppler-qt5: PDF filter' 'ffmpeg: to save animations')
+conflicts=(calligra-krita krita-l10n)
+replaces=(calligra-krita krita-l10n)
+source=("http://download.kde.org/stable/krita/$pkgver/krita-$pkgver.tar.gz";)
+md5sums=('322831adc0bc5c7d7ed298f152d57fe7')
+validpgpkeys=('05D00A8B73A686789E0A156858B9596C722EA3BD') # Boudewijn Rempt 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF \
+-DPACKAGERS_BUILD=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: krita/repos/staging-x86_64/PKGBUILD (from rev 285155, 
krita/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-01-01 21:49:18 UTC (rev 285156)
@@ -0,0 +1,38 @@
+# $Id: PKGBUILD 262594 2016-03-26 20:49:29Z arojas $
+# Maintainer: Antonio Rojas 
+
+pkgname=krita
+pkgver=3.1.1
+pkgrel=2
+pkgdesc="Edit and paint images"
+arch=(i686 x86_64)
+url="http://krita.org";
+license=(LGPL)
+depends=(kio kitemmodels gsl libraw opencolorio exiv2 openexr fftw curl 
boost-libs hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools python boost eigen vc poppler-qt5)
+optdepends=('poppler-qt5: PDF filter' 'ffmpeg: to save animations')
+conflicts=(calligra-krita krita-l10n)
+replaces=(calligra-krita krita-l10n)
+source=("http://download.kde.org/stable/krita/$pkgver/krita-$pkgver.tar.gz";)
+md5sums=('322831adc0bc5c7d7ed298f152d57fe7')
+validpgpkeys=('05D00A8B73A686789E0A156858B9596C722EA3BD') # Boudewijn Rempt 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF \
+-DPACKAGERS_BUILD=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2017-01-01 Thread Jaroslav Lichtblau
Date: Sunday, January 1, 2017 @ 21:51:01
  Author: jlichtblau
Revision: 204140

upgpkg: syncthing 0.14.18-1 - new upstream release

Modified:
  syncthing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 21:47:04 UTC (rev 204139)
+++ PKGBUILD2017-01-01 21:51:01 UTC (rev 204140)
@@ -6,7 +6,7 @@
 # Contributor: korjjj 
 
 pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=0.14.17
+pkgver=0.14.18
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://syncthing.net/";
@@ -19,7 +19,7 @@
 syncthing-relaysrv.tmpfiles
 syncthing-relaysrv.service)
 validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('826219b21c935ed938414a8777f9c757bf28a92d0ced48c6a7daf7b3035fb8c4'
+sha256sums=('95674993db7423dba9954606c8a32cbcf247d15e1f60d6e99382a85f5ee1a94b'
 'SKIP'
 '6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
 'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'


[arch-commits] Commit in syncthing/repos (24 files)

2017-01-01 Thread Jaroslav Lichtblau
Date: Sunday, January 1, 2017 @ 21:52:29
  Author: jlichtblau
Revision: 204141

archrelease: copy trunk to community-i686, community-x86_64

Added:
  syncthing/repos/community-i686/PKGBUILD
(from rev 204140, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-i686/syncthing-relaysrv.install
(from rev 204140, syncthing/trunk/syncthing-relaysrv.install)
  syncthing/repos/community-i686/syncthing-relaysrv.service
(from rev 204140, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-i686/syncthing-relaysrv.sysusers
(from rev 204140, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-i686/syncthing-relaysrv.tmpfiles
(from rev 204140, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-i686/syncthing.install
(from rev 204140, syncthing/trunk/syncthing.install)
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 204140, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing-relaysrv.install
(from rev 204140, syncthing/trunk/syncthing-relaysrv.install)
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
(from rev 204140, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
(from rev 204140, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
(from rev 204140, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 204140, syncthing/trunk/syncthing.install)
Deleted:
  syncthing/repos/community-i686/PKGBUILD
  syncthing/repos/community-i686/syncthing-relaysrv.install
  syncthing/repos/community-i686/syncthing-relaysrv.service
  syncthing/repos/community-i686/syncthing-relaysrv.sysusers
  syncthing/repos/community-i686/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-i686/syncthing.install
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing-relaysrv.install
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-x86_64/syncthing.install

--+
 /PKGBUILD|  190 +
 /syncthing-relaysrv.install  |8 +
 /syncthing-relaysrv.service  |   34 
 /syncthing-relaysrv.sysusers |4 
 /syncthing-relaysrv.tmpfiles |2 
 /syncthing.install   |   18 ++
 community-i686/PKGBUILD  |   91 ---
 community-i686/syncthing-relaysrv.install|4 
 community-i686/syncthing-relaysrv.service|   17 --
 community-i686/syncthing-relaysrv.sysusers   |2 
 community-i686/syncthing-relaysrv.tmpfiles   |1 
 community-i686/syncthing.install |9 -
 community-x86_64/PKGBUILD|   91 ---
 community-x86_64/syncthing-relaysrv.install  |4 
 community-x86_64/syncthing-relaysrv.service  |   17 --
 community-x86_64/syncthing-relaysrv.sysusers |2 
 community-x86_64/syncthing-relaysrv.tmpfiles |1 
 community-x86_64/syncthing.install   |9 -
 18 files changed, 256 insertions(+), 248 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-01 21:51:01 UTC (rev 204140)
+++ community-i686/PKGBUILD 2017-01-01 21:52:29 UTC (rev 204141)
@@ -1,91 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=0.14.17
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://syncthing.net/";
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'inetutils')
-options=('!strip')
-source=(https://github.com/syncthing/syncthing/releases/download/v$pkgver/syncthing-source-v${pkgver}.tar.gz{,.asc}
-syncthing-relaysrv.sysusers
-syncthing-relaysrv.tmpfiles
-syncthing-relaysrv.service)
-validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('826219b21c935ed938414a8777f9c757bf28a92d0ced48c6a7daf7b3035fb8c4'
-'SKIP'
-'6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
-'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
-'7c2fbc9608d81f8080f8a9102b867a52a050b61f426a0c182ccc1cb5815e4981')
-
-prepare() {
-  install -d "src/github.com/syncthing"
-  mv "${pkgbase}" "src/github.com/syncthing/${pkgbase}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  go run build.go -no-upgrade -version v${pkgver} build
-  go

[arch-commits] Commit in libcmis/repos (6 files)

2017-01-01 Thread Bartłomiej Piotrowski
Date: Sunday, January 1, 2017 @ 21:53:11
  Author: bpiotrowski
Revision: 285158

archrelease: copy trunk to staging-x86_64, staging-i686

Added:
  libcmis/repos/staging-i686/
  libcmis/repos/staging-i686/PKGBUILD
(from rev 285157, libcmis/trunk/PKGBUILD)
  libcmis/repos/staging-i686/google_drive.diff
(from rev 285157, libcmis/trunk/google_drive.diff)
  libcmis/repos/staging-x86_64/
  libcmis/repos/staging-x86_64/PKGBUILD
(from rev 285157, libcmis/trunk/PKGBUILD)
  libcmis/repos/staging-x86_64/google_drive.diff
(from rev 285157, libcmis/trunk/google_drive.diff)

--+
 staging-i686/PKGBUILD|   39 +
 staging-i686/google_drive.diff   |  106 +
 staging-x86_64/PKGBUILD  |   39 +
 staging-x86_64/google_drive.diff |  106 +
 4 files changed, 290 insertions(+)

Copied: libcmis/repos/staging-i686/PKGBUILD (from rev 285157, 
libcmis/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-01-01 21:53:11 UTC (rev 285158)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: AndyRTR 
+
+pkgname=libcmis
+pkgver=0.5.1
+pkgrel=5
+pkgdesc="a C/C++ client library for the CMIS protocol"
+arch=('x86_64' 'i686')
+url="https://github.com/tdf/libcmis";
+license=('GPL2' 'LGPL2.1' 'MPL')
+depends=('boost-libs' 'curl' 'libxml2')
+makedepends=('docbook2x' 'cppunit' 'boost')
+source=("https://github.com/tdf/libcmis/releases/download/v${pkgver}/$pkgname-$pkgver.tar.gz";
+google_drive.diff)
+md5sums=('3270154f0f40d86fce849b161f914101'
+ '57eede4fdbd4709f48beee9e7b5f1509')
+validpgpkeys=()
+
+prepare() {
+cd "$pkgname-$pkgver"
+patch -Np1 -i ${srcdir}/google_drive.diff
+}
+
+build() {
+   cd "$pkgname-$pkgver"
+   ./configure --prefix=/usr DOCBOOK2MAN='docbook2man'
+   make
+}
+
+check() {
+   cd "$pkgname-$pkgver"
+# fails a google drive check - fix will be included in the next release
+   make check || /bin/true
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   make DESTDIR="$pkgdir/" install
+}

Copied: libcmis/repos/staging-i686/google_drive.diff (from rev 285157, 
libcmis/trunk/google_drive.diff)
===
--- staging-i686/google_drive.diff  (rev 0)
+++ staging-i686/google_drive.diff  2017-01-01 21:53:11 UTC (rev 285158)
@@ -0,0 +1,106 @@
+diff --git a/src/libcmis/oauth2-providers.cxx 
b/src/libcmis/oauth2-providers.cxx
+index 5e7f3bf..68a6aa5 100644
+--- a/src/libcmis/oauth2-providers.cxx
 b/src/libcmis/oauth2-providers.cxx
+@@ -37,11 +37,28 @@ using namespace std;
+ string OAuth2Providers::OAuth2Gdrive( HttpSession* session, const string& 
authUrl,
+   const string& username, const string& 
password )
+ {
++/* This member function implements 'Google OAuth 2.0'
++ *
++ * The interaction is carried out by libcmis, with no web browser 
involved.
++ *
++ * Normal sequence (without 2FA) is:
++ * 1) a get to activate login page
++ *receive first login page, html format
++ * 2) subsequent post to sent email
++ *receive html page for password input
++ * 3) subsequent post to send password
++ *receive html page for application consent
++ * 4) subsequent post to send a consent for the application
++ *receive a single-use authorization code
++ *this code is returned as a string
++ */
++
+ static const string CONTENT_TYPE( "application/x-www-form-urlencoded" );
+ // STEP 1: Log in
+ string res;
+ try
+ {
++// send the first get, receive the html login page
+ res = session->httpGetRequest( authUrl )->getStream( )->str( );
+ }
+ catch ( const CurlException& e )
+@@ -49,20 +66,39 @@ string OAuth2Providers::OAuth2Gdrive( HttpSession* 
session, const string& authUr
+ return string( );
+ }
+ 
+-string loginPost, loginLink; 
+-if ( !parseResponse( res.c_str( ), loginPost, loginLink ) ) 
++string loginEmailPost, loginEmailLink;
++if ( !parseResponse( res.c_str( ), loginEmailPost, loginEmailLink ) )
+ return string( );
+-
+-loginPost += "Email=";  
+-loginPost += string( username );
+-loginPost += "&Passwd=";
+-loginPost += string( password );
+-
+-istringstream loginIs( loginPost );
+-string loginRes;
+-try 
++
++loginEmailPost += "Email=";
++loginEmailPost += string( username );
++
++istringstream loginEmailIs( loginEmailPost );
++string loginEmailRes;
++try
++{
++// send a post with user email, receive the html page for password 
input
++loginEmailRes = session->httpPostRequest ( loginEmailLink, 
loginEmailIs, CONTENT_TYPE )
++  

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

2017-01-01 Thread Bartłomiej Piotrowski
Date: Sunday, January 1, 2017 @ 21:53:03
  Author: bpiotrowski
Revision: 285157

upgpkg: libcmis 0.5.1-5

rebuild against boost 1.63.0

Modified:
  libcmis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 21:49:18 UTC (rev 285156)
+++ PKGBUILD2017-01-01 21:53:03 UTC (rev 285157)
@@ -3,7 +3,7 @@
 
 pkgname=libcmis
 pkgver=0.5.1
-pkgrel=4
+pkgrel=5
 pkgdesc="a C/C++ client library for the CMIS protocol"
 arch=('x86_64' 'i686')
 url="https://github.com/tdf/libcmis";


  1   2   >