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

2017-05-06 Thread Lukas Fleischer
Date: Sunday, May 7, 2017 @ 05:41:27
  Author: lfleischer
Revision: 295403

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

Added:
  flex/repos/core-i686/PKGBUILD
(from rev 295402, flex/trunk/PKGBUILD)
  flex/repos/core-i686/flex-2.6.0-comment-style.patch
(from rev 295402, flex/trunk/flex-2.6.0-comment-style.patch)
  flex/repos/core-x86_64/PKGBUILD
(from rev 295402, flex/trunk/PKGBUILD)
  flex/repos/core-x86_64/flex-2.6.0-comment-style.patch
(from rev 295402, flex/trunk/flex-2.6.0-comment-style.patch)
Deleted:
  flex/repos/core-i686/PKGBUILD
  flex/repos/core-i686/flex-2.6.0-comment-style.patch
  flex/repos/core-x86_64/PKGBUILD
  flex/repos/core-x86_64/flex-2.6.0-comment-style.patch

+
 /PKGBUILD  |   76 +++
 /flex-2.6.0-comment-style.patch|   44 +++
 core-i686/PKGBUILD |   49 -
 core-i686/flex-2.6.0-comment-style.patch   |   22 ---
 core-x86_64/PKGBUILD   |   49 -
 core-x86_64/flex-2.6.0-comment-style.patch |   22 ---
 6 files changed, 120 insertions(+), 142 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2017-05-07 05:41:20 UTC (rev 295402)
+++ core-i686/PKGBUILD  2017-05-07 05:41:27 UTC (rev 295403)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae 
-# Contributor: judd 
-
-pkgname=flex
-pkgver=2.6.3
-pkgrel=2
-pkgdesc="A tool for generating text-scanning programs"
-arch=('i686' 'x86_64')
-url="https://github.com/westes/flex;
-license=('custom')
-groups=('base-devel')
-depends=('glibc' 'm4' 'sh')
-# the released man pages are screwy...
-makedepends=('help2man')
-source=(https://github.com/westes/flex/releases/download/v$pkgver/flex-$pkgver.tar.gz
-   
yywrap-fix.diff::https://github.com/westes/flex/commit/f5d87f1a26f4a5c3402497008ae10e9a1345d327.diff)
-md5sums=('a5f65570cd9107ec8a8ec88f17b31bb1'
- '7d6a72fad1b12922996964d80318ac3a')
-
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -p1 -i $srcdir/yywrap-fix.diff
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  
-  # cxx_restart fails - https://github.com/westes/flex/issues/98
-  make -k check || true
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-  ln -s flex ${pkgdir}/usr/bin/lex
-
-  install -Dm644 COPYING \
-   $pkgdir/usr/share/licenses/$pkgname/license.txt
-}
-

Copied: flex/repos/core-i686/PKGBUILD (from rev 295402, flex/trunk/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2017-05-07 05:41:27 UTC (rev 295403)
@@ -0,0 +1,38 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Allan McRae 
+# Contributor: judd 
+
+pkgname=flex
+pkgver=2.6.4
+pkgrel=1
+pkgdesc="A tool for generating text-scanning programs"
+arch=('i686' 'x86_64')
+url="https://github.com/westes/flex;
+license=('custom')
+groups=('base-devel')
+depends=('glibc' 'm4' 'sh')
+makedepends=('help2man')
+source=("https://github.com/westes/flex/releases/download/v$pkgver/flex-$pkgver.tar.gz;)
+md5sums=('2882e3179748cc9f9c23ec593d6adc8d')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+
+  # cxx_restart fails - https://github.com/westes/flex/issues/98
+  make -k check || true
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  ln -s flex "${pkgdir}/usr/bin/lex"
+
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/license.txt"
+}

Deleted: core-i686/flex-2.6.0-comment-style.patch
===
--- core-i686/flex-2.6.0-comment-style.patch2017-05-07 05:41:20 UTC (rev 
295402)
+++ core-i686/flex-2.6.0-comment-style.patch2017-05-07 05:41:27 UTC (rev 
295403)
@@ -1,22 +0,0 @@
-From 07d89829cce4527c7614a34642d4b2c2ef5d6005 Mon Sep 17 00:00:00 2001
-From: Will Estes 
-Date: Fri, 11 Dec 2015 09:45:14 -0500
-Subject: [PATCH] Commented in C style in skeleton; fixed sf#195
-

- src/flex.skl | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/flex.skl b/src/flex.skl
-index b63c8c8..40287b6 100644
 a/src/flex.skl
-+++ b/src/flex.skl
-@@ -2350,7 +2350,7 @@ void yyFlexLexer::yyensure_buffer_stack(void)
-* scanner will even need a stack. We use 2 instead of 1 to 
avoid an
-* immediate realloc on the next call.
-  */
--  num_to_alloc = 1; // After all that talk, this was set to 1 
anyways...
-+  num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... 
*/
-   

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

2017-05-06 Thread Lukas Fleischer
Date: Sunday, May 7, 2017 @ 05:41:20
  Author: lfleischer
Revision: 295402

upgpkg: flex 2.6.4-1

Upstream update.

Modified:
  flex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-07 00:40:21 UTC (rev 295401)
+++ PKGBUILD2017-05-07 05:41:20 UTC (rev 295402)
@@ -1,10 +1,10 @@
-# $Id$
-# Maintainer: Allan McRae 
+# Maintainer: Lukas Fleischer 
+# Contributor: Allan McRae 
 # Contributor: judd 
 
 pkgname=flex
-pkgver=2.6.3
-pkgrel=2
+pkgver=2.6.4
+pkgrel=1
 pkgdesc="A tool for generating text-scanning programs"
 arch=('i686' 'x86_64')
 url="https://github.com/westes/flex;
@@ -11,39 +11,28 @@
 license=('custom')
 groups=('base-devel')
 depends=('glibc' 'm4' 'sh')
-# the released man pages are screwy...
 makedepends=('help2man')
-source=(https://github.com/westes/flex/releases/download/v$pkgver/flex-$pkgver.tar.gz
-   
yywrap-fix.diff::https://github.com/westes/flex/commit/f5d87f1a26f4a5c3402497008ae10e9a1345d327.diff)
-md5sums=('a5f65570cd9107ec8a8ec88f17b31bb1'
- '7d6a72fad1b12922996964d80318ac3a')
+source=("https://github.com/westes/flex/releases/download/v$pkgver/flex-$pkgver.tar.gz;)
+md5sums=('2882e3179748cc9f9c23ec593d6adc8d')
 
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -p1 -i $srcdir/yywrap-fix.diff
-}
-
 build() {
-  cd $pkgname-$pkgver
+  cd "$pkgname-$pkgver"
   ./configure --prefix=/usr
   make
 }
 
 check() {
-  cd $pkgname-$pkgver
-  
+  cd "$pkgname-$pkgver"
+
   # cxx_restart fails - https://github.com/westes/flex/issues/98
   make -k check || true
 }
 
 package() {
-  cd $pkgname-$pkgver
+  cd "$pkgname-$pkgver"
 
-  make DESTDIR=$pkgdir install
-  ln -s flex ${pkgdir}/usr/bin/lex
+  make DESTDIR="$pkgdir" install
+  ln -s flex "${pkgdir}/usr/bin/lex"
 
-  install -Dm644 COPYING \
-   $pkgdir/usr/share/licenses/$pkgname/license.txt
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/license.txt"
 }
-


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

2017-05-06 Thread Lukas Fleischer
Date: Sunday, May 7, 2017 @ 05:35:28
  Author: lfleischer
Revision: 227234

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

Added:
  python-pygit2/repos/community-i686/PKGBUILD
(from rev 227233, python-pygit2/trunk/PKGBUILD)
  python-pygit2/repos/community-x86_64/PKGBUILD
(from rev 227233, python-pygit2/trunk/PKGBUILD)
Deleted:
  python-pygit2/repos/community-i686/PKGBUILD
  python-pygit2/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   80 
 community-i686/PKGBUILD   |   34 --
 community-x86_64/PKGBUILD |   34 --
 3 files changed, 80 insertions(+), 68 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-07 05:35:10 UTC (rev 227233)
+++ community-i686/PKGBUILD 2017-05-07 05:35:28 UTC (rev 227234)
@@ -1,34 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Maintainer: Daniel Micay 
-# Maintainer: Jaroslav Lichtblau 
-
-pkgbase=python-pygit2
-pkgname=('python-pygit2' 'python2-pygit2')
-pkgver=0.25.0
-pkgrel=1
-pkgdesc='Python bindings for libgit2'
-arch=('i686' 'x86_64')
-url="https://github.com/libgit2/pygit2;
-license=('GPL2')
-depends=('libgit2>=1:0.24.0')
-makedepends=('python-cffi' 'python2-cffi' 'python-setuptools' 
'python2-setuptools' 'git' 'python-six' 'python2-six')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/libgit2/pygit2/archive/v${pkgver}.tar.gz;)
-sha256sums=('488dff456921b2763d68b6e8df3101b0c54dc00822548b090b6ee6e05c909416')
-
-package_python-pygit2() {
-  depends+=('python-cffi' 'python-six')
-  replaces=('python-libgit2')
-  conflicts=('python-libgit2')
-
-  cd "pygit2-$pkgver"
-  LANG=en_US.UTF8 python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-pygit2() {
-  depends+=('python2-cffi' 'python2-six')
-  replaces=('python2-libgit2')
-  conflicts=('python2-libgit2')
-
-  cd "pygit2-$pkgver"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-pygit2/repos/community-i686/PKGBUILD (from rev 227233, 
python-pygit2/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-07 05:35:28 UTC (rev 227234)
@@ -0,0 +1,40 @@
+# Maintainer: Lukas Fleischer 
+# Maintainer: Daniel Micay 
+# Maintainer: Jaroslav Lichtblau 
+
+pkgbase=python-pygit2
+pkgname=('python-pygit2' 'python2-pygit2')
+pkgver=0.25.1
+pkgrel=1
+pkgdesc='Python bindings for libgit2'
+arch=('i686' 'x86_64')
+url="https://github.com/libgit2/pygit2;
+license=('GPL2')
+depends=('libgit2>=1:0.25.0')
+makedepends=('python-cffi' 'python2-cffi' 'python-setuptools' 
'python2-setuptools' 'git' 'python-six' 'python2-six')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/libgit2/pygit2/archive/v${pkgver}.tar.gz;
+
"https://github.com/libgit2/pygit2/commit/b88dc868423af2f760f649960112efd0e37e5335.patch;)
+sha256sums=('4dae0cf99a0ed21b3e5c98dc8b170cbb20f1d8b6c73626caaf6eac2617d8acde'
+'4cf18766e45781dccaeb30c81b668e23796e065d2408b5df11847d02bdc00757')
+
+prepare() {
+  patch -d "pygit2-$pkgver" -p1 -i 
../b88dc868423af2f760f649960112efd0e37e5335.patch
+}
+
+package_python-pygit2() {
+  depends+=('python-cffi' 'python-six')
+  replaces=('python-libgit2')
+  conflicts=('python-libgit2')
+
+  cd "pygit2-$pkgver"
+  LANG=en_US.UTF8 python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-pygit2() {
+  depends+=('python2-cffi' 'python2-six')
+  replaces=('python2-libgit2')
+  conflicts=('python2-libgit2')
+
+  cd "pygit2-$pkgver"
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-05-07 05:35:10 UTC (rev 227233)
+++ community-x86_64/PKGBUILD   2017-05-07 05:35:28 UTC (rev 227234)
@@ -1,34 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Maintainer: Daniel Micay 
-# Maintainer: Jaroslav Lichtblau 
-
-pkgbase=python-pygit2
-pkgname=('python-pygit2' 'python2-pygit2')
-pkgver=0.25.0
-pkgrel=1
-pkgdesc='Python bindings for libgit2'
-arch=('i686' 'x86_64')
-url="https://github.com/libgit2/pygit2;
-license=('GPL2')
-depends=('libgit2>=1:0.24.0')
-makedepends=('python-cffi' 'python2-cffi' 'python-setuptools' 
'python2-setuptools' 'git' 'python-six' 'python2-six')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/libgit2/pygit2/archive/v${pkgver}.tar.gz;)
-sha256sums=('488dff456921b2763d68b6e8df3101b0c54dc00822548b090b6ee6e05c909416')
-
-package_python-pygit2() {
-  depends+=('python-cffi' 'python-six')
-  

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

2017-05-06 Thread Lukas Fleischer
Date: Sunday, May 7, 2017 @ 05:35:10
  Author: lfleischer
Revision: 227233

upgpkg: python-pygit2 0.25.1-1

Upstream update.

Modified:
  python-pygit2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-07 01:16:26 UTC (rev 227232)
+++ PKGBUILD2017-05-07 05:35:10 UTC (rev 227233)
@@ -4,17 +4,23 @@
 
 pkgbase=python-pygit2
 pkgname=('python-pygit2' 'python2-pygit2')
-pkgver=0.25.0
+pkgver=0.25.1
 pkgrel=1
 pkgdesc='Python bindings for libgit2'
 arch=('i686' 'x86_64')
 url="https://github.com/libgit2/pygit2;
 license=('GPL2')
-depends=('libgit2>=1:0.24.0')
+depends=('libgit2>=1:0.25.0')
 makedepends=('python-cffi' 'python2-cffi' 'python-setuptools' 
'python2-setuptools' 'git' 'python-six' 'python2-six')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/libgit2/pygit2/archive/v${pkgver}.tar.gz;)
-sha256sums=('488dff456921b2763d68b6e8df3101b0c54dc00822548b090b6ee6e05c909416')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/libgit2/pygit2/archive/v${pkgver}.tar.gz;
+
"https://github.com/libgit2/pygit2/commit/b88dc868423af2f760f649960112efd0e37e5335.patch;)
+sha256sums=('4dae0cf99a0ed21b3e5c98dc8b170cbb20f1d8b6c73626caaf6eac2617d8acde'
+'4cf18766e45781dccaeb30c81b668e23796e065d2408b5df11847d02bdc00757')
 
+prepare() {
+  patch -d "pygit2-$pkgver" -p1 -i 
../b88dc868423af2f760f649960112efd0e37e5335.patch
+}
+
 package_python-pygit2() {
   depends+=('python-cffi' 'python-six')
   replaces=('python-libgit2')


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

2017-05-06 Thread Gaëtan Bisson
Date: Sunday, May 7, 2017 @ 01:16:26
  Author: bisson
Revision: 227232

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

Added:
  collectd/repos/community-staging-i686/
  collectd/repos/community-staging-i686/PKGBUILD
(from rev 227231, collectd/trunk/PKGBUILD)
  collectd/repos/community-staging-i686/service
(from rev 227231, collectd/trunk/service)
  collectd/repos/community-staging-x86_64/
  collectd/repos/community-staging-x86_64/PKGBUILD
(from rev 227231, collectd/trunk/PKGBUILD)
  collectd/repos/community-staging-x86_64/service
(from rev 227231, collectd/trunk/service)

---+
 community-staging-i686/PKGBUILD   |   78 
 community-staging-i686/service|   13 ++
 community-staging-x86_64/PKGBUILD |   78 
 community-staging-x86_64/service  |   13 ++
 4 files changed, 182 insertions(+)

Copied: collectd/repos/community-staging-i686/PKGBUILD (from rev 227231, 
collectd/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-07 01:16:26 UTC (rev 227232)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Gerhard Brauer 
+
+pkgname=collectd
+pkgver=5.7.1
+pkgrel=4
+pkgdesc='Daemon which collects system performance statistics periodically'
+url='https://collectd.org/'
+arch=('i686' 'x86_64')
+license=('GPL')
+
+optdepends=('curl: apache, ascent, curl, nginx, and write_http plugins'
+'libdbi: dbi plugin'
+'libesmtp: notify_email plugin'
+'libgcrypt: encryption and authentication for network plugin'
+'libmemcached: memcachec plugin'
+'libmariadbclient: mysql plugin'
+'iproute2: netlink plugin'
+'net-snmp: snmp plugin'
+'libnotify: notify_desktop plugin'
+'openipmi: ipmi plugin'
+'liboping: ping plugin'
+'libpcap: dns plugin'
+'perl: perl plugin'
+'postgresql-libs: postgresql plugin'
+'python2: python plugin'
+'rrdtool: rrdtool and rrdcached plugins'
+'lm_sensors: lm_sensors and sensors plugins'
+'libvirt: libvirt plugin'
+'libxml2: ascent and libvirt plugins'
+'yajl: curl_json plugin'
+'libatasmart: smart plugin'
+'lvm2: lvm plugin'
+'protobuf-c: write_riemann plugin'
+'mosquitto: MQTT plugin')
+
+makedepends=('curl' 'libdbi' 'libesmtp' 'libgcrypt' 'libmemcached'
+ 'libmariadbclient' 'iproute2' 'net-snmp' 'libnotify' 'openipmi'
+ 'liboping' 'libpcap' 'postgresql-libs' 'python2' 'rrdtool'
+ 'lm_sensors' 'libvirt' 'libxml2' 'yajl' 'libatasmart' 'lvm2'
+ 'protobuf-c' 'mosquitto')
+
+depends=('libltdl' 'iptables')
+
+source=("${url}files/${pkgname}-${pkgver}.tar.bz2"
+'service')
+sha256sums=('7edd3643c0842215553b2421d5456f4e9a8a58b07e216b40a7e8e91026d8e501'
+'e45e261146563b0bf6967c669dff7ac2400f066f0eb4c022ac3fdb0ccadca2f9')
+
+backup=('etc/collectd.conf')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed 's/-Werror//g' -i *.ac */*.{am,in} */*/*.{am,in}
+   autoreconf
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   export MAKEFLAGS='-j1'
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --sbindir=/usr/bin \
+   --with-python=/usr/bin/python2 \
+   --with-perl-bindings='INSTALLDIRS=vendor'
+   make all
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   rmdir "${pkgdir}/var/run" # FS#30201
+   install -Dm644 ../service 
"${pkgdir}"/usr/lib/systemd/system/collectd.service
+   install -Dm644 contrib/collectd2html.pl 
"${pkgdir}"/usr/share/collectd/collectd2html.pl
+}

Copied: collectd/repos/community-staging-i686/service (from rev 227231, 
collectd/trunk/service)
===
--- community-staging-i686/service  (rev 0)
+++ community-staging-i686/service  2017-05-07 01:16:26 UTC (rev 227232)
@@ -0,0 +1,13 @@
+[Unit]
+Description=System statistics collection daemon
+After=local-fs.target network.target
+
+[Service]
+Type=forking
+PIDFile=/run/collectdmon.pid
+ExecStart=/usr/bin/collectdmon
+ExecReload=/bin/kill -HUP $MAINPID
+Restart=always
+
+[Install]
+WantedBy=multi-user.target

Copied: collectd/repos/community-staging-x86_64/PKGBUILD (from rev 227231, 
collectd/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD  

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

2017-05-06 Thread Fabio Castelli
Date: Sunday, May 7, 2017 @ 00:57:15
  Author: muflone
Revision: 227231

archrelease: copy trunk to community-testing-any

Added:
  spyder/repos/community-testing-any/
  spyder/repos/community-testing-any/PKGBUILD
(from rev 227230, spyder/trunk/PKGBUILD)
  spyder/repos/community-testing-any/python2-optional-nbconvert.patch
(from rev 227230, spyder/trunk/python2-optional-nbconvert.patch)
  spyder/repos/community-testing-any/python2-pep8.patch
(from rev 227230, spyder/trunk/python2-pep8.patch)
  spyder/repos/community-testing-any/python2.patch
(from rev 227230, spyder/trunk/python2.patch)
  spyder/repos/community-testing-any/python3-pep8.patch
(from rev 227230, spyder/trunk/python3-pep8.patch)

--+
 PKGBUILD |   81 +
 python2-optional-nbconvert.patch |   12 +
 python2-pep8.patch   |   45 
 python2.patch|   29 +
 python3-pep8.patch   |   45 
 5 files changed, 212 insertions(+)

Copied: spyder/repos/community-testing-any/PKGBUILD (from rev 227230, 
spyder/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2017-05-07 00:57:15 UTC (rev 227231)
@@ -0,0 +1,81 @@
+# $Id$
+# Maintainer: Muflone http://www.muflone.com/contacts/english/
+# Contributor: Francois Boulogne 
+# Contributor: TDY 
+
+pkgbase='spyder'
+pkgname=('spyder' 'spyder3')
+pkgver=3.1.4
+pkgrel=1
+pkgdesc='Scientific PYthon Development EnviRonment providing MATLAB-like 
features.'
+makedepends=('python2-setuptools' 'python-setuptools' 'python-sphinx' 
'python2-sphinx')
+arch=('any')
+url='https://github.com/spyder-ide/spyder/'
+license=('MIT')
+source=("${pkgbase}-${pkgver}.tar.gz"::"https://github.com/spyder-ide/${pkgbase}/archive/v${pkgver}.tar.gz;
+"python2.patch"
+"python2-optional-nbconvert.patch"
+"python2-pep8.patch"
+"python3-pep8.patch")
+sha256sums=('bcd75ebe65309a5f9184eedc59c415fe0d09e9b54a2b51bc31199a6095cd0b85'
+'4fb415fb358371da4a8b9524712de9338d391eed3bdabc5e217cf54f558771b5'
+'f6afdd08971a2022649af0be70cac67aa4d95fff06ade57f708693cffe073528'
+'dbebf909bf59027d22247e3e3c1736b5ec9337a879358f8117a967bb03e913b2'
+'f4eba4c414e655f0f2797e9864aa199607a6706f6b245aca56a54b250febc382')
+
+package_spyder() {
+  pkgdesc='Scientific PYthon Development EnviRonment providing MATLAB-like 
features for Python 2.x series.'
+  depends=('python2-pyqt5' 'qt5-webkit' 'python2-qtconsole' 'python2-qtpy' 
'python2-qtawesome'
+   'python2-pyflakes' 'python2-pyzmq' 'python2-pygments' 
'python2-psutil' 'python2-pickleshare'
+   'python2-rope' 'python2-jedi' 'python2-pylint' 
'python2-pycodestyle' 'python2-sphinx'
+   'icu' 'gtk-update-icon-cache')
+  optdepends=('python2-numpy: N-dimensional arrays'
+  'python2-scipy: signal/image processing'
+  'python2-h5py: HDF5 support'
+  'python2-matplotlib: interactive 2D/3D data plotting'
+  'python2-sympy: symbolic mathematics for the IPython console'
+  'python2-pandas: view and edit DataFrames and Series in the 
Variable Explorer')
+  [ -d "build" ] && rm -rf "build"
+  cp -r "${pkgbase}-${pkgver}" build
+  cd build
+  patch -p1 -i "../python2.patch"
+  patch -p1 -i "../python2-pep8.patch"
+  patch -p1 -i "../python2-optional-nbconvert.patch"
+  python2 setup.py build
+  python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+  # Install license file
+  install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  # Install icon and desktop file
+  install -D -m644 "scripts/${pkgname}.desktop" 
"${pkgdir}/usr/share/applications/${pkgname}.desktop"
+  install -D -m644 "spyder/images/spyder.svg" 
"${pkgdir}/usr/share/icons/hicolor/scalable/apps/${pkgname}.svg"
+  # Remove useless spyder_win_post_install script
+  rm -f "${pkgdir}/usr/bin/spyder_win_post_install.py"
+}
+
+package_spyder3() {
+  pkgdesc='Scientific PYthon Development EnviRonment providing MATLAB-like 
features for Python 3.x series.'
+  depends=('python-pyqt5' 'qt5-webkit' 'python-qtconsole' 'python-qtpy' 
'python-qtawesome'
+   'python-pyflakes' 'python-pyzmq' 'python-pygments' 'python-psutil' 
'python-pickleshare'
+   'jupyter' 'jupyter-nbconvert'
+   'python-rope' 'python-jedi' 'python-pylint' 'python-pycodestyle' 
'python-sphinx'
+   'icu' 'gtk-update-icon-cache')
+  optdepends=('python-numpy: N-dimensional arrays'
+  'python-scipy: signal/image processing'
+  'python-h5py: HDF5 support'
+  'python-matplotlib: interactive 2D/3D data plotting'
+  'python-sympy: symbolic mathematics for the 

[arch-commits] Commit in spyder/trunk (PKGBUILD python2-optional-nbconvert.patch)

2017-05-06 Thread Fabio Castelli
Date: Sunday, May 7, 2017 @ 00:56:46
  Author: muflone
Revision: 227230

upgpkg: spyder 3.1.4-1

Added:
  spyder/trunk/python2-optional-nbconvert.patch
Modified:
  spyder/trunk/PKGBUILD

--+
 PKGBUILD |8 +---
 python2-optional-nbconvert.patch |   12 
 2 files changed, 17 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 22:43:54 UTC (rev 227229)
+++ PKGBUILD2017-05-07 00:56:46 UTC (rev 227230)
@@ -5,7 +5,7 @@
 
 pkgbase='spyder'
 pkgname=('spyder' 'spyder3')
-pkgver=3.1.3
+pkgver=3.1.4
 pkgrel=1
 pkgdesc='Scientific PYthon Development EnviRonment providing MATLAB-like 
features.'
 makedepends=('python2-setuptools' 'python-setuptools' 'python-sphinx' 
'python2-sphinx')
@@ -14,10 +14,12 @@
 license=('MIT')
 
source=("${pkgbase}-${pkgver}.tar.gz"::"https://github.com/spyder-ide/${pkgbase}/archive/v${pkgver}.tar.gz;
 "python2.patch"
+"python2-optional-nbconvert.patch"
 "python2-pep8.patch"
 "python3-pep8.patch")
-sha256sums=('b8d4a8bd6793242be9c5cc6a9f6fd8c4f47f08be4689df15fc2680899ffbf2c3'
+sha256sums=('bcd75ebe65309a5f9184eedc59c415fe0d09e9b54a2b51bc31199a6095cd0b85'
 '4fb415fb358371da4a8b9524712de9338d391eed3bdabc5e217cf54f558771b5'
+'f6afdd08971a2022649af0be70cac67aa4d95fff06ade57f708693cffe073528'
 'dbebf909bf59027d22247e3e3c1736b5ec9337a879358f8117a967bb03e913b2'
 'f4eba4c414e655f0f2797e9864aa199607a6706f6b245aca56a54b250febc382')
 
@@ -25,7 +27,6 @@
   pkgdesc='Scientific PYthon Development EnviRonment providing MATLAB-like 
features for Python 2.x series.'
   depends=('python2-pyqt5' 'qt5-webkit' 'python2-qtconsole' 'python2-qtpy' 
'python2-qtawesome'
'python2-pyflakes' 'python2-pyzmq' 'python2-pygments' 
'python2-psutil' 'python2-pickleshare'
-   'ipython2-notebook'
'python2-rope' 'python2-jedi' 'python2-pylint' 
'python2-pycodestyle' 'python2-sphinx'
'icu' 'gtk-update-icon-cache')
   optdepends=('python2-numpy: N-dimensional arrays'
@@ -39,6 +40,7 @@
   cd build
   patch -p1 -i "../python2.patch"
   patch -p1 -i "../python2-pep8.patch"
+  patch -p1 -i "../python2-optional-nbconvert.patch"
   python2 setup.py build
   python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
   # Install license file

Added: python2-optional-nbconvert.patch
===
--- python2-optional-nbconvert.patch(rev 0)
+++ python2-optional-nbconvert.patch2017-05-07 00:56:46 UTC (rev 227230)
@@ -0,0 +1,12 @@
+diff -Naur spyder-3.1.4.orig/spyder/config/ipython.py 
spyder-3.1.4/spyder/config/ipython.py
+--- spyder-3.1.4.orig/spyder/config/ipython.py 2017-04-24 02:30:23.0 
+0200
 spyder-3.1.4/spyder/config/ipython.py  2017-05-07 02:50:25.640734369 
+0200
+@@ -23,7 +23,7 @@
+ dependencies.add("qtconsole", _("Integrate the IPython console"),
+  required_version=QTCONSOLE_REQVER)
+ dependencies.add("nbconvert", _("Manipulate Jupyter notebooks on the Editor"),
+- required_version=NBCONVERT_REQVER)
++ required_version=NBCONVERT_REQVER, optional=True)
+ 
+ 
+ # Auxiliary functions


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

2017-05-06 Thread Gaëtan Bisson
Date: Sunday, May 7, 2017 @ 00:40:21
  Author: bisson
Revision: 295401

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

Added:
  protobuf-c/repos/staging-i686/
  protobuf-c/repos/staging-i686/PKGBUILD
(from rev 295400, protobuf-c/trunk/PKGBUILD)
  protobuf-c/repos/staging-x86_64/
  protobuf-c/repos/staging-x86_64/PKGBUILD
(from rev 295400, protobuf-c/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   31 +++
 staging-x86_64/PKGBUILD |   31 +++
 2 files changed, 62 insertions(+)

Copied: protobuf-c/repos/staging-i686/PKGBUILD (from rev 295400, 
protobuf-c/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-05-07 00:40:21 UTC (rev 295401)
@@ -0,0 +1,31 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Aurélien Wailly 
+
+pkgname=protobuf-c
+pkgver=1.2.1
+pkgrel=6
+pkgdesc='Protocol Buffers implementation in C'
+arch=('i686' 'x86_64')
+url='https://github.com/protobuf-c/protobuf-c'
+license=('BSD')
+depends=('protobuf')
+provides=('libprotobuf-c.so')
+source=("$url/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz")
+md5sums=('e544249c329391fff512c3874895cfbe')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: protobuf-c/repos/staging-x86_64/PKGBUILD (from rev 295400, 
protobuf-c/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-05-07 00:40:21 UTC (rev 295401)
@@ -0,0 +1,31 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Aurélien Wailly 
+
+pkgname=protobuf-c
+pkgver=1.2.1
+pkgrel=6
+pkgdesc='Protocol Buffers implementation in C'
+arch=('i686' 'x86_64')
+url='https://github.com/protobuf-c/protobuf-c'
+license=('BSD')
+depends=('protobuf')
+provides=('libprotobuf-c.so')
+source=("$url/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz")
+md5sums=('e544249c329391fff512c3874895cfbe')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2017-05-06 Thread Gaëtan Bisson
Date: Sunday, May 7, 2017 @ 00:39:38
  Author: bisson
Revision: 295400

rebuild for protobuf-3.3.0

Modified:
  protobuf-c/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 22:40:11 UTC (rev 295399)
+++ PKGBUILD2017-05-07 00:39:38 UTC (rev 295400)
@@ -4,7 +4,7 @@
 
 pkgname=protobuf-c
 pkgver=1.2.1
-pkgrel=5
+pkgrel=6
 pkgdesc='Protocol Buffers implementation in C'
 arch=('i686' 'x86_64')
 url='https://github.com/protobuf-c/protobuf-c'


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

2017-05-06 Thread Gaëtan Bisson
Date: Saturday, May 6, 2017 @ 22:43:54
  Author: bisson
Revision: 227229

rebuild

Modified:
  collectd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 21:47:49 UTC (rev 227228)
+++ PKGBUILD2017-05-06 22:43:54 UTC (rev 227229)
@@ -4,7 +4,7 @@
 
 pkgname=collectd
 pkgver=5.7.1
-pkgrel=3
+pkgrel=4
 pkgdesc='Daemon which collects system performance statistics periodically'
 url='https://collectd.org/'
 arch=('i686' 'x86_64')


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

2017-05-06 Thread Jan de Groot
Date: Saturday, May 6, 2017 @ 22:40:06
  Author: jgc
Revision: 295398

upgpkg: guile 2.2.2-1

Fix overlinking

Modified:
  guile/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 22:06:30 UTC (rev 295397)
+++ PKGBUILD2017-05-06 22:40:06 UTC (rev 295398)
@@ -4,10 +4,10 @@
 # Contributor: Tom Newsom 
 
 pkgname=guile
-pkgver=2.2.1
+pkgver=2.2.2
 pkgrel=1
 pkgdesc='Portable, embeddable Scheme implementation written in C'
-url='http://www.gnu.org/software/guile/'
+url='https://www.gnu.org/software/guile/'
 arch=(i686 x86_64)
 license=(GPL)
 depends=(gmp libltdl ncurses texinfo libunistring gc libffi)
@@ -14,8 +14,8 @@
 source=(https://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.gz{,.sig})
 validpgpkeys=('3CE464558A84FDC69DB40CFB090B11993D9AEBB5' # Ludovic Courtès 

   'FF478FB264DE32EC296725A3DDC0F5358812F8F2') # Andy Wingo
-md5sums=('f21bac926c0cb85d032e91b179c43a2f'
- 'SKIP')
+sha256sums=('3d9b94183b19f04dd4317da87beedafd1c947142f3d861ca1f0224e7a75127ee'
+'SKIP')
 
 build() {
   cd $pkgname-$pkgver
@@ -22,6 +22,7 @@
   ./configure --prefix=/usr \
 --disable-static  \
 --disable-error-on-warning
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }
 


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

2017-05-06 Thread Jan de Groot
Date: Saturday, May 6, 2017 @ 22:40:11
  Author: jgc
Revision: 295399

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

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

---+
 /PKGBUILD |   64 
 extra-i686/PKGBUILD   |   31 ---
 extra-x86_64/PKGBUILD |   31 ---
 3 files changed, 64 insertions(+), 62 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-05-06 22:40:06 UTC (rev 295398)
+++ extra-i686/PKGBUILD 2017-05-06 22:40:11 UTC (rev 295399)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer:  Jan de Groot 
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Tom Newsom 
-
-pkgname=guile
-pkgver=2.2.1
-pkgrel=1
-pkgdesc='Portable, embeddable Scheme implementation written in C'
-url='http://www.gnu.org/software/guile/'
-arch=(i686 x86_64)
-license=(GPL)
-depends=(gmp libltdl ncurses texinfo libunistring gc libffi)
-source=(https://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.gz{,.sig})
-validpgpkeys=('3CE464558A84FDC69DB40CFB090B11993D9AEBB5' # Ludovic Courtès 

-  'FF478FB264DE32EC296725A3DDC0F5358812F8F2') # Andy Wingo
-md5sums=('f21bac926c0cb85d032e91b179c43a2f'
- 'SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
---disable-static  \
---disable-error-on-warning
-  make
-}
-
-package() {
-  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
-  rm "$pkgdir"/usr/lib/libguile-2.?.so.*-gdb.scm
-}

Copied: guile/repos/extra-i686/PKGBUILD (from rev 295398, guile/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-05-06 22:40:11 UTC (rev 295399)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer:  Jan de Groot 
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Tom Newsom 
+
+pkgname=guile
+pkgver=2.2.2
+pkgrel=1
+pkgdesc='Portable, embeddable Scheme implementation written in C'
+url='https://www.gnu.org/software/guile/'
+arch=(i686 x86_64)
+license=(GPL)
+depends=(gmp libltdl ncurses texinfo libunistring gc libffi)
+source=(https://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.gz{,.sig})
+validpgpkeys=('3CE464558A84FDC69DB40CFB090B11993D9AEBB5' # Ludovic Courtès 

+  'FF478FB264DE32EC296725A3DDC0F5358812F8F2') # Andy Wingo
+sha256sums=('3d9b94183b19f04dd4317da87beedafd1c947142f3d861ca1f0224e7a75127ee'
+'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+--disable-static  \
+--disable-error-on-warning
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
+  rm "$pkgdir"/usr/lib/libguile-2.?.so.*-gdb.scm
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-05-06 22:40:06 UTC (rev 295398)
+++ extra-x86_64/PKGBUILD   2017-05-06 22:40:11 UTC (rev 295399)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer:  Jan de Groot 
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Tom Newsom 
-
-pkgname=guile
-pkgver=2.2.1
-pkgrel=1
-pkgdesc='Portable, embeddable Scheme implementation written in C'
-url='http://www.gnu.org/software/guile/'
-arch=(i686 x86_64)
-license=(GPL)
-depends=(gmp libltdl ncurses texinfo libunistring gc libffi)
-source=(https://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.gz{,.sig})
-validpgpkeys=('3CE464558A84FDC69DB40CFB090B11993D9AEBB5' # Ludovic Courtès 

-  'FF478FB264DE32EC296725A3DDC0F5358812F8F2') # Andy Wingo
-md5sums=('f21bac926c0cb85d032e91b179c43a2f'
- 'SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
---disable-static  \
---disable-error-on-warning
-  make
-}
-
-package() {
-  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
-  rm "$pkgdir"/usr/lib/libguile-2.?.so.*-gdb.scm
-}

Copied: guile/repos/extra-x86_64/PKGBUILD (from rev 295398, 
guile/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-05-06 22:40:11 UTC (rev 295399)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer:  Jan de Groot 
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Tom Newsom 
+
+pkgname=guile
+pkgver=2.2.2
+pkgrel=1
+pkgdesc='Portable, 

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

2017-05-06 Thread Jan de Groot
Date: Saturday, May 6, 2017 @ 22:06:23
  Author: jgc
Revision: 295396

upgpkg: goffice 0.10.34-1

Modified:
  goffice/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 21:53:12 UTC (rev 295395)
+++ PKGBUILD2017-05-06 22:06:23 UTC (rev 295396)
@@ -3,7 +3,7 @@
 # Contributor: Aaron Griffin 
 
 pkgname=goffice
-pkgver=0.10.33
+pkgver=0.10.34
 pkgrel=1
 pkgdesc="A GLib/GTK+ set of document-centric objects and charting library"
 url="https://git.gnome.org/browse/goffice;
@@ -11,7 +11,7 @@
 license=(GPL)
 depends=(librsvg gtk3 libgsf libspectre libxslt lasem)
 makedepends=(intltool gtk-doc gobject-introspection autoconf-archive git)
-_commit=a3608ccb15b56799ce11b9e419c319c649c8fcae  # tags/GOFFICE_0_10_33^0
+_commit=f69663fd852fff16cd52b85d98439acb8b186ad3  # tags/GOFFICE_0_10_34^0
 source=("git+https://git.gnome.org/browse/goffice#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2017-05-06 Thread Jan de Groot
Date: Saturday, May 6, 2017 @ 22:06:30
  Author: jgc
Revision: 295397

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-05-06 22:06:23 UTC (rev 295396)
+++ extra-i686/PKGBUILD 2017-05-06 22:06:30 UTC (rev 295397)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Aaron Griffin 
-
-pkgname=goffice
-pkgver=0.10.33
-pkgrel=1
-pkgdesc="A GLib/GTK+ set of document-centric objects and charting library"
-url="https://git.gnome.org/browse/goffice;
-arch=(i686 x86_64)
-license=(GPL)
-depends=(librsvg gtk3 libgsf libspectre libxslt lasem)
-makedepends=(intltool gtk-doc gobject-introspection autoconf-archive git)
-_commit=a3608ccb15b56799ce11b9e419c319c649c8fcae  # tags/GOFFICE_0_10_33^0
-source=("git+https://git.gnome.org/browse/goffice#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^GOFFICE_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static --enable-introspection 
--enable-gtk-doc
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="${pkgdir}" install
-}

Copied: goffice/repos/extra-i686/PKGBUILD (from rev 295396, 
goffice/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-05-06 22:06:30 UTC (rev 295397)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Aaron Griffin 
+
+pkgname=goffice
+pkgver=0.10.34
+pkgrel=1
+pkgdesc="A GLib/GTK+ set of document-centric objects and charting library"
+url="https://git.gnome.org/browse/goffice;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(librsvg gtk3 libgsf libspectre libxslt lasem)
+makedepends=(intltool gtk-doc gobject-introspection autoconf-archive git)
+_commit=f69663fd852fff16cd52b85d98439acb8b186ad3  # tags/GOFFICE_0_10_34^0
+source=("git+https://git.gnome.org/browse/goffice#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^GOFFICE_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static --enable-introspection 
--enable-gtk-doc
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-05-06 22:06:23 UTC (rev 295396)
+++ extra-x86_64/PKGBUILD   2017-05-06 22:06:30 UTC (rev 295397)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Aaron Griffin 
-
-pkgname=goffice
-pkgver=0.10.33
-pkgrel=1
-pkgdesc="A GLib/GTK+ set of document-centric objects and charting library"
-url="https://git.gnome.org/browse/goffice;
-arch=(i686 x86_64)
-license=(GPL)
-depends=(librsvg gtk3 libgsf libspectre libxslt lasem)
-makedepends=(intltool gtk-doc gobject-introspection autoconf-archive git)
-_commit=a3608ccb15b56799ce11b9e419c319c649c8fcae  # tags/GOFFICE_0_10_33^0
-source=("git+https://git.gnome.org/browse/goffice#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^GOFFICE_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static --enable-introspection 
--enable-gtk-doc
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="${pkgdir}" install
-}

Copied: goffice/repos/extra-x86_64/PKGBUILD (from rev 295396, 
goffice/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-05-06 22:06:30 UTC (rev 295397)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# 

[arch-commits] Commit in (xorg-server-utils)

2017-05-06 Thread Jan de Groot
Date: Saturday, May 6, 2017 @ 21:52:05
  Author: jgc
Revision: 295394

Remove dummy package

Deleted:
  xorg-server-utils/


[arch-commits] Commit in (xorg-utils)

2017-05-06 Thread Jan de Groot
Date: Saturday, May 6, 2017 @ 21:50:48
  Author: jgc
Revision: 295392

Remove dummy package

Deleted:
  xorg-utils/


[arch-commits] Commit in gtk-recordmydesktop/repos/community-any (PKGBUILD PKGBUILD)

2017-05-06 Thread Jan de Groot
Date: Saturday, May 6, 2017 @ 21:47:49
  Author: jgc
Revision: 227228

archrelease: copy trunk to community-any

Added:
  gtk-recordmydesktop/repos/community-any/PKGBUILD
(from rev 227227, gtk-recordmydesktop/trunk/PKGBUILD)
Deleted:
  gtk-recordmydesktop/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-06 21:47:45 UTC (rev 227227)
+++ PKGBUILD2017-05-06 21:47:49 UTC (rev 227228)
@@ -1,28 +0,0 @@
-# $Id$
-# Contributor: Allan McRae 
-# Contributor: Giovanni Scafora 
-# Maintainer: Daniel J Griffiths 
-
-pkgname=gtk-recordmydesktop
-pkgver=0.3.8
-pkgrel=7
-pkgdesc="A pygtk frontend for recordmydesktop"
-arch=('any')
-url="http://recordmydesktop.sourceforge.net;
-license=('GPL')
-depends=('pygtk>=2.10' 'recordmydesktop>=0.3.8.1' 'xorg-utils' 'python2')
-#makedepends=('pkgconfig')
-source=(http://downloads.sourceforge.net/sourceforge/recordmydesktop/${pkgname}-${pkgver}.tar.gz)
-md5sums=('2637b9be9801e0b2c3b6dae8f86a8b59')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  sed -i 's#/usr/bin/python#/usr/bin/python2#' 
$pkgdir/usr/bin/gtk-recordMyDesktop
-}

Copied: gtk-recordmydesktop/repos/community-any/PKGBUILD (from rev 227227, 
gtk-recordmydesktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-06 21:47:49 UTC (rev 227228)
@@ -0,0 +1,27 @@
+# $Id$
+# Contributor: Allan McRae 
+# Contributor: Giovanni Scafora 
+# Maintainer: Daniel J Griffiths 
+
+pkgname=gtk-recordmydesktop
+pkgver=0.3.8
+pkgrel=8
+pkgdesc="A pygtk frontend for recordmydesktop"
+arch=('any')
+url="http://recordmydesktop.sourceforge.net;
+license=('GPL')
+depends=('pygtk>=2.10' 'recordmydesktop>=0.3.8.1' 'xorg-xwininfo' 'python2')
+source=(https://downloads.sourceforge.net/sourceforge/recordmydesktop/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('61ad43a6e4f0bf86d8553f03297e4b1b137b47337fa150ce1da8c24494ca8326')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  sed -i 's#/usr/bin/python#/usr/bin/python2#' 
$pkgdir/usr/bin/gtk-recordMyDesktop
+}


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

2017-05-06 Thread Jan de Groot
Date: Saturday, May 6, 2017 @ 21:47:45
  Author: jgc
Revision: 227227

upgpkg: gtk-recordmydesktop 0.3.8-8

Depend on xorg-xwininfo instead of xorg-utils

Modified:
  gtk-recordmydesktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 21:07:56 UTC (rev 227226)
+++ PKGBUILD2017-05-06 21:47:45 UTC (rev 227227)
@@ -5,14 +5,14 @@
 
 pkgname=gtk-recordmydesktop
 pkgver=0.3.8
-pkgrel=7
+pkgrel=8
 pkgdesc="A pygtk frontend for recordmydesktop"
 arch=('any')
 url="http://recordmydesktop.sourceforge.net;
 license=('GPL')
-depends=('pygtk>=2.10' 'recordmydesktop>=0.3.8.1' 'xorg-utils' 'python2')
-source=(http://downloads.sourceforge.net/sourceforge/recordmydesktop/${pkgname}-${pkgver}.tar.gz)
-md5sums=('2637b9be9801e0b2c3b6dae8f86a8b59')
+depends=('pygtk>=2.10' 'recordmydesktop>=0.3.8.1' 'xorg-xwininfo' 'python2')
+source=(https://downloads.sourceforge.net/sourceforge/recordmydesktop/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('61ad43a6e4f0bf86d8553f03297e4b1b137b47337fa150ce1da8c24494ca8326')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}


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

2017-05-06 Thread Jan Steffens
Date: Saturday, May 6, 2017 @ 21:07:56
  Author: heftig
Revision: 227226

archrelease: copy trunk to community-x86_64

Added:
  rubinius/repos/community-x86_64/PKGBUILD
(from rev 227225, rubinius/trunk/PKGBUILD)
  rubinius/repos/community-x86_64/dirs.patch
(from rev 227225, rubinius/trunk/dirs.patch)
  rubinius/repos/community-x86_64/gemrc
(from rev 227225, rubinius/trunk/gemrc)
Deleted:
  rubinius/repos/community-x86_64/PKGBUILD
  rubinius/repos/community-x86_64/dirs.patch
  rubinius/repos/community-x86_64/gemrc

+
 PKGBUILD   |  174 +--
 dirs.patch |   42 +++---
 gemrc  |   10 +--
 3 files changed, 113 insertions(+), 113 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-06 21:06:42 UTC (rev 227225)
+++ PKGBUILD2017-05-06 21:07:56 UTC (rev 227226)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgbase=rubinius
-pkgname=(rubinius rubinius-ruby)
-pkgver=3.75
-pkgrel=1
-pkgdesc="Ruby runtime written in Ruby, designed for concurrency"
-arch=(x86_64)
-url="http://rubinius.com;
-license=(custom)
-depends=(libffi openssl-1.0 libyaml)
-makedepends=(llvm ruby clang valgrind)
-options=(!emptydirs)
-source=(http://releases.rubinius.com/${pkgbase}-${pkgver}.tar.bz2
-gemrc dirs.patch)
-sha256sums=('04cd1bc8fa021d569aac38cf98aeeb97f8324815f82d7ea1a0c963898c79e137'
-'4bb7eb2fe66e396ed16b589cdb656831407b39ad4e138d88536754c0448ac614'
-'1bfb4d590d35f01b3ee344cec8f961558f08847b3db54e5f56a4a20a22a898ec')
-
-_common() {
-  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
-  export GEM_HOME="$srcdir/gemdir" LANG="en_US.UTF-8" TMPDIR="$srcdir"
-  cd $pkgbase-$pkgver
-}
-
-prepare() {
-  _common
-
-  patch -Np1 -i ../dirs.patch
-
-  mkdir -p "$GEM_HOME"
-  gem install --no-user-install -N vendor/cache/bundler-*.gem
-
-  "$GEM_HOME/bin/bundle" install --local
-}
-
-build() {
-  _common
-  ./configure --prefix=/usr \
---mandir=/usr/share/man \
---includedir=/usr/include/rubinius \
---appdir=/usr/lib/rubinius \
---gemsdir=/usr/lib/rubinius/gems \
---preserve-prefix \
---without-rpath \
---bin-link bundle --bin-link bundler
-  "$GEM_HOME/bin/bundle" exec rake build
-}
-
-check() {
-  _common
-  rake vm:test || :
-}
-
-package_rubinius() {
-  optdepends=('ruby-docs: Ruby documentation')
-
-  _common
-
-  DESTDIR="$pkgdir" "$GEM_HOME/bin/bundle" exec rake install
-
-  mkdir -p "$pkgdir/usr/share/ri"
-  ln -s 2.4.0 "$pkgdir/usr/share/ri/2.3"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/rubinius/LICENSE"
-
-### Split rubinius-ruby
-  mkdir -p "$srcdir/ruby/usr/bin"
-  for _f in "$pkgdir"/usr/bin/*; do
-[[ $_f == */rbx ]] && continue
-mv $_f "$srcdir/ruby/usr/bin"
-  done
-}
-
-package_rubinius-ruby() {
-  pkgdesc="Ruby compat for Rubinius"
-  depends=("rubinius=$pkgver-$pkgrel")
-  provides=(ruby)
-  conflicts=(ruby)
-  backup=(etc/gemrc)
-
-  mv ruby/* "$pkgdir"
-  install -Dm644 gemrc "$pkgdir/etc/gemrc"
-  install -d "$pkgdir/usr/share/licenses/rubinius-ruby"
-  ln -s ../rubinius/LICENSE "$pkgdir/usr/share/licenses/rubinius-ruby/LICENSE"
-}

Copied: rubinius/repos/community-x86_64/PKGBUILD (from rev 227225, 
rubinius/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-06 21:07:56 UTC (rev 227226)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgbase=rubinius
+pkgname=(rubinius rubinius-ruby)
+pkgver=3.76
+pkgrel=1
+pkgdesc="Ruby runtime written in Ruby, designed for concurrency"
+arch=(x86_64)
+url="http://rubinius.com;
+license=(custom)
+depends=(libffi openssl-1.0 libyaml)
+makedepends=(llvm ruby clang valgrind)
+options=(!emptydirs)
+source=(http://releases.rubinius.com/${pkgbase}-${pkgver}.tar.bz2
+gemrc dirs.patch)
+sha256sums=('1606d229ea611f3c271f0b579c839cea6a1b4b07ddea7b0c4d2d794146781589'
+'4bb7eb2fe66e396ed16b589cdb656831407b39ad4e138d88536754c0448ac614'
+'1bfb4d590d35f01b3ee344cec8f961558f08847b3db54e5f56a4a20a22a898ec')
+
+_common() {
+  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
+  export GEM_HOME="$srcdir/gemdir" LANG="en_US.UTF-8" TMPDIR="$srcdir"
+  cd $pkgbase-$pkgver
+}
+
+prepare() {
+  _common
+
+  patch -Np1 -i ../dirs.patch
+
+  mkdir -p "$GEM_HOME"
+  gem install --no-user-install -N vendor/cache/bundler-*.gem
+
+  "$GEM_HOME/bin/bundle" install --local
+}
+
+build() {
+  _common
+  ./configure --prefix=/usr \
+--mandir=/usr/share/man \
+--includedir=/usr/include/rubinius \
+--appdir=/usr/lib/rubinius \
+--gemsdir=/usr/lib/rubinius/gems \
+--preserve-prefix \
+--without-rpath \
+--bin-link bundle --bin-link bundler
+  "$GEM_HOME/bin/bundle" exec rake build
+}
+
+check() {
+  

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

2017-05-06 Thread Jan Steffens
Date: Saturday, May 6, 2017 @ 21:06:42
  Author: heftig
Revision: 227225

3.76-1

Modified:
  rubinius/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 18:39:56 UTC (rev 227224)
+++ PKGBUILD2017-05-06 21:06:42 UTC (rev 227225)
@@ -3,7 +3,7 @@
 
 pkgbase=rubinius
 pkgname=(rubinius rubinius-ruby)
-pkgver=3.75
+pkgver=3.76
 pkgrel=1
 pkgdesc="Ruby runtime written in Ruby, designed for concurrency"
 arch=(x86_64)
@@ -14,7 +14,7 @@
 options=(!emptydirs)
 source=(http://releases.rubinius.com/${pkgbase}-${pkgver}.tar.bz2
 gemrc dirs.patch)
-sha256sums=('04cd1bc8fa021d569aac38cf98aeeb97f8324815f82d7ea1a0c963898c79e137'
+sha256sums=('1606d229ea611f3c271f0b579c839cea6a1b4b07ddea7b0c4d2d794146781589'
 '4bb7eb2fe66e396ed16b589cdb656831407b39ad4e138d88536754c0448ac614'
 '1bfb4d590d35f01b3ee344cec8f961558f08847b3db54e5f56a4a20a22a898ec')
 


[arch-commits] Commit in firefox/repos (22 files)

2017-05-06 Thread Jan Steffens
Date: Saturday, May 6, 2017 @ 20:23:32
  Author: heftig
Revision: 295390

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

Added:
  
firefox/repos/extra-i686/0001-Bug-1338655-Don-t-try-to-build-mp4parse-bindings.-r-.patch
(from rev 295389, 
firefox/trunk/0001-Bug-1338655-Don-t-try-to-build-mp4parse-bindings.-r-.patch)
  firefox/repos/extra-i686/PKGBUILD
(from rev 295389, firefox/trunk/PKGBUILD)
  firefox/repos/extra-i686/firefox-install-dir.patch
(from rev 295389, firefox/trunk/firefox-install-dir.patch)
  firefox/repos/extra-i686/firefox-symbolic.svg
(from rev 295389, firefox/trunk/firefox-symbolic.svg)
  firefox/repos/extra-i686/firefox.desktop
(from rev 295389, firefox/trunk/firefox.desktop)
  firefox/repos/extra-i686/fix-wifi-scanner.diff
(from rev 295389, firefox/trunk/fix-wifi-scanner.diff)
  
firefox/repos/extra-x86_64/0001-Bug-1338655-Don-t-try-to-build-mp4parse-bindings.-r-.patch
(from rev 295389, 
firefox/trunk/0001-Bug-1338655-Don-t-try-to-build-mp4parse-bindings.-r-.patch)
  firefox/repos/extra-x86_64/PKGBUILD
(from rev 295389, firefox/trunk/PKGBUILD)
  firefox/repos/extra-x86_64/firefox-install-dir.patch
(from rev 295389, firefox/trunk/firefox-install-dir.patch)
  firefox/repos/extra-x86_64/firefox-symbolic.svg
(from rev 295389, firefox/trunk/firefox-symbolic.svg)
  firefox/repos/extra-x86_64/firefox.desktop
(from rev 295389, firefox/trunk/firefox.desktop)
  firefox/repos/extra-x86_64/fix-wifi-scanner.diff
(from rev 295389, firefox/trunk/fix-wifi-scanner.diff)
Deleted:
  firefox/repos/extra-i686/PKGBUILD
  firefox/repos/extra-i686/firefox-install-dir.patch
  firefox/repos/extra-i686/firefox-symbolic.svg
  firefox/repos/extra-i686/firefox.desktop
  firefox/repos/extra-i686/fix-wifi-scanner.diff
  firefox/repos/extra-x86_64/PKGBUILD
  firefox/repos/extra-x86_64/firefox-install-dir.patch
  firefox/repos/extra-x86_64/firefox-symbolic.svg
  firefox/repos/extra-x86_64/firefox.desktop
  firefox/repos/extra-x86_64/fix-wifi-scanner.diff

--+
 /PKGBUILD| 
 380 ++
 /firefox-install-dir.patch   | 
  24 
 /firefox-symbolic.svg| 
  60 
 /firefox.desktop | 
 620 ++
 /fix-wifi-scanner.diff   | 
  32 
 extra-i686/0001-Bug-1338655-Don-t-try-to-build-mp4parse-bindings.-r-.patch   | 
  48 
 extra-i686/PKGBUILD  | 
 185 --
 extra-i686/firefox-install-dir.patch | 
  12 
 extra-i686/firefox-symbolic.svg  | 
  30 
 extra-i686/firefox.desktop   | 
 310 -
 extra-i686/fix-wifi-scanner.diff | 
  16 
 extra-x86_64/0001-Bug-1338655-Don-t-try-to-build-mp4parse-bindings.-r-.patch | 
  48 
 extra-x86_64/PKGBUILD| 
 185 --
 extra-x86_64/firefox-install-dir.patch   | 
  12 
 extra-x86_64/firefox-symbolic.svg| 
  30 
 extra-x86_64/firefox.desktop | 
 310 -
 extra-x86_64/fix-wifi-scanner.diff   | 
  16 
 17 files changed, 1212 insertions(+), 1106 deletions(-)

Copied: 
firefox/repos/extra-i686/0001-Bug-1338655-Don-t-try-to-build-mp4parse-bindings.-r-.patch
 (from rev 295389, 
firefox/trunk/0001-Bug-1338655-Don-t-try-to-build-mp4parse-bindings.-r-.patch)
===
--- extra-i686/0001-Bug-1338655-Don-t-try-to-build-mp4parse-bindings.-r-.patch  
(rev 0)
+++ extra-i686/0001-Bug-1338655-Don-t-try-to-build-mp4parse-bindings.-r-.patch  
2017-05-06 20:23:32 UTC (rev 295390)
@@ -0,0 +1,48 @@
+From bbd48a5613c872883616884cfaf41665b0e4ec9b Mon Sep 17 00:00:00 2001
+From: Ralph Giles 
+Date: Fri, 10 Feb 2017 12:58:18 -0800
+Subject: [PATCH] Bug 1338655 - Don't try to build mp4parse bindings. r=froydnj
+
+We use the cheddar crate to generate a C header file
+for our mp4parse_capi wrapper crate. Currently we
+do this at code check-in time via update-rust.sh.
+
+Cargo 0.18 and later will try to execute a build.rs
+file in the crate source tree regardless of whether
+it's specified in Cargo.toml so patching out that
+line just results in 'crate cheddar not found'.
+
+This change restores the old behaviour by substituting
+a 'build = false' line instead.
+
+We do have syntex vendored, but we don't currently build
+it by default, so I prefer this solution to just vendoring

[arch-commits] Commit in firefox-i18n/repos/extra-any (PKGBUILD PKGBUILD)

2017-05-06 Thread Jan Steffens
Date: Saturday, May 6, 2017 @ 20:22:51
  Author: heftig
Revision: 295389

archrelease: copy trunk to extra-any

Added:
  firefox-i18n/repos/extra-any/PKGBUILD
(from rev 295388, firefox-i18n/trunk/PKGBUILD)
Deleted:
  firefox-i18n/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  444 ++---
 1 file changed, 222 insertions(+), 222 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-06 20:17:28 UTC (rev 295388)
+++ PKGBUILD2017-05-06 20:22:51 UTC (rev 295389)
@@ -1,222 +0,0 @@
-# $Id$
-# Maintainer: Thomas Baechler 
-# Contributor: Jaroslaw Swierczynski 
-# Contributor: Michal Hybner 
-# Contributor: Andrea Scarpino 
-
-pkgbase=firefox-i18n
-pkgver=53.0
-pkgrel=1
-pkgdesc="Language pack for Firefox"
-arch=('any')
-url="http://www.mozilla.com/;
-license=('MPL' 'GPL')
-
-_languages=(
-  'ach"Acholi"'
-  'af "Afrikaans"'
-  'an "Aragonese"'
-  'ar "Arabic"'
-  'as "Assamese"'
-  'ast"Asturian"'
-  'az "Azerbaijani"'
-  'bg "Bulgarian"'
-  'bn-BD  "Bengali (Bangladesh)"'
-  'bn-IN  "Bengali (India)"'
-  'br "Breton"'
-  'bs "Bosnian"'
-  'ca "Catalan"'
-  'cak"Maya Kaqchikel"'
-  'cs "Czech"'
-  'cy "Welsh"'
-  'da "Danish"'
-  'de "German"'
-  'dsb"Lower Sorbian"'
-  'el "Greek"'
-  'en-GB  "English (British)"'
-  'en-US  "English (US)"'
-  'en-ZA  "English (South African)"'
-  'eo "Esperanto"'
-  'es-AR  "Spanish (Argentina)"'
-  'es-CL  "Spanish (Chile)"'
-  'es-ES  "Spanish (Spain)"'
-  'es-MX  "Spanish (Mexico)"'
-  'et "Estonian"'
-  'eu "Basque"'
-  'fa "Persian"'
-  'ff "Fulah"'
-  'fi "Finnish"'
-  'fr "French"'
-  'fy-NL  "Frisian"'
-  'ga-IE  "Irish"'
-  'gd "Gaelic (Scotland)"'
-  'gl "Galician"'
-  'gn "Guarani"'
-  'gu-IN  "Gujarati (India)"'
-  'he "Hebrew"'
-  'hi-IN  "Hindi (India)"'
-  'hr "Croatian"'
-  'hsb"Upper Sorbian"'
-  'hu "Hungarian"'
-  'hy-AM  "Armenian"'
-  'id "Indonesian"'
-  'is "Icelandic"'
-  'it "Italian"'
-  'ja "Japanese"'
-  'kk "Kazakh"'
-  'km "Khmer"'
-  'kn "Kannada"'
-  'ko "Korean"'
-  'lij"Ligurian"'
-  'lt "Lithuanian"'
-  'lv "Latvian"'
-  'mai"Maithili"'
-  'mk "Macedonian"'
-  'ml "Malayalam"'
-  'mr "Marathi"'
-  'ms "Malay"'
-  'nb-NO  "Norwegian (Bokmål)"'
-  'nl "Dutch"'
-  'nn-NO  "Norwegian (Nynorsk)"'
-  'or "Oriya"'
-  'pa-IN  "Punjabi (India)"'
-  'pl "Polish"'
-  'pt-BR  "Portuguese (Brazilian)"'
-  'pt-PT  "Portuguese (Portugal)"'
-  'rm "Romansh"'
-  'ro "Romanian"'
-  'ru "Russian"'
-  'si "Sinhala"'
-  'sk "Slovak"'
-  'sl "Slovenian"'
-  'son"Songhai"'
-  'sq "Albanian"'
-  'sr "Serbian"'
-  'sv-SE  "Swedish"'
-  'ta "Tamil"'
-  'te "Telugu"'
-  'th "Thai"'
-  'tr "Turkish"'
-  'uk "Ukrainian"'
-  'uz "Uzbek"'
-  'vi "Vietnamese"'
-  'xh "Xhosa"'
-  'zh-CN  "Chinese (Simplified)"'
-  'zh-TW  "Chinese (Traditional)"'
-)
-
-pkgname=()
-source=()
-_url=https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$pkgver/linux-i686/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=firefox-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  source+=("firefox-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
-  eval "package_$_pkgname() {
-_package $_lang
-  }"
-done
-
-# Don't extract anything
-noextract=(${source[@]%%::*})
-
-_package() {
-  pkgdesc="$2 language pack for Firefox"
-  depends=("firefox>=$pkgver")
-  install -Dm644 firefox-i18n-$pkgver-$1.xpi \
-
"$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
-}
-
-sha256sums=('6b50af6b457608c625b5a99c0f467e9e13827e84387223682c251847ef12ec03'
-'2e030e8d993a72fc2b922bd71749564706d5bbc4f5edd1d5cb0a2e2d341dd397'
-'3b049eabcf49f57742f574c792b0f15a2f0fe7af8d7700074555741eba4b40bd'
-'0df14612d4a6fe4e6da247b8529b45ab856d3a6d6bf284dac9654af2b4c91909'
-'67a780398046cfb66c7b10d8aa3e42a7b8eef5d8eedb2f7d890ab1a748049708'
-'0b0cab248642b295d3ec4fdb5206c4b4ab3ec1d8aa9cec573f230bd6fa75a816'
-'59ead0e267f43af93c7caa1148947224dc4206d42a37f80156ff47adae994261'
-'5ca6477997bd96165af804a2a8bcd6c01c8bfb5c9f98354e1602f49a922cf65b'
-'9f52c102c056489b2187f9d781a645f2c1d205b812a3ca6afdad56130c211c7f'
-'f913e5d79388285ae6a7e7f59b81855135336c50c37e3dd90cbd101057017600'
-'0bb79e4c792cd3bba0804064f91963389daba26a486cbf3fe84045ee6701ec07'
-'e4c803a77b70c0077c3f0fb467a601b5ff143a37ac8303dd97005b7aa3007864'
-'18483d647252cb2d6c9be0a2ec460de22cdecaa492b02d4a1ef3e5f9ded2aa59'
-

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

2017-05-06 Thread Jan Steffens
Date: Saturday, May 6, 2017 @ 20:17:28
  Author: heftig
Revision: 295388

53.0.2-1

Modified:
  firefox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 17:46:38 UTC (rev 295387)
+++ PKGBUILD2017-05-06 20:17:28 UTC (rev 295388)
@@ -4,8 +4,8 @@
 # Contributor: Jakub Schmidtke 
 
 pkgname=firefox
-pkgver=53.0
-pkgrel=2
+pkgver=53.0.2
+pkgrel=1
 pkgdesc="Standalone web browser from mozilla.org"
 arch=(i686 x86_64)
 license=(MPL GPL LGPL)


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

2017-05-06 Thread Jelle van der Waa
Date: Saturday, May 6, 2017 @ 18:39:56
  Author: jelle
Revision: 227224

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

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

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

Copied: curaengine/repos/community-staging-i686/PKGBUILD (from rev 227223, 
curaengine/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-06 18:39:56 UTC (rev 227224)
@@ -0,0 +1,34 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Grey Christoforo 
+
+pkgname=curaengine
+pkgver=2.5.0
+pkgrel=1
+pkgdesc="Fast and robust engine for processing 3D models into 3D printing 
instruction for Ultimaker and other GCode based 3D printers."
+url="https://github.com/Ultimaker/CuraEngine;
+arch=('x86_64' 'i686')
+license=('AGPL')
+depends=('arcus')
+makedepends=('cmake')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz;)
+md5sums=('8d8de8f56fd5831b3b74e8946a26681e')
+
+
+build() {
+  cd CuraEngine-${pkgver}
+  mkdir -p build
+  cd build
+
+   cmake .. \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_BUILD_TYPE=Release
+
+  make
+}
+
+package() {
+  cd CuraEngine-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: curaengine/repos/community-staging-x86_64/PKGBUILD (from rev 227223, 
curaengine/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-06 18:39:56 UTC (rev 227224)
@@ -0,0 +1,34 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Grey Christoforo 
+
+pkgname=curaengine
+pkgver=2.5.0
+pkgrel=1
+pkgdesc="Fast and robust engine for processing 3D models into 3D printing 
instruction for Ultimaker and other GCode based 3D printers."
+url="https://github.com/Ultimaker/CuraEngine;
+arch=('x86_64' 'i686')
+license=('AGPL')
+depends=('arcus')
+makedepends=('cmake')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz;)
+md5sums=('8d8de8f56fd5831b3b74e8946a26681e')
+
+
+build() {
+  cd CuraEngine-${pkgver}
+  mkdir -p build
+  cd build
+
+   cmake .. \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_BUILD_TYPE=Release
+
+  make
+}
+
+package() {
+  cd CuraEngine-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-05-06 Thread Jelle van der Waa
Date: Saturday, May 6, 2017 @ 18:36:54
  Author: jelle
Revision: 227223

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

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

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

Copied: arcus/repos/community-staging-i686/PKGBUILD (from rev 227222, 
arcus/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-06 18:36:54 UTC (rev 227223)
@@ -0,0 +1,37 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Grey Christoforo 
+
+pkgname=arcus
+pkgver=2.5.0
+pkgrel=2
+pkgdesc="Communication library between internal components for Ultimaker 
software"
+url="https://github.com/Ultimaker/libArcus;
+arch=('x86_64' 'i686')
+license=('AGPL')
+makedepends=('cmake')
+depends=('python' 'protobuf' 'python-sip')
+source=(https://github.com/Ultimaker/libArcus/archive/${pkgver}.tar.gz)
+md5sums=('a8f83c896793262967971b7a94fe3082')
+
+build() {
+  cd libArcus-${pkgver}
+  mkdir -p build
+  cd build
+  
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DBUILD_EXAMPLES=OFF  \
+  -DCMAKE_INSTALL_LIBDIR=/usr/lib/
+
+  make
+}
+
+package() {
+  cd libArcus-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 "${srcdir}/libArcus-${pkgver}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: arcus/repos/community-staging-x86_64/PKGBUILD (from rev 227222, 
arcus/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-06 18:36:54 UTC (rev 227223)
@@ -0,0 +1,37 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Grey Christoforo 
+
+pkgname=arcus
+pkgver=2.5.0
+pkgrel=2
+pkgdesc="Communication library between internal components for Ultimaker 
software"
+url="https://github.com/Ultimaker/libArcus;
+arch=('x86_64' 'i686')
+license=('AGPL')
+makedepends=('cmake')
+depends=('python' 'protobuf' 'python-sip')
+source=(https://github.com/Ultimaker/libArcus/archive/${pkgver}.tar.gz)
+md5sums=('a8f83c896793262967971b7a94fe3082')
+
+build() {
+  cd libArcus-${pkgver}
+  mkdir -p build
+  cd build
+  
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DBUILD_EXAMPLES=OFF  \
+  -DCMAKE_INSTALL_LIBDIR=/usr/lib/
+
+  make
+}
+
+package() {
+  cd libArcus-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 "${srcdir}/libArcus-${pkgver}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-05-06 Thread Jelle van der Waa
Date: Saturday, May 6, 2017 @ 18:36:44
  Author: jelle
Revision: 227222

upgpkg: arcus 2.5.0-2

protobuf 3.3.0 rebuild

Modified:
  arcus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 18:36:09 UTC (rev 227221)
+++ PKGBUILD2017-05-06 18:36:44 UTC (rev 227222)
@@ -3,7 +3,7 @@
 
 pkgname=arcus
 pkgver=2.5.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Communication library between internal components for Ultimaker 
software"
 url="https://github.com/Ultimaker/libArcus;
 arch=('x86_64' 'i686')


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

2017-05-06 Thread Christian Hesse
Date: Saturday, May 6, 2017 @ 18:35:58
  Author: eworm
Revision: 227220

upgpkg: mpv 1:0.25.0-2

* enable libarchive support
* enable dvdnav support (FS#53915)

Modified:
  mpv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 18:32:37 UTC (rev 227219)
+++ PKGBUILD2017-05-06 18:35:58 UTC (rev 227220)
@@ -6,7 +6,7 @@
 pkgname=mpv
 epoch=1
 pkgver=0.25.0
-pkgrel=1
+pkgrel=2
 _waf_version=1.8.12
 pkgdesc='a free, open source, and cross-platform media player'
 arch=('i686' 'x86_64')
@@ -37,7 +37,9 @@
 
   ./waf configure --prefix=/usr \
 --confdir=/etc/mpv \
+--enable-libarchive \
 --enable-cdda \
+--enable-dvdnav \
 --enable-encoding \
 --enable-libmpv-shared \
 --enable-zsh-comp


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

2017-05-06 Thread Christian Hesse
Date: Saturday, May 6, 2017 @ 18:36:09
  Author: eworm
Revision: 227221

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

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

---+
 /PKGBUILD |  114 
 community-i686/PKGBUILD   |   55 -
 community-x86_64/PKGBUILD |   55 -
 3 files changed, 114 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-06 18:35:58 UTC (rev 227220)
+++ community-i686/PKGBUILD 2017-05-06 18:36:09 UTC (rev 227221)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Eivind Uggedal 
-
-pkgname=mpv
-epoch=1
-pkgver=0.25.0
-pkgrel=1
-_waf_version=1.8.12
-pkgdesc='a free, open source, and cross-platform media player'
-arch=('i686' 'x86_64')
-license=('GPL')
-url='http://mpv.io'
-depends=(
-  'ffmpeg' 'lcms2' 'libcdio-paranoia' 'libgl' 'libxss'
-  'libxinerama' 'libxv' 'libxkbcommon' 'libva' 'wayland' 'libcaca'
-  'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils' 'lua52' 'libdvdnav'
-  'libxrandr' 'jack' 'smbclient' 'rubberband' 'uchardet'
-)
-makedepends=('mesa' 'python-docutils' 'ladspa' 'hardening-wrapper')
-optdepends=('youtube-dl: for video-sharing websites playback')
-options=('!emptydirs' '!buildflags')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/mpv-player/$pkgname/archive/v$pkgver.tar.gz;
-  "http://www.freehackers.org/~tnagy/release/waf-${_waf_version};)
-sha256sums=('07423ffad6921ec4da32f703cd7fbfb27012301dcb736ac8542ac8e6083b0bce'
-  '01bf2beab2106d1558800c8709bc2c8e496d3da4a2ca343fe091f22fca60c98b')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-  install -m755 "${srcdir}"/waf-${_waf_version} waf
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  ./waf configure --prefix=/usr \
---confdir=/etc/mpv \
---enable-cdda \
---enable-encoding \
---enable-libmpv-shared \
---enable-zsh-comp
-
-  ./waf build
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  ./waf install --destdir="$pkgdir"
-
-  install -m644 DOCS/{encoding.rst,tech-overview.txt} \
-"$pkgdir"/usr/share/doc/mpv
-}

Copied: mpv/repos/community-i686/PKGBUILD (from rev 227220, mpv/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-06 18:36:09 UTC (rev 227221)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Eivind Uggedal 
+
+pkgname=mpv
+epoch=1
+pkgver=0.25.0
+pkgrel=2
+_waf_version=1.8.12
+pkgdesc='a free, open source, and cross-platform media player'
+arch=('i686' 'x86_64')
+license=('GPL')
+url='http://mpv.io'
+depends=(
+  'ffmpeg' 'lcms2' 'libcdio-paranoia' 'libgl' 'libxss'
+  'libxinerama' 'libxv' 'libxkbcommon' 'libva' 'wayland' 'libcaca'
+  'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils' 'lua52' 'libdvdnav'
+  'libxrandr' 'jack' 'smbclient' 'rubberband' 'uchardet'
+)
+makedepends=('mesa' 'python-docutils' 'ladspa' 'hardening-wrapper')
+optdepends=('youtube-dl: for video-sharing websites playback')
+options=('!emptydirs' '!buildflags')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/mpv-player/$pkgname/archive/v$pkgver.tar.gz;
+  "http://www.freehackers.org/~tnagy/release/waf-${_waf_version};)
+sha256sums=('07423ffad6921ec4da32f703cd7fbfb27012301dcb736ac8542ac8e6083b0bce'
+  '01bf2beab2106d1558800c8709bc2c8e496d3da4a2ca343fe091f22fca60c98b')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+
+  install -m755 "${srcdir}"/waf-${_waf_version} waf
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./waf configure --prefix=/usr \
+--confdir=/etc/mpv \
+--enable-libarchive \
+--enable-cdda \
+--enable-dvdnav \
+--enable-encoding \
+--enable-libmpv-shared \
+--enable-zsh-comp
+
+  ./waf build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  ./waf install --destdir="$pkgdir"
+
+  install -m644 DOCS/{encoding.rst,tech-overview.txt} \
+"$pkgdir"/usr/share/doc/mpv
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-05-06 18:35:58 UTC (rev 227220)
+++ community-x86_64/PKGBUILD   2017-05-06 18:36:09 UTC (rev 227221)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Eivind Uggedal 
-
-pkgname=mpv
-epoch=1
-pkgver=0.25.0

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

2017-05-06 Thread Jelle van der Waa
Date: Saturday, May 6, 2017 @ 18:32:37
  Author: jelle
Revision: 227219

archrelease: copy trunk to community-any

Added:
  uranium/repos/community-any/PKGBUILD
(from rev 227218, uranium/trunk/PKGBUILD)
Deleted:
  uranium/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-06 17:40:50 UTC (rev 227218)
+++ PKGBUILD2017-05-06 18:32:37 UTC (rev 227219)
@@ -1,37 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Grey Christoforo 
-
-pkgname=uranium
-pkgver=2.4.0
-pkgrel=3
-pkgdesc="A Python framework for building Desktop applications."
-url="https://github.com/Ultimaker/Uranium;
-arch=('any')
-license=('AGPL')
-depends=('python' 'qt5-quickcontrols' 'pyqt5-common' 'python-pyqt5' 
'python-numpy' 'arcus')
-makedepends=('cmake')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz;)
-sha256sums=('21018ef06673b5b76f516b82398040d10f96c135294e1085d6d2ef667256d011')
-
-prepare() {
-  cd Uranium-${pkgver}
-  sed -i 's,DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}/dist-packages,DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages,g' 
CMakeLists.txt
-  sed -i 's,DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}/dist-packages/cura),DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages/cura),g'
 CMakeLists.txt
-}
-
-build() {
-  cd Uranium-${pkgver}
-  mkdir -p build && cd build
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd Uranium-${pkgver}/build
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: uranium/repos/community-any/PKGBUILD (from rev 227218, 
uranium/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-06 18:32:37 UTC (rev 227219)
@@ -0,0 +1,37 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Grey Christoforo 
+
+pkgname=uranium
+pkgver=2.5.0
+pkgrel=1
+pkgdesc="A Python framework for building Desktop applications."
+url="https://github.com/Ultimaker/Uranium;
+arch=('any')
+license=('AGPL')
+depends=('python' 'qt5-quickcontrols' 'pyqt5-common' 'python-pyqt5' 
'python-numpy' 'arcus')
+makedepends=('cmake')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz;)
+sha256sums=('7392dd58b68b128d8ad95970b175cdcec2796cfff4ea9e2dedf4d14cf5f36a3d')
+
+prepare() {
+  cd Uranium-${pkgver}
+  sed -i 's,DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}/dist-packages,DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages,g' 
CMakeLists.txt
+  sed -i 's,DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}/dist-packages/cura),DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages/cura),g'
 CMakeLists.txt
+}
+
+build() {
+  cd Uranium-${pkgver}
+  mkdir -p build && cd build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd Uranium-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-05-06 Thread Antonio Rojas
Date: Saturday, May 6, 2017 @ 17:46:38
  Author: arojas
Revision: 295387

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

Added:
  qt5-webengine/repos/staging-i686/
  qt5-webengine/repos/staging-i686/PKGBUILD
(from rev 295386, qt5-webengine/trunk/PKGBUILD)
  qt5-webengine/repos/staging-i686/qt5-webengine-nss.patch
(from rev 295386, qt5-webengine/trunk/qt5-webengine-nss.patch)
  qt5-webengine/repos/staging-i686/qtwebengine-5.7.0-icu58.patch
(from rev 295386, qt5-webengine/trunk/qtwebengine-5.7.0-icu58.patch)
  qt5-webengine/repos/staging-x86_64/
  qt5-webengine/repos/staging-x86_64/PKGBUILD
(from rev 295386, qt5-webengine/trunk/PKGBUILD)
  qt5-webengine/repos/staging-x86_64/qt5-webengine-nss.patch
(from rev 295386, qt5-webengine/trunk/qt5-webengine-nss.patch)
  qt5-webengine/repos/staging-x86_64/qtwebengine-5.7.0-icu58.patch
(from rev 295386, qt5-webengine/trunk/qtwebengine-5.7.0-icu58.patch)

--+
 staging-i686/PKGBUILD|   84 
 staging-i686/qt5-webengine-nss.patch |   31 +++
 staging-i686/qtwebengine-5.7.0-icu58.patch   |  105 +
 staging-x86_64/PKGBUILD  |   84 
 staging-x86_64/qt5-webengine-nss.patch   |   31 +++
 staging-x86_64/qtwebengine-5.7.0-icu58.patch |  105 +
 6 files changed, 440 insertions(+)

Copied: qt5-webengine/repos/staging-i686/PKGBUILD (from rev 295386, 
qt5-webengine/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-05-06 17:46:38 UTC (rev 295387)
@@ -0,0 +1,84 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-webengine
+_qtver=5.8.0
+pkgver=${_qtver/-/}
+pkgrel=9
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('LGPL3' 'LGPL2.1' 'BSD')
+pkgdesc='Provides support for web applications using the Chromium browser 
project'
+depends=('qt5-webchannel' 'qt5-location' 'libxcomposite' 'libxrandr' 
'pciutils' 'libxss' 'libvpx' 
+ 'libevent' 'libsrtp' 'snappy' 'nss' 'protobuf' 'libxslt' 'libxdamage' 
'minizip' 'ffmpeg')
+ # namcap note: libxdamage is needed for nvidia users
+makedepends=('python2' 'git' 'gperf' 'jsoncpp')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-opensource-src-${_qtver}"
+source=("http://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;
 qt5-webengine-nss.patch
+qtwebengine-5.7.0-icu58.patch
+
qtbug-58488.patch::"https://github.com/qt/qtwebengine/commit/7e7dd262.patch;
+
qtbug-58381.patch::"https://github.com/qt/qtwebengine/commit/8e147ed3.patch;
+
qtbug-58515.patch::"https://github.com/qt/qtwebengine/commit/a6c6665d.patch;
+
qtbug-58673.patch::"https://github.com/qt/qtwebengine/commit/90501711.patch;
+
qtbug-58362.patch::"https://github.com/qt/qtwebengine/commit/31374ba9.patch;
+
qtbug-57778.patch::"https://github.com/qt/qtwebengine/commit/5c2cbfcc.patch;)
+
+md5sums=('6e7fb2be161c6db4d988a4f5b329672f'
+ '2a1610b34204102938a24154a52e5571'
+ '9d225d1bf83ea45dbf6556d30d35fcb8'
+ '3762cbdbc6a752e4d876e048e5e16de6'
+ '951ac7549fff82f9d1d11e9bf50556ba'
+ 'd5da5608285ad764f37fe196f9afe5a1'
+ 'c7b5acd58319d23d769c19f42323e8ec'
+ '663f8454990de96fad4c8c78bcd6f819'
+ '849ab18980b0523405f0282c83b4a54c')
+
+prepare() {
+  mkdir -p build
+
+  # Hack to force using python2
+  mkdir -p bin
+  ln -s /usr/bin/python2 bin/python
+
+  # Fix opening some websites with recent NSS 
https://github.com/QupZilla/qupzilla/issues/1870 (KaOSx patch)
+  cd ${_pkgfqn}
+ # patch -p1 -i ../qt5-webengine-nss.patch
+
+  # Fix build with ICU 58 (gentoo)
+  #patch -p1 -i "$srcdir"/qtwebengine-5.7.0-icu58.patch
+
+  # Prevent drop-down popups form stealing focus 
https://bugreports.qt.io/browse/QTBUG-58488
+  patch -p1 -i ../qtbug-58488.patch
+
+  # Backport some focus fixes
+  patch -p1 -i ../qtbug-58381.patch
+  patch -p1 -i ../qtbug-58515.patch
+  patch -p1 -i ../qtbug-58673.patch 
+
+  # Fix IME support
+  patch -p1 -i ../qtbug-58362.patch
+
+  # Fix incorrectly overriding new and delete
+  patch -p1 -i ../qtbug-57778.patch
+}
+
+build() {
+  cd build
+
+  export PATH="$srcdir/bin:$PATH"
+  qmake CONFIG+="proprietary-codecs" WEBENGINE_CONFIG+="use_proprietary_codecs 
use_system_ffmpeg" ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -Dm644 "$srcdir"/${_pkgfqn}/src/3rdparty/chromium/LICENSE 

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

2017-05-06 Thread Antonio Rojas
Date: Saturday, May 6, 2017 @ 17:45:51
  Author: arojas
Revision: 295386

protobuf 3.3.0 rebuild

Modified:
  qt5-webengine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 16:57:24 UTC (rev 295385)
+++ PKGBUILD2017-05-06 17:45:51 UTC (rev 295386)
@@ -5,7 +5,7 @@
 pkgname=qt5-webengine
 _qtver=5.8.0
 pkgver=${_qtver/-/}
-pkgrel=8
+pkgrel=9
 arch=('i686' 'x86_64')
 url='http://qt-project.org/'
 license=('LGPL3' 'LGPL2.1' 'BSD')


[arch-commits] Commit in linux-hardened/repos/community-x86_64 (10 files)

2017-05-06 Thread Daniel Micay
Date: Saturday, May 6, 2017 @ 17:40:50
  Author: thestinger
Revision: 227218

archrelease: copy trunk to community-x86_64

Added:
  linux-hardened/repos/community-x86_64/90-linux.hook
(from rev 227217, linux-hardened/trunk/90-linux.hook)
  linux-hardened/repos/community-x86_64/PKGBUILD
(from rev 227217, linux-hardened/trunk/PKGBUILD)
  linux-hardened/repos/community-x86_64/config.x86_64
(from rev 227217, linux-hardened/trunk/config.x86_64)
  linux-hardened/repos/community-x86_64/linux.install
(from rev 227217, linux-hardened/trunk/linux.install)
  linux-hardened/repos/community-x86_64/linux.preset
(from rev 227217, linux-hardened/trunk/linux.preset)
Deleted:
  linux-hardened/repos/community-x86_64/90-linux.hook
  linux-hardened/repos/community-x86_64/PKGBUILD
  linux-hardened/repos/community-x86_64/config.x86_64
  linux-hardened/repos/community-x86_64/linux.install
  linux-hardened/repos/community-x86_64/linux.preset

---+
 90-linux.hook |   22 
 PKGBUILD  |  574 -
 config.x86_64 |16323 
 linux.install |   54 
 linux.preset  |   28 
 5 files changed, 8503 insertions(+), 8498 deletions(-)

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


[arch-commits] Commit in linux-hardened/trunk (PKGBUILD config.x86_64)

2017-05-06 Thread Daniel Micay
Date: Saturday, May 6, 2017 @ 17:39:59
  Author: thestinger
Revision: 227217

upgpkg: linux-hardened 4.11.c-1

Modified:
  linux-hardened/trunk/PKGBUILD
  linux-hardened/trunk/config.x86_64

---+
 PKGBUILD  |6 +++---
 config.x86_64 |2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 16:38:32 UTC (rev 227216)
+++ PKGBUILD2017-05-06 17:39:59 UTC (rev 227217)
@@ -6,7 +6,7 @@
 pkgbase=linux-hardened
 _srcname=linux-4.11
 _pkgver=4.11
-pkgver=$_pkgver.b
+pkgver=$_pkgver.c
 pkgrel=1
 arch=('x86_64')
 url="https://www.kernel.org/;
@@ -27,8 +27,8 @@
 
 sha256sums=('b67ecafd0a42b3383bf4d82f0850cbff92a7e72a215a6d02f42ddbafcf42a7d6'
 'SKIP'
-'2d3de28fecf706f2583e3d8820a269f22c4619020a4d955cbff4bcb96cdbc5b0'
-'a6b98446597bc92f0be396bad98ea7ed8a6914f7d0633ba47893b099003367f6'
+'602e0ede11096cd62ff209164482619cfbaf7f27d158d8b9c48965c0442310e1'
+'bce07be0fa0240a69532121f03597d945eac818b425316fb59033d34b4ad876d'
 '834bd254b56ab71d73f59b3221f056c72f559553c04718e350ab2a3e2991afe0'
 'ad6344badc91ad0630caacde83f7f9b97276f80d26a20619a87952be65492c65')
 validpgpkeys=(

Modified: config.x86_64
===
--- config.x86_64   2017-05-06 16:38:32 UTC (rev 227216)
+++ config.x86_64   2017-05-06 17:39:59 UTC (rev 227217)
@@ -174,7 +174,7 @@
 CONFIG_NAMESPACES=y
 CONFIG_UTS_NS=y
 CONFIG_IPC_NS=y
-# CONFIG_USER_NS is not set
+CONFIG_USER_NS=y
 CONFIG_PID_NS=y
 CONFIG_NET_NS=y
 CONFIG_SCHED_AUTOGROUP=y


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

2017-05-06 Thread Anatol Pomozov
Date: Saturday, May 6, 2017 @ 16:38:32
  Author: anatolik
Revision: 227216

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

Added:
  rethinkdb/repos/community-staging-i686/
  rethinkdb/repos/community-staging-i686/PKGBUILD
(from rev 227215, rethinkdb/trunk/PKGBUILD)
  rethinkdb/repos/community-staging-i686/rethinkdb-tmpfile.conf
(from rev 227215, rethinkdb/trunk/rethinkdb-tmpfile.conf)
  rethinkdb/repos/community-staging-i686/rethinkdb.install
(from rev 227215, rethinkdb/trunk/rethinkdb.install)
  rethinkdb/repos/community-staging-i686/rethinkdb.service
(from rev 227215, rethinkdb/trunk/rethinkdb.service)
  rethinkdb/repos/community-staging-i686/rethinkdb.sysusers
(from rev 227215, rethinkdb/trunk/rethinkdb.sysusers)
  rethinkdb/repos/community-staging-x86_64/
  rethinkdb/repos/community-staging-x86_64/PKGBUILD
(from rev 227215, rethinkdb/trunk/PKGBUILD)
  rethinkdb/repos/community-staging-x86_64/rethinkdb-tmpfile.conf
(from rev 227215, rethinkdb/trunk/rethinkdb-tmpfile.conf)
  rethinkdb/repos/community-staging-x86_64/rethinkdb.install
(from rev 227215, rethinkdb/trunk/rethinkdb.install)
  rethinkdb/repos/community-staging-x86_64/rethinkdb.service
(from rev 227215, rethinkdb/trunk/rethinkdb.service)
  rethinkdb/repos/community-staging-x86_64/rethinkdb.sysusers
(from rev 227215, rethinkdb/trunk/rethinkdb.sysusers)

-+
 community-staging-i686/PKGBUILD |   73 ++
 community-staging-i686/rethinkdb-tmpfile.conf   |1 
 community-staging-i686/rethinkdb.install|   15 
 community-staging-i686/rethinkdb.service|   12 +++
 community-staging-i686/rethinkdb.sysusers   |1 
 community-staging-x86_64/PKGBUILD   |   73 ++
 community-staging-x86_64/rethinkdb-tmpfile.conf |1 
 community-staging-x86_64/rethinkdb.install  |   15 
 community-staging-x86_64/rethinkdb.service  |   12 +++
 community-staging-x86_64/rethinkdb.sysusers |1 
 10 files changed, 204 insertions(+)

Copied: rethinkdb/repos/community-staging-i686/PKGBUILD (from rev 227215, 
rethinkdb/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-06 16:38:32 UTC (rev 227216)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: Massimiliano Torromeo 
+# Contributor: Sigmund Lahn 
+
+pkgname=rethinkdb
+pkgver=2.3.5
+_tag=rethinkdb-$pkgver
+pkgrel=7
+pkgdesc='Distributed powerful and scalable NoSQL database'
+arch=(i686 x86_64)
+url='http://www.rethinkdb.com/'
+license=(AGPL)
+depends=(protobuf ncurses curl openssl-1.0)
+makedepends=(boost python2 wget gcc5) # gcc5 is workaround for 
https://github.com/rethinkdb/rethinkdb/issues/5757
+backup=(etc/rethinkdb/instances.d/default.conf)
+install=rethinkdb.install
+options=(!emptydirs)
+source=(
+  https://download.rethinkdb.com/dist/$_tag.tgz
+  rethinkdb-tmpfile.conf
+  rethinkdb.service
+  rethinkdb.sysusers
+)
+sha256sums=('dd8aeee169b177179bfe080725f0560443e0f26dae875b32ae25d90cf2f8ee10'
+'656d3a42e75d087e723f71aa320fdd91cbbb82071ef72eb11fd3e4a619b429a4'
+'e56bffa2b9ebc3a00ef566ab2be0719a633c89d961a2461dfa2d9ffdb258c1a2'
+'0660e0c7c093b440718486e1d0138322cf393da43e1fc92fb712b8282db76b5c')
+
+prepare() {
+  cd $_tag
+
+  sed \
+-e 's|#!/usr/bin/python|#!/usr/bin/python2|' \
+-e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+-i scripts/*.py external/v8_*/tools/*.py
+  sed -e 's|exec python|exec python2|g' -i external/v8_*/build/gyp/gyp
+  sed -e 's|\bpython\b|python2|g' -i 
external/v8_*/{Makefile,*/*.gyp,*/*.gypi,*/*/*.gyp}
+
+}
+
+build() {
+  cd $_tag
+  export PYTHON=/usr/bin/python2
+  CXX=g++-5 ./configure --fetch v8 --fetch jemalloc --dynamic all 
--enable-precompiled-web --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
CXXFLAGS="$CXXFLAGS -I/usr/include/openssl-1.0" LDFLAGS="$LDFLAGS 
-L/usr/lib/openssl-1.0"
+  make ALLOW_WARNINGS=1
+}
+
+check() {
+  cd $_tag
+
+  # these tests are flaky and extremely slow in Arch chroot
+  # make build/release/rethinkdb-unittest
+  # ./build/release/rethinkdb-unittest 
--gtest_filter=-RDBBtree.*:RDBInterrupt.*
+  # some tests might be flaky on btrfs filesystem
+}
+
+package() {
+  cd $_tag
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 "$srcdir"/rethinkdb.sysusers 
"$pkgdir"/usr/lib/sysusers.d/rethinkdb.conf
+  install -Dm644 "$srcdir"/rethinkdb-tmpfile.conf 
"$pkgdir"/usr/lib/tmpfiles.d/rethinkdb.conf
+  install -Dm644 "$srcdir"/rethinkdb.service 
"$pkgdir"/usr/lib/systemd/system/rethinkdb@.service
+
+  # create 'default' database instance
+  mv "$pkgdir"/etc/rethinkdb/default.conf.sample 

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

2017-05-06 Thread Anatol Pomozov
Date: Saturday, May 6, 2017 @ 16:37:31
  Author: anatolik
Revision: 227215

protobuf 3.3.0 rebuild

Modified:
  rethinkdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 16:21:25 UTC (rev 227214)
+++ PKGBUILD2017-05-06 16:37:31 UTC (rev 227215)
@@ -6,7 +6,7 @@
 pkgname=rethinkdb
 pkgver=2.3.5
 _tag=rethinkdb-$pkgver
-pkgrel=6
+pkgrel=7
 pkgdesc='Distributed powerful and scalable NoSQL database'
 arch=(i686 x86_64)
 url='http://www.rethinkdb.com/'


[arch-commits] Commit in perl-compress-bzip2/repos (4 files)

2017-05-06 Thread Jan Steffens
Date: Saturday, May 6, 2017 @ 16:31:51
  Author: heftig
Revision: 295382

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

Added:
  perl-compress-bzip2/repos/extra-i686/PKGBUILD
(from rev 295381, perl-compress-bzip2/trunk/PKGBUILD)
  perl-compress-bzip2/repos/extra-x86_64/PKGBUILD
(from rev 295381, perl-compress-bzip2/trunk/PKGBUILD)
Deleted:
  perl-compress-bzip2/repos/extra-i686/PKGBUILD
  perl-compress-bzip2/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-05-06 16:31:25 UTC (rev 295381)
+++ extra-i686/PKGBUILD 2017-05-06 16:31:51 UTC (rev 295382)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=perl-compress-bzip2
-_realname=Compress-Bzip2
-pkgver=2.25
-pkgrel=1
-pkgdesc="Interface to Bzip2 compression library"
-arch=(i686 x86_64)
-license=(GPL2)
-depends=(perl bzip2)
-url="http://search.cpan.org/dist/Compress-Bzip2;
-options=('!emptydirs')
-source=("http://search.cpan.org/CPAN/authors/id/R/RU/RURBAN/$_realname-$pkgver.tar.gz;)
-md5sums=('2c4336e3cd345acce4fae07e9f8b71fb')
-
-build() {
-  cd "$srcdir/$_realname-$pkgver"
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd "$srcdir/$_realname-$pkgver"
-  make DESTDIR="$pkgdir" install
-
-# template start; name=perl-binary-module-dependency; version=1;
-if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
-   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
-   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
-   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
-fi
-# template end;
-}

Copied: perl-compress-bzip2/repos/extra-i686/PKGBUILD (from rev 295381, 
perl-compress-bzip2/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-05-06 16:31:51 UTC (rev 295382)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=perl-compress-bzip2
+_realname=Compress-Bzip2
+pkgver=2.26
+pkgrel=1
+pkgdesc="Interface to Bzip2 compression library"
+arch=(i686 x86_64)
+license=(GPL2)
+depends=(perl bzip2)
+url="https://metacpan.org/release/Compress-Bzip2;
+options=('!emptydirs')
+source=(https://cpan.metacpan.org/authors/id/R/RU/RURBAN/${_realname}-${pkgver}.tar.gz)
+sha256sums=('5132f0c5f377a54d77ee36d332aa0ece585c22a40f2c31f2619e40262f5c4f0c')
+
+build() {
+  cd $_realname-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd $_realname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
+   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
+   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
+   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
+fi
+# template end;
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-05-06 16:31:25 UTC (rev 295381)
+++ extra-x86_64/PKGBUILD   2017-05-06 16:31:51 UTC (rev 295382)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=perl-compress-bzip2
-_realname=Compress-Bzip2
-pkgver=2.25
-pkgrel=1
-pkgdesc="Interface to Bzip2 compression library"
-arch=(i686 x86_64)
-license=(GPL2)
-depends=(perl bzip2)
-url="http://search.cpan.org/dist/Compress-Bzip2;
-options=('!emptydirs')
-source=("http://search.cpan.org/CPAN/authors/id/R/RU/RURBAN/$_realname-$pkgver.tar.gz;)
-md5sums=('2c4336e3cd345acce4fae07e9f8b71fb')
-
-build() {
-  cd "$srcdir/$_realname-$pkgver"
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd "$srcdir/$_realname-$pkgver"
-  make DESTDIR="$pkgdir" install
-
-# template start; name=perl-binary-module-dependency; version=1;
-if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
-   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
-   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
-   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
-fi
-# template end;
-}

Copied: perl-compress-bzip2/repos/extra-x86_64/PKGBUILD (from rev 295381, 
perl-compress-bzip2/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)

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

2017-05-06 Thread Jan Steffens
Date: Saturday, May 6, 2017 @ 16:31:25
  Author: heftig
Revision: 295381

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

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

---+
 /PKGBUILD |  126 
 extra-i686/PKGBUILD   |   61 ---
 extra-x86_64/PKGBUILD |   61 ---
 3 files changed, 126 insertions(+), 122 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-05-06 16:31:01 UTC (rev 295380)
+++ extra-i686/PKGBUILD 2017-05-06 16:31:25 UTC (rev 295381)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Tom Gundersen 
-# Contributor: Eduardo Romero 
-# Contributor: Damir Perisa 
-
-pkgname=libgphoto2
-pkgver=2.5.12
-pkgrel=1
-pkgdesc="The core library of gphoto2, designed to allow access to digital 
camera by external programs."
-arch=(i686 x86_64)
-url="http://www.gphoto.org/;
-license=(LGPL)
-depends=(libexif libjpeg gd libltdl libusb libxml2)
-makedepends=(autoconf-archive git)
-_commit=1719ba76c7ad5b934f113fcd6e433999fe99b92e  # 
tags/libgphoto2-2_5_12-release
-source=("git+https://github.com/gphoto/libgphoto2#commit=$_commit;)
-sha256sums=('SKIP')
-validpgpkeys=('7C4AFD61D8AAE7570796A5172209D6902F969C95') # Marcus Meissner
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^libgphoto2-//;s/-release//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  autoreconf -fvi
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --disable-rpath
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
"$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/  
func_append compile_command " -Wl,-O1,--as-needed"\n  func_append 
finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-
-  # Remove unused udev helper
-  rm -r "$pkgdir/usr/lib/udev"
-
-  # Remove recursive symlink
-  rm "$pkgdir/usr/include/gphoto2/gphoto2"
-
-  (
-cd "$pkgdir/usr/lib/libgphoto2"
-
-export 
LD_LIBRARY_PATH="$pkgdir/usr/lib${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH"
-export CAMLIBS="$PWD/$pkgver"
-
-./print-camera-list hwdb \
-  | install -Dm644 /dev/stdin "$pkgdir/usr/lib/udev/hwdb.d/20-gphoto.hwdb"
-./print-camera-list udev-rules version 201 \
-  | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/udev/rules.d/40-gphoto.rules"
-  )
-}

Copied: libgphoto2/repos/extra-i686/PKGBUILD (from rev 295380, 
libgphoto2/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-05-06 16:31:25 UTC (rev 295381)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Tom Gundersen 
+# Contributor: Eduardo Romero 
+# Contributor: Damir Perisa 
+
+pkgname=libgphoto2
+pkgver=2.5.13
+pkgrel=1
+pkgdesc="The core library of gphoto2, designed to allow access to digital 
camera by external programs."
+arch=(i686 x86_64)
+url="http://www.gphoto.org/;
+license=(LGPL)
+depends=(libexif libjpeg gd libltdl libusb libxml2)
+makedepends=(autoconf-archive git)
+_commit=a632f2f56462ebe3afa599657147405e7adce9bc  # 
tags/libgphoto2-2_5_13-release
+source=("git+https://github.com/gphoto/libgphoto2#commit=$_commit;)
+sha256sums=('SKIP')
+validpgpkeys=('7C4AFD61D8AAE7570796A5172209D6902F969C95') # Marcus Meissner
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^libgphoto2-//;s/-release//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  autoreconf -fvi
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --disable-rpath
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
"$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/  
func_append compile_command " -Wl,-O1,--as-needed"\n  func_append 
finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+
+  # Remove unused udev helper
+  rm -r "$pkgdir/usr/lib/udev"
+
+  # Remove recursive symlink
+  rm "$pkgdir/usr/include/gphoto2/gphoto2"
+
+  _genudev
+}
+
+_genudev() (
+  cd "$pkgdir/usr/lib/libgphoto2"
+
+  export LD_LIBRARY_PATH="$pkgdir/usr/lib${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH"
+  export CAMLIBS="$PWD/$pkgver"
+
+  ./print-camera-list hwdb \
+| install -Dm644 /dev/stdin "$pkgdir/usr/lib/udev/hwdb.d/20-gphoto.hwdb"
+  ./print-camera-list udev-rules version 201 \
+| install -Dm644 /dev/stdin 

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

2017-05-06 Thread Jan Steffens
Date: Saturday, May 6, 2017 @ 16:31:01
  Author: heftig
Revision: 295380

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-05-06 16:30:36 UTC (rev 295379)
+++ extra-i686/PKGBUILD 2017-05-06 16:31:01 UTC (rev 295380)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=gjs
-pkgver=1.48.2
-pkgrel=1
-pkgdesc="Javascript Bindings for GNOME"
-arch=(i686 x86_64)
-url="http://live.gnome.org/Gjs;
-license=(GPL)
-depends=(cairo gobject-introspection-runtime 'js38' 'gtk3')
-makedepends=('gobject-introspection' 'git' 'gnome-common')
-_commit=740963c5023763bf468251819b5cc7eced1914fa  # tags/1.48.2^0
-source=("git://git.gnome.org/gjs#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-  
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --disable-static --libexecdir=/usr/lib
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd $pkgname
-  # Needs a display
-  make -k check || :
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: gjs/repos/extra-i686/PKGBUILD (from rev 295379, gjs/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-05-06 16:31:01 UTC (rev 295380)
@@ -0,0 +1,43 @@
+# $Id$
+# Contributor: Ionut Biru 
+
+pkgname=gjs
+pkgver=1.48.3
+pkgrel=1
+pkgdesc="Javascript Bindings for GNOME"
+url="https://wiki.gnome.org/Projects/Gjs;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(cairo gobject-introspection-runtime js38 gtk3)
+makedepends=(gobject-introspection git gnome-common)
+_commit=9e64b210af822883de887916d560a2d7c95a0fe3  # tags/1.48.3^0
+source=("git+https://git.gnome.org/browse/gjs#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --disable-static --libexecdir=/usr/lib
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd $pkgname
+  # Needs a display
+  make -k check || :
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-05-06 16:30:36 UTC (rev 295379)
+++ extra-x86_64/PKGBUILD   2017-05-06 16:31:01 UTC (rev 295380)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=gjs
-pkgver=1.48.2
-pkgrel=1
-pkgdesc="Javascript Bindings for GNOME"
-arch=(i686 x86_64)
-url="http://live.gnome.org/Gjs;
-license=(GPL)
-depends=(cairo gobject-introspection-runtime 'js38' 'gtk3')
-makedepends=('gobject-introspection' 'git' 'gnome-common')
-_commit=740963c5023763bf468251819b5cc7eced1914fa  # tags/1.48.2^0
-source=("git://git.gnome.org/gjs#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-  
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --disable-static --libexecdir=/usr/lib
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd $pkgname
-  # Needs a display
-  make -k check || :
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: gjs/repos/extra-x86_64/PKGBUILD (from rev 295379, gjs/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-05-06 16:31:01 UTC (rev 295380)
@@ -0,0 +1,43 @@
+# $Id$
+# Contributor: Ionut Biru 
+
+pkgname=gjs
+pkgver=1.48.3
+pkgrel=1
+pkgdesc="Javascript Bindings for GNOME"
+url="https://wiki.gnome.org/Projects/Gjs;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(cairo gobject-introspection-runtime js38 gtk3)
+makedepends=(gobject-introspection git gnome-common)
+_commit=9e64b210af822883de887916d560a2d7c95a0fe3  # tags/1.48.3^0
+source=("git+https://git.gnome.org/browse/gjs#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+

[arch-commits] Commit in perl-text-csv/repos/extra-any (PKGBUILD PKGBUILD)

2017-05-06 Thread Jan Steffens
Date: Saturday, May 6, 2017 @ 16:30:36
  Author: heftig
Revision: 295379

archrelease: copy trunk to extra-any

Added:
  perl-text-csv/repos/extra-any/PKGBUILD
(from rev 295378, perl-text-csv/trunk/PKGBUILD)
Deleted:
  perl-text-csv/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-06 16:30:20 UTC (rev 295378)
+++ PKGBUILD2017-05-06 16:30:36 UTC (rev 295379)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname='perl-text-csv'
-_dist="Text-CSV"
-pkgver=1.91
-pkgrel=1
-pkgdesc="comma-separated values manipulator"
-arch=('any')
-license=('PerlArtistic' 'GPL')
-options=('!emptydirs')
-depends=('perl')
-makedepends=()
-url='https://metacpan.org/release/Text-CSV'
-source=("https://cpan.metacpan.org/authors/id/I/IS/ISHIGAKI/${_dist}-${pkgver}.tar.gz;)
-md5sums=('2b8758372573c5488afa0f44bd584cc6')
-sha512sums=('1dfd1de9b91390df38788a36423d671d4b3aafc7b5a106b994ced944893b73a90bd0e7ad0ce88f51e81e7ff70c507a1c70fbe9a55c7139860f84f18e060d15d9')
-
-build() {
-cd "${srcdir}/${_dist}-${pkgver}"
-unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
-export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
-perl Makefile.PL
-make
-}
-
-check() {
-cd "${srcdir}/${_dist}-${pkgver}"
-unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
-export PERL_MM_USE_DEFAULT=1
-make test
-}
-
-package() {
-cd "${srcdir}/${_dist}-${pkgver}"
-unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
-make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
-}

Copied: perl-text-csv/repos/extra-any/PKGBUILD (from rev 295378, 
perl-text-csv/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-06 16:30:36 UTC (rev 295379)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname='perl-text-csv'
+_dist="Text-CSV"
+pkgver=1.95
+pkgrel=1
+pkgdesc="comma-separated values manipulator"
+arch=('any')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl')
+url="https://metacpan.org/release/Text-CSV;
+source=("https://cpan.metacpan.org/authors/id/I/IS/ISHIGAKI/${_dist}-${pkgver}.tar.gz;)
+md5sums=('1e076b4b1f8ba6a5003bf93f3c437a9e')
+sha512sums=('447d38c9f6058251b9c3b1e42bffdec80ffe9ea7f232552921477d3c0dc1e913fe2a1cf1d4cec1410fab92a7e4e59601f429e11a005051710cd2b8d3b77201f9')
+
+unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+
+build() {
+cd $_dist-$pkgver
+export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+perl Makefile.PL
+make
+}
+
+check() {
+cd $_dist-$pkgver
+export PERL_MM_USE_DEFAULT=1
+make test
+}
+
+package() {
+cd $_dist-$pkgver
+make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
+}


[arch-commits] Commit in gnome-disk-utility/repos (4 files)

2017-05-06 Thread Jan Steffens
Date: Saturday, May 6, 2017 @ 16:30:20
  Author: heftig
Revision: 295378

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

Added:
  gnome-disk-utility/repos/extra-i686/PKGBUILD
(from rev 295377, gnome-disk-utility/trunk/PKGBUILD)
  gnome-disk-utility/repos/extra-x86_64/PKGBUILD
(from rev 295377, gnome-disk-utility/trunk/PKGBUILD)
Deleted:
  gnome-disk-utility/repos/extra-i686/PKGBUILD
  gnome-disk-utility/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-05-06 16:28:53 UTC (rev 295377)
+++ extra-i686/PKGBUILD 2017-05-06 16:30:20 UTC (rev 295378)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Jan de Groot 
-# Contributor: Silvio Knizek (killermoehre)
-
-pkgname=gnome-disk-utility
-pkgver=3.24.0+2+g9e4c9f5c
-pkgrel=1
-pkgdesc="Disk Management Utility for GNOME"
-url="https://git.gnome.org/browse/gnome-disk-utility;
-arch=(i686 x86_64)
-license=(GPL)
-groups=(gnome)
-depends=(udisks2 gtk3 libsecret libpwquality libcanberra libdvdread libnotify 
parted)
-makedepends=(intltool docbook-xsl autoconf-archive appstream-glib git)
-_commit=9e4c9f5c915ea482c7870b4c89c22f4352f66412  # gnome-3-24
-source=("git+https://git.gnome.org/browse/gnome-disk-utility#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc --disable-static 
--disable-Werror --libexecdir=/usr/lib/gnome-disk-utility
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd $pkgname
-  make check
-}
-
-package() {
-  cd "$pkgname"
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-disk-utility/repos/extra-i686/PKGBUILD (from rev 295377, 
gnome-disk-utility/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-05-06 16:30:20 UTC (rev 295378)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+# Contributor: Silvio Knizek (killermoehre)
+
+pkgname=gnome-disk-utility
+pkgver=3.24.1
+pkgrel=1
+pkgdesc="Disk Management Utility for GNOME"
+url="https://git.gnome.org/browse/gnome-disk-utility;
+arch=(i686 x86_64)
+license=(GPL)
+groups=(gnome)
+depends=(udisks2 gtk3 libsecret libpwquality libcanberra libdvdread libnotify 
parted)
+makedepends=(intltool docbook-xsl autoconf-archive appstream-glib git)
+_commit=11929ddb59d020df35bc73b6e7e4edfd8aa65a26  # tags/3.24.1^0
+source=("git+https://git.gnome.org/browse/gnome-disk-utility#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static 
--disable-Werror --libexecdir=/usr/lib/gnome-disk-utility
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+package() {
+  cd "$pkgname"
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-05-06 16:28:53 UTC (rev 295377)
+++ extra-x86_64/PKGBUILD   2017-05-06 16:30:20 UTC (rev 295378)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Jan de Groot 
-# Contributor: Silvio Knizek (killermoehre)
-
-pkgname=gnome-disk-utility
-pkgver=3.24.0+2+g9e4c9f5c
-pkgrel=1
-pkgdesc="Disk Management Utility for GNOME"
-url="https://git.gnome.org/browse/gnome-disk-utility;
-arch=(i686 x86_64)
-license=(GPL)
-groups=(gnome)
-depends=(udisks2 gtk3 libsecret libpwquality libcanberra libdvdread libnotify 
parted)
-makedepends=(intltool docbook-xsl autoconf-archive appstream-glib git)
-_commit=9e4c9f5c915ea482c7870b4c89c22f4352f66412  # gnome-3-24
-source=("git+https://git.gnome.org/browse/gnome-disk-utility#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc --disable-static 
--disable-Werror --libexecdir=/usr/lib/gnome-disk-utility
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd $pkgname
-  make 

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

2017-05-06 Thread Jan Steffens
Date: Saturday, May 6, 2017 @ 16:28:53
  Author: heftig
Revision: 295377

1.48.3-1

Modified:
  gjs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 16:24:19 UTC (rev 295376)
+++ PKGBUILD2017-05-06 16:28:53 UTC (rev 295377)
@@ -1,17 +1,17 @@
 # $Id$
-# Maintainer: Ionut Biru 
+# Contributor: Ionut Biru 
 
 pkgname=gjs
-pkgver=1.48.2
+pkgver=1.48.3
 pkgrel=1
 pkgdesc="Javascript Bindings for GNOME"
+url="https://wiki.gnome.org/Projects/Gjs;
 arch=(i686 x86_64)
-url="http://live.gnome.org/Gjs;
 license=(GPL)
-depends=(cairo gobject-introspection-runtime 'js38' 'gtk3')
-makedepends=('gobject-introspection' 'git' 'gnome-common')
-_commit=740963c5023763bf468251819b5cc7eced1914fa  # tags/1.48.2^0
-source=("git://git.gnome.org/gjs#commit=$_commit")
+depends=(cairo gobject-introspection-runtime js38 gtk3)
+makedepends=(gobject-introspection git gnome-common)
+_commit=9e64b210af822883de887916d560a2d7c95a0fe3  # tags/1.48.3^0
+source=("git+https://git.gnome.org/browse/gjs#commit=$_commit;)
 sha256sums=('SKIP')
 
 pkgver() {
@@ -23,7 +23,6 @@
   cd $pkgname
   NOCONFIGURE=1 ./autogen.sh
 }
-  
 
 build() {
   cd $pkgname


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

2017-05-06 Thread Jan Steffens
Date: Saturday, May 6, 2017 @ 16:24:19
  Author: heftig
Revision: 295376

3.24.1-1

Modified:
  gnome-disk-utility/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 16:23:13 UTC (rev 295375)
+++ PKGBUILD2017-05-06 16:24:19 UTC (rev 295376)
@@ -4,7 +4,7 @@
 # Contributor: Silvio Knizek (killermoehre)
 
 pkgname=gnome-disk-utility
-pkgver=3.24.0+2+g9e4c9f5c
+pkgver=3.24.1
 pkgrel=1
 pkgdesc="Disk Management Utility for GNOME"
 url="https://git.gnome.org/browse/gnome-disk-utility;
@@ -13,7 +13,7 @@
 groups=(gnome)
 depends=(udisks2 gtk3 libsecret libpwquality libcanberra libdvdread libnotify 
parted)
 makedepends=(intltool docbook-xsl autoconf-archive appstream-glib git)
-_commit=9e4c9f5c915ea482c7870b4c89c22f4352f66412  # gnome-3-24
+_commit=11929ddb59d020df35bc73b6e7e4edfd8aa65a26  # tags/3.24.1^0
 source=("git+https://git.gnome.org/browse/gnome-disk-utility#commit=$_commit;)
 sha256sums=('SKIP')
 


[arch-commits] Commit in lib32-wxgtk/repos/multilib-x86_64 (6 files)

2017-05-06 Thread Maxime Gauduin
Date: Saturday, May 6, 2017 @ 16:21:25
  Author: alucryd
Revision: 227214

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-wxgtk/repos/multilib-x86_64/PKGBUILD
(from rev 227213, lib32-wxgtk/trunk/PKGBUILD)
  lib32-wxgtk/repos/multilib-x86_64/make-abicheck-non-fatal.patch
(from rev 227213, lib32-wxgtk/trunk/make-abicheck-non-fatal.patch)
  lib32-wxgtk/repos/multilib-x86_64/wxGTK-collision.patch
(from rev 227213, lib32-wxgtk/trunk/wxGTK-collision.patch)
Deleted:
  lib32-wxgtk/repos/multilib-x86_64/PKGBUILD
  lib32-wxgtk/repos/multilib-x86_64/make-abicheck-non-fatal.patch
  lib32-wxgtk/repos/multilib-x86_64/wxGTK-collision.patch

---+
 PKGBUILD  |  127 
 make-abicheck-non-fatal.patch |   32 +-
 wxGTK-collision.patch |   54 -
 3 files changed, 108 insertions(+), 105 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-06 16:21:14 UTC (rev 227213)
+++ PKGBUILD2017-05-06 16:21:25 UTC (rev 227214)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Eric Bélanger 
-
-pkgname=lib32-wxgtk
-pkgver=3.0.3
-pkgrel=1
-pkgdesc='GTK+ implementation of wxWidgets API for GUI'
-arch=('x86_64')
-url='http://wxwidgets.org'
-license=('custom:wxWindows')
-depends=('lib32-gtk2' 'lib32-libsm' 'wxgtk')
-makedepends=('gcc-multilib' 'lib32-glu')
-options=('!emptydirs')
-source=("https://github.com/wxWidgets/wxWidgets/releases/download/v${pkgver}/wxWidgets-${pkgver}.tar.bz2;
-'make-abicheck-non-fatal.patch')
-sha256sums=('08c8033f48ec1b23520f036cde37b5ae925a6a65f137ded665633ca159b9307b'
-'d4c2d070a06eb63f0a018c8cf687589e5ffdec601225b4d16a268ffe390fb58b')
-
-prepare() {
-  cd wxWidgets-${pkgver}
-
-  patch -Np1 -i ../make-abicheck-non-fatal.patch
-}
-
-build() {
-  cd wxWidgets-${pkgver}
-
-  export CC='gcc -m32'
-  export CXX='g++ -m32'
-  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
-  export CFLAGS="-I/usr/include/libtiff32 $CFLAGS"
-  export CXXFLAGS="-I/usr/include/libtiff32 $CXXFLAGS"
-
-  ./configure \
---prefix='/usr' \
---libdir='/usr/lib32' \
---enable-graphics_ctx \
---enable-unicode \
---disable-mediactrl \
---disable-precomp-headers \
---disable-webview \
---with-gtk='2' \
---with-lib{jpeg,png,tiff,xpm}='sys' \
---with-opengl \
---with-regex='builtin' \
---without-libnotify
-  make
-  make -C locale allmo
-}
-
-package() {
-  cd wxWidgets-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/usr/{include,share}
-
-  install -dm 755 "${pkgdir}"/usr/share/licenses
-  ln -s wxgtk "${pkgdir}"/usr/share/licenses/lib32-wxgtk
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-wxgtk/repos/multilib-x86_64/PKGBUILD (from rev 227213, 
lib32-wxgtk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-06 16:21:25 UTC (rev 227214)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Eric Bélanger 
+
+pkgname=lib32-wxgtk
+pkgver=3.0.3
+pkgrel=2
+pkgdesc='GTK+ implementation of wxWidgets API for GUI'
+arch=('x86_64')
+url='http://wxwidgets.org'
+license=('custom:wxWindows')
+depends=('lib32-gtk2' 'lib32-libsm' 'wxgtk')
+makedepends=('gcc-multilib' 'lib32-glu')
+options=('!emptydirs')
+source=("https://github.com/wxWidgets/wxWidgets/releases/download/v${pkgver}/wxWidgets-${pkgver}.tar.bz2;
+'make-abicheck-non-fatal.patch')
+sha256sums=('08c8033f48ec1b23520f036cde37b5ae925a6a65f137ded665633ca159b9307b'
+'d4c2d070a06eb63f0a018c8cf687589e5ffdec601225b4d16a268ffe390fb58b')
+
+prepare() {
+  cd wxWidgets-${pkgver}
+
+  patch -Np1 -i ../make-abicheck-non-fatal.patch
+}
+
+build() {
+  cd wxWidgets-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+  export CFLAGS="-I/usr/include/libtiff32 $CFLAGS"
+  export CXXFLAGS="-I/usr/include/libtiff32 $CXXFLAGS"
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--enable-graphics_ctx \
+--enable-unicode \
+--disable-mediactrl \
+--disable-precomp-headers \
+--disable-webview \
+--with-gtk='2' \
+--with-lib{jpeg,png,tiff,xpm}='sys' \
+--with-opengl \
+--with-regex='builtin' \
+--without-libnotify
+  make
+  make -C locale allmo
+}
+
+package() {
+  cd wxWidgets-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{bin/{wx-config,wxrc},include,share}
+  mv "${pkgdir}"/usr/bin/wxrc{,32}-3.0
+  ln -s /usr/bin/wxrc32-3.0 "${pkgdir}"/usr/bin/wxrc32
+  ln -s /usr/lib32/wx/config/gtk2-unicode-3.0 "${pkgdir}"/usr/bin/wx-config32
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses
+  ln -s wxgtk "${pkgdir}"/usr/share/licenses/lib32-wxgtk
+}

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

2017-05-06 Thread Maxime Gauduin
Date: Saturday, May 6, 2017 @ 16:21:14
  Author: alucryd
Revision: 227213

upgpkg: lib32-wxgtk 3.0.3-2

Modified:
  lib32-wxgtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 16:17:46 UTC (rev 227212)
+++ PKGBUILD2017-05-06 16:21:14 UTC (rev 227213)
@@ -4,7 +4,7 @@
 
 pkgname=lib32-wxgtk
 pkgver=3.0.3
-pkgrel=1
+pkgrel=2
 pkgdesc='GTK+ implementation of wxWidgets API for GUI'
 arch=('x86_64')
 url='http://wxwidgets.org'
@@ -53,7 +53,10 @@
   cd wxWidgets-${pkgver}
 
   make DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/usr/{include,share}
+  rm -rf "${pkgdir}"/usr/{bin/{wx-config,wxrc},include,share}
+  mv "${pkgdir}"/usr/bin/wxrc{,32}-3.0
+  ln -s /usr/bin/wxrc32-3.0 "${pkgdir}"/usr/bin/wxrc32
+  ln -s /usr/lib32/wx/config/gtk2-unicode-3.0 "${pkgdir}"/usr/bin/wx-config32
 
   install -dm 755 "${pkgdir}"/usr/share/licenses
   ln -s wxgtk "${pkgdir}"/usr/share/licenses/lib32-wxgtk


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

2017-05-06 Thread Jan Steffens
Date: Saturday, May 6, 2017 @ 16:19:19
  Author: heftig
Revision: 295366

2.5.13-1

Modified:
  libgphoto2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 16:17:48 UTC (rev 295365)
+++ PKGBUILD2017-05-06 16:19:19 UTC (rev 295366)
@@ -5,7 +5,7 @@
 # Contributor: Damir Perisa 
 
 pkgname=libgphoto2
-pkgver=2.5.12
+pkgver=2.5.13
 pkgrel=1
 pkgdesc="The core library of gphoto2, designed to allow access to digital 
camera by external programs."
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 license=(LGPL)
 depends=(libexif libjpeg gd libltdl libusb libxml2)
 makedepends=(autoconf-archive git)
-_commit=1719ba76c7ad5b934f113fcd6e433999fe99b92e  # 
tags/libgphoto2-2_5_12-release
+_commit=a632f2f56462ebe3afa599657147405e7adce9bc  # 
tags/libgphoto2-2_5_13-release
 source=("git+https://github.com/gphoto/libgphoto2#commit=$_commit;)
 sha256sums=('SKIP')
 validpgpkeys=('7C4AFD61D8AAE7570796A5172209D6902F969C95') # Marcus Meissner
@@ -47,15 +47,17 @@
   # Remove recursive symlink
   rm "$pkgdir/usr/include/gphoto2/gphoto2"
 
-  (
-cd "$pkgdir/usr/lib/libgphoto2"
+  _genudev
+}
 
-export 
LD_LIBRARY_PATH="$pkgdir/usr/lib${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH"
-export CAMLIBS="$PWD/$pkgver"
+_genudev() (
+  cd "$pkgdir/usr/lib/libgphoto2"
 
-./print-camera-list hwdb \
-  | install -Dm644 /dev/stdin "$pkgdir/usr/lib/udev/hwdb.d/20-gphoto.hwdb"
-./print-camera-list udev-rules version 201 \
-  | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/udev/rules.d/40-gphoto.rules"
-  )
-}
+  export LD_LIBRARY_PATH="$pkgdir/usr/lib${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH"
+  export CAMLIBS="$PWD/$pkgver"
+
+  ./print-camera-list hwdb \
+| install -Dm644 /dev/stdin "$pkgdir/usr/lib/udev/hwdb.d/20-gphoto.hwdb"
+  ./print-camera-list udev-rules version 201 \
+| install -Dm644 /dev/stdin "$pkgdir/usr/lib/udev/rules.d/40-gphoto.rules"
+)


[arch-commits] Commit in perl-text-csv/trunk (PKGBUILD)

2017-05-06 Thread Jan Steffens
Date: Saturday, May 6, 2017 @ 16:17:48
  Author: heftig
Revision: 295365

1.95-1

Modified:
  perl-text-csv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 16:16:07 UTC (rev 295364)
+++ PKGBUILD2017-05-06 16:17:48 UTC (rev 295365)
@@ -3,7 +3,7 @@
 
 pkgname='perl-text-csv'
 _dist="Text-CSV"
-pkgver=1.91
+pkgver=1.95
 pkgrel=1
 pkgdesc="comma-separated values manipulator"
 arch=('any')
@@ -10,15 +10,15 @@
 license=('PerlArtistic' 'GPL')
 options=('!emptydirs')
 depends=('perl')
-makedepends=()
-url='https://metacpan.org/release/Text-CSV'
+url="https://metacpan.org/release/Text-CSV;
 
source=("https://cpan.metacpan.org/authors/id/I/IS/ISHIGAKI/${_dist}-${pkgver}.tar.gz;)
-md5sums=('2b8758372573c5488afa0f44bd584cc6')
-sha512sums=('1dfd1de9b91390df38788a36423d671d4b3aafc7b5a106b994ced944893b73a90bd0e7ad0ce88f51e81e7ff70c507a1c70fbe9a55c7139860f84f18e060d15d9')
+md5sums=('1e076b4b1f8ba6a5003bf93f3c437a9e')
+sha512sums=('447d38c9f6058251b9c3b1e42bffdec80ffe9ea7f232552921477d3c0dc1e913fe2a1cf1d4cec1410fab92a7e4e59601f429e11a005051710cd2b8d3b77201f9')
 
+unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+
 build() {
-cd "${srcdir}/${_dist}-${pkgver}"
-unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+cd $_dist-$pkgver
 export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
 perl Makefile.PL
 make
@@ -25,14 +25,12 @@
 }
 
 check() {
-cd "${srcdir}/${_dist}-${pkgver}"
-unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+cd $_dist-$pkgver
 export PERL_MM_USE_DEFAULT=1
 make test
 }
 
 package() {
-cd "${srcdir}/${_dist}-${pkgver}"
-unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+cd $_dist-$pkgver
 make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
 }


[arch-commits] Commit in aarch64-linux-gnu-gcc/repos (4 files)

2017-05-06 Thread Anatol Pomozov
Date: Saturday, May 6, 2017 @ 16:17:46
  Author: anatolik
Revision: 227212

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

Added:
  aarch64-linux-gnu-gcc/repos/community-testing-i686/PKGBUILD
(from rev 227211, aarch64-linux-gnu-gcc/trunk/PKGBUILD)
  aarch64-linux-gnu-gcc/repos/community-testing-x86_64/PKGBUILD
(from rev 227211, aarch64-linux-gnu-gcc/trunk/PKGBUILD)
Deleted:
  aarch64-linux-gnu-gcc/repos/community-testing-i686/PKGBUILD
  aarch64-linux-gnu-gcc/repos/community-testing-x86_64/PKGBUILD

---+
 /PKGBUILD |  184 
 community-testing-i686/PKGBUILD   |   92 --
 community-testing-x86_64/PKGBUILD |   92 --
 3 files changed, 184 insertions(+), 184 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2017-05-06 16:05:42 UTC (rev 227211)
+++ community-testing-i686/PKGBUILD 2017-05-06 16:17:46 UTC (rev 227212)
@@ -1,92 +0,0 @@
-# Maintainer: Anatol Pomozov 
-
-_target=aarch64-linux-gnu
-pkgname=$_target-gcc
-pkgver=7.1.0
-_islver=0.18
-pkgrel=1
-_snapshot=7-20170504
-pkgdesc='The GNU Compiler Collection - cross compiler for ARM64 target'
-arch=(i686 x86_64)
-url='http://gcc.gnu.org/'
-license=(GPL LGPL FDL)
-depends=($_target-binutils $_target-glibc libmpc zlib)
-makedepends=(gmp mpfr)
-options=(!emptydirs !strip)
-source=(#ftp://gcc.gnu.org/pub/gcc/releases/gcc-$pkgver/gcc-$pkgver.tar.bz2
-ftp://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.bz2
-http://isl.gforge.inria.fr/isl-$_islver.tar.bz2)
-sha256sums=('0a179b9fe8e90215d7b2385c40a2e36ba7f823193531847eb7fcff866df556ba'
-'6b8b0fd7f81d0a957beb3679c81bbb34ccc7568d5682844d8924424a0dadcb1b')
-
-if [ -n "$_snapshot" ]; then
-  _basedir=gcc-$_snapshot
-else
-  _basedir=gcc-$pkgver
-fi
-
-prepare() {
-  cd $_basedir
-
-  # link isl for in-tree builds
-  ln -sf ../isl-$_islver isl
-
-  echo $pkgver > gcc/BASE-VER
-
-  # Do not run fixincludes
-  sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in
-
-  # hack! - some configure tests for header files using "$CPP $CPPFLAGS"
-  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" 
"$srcdir"/$_basedir/{libiberty,gcc}/configure
-
-  rm -rf $srcdir/gcc-build
-  mkdir $srcdir/gcc-build
-}
-
-build() {
-  cd gcc-build
-
-  # using -pipe causes spurious test-suite failures
-  # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48565
-  CFLAGS=${CFLAGS/-pipe/}
-  CXXFLAGS=${CXXFLAGS/-pipe/}
-
-  $srcdir/$_basedir/configure \
-  --prefix=/usr \
-  --program-prefix=$_target- \
-  --with-local-prefix=/usr/$_target \
-  --with-sysroot=/usr/$_target \
-  --with-build-sysroot=/usr/$_target \
-  --libdir=/usr/lib --libexecdir=/usr/lib \
-  --target=$_target --host=$CHOST --build=$CHOST \
-  --disable-nls \
-  --enable-languages=c,c++ \
-  --enable-shared --enable-threads=posix \
-  --with-system-zlib --with-isl --enable-__cxa_atexit \
-  --disable-libunwind-exceptions --enable-clocale=gnu \
-  --disable-libstdcxx-pch --disable-libssp \
-  --enable-gnu-unique-object --enable-linker-build-id \
-  --enable-lto --enable-plugin --enable-install-libiberty \
-  --with-linker-hash-style=gnu --enable-gnu-indirect-function \
-  --disable-multilib --disable-werror \
-  --enable-checking=release
-
-  make
-}
-
-package() {
-  cd gcc-build
-
-  make DESTDIR="$pkgdir" install-gcc install-target-libgcc 
install-target-libstdc++-v3 
-
-  # strip target binaries
-  find "$pkgdir"/usr/lib/gcc/$_target/ "$pkgdir"/usr/$_target/lib -type f -and 
\( -name \*.a -or -name \*.o \) -exec $_target-objcopy -R .comment -R .note -R 
.debug_info -R .debug_aranges -R .debug_pubnames -R .debug_pubtypes -R 
.debug_abbrev -R .debug_line -R .debug_str -R .debug_ranges -R .debug_loc '{}' 
\;
-
-  # strip host binaries
-  find "$pkgdir"/usr/bin/ "$pkgdir"/usr/lib/gcc/$_target/ -type f -and \( 
-executable \) -exec strip '{}' \;
-
-  # Remove files that conflict with host gcc package
-  rm -r "$pkgdir"/usr/share/man/man7
-  rm -r "$pkgdir"/usr/share/info
-  rm -r "$pkgdir"/usr/share/gcc-$pkgver
-}

Copied: aarch64-linux-gnu-gcc/repos/community-testing-i686/PKGBUILD (from rev 
227211, aarch64-linux-gnu-gcc/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-05-06 16:17:46 UTC (rev 227212)
@@ -0,0 +1,92 @@
+# Maintainer: Anatol Pomozov 
+
+_target=aarch64-linux-gnu
+pkgname=$_target-gcc
+pkgver=7.1.0
+_islver=0.18
+pkgrel=1
+_snapshot=7-20170504
+pkgdesc='The GNU Compiler Collection - cross compiler for ARM64 target'
+arch=(i686 x86_64)
+url='http://gcc.gnu.org/'
+license=(GPL LGPL FDL)

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

2017-05-06 Thread Jan Steffens
Date: Saturday, May 6, 2017 @ 16:16:07
  Author: heftig
Revision: 295364

53.0.2-1

Modified:
  firefox-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  182 ++---
 1 file changed, 91 insertions(+), 91 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 16:15:55 UTC (rev 295363)
+++ PKGBUILD2017-05-06 16:16:07 UTC (rev 295364)
@@ -5,7 +5,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgbase=firefox-i18n
-pkgver=53.0
+pkgver=53.0.2
 pkgrel=1
 pkgdesc="Language pack for Firefox"
 arch=('any')
@@ -130,93 +130,93 @@
 
"$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
 }
 
-sha256sums=('6b50af6b457608c625b5a99c0f467e9e13827e84387223682c251847ef12ec03'
-'2e030e8d993a72fc2b922bd71749564706d5bbc4f5edd1d5cb0a2e2d341dd397'
-'3b049eabcf49f57742f574c792b0f15a2f0fe7af8d7700074555741eba4b40bd'
-'0df14612d4a6fe4e6da247b8529b45ab856d3a6d6bf284dac9654af2b4c91909'
-'67a780398046cfb66c7b10d8aa3e42a7b8eef5d8eedb2f7d890ab1a748049708'
-'0b0cab248642b295d3ec4fdb5206c4b4ab3ec1d8aa9cec573f230bd6fa75a816'
-'59ead0e267f43af93c7caa1148947224dc4206d42a37f80156ff47adae994261'
-'5ca6477997bd96165af804a2a8bcd6c01c8bfb5c9f98354e1602f49a922cf65b'
-'9f52c102c056489b2187f9d781a645f2c1d205b812a3ca6afdad56130c211c7f'
-'f913e5d79388285ae6a7e7f59b81855135336c50c37e3dd90cbd101057017600'
-'0bb79e4c792cd3bba0804064f91963389daba26a486cbf3fe84045ee6701ec07'
-'e4c803a77b70c0077c3f0fb467a601b5ff143a37ac8303dd97005b7aa3007864'
-'18483d647252cb2d6c9be0a2ec460de22cdecaa492b02d4a1ef3e5f9ded2aa59'
-'c7e6c39c58040c23e8baee6be87be9f0281a09198e2ac497b04b12e5eeeb9615'
-'5335967e578088e691d59a6f0540380075dab79e611c53fd67e2938da432f25a'
-'0822da739fc2ce0bf267dcafc8af2841432e62793e4c66ca79d0d937c4e5780e'
-'823dfd42463c4b31a6a5b1cfdcb79bfda8e80ade999cd9d481d09e48b97190c6'
-'81a6ac063827b7c3eb99a26b491e26c5e6898edf51e2d836d60e14a69a2d150d'
-'72e03e9bcefc173af4df02bfc99f22df99e7b3829cbc1d07de1b3d98e8092b35'
-'e8815fb6cae7632d70ae00cd28293a96f9d875f4f2e4e6c1491751037f293437'
-'258bec58ec28b75eb3db7c9b9cc68af21497eb49603994ace4aaa105840c84fd'
-'e8d3d164d433d755f7619c8413d1f53041f2f23d5819c8043362408b26245398'
-'0fe0b4fc2bb38f15bfff36e44bbb2c62715daaa6b242f3914581512684fddeb7'
-'541501fc0829fcf8147ee269224928b52e6cf4e8f1b362a4177d63f906db902e'
-'61ff3ce7467b5222e110107c4119e9f752645ad0b31c6b614487bb5c533a0311'
-'a806fc6176247cda5a54ef853c9637775f9a1c2e29a87dd1b55742a71f852b33'
-'8604ba37430f71b800a67361ce53b2325d7d71cefd0167170db35c4f2e02ce59'
-'2173f50a3dea92c658a7e60ae76fbab81335e2bd843a835bd31db2e6162d75f1'
-'1ded0ac4ec18c88b8c9425a9f00f02112514c0474c442d445fd210dae019bc77'
-'624fc7dfe57168f616153f03f34348786f82efe5dcb0a510d4e42c93560bede7'
-'a745c9cdf381f18097755226fd7fff59840c6498fd8601d8850f7b22d36b'
-'f68a9e23a8e2a02ff493ebd0bd9698b17ff5a5a3850bc8f21bf6fe2d6c6f22cf'
-'b99cc77e76dcbf9a25fa68c622648aa9e2db64b610c83012d8695f13e55d23a9'
-'85436c3886b9b89e601ddf39329af76275a0010fb6acc723574a239154cd3f07'
-'1896b79fd6ac6bfa4beca5f56d88292375231836d1d031a4146b126f464403ea'
-'c276e493fd8a6a77bb9f6a0542763ded93ceff0f74dfdc7329f2c86105d30e6c'
-'4da4ab8fc415524ea83e99f63edc5546c0027e8b3dca1615905e69521c358a38'
-'3a6bbcc4ac4e7b6a16031a64a8b8518fa18c7932d90bbbedfa79beecc32ece96'
-'b750ecda7bef4e14213d8e04281e080748cf48ec6e26e81457de9451aabd1454'
-'922ab30d6f1cb0747d1cd18ec526014e6f1761d5667f5d16eed834ac214149f4'
-'11d021e790ab97612caa09afd29586fff8d680f8c4267920180f4a2b888e34a2'
-'af30c610f0e1300a2deeb47438e303b1714fd554f7859693d0a55109915d66d9'
-'f4f7ffc50536c254a274e593eefb63fa5d26601968efc4f53d71179c6c95180c'
-'ba0e3f0d2d40c45d2b481dfd2680a2fc312e6eb981058c85e696690f90f52d4d'
-'486d533bddbc6dd76a435fbe4efcb092218ec13ccc62aaaf2577b118d008bff8'
-'d0b02e04e824c1110f3bc1c16854e0d65632fbc1683ff149def5cb3878e35dca'
-'e4533c814f961d10f807c9e575989e1116bba1369731fc8f46c00fd5cc9d966a'
-'da4be8811abad593f3f8bf06f922ccdc0873a59ed6f63fbfc5d541272e211b89'
-'7dbbe76bfea715179c118ed0d3547596454d45e9ee0b001d876893db807b68b8'
-'d0ce0ca453f180cdf7edabf18e3268f3117c70018fd2d06f870b60eee8d5c2cf'
-'29bbb10188bac81daf7d73c82da3d4c653fd4b8ae384527b18bbda3fed07eca3'
-'36101d95663960644b096602ee3db596b0f1e59ead95e9a5bf64be3accad8bdb'
-

[arch-commits] Commit in perl-compress-bzip2/trunk (PKGBUILD)

2017-05-06 Thread Jan Steffens
Date: Saturday, May 6, 2017 @ 16:15:55
  Author: heftig
Revision: 295363

2.26-1

Modified:
  perl-compress-bzip2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 16:08:31 UTC (rev 295362)
+++ PKGBUILD2017-05-06 16:15:55 UTC (rev 295363)
@@ -3,25 +3,25 @@
 
 pkgname=perl-compress-bzip2
 _realname=Compress-Bzip2
-pkgver=2.25
+pkgver=2.26
 pkgrel=1
 pkgdesc="Interface to Bzip2 compression library"
 arch=(i686 x86_64)
 license=(GPL2)
 depends=(perl bzip2)
-url="http://search.cpan.org/dist/Compress-Bzip2;
+url="https://metacpan.org/release/Compress-Bzip2;
 options=('!emptydirs')
-source=("http://search.cpan.org/CPAN/authors/id/R/RU/RURBAN/$_realname-$pkgver.tar.gz;)
-md5sums=('2c4336e3cd345acce4fae07e9f8b71fb')
+source=(https://cpan.metacpan.org/authors/id/R/RU/RURBAN/${_realname}-${pkgver}.tar.gz)
+sha256sums=('5132f0c5f377a54d77ee36d332aa0ece585c22a40f2c31f2619e40262f5c4f0c')
 
 build() {
-  cd "$srcdir/$_realname-$pkgver"
+  cd $_realname-$pkgver
   PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
   make
 }
 
 package() {
-  cd "$srcdir/$_realname-$pkgver"
+  cd $_realname-$pkgver
   make DESTDIR="$pkgdir" install
 
 # template start; name=perl-binary-module-dependency; version=1;


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

2017-05-06 Thread Jan Steffens
Date: Saturday, May 6, 2017 @ 16:08:31
  Author: heftig
Revision: 295362

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-05-06 16:06:30 UTC (rev 295361)
+++ extra-i686/PKGBUILD 2017-05-06 16:08:31 UTC (rev 295362)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgbase=(harfbuzz)
-pkgname=(harfbuzz harfbuzz-icu)
-pkgver=1.4.5
-pkgrel=2
-pkgdesc="OpenType text shaping engine"
-url="http://www.freedesktop.org/wiki/Software/HarfBuzz;
-arch=(i686 x86_64)
-license=(MIT)
-makedepends=(glib2 freetype2 graphite cairo icu gobject-introspection gtk-doc 
ragel git
- python2)
-_commit=60e2586f7652aaa0ee908eb8f54b1498e2ad299e  # tags/1.4.5^0
-source=("git+https://anongit.freedesktop.org/git/harfbuzz#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgbase
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  mkdir path
-  ln -s /usr/bin/python2 path/python
-
-  cd $pkgbase
-  sed -i '1s/python$/&2/' test/shaping/hb-unicode-encode
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgbase
-  CFLAGS+=' -DNDEBUG'
-  CXXFLAGS+=' -DNDEBUG'
-  ./configure --prefix=/usr \
---with-glib --with-freetype --with-cairo --with-icu --with-graphite2 \
---with-gobject --enable-gtk-doc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd $pkgbase
-  PATH="$srcdir/path:$PATH" make check
-}
-
-package_harfbuzz() {
-  depends=(glib2 freetype2 graphite)
-  optdepends=('cairo: hb-view program')
-
-  cd $pkgbase
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/harfbuzz/COPYING"
-
-# Split harfbuzz-icu
-  mkdir -p ../hb-icu/usr/{include/harfbuzz,lib/pkgconfig}; cd ../hb-icu
-  mv "$pkgdir"/usr/lib/libharfbuzz-icu* ./usr/lib
-  mv "$pkgdir"/usr/lib/pkgconfig/harfbuzz-icu.pc ./usr/lib/pkgconfig
-  mv "$pkgdir"/usr/include/harfbuzz/hb-icu.h ./usr/include/harfbuzz
-}
-
-package_harfbuzz-icu() {
-  pkgdesc="$pkgdesc (ICU integration)"
-  depends=(harfbuzz icu)
-
-  mv hb-icu/* "$pkgdir"
-
-  install -Dm644 $pkgbase/COPYING 
"$pkgdir/usr/share/licenses/harfbuzz-icu/COPYING"
-}

Copied: harfbuzz/repos/extra-i686/PKGBUILD (from rev 295361, 
harfbuzz/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-05-06 16:08:31 UTC (rev 295362)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgbase=(harfbuzz)
+pkgname=(harfbuzz harfbuzz-icu)
+pkgver=1.4.6
+pkgrel=1
+pkgdesc="OpenType text shaping engine"
+url="http://www.freedesktop.org/wiki/Software/HarfBuzz;
+arch=(i686 x86_64)
+license=(MIT)
+makedepends=(glib2 freetype2 graphite cairo icu gobject-introspection gtk-doc 
ragel git
+ python)
+_commit=141b33de9a141248e2f034d55f48460159536cb9  # tags/1.4.6^0
+source=("git+https://anongit.freedesktop.org/git/harfbuzz#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgbase
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgbase
+  ./configure \
+--prefix=/usr \
+--with-cairo \
+--with-freetype \
+--with-glib \
+--with-gobject \
+--with-graphite2 \
+--with-icu \
+--enable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd $pkgbase
+  make check
+}
+
+package_harfbuzz() {
+  depends=(glib2 freetype2 graphite)
+  optdepends=('cairo: hb-view program')
+
+  cd $pkgbase
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/harfbuzz/COPYING"
+
+# Split harfbuzz-icu
+  mkdir -p ../hb-icu/usr/{include/harfbuzz,lib/pkgconfig}; cd ../hb-icu
+  mv "$pkgdir"/usr/lib/libharfbuzz-icu* ./usr/lib
+  mv "$pkgdir"/usr/lib/pkgconfig/harfbuzz-icu.pc ./usr/lib/pkgconfig
+  mv "$pkgdir"/usr/include/harfbuzz/hb-icu.h ./usr/include/harfbuzz
+}
+
+package_harfbuzz-icu() {
+  pkgdesc="$pkgdesc (ICU integration)"
+  depends=(harfbuzz icu)
+
+  mv hb-icu/* "$pkgdir"
+
+  install -Dm644 $pkgbase/COPYING 
"$pkgdir/usr/share/licenses/harfbuzz-icu/COPYING"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-05-06 16:06:30 UTC (rev 295361)
+++ 

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

2017-05-06 Thread Jan Steffens
Date: Saturday, May 6, 2017 @ 16:06:30
  Author: heftig
Revision: 295361

1.4.6-1

Modified:
  harfbuzz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 15:32:24 UTC (rev 295360)
+++ PKGBUILD2017-05-06 16:06:30 UTC (rev 295361)
@@ -3,15 +3,15 @@
 
 pkgbase=(harfbuzz)
 pkgname=(harfbuzz harfbuzz-icu)
-pkgver=1.4.5
-pkgrel=2
+pkgver=1.4.6
+pkgrel=1
 pkgdesc="OpenType text shaping engine"
 url="http://www.freedesktop.org/wiki/Software/HarfBuzz;
 arch=(i686 x86_64)
 license=(MIT)
 makedepends=(glib2 freetype2 graphite cairo icu gobject-introspection gtk-doc 
ragel git
- python2)
-_commit=60e2586f7652aaa0ee908eb8f54b1498e2ad299e  # tags/1.4.5^0
+ python)
+_commit=141b33de9a141248e2f034d55f48460159536cb9  # tags/1.4.6^0
 source=("git+https://anongit.freedesktop.org/git/harfbuzz#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -21,21 +21,21 @@
 }
 
 prepare() {
-  mkdir path
-  ln -s /usr/bin/python2 path/python
-
   cd $pkgbase
-  sed -i '1s/python$/&2/' test/shaping/hb-unicode-encode
   NOCONFIGURE=1 ./autogen.sh
 }
 
 build() {
   cd $pkgbase
-  CFLAGS+=' -DNDEBUG'
-  CXXFLAGS+=' -DNDEBUG'
-  ./configure --prefix=/usr \
---with-glib --with-freetype --with-cairo --with-icu --with-graphite2 \
---with-gobject --enable-gtk-doc
+  ./configure \
+--prefix=/usr \
+--with-cairo \
+--with-freetype \
+--with-glib \
+--with-gobject \
+--with-graphite2 \
+--with-icu \
+--enable-gtk-doc
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }
@@ -42,7 +42,7 @@
 
 check() {
   cd $pkgbase
-  PATH="$srcdir/path:$PATH" make check
+  make check
 }
 
 package_harfbuzz() {


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

2017-05-06 Thread Jan Steffens
Date: Saturday, May 6, 2017 @ 16:05:42
  Author: heftig
Revision: 227211

archrelease: copy trunk to community-any

Added:
  jruby/repos/community-any/PKGBUILD
(from rev 227210, jruby/trunk/PKGBUILD)
Deleted:
  jruby/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-06 16:03:13 UTC (rev 227210)
+++ PKGBUILD2017-05-06 16:05:42 UTC (rev 227211)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: FaziBear 
-
-pkgname=jruby
-pkgver=9.1.7.0
-pkgrel=1
-pkgdesc="100% pure-Java implementation of the Ruby programming language"
-arch=(any)
-url="http://www.jruby.org/;
-license=(EPL GPL2 LGPL2.1 custom)
-options=(!strip)
-noextract=($pkgname-bin-${pkgver}.tar.gz)
-source=(http://jruby.org.s3.amazonaws.com/downloads/$pkgver/$pkgname-bin-${pkgver}.tar.gz)
-sha256sums=('95ac7d2316fb7698039267265716dd2159fa5b49f0e0dc6e469c80ad59072926')
-
-package() {
-  depends=(java-runtime-headless bash)
-
-  cd "$pkgdir"
-
-  mkdir opt
-  bsdtar -C opt -xf "$srcdir/$pkgname-bin-$pkgver.tar.gz"
-  mv opt/jruby-$pkgver opt/jruby
-
-  find opt/jruby -regextype posix-extended -regex '.*\.(bat|dll|exe)' -delete
-  rm -r opt/jruby/lib/jni/{Darwin,*-SunOS,*-Windows,*-AIX,*-*BSD}
-
-  mkdir -p usr/bin
-  for _file in jirb{,_swing} jgem jruby{,c}; do
-ln -s ../../opt/jruby/bin/$_file usr/bin/$_file
-  done
-
-  mkdir -p usr/share/licenses/$pkgname
-  ln -s ../../../../opt/jruby/COPYING usr/share/licenses/$pkgname/COPYING
-}

Copied: jruby/repos/community-any/PKGBUILD (from rev 227210, 
jruby/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-06 16:05:42 UTC (rev 227211)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: FaziBear 
+
+pkgname=jruby
+pkgver=9.1.8.0
+pkgrel=1
+pkgdesc="100% pure-Java implementation of the Ruby programming language"
+arch=(any)
+url="http://www.jruby.org/;
+license=(EPL GPL2 LGPL2.1 custom)
+options=(!strip)
+noextract=($pkgname-bin-${pkgver}.tar.gz)
+source=(http://jruby.org.s3.amazonaws.com/downloads/$pkgver/$pkgname-bin-${pkgver}.tar.gz)
+sha256sums=('20ac501c99a7cb3cf53ded64ac1b8bb6e0b0f6ba34a41b8bacc9715cd4bb2601')
+
+package() {
+  depends=(java-runtime-headless bash)
+
+  cd "$pkgdir"
+
+  mkdir opt
+  bsdtar -C opt -xf "$srcdir/$pkgname-bin-$pkgver.tar.gz"
+  mv opt/jruby-$pkgver opt/jruby
+
+  find opt/jruby -regextype posix-extended -regex '.*\.(bat|dll|exe)' -delete
+  rm -r opt/jruby/lib/jni/{Darwin,*-SunOS,*-Windows,*-AIX,*-*BSD}
+
+  mkdir -p usr/bin
+  for _file in jirb{,_swing} jgem jruby{,c}; do
+ln -s ../../opt/jruby/bin/$_file usr/bin/$_file
+  done
+
+  mkdir -p usr/share/licenses/$pkgname
+  ln -s ../../../../opt/jruby/COPYING usr/share/licenses/$pkgname/COPYING
+}


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

2017-05-06 Thread Jan Steffens
Date: Saturday, May 6, 2017 @ 16:03:13
  Author: heftig
Revision: 227210

9.1.8.0-1

Modified:
  jruby/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 15:58:40 UTC (rev 227209)
+++ PKGBUILD2017-05-06 16:03:13 UTC (rev 227210)
@@ -3,7 +3,7 @@
 # Contributor: FaziBear 
 
 pkgname=jruby
-pkgver=9.1.7.0
+pkgver=9.1.8.0
 pkgrel=1
 pkgdesc="100% pure-Java implementation of the Ruby programming language"
 arch=(any)
@@ -12,7 +12,7 @@
 options=(!strip)
 noextract=($pkgname-bin-${pkgver}.tar.gz)
 
source=(http://jruby.org.s3.amazonaws.com/downloads/$pkgver/$pkgname-bin-${pkgver}.tar.gz)
-sha256sums=('95ac7d2316fb7698039267265716dd2159fa5b49f0e0dc6e469c80ad59072926')
+sha256sums=('20ac501c99a7cb3cf53ded64ac1b8bb6e0b0f6ba34a41b8bacc9715cd4bb2601')
 
 package() {
   depends=(java-runtime-headless bash)


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

2017-05-06 Thread Sven-Hendrik Haase
Date: Saturday, May 6, 2017 @ 15:58:12
  Author: svenstaro
Revision: 227207

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

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

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

Copied: mumble/repos/community-staging-i686/PKGBUILD (from rev 227206, 
mumble/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-06 15:58:12 UTC (rev 227207)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Lauri Niskanen 
+# Contributor: sebastian.sal...@gmx.de
+# Contributor: Doc Angelo
+
+# If you want support for your G15 Keyboard, please add 'g15daemon'
+# to the depends and delete "no-g15" in the configure line below
+
+pkgname=mumble
+pkgver=1.2.19
+pkgrel=6
+arch=('i686' 'x86_64')
+pkgdesc="A voice chat application similar to TeamSpeak"
+license=('BSD')
+depends=('qt4' 'speex' 'lsb-release' 'libxi' 'avahi' 'libsndfile' 'protobuf' 
'libpulse' 'opus' 'xdg-utils' 'speech-dispatcher' 'libpng' 'freetype2' 
'fontconfig' 'libxrender')
+makedepends=('boost' 'mesa')
+url="http://mumble.sourceforge.net/;
+source=(https://github.com/mumble-voip/mumble/releases/download/${pkgver}/mumble-${pkgver}.tar.gz)
+sha512sums=('f9194a899149b500a94afcf7cc5b9691c7ce8669f07fca2c66adbb3916ddb863bf703d04fb8387133fb75f3c8edb52974d1acf3febfafa1f73da19946de4')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # Building mumble
+  qmake-qt4 main.pro \
+CONFIG+="bundled-celt no-bundled-opus no-bundled-speex no-g15 no-xevie 
no-server \
+no-embed-qt-translations no-update packaged" \
+DEFINES+="PLUGIN_PATH=/usr/lib/mumble" \
+INCLUDEPATH+="/usr/include/speech-dispatcher" \
+LIBS+="-lpng16 -lfreetype -lXrender -lfontconfig"
+  make release
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # bin stuff
+  install -m755 -D ./release/mumble $pkgdir/usr/bin/mumble
+  install -m755 -D ./scripts/mumble-overlay $pkgdir/usr/bin/mumble-overlay
+
+  # lib stuff
+  install -m755 -D ./release/libmumble.so.$pkgver 
$pkgdir/usr/lib/mumble/libmumble.so.$pkgver
+  ln -s libmumble.so.$pkgver $pkgdir/usr/lib/mumble/libmumble.so
+  ln -s libmumble.so.$pkgver $pkgdir/usr/lib/mumble/libmumble.so.1
+  ln -s libmumble.so.$pkgver $pkgdir/usr/lib/mumble/libmumble.so.1.2
+  install -m755 -D ./release/plugins/liblink.so 
$pkgdir/usr/lib/mumble/liblink.so
+  install -m755 -D ./release/plugins/libmanual.so 
$pkgdir/usr/lib/mumble/libmanual.so
+  install -m755 -D ./release/libcelt* $pkgdir/usr/lib/mumble/
+
+  # other stuff
+  install -m644 -D ./scripts/mumble.desktop 
$pkgdir/usr/share/applications/mumble.desktop
+  install -m755 -d $pkgdir/usr/share/man/man1
+  install -m644 -D ./man/mum* $pkgdir/usr/share/man/man1/
+  install -m644 -D ./icons/mumble.svg 
$pkgdir/usr/share/icons/hicolor/scalable/apps/mumble.svg
+  install -m644 -D ./LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+# vim: sw=2:ts=2 et:

Copied: mumble/repos/community-staging-x86_64/PKGBUILD (from rev 227206, 
mumble/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-06 15:58:12 UTC (rev 227207)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Lauri Niskanen 
+# Contributor: sebastian.sal...@gmx.de
+# Contributor: Doc Angelo
+
+# If you want support for your G15 Keyboard, please add 'g15daemon'
+# to the depends and delete "no-g15" in the configure line below
+
+pkgname=mumble
+pkgver=1.2.19
+pkgrel=6
+arch=('i686' 'x86_64')
+pkgdesc="A voice chat application similar to TeamSpeak"
+license=('BSD')
+depends=('qt4' 'speex' 'lsb-release' 'libxi' 'avahi' 'libsndfile' 'protobuf' 
'libpulse' 'opus' 'xdg-utils' 'speech-dispatcher' 'libpng' 'freetype2' 
'fontconfig' 'libxrender')
+makedepends=('boost' 'mesa')
+url="http://mumble.sourceforge.net/;
+source=(https://github.com/mumble-voip/mumble/releases/download/${pkgver}/mumble-${pkgver}.tar.gz)
+sha512sums=('f9194a899149b500a94afcf7cc5b9691c7ce8669f07fca2c66adbb3916ddb863bf703d04fb8387133fb75f3c8edb52974d1acf3febfafa1f73da19946de4')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # Building mumble
+  qmake-qt4 main.pro \
+CONFIG+="bundled-celt no-bundled-opus no-bundled-speex no-g15 no-xevie 
no-server \
+

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

2017-05-06 Thread Sven-Hendrik Haase
Date: Saturday, May 6, 2017 @ 15:58:40
  Author: svenstaro
Revision: 227209

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

Added:
  murmur/repos/community-staging-i686/
  murmur/repos/community-staging-i686/0003-fix-long-username-query.patch
(from rev 227208, murmur/trunk/0003-fix-long-username-query.patch)
  murmur/repos/community-staging-i686/0004-fix-username-validation.patch
(from rev 227208, murmur/trunk/0004-fix-username-validation.patch)
  murmur/repos/community-staging-i686/ChangeLog
(from rev 227208, murmur/trunk/ChangeLog)
  murmur/repos/community-staging-i686/PKGBUILD
(from rev 227208, murmur/trunk/PKGBUILD)
  murmur/repos/community-staging-i686/murmur.dbus.conf
(from rev 227208, murmur/trunk/murmur.dbus.conf)
  murmur/repos/community-staging-i686/murmur.install
(from rev 227208, murmur/trunk/murmur.install)
  murmur/repos/community-staging-i686/murmur.service
(from rev 227208, murmur/trunk/murmur.service)
  murmur/repos/community-staging-x86_64/
  murmur/repos/community-staging-x86_64/0003-fix-long-username-query.patch
(from rev 227208, murmur/trunk/0003-fix-long-username-query.patch)
  murmur/repos/community-staging-x86_64/0004-fix-username-validation.patch
(from rev 227208, murmur/trunk/0004-fix-username-validation.patch)
  murmur/repos/community-staging-x86_64/ChangeLog
(from rev 227208, murmur/trunk/ChangeLog)
  murmur/repos/community-staging-x86_64/PKGBUILD
(from rev 227208, murmur/trunk/PKGBUILD)
  murmur/repos/community-staging-x86_64/murmur.dbus.conf
(from rev 227208, murmur/trunk/murmur.dbus.conf)
  murmur/repos/community-staging-x86_64/murmur.install
(from rev 227208, murmur/trunk/murmur.install)
  murmur/repos/community-staging-x86_64/murmur.service
(from rev 227208, murmur/trunk/murmur.service)

-+
 community-staging-i686/0003-fix-long-username-query.patch   |   42 
 community-staging-i686/0004-fix-username-validation.patch   |   36 +++
 community-staging-i686/ChangeLog|   36 +++
 community-staging-i686/PKGBUILD |   50 ++
 community-staging-i686/murmur.dbus.conf |   22 
 community-staging-i686/murmur.install   |9 +
 community-staging-i686/murmur.service   |   12 ++
 community-staging-x86_64/0003-fix-long-username-query.patch |   42 
 community-staging-x86_64/0004-fix-username-validation.patch |   36 +++
 community-staging-x86_64/ChangeLog  |   36 +++
 community-staging-x86_64/PKGBUILD   |   50 ++
 community-staging-x86_64/murmur.dbus.conf   |   22 
 community-staging-x86_64/murmur.install |9 +
 community-staging-x86_64/murmur.service |   12 ++
 14 files changed, 414 insertions(+)

Copied: murmur/repos/community-staging-i686/0003-fix-long-username-query.patch 
(from rev 227208, murmur/trunk/0003-fix-long-username-query.patch)
===
--- community-staging-i686/0003-fix-long-username-query.patch   
(rev 0)
+++ community-staging-i686/0003-fix-long-username-query.patch   2017-05-06 
15:58:40 UTC (rev 227209)
@@ -0,0 +1,42 @@
+commit 6b33dda344f89e5a039b7d79eb43925040654242
+Author: Benjamin Jemlich 
+Date:   Tue Jun 29 14:49:14 2010 +0200
+
+Don't crash on long usernames
+
+diff --git a/src/murmur/Messages.cpp b/src/murmur/Messages.cpp
+index f12867a..de307ea 100644
+--- a/src/murmur/Messages.cpp
 b/src/murmur/Messages.cpp
+@@ -1231,6 +1231,9 @@ void Server::msgQueryUsers(ServerUser *uSource, 
MumbleProto::QueryUsers ) {
+ 
+   for (int i=0;i= 0) {
+   name = getUserName(id);
+diff --git a/src/murmur/ServerDB.cpp b/src/murmur/ServerDB.cpp
+index 11b6906..7e15def 100644
+--- a/src/murmur/ServerDB.cpp
 b/src/murmur/ServerDB.cpp
+@@ -810,7 +810,7 @@ int Server::authenticate(QString , const QString , 
const QStringList 
+   TransactionHolder th;
+   QSqlQuery  = *th.qsqQuery;
+ 
+-  SQLPREP("SELECT `user_id`,`name`,`pw` FROM `%1users` WHERE `server_id` 
= ? AND `name` like ?");
++  SQLPREP("SELECT `user_id`,`name`,`pw` FROM `%1users` WHERE `server_id` 
= ? AND LOWER(`name`) = LOWER(?)");
+   query.addBindValue(iServerNum);
+   query.addBindValue(name);
+   SQLEXEC();
+@@ -1051,7 +1051,7 @@ int Server::getUserID(const QString ) {
+   TransactionHolder th;
+ 
+   QSqlQuery  = *th.qsqQuery;
+-  SQLPREP("SELECT `user_id` FROM `%1users` WHERE 

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

2017-05-06 Thread Sven-Hendrik Haase
Date: Saturday, May 6, 2017 @ 15:58:22
  Author: svenstaro
Revision: 227208

upgpkg: murmur 1.2.19-6

protobuf 3.3.0 rebuild

Modified:
  murmur/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 15:58:12 UTC (rev 227207)
+++ PKGBUILD2017-05-06 15:58:22 UTC (rev 227208)
@@ -5,7 +5,7 @@
 
 pkgname=murmur
 pkgver=1.2.19
-pkgrel=5
+pkgrel=6
 pkgdesc="The voice chat application server for Mumble"
 arch=('i686' 'x86_64')
 url="http://mumble.sourceforge.net;


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

2017-05-06 Thread Sven-Hendrik Haase
Date: Saturday, May 6, 2017 @ 15:58:02
  Author: svenstaro
Revision: 227206

upgpkg: mumble 1.2.19-6

protobuf 3.3.0 rebuild

Modified:
  mumble/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 15:53:38 UTC (rev 227205)
+++ PKGBUILD2017-05-06 15:58:02 UTC (rev 227206)
@@ -9,7 +9,7 @@
 
 pkgname=mumble
 pkgver=1.2.19
-pkgrel=5
+pkgrel=6
 arch=('i686' 'x86_64')
 pkgdesc="A voice chat application similar to TeamSpeak"
 license=('BSD')


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

2017-05-06 Thread Sven-Hendrik Haase
Date: Saturday, May 6, 2017 @ 15:53:38
  Author: svenstaro
Revision: 227205

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

Added:
  pokerth/repos/community-staging-i686/
  
pokerth/repos/community-staging-i686/0001-Qt-5.5.0-patch-for-qtsingleapplication.patch
(from rev 227204, 
pokerth/trunk/0001-Qt-5.5.0-patch-for-qtsingleapplication.patch)
  pokerth/repos/community-staging-i686/PKGBUILD
(from rev 227204, pokerth/trunk/PKGBUILD)
  
pokerth/repos/community-staging-i686/pokerth-1.1.1-Qualify-std-ifstream-and-std-ofstream.patch
(from rev 227204, 
pokerth/trunk/pokerth-1.1.1-Qualify-std-ifstream-and-std-ofstream.patch)
  pokerth/repos/community-staging-i686/pokerth-c++11.patch
(from rev 227204, pokerth/trunk/pokerth-c++11.patch)
  pokerth/repos/community-staging-i686/pokerth-gcc6.patch
(from rev 227204, pokerth/trunk/pokerth-gcc6.patch)
  pokerth/repos/community-staging-x86_64/
  
pokerth/repos/community-staging-x86_64/0001-Qt-5.5.0-patch-for-qtsingleapplication.patch
(from rev 227204, 
pokerth/trunk/0001-Qt-5.5.0-patch-for-qtsingleapplication.patch)
  pokerth/repos/community-staging-x86_64/PKGBUILD
(from rev 227204, pokerth/trunk/PKGBUILD)
  
pokerth/repos/community-staging-x86_64/pokerth-1.1.1-Qualify-std-ifstream-and-std-ofstream.patch
(from rev 227204, 
pokerth/trunk/pokerth-1.1.1-Qualify-std-ifstream-and-std-ofstream.patch)
  pokerth/repos/community-staging-x86_64/pokerth-c++11.patch
(from rev 227204, pokerth/trunk/pokerth-c++11.patch)
  pokerth/repos/community-staging-x86_64/pokerth-gcc6.patch
(from rev 227204, pokerth/trunk/pokerth-gcc6.patch)

+
 community-staging-i686/0001-Qt-5.5.0-patch-for-qtsingleapplication.patch   
|   24 +
 community-staging-i686/PKGBUILD
|   58 +++
 
community-staging-i686/pokerth-1.1.1-Qualify-std-ifstream-and-std-ofstream.patch
   |  153 ++
 community-staging-i686/pokerth-c++11.patch 
|   95 ++
 community-staging-i686/pokerth-gcc6.patch  
|   41 ++
 community-staging-x86_64/0001-Qt-5.5.0-patch-for-qtsingleapplication.patch 
|   24 +
 community-staging-x86_64/PKGBUILD  
|   58 +++
 
community-staging-x86_64/pokerth-1.1.1-Qualify-std-ifstream-and-std-ofstream.patch
 |  153 ++
 community-staging-x86_64/pokerth-c++11.patch   
|   95 ++
 community-staging-x86_64/pokerth-gcc6.patch
|   41 ++
 10 files changed, 742 insertions(+)

Copied: 
pokerth/repos/community-staging-i686/0001-Qt-5.5.0-patch-for-qtsingleapplication.patch
 (from rev 227204, 
pokerth/trunk/0001-Qt-5.5.0-patch-for-qtsingleapplication.patch)
===
--- community-staging-i686/0001-Qt-5.5.0-patch-for-qtsingleapplication.patch
(rev 0)
+++ community-staging-i686/0001-Qt-5.5.0-patch-for-qtsingleapplication.patch
2017-05-06 15:53:38 UTC (rev 227205)
@@ -0,0 +1,24 @@
+From 731f5f05f54065a67fa7c9f9bc8fe992390cb979 Mon Sep 17 00:00:00 2001
+From: Felix Hammer 
+Date: Fri, 7 Aug 2015 00:57:51 +0200
+Subject: [PATCH] Qt 5.5.0 patch for qtsingleapplication
+
+---
+ src/third_party/qtsingleapplication/qtlocalpeer.cpp | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/third_party/qtsingleapplication/qtlocalpeer.cpp 
b/src/third_party/qtsingleapplication/qtlocalpeer.cpp
+index 43e6bf4..e0ddc07 100644
+--- a/src/third_party/qtsingleapplication/qtlocalpeer.cpp
 b/src/third_party/qtsingleapplication/qtlocalpeer.cpp
+@@ -31,6 +31,7 @@
+ 
+ #include 
+ #include 
++#include 
+ 
+ #if defined(Q_OS_WIN)
+ #include 
+-- 
+2.5.3
+

Copied: pokerth/repos/community-staging-i686/PKGBUILD (from rev 227204, 
pokerth/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-06 15:53:38 UTC (rev 227205)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Mateusz Herych 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Vasco Costa 
+# Contributor: Federico Cinelli 
+
+pkgname=pokerth
+_realname=PokerTH
+pkgver=1.1.1
+pkgrel=18
+pkgdesc="Open source Texas Hold'em Poker simulator"
+arch=('i686' 'x86_64')
+url="http://www.pokerth.net/;
+license=('GPL' 'custom')
+depends=('curl' 'boost-libs' 'gsasl' 'gnutls' 'protobuf' 'libxkbcommon-x11'
+ 'qt5-base' 'sdl_mixer' 'libircclient' 'tinyxml')
+makedepends=('boost')

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

2017-05-06 Thread Sven-Hendrik Haase
Date: Saturday, May 6, 2017 @ 15:53:22
  Author: svenstaro
Revision: 227204

upgpkg: pokerth 1.1.1-18

protobuf 3.3.0 rebuild

Modified:
  pokerth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 15:42:32 UTC (rev 227203)
+++ PKGBUILD2017-05-06 15:53:22 UTC (rev 227204)
@@ -8,7 +8,7 @@
 pkgname=pokerth
 _realname=PokerTH
 pkgver=1.1.1
-pkgrel=17
+pkgrel=18
 pkgdesc="Open source Texas Hold'em Poker simulator"
 arch=('i686' 'x86_64')
 url="http://www.pokerth.net/;


[arch-commits] Commit in aarch64-linux-gnu-gcc/repos (4 files)

2017-05-06 Thread Anatol Pomozov
Date: Saturday, May 6, 2017 @ 15:42:32
  Author: anatolik
Revision: 227203

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

Added:
  aarch64-linux-gnu-gcc/repos/community-testing-i686/
  aarch64-linux-gnu-gcc/repos/community-testing-i686/PKGBUILD
(from rev 227202, aarch64-linux-gnu-gcc/trunk/PKGBUILD)
  aarch64-linux-gnu-gcc/repos/community-testing-x86_64/
  aarch64-linux-gnu-gcc/repos/community-testing-x86_64/PKGBUILD
(from rev 227202, aarch64-linux-gnu-gcc/trunk/PKGBUILD)

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

Copied: aarch64-linux-gnu-gcc/repos/community-testing-i686/PKGBUILD (from rev 
227202, aarch64-linux-gnu-gcc/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-05-06 15:42:32 UTC (rev 227203)
@@ -0,0 +1,92 @@
+# Maintainer: Anatol Pomozov 
+
+_target=aarch64-linux-gnu
+pkgname=$_target-gcc
+pkgver=7.1.0
+_islver=0.18
+pkgrel=1
+_snapshot=7-20170504
+pkgdesc='The GNU Compiler Collection - cross compiler for ARM64 target'
+arch=(i686 x86_64)
+url='http://gcc.gnu.org/'
+license=(GPL LGPL FDL)
+depends=($_target-binutils $_target-glibc libmpc zlib)
+makedepends=(gmp mpfr)
+options=(!emptydirs !strip)
+source=(#ftp://gcc.gnu.org/pub/gcc/releases/gcc-$pkgver/gcc-$pkgver.tar.bz2
+ftp://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.bz2
+http://isl.gforge.inria.fr/isl-$_islver.tar.bz2)
+sha256sums=('0a179b9fe8e90215d7b2385c40a2e36ba7f823193531847eb7fcff866df556ba'
+'6b8b0fd7f81d0a957beb3679c81bbb34ccc7568d5682844d8924424a0dadcb1b')
+
+if [ -n "$_snapshot" ]; then
+  _basedir=gcc-$_snapshot
+else
+  _basedir=gcc-$pkgver
+fi
+
+prepare() {
+  cd $_basedir
+
+  # link isl for in-tree builds
+  ln -sf ../isl-$_islver isl
+
+  echo $pkgver > gcc/BASE-VER
+
+  # Do not run fixincludes
+  sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in
+
+  # hack! - some configure tests for header files using "$CPP $CPPFLAGS"
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" 
"$srcdir"/$_basedir/{libiberty,gcc}/configure
+
+  rm -rf $srcdir/gcc-build
+  mkdir $srcdir/gcc-build
+}
+
+build() {
+  cd gcc-build
+
+  # using -pipe causes spurious test-suite failures
+  # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48565
+  CFLAGS=${CFLAGS/-pipe/}
+  CXXFLAGS=${CXXFLAGS/-pipe/}
+
+  $srcdir/$_basedir/configure \
+  --prefix=/usr \
+  --program-prefix=$_target- \
+  --with-local-prefix=/usr/$_target \
+  --with-sysroot=/usr/$_target \
+  --with-build-sysroot=/usr/$_target \
+  --libdir=/usr/lib --libexecdir=/usr/lib \
+  --target=$_target --host=$CHOST --build=$CHOST \
+  --disable-nls \
+  --enable-languages=c,c++ \
+  --enable-shared --enable-threads=posix \
+  --with-system-zlib --with-isl --enable-__cxa_atexit \
+  --disable-libunwind-exceptions --enable-clocale=gnu \
+  --disable-libstdcxx-pch --disable-libssp \
+  --enable-gnu-unique-object --enable-linker-build-id \
+  --enable-lto --enable-plugin --enable-install-libiberty \
+  --with-linker-hash-style=gnu --enable-gnu-indirect-function \
+  --disable-multilib --disable-werror \
+  --enable-checking=release
+
+  make
+}
+
+package() {
+  cd gcc-build
+
+  make DESTDIR="$pkgdir" install-gcc install-target-libgcc 
install-target-libstdc++-v3 
+
+  # strip target binaries
+  find "$pkgdir"/usr/lib/gcc/$_target/ "$pkgdir"/usr/$_target/lib -type f -and 
\( -name \*.a -or -name \*.o \) -exec $_target-objcopy -R .comment -R .note -R 
.debug_info -R .debug_aranges -R .debug_pubnames -R .debug_pubtypes -R 
.debug_abbrev -R .debug_line -R .debug_str -R .debug_ranges -R .debug_loc '{}' 
\;
+
+  # strip host binaries
+  find "$pkgdir"/usr/bin/ "$pkgdir"/usr/lib/gcc/$_target/ -type f -and \( 
-executable \) -exec strip '{}' \;
+
+  # Remove files that conflict with host gcc package
+  rm -r "$pkgdir"/usr/share/man/man7
+  rm -r "$pkgdir"/usr/share/info
+  rm -r "$pkgdir"/usr/share/gcc-$pkgver
+}

Copied: aarch64-linux-gnu-gcc/repos/community-testing-x86_64/PKGBUILD (from rev 
227202, aarch64-linux-gnu-gcc/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-05-06 15:42:32 UTC (rev 227203)
@@ -0,0 +1,92 @@
+# Maintainer: Anatol Pomozov 
+
+_target=aarch64-linux-gnu
+pkgname=$_target-gcc
+pkgver=7.1.0
+_islver=0.18
+pkgrel=1
+_snapshot=7-20170504
+pkgdesc='The GNU Compiler Collection - cross compiler for ARM64 target'
+arch=(i686 x86_64)
+url='http://gcc.gnu.org/'
+license=(GPL LGPL FDL)

[arch-commits] Commit in aarch64-linux-gnu-gcc/trunk (PKGBUILD)

2017-05-06 Thread Anatol Pomozov
Date: Saturday, May 6, 2017 @ 15:41:53
  Author: anatolik
Revision: 227202

upgpkg: aarch64-linux-gnu-gcc 7.1.0-1

Modified:
  aarch64-linux-gnu-gcc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 15:29:28 UTC (rev 227201)
+++ PKGBUILD2017-05-06 15:41:53 UTC (rev 227202)
@@ -2,10 +2,10 @@
 
 _target=aarch64-linux-gnu
 pkgname=$_target-gcc
-pkgver=6.3.1
+pkgver=7.1.0
 _islver=0.18
 pkgrel=1
-_snapshot=6-20170323
+_snapshot=7-20170504
 pkgdesc='The GNU Compiler Collection - cross compiler for ARM64 target'
 arch=(i686 x86_64)
 url='http://gcc.gnu.org/'
@@ -16,7 +16,7 @@
 source=(#ftp://gcc.gnu.org/pub/gcc/releases/gcc-$pkgver/gcc-$pkgver.tar.bz2
 ftp://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.bz2
 http://isl.gforge.inria.fr/isl-$_islver.tar.bz2)
-sha256sums=('1765fe2bcae1a163d5adf1a090dc173640c690c82f35aaf65d983441989f8375'
+sha256sums=('0a179b9fe8e90215d7b2385c40a2e36ba7f823193531847eb7fcff866df556ba'
 '6b8b0fd7f81d0a957beb3679c81bbb34ccc7568d5682844d8924424a0dadcb1b')
 
 if [ -n "$_snapshot" ]; then


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

2017-05-06 Thread Lukas Fleischer
Date: Saturday, May 6, 2017 @ 15:29:20
  Author: lfleischer
Revision: 227200

upgpkg: tig 2.2.2-1

Upstream update.

Modified:
  tig/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 15:11:47 UTC (rev 227199)
+++ PKGBUILD2017-05-06 15:29:20 UTC (rev 227200)
@@ -4,7 +4,7 @@
 # Contributor: Nathan Jones 
 
 pkgname=tig
-pkgver=2.2.1
+pkgver=2.2.2
 pkgrel=1
 pkgdesc='Text-mode interface for Git.'
 depends=('git' 'ncurses')
@@ -14,7 +14,7 @@
 arch=('i686' 'x86_64')
 backup=('etc/tigrc')
 
source=("https://github.com/jonas/$pkgname/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz;)
-md5sums=('c93217874652d5c970e23d188df62a7c')
+md5sums=('3b4a9f0fd8d18c1039863e6c4ace6e46')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


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

2017-05-06 Thread Lukas Fleischer
Date: Saturday, May 6, 2017 @ 15:29:28
  Author: lfleischer
Revision: 227201

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-06 15:29:20 UTC (rev 227200)
+++ community-i686/PKGBUILD 2017-05-06 15:29:28 UTC (rev 227201)
@@ -1,32 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Loui Chang 
-# Contributor: Geoffroy Carrier 
-# Contributor: Nathan Jones 
-
-pkgname=tig
-pkgver=2.2.1
-pkgrel=1
-pkgdesc='Text-mode interface for Git.'
-depends=('git' 'ncurses')
-makedepends=('asciidoc' 'xmlto')
-url='http://jonas.nitro.dk/tig/'
-license=('GPL')
-arch=('i686' 'x86_64')
-backup=('etc/tigrc')
-source=("https://github.com/jonas/$pkgname/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz;)
-md5sums=('c93217874652d5c970e23d188df62a7c')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install install-doc-man
-
-  install -Dm0644 contrib/tig-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/tig"
-}

Copied: tig/repos/community-i686/PKGBUILD (from rev 227200, tig/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-06 15:29:28 UTC (rev 227201)
@@ -0,0 +1,32 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Loui Chang 
+# Contributor: Geoffroy Carrier 
+# Contributor: Nathan Jones 
+
+pkgname=tig
+pkgver=2.2.2
+pkgrel=1
+pkgdesc='Text-mode interface for Git.'
+depends=('git' 'ncurses')
+makedepends=('asciidoc' 'xmlto')
+url='http://jonas.nitro.dk/tig/'
+license=('GPL')
+arch=('i686' 'x86_64')
+backup=('etc/tigrc')
+source=("https://github.com/jonas/$pkgname/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz;)
+md5sums=('3b4a9f0fd8d18c1039863e6c4ace6e46')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install install-doc-man
+
+  install -Dm0644 contrib/tig-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/tig"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-05-06 15:29:20 UTC (rev 227200)
+++ community-x86_64/PKGBUILD   2017-05-06 15:29:28 UTC (rev 227201)
@@ -1,32 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Loui Chang 
-# Contributor: Geoffroy Carrier 
-# Contributor: Nathan Jones 
-
-pkgname=tig
-pkgver=2.2.1
-pkgrel=1
-pkgdesc='Text-mode interface for Git.'
-depends=('git' 'ncurses')
-makedepends=('asciidoc' 'xmlto')
-url='http://jonas.nitro.dk/tig/'
-license=('GPL')
-arch=('i686' 'x86_64')
-backup=('etc/tigrc')
-source=("https://github.com/jonas/$pkgname/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz;)
-md5sums=('c93217874652d5c970e23d188df62a7c')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install install-doc-man
-
-  install -Dm0644 contrib/tig-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/tig"
-}

Copied: tig/repos/community-x86_64/PKGBUILD (from rev 227200, 
tig/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-05-06 15:29:28 UTC (rev 227201)
@@ -0,0 +1,32 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Loui Chang 
+# Contributor: Geoffroy Carrier 
+# Contributor: Nathan Jones 
+
+pkgname=tig
+pkgver=2.2.2
+pkgrel=1
+pkgdesc='Text-mode interface for Git.'
+depends=('git' 'ncurses')
+makedepends=('asciidoc' 'xmlto')
+url='http://jonas.nitro.dk/tig/'
+license=('GPL')
+arch=('i686' 'x86_64')
+backup=('etc/tigrc')

[arch-commits] Commit in hefur/repos (10 files)

2017-05-06 Thread Pierre Schmitz
Date: Saturday, May 6, 2017 @ 15:15:44
  Author: pierre
Revision: 295359

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

Added:
  hefur/repos/staging-i686/
  hefur/repos/staging-i686/PKGBUILD
(from rev 295358, hefur/trunk/PKGBUILD)
  hefur/repos/staging-i686/hefurd.service
(from rev 295358, hefur/trunk/hefurd.service)
  hefur/repos/staging-i686/sysusers.conf
(from rev 295358, hefur/trunk/sysusers.conf)
  hefur/repos/staging-i686/tmpfiles.conf
(from rev 295358, hefur/trunk/tmpfiles.conf)
  hefur/repos/staging-x86_64/
  hefur/repos/staging-x86_64/PKGBUILD
(from rev 295358, hefur/trunk/PKGBUILD)
  hefur/repos/staging-x86_64/hefurd.service
(from rev 295358, hefur/trunk/hefurd.service)
  hefur/repos/staging-x86_64/sysusers.conf
(from rev 295358, hefur/trunk/sysusers.conf)
  hefur/repos/staging-x86_64/tmpfiles.conf
(from rev 295358, hefur/trunk/tmpfiles.conf)

---+
 staging-i686/PKGBUILD |   36 
 staging-i686/hefurd.service   |   12 
 staging-i686/sysusers.conf|1 +
 staging-i686/tmpfiles.conf|2 ++
 staging-x86_64/PKGBUILD   |   36 
 staging-x86_64/hefurd.service |   12 
 staging-x86_64/sysusers.conf  |1 +
 staging-x86_64/tmpfiles.conf  |2 ++
 8 files changed, 102 insertions(+)

Copied: hefur/repos/staging-i686/PKGBUILD (from rev 295358, 
hefur/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-05-06 15:15:44 UTC (rev 295359)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+# Contributor: Alexandre Bique 
+
+pkgname=hefur
+pkgver=0.4
+pkgrel=12
+pkgdesc='A standalone and lightweight BitTorrent tracker'
+arch=('i686' 'x86_64')
+url='http://github.com/abique/hefur'
+license=('MIT')
+makedepends=('cmake')
+depends=('gnutls' 'xz' 'protobuf')
+source=("https://github.com/downloads/abique/${pkgname}/${pkgname}-${pkgver}.tar.xz;
+'hefurd.service' 'tmpfiles.conf' 'sysusers.conf')
+md5sums=('f0461363f38105140a1f119a3b97d818'
+ '3107be29769b8afde3574dc6e31d5b6a'
+ 'b884385d6c87c350172427da4ba2688f'
+ '7971708a1fe25c1b51e0a05e812f17c9')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   mkdir build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX=/usr ..
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}/build
+   DESTDIR=${pkgdir} make install
+   install -D -m644 ${srcdir}/hefurd.service 
${pkgdir}/usr/lib/systemd/system/hefurd.service
+   install -D -m644 ${srcdir}/tmpfiles.conf 
${pkgdir}/usr/lib/tmpfiles.d/hefurd.conf
+   install -D -m644 ${srcdir}/sysusers.conf 
${pkgdir}/usr/lib/sysusers.d/hefurd.conf
+   install -D -m644 ${srcdir}/${pkgname}-${pkgver}/LICENSE 
${pkgdir}/usr/share/licenses/hefur/LICENSE
+}

Copied: hefur/repos/staging-i686/hefurd.service (from rev 295358, 
hefur/trunk/hefurd.service)
===
--- staging-i686/hefurd.service (rev 0)
+++ staging-i686/hefurd.service 2017-05-06 15:15:44 UTC (rev 295359)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Hefur BitTorrent tracker
+After=network.target
+
+[Service]
+ExecStart=/usr/bin/hefurd -torrent-dir /var/lib/hefurd
+User=hefur
+Group=hefur
+CPUSchedulingPolicy=batch
+
+[Install]
+WantedBy=multi-user.target

Copied: hefur/repos/staging-i686/sysusers.conf (from rev 295358, 
hefur/trunk/sysusers.conf)
===
--- staging-i686/sysusers.conf  (rev 0)
+++ staging-i686/sysusers.conf  2017-05-06 15:15:44 UTC (rev 295359)
@@ -0,0 +1 @@
+u hefur - - /var/lib/hefurd

Copied: hefur/repos/staging-i686/tmpfiles.conf (from rev 295358, 
hefur/trunk/tmpfiles.conf)
===
--- staging-i686/tmpfiles.conf  (rev 0)
+++ staging-i686/tmpfiles.conf  2017-05-06 15:15:44 UTC (rev 295359)
@@ -0,0 +1,2 @@
+d /run/hefur - hefur hefur -
+d /var/lib/hefurd - hefur hefur -

Copied: hefur/repos/staging-x86_64/PKGBUILD (from rev 295358, 
hefur/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-05-06 15:15:44 UTC (rev 295359)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+# Contributor: Alexandre Bique 
+
+pkgname=hefur
+pkgver=0.4
+pkgrel=12
+pkgdesc='A standalone and lightweight BitTorrent tracker'
+arch=('i686' 'x86_64')
+url='http://github.com/abique/hefur'
+license=('MIT')
+makedepends=('cmake')
+depends=('gnutls' 'xz' 'protobuf')

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

2017-05-06 Thread Pierre Schmitz
Date: Saturday, May 6, 2017 @ 15:15:25
  Author: pierre
Revision: 295358

upgpkg: hefur 0.4-12

protobuf 3.3.0 rebuild

Modified:
  hefur/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 15:00:49 UTC (rev 295357)
+++ PKGBUILD2017-05-06 15:15:25 UTC (rev 295358)
@@ -4,7 +4,7 @@
 
 pkgname=hefur
 pkgver=0.4
-pkgrel=11
+pkgrel=12
 pkgdesc='A standalone and lightweight BitTorrent tracker'
 arch=('i686' 'x86_64')
 url='http://github.com/abique/hefur'


[arch-commits] Commit in lib32-wxgtk/repos/multilib-x86_64 (6 files)

2017-05-06 Thread Maxime Gauduin
Date: Saturday, May 6, 2017 @ 15:11:47
  Author: alucryd
Revision: 227199

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-wxgtk/repos/multilib-x86_64/PKGBUILD
(from rev 227198, lib32-wxgtk/trunk/PKGBUILD)
  lib32-wxgtk/repos/multilib-x86_64/make-abicheck-non-fatal.patch
(from rev 227198, lib32-wxgtk/trunk/make-abicheck-non-fatal.patch)
  lib32-wxgtk/repos/multilib-x86_64/wxGTK-collision.patch
(from rev 227198, lib32-wxgtk/trunk/wxGTK-collision.patch)
Deleted:
  lib32-wxgtk/repos/multilib-x86_64/PKGBUILD
  lib32-wxgtk/repos/multilib-x86_64/make-abicheck-non-fatal.patch
  lib32-wxgtk/repos/multilib-x86_64/wxGTK-collision.patch

---+
 PKGBUILD  |  127 +++-
 make-abicheck-non-fatal.patch |   32 +-
 wxGTK-collision.patch |   54 -
 3 files changed, 105 insertions(+), 108 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-06 15:11:33 UTC (rev 227198)
+++ PKGBUILD2017-05-06 15:11:47 UTC (rev 227199)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Eric Bélanger 
-
-pkgname=lib32-wxgtk
-pkgver=3.0.2
-pkgrel=6
-pkgdesc='GTK+ implementation of wxWidgets API for GUI'
-arch=('x86_64')
-url='http://wxwidgets.org'
-license=('custom:wxWindows')
-depends=('lib32-gtk2' 'lib32-libsm' "wxgtk=${pkgver}")
-makedepends=('gcc-multilib' 'lib32-glu')
-options=('!emptydirs')
-source=("http://downloads.sourceforge.net/wxwindows/wxWidgets-${pkgver}.tar.bz2;
-'make-abicheck-non-fatal.patch'
-'wxGTK-collision.patch')
-sha256sums=('346879dc554f3ab8d6da2704f651ecb504a22e9d31c17ef5449b129ed711585d'
-'d4c2d070a06eb63f0a018c8cf687589e5ffdec601225b4d16a268ffe390fb58b'
-'c73c51f4b65a779462a4e0923a7e3bc7fe28457258fc8bfb5d843d87df119364')
-
-prepare() {
-  cd wx*-${pkgver}
-
-  patch -Np1 -i ../make-abicheck-non-fatal.patch
-  patch -Np1 -i ../wxGTK-collision.patch
-}
-
-
-build() {
-  cd wxWidgets-${pkgver}
-
-  export CC='gcc -m32'
-  export CXX='g++ -m32'
-  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
-  export CFLAGS="-I/usr/include/libtiff32 $CFLAGS"
-  export CXXFLAGS="-I/usr/include/libtiff32 $CXXFLAGS"
-
-  ./configure \
---prefix='/usr' \
---libdir='/usr/lib32' \
---enable-graphics_ctx \
---enable-unicode \
---disable-{mediactrl,webview} \
---disable-precomp-headers \
---with-gtk='2' \
---with-lib{jpeg,png,tiff,xpm}='sys' \
---with-opengl \
---with-regex='builtin' \
---without-libnotify
-  make
-  make -C locale allmo
-}
-
-package() {
-  cd wxWidgets-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/usr/{include,share}
-
-  install -dm 755 "${pkgdir}"/usr/share/licenses
-  ln -s wxgtk "${pkgdir}"/usr/share/licenses/lib32-wxgtk
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-wxgtk/repos/multilib-x86_64/PKGBUILD (from rev 227198, 
lib32-wxgtk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-06 15:11:47 UTC (rev 227199)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Eric Bélanger 
+
+pkgname=lib32-wxgtk
+pkgver=3.0.3
+pkgrel=1
+pkgdesc='GTK+ implementation of wxWidgets API for GUI'
+arch=('x86_64')
+url='http://wxwidgets.org'
+license=('custom:wxWindows')
+depends=('lib32-gtk2' 'lib32-libsm' 'wxgtk')
+makedepends=('gcc-multilib' 'lib32-glu')
+options=('!emptydirs')
+source=("https://github.com/wxWidgets/wxWidgets/releases/download/v${pkgver}/wxWidgets-${pkgver}.tar.bz2;
+'make-abicheck-non-fatal.patch')
+sha256sums=('08c8033f48ec1b23520f036cde37b5ae925a6a65f137ded665633ca159b9307b'
+'d4c2d070a06eb63f0a018c8cf687589e5ffdec601225b4d16a268ffe390fb58b')
+
+prepare() {
+  cd wxWidgets-${pkgver}
+
+  patch -Np1 -i ../make-abicheck-non-fatal.patch
+}
+
+build() {
+  cd wxWidgets-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+  export CFLAGS="-I/usr/include/libtiff32 $CFLAGS"
+  export CXXFLAGS="-I/usr/include/libtiff32 $CXXFLAGS"
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--enable-graphics_ctx \
+--enable-unicode \
+--disable-mediactrl \
+--disable-precomp-headers \
+--disable-webview \
+--with-gtk='2' \
+--with-lib{jpeg,png,tiff,xpm}='sys' \
+--with-opengl \
+--with-regex='builtin' \
+--without-libnotify
+  make
+  make -C locale allmo
+}
+
+package() {
+  cd wxWidgets-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{include,share}
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses
+  ln -s wxgtk "${pkgdir}"/usr/share/licenses/lib32-wxgtk
+}
+
+# vim: ts=2 sw=2 et:

Deleted: make-abicheck-non-fatal.patch

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

2017-05-06 Thread Maxime Gauduin
Date: Saturday, May 6, 2017 @ 15:11:33
  Author: alucryd
Revision: 227198

upgpkg: lib32-wxgtk 3.0.3-1

Modified:
  lib32-wxgtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 15:07:04 UTC (rev 227197)
+++ PKGBUILD2017-05-06 15:11:33 UTC (rev 227198)
@@ -3,30 +3,26 @@
 # Contributor: Eric Bélanger 
 
 pkgname=lib32-wxgtk
-pkgver=3.0.2
-pkgrel=6
+pkgver=3.0.3
+pkgrel=1
 pkgdesc='GTK+ implementation of wxWidgets API for GUI'
 arch=('x86_64')
 url='http://wxwidgets.org'
 license=('custom:wxWindows')
-depends=('lib32-gtk2' 'lib32-libsm' "wxgtk=${pkgver}")
+depends=('lib32-gtk2' 'lib32-libsm' 'wxgtk')
 makedepends=('gcc-multilib' 'lib32-glu')
 options=('!emptydirs')
-source=("http://downloads.sourceforge.net/wxwindows/wxWidgets-${pkgver}.tar.bz2;
-'make-abicheck-non-fatal.patch'
-'wxGTK-collision.patch')
-sha256sums=('346879dc554f3ab8d6da2704f651ecb504a22e9d31c17ef5449b129ed711585d'
-'d4c2d070a06eb63f0a018c8cf687589e5ffdec601225b4d16a268ffe390fb58b'
-'c73c51f4b65a779462a4e0923a7e3bc7fe28457258fc8bfb5d843d87df119364')
+source=("https://github.com/wxWidgets/wxWidgets/releases/download/v${pkgver}/wxWidgets-${pkgver}.tar.bz2;
+'make-abicheck-non-fatal.patch')
+sha256sums=('08c8033f48ec1b23520f036cde37b5ae925a6a65f137ded665633ca159b9307b'
+'d4c2d070a06eb63f0a018c8cf687589e5ffdec601225b4d16a268ffe390fb58b')
 
 prepare() {
-  cd wx*-${pkgver}
+  cd wxWidgets-${pkgver}
 
   patch -Np1 -i ../make-abicheck-non-fatal.patch
-  patch -Np1 -i ../wxGTK-collision.patch
 }
 
-
 build() {
   cd wxWidgets-${pkgver}
 
@@ -41,8 +37,9 @@
 --libdir='/usr/lib32' \
 --enable-graphics_ctx \
 --enable-unicode \
---disable-{mediactrl,webview} \
+--disable-mediactrl \
 --disable-precomp-headers \
+--disable-webview \
 --with-gtk='2' \
 --with-lib{jpeg,png,tiff,xpm}='sys' \
 --with-opengl \


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

2017-05-06 Thread Sven-Hendrik Haase
Date: Saturday, May 6, 2017 @ 15:06:48
  Author: svenstaro
Revision: 227196

upgpkg: neovim 0.2.0-2

Add .desktop

Modified:
  neovim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 14:43:54 UTC (rev 227195)
+++ PKGBUILD2017-05-06 15:06:48 UTC (rev 227196)
@@ -4,7 +4,7 @@
 
 pkgname=neovim
 pkgver=0.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Fork of Vim aiming to improve user experience, plugins, and GUIs'
 arch=('i686' 'x86_64')
 url='https://neovim.io'
@@ -39,7 +39,10 @@
 package() {
   cd "${srcdir}/build"
   make DESTDIR="${pkgdir}" install
-  install -Dm644 "${srcdir}/neovim-${pkgver}"/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  cd "${srcdir}/neovim-${pkgver}"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm644 runtime/nvim.desktop 
"${pkgdir}/usr/share/applications/nvim.desktop"
+  install -Dm644 runtime/nvim.png "${pkgdir}/usr/share/pixmaps/nvim.png"
 }
 
 # vim:set sw=2 sts=2 et:


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

2017-05-06 Thread Sven-Hendrik Haase
Date: Saturday, May 6, 2017 @ 15:07:04
  Author: svenstaro
Revision: 227197

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

Added:
  neovim/repos/community-i686/PKGBUILD
(from rev 227196, neovim/trunk/PKGBUILD)
  neovim/repos/community-i686/neovim.install
(from rev 227196, neovim/trunk/neovim.install)
  neovim/repos/community-x86_64/PKGBUILD
(from rev 227196, neovim/trunk/PKGBUILD)
  neovim/repos/community-x86_64/neovim.install
(from rev 227196, neovim/trunk/neovim.install)
Deleted:
  neovim/repos/community-i686/PKGBUILD
  neovim/repos/community-i686/neovim.install
  neovim/repos/community-x86_64/PKGBUILD
  neovim/repos/community-x86_64/neovim.install

-+
 /PKGBUILD   |   96 ++
 /neovim.install |   20 +++
 community-i686/PKGBUILD |   45 -
 community-i686/neovim.install   |   10 ---
 community-x86_64/PKGBUILD   |   45 -
 community-x86_64/neovim.install |   10 ---
 6 files changed, 116 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-06 15:06:48 UTC (rev 227196)
+++ community-i686/PKGBUILD 2017-05-06 15:07:04 UTC (rev 227197)
@@ -1,45 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Florian Walch 
-# Contributor: Florian Hahn 
-
-pkgname=neovim
-pkgver=0.2.0
-pkgrel=1
-pkgdesc='Fork of Vim aiming to improve user experience, plugins, and GUIs'
-arch=('i686' 'x86_64')
-url='https://neovim.io'
-license=('custom:neovim')
-depends=('jemalloc' 'libtermkey' 'libuv' 'msgpack-c' 'unibilium' 'libvterm')
-makedepends=('cmake' 'luajit' 'lua51-mpack' 'lua51-lpeg' 'gperf')
-optdepends=('python2-neovim: for Python 2 plugin support (see :help 
nvim-python)'
-'python-neovim: for Python 3 plugin support (see :help 
nvim-python)'
-'xclip: for clipboard support (or xsel) (see :help nvim-clipboard)'
-'xsel: for clipboard support (or xclip) (see :help 
nvim-clipboard)')
-source=("https://github.com/neovim/neovim/archive/v${pkgver}.tar.gz;)
-sha256sums=('72e263f9d23fe60403d53a52d4c95026b0be428c1b9c02b80ab55166ea3f62b5')
-install=neovim.install
-
-build() {
-  mkdir -p "${srcdir}/build"
-  cd "${srcdir}/build"
-
-  cmake "../neovim-${pkgver}" \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DENABLE_JEMALLOC=ON
-  make
-}
-
-check() {
-  cd "${srcdir}/build"
-  ./bin/nvim --version
-  ./bin/nvim --headless -u NONE -i NONE -c ':quit'
-}
-
-package() {
-  cd "${srcdir}/build"
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 "${srcdir}/neovim-${pkgver}"/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim:set sw=2 sts=2 et:

Copied: neovim/repos/community-i686/PKGBUILD (from rev 227196, 
neovim/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-06 15:07:04 UTC (rev 227197)
@@ -0,0 +1,48 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Florian Walch 
+# Contributor: Florian Hahn 
+
+pkgname=neovim
+pkgver=0.2.0
+pkgrel=2
+pkgdesc='Fork of Vim aiming to improve user experience, plugins, and GUIs'
+arch=('i686' 'x86_64')
+url='https://neovim.io'
+license=('custom:neovim')
+depends=('jemalloc' 'libtermkey' 'libuv' 'msgpack-c' 'unibilium' 'libvterm')
+makedepends=('cmake' 'luajit' 'lua51-mpack' 'lua51-lpeg' 'gperf')
+optdepends=('python2-neovim: for Python 2 plugin support (see :help 
nvim-python)'
+'python-neovim: for Python 3 plugin support (see :help 
nvim-python)'
+'xclip: for clipboard support (or xsel) (see :help nvim-clipboard)'
+'xsel: for clipboard support (or xclip) (see :help 
nvim-clipboard)')
+source=("https://github.com/neovim/neovim/archive/v${pkgver}.tar.gz;)
+sha256sums=('72e263f9d23fe60403d53a52d4c95026b0be428c1b9c02b80ab55166ea3f62b5')
+install=neovim.install
+
+build() {
+  mkdir -p "${srcdir}/build"
+  cd "${srcdir}/build"
+
+  cmake "../neovim-${pkgver}" \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DENABLE_JEMALLOC=ON
+  make
+}
+
+check() {
+  cd "${srcdir}/build"
+  ./bin/nvim --version
+  ./bin/nvim --headless -u NONE -i NONE -c ':quit'
+}
+
+package() {
+  cd "${srcdir}/build"
+  make DESTDIR="${pkgdir}" install
+  cd "${srcdir}/neovim-${pkgver}"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm644 runtime/nvim.desktop 
"${pkgdir}/usr/share/applications/nvim.desktop"
+  install -Dm644 runtime/nvim.png "${pkgdir}/usr/share/pixmaps/nvim.png"
+}
+
+# vim:set sw=2 sts=2 et:

Deleted: community-i686/neovim.install

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

2017-05-06 Thread Lukas Fleischer
Date: Saturday, May 6, 2017 @ 15:00:49
  Author: lfleischer
Revision: 295357

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

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

-+
 staging-i686/PKGBUILD   |   96 ++
 staging-x86_64/PKGBUILD |   96 ++
 2 files changed, 192 insertions(+)

Copied: protobuf/repos/staging-i686/PKGBUILD (from rev 295356, 
protobuf/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-05-06 15:00:49 UTC (rev 295357)
@@ -0,0 +1,96 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Aleksey Filippov 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Thomas S Hatch 
+# Contributor: Geoffroy Carrier 
+# Contributor: Daniel J Griffiths 
+
+pkgbase='protobuf'
+pkgname=('protobuf' 'python2-protobuf' 'python-protobuf')
+pkgver=3.3.0
+_gtestver=1.8.0
+pkgrel=1
+pkgdesc="Protocol Buffers - Google's data interchange format"
+arch=('i686' 'x86_64')
+url='https://developers.google.com/protocol-buffers/'
+license=('BSD')
+depends=('gcc-libs' 'zlib')
+makedepends=('unzip' 'python-setuptools' 'python2-setuptools' 'clang')
+source=("$pkgbase-$pkgver.tgz::https://github.com/google/${pkgbase}/archive/v${pkgver}.tar.gz;
+
"gtest-${_gtestver}.tar.gz::https://github.com/google/googletest/archive/release-${_gtestver}.tar.gz;)
+md5sums=('10644296984c7cbdd1e8436e88b069d2'
+ '16877098823401d1bf2ed7891d7dce36')
+
+prepare() {
+  cd "$pkgbase-$pkgver"
+
+  rm -rf gmock && cp -r "$srcdir/googletest-release-${_gtestver}/googlemock" 
gmock
+  rm -rf googletest && cp -r 
"$srcdir/googletest-release-${_gtestver}/googletest" googletest
+  ln -sf ../googletest gmock/gtest
+
+  sed -r 's|/usr/bin/env python|/usr/bin/env python2|' -i 
googletest/scripts/*.py
+}
+
+build() {
+  # GCC is stuck on 
src/google/protobuf/util/internal/protostream_objectsource_test.cc
+  # and src/google/protobuf/util/internal/protostream_objectwriter_test.cc.
+  export CC=/usr/bin/clang CXX=/usr/bin/clang++
+
+  cd "$srcdir/$pkgbase-$pkgver"
+  ./autogen.sh
+
+  cd "$srcdir/$pkgbase-$pkgver/googletest"
+  ./configure
+  make
+
+  cd "$srcdir/$pkgbase-$pkgver/gmock"
+  ./configure
+  make
+
+  cd "$srcdir/$pkgbase-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  make -C "$srcdir/$pkgbase-$pkgver" check
+}
+
+package_protobuf() {
+  conflicts=('protobuf' 'protobuf-cpp')
+  provides=('protobuf' 'protobuf-cpp')
+  replaces=('protobuf-cpp')
+
+  cd "$srcdir/$pkgbase-$pkgver"
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 editors/protobuf-mode.el 
"$pkgdir"/usr/share/emacs/site-lisp/protobuf-mode.el
+}
+
+package_python2-protobuf() {
+  pkgdesc='Python 2 bindings for Google Protocol Buffers'
+  depends=('python2' 'python2-six' "protobuf=$pkgver")
+  conflicts=('python2-protobuf')
+  provides=('python2-protobuf')
+
+  cd "$srcdir/$pkgbase-$pkgver/python"
+  python2 setup.py install --root="$pkgdir"
+
+  install -d "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s "/usr/share/licenses/$pkgbase/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
+}
+
+package_python-protobuf() {
+  pkgdesc='Python 3 bindings for Google Protocol Buffers'
+  depends=('python' 'python-six' "protobuf=$pkgver")
+  conflicts=('python-protobuf')
+  provides=('python-protobuf')
+
+  cd "$srcdir/$pkgbase-$pkgver/python"
+  python3 setup.py install --root="$pkgdir"
+
+  install -d "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s "/usr/share/licenses/$pkgbase/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
+}

Copied: protobuf/repos/staging-x86_64/PKGBUILD (from rev 295356, 
protobuf/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-05-06 15:00:49 UTC (rev 295357)
@@ -0,0 +1,96 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Aleksey Filippov 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Thomas S Hatch 
+# Contributor: Geoffroy Carrier 
+# Contributor: Daniel J Griffiths 
+
+pkgbase='protobuf'

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

2017-05-06 Thread Lukas Fleischer
Date: Saturday, May 6, 2017 @ 15:00:11
  Author: lfleischer
Revision: 295356

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

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

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

Copied: protobuf/repos/community-staging-i686/PKGBUILD (from rev 295355, 
protobuf/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-06 15:00:11 UTC (rev 295356)
@@ -0,0 +1,96 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Aleksey Filippov 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Thomas S Hatch 
+# Contributor: Geoffroy Carrier 
+# Contributor: Daniel J Griffiths 
+
+pkgbase='protobuf'
+pkgname=('protobuf' 'python2-protobuf' 'python-protobuf')
+pkgver=3.3.0
+_gtestver=1.8.0
+pkgrel=1
+pkgdesc="Protocol Buffers - Google's data interchange format"
+arch=('i686' 'x86_64')
+url='https://developers.google.com/protocol-buffers/'
+license=('BSD')
+depends=('gcc-libs' 'zlib')
+makedepends=('unzip' 'python-setuptools' 'python2-setuptools' 'clang')
+source=("$pkgbase-$pkgver.tgz::https://github.com/google/${pkgbase}/archive/v${pkgver}.tar.gz;
+
"gtest-${_gtestver}.tar.gz::https://github.com/google/googletest/archive/release-${_gtestver}.tar.gz;)
+md5sums=('10644296984c7cbdd1e8436e88b069d2'
+ '16877098823401d1bf2ed7891d7dce36')
+
+prepare() {
+  cd "$pkgbase-$pkgver"
+
+  rm -rf gmock && cp -r "$srcdir/googletest-release-${_gtestver}/googlemock" 
gmock
+  rm -rf googletest && cp -r 
"$srcdir/googletest-release-${_gtestver}/googletest" googletest
+  ln -sf ../googletest gmock/gtest
+
+  sed -r 's|/usr/bin/env python|/usr/bin/env python2|' -i 
googletest/scripts/*.py
+}
+
+build() {
+  # GCC is stuck on 
src/google/protobuf/util/internal/protostream_objectsource_test.cc
+  # and src/google/protobuf/util/internal/protostream_objectwriter_test.cc.
+  export CC=/usr/bin/clang CXX=/usr/bin/clang++
+
+  cd "$srcdir/$pkgbase-$pkgver"
+  ./autogen.sh
+
+  cd "$srcdir/$pkgbase-$pkgver/googletest"
+  ./configure
+  make
+
+  cd "$srcdir/$pkgbase-$pkgver/gmock"
+  ./configure
+  make
+
+  cd "$srcdir/$pkgbase-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  make -C "$srcdir/$pkgbase-$pkgver" check
+}
+
+package_protobuf() {
+  conflicts=('protobuf' 'protobuf-cpp')
+  provides=('protobuf' 'protobuf-cpp')
+  replaces=('protobuf-cpp')
+
+  cd "$srcdir/$pkgbase-$pkgver"
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 editors/protobuf-mode.el 
"$pkgdir"/usr/share/emacs/site-lisp/protobuf-mode.el
+}
+
+package_python2-protobuf() {
+  pkgdesc='Python 2 bindings for Google Protocol Buffers'
+  depends=('python2' 'python2-six' "protobuf=$pkgver")
+  conflicts=('python2-protobuf')
+  provides=('python2-protobuf')
+
+  cd "$srcdir/$pkgbase-$pkgver/python"
+  python2 setup.py install --root="$pkgdir"
+
+  install -d "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s "/usr/share/licenses/$pkgbase/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
+}
+
+package_python-protobuf() {
+  pkgdesc='Python 3 bindings for Google Protocol Buffers'
+  depends=('python' 'python-six' "protobuf=$pkgver")
+  conflicts=('python-protobuf')
+  provides=('python-protobuf')
+
+  cd "$srcdir/$pkgbase-$pkgver/python"
+  python3 setup.py install --root="$pkgdir"
+
+  install -d "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s "/usr/share/licenses/$pkgbase/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
+}

Copied: protobuf/repos/community-staging-x86_64/PKGBUILD (from rev 295355, 
protobuf/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-06 15:00:11 UTC (rev 295356)
@@ -0,0 +1,96 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Aleksey Filippov 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Thomas S Hatch 
+# Contributor: Geoffroy Carrier 
+# Contributor: Daniel J Griffiths 
+

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

2017-05-06 Thread Lukas Fleischer
Date: Saturday, May 6, 2017 @ 15:00:02
  Author: lfleischer
Revision: 295355

upgpkg: protobuf 3.3.0-1

Upstream update.

Modified:
  protobuf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 07:38:04 UTC (rev 295354)
+++ PKGBUILD2017-05-06 15:00:02 UTC (rev 295355)
@@ -8,7 +8,7 @@
 
 pkgbase='protobuf'
 pkgname=('protobuf' 'python2-protobuf' 'python-protobuf')
-pkgver=3.2.1
+pkgver=3.3.0
 _gtestver=1.8.0
 pkgrel=1
 pkgdesc="Protocol Buffers - Google's data interchange format"
@@ -19,7 +19,7 @@
 makedepends=('unzip' 'python-setuptools' 'python2-setuptools' 'clang')
 
source=("$pkgbase-$pkgver.tgz::https://github.com/google/${pkgbase}/archive/v${pkgver}.tar.gz;
 
"gtest-${_gtestver}.tar.gz::https://github.com/google/googletest/archive/release-${_gtestver}.tar.gz;)
-md5sums=('94d3a8148c35cedd2db953245e057a67'
+md5sums=('10644296984c7cbdd1e8436e88b069d2'
  '16877098823401d1bf2ed7891d7dce36')
 
 prepare() {


[arch-commits] Commit in lib32-gtk2/repos/multilib-x86_64 (6 files)

2017-05-06 Thread Maxime Gauduin
Date: Saturday, May 6, 2017 @ 14:43:54
  Author: alucryd
Revision: 227195

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-gtk2/repos/multilib-x86_64/PKGBUILD
(from rev 227194, lib32-gtk2/trunk/PKGBUILD)
  lib32-gtk2/repos/multilib-x86_64/gtk2.install
(from rev 227194, lib32-gtk2/trunk/gtk2.install)
  lib32-gtk2/repos/multilib-x86_64/xid-collision-debug.patch
(from rev 227194, lib32-gtk2/trunk/xid-collision-debug.patch)
Deleted:
  lib32-gtk2/repos/multilib-x86_64/PKGBUILD
  lib32-gtk2/repos/multilib-x86_64/gtk2.install
  lib32-gtk2/repos/multilib-x86_64/xid-collision-debug.patch

---+
 PKGBUILD  |  118 ++--
 gtk2.install  |   34 ++--
 xid-collision-debug.patch |   30 +--
 3 files changed, 91 insertions(+), 91 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-06 14:43:42 UTC (rev 227194)
+++ PKGBUILD2017-05-06 14:43:54 UTC (rev 227195)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Ionut Biru 
-# Contributor: Mikko Seppälä 
-
-_pkgbasename=gtk2
-pkgname=lib32-$_pkgbasename
-pkgver=2.24.30
-pkgrel=1
-pkgdesc="GObject-based multi-platform GUI toolkit (legacy) (32-bit)"
-arch=('x86_64')
-url="http://www.gtk.org/;
-install=gtk2.install
-depends=(lib32-{'atk>=1.30.0','pango>=1.28.0','cairo>=1.10.0','gdk-pixbuf2>=2.22.1'}
- 
lib32-lib{'cups>=1.4.4',xcursor,'xrandr>=1.3','xi>=1.3',xinerama,xcomposite,xdamage}
- $_pkgbasename)
-options=('!libtool' '!docs')
-license=('LGPL')
-source=(https://download.gnome.org/sources/gtk+/2.24/gtk+-${pkgver}.tar.xz
-xid-collision-debug.patch)
-sha256sums=('0d15cec3b6d55c60eac205b1f3ba81a1ed4eadd9d0f8e7c508bc7065d0c4ca50'
-'d758bb93e59df15a4ea7732cf984d1c3c19dff67c94b957575efea132b8fe558')
-
-prepare() {
-  cd "${srcdir}/gtk+-${pkgver}"
-
-  patch -Np1 -i "${srcdir}/xid-collision-debug.patch"
-}
-
-build() {
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-
-  cd "${srcdir}/gtk+-${pkgver}"
-
-  CXX=/bin/false ./configure --prefix=/usr \
-  --sysconfdir=/etc \
-  --localstatedir=/var \
-  --libdir=/usr/lib32 \
-  --with-xinput=yes
-
-  #https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd "${srcdir}/gtk+-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/etc
-  rm -rf "${pkgdir}"/usr/{include,share}
-
-  cd "${pkgdir}"/usr/bin
-  mv gtk-query-immodules-2.0 gtk-query-immodules-2.0-32
-  rm -f gtk-builder-convert gtk-demo gtk-update-icon-cache
-}

Copied: lib32-gtk2/repos/multilib-x86_64/PKGBUILD (from rev 227194, 
lib32-gtk2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-06 14:43:54 UTC (rev 227195)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Mikko Seppälä 
+
+_pkgbasename=gtk2
+pkgname=lib32-$_pkgbasename
+pkgver=2.24.31
+pkgrel=1
+pkgdesc="GObject-based multi-platform GUI toolkit (legacy) (32-bit)"
+arch=('x86_64')
+url="http://www.gtk.org/;
+install=gtk2.install
+depends=(lib32-{'atk>=1.30.0','pango>=1.28.0','cairo>=1.10.0','gdk-pixbuf2>=2.22.1'}
+ 
lib32-lib{'cups>=1.4.4',xcursor,'xrandr>=1.3','xi>=1.3',xinerama,xcomposite,xdamage}
+ $_pkgbasename)
+options=('!libtool' '!docs')
+license=('LGPL')
+source=(https://download.gnome.org/sources/gtk+/2.24/gtk+-${pkgver}.tar.xz
+xid-collision-debug.patch)
+sha256sums=('68c1922732c7efc08df4656a5366dcc3afdc8791513400dac276009b40954658'
+'d758bb93e59df15a4ea7732cf984d1c3c19dff67c94b957575efea132b8fe558')
+
+prepare() {
+  cd "${srcdir}/gtk+-${pkgver}"
+
+  patch -Np1 -i "${srcdir}/xid-collision-debug.patch"
+}
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  cd "${srcdir}/gtk+-${pkgver}"
+
+  CXX=/bin/false ./configure --prefix=/usr \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libdir=/usr/lib32 \
+  --with-xinput=yes
+
+  #https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd "${srcdir}/gtk+-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/etc
+  rm -rf "${pkgdir}"/usr/{include,share}
+
+  cd "${pkgdir}"/usr/bin
+  mv gtk-query-immodules-2.0 gtk-query-immodules-2.0-32
+  rm -f gtk-builder-convert gtk-demo gtk-update-icon-cache
+}

Deleted: gtk2.install

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

2017-05-06 Thread Maxime Gauduin
Date: Saturday, May 6, 2017 @ 14:43:42
  Author: alucryd
Revision: 227194

upgpkg: lib32-gtk2 2.24.31-1

Modified:
  lib32-gtk2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 14:34:22 UTC (rev 227193)
+++ PKGBUILD2017-05-06 14:43:42 UTC (rev 227194)
@@ -6,7 +6,7 @@
 
 _pkgbasename=gtk2
 pkgname=lib32-$_pkgbasename
-pkgver=2.24.30
+pkgver=2.24.31
 pkgrel=1
 pkgdesc="GObject-based multi-platform GUI toolkit (legacy) (32-bit)"
 arch=('x86_64')
@@ -19,7 +19,7 @@
 license=('LGPL')
 source=(https://download.gnome.org/sources/gtk+/2.24/gtk+-${pkgver}.tar.xz
 xid-collision-debug.patch)
-sha256sums=('0d15cec3b6d55c60eac205b1f3ba81a1ed4eadd9d0f8e7c508bc7065d0c4ca50'
+sha256sums=('68c1922732c7efc08df4656a5366dcc3afdc8791513400dac276009b40954658'
 'd758bb93e59df15a4ea7732cf984d1c3c19dff67c94b957575efea132b8fe558')
 
 prepare() {


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

2017-05-06 Thread Lukas Fleischer
Date: Saturday, May 6, 2017 @ 14:34:22
  Author: lfleischer
Revision: 227193

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-06 14:34:16 UTC (rev 227192)
+++ community-i686/PKGBUILD 2017-05-06 14:34:22 UTC (rev 227193)
@@ -1,28 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Chris Brannon 
-# Contributor: Paulo Matias 
-# Contributor: Anders Bergh 
-
-pkgname=luajit
-pkgver=2.0.4
-pkgrel=2
-pkgdesc='Just-in-time compiler and drop-in replacement for Lua 5.1'
-arch=('i686' 'x86_64')
-url='http://luajit.org/'
-license=('MIT')
-depends=('gcc-libs')
-source=("http://luajit.org/download/LuaJIT-$pkgver.tar.gz;)
-md5sums=('dd9c38307f2223a504cbfb96e477eca0')
-
-build() {
-  cd "LuaJIT-$pkgver"
-  make amalg PREFIX=/usr
-}
-
-package() {
-  cd "LuaJIT-$pkgver"
-
-  make install DESTDIR="$pkgdir" PREFIX=/usr
-  install -Dm644 COPYRIGHT "$pkgdir/usr/share/licenses/$pkgname/COPYRIGHT"
-}

Copied: luajit/repos/community-i686/PKGBUILD (from rev 227192, 
luajit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-06 14:34:22 UTC (rev 227193)
@@ -0,0 +1,28 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Chris Brannon 
+# Contributor: Paulo Matias 
+# Contributor: Anders Bergh 
+
+pkgname=luajit
+pkgver=2.0.5
+pkgrel=1
+pkgdesc='Just-in-time compiler and drop-in replacement for Lua 5.1'
+arch=('i686' 'x86_64')
+url='http://luajit.org/'
+license=('MIT')
+depends=('gcc-libs')
+source=("https://luajit.org/download/LuaJIT-$pkgver.tar.gz;)
+md5sums=('48353202cbcacab84ee41a5a70ea0a2c')
+
+build() {
+  cd "LuaJIT-$pkgver"
+  make amalg PREFIX=/usr
+}
+
+package() {
+  cd "LuaJIT-$pkgver"
+
+  make install DESTDIR="$pkgdir" PREFIX=/usr
+  install -Dm644 COPYRIGHT "$pkgdir/usr/share/licenses/$pkgname/COPYRIGHT"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-05-06 14:34:16 UTC (rev 227192)
+++ community-x86_64/PKGBUILD   2017-05-06 14:34:22 UTC (rev 227193)
@@ -1,28 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Chris Brannon 
-# Contributor: Paulo Matias 
-# Contributor: Anders Bergh 
-
-pkgname=luajit
-pkgver=2.0.4
-pkgrel=2
-pkgdesc='Just-in-time compiler and drop-in replacement for Lua 5.1'
-arch=('i686' 'x86_64')
-url='http://luajit.org/'
-license=('MIT')
-depends=('gcc-libs')
-source=("http://luajit.org/download/LuaJIT-$pkgver.tar.gz;)
-md5sums=('dd9c38307f2223a504cbfb96e477eca0')
-
-build() {
-  cd "LuaJIT-$pkgver"
-  make amalg PREFIX=/usr
-}
-
-package() {
-  cd "LuaJIT-$pkgver"
-
-  make install DESTDIR="$pkgdir" PREFIX=/usr
-  install -Dm644 COPYRIGHT "$pkgdir/usr/share/licenses/$pkgname/COPYRIGHT"
-}

Copied: luajit/repos/community-x86_64/PKGBUILD (from rev 227192, 
luajit/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-05-06 14:34:22 UTC (rev 227193)
@@ -0,0 +1,28 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Chris Brannon 
+# Contributor: Paulo Matias 
+# Contributor: Anders Bergh 
+
+pkgname=luajit
+pkgver=2.0.5
+pkgrel=1
+pkgdesc='Just-in-time compiler and drop-in replacement for Lua 5.1'
+arch=('i686' 'x86_64')
+url='http://luajit.org/'
+license=('MIT')
+depends=('gcc-libs')
+source=("https://luajit.org/download/LuaJIT-$pkgver.tar.gz;)
+md5sums=('48353202cbcacab84ee41a5a70ea0a2c')
+
+build() {
+  cd "LuaJIT-$pkgver"
+  make amalg PREFIX=/usr
+}
+
+package() {
+  cd "LuaJIT-$pkgver"
+
+  make install 

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

2017-05-06 Thread Lukas Fleischer
Date: Saturday, May 6, 2017 @ 14:34:16
  Author: lfleischer
Revision: 227192

upgpkg: luajit 2.0.5-1

Upstream update.

Modified:
  luajit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 14:32:56 UTC (rev 227191)
+++ PKGBUILD2017-05-06 14:34:16 UTC (rev 227192)
@@ -5,8 +5,8 @@
 # Contributor: Anders Bergh 
 
 pkgname=luajit
-pkgver=2.0.4
-pkgrel=2
+pkgver=2.0.5
+pkgrel=1
 pkgdesc='Just-in-time compiler and drop-in replacement for Lua 5.1'
 arch=('i686' 'x86_64')
 url='http://luajit.org/'
@@ -13,7 +13,7 @@
 license=('MIT')
 depends=('gcc-libs')
 source=("https://luajit.org/download/LuaJIT-$pkgver.tar.gz;)
-md5sums=('dd9c38307f2223a504cbfb96e477eca0')
+md5sums=('48353202cbcacab84ee41a5a70ea0a2c')
 
 build() {
   cd "LuaJIT-$pkgver"


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

2017-05-06 Thread Lukas Fleischer
Date: Saturday, May 6, 2017 @ 14:32:56
  Author: lfleischer
Revision: 227191

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

Added:
  tor/repos/community-i686/PKGBUILD
(from rev 227190, tor/trunk/PKGBUILD)
  tor/repos/community-i686/tor.install
(from rev 227190, tor/trunk/tor.install)
  tor/repos/community-i686/tor.service
(from rev 227190, tor/trunk/tor.service)
  tor/repos/community-i686/torrc
(from rev 227190, tor/trunk/torrc)
  tor/repos/community-x86_64/PKGBUILD
(from rev 227190, tor/trunk/PKGBUILD)
  tor/repos/community-x86_64/tor.install
(from rev 227190, tor/trunk/tor.install)
  tor/repos/community-x86_64/tor.service
(from rev 227190, tor/trunk/tor.service)
  tor/repos/community-x86_64/torrc
(from rev 227190, tor/trunk/torrc)
Deleted:
  tor/repos/community-i686/PKGBUILD
  tor/repos/community-i686/tor.install
  tor/repos/community-i686/tor.service
  tor/repos/community-i686/torrc
  tor/repos/community-x86_64/PKGBUILD
  tor/repos/community-x86_64/tor.install
  tor/repos/community-x86_64/tor.service
  tor/repos/community-x86_64/torrc

--+
 /PKGBUILD|   94 ++
 /tor.install |8 
 /tor.service |   30 +++
 /torrc   |  378 +
 community-i686/PKGBUILD  |   47 -
 community-i686/tor.install   |4 
 community-i686/tor.service   |   15 -
 community-i686/torrc |  189 
 community-x86_64/PKGBUILD|   47 -
 community-x86_64/tor.install |4 
 community-x86_64/tor.service |   15 -
 community-x86_64/torrc   |  189 
 12 files changed, 510 insertions(+), 510 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-06 14:32:44 UTC (rev 227190)
+++ community-i686/PKGBUILD 2017-05-06 14:32:56 UTC (rev 227191)
@@ -1,47 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Daniel Micay 
-# Contributor: simo 
-# Contributor: Sid Karunaratne
-
-pkgname=tor
-pkgver=0.2.9.10
-pkgrel=1
-pkgdesc='Anonymizing overlay network.'
-arch=('i686' 'x86_64')
-url='http://www.torproject.org/'
-license=('BSD')
-depends=('openssl' 'libevent' 'bash' 'libseccomp')
-optdepends=('torsocks: for torify')
-makedepends=('ca-certificates')
-backup=('etc/tor/torrc'
-'etc/tor/torrc-dist')
-install='tor.install'
-source=("https://www.torproject.org/dist/${pkgname}-${pkgver}.tar.gz"{,.asc}
-'torrc'
-'tor.service')
-md5sums=('6760a646a096b61e307b84fb5ae93cc7'
- 'SKIP'
- 'c1dd4004c63edaeaa829e01be5413cfc'
- '503cedd9679f9817b2c27916ba989a74')
-validpgpkeys=('2133BC600AB133E1D826D173FE43009C4607B1FB') # Nick Mathewson
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-
-  install -dm0700 -o 43 -g 43 "${pkgdir}/var/lib/tor"
-
-  mv "${pkgdir}/etc/tor/torrc.sample" "${pkgdir}/etc/tor/torrc-dist"
-  install -Dm0644 "${srcdir}/torrc" "${pkgdir}/etc/tor/torrc"
-  install -Dm0644 "${srcdir}/tor.service" 
"${pkgdir}/usr/lib/systemd/system/tor.service"
-
-  install -Dm0644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: tor/repos/community-i686/PKGBUILD (from rev 227190, tor/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-06 14:32:56 UTC (rev 227191)
@@ -0,0 +1,47 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Daniel Micay 
+# Contributor: simo 
+# Contributor: Sid Karunaratne
+
+pkgname=tor
+pkgver=0.3.0.6
+pkgrel=1
+pkgdesc='Anonymizing overlay network.'
+arch=('i686' 'x86_64')
+url='http://www.torproject.org/'
+license=('BSD')
+depends=('openssl' 'libevent' 'bash' 'libseccomp')
+optdepends=('torsocks: for torify')
+makedepends=('ca-certificates')
+backup=('etc/tor/torrc'
+'etc/tor/torrc-dist')
+install='tor.install'
+source=("https://www.torproject.org/dist/${pkgname}-${pkgver}.tar.gz"{,.asc}
+'torrc'
+'tor.service')
+md5sums=('d5db24b73d737632618350b5f36d5342'
+ 'SKIP'
+ 'c1dd4004c63edaeaa829e01be5413cfc'
+ '503cedd9679f9817b2c27916ba989a74')
+validpgpkeys=('2133BC600AB133E1D826D173FE43009C4607B1FB') # Nick Mathewson
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  install -dm0700 -o 43 -g 43 "${pkgdir}/var/lib/tor"
+
+  mv 

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

2017-05-06 Thread Lukas Fleischer
Date: Saturday, May 6, 2017 @ 14:32:44
  Author: lfleischer
Revision: 227190

upgpkg: tor 0.3.0.6-1

Upstream update.

Modified:
  tor/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 11:04:44 UTC (rev 227189)
+++ PKGBUILD2017-05-06 14:32:44 UTC (rev 227190)
@@ -4,7 +4,7 @@
 # Contributor: Sid Karunaratne
 
 pkgname=tor
-pkgver=0.2.9.10
+pkgver=0.3.0.6
 pkgrel=1
 pkgdesc='Anonymizing overlay network.'
 arch=('i686' 'x86_64')
@@ -19,7 +19,7 @@
 source=("https://www.torproject.org/dist/${pkgname}-${pkgver}.tar.gz"{,.asc}
 'torrc'
 'tor.service')
-md5sums=('6760a646a096b61e307b84fb5ae93cc7'
+md5sums=('d5db24b73d737632618350b5f36d5342'
  'SKIP'
  'c1dd4004c63edaeaa829e01be5413cfc'
  '503cedd9679f9817b2c27916ba989a74')


[arch-commits] Commit in openfire/repos/community-any (10 files)

2017-05-06 Thread Massimiliano Torromeo
Date: Saturday, May 6, 2017 @ 11:04:44
  Author: mtorromeo
Revision: 227189

archrelease: copy trunk to community-any

Added:
  openfire/repos/community-any/PKGBUILD
(from rev 227188, openfire/trunk/PKGBUILD)
  openfire/repos/community-any/openfire.conf
(from rev 227188, openfire/trunk/openfire.conf)
  openfire/repos/community-any/openfire.service
(from rev 227188, openfire/trunk/openfire.service)
  openfire/repos/community-any/tmpfile.conf
(from rev 227188, openfire/trunk/tmpfile.conf)
  openfire/repos/community-any/user.conf
(from rev 227188, openfire/trunk/user.conf)
Deleted:
  openfire/repos/community-any/PKGBUILD
  openfire/repos/community-any/openfire.conf
  openfire/repos/community-any/openfire.service
  openfire/repos/community-any/tmpfile.conf
  openfire/repos/community-any/user.conf

--+
 PKGBUILD |  116 ++---
 openfire.conf|6 +-
 openfire.service |   28 ++--
 tmpfile.conf |4 -
 user.conf|2 
 5 files changed, 78 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-06 11:04:31 UTC (rev 227188)
+++ PKGBUILD2017-05-06 11:04:44 UTC (rev 227189)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Pierre Schmitz 
-
-pkgname=openfire
-pkgver=4.1.3
-pkgrel=1
-pkgdesc="High performance XMPP (Jabber) server."
-arch=('any')
-url='http://www.igniterealtime.org/projects/openfire/'
-license=('GPL')
-depends=('java-runtime-headless')
-makedepends=('apache-ant')
-backup=(
-   'etc/openfire/openfire.xml' 'etc/openfire/openfire.xml' 
'etc/openfire/openfire.xml' \
-   'etc/conf.d/openfire' 'etc/openfire/security/keystore' 
'etc/openfire/security/truststore' \
-   'etc/openfire/security/client.truststore')
-source=("http://www.igniterealtime.org/downloadServlet?filename=openfire/openfire_src_${pkgver//./_}.tar.gz;
 \
-   'openfire.conf'
-  'openfire.service'
-  'user.conf'
-  'tmpfile.conf')
-
-build() {
-   cd "$srcdir"/openfire_src/build
-   rm -rf ../src/resources/nativeAuth/
-   ant openfire
-}
-
-package() {
-   cd "$pkgdir"
-   install -dm755 usr/lib usr/share/openfire/resources etc/openfire 
var/log/openfire
-
-   cd "$srcdir"
-   install -Dm644 openfire.conf "$pkgdir"/etc/conf.d/openfire
-   install -Dm644 openfire.service 
"$pkgdir"/usr/lib/systemd/system/openfire.service
-   install -Dm644 user.conf "$pkgdir"/usr/lib/sysusers.d/openfire.conf
-  install -Dm644 tmpfile.conf "$pkgdir"/usr/lib/tmpfiles.d/openfire.conf
-
-   cd openfire_src/target/openfire
-   rm -rf bin logs lib/tray.dll
-
-   cp -R conf/* "$pkgdir"/etc/openfire/
-   ln -s /etc/openfire "$pkgdir"/usr/share/openfire/conf
-
-   cp -R resources/security "$pkgdir"/etc/openfire/
-   ln -s /etc/openfire/security 
"$pkgdir"/usr/share/openfire/resources/security
-
-   cp -R plugins "$pkgdir"/usr/share/openfire/
-   cp -R resources/{database,spank} "$pkgdir"/usr/share/openfire/resources/
-   cp -R lib "$pkgdir"/usr/lib/openfire
-}
-
-sha256sums=('35c9f56f47109605157846730a54238e3d6faabd2a5ed865eebc27a3bbb36423'
-'c8a612abee90bdc9a2869e562a4bbbf596159c60adcd23368833a0e2ca27c1d4'
-'772332b66a90935ddb8075eb10eab9b95a84caa45908bb3fa5861d7fa148399c'
-'743d07158d40f3690684a078d5f35c53c819e45d4ff0c2016b0f33662363614f'
-'020333e30c121dc1ec1e4aac669fdb3bcff9b2fdca94f8a114bf33abdac91992')

Copied: openfire/repos/community-any/PKGBUILD (from rev 227188, 
openfire/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-06 11:04:44 UTC (rev 227189)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Pierre Schmitz 
+
+pkgname=openfire
+pkgver=4.1.4
+pkgrel=1
+pkgdesc="High performance XMPP (Jabber) server."
+arch=('any')
+url='http://www.igniterealtime.org/projects/openfire/'
+license=('GPL')
+depends=('java-runtime-headless')
+makedepends=('apache-ant')
+backup=(
+   'etc/openfire/openfire.xml' 'etc/openfire/openfire.xml' 
'etc/openfire/openfire.xml' \
+   'etc/conf.d/openfire' 'etc/openfire/security/keystore' 
'etc/openfire/security/truststore' \
+   'etc/openfire/security/client.truststore')
+source=("http://www.igniterealtime.org/downloadServlet?filename=openfire/openfire_src_${pkgver//./_}.tar.gz;
 \
+   'openfire.conf'
+  'openfire.service'
+  'user.conf'
+  'tmpfile.conf')
+
+build() {
+   cd "$srcdir"/openfire_src/build
+   rm -rf ../src/resources/nativeAuth/
+   ant openfire
+}
+
+package() {
+   cd "$pkgdir"
+   install -dm755 usr/lib usr/share/openfire/resources etc/openfire 
var/log/openfire
+
+   cd 

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

2017-05-06 Thread Massimiliano Torromeo
Date: Saturday, May 6, 2017 @ 11:04:31
  Author: mtorromeo
Revision: 227188

upgpkg: openfire 4.1.4-1

Modified:
  openfire/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 11:03:09 UTC (rev 227187)
+++ PKGBUILD2017-05-06 11:04:31 UTC (rev 227188)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=openfire
-pkgver=4.1.3
+pkgver=4.1.4
 pkgrel=1
 pkgdesc="High performance XMPP (Jabber) server."
 arch=('any')
@@ -51,7 +51,7 @@
cp -R lib "$pkgdir"/usr/lib/openfire
 }
 
-sha256sums=('35c9f56f47109605157846730a54238e3d6faabd2a5ed865eebc27a3bbb36423'
+sha256sums=('46aa8fe815b941c423a4575b35204a6b3c74b7746a49420d6444bc018cd2257b'
 'c8a612abee90bdc9a2869e562a4bbbf596159c60adcd23368833a0e2ca27c1d4'
 '772332b66a90935ddb8075eb10eab9b95a84caa45908bb3fa5861d7fa148399c'
 '743d07158d40f3690684a078d5f35c53c819e45d4ff0c2016b0f33662363614f'


[arch-commits] Commit in beats/repos (32 files)

2017-05-06 Thread Massimiliano Torromeo
Date: Saturday, May 6, 2017 @ 11:03:09
  Author: mtorromeo
Revision: 227187

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

Added:
  beats/repos/community-i686/PKGBUILD
(from rev 227186, beats/trunk/PKGBUILD)
  beats/repos/community-i686/filebeat-tmpfile.conf
(from rev 227186, beats/trunk/filebeat-tmpfile.conf)
  beats/repos/community-i686/filebeat.service
(from rev 227186, beats/trunk/filebeat.service)
  beats/repos/community-i686/filebeat.sysusers
(from rev 227186, beats/trunk/filebeat.sysusers)
  beats/repos/community-i686/metricbeat-tmpfile.conf
(from rev 227186, beats/trunk/metricbeat-tmpfile.conf)
  beats/repos/community-i686/metricbeat.service
(from rev 227186, beats/trunk/metricbeat.service)
  beats/repos/community-i686/packetbeat-tmpfile.conf
(from rev 227186, beats/trunk/packetbeat-tmpfile.conf)
  beats/repos/community-i686/packetbeat.service
(from rev 227186, beats/trunk/packetbeat.service)
  beats/repos/community-x86_64/PKGBUILD
(from rev 227186, beats/trunk/PKGBUILD)
  beats/repos/community-x86_64/filebeat-tmpfile.conf
(from rev 227186, beats/trunk/filebeat-tmpfile.conf)
  beats/repos/community-x86_64/filebeat.service
(from rev 227186, beats/trunk/filebeat.service)
  beats/repos/community-x86_64/filebeat.sysusers
(from rev 227186, beats/trunk/filebeat.sysusers)
  beats/repos/community-x86_64/metricbeat-tmpfile.conf
(from rev 227186, beats/trunk/metricbeat-tmpfile.conf)
  beats/repos/community-x86_64/metricbeat.service
(from rev 227186, beats/trunk/metricbeat.service)
  beats/repos/community-x86_64/packetbeat-tmpfile.conf
(from rev 227186, beats/trunk/packetbeat-tmpfile.conf)
  beats/repos/community-x86_64/packetbeat.service
(from rev 227186, beats/trunk/packetbeat.service)
Deleted:
  beats/repos/community-i686/PKGBUILD
  beats/repos/community-i686/filebeat-tmpfile.conf
  beats/repos/community-i686/filebeat.service
  beats/repos/community-i686/filebeat.sysusers
  beats/repos/community-i686/metricbeat-tmpfile.conf
  beats/repos/community-i686/metricbeat.service
  beats/repos/community-i686/packetbeat-tmpfile.conf
  beats/repos/community-i686/packetbeat.service
  beats/repos/community-x86_64/PKGBUILD
  beats/repos/community-x86_64/filebeat-tmpfile.conf
  beats/repos/community-x86_64/filebeat.service
  beats/repos/community-x86_64/filebeat.sysusers
  beats/repos/community-x86_64/metricbeat-tmpfile.conf
  beats/repos/community-x86_64/metricbeat.service
  beats/repos/community-x86_64/packetbeat-tmpfile.conf
  beats/repos/community-x86_64/packetbeat.service

--+
 /PKGBUILD|  222 +
 /filebeat-tmpfile.conf   |4 
 /filebeat.service|   24 +++
 /filebeat.sysusers   |2 
 /metricbeat-tmpfile.conf |4 
 /metricbeat.service  |   22 ++
 /packetbeat-tmpfile.conf |4 
 /packetbeat.service  |   22 ++
 community-i686/PKGBUILD  |  111 --
 community-i686/filebeat-tmpfile.conf |2 
 community-i686/filebeat.service  |   12 -
 community-i686/filebeat.sysusers |1 
 community-i686/metricbeat-tmpfile.conf   |2 
 community-i686/metricbeat.service|   11 -
 community-i686/packetbeat-tmpfile.conf   |2 
 community-i686/packetbeat.service|   11 -
 community-x86_64/PKGBUILD|  111 --
 community-x86_64/filebeat-tmpfile.conf   |2 
 community-x86_64/filebeat.service|   12 -
 community-x86_64/filebeat.sysusers   |1 
 community-x86_64/metricbeat-tmpfile.conf |2 
 community-x86_64/metricbeat.service  |   11 -
 community-x86_64/packetbeat-tmpfile.conf |2 
 community-x86_64/packetbeat.service  |   11 -
 24 files changed, 304 insertions(+), 304 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-06 11:02:29 UTC (rev 227186)
+++ community-i686/PKGBUILD 2017-05-06 11:03:09 UTC (rev 227187)
@@ -1,111 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Tyler Langlois 
-
-pkgbase=beats
-pkgname=(filebeat packetbeat metricbeat)
-pkgver=5.3.2
-pkgrel=1
-pkgdesc='Data shippers for Elasticsearch'
-arch=('i686' 'x86_64')
-url='https://www.elastic.co/products/beats'
-license=('APACHE')
-depends=('glibc')
-makedepends=('go' 'git' 'libpcap')
-optdepends=('elasticsearch: for standalone installation'
-'python: for migration script')
-options=('!strip')
-source=("https://github.com/elastic/beats/archive/v$pkgver/beats-$pkgver.tar.gz;
-"filebeat.sysusers"
-"filebeat.service"
-"packetbeat.service"
-"metricbeat.service"
-"filebeat-tmpfile.conf"
-"packetbeat-tmpfile.conf"
-

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

2017-05-06 Thread Massimiliano Torromeo
Date: Saturday, May 6, 2017 @ 11:02:29
  Author: mtorromeo
Revision: 227186

upgpkg: beats 5.4.0-1

Modified:
  beats/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 10:57:46 UTC (rev 227185)
+++ PKGBUILD2017-05-06 11:02:29 UTC (rev 227186)
@@ -3,7 +3,7 @@
 
 pkgbase=beats
 pkgname=(filebeat packetbeat metricbeat)
-pkgver=5.3.2
+pkgver=5.4.0
 pkgrel=1
 pkgdesc='Data shippers for Elasticsearch'
 arch=('i686' 'x86_64')
@@ -22,7 +22,7 @@
 "filebeat-tmpfile.conf"
 "packetbeat-tmpfile.conf"
 "metricbeat-tmpfile.conf")
-sha256sums=('e8c765531276e4731c5148bd99fad1efc799f3ec68e1d32a2fe116995f2b9e2f'
+sha256sums=('d236f9433d48b69cc2f0bf3617f17d5f2eec261acee96cc28d8b72be84afc0a7'
 '33feb3690f8b31563cc1e2da557c2aa326501ce9ccd7e0a142036902bfdb05ff'
 '4d5394cfe3299c9a6af5ac34c1ad4bcdc2e79162379cccbf00fb414eb28253c0'
 '9f4e33fc768d3500fa3428dcbfda241c6473a2cae8cc4dbadf8f61ca9f2bbec5'


[arch-commits] Commit in elasticsearch/repos/community-any (14 files)

2017-05-06 Thread Massimiliano Torromeo
Date: Saturday, May 6, 2017 @ 10:57:46
  Author: mtorromeo
Revision: 227185

archrelease: copy trunk to community-any

Added:
  elasticsearch/repos/community-any/PKGBUILD
(from rev 227184, elasticsearch/trunk/PKGBUILD)
  elasticsearch/repos/community-any/elasticsearch-sysctl.conf
(from rev 227184, elasticsearch/trunk/elasticsearch-sysctl.conf)
  elasticsearch/repos/community-any/elasticsearch-tmpfile.conf
(from rev 227184, elasticsearch/trunk/elasticsearch-tmpfile.conf)
  elasticsearch/repos/community-any/elasticsearch-user.conf
(from rev 227184, elasticsearch/trunk/elasticsearch-user.conf)
  elasticsearch/repos/community-any/elasticsearch.default
(from rev 227184, elasticsearch/trunk/elasticsearch.default)
  elasticsearch/repos/community-any/elasticsearch.service
(from rev 227184, elasticsearch/trunk/elasticsearch.service)
  elasticsearch/repos/community-any/elasticsearch@.service
(from rev 227184, elasticsearch/trunk/elasticsearch@.service)
Deleted:
  elasticsearch/repos/community-any/PKGBUILD
  elasticsearch/repos/community-any/elasticsearch-sysctl.conf
  elasticsearch/repos/community-any/elasticsearch-tmpfile.conf
  elasticsearch/repos/community-any/elasticsearch-user.conf
  elasticsearch/repos/community-any/elasticsearch.default
  elasticsearch/repos/community-any/elasticsearch.service
  elasticsearch/repos/community-any/elasticsearch@.service

+
 PKGBUILD   |  160 +--
 elasticsearch-sysctl.conf  |2 
 elasticsearch-tmpfile.conf |   12 +--
 elasticsearch-user.conf|2 
 elasticsearch.default  |   26 +++---
 elasticsearch.service  |   78 ++--
 elasticsearch@.service |   78 ++--
 7 files changed, 179 insertions(+), 179 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-06 10:57:04 UTC (rev 227184)
+++ PKGBUILD2017-05-06 10:57:46 UTC (rev 227185)
@@ -1,80 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Marcello "mererghost" Rocha 
-# Refactored by Blaž "Speed" Hrastnik 
-
-pkgname=elasticsearch
-pkgver=5.3.2
-pkgrel=1
-pkgdesc="Distributed RESTful search engine built on top of Lucene"
-arch=('any')
-url="https://www.elastic.co/products/elasticsearch;
-license=('APACHE')
-depends=('java-runtime-headless=8' 'systemd')
-source=(
-  "https://artifacts.elastic.co/downloads/$pkgname/$pkgname-$pkgver.tar.gz;
-  elasticsearch.service
-  elasticsearch@.service
-  elasticsearch-sysctl.conf
-  elasticsearch-user.conf
-  elasticsearch-tmpfile.conf
-  elasticsearch.default
-)
-sha256sums=('a94fe46bc90eb271a0d448d20e49cb02526ac032281c683c79a219240280a1e8'
-'51154ac04d90c6b534a3d86bb41c8654726a2a7b3a5a767411dfce30e7bb21fe'
-'22ec53ed1ac5231b501b2311aad4953a8210d9e72b4204c9c2facab13f8e'
-'b3feb1e9c7e7ce6b33cea6c727728ed700332aae942ca475c3bcc1d56b9f113c'
-'815f6a39db6f54bb40750c382ffbdc298d2c4c187ee8ea7e2f855923e2ff354b'
-'3173e3efa429507e6329f518699a072dfd442d9b5da7c62452a55f82334dd2b5'
-'bb74e5fb8bc28f2125e015395ab05bea117b72bfc6dadbca827694b362ee0bf8')
-
-backup=('etc/elasticsearch/elasticsearch.yml'
-'etc/elasticsearch/log4j2.properties'
-'etc/elasticsearch/jvm.options'
-'etc/default/elasticsearch')
-
-prepare() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  for script in elasticsearch{,-plugin,-translog}; do
-sed -e 's|^ES_HOME=.*dirname.*|ES_HOME=/usr/share/elasticsearch|' \
--e '/^ES_HOME=.*pwd/d' \
--e 's|$ES_HOME/config|/etc/elasticsearch|' \
--i bin/$script
-  done
-
-  sed -re 's;#\s*(path\.conf:).*$;\1 /etc/elasticsearch;' \
--e '0,/#\s*(path\.data:).*$/s;;\1 /var/lib/elasticsearch;' \
--e 's;#\s*(path\.work:).*$;\1 /tmp/elasticsearch;' \
--e 's;#\s*(path\.logs:).*$;\1 /var/log/elasticsearch;' \
--i config/elasticsearch.yml
-}
-
-package() {
-  cd "$pkgdir"
-  install -dm750 etc/elasticsearch/scripts
-  install -dm755 usr/share/elasticsearch/plugins
-  install -dm755 var/lib/elasticsearch
-  install -dm755 var/log/elasticsearch
-
-  install -Dm644 "$srcdir"/elasticsearch.service 
usr/lib/systemd/system/elasticsearch.service
-  install -Dm644 "$srcdir"/elasticsearch@.service 
usr/lib/systemd/system/elasticsearch@.service
-  install -Dm644 "$srcdir"/elasticsearch-user.conf 
usr/lib/sysusers.d/elasticsearch.conf
-  install -Dm644 "$srcdir"/elasticsearch-tmpfile.conf 
usr/lib/tmpfiles.d/elasticsearch.conf
-  install -Dm644 "$srcdir"/elasticsearch-sysctl.conf 
usr/lib/sysctl.d/elasticsearch.conf
-  install -Dm644 "$srcdir"/elasticsearch.default etc/default/elasticsearch
-
-  cd "$srcdir"/$pkgname-$pkgver
-  cp -R lib modules "$pkgdir"/usr/share/elasticsearch/
-
-   cd config
-   for conf in *; do
-   

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

2017-05-06 Thread Massimiliano Torromeo
Date: Saturday, May 6, 2017 @ 10:57:04
  Author: mtorromeo
Revision: 227184

upgpkg: elasticsearch 5.4.0-1

Modified:
  elasticsearch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-06 10:40:56 UTC (rev 227183)
+++ PKGBUILD2017-05-06 10:57:04 UTC (rev 227184)
@@ -4,7 +4,7 @@
 # Refactored by Blaž "Speed" Hrastnik 
 
 pkgname=elasticsearch
-pkgver=5.3.2
+pkgver=5.4.0
 pkgrel=1
 pkgdesc="Distributed RESTful search engine built on top of Lucene"
 arch=('any')
@@ -20,7 +20,7 @@
   elasticsearch-tmpfile.conf
   elasticsearch.default
 )
-sha256sums=('a94fe46bc90eb271a0d448d20e49cb02526ac032281c683c79a219240280a1e8'
+sha256sums=('bf74ff7efcf615febb62979e43045557dd8940eb48f111e45743c2def96e82d6'
 '51154ac04d90c6b534a3d86bb41c8654726a2a7b3a5a767411dfce30e7bb21fe'
 '22ec53ed1ac5231b501b2311aad4953a8210d9e72b4204c9c2facab13f8e'
 'b3feb1e9c7e7ce6b33cea6c727728ed700332aae942ca475c3bcc1d56b9f113c'


[arch-commits] Commit in r8168/trunk (PKGBUILD linux-4.11.patch)

2017-05-06 Thread Massimiliano Torromeo
Date: Saturday, May 6, 2017 @ 10:40:56
  Author: mtorromeo
Revision: 227183

Applied patch for removed net_device last_rx member in kernel 4.11

Added:
  r8168/trunk/linux-4.11.patch
Modified:
  r8168/trunk/PKGBUILD

--+
 PKGBUILD |   11 +--
 linux-4.11.patch |   14 ++
 2 files changed, 23 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-05 21:32:32 UTC (rev 227182)
+++ PKGBUILD2017-05-06 10:40:56 UTC (rev 227183)
@@ -13,9 +13,16 @@
 depends=('glibc' 'linux')
 makedepends=('linux-headers')
 install=$pkgname.install
-source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('aad7bccc4f625c35abe0455b2a6271e9938b76b46e11b24b4f138eb5c95db6d3')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz
+linux-4.11.patch)
+sha256sums=('aad7bccc4f625c35abe0455b2a6271e9938b76b46e11b24b4f138eb5c95db6d3'
+'21857077bd5b26a08456f97f170b2772e8cadfb331577ddb2bcb680b31c5c0d3')
 
+prepare() {
+   cd "$pkgname-$pkgver"
+   patch -p1 -i "$srcdir/linux-4.11.patch"
+}
+
 build() {
_kernver=$(pacman -Q linux | sed -r 's#.* ([0-9]+\.[0-9]+).*#\1#')
KERNEL_VERSION=$(cat 
/usr/lib/modules/extramodules-$_kernver-ARCH/version)

Added: linux-4.11.patch
===
--- linux-4.11.patch(rev 0)
+++ linux-4.11.patch2017-05-06 10:40:56 UTC (rev 227183)
@@ -0,0 +1,14 @@
+diff --git a/src/r8168_n.c b/src/r8168_n.c
+index 3c5a7e7..e2026bb 100755
+--- a/src/r8168_n.c
 b/src/r8168_n.c
+@@ -25732,7 +25732,9 @@ process_pkt:
+ if (rtl8168_rx_vlan_skb(tp, desc, skb) < 0)
+ rtl8168_rx_skb(tp, skb);
+ 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+ dev->last_rx = jiffies;
++#endif
+ RTLDEV->stats.rx_bytes += pkt_size;
+ RTLDEV->stats.rx_packets++;
+ }