[arch-commits] Commit in (vulkan-intel)

2016-07-14 Thread Laurent Carlier
Date: Friday, July 15, 2016 @ 05:38:19
  Author: lcarlier
Revision: 271883

moved in mesa package

Deleted:
  vulkan-intel/


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

2016-07-14 Thread Felix Yan
Date: Friday, July 15, 2016 @ 02:51:48
  Author: felixonmars
Revision: 182925

archrelease: copy trunk to community-any

Added:
  python-pytest-runner/repos/community-any/PKGBUILD
(from rev 182924, python-pytest-runner/trunk/PKGBUILD)
Deleted:
  python-pytest-runner/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-15 02:51:34 UTC (rev 182924)
+++ PKGBUILD2016-07-15 02:51:48 UTC (rev 182925)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-pytest-runner
-pkgname=('python-pytest-runner' 'python2-pytest-runner')
-pkgver=2.8
-pkgrel=1
-pkgdesc="Invoke py.test as distutils command with dependency resolution"
-arch=('any')
-license=('MIT')
-url="https://github.com/pytest-dev/pytest-runner;
-makedepends=('python-pytest' 'python2-pytest' 'python-setuptools_scm' 
'python2-setuptools_scm' 'git')
-source=("git+https://github.com/pytest-dev/pytest-runner.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a pytest-runner{,-py2}
-}
-
-build() {
-  cd "$srcdir/pytest-runner"
-  python setup.py build
-
-  cd "$srcdir/pytest-runner-py2"
-  python2 setup.py build
-}
-
-package_python-pytest-runner() {
-  depends=('python-pytest')
-
-  cd pytest-runner
-  python setup.py install --root="${pkgdir}" --optimize=1
-}
-
-package_python2-pytest-runner() {
-  depends=('python2-pytest')
-
-  cd pytest-runner-py2
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-}

Copied: python-pytest-runner/repos/community-any/PKGBUILD (from rev 182924, 
python-pytest-runner/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-07-15 02:51:48 UTC (rev 182925)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-pytest-runner
+pkgname=('python-pytest-runner' 'python2-pytest-runner')
+pkgver=2.9
+pkgrel=1
+pkgdesc="Invoke py.test as distutils command with dependency resolution"
+arch=('any')
+license=('MIT')
+url="https://github.com/pytest-dev/pytest-runner;
+makedepends=('python-pytest' 'python2-pytest' 'python-setuptools_scm' 
'python2-setuptools_scm' 'git')
+source=("git+https://github.com/pytest-dev/pytest-runner.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a pytest-runner{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pytest-runner
+  python setup.py build
+
+  cd "$srcdir"/pytest-runner-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/pytest-runner
+  py.test
+
+  cd "$srcdir"/pytest-runner-py2
+  py.test2
+}
+
+package_python-pytest-runner() {
+  depends=('python-pytest')
+
+  cd pytest-runner
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pytest-runner() {
+  depends=('python2-pytest')
+
+  cd pytest-runner-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2016-07-14 Thread Felix Yan
Date: Friday, July 15, 2016 @ 02:51:34
  Author: felixonmars
Revision: 182924

upgpkg: python-pytest-runner 2.9-1

Modified:
  python-pytest-runner/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-15 02:45:44 UTC (rev 182923)
+++ PKGBUILD2016-07-15 02:51:34 UTC (rev 182924)
@@ -3,7 +3,7 @@
 
 pkgbase=python-pytest-runner
 pkgname=('python-pytest-runner' 'python2-pytest-runner')
-pkgver=2.8
+pkgver=2.9
 pkgrel=1
 pkgdesc="Invoke py.test as distutils command with dependency resolution"
 arch=('any')
@@ -18,18 +18,27 @@
 }
 
 build() {
-  cd "$srcdir/pytest-runner"
+  cd "$srcdir"/pytest-runner
   python setup.py build
 
-  cd "$srcdir/pytest-runner-py2"
+  cd "$srcdir"/pytest-runner-py2
   python2 setup.py build
 }
 
+check() {
+  cd "$srcdir"/pytest-runner
+  py.test
+
+  cd "$srcdir"/pytest-runner-py2
+  py.test2
+}
+
 package_python-pytest-runner() {
   depends=('python-pytest')
 
   cd pytest-runner
-  python setup.py install --root="${pkgdir}" --optimize=1
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
 
 package_python2-pytest-runner() {
@@ -36,5 +45,6 @@
   depends=('python2-pytest')
 
   cd pytest-runner-py2
-  python2 setup.py install --root="${pkgdir}" --optimize=1
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }


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

2016-07-14 Thread Felix Yan
Date: Friday, July 15, 2016 @ 02:45:44
  Author: felixonmars
Revision: 182923

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-07-15 02:45:21 UTC (rev 182922)
+++ community-i686/PKGBUILD 2016-07-15 02:45:44 UTC (rev 182923)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=phonegap
-pkgver=6.2.9
-pkgrel=1
-pkgdesc="PhoneGap command-line interface and node.js library"
-arch=('i686' 'x86_64')
-url="https://github.com/phonegap/phonegap-cli;
-license=('Apache')
-depends=('npm' 'semver' 'cordova' 'browserify')
-makedepends=('python2')
-source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-sha256sums=('77b3323e37f549d4ec67a212adc5be01c46d22375029c3eb447070e8ccee5b82')
-
-package() {
-  PYTHON=python2 npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-
-  # Experimental dedup
-  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
-  for dep in semver cordova npm browserify; do
-rm -r $dep;
-npm link $dep;
-  done
-
-  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/cordova-lib/node_modules
-  for dep in semver; do
-rm -r $dep;
-npm link $dep;
-  done
-
-  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/npm-package-arg/node_modules
-  for dep in semver; do
-rm -r $dep;
-npm link $dep;
-  done
-
-  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/normalize-package-data/node_modules
-  for dep in semver; do
-rm -r $dep;
-npm link $dep;
-  done
-
-  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/init-package-json/node_modules
-  for dep in semver; do
-rm -r $dep;
-npm link $dep;
-  done
-
-  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/semver-diff/node_modules
-  for dep in semver; do
-rm -r $dep;
-npm link $dep;
-  done
-
-  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/cordova-lib/node_modules/cordova-common/node_modules
-  for dep in semver; do
-rm -r $dep;
-npm link $dep;
-  done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: phonegap/repos/community-i686/PKGBUILD (from rev 182922, 
phonegap/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-07-15 02:45:44 UTC (rev 182923)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=phonegap
+pkgver=6.3.0
+pkgrel=1
+pkgdesc="PhoneGap command-line interface and node.js library"
+arch=('i686' 'x86_64')
+url="https://github.com/phonegap/phonegap-cli;
+license=('Apache')
+depends=('npm' 'semver' 'cordova' 'browserify')
+makedepends=('python2')
+source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+sha256sums=('f9964d1e17fdfc911efe6f44b7a7534e927e67ef120a5b939af168110dff596e')
+
+package() {
+  PYTHON=python2 npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  rm -r "$pkgdir"/usr/etc
+
+  # Experimental dedup
+  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
+  for dep in semver cordova npm browserify; do
+rm -r $dep;
+npm link $dep;
+  done
+
+  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/cordova-lib/node_modules
+  for dep in semver; do
+rm -r $dep;
+npm link $dep;
+  done
+
+  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/npm-package-arg/node_modules
+  for dep in semver; do
+rm -r $dep;
+npm link $dep;
+  done
+
+  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/normalize-package-data/node_modules
+  for dep in semver; do
+rm -r $dep;
+npm link $dep;
+  done
+
+  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/init-package-json/node_modules
+  for dep in semver; do
+rm -r $dep;
+npm link $dep;
+  done
+
+  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/semver-diff/node_modules
+  for dep in semver; do
+rm -r $dep;
+npm link $dep;
+  done
+
+  cd 
"$pkgdir"/usr/lib/node_modules/$pkgname/node_modules/cordova-lib/node_modules/cordova-common/node_modules
+  for dep in semver; do
+rm -r $dep;
+npm link $dep;
+  done
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: 

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

2016-07-14 Thread Felix Yan
Date: Friday, July 15, 2016 @ 02:45:21
  Author: felixonmars
Revision: 182922

upgpkg: phonegap 6.3.0-1

Modified:
  phonegap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-15 02:26:02 UTC (rev 182921)
+++ PKGBUILD2016-07-15 02:45:21 UTC (rev 182922)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=phonegap
-pkgver=6.2.9
+pkgver=6.3.0
 pkgrel=1
 pkgdesc="PhoneGap command-line interface and node.js library"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 makedepends=('python2')
 source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-sha256sums=('77b3323e37f549d4ec67a212adc5be01c46d22375029c3eb447070e8ccee5b82')
+sha256sums=('f9964d1e17fdfc911efe6f44b7a7534e927e67ef120a5b939af168110dff596e')
 
 package() {
   PYTHON=python2 npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2016-07-14 Thread Felix Yan
Date: Friday, July 15, 2016 @ 02:26:02
  Author: felixonmars
Revision: 182921

archrelease: copy trunk to community-any

Added:
  semver/repos/community-any/PKGBUILD
(from rev 182920, semver/trunk/PKGBUILD)
Deleted:
  semver/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-15 02:25:42 UTC (rev 182920)
+++ PKGBUILD2016-07-15 02:26:02 UTC (rev 182921)
@@ -1,23 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=semver
-pkgver=5.2.0
-pkgrel=1
-pkgdesc='The semantic version parser used by npm.'
-arch=('any')
-url='https://github.com/npm/node-semver'
-license=('ISC')
-depends=('nodejs')
-makedepends=('npm')
-source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-md5sums=('8ffeb2e0dfae3c5d0c544ff0491e863c')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-
-  install -d "$pkgdir"/usr/share/licenses/$pkgname
-  ln -s ../../../lib/node_modules/$pkgname/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: semver/repos/community-any/PKGBUILD (from rev 182920, 
semver/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-07-15 02:26:02 UTC (rev 182921)
@@ -0,0 +1,23 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=semver
+pkgver=5.3.0
+pkgrel=1
+pkgdesc='The semantic version parser used by npm.'
+arch=('any')
+url='https://github.com/npm/node-semver'
+license=('ISC')
+depends=('nodejs')
+makedepends=('npm')
+source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+md5sums=('370e7a093e1a53b0154e2773059e4fd5')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  rm -r "$pkgdir"/usr/etc
+
+  install -d "$pkgdir"/usr/share/licenses/$pkgname
+  ln -s ../../../lib/node_modules/$pkgname/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2016-07-14 Thread Felix Yan
Date: Friday, July 15, 2016 @ 02:25:42
  Author: felixonmars
Revision: 182920

upgpkg: semver 5.3.0-1

Modified:
  semver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-15 00:13:22 UTC (rev 182919)
+++ PKGBUILD2016-07-15 02:25:42 UTC (rev 182920)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=semver
-pkgver=5.2.0
+pkgver=5.3.0
 pkgrel=1
 pkgdesc='The semantic version parser used by npm.'
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('npm')
 source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-md5sums=('8ffeb2e0dfae3c5d0c544ff0491e863c')
+md5sums=('370e7a093e1a53b0154e2773059e4fd5')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2016-07-14 Thread Gaëtan Bisson
Date: Friday, July 15, 2016 @ 00:31:00
  Author: bisson
Revision: 271880

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

Added:
  libgpg-error/repos/testing-i686/
  libgpg-error/repos/testing-i686/PKGBUILD
(from rev 271879, libgpg-error/repos/staging-i686/PKGBUILD)
  libgpg-error/repos/testing-x86_64/
  libgpg-error/repos/testing-x86_64/PKGBUILD
(from rev 271879, libgpg-error/repos/staging-x86_64/PKGBUILD)
Deleted:
  libgpg-error/repos/staging-i686/
  libgpg-error/repos/staging-x86_64/

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

Copied: libgpg-error/repos/testing-i686/PKGBUILD (from rev 271879, 
libgpg-error/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-07-15 00:31:00 UTC (rev 271880)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: judd 
+
+pkgname=libgpg-error
+pkgver=1.24
+pkgrel=1
+pkgdesc="Support library for libgcrypt"
+arch=(i686 x86_64)
+url="http://www.gnupg.org;
+license=('LGPL')
+depends=('glibc' 'sh')
+source=(ftp://ftp.gnupg.org/gcrypt/libgpg-error/${pkgname}-${pkgver}.tar.bz2{,.sig})
+   
#ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/libgpg-error/${pkgname}-${pkgver}.tar.bz2)
+# https://www.gnupg.org/download/integrity_check.html
+sha1sums=('c3e5bd0c3ddea647416b429cd8e2ec755bad9d9e'
+  'SKIP')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}/" install
+}

Copied: libgpg-error/repos/testing-x86_64/PKGBUILD (from rev 271879, 
libgpg-error/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-07-15 00:31:00 UTC (rev 271880)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: judd 
+
+pkgname=libgpg-error
+pkgver=1.24
+pkgrel=1
+pkgdesc="Support library for libgcrypt"
+arch=(i686 x86_64)
+url="http://www.gnupg.org;
+license=('LGPL')
+depends=('glibc' 'sh')
+source=(ftp://ftp.gnupg.org/gcrypt/libgpg-error/${pkgname}-${pkgver}.tar.bz2{,.sig})
+   
#ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/libgpg-error/${pkgname}-${pkgver}.tar.bz2)
+# https://www.gnupg.org/download/integrity_check.html
+sha1sums=('c3e5bd0c3ddea647416b429cd8e2ec755bad9d9e'
+  'SKIP')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}/" install
+}


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

2016-07-14 Thread Gaëtan Bisson
Date: Friday, July 15, 2016 @ 00:30:59
  Author: bisson
Revision: 271879

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

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

-+
 testing-i686/PKGBUILD   |   32 
 testing-x86_64/PKGBUILD |   32 
 2 files changed, 64 insertions(+)

Copied: libassuan/repos/testing-i686/PKGBUILD (from rev 271878, 
libassuan/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-07-15 00:30:59 UTC (rev 271879)
@@ -0,0 +1,32 @@
+# $Id$
+# Contributor: Tobias Powalowski 
+# Maintainer: Gaetan Bisson 
+
+pkgname=libassuan
+pkgver=2.4.3
+pkgrel=1
+pkgdesc='IPC library used by some GnuPG related software'
+url='http://www.gnupg.org/related_software/libassuan/'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libgpg-error')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('27391cf4a820b5350ea789c30661830c9a271518'
+  'SKIP')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure --prefix=/usr
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}

Copied: libassuan/repos/testing-x86_64/PKGBUILD (from rev 271878, 
libassuan/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-07-15 00:30:59 UTC (rev 271879)
@@ -0,0 +1,32 @@
+# $Id$
+# Contributor: Tobias Powalowski 
+# Maintainer: Gaetan Bisson 
+
+pkgname=libassuan
+pkgver=2.4.3
+pkgrel=1
+pkgdesc='IPC library used by some GnuPG related software'
+url='http://www.gnupg.org/related_software/libassuan/'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libgpg-error')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('27391cf4a820b5350ea789c30661830c9a271518'
+  'SKIP')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure --prefix=/usr
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}


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

2016-07-14 Thread Gaëtan Bisson
Date: Friday, July 15, 2016 @ 00:30:58
  Author: bisson
Revision: 271878

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

Added:
  gnupg/repos/testing-i686/
  gnupg/repos/testing-i686/PKGBUILD
(from rev 271877, gnupg/repos/staging-i686/PKGBUILD)
  gnupg/repos/testing-i686/install
(from rev 271877, gnupg/repos/staging-i686/install)
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 271877, gnupg/repos/staging-x86_64/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 271877, gnupg/repos/staging-x86_64/install)
Deleted:
  gnupg/repos/staging-i686/
  gnupg/repos/staging-x86_64/

-+
 testing-i686/PKGBUILD   |   61 ++
 testing-i686/install|   10 +++
 testing-x86_64/PKGBUILD |   61 ++
 testing-x86_64/install  |   10 +++
 4 files changed, 142 insertions(+)

Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 271877, 
gnupg/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-07-15 00:30:58 UTC (rev 271878)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.14
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('bc7609a3a0daf0ed0efb22f77b43e82f28e20e34' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg2 "${pkgdir}"/usr/bin/gpg
+   ln -s gpgv2 "${pkgdir}"/usr/bin/gpgv
+   ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz
+}

Copied: gnupg/repos/testing-i686/install (from rev 271877, 
gnupg/repos/staging-i686/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2016-07-15 00:30:58 UTC (rev 271878)
@@ -0,0 +1,10 @@
+post_install() {
+   # See FS#42798 and FS#47371
+   dirmngr /dev/null || true
+}
+
+post_upgrade() {
+   if [[ $(vercmp $2 2.1.13-1) = -1 ]]; then
+   echo "==> Please kill running gpg-agent and dirmngr processes 
before using this release."
+   fi
+}

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 271877, 
gnupg/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-07-15 00:30:58 UTC (rev 271878)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.14
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  

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

2016-07-14 Thread Gaëtan Bisson
Date: Friday, July 15, 2016 @ 00:29:13
  Author: bisson
Revision: 271877

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

Added:
  gnupg/repos/staging-i686/
  gnupg/repos/staging-i686/PKGBUILD
(from rev 271876, gnupg/trunk/PKGBUILD)
  gnupg/repos/staging-i686/install
(from rev 271876, gnupg/trunk/install)
  gnupg/repos/staging-x86_64/
  gnupg/repos/staging-x86_64/PKGBUILD
(from rev 271876, gnupg/trunk/PKGBUILD)
  gnupg/repos/staging-x86_64/install
(from rev 271876, gnupg/trunk/install)

-+
 staging-i686/PKGBUILD   |   61 ++
 staging-i686/install|   10 +++
 staging-x86_64/PKGBUILD |   61 ++
 staging-x86_64/install  |   10 +++
 4 files changed, 142 insertions(+)

Copied: gnupg/repos/staging-i686/PKGBUILD (from rev 271876, 
gnupg/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-07-15 00:29:13 UTC (rev 271877)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.14
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('bc7609a3a0daf0ed0efb22f77b43e82f28e20e34' 'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg2 "${pkgdir}"/usr/bin/gpg
+   ln -s gpgv2 "${pkgdir}"/usr/bin/gpgv
+   ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz
+}

Copied: gnupg/repos/staging-i686/install (from rev 271876, gnupg/trunk/install)
===
--- staging-i686/install(rev 0)
+++ staging-i686/install2016-07-15 00:29:13 UTC (rev 271877)
@@ -0,0 +1,10 @@
+post_install() {
+   # See FS#42798 and FS#47371
+   dirmngr /dev/null || true
+}
+
+post_upgrade() {
+   if [[ $(vercmp $2 2.1.13-1) = -1 ]]; then
+   echo "==> Please kill running gpg-agent and dirmngr processes 
before using this release."
+   fi
+}

Copied: gnupg/repos/staging-x86_64/PKGBUILD (from rev 271876, 
gnupg/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-07-15 00:29:13 UTC (rev 271877)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.1.14
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('bc7609a3a0daf0ed0efb22f77b43e82f28e20e34' 

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

2016-07-14 Thread Gaëtan Bisson
Date: Friday, July 15, 2016 @ 00:28:46
  Author: bisson
Revision: 271876

upstream update

Modified:
  gnupg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-15 00:19:13 UTC (rev 271875)
+++ PKGBUILD2016-07-15 00:28:46 UTC (rev 271876)
@@ -5,7 +5,7 @@
 # Contributor: Judd Vinet 
 
 pkgname=gnupg
-pkgver=2.1.13
+pkgver=2.1.14
 pkgrel=1
 pkgdesc='Complete and free implementation of the OpenPGP standard'
 url='http://www.gnupg.org/'
@@ -21,7 +21,7 @@
   '031EC2536E580D8EA286A9F22071B08A33BD3F06'
   'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
 
source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
-sha1sums=('6ec1ae6db7815fdbd4151fb6b0b7197b65b05d1f' 'SKIP')
+sha1sums=('bc7609a3a0daf0ed0efb22f77b43e82f28e20e34' 'SKIP')
 
 install=install
 
@@ -58,5 +58,4 @@
ln -s gpg2 "${pkgdir}"/usr/bin/gpg
ln -s gpgv2 "${pkgdir}"/usr/bin/gpgv
ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz
-   rm "${pkgdir}/usr/share/gnupg/com-certs.pem" # FS#33059
 }


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

2016-07-14 Thread Gaëtan Bisson
Date: Friday, July 15, 2016 @ 00:18:47
  Author: bisson
Revision: 271874

upstream update

Modified:
  libassuan/trunk/PKGBUILD

--+
 PKGBUILD |   31 ---
 1 file changed, 16 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-07-15 00:12:45 UTC (rev 271873)
+++ PKGBUILD2016-07-15 00:18:47 UTC (rev 271874)
@@ -1,31 +1,32 @@
 # $Id$
-# Maintainer: Tobias Powalowski 
+# Contributor: Tobias Powalowski 
+# Maintainer: Gaetan Bisson 
 
 pkgname=libassuan
-pkgver=2.4.2
-pkgrel=2
-pkgdesc="A IPC library used by some GnuPG related software"
+pkgver=2.4.3
+pkgrel=1
+pkgdesc='IPC library used by some GnuPG related software'
+url='http://www.gnupg.org/related_software/libassuan/'
 arch=('i686' 'x86_64')
 license=('GPL')
-url="http://www.gnupg.org/related_software/libassuan;
 depends=('libgpg-error')
-source=(ftp://ftp.gnupg.org/gcrypt/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig})
-sha1sums=('ac1047f9764fd4a4db7dafe47640643164394db9'
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('27391cf4a820b5350ea789c30661830c9a271518'
   'SKIP')
-validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure --prefix=/usr
+   make
 }
 
 check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make check
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
 }


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

2016-07-14 Thread Gaëtan Bisson
Date: Friday, July 15, 2016 @ 00:19:13
  Author: bisson
Revision: 271875

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

Added:
  libassuan/repos/staging-i686/
  libassuan/repos/staging-i686/PKGBUILD
(from rev 271874, libassuan/trunk/PKGBUILD)
  libassuan/repos/staging-x86_64/
  libassuan/repos/staging-x86_64/PKGBUILD
(from rev 271874, libassuan/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   32 
 staging-x86_64/PKGBUILD |   32 
 2 files changed, 64 insertions(+)

Copied: libassuan/repos/staging-i686/PKGBUILD (from rev 271874, 
libassuan/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-07-15 00:19:13 UTC (rev 271875)
@@ -0,0 +1,32 @@
+# $Id$
+# Contributor: Tobias Powalowski 
+# Maintainer: Gaetan Bisson 
+
+pkgname=libassuan
+pkgver=2.4.3
+pkgrel=1
+pkgdesc='IPC library used by some GnuPG related software'
+url='http://www.gnupg.org/related_software/libassuan/'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libgpg-error')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('27391cf4a820b5350ea789c30661830c9a271518'
+  'SKIP')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure --prefix=/usr
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}

Copied: libassuan/repos/staging-x86_64/PKGBUILD (from rev 271874, 
libassuan/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-07-15 00:19:13 UTC (rev 271875)
@@ -0,0 +1,32 @@
+# $Id$
+# Contributor: Tobias Powalowski 
+# Maintainer: Gaetan Bisson 
+
+pkgname=libassuan
+pkgver=2.4.3
+pkgrel=1
+pkgdesc='IPC library used by some GnuPG related software'
+url='http://www.gnupg.org/related_software/libassuan/'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libgpg-error')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha1sums=('27391cf4a820b5350ea789c30661830c9a271518'
+  'SKIP')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure --prefix=/usr
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in virtualbox-guest-iso/repos/community-any (6 files)

2016-07-14 Thread Sébastien Luttringer
Date: Friday, July 15, 2016 @ 00:13:22
  Author: seblu
Revision: 182919

archrelease: copy trunk to community-any

Added:
  virtualbox-guest-iso/repos/community-any/PKGBUILD
(from rev 182918, virtualbox-guest-iso/trunk/PKGBUILD)
  virtualbox-guest-iso/repos/community-any/license
(from rev 182918, virtualbox-guest-iso/trunk/license)
  virtualbox-guest-iso/repos/community-any/virtualbox-guest-iso.install
(from rev 182918, virtualbox-guest-iso/trunk/virtualbox-guest-iso.install)
Deleted:
  virtualbox-guest-iso/repos/community-any/PKGBUILD
  virtualbox-guest-iso/repos/community-any/license
  virtualbox-guest-iso/repos/community-any/virtualbox-guest-iso.install

--+
 PKGBUILD |   60 ++--
 license  |   68 -
 virtualbox-guest-iso.install |   36 ++---
 3 files changed, 82 insertions(+), 82 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-15 00:08:01 UTC (rev 182918)
+++ PKGBUILD2016-07-15 00:13:22 UTC (rev 182919)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Jonathan Steel 
-# Contributor: Ionut Biru 
-# Contributor: Geoffroy Carrier 
-# Contributor: Andrea Scarpino 
-# Contributor: Roman Kyrylych 
-
-pkgname=virtualbox-guest-iso
-pkgver=5.1.0
-pkgrel=1
-pkgdesc='The official VirtualBox Guest Additions ISO image'
-arch=('any')
-url='http://www.virtualbox.org'
-license=('custom:PUEL')
-install=virtualbox-guest-iso.install
-source=("http://download.virtualbox.org/virtualbox/$pkgver/VBoxGuestAdditions_$pkgver.iso;
-'license')
-replaces=('virtualbox-additions' 'virtualbox-iso-additions')
-conflicts=('virtualbox-additions' 'virtualbox-iso-additions')
-noextract=(VBoxGuestAdditions_$pkgver.iso)
-md5sums=('83d126332f7684b6a7bd070be7347cce'
- 'b67febd9453cc6c4b8412a0456080e9f')
-
-package() {
-  install -Dm 644 VBoxGuestAdditions_$pkgver.iso \
-"$pkgdir/usr/lib/virtualbox/additions/VBoxGuestAdditions.iso"
-  install -Dm 644 "$srcdir/license" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: virtualbox-guest-iso/repos/community-any/PKGBUILD (from rev 182918, 
virtualbox-guest-iso/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-07-15 00:13:22 UTC (rev 182919)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Jonathan Steel 
+# Contributor: Ionut Biru 
+# Contributor: Geoffroy Carrier 
+# Contributor: Andrea Scarpino 
+# Contributor: Roman Kyrylych 
+
+pkgname=virtualbox-guest-iso
+pkgver=5.1.0
+pkgrel=1
+pkgdesc='The official VirtualBox Guest Additions ISO image'
+arch=('any')
+url='http://www.virtualbox.org'
+license=('custom:PUEL')
+install=virtualbox-guest-iso.install
+source=("http://download.virtualbox.org/virtualbox/$pkgver/VBoxGuestAdditions_$pkgver.iso;
+'license')
+replaces=('virtualbox-additions' 'virtualbox-iso-additions')
+conflicts=('virtualbox-additions' 'virtualbox-iso-additions')
+noextract=(VBoxGuestAdditions_$pkgver.iso)
+md5sums=('83d126332f7684b6a7bd070be7347cce'
+ 'b67febd9453cc6c4b8412a0456080e9f')
+
+package() {
+  install -Dm 644 VBoxGuestAdditions_$pkgver.iso \
+"$pkgdir/usr/lib/virtualbox/additions/VBoxGuestAdditions.iso"
+  install -Dm 644 "$srcdir/license" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: license
===
--- license 2016-07-15 00:08:01 UTC (rev 182918)
+++ license 2016-07-15 00:13:22 UTC (rev 182919)
@@ -1,34 +0,0 @@
-VirtualBox Personal Use and Evaluation License (PUEL) 
-
-This license applies if you download the full VirtualBox binaries from the 
Downloads page. It does not apply to the VirtualBox Open Source Edition (OSE), 
which falls under the GPL instead; see Editions for details about the 
differences between these releases.
-
-In summary, the VirtualBox PUEL allows you to use VirtualBox free of charge
-
-* for personal use or, alternatively,
-* for product evaluation. 
-
-In addition, academic use of VirtualBox is also permitted free of charge by 
the PUEL.
-
-If you do not belong to either category, you will have to purchase a 
commercial license. Do not hesitate to contact InnoTek in this matter.
-
-If you are confused by the legalese below, you may also want to take a look at 
our Licensing FAQ to answer a few common questions.
-VirtualBox PUEL terms and conditions ¶
-
-Version 1.2, 2007-02-21
-
-InnoTek Systemberatung GmbH, Werkstrasse 24, 71384 Weinstadt, Germany grants 
you the right to use the software product as 

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

2016-07-14 Thread Gaëtan Bisson
Date: Friday, July 15, 2016 @ 00:12:45
  Author: bisson
Revision: 271873

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

Added:
  libgpg-error/repos/staging-i686/
  libgpg-error/repos/staging-i686/PKGBUILD
(from rev 271872, libgpg-error/trunk/PKGBUILD)
  libgpg-error/repos/staging-x86_64/
  libgpg-error/repos/staging-x86_64/PKGBUILD
(from rev 271872, libgpg-error/trunk/PKGBUILD)

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

Copied: libgpg-error/repos/staging-i686/PKGBUILD (from rev 271872, 
libgpg-error/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-07-15 00:12:45 UTC (rev 271873)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: judd 
+
+pkgname=libgpg-error
+pkgver=1.24
+pkgrel=1
+pkgdesc="Support library for libgcrypt"
+arch=(i686 x86_64)
+url="http://www.gnupg.org;
+license=('LGPL')
+depends=('glibc' 'sh')
+source=(ftp://ftp.gnupg.org/gcrypt/libgpg-error/${pkgname}-${pkgver}.tar.bz2{,.sig})
+   
#ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/libgpg-error/${pkgname}-${pkgver}.tar.bz2)
+# https://www.gnupg.org/download/integrity_check.html
+sha1sums=('c3e5bd0c3ddea647416b429cd8e2ec755bad9d9e'
+  'SKIP')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}/" install
+}

Copied: libgpg-error/repos/staging-x86_64/PKGBUILD (from rev 271872, 
libgpg-error/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-07-15 00:12:45 UTC (rev 271873)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: judd 
+
+pkgname=libgpg-error
+pkgver=1.24
+pkgrel=1
+pkgdesc="Support library for libgcrypt"
+arch=(i686 x86_64)
+url="http://www.gnupg.org;
+license=('LGPL')
+depends=('glibc' 'sh')
+source=(ftp://ftp.gnupg.org/gcrypt/libgpg-error/${pkgname}-${pkgver}.tar.bz2{,.sig})
+   
#ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/libgpg-error/${pkgname}-${pkgver}.tar.bz2)
+# https://www.gnupg.org/download/integrity_check.html
+sha1sums=('c3e5bd0c3ddea647416b429cd8e2ec755bad9d9e'
+  'SKIP')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}/" install
+}


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

2016-07-14 Thread Gaëtan Bisson
Date: Friday, July 15, 2016 @ 00:12:00
  Author: bisson
Revision: 271872

upstream update

Modified:
  libgpg-error/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 19:11:03 UTC (rev 271871)
+++ PKGBUILD2016-07-15 00:12:00 UTC (rev 271872)
@@ -3,7 +3,7 @@
 # Contributor: judd 
 
 pkgname=libgpg-error
-pkgver=1.23
+pkgver=1.24
 pkgrel=1
 pkgdesc="Support library for libgcrypt"
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 
source=(ftp://ftp.gnupg.org/gcrypt/libgpg-error/${pkgname}-${pkgver}.tar.bz2{,.sig})

#ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/libgpg-error/${pkgname}-${pkgver}.tar.bz2)
 # https://www.gnupg.org/download/integrity_check.html
-sha1sums=('c6a0c49211955e924593527b32e4b2736cafcda5'
+sha1sums=('c3e5bd0c3ddea647416b429cd8e2ec755bad9d9e'
   'SKIP')
 validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
 


[arch-commits] Commit in virtualbox-guest-iso/repos/community-any (6 files)

2016-07-14 Thread Sébastien Luttringer
Date: Friday, July 15, 2016 @ 00:08:01
  Author: seblu
Revision: 182918

archrelease: copy trunk to community-any

Added:
  virtualbox-guest-iso/repos/community-any/PKGBUILD
(from rev 182917, virtualbox-guest-iso/trunk/PKGBUILD)
  virtualbox-guest-iso/repos/community-any/license
(from rev 182917, virtualbox-guest-iso/trunk/license)
  virtualbox-guest-iso/repos/community-any/virtualbox-guest-iso.install
(from rev 182917, virtualbox-guest-iso/trunk/virtualbox-guest-iso.install)
Deleted:
  virtualbox-guest-iso/repos/community-any/PKGBUILD
  virtualbox-guest-iso/repos/community-any/license
  virtualbox-guest-iso/repos/community-any/virtualbox-guest-iso.install

--+
 PKGBUILD |   60 ++--
 license  |   68 -
 virtualbox-guest-iso.install |   36 ++---
 3 files changed, 82 insertions(+), 82 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-15 00:07:51 UTC (rev 182917)
+++ PKGBUILD2016-07-15 00:08:01 UTC (rev 182918)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Jonathan Steel 
-# Contributor: Ionut Biru 
-# Contributor: Geoffroy Carrier 
-# Contributor: Andrea Scarpino 
-# Contributor: Roman Kyrylych 
-
-pkgname=virtualbox-guest-iso
-pkgver=5.0.24
-pkgrel=1
-pkgdesc='The official VirtualBox Guest Additions ISO image'
-arch=('any')
-url='http://www.virtualbox.org'
-license=('custom:PUEL')
-install=virtualbox-guest-iso.install
-source=("http://download.virtualbox.org/virtualbox/$pkgver/VBoxGuestAdditions_$pkgver.iso;
-'license')
-replaces=('virtualbox-additions' 'virtualbox-iso-additions')
-conflicts=('virtualbox-additions' 'virtualbox-iso-additions')
-noextract=(VBoxGuestAdditions_$pkgver.iso)
-md5sums=('ec279e80835a4dbb63d3d65baf23ccf2'
- 'b67febd9453cc6c4b8412a0456080e9f')
-
-package() {
-  install -Dm 644 VBoxGuestAdditions_$pkgver.iso \
-"$pkgdir/usr/lib/virtualbox/additions/VBoxGuestAdditions.iso"
-  install -Dm 644 "$srcdir/license" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: virtualbox-guest-iso/repos/community-any/PKGBUILD (from rev 182917, 
virtualbox-guest-iso/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-07-15 00:08:01 UTC (rev 182918)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Jonathan Steel 
+# Contributor: Ionut Biru 
+# Contributor: Geoffroy Carrier 
+# Contributor: Andrea Scarpino 
+# Contributor: Roman Kyrylych 
+
+pkgname=virtualbox-guest-iso
+pkgver=5.1.0
+pkgrel=1
+pkgdesc='The official VirtualBox Guest Additions ISO image'
+arch=('any')
+url='http://www.virtualbox.org'
+license=('custom:PUEL')
+install=virtualbox-guest-iso.install
+source=("http://download.virtualbox.org/virtualbox/$pkgver/VBoxGuestAdditions_$pkgver.iso;
+'license')
+replaces=('virtualbox-additions' 'virtualbox-iso-additions')
+conflicts=('virtualbox-additions' 'virtualbox-iso-additions')
+noextract=(VBoxGuestAdditions_$pkgver.iso)
+md5sums=('83d126332f7684b6a7bd070be7347cce'
+ 'b67febd9453cc6c4b8412a0456080e9f')
+
+package() {
+  install -Dm 644 VBoxGuestAdditions_$pkgver.iso \
+"$pkgdir/usr/lib/virtualbox/additions/VBoxGuestAdditions.iso"
+  install -Dm 644 "$srcdir/license" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: license
===
--- license 2016-07-15 00:07:51 UTC (rev 182917)
+++ license 2016-07-15 00:08:01 UTC (rev 182918)
@@ -1,34 +0,0 @@
-VirtualBox Personal Use and Evaluation License (PUEL) 
-
-This license applies if you download the full VirtualBox binaries from the 
Downloads page. It does not apply to the VirtualBox Open Source Edition (OSE), 
which falls under the GPL instead; see Editions for details about the 
differences between these releases.
-
-In summary, the VirtualBox PUEL allows you to use VirtualBox free of charge
-
-* for personal use or, alternatively,
-* for product evaluation. 
-
-In addition, academic use of VirtualBox is also permitted free of charge by 
the PUEL.
-
-If you do not belong to either category, you will have to purchase a 
commercial license. Do not hesitate to contact InnoTek in this matter.
-
-If you are confused by the legalese below, you may also want to take a look at 
our Licensing FAQ to answer a few common questions.
-VirtualBox PUEL terms and conditions ¶
-
-Version 1.2, 2007-02-21
-
-InnoTek Systemberatung GmbH, Werkstrasse 24, 71384 Weinstadt, Germany grants 
you the right to use the software product as 

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

2016-07-14 Thread Sébastien Luttringer
Date: Friday, July 15, 2016 @ 00:07:37
  Author: seblu
Revision: 182916

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

Added:
  virtualbox-modules-arch/repos/community-i686/PKGBUILD
(from rev 182915, virtualbox-modules-arch/trunk/PKGBUILD)
  virtualbox-modules-arch/repos/community-i686/build.sh
(from rev 182915, virtualbox-modules-arch/trunk/build.sh)
  virtualbox-modules-arch/repos/community-i686/virtualbox-modules-arch.install
(from rev 182915, 
virtualbox-modules-arch/trunk/virtualbox-modules-arch.install)
  virtualbox-modules-arch/repos/community-x86_64/PKGBUILD
(from rev 182915, virtualbox-modules-arch/trunk/PKGBUILD)
  virtualbox-modules-arch/repos/community-x86_64/build.sh
(from rev 182915, virtualbox-modules-arch/trunk/build.sh)
  virtualbox-modules-arch/repos/community-x86_64/virtualbox-modules-arch.install
(from rev 182915, 
virtualbox-modules-arch/trunk/virtualbox-modules-arch.install)
Deleted:
  virtualbox-modules-arch/repos/community-i686/PKGBUILD
  virtualbox-modules-arch/repos/community-i686/build.sh
  virtualbox-modules-arch/repos/community-i686/virtualbox-modules-arch.install
  virtualbox-modules-arch/repos/community-x86_64/PKGBUILD
  virtualbox-modules-arch/repos/community-x86_64/build.sh
  virtualbox-modules-arch/repos/community-x86_64/virtualbox-modules-arch.install

--+
 /PKGBUILD|  142 +
 /build.sh|  122 ++
 /virtualbox-modules-arch.install |   46 ++
 community-i686/PKGBUILD  |   70 --
 community-i686/build.sh  |   61 -
 community-i686/virtualbox-modules-arch.install   |   23 ---
 community-x86_64/PKGBUILD|   70 --
 community-x86_64/build.sh|   61 -
 community-x86_64/virtualbox-modules-arch.install |   23 ---
 9 files changed, 310 insertions(+), 308 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-07-15 00:07:21 UTC (rev 182915)
+++ community-i686/PKGBUILD 2016-07-15 00:07:37 UTC (rev 182916)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Ionut Biru 
-
-pkgbase=virtualbox-modules-arch
-pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
-pkgver=5.0.24
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://virtualbox.org'
-license=('GPL')
-makedepends=('linux>=4.6' 'linux<4.7'
- 'linux-headers>=4.6' 'linux-headers<4.7'
- "virtualbox-host-dkms>=$pkgver"
- "virtualbox-guest-dkms>=$pkgver")
-
-# remember to also adjust the .install files and the package deps below
-_extramodules=extramodules-4.6-ARCH
-
-package_virtualbox-host-modules-arch(){
-  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
-  pkgdesc='Virtualbox host kernel modules for Arch Kernel'
-  depends=('linux>=4.6' 'linux<4.7')
-  replaces=('virtualbox-modules' 'virtualbox-host-modules')
-  conflicts=('virtualbox-modules' 'virtualbox-host-modules'
-'virtualbox-host-dkms')
-  provides=('VIRTUALBOX-HOST-MODULES')
-  install=virtualbox-modules-arch.install
-
-  cd "/var/lib/dkms/vboxhost/${pkgver}_OSE/$_kernver/$CARCH/module"
-  install -dm755 "$pkgdir/usr/lib/modules/$_extramodules/"
-  install -m644 * "$pkgdir/usr/lib/modules/$_extramodules/"
-
-  # compress earch modules individually
-  find "$pkgdir" -name '*.ko' -exec gzip -9 {} +
-
-  # systemd module loading
-  install -Dm644 /dev/null "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
-  printf "vboxdrv\nvboxpci\nvboxnetadp\nvboxnetflt\n" >  \
-"$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
-}
-
-package_virtualbox-guest-modules-arch(){
-  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
-  pkgdesc='Virtualbox guest kernel modules for Arch Kernel'
-  license=('GPL')
-  depends=('linux>=4.6' 'linux<4.7')
-  replaces=('virtualbox-archlinux-modules' 'virtualbox-guest-modules')
-  conflicts=('virtualbox-archlinux-modules' 'virtualbox-guest-modules'
- 'virtualbox-guest-dkms')
-  provides=('VIRTUALBOX-GUEST-MODULES')
-  install=virtualbox-modules-arch.install
-
-  cd "/var/lib/dkms/vboxguest/${pkgver}_OSE/$_kernver/$CARCH/module"
-  install -dm755 "$pkgdir/usr/lib/modules/$_extramodules/"
-  install -m644 * "$pkgdir/usr/lib/modules/$_extramodules/"
-
-  # compress earch modules individually
-  find "$pkgdir" -name '*.ko' -exec gzip -9 {} +
-
-  # systemd module loading
-  install -Dm644 /dev/null "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
-  printf "vboxguest\nvboxsf\nvboxvideo\n" >  \
-"$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
-}
-
-# vim:set ts=2 sw=2 et:
-
-
-

Copied: virtualbox-modules-arch/repos/community-i686/PKGBUILD (from rev 182915, 

[arch-commits] Commit in virtualbox-guest-iso/trunk (PKGBUILD)

2016-07-14 Thread Sébastien Luttringer
Date: Friday, July 15, 2016 @ 00:07:51
  Author: seblu
Revision: 182917

upgpkg: virtualbox-guest-iso 5.1.0-1

Modified:
  virtualbox-guest-iso/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-15 00:07:37 UTC (rev 182916)
+++ PKGBUILD2016-07-15 00:07:51 UTC (rev 182917)
@@ -7,7 +7,7 @@
 # Contributor: Roman Kyrylych 
 
 pkgname=virtualbox-guest-iso
-pkgver=5.0.24
+pkgver=5.1.0
 pkgrel=1
 pkgdesc='The official VirtualBox Guest Additions ISO image'
 arch=('any')
@@ -19,7 +19,7 @@
 replaces=('virtualbox-additions' 'virtualbox-iso-additions')
 conflicts=('virtualbox-additions' 'virtualbox-iso-additions')
 noextract=(VBoxGuestAdditions_$pkgver.iso)
-md5sums=('ec279e80835a4dbb63d3d65baf23ccf2'
+md5sums=('83d126332f7684b6a7bd070be7347cce'
  'b67febd9453cc6c4b8412a0456080e9f')
 
 package() {


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

2016-07-14 Thread Sébastien Luttringer
Date: Friday, July 15, 2016 @ 00:07:21
  Author: seblu
Revision: 182915

upgpkg: virtualbox-modules-arch 5.1.0-1

Modified:
  virtualbox-modules-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 19:50:35 UTC (rev 182914)
+++ PKGBUILD2016-07-15 00:07:21 UTC (rev 182915)
@@ -4,7 +4,7 @@
 
 pkgbase=virtualbox-modules-arch
 pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
-pkgver=5.0.24
+pkgver=5.1.0
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://virtualbox.org'
@@ -68,3 +68,4 @@
 
 
 
+


[arch-commits] Commit in virtualbox/repos (90 files)

2016-07-14 Thread Sébastien Luttringer
Date: Thursday, July 14, 2016 @ 19:50:35
  Author: seblu
Revision: 182914

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

Added:
  virtualbox/repos/community-i686/002-dri-driver-path.patch
(from rev 182913, virtualbox/trunk/002-dri-driver-path.patch)
  virtualbox/repos/community-i686/003-ogl-include-path.patch
(from rev 182913, virtualbox/trunk/003-ogl-include-path.patch)
  virtualbox/repos/community-i686/005-gsoap-build.patch
(from rev 182913, virtualbox/trunk/005-gsoap-build.patch)
  virtualbox/repos/community-i686/006-rdesktop-vrdp-keymap-path.patch
(from rev 182913, virtualbox/trunk/006-rdesktop-vrdp-keymap-path.patch)
  virtualbox/repos/community-i686/007-python2-path.patch
(from rev 182913, virtualbox/trunk/007-python2-path.patch)
  virtualbox/repos/community-i686/60-vboxdrv.rules
(from rev 182913, virtualbox/trunk/60-vboxdrv.rules)
  virtualbox/repos/community-i686/60-vboxguest.rules
(from rev 182913, virtualbox/trunk/60-vboxguest.rules)
  virtualbox/repos/community-i686/LocalConfig.kmk
(from rev 182913, virtualbox/trunk/LocalConfig.kmk)
  virtualbox/repos/community-i686/PKGBUILD
(from rev 182913, virtualbox/trunk/PKGBUILD)
  virtualbox/repos/community-i686/build.sh
(from rev 182913, virtualbox/trunk/build.sh)
  virtualbox/repos/community-i686/vboxreload
(from rev 182913, virtualbox/trunk/vboxreload)
  virtualbox/repos/community-i686/vboxservice-nox.service
(from rev 182913, virtualbox/trunk/vboxservice-nox.service)
  virtualbox/repos/community-i686/vboxservice.service
(from rev 182913, virtualbox/trunk/vboxservice.service)
  virtualbox/repos/community-i686/vboxweb.service
(from rev 182913, virtualbox/trunk/vboxweb.service)
  virtualbox/repos/community-i686/virtualbox-ext-vnc.install
(from rev 182913, virtualbox/trunk/virtualbox-ext-vnc.install)
  virtualbox/repos/community-i686/virtualbox-guest-dkms.conf
(from rev 182913, virtualbox/trunk/virtualbox-guest-dkms.conf)
  virtualbox/repos/community-i686/virtualbox-guest-dkms.install
(from rev 182913, virtualbox/trunk/virtualbox-guest-dkms.install)
  virtualbox/repos/community-i686/virtualbox-guest-utils.install
(from rev 182913, virtualbox/trunk/virtualbox-guest-utils.install)
  virtualbox/repos/community-i686/virtualbox-guest-utils.sysusers
(from rev 182913, virtualbox/trunk/virtualbox-guest-utils.sysusers)
  virtualbox/repos/community-i686/virtualbox-host-dkms.conf
(from rev 182913, virtualbox/trunk/virtualbox-host-dkms.conf)
  virtualbox/repos/community-i686/virtualbox-host-dkms.install
(from rev 182913, virtualbox/trunk/virtualbox-host-dkms.install)
  virtualbox/repos/community-i686/virtualbox.install
(from rev 182913, virtualbox/trunk/virtualbox.install)
  virtualbox/repos/community-i686/virtualbox.sysusers
(from rev 182913, virtualbox/trunk/virtualbox.sysusers)
  virtualbox/repos/community-x86_64/002-dri-driver-path.patch
(from rev 182913, virtualbox/trunk/002-dri-driver-path.patch)
  virtualbox/repos/community-x86_64/003-ogl-include-path.patch
(from rev 182913, virtualbox/trunk/003-ogl-include-path.patch)
  virtualbox/repos/community-x86_64/005-gsoap-build.patch
(from rev 182913, virtualbox/trunk/005-gsoap-build.patch)
  virtualbox/repos/community-x86_64/006-rdesktop-vrdp-keymap-path.patch
(from rev 182913, virtualbox/trunk/006-rdesktop-vrdp-keymap-path.patch)
  virtualbox/repos/community-x86_64/007-python2-path.patch
(from rev 182913, virtualbox/trunk/007-python2-path.patch)
  virtualbox/repos/community-x86_64/60-vboxdrv.rules
(from rev 182913, virtualbox/trunk/60-vboxdrv.rules)
  virtualbox/repos/community-x86_64/60-vboxguest.rules
(from rev 182913, virtualbox/trunk/60-vboxguest.rules)
  virtualbox/repos/community-x86_64/LocalConfig.kmk
(from rev 182913, virtualbox/trunk/LocalConfig.kmk)
  virtualbox/repos/community-x86_64/PKGBUILD
(from rev 182913, virtualbox/trunk/PKGBUILD)
  virtualbox/repos/community-x86_64/build.sh
(from rev 182913, virtualbox/trunk/build.sh)
  virtualbox/repos/community-x86_64/vboxreload
(from rev 182913, virtualbox/trunk/vboxreload)
  virtualbox/repos/community-x86_64/vboxservice-nox.service
(from rev 182913, virtualbox/trunk/vboxservice-nox.service)
  virtualbox/repos/community-x86_64/vboxservice.service
(from rev 182913, virtualbox/trunk/vboxservice.service)
  virtualbox/repos/community-x86_64/vboxweb.service
(from rev 182913, virtualbox/trunk/vboxweb.service)
  virtualbox/repos/community-x86_64/virtualbox-ext-vnc.install
(from rev 182913, virtualbox/trunk/virtualbox-ext-vnc.install)
  virtualbox/repos/community-x86_64/virtualbox-guest-dkms.conf
(from rev 182913, virtualbox/trunk/virtualbox-guest-dkms.conf)
  virtualbox/repos/community-x86_64/virtualbox-guest-dkms.install
(from rev 182913, virtualbox/trunk/virtualbox-guest-dkms.install)
  virtualbox/repos/community-x86_64/virtualbox-guest-utils.install
(from rev 182913, 

[arch-commits] Commit in virtualbox/trunk (4 files)

2016-07-14 Thread Sébastien Luttringer
Date: Thursday, July 14, 2016 @ 19:49:23
  Author: seblu
Revision: 182913

upgpkg: virtualbox 5.1.0-1

Added:
  virtualbox/trunk/virtualbox-guest-dkms.conf
  virtualbox/trunk/virtualbox-host-dkms.conf
Modified:
  virtualbox/trunk/PKGBUILD
Deleted:
  virtualbox/trunk/010-no-update.patch

+
 010-no-update.patch|   99 ---
 PKGBUILD   |   41 +++--
 virtualbox-guest-dkms.conf |   31 +
 virtualbox-host-dkms.conf  |   35 +++
 4 files changed, 92 insertions(+), 114 deletions(-)

Deleted: 010-no-update.patch
===
--- 010-no-update.patch 2016-07-14 19:15:35 UTC (rev 182912)
+++ 010-no-update.patch 2016-07-14 19:49:23 UTC (rev 182913)
@@ -1,99 +0,0 @@
-Description: Disable "Check for Updates" action.
-Bug-Ubuntu: https://bugs.launchpad.net/bugs/272212
-Author: Daniel Hahler , Felix Geyer 
-
-diff a/src/VBox/Frontends/VirtualBox/src/net/UIUpdateManager.cpp 
b/src/VBox/Frontends/VirtualBox/src/net/UIUpdateManager.cpp
-Index: virtualbox/src/VBox/Frontends/VirtualBox/src/net/UIUpdateManager.cpp
-===
 virtualbox.orig/src/VBox/Frontends/VirtualBox/src/net/UIUpdateManager.cpp  
2015-04-02 15:44:20.879669066 +0200
-+++ virtualbox/src/VBox/Frontends/VirtualBox/src/net/UIUpdateManager.cpp   
2015-04-02 15:44:20.879669066 +0200
-@@ -428,6 +428,8 @@
- 
- void UIUpdateManager::sltForceCheck()
- {
-+return;
-+
- /* Force call for new version check: */
- sltCheckIfUpdateIsNecessary(true /* force call */);
- }
-diff a/src/VBox/Frontends/VirtualBox/src/globals/UIActionPool.cpp 
b/src/VBox/Frontends/VirtualBox/src/globals/UIActionPool.cpp
-Index: virtualbox/src/VBox/Frontends/VirtualBox/src/globals/UIActionPool.cpp
-===
 virtualbox.orig/src/VBox/Frontends/VirtualBox/src/globals/UIActionPool.cpp
-+++ virtualbox/src/VBox/Frontends/VirtualBox/src/globals/UIActionPool.cpp
-@@ -991,7 +991,6 @@ void UIActionPool::preparePool()
- m_pool[UIActionIndex_M_Application_S_Preferences] = new 
UIActionSimplePreferences(this);
- #ifdef VBOX_GUI_WITH_NETWORK_MANAGER
- m_pool[UIActionIndex_M_Application_S_NetworkAccessManager] = new 
UIActionSimpleNetworkAccessManager(this);
--m_pool[UIActionIndex_M_Application_S_CheckForUpdates] = new 
UIActionSimpleCheckForUpdates(this);
- #endif /* VBOX_GUI_WITH_NETWORK_MANAGER */
- m_pool[UIActionIndex_M_Application_S_ResetWarnings] = new 
UIActionSimpleResetWarnings(this);
- m_pool[UIActionIndex_M_Application_S_Close] = new 
UIActionSimplePerformClose(this);
-@@ -1034,8 +1033,6 @@ void UIActionPool::prepareConnections()
- #ifdef VBOX_GUI_WITH_NETWORK_MANAGER
- connect(action(UIActionIndex_M_Application_S_NetworkAccessManager), 
SIGNAL(triggered()),
- gNetworkManager, SLOT(show()), Qt::UniqueConnection);
--connect(action(UIActionIndex_M_Application_S_CheckForUpdates), 
SIGNAL(triggered()),
--gUpdateManager, SLOT(sltForceCheck()), Qt::UniqueConnection);
- #endif /* VBOX_GUI_WITH_NETWORK_MANAGER */
- connect(action(UIActionIndex_M_Application_S_ResetWarnings), 
SIGNAL(triggered()),
- (), SLOT(sltResetSuppressedMessages()), 
Qt::UniqueConnection);
-@@ -1110,7 +1107,7 @@ void UIActionPool::updateConfiguration()
- if (!fUpdateAllowed)
- {
- m_restrictedActionsMenuApplication[UIActionRestrictionLevel_Base] = 
(UIExtraDataMetaDefs::MenuApplicationActionType)
--
(m_restrictedActionsMenuApplication[UIActionRestrictionLevel_Base] | 
UIExtraDataMetaDefs::MenuApplicationActionType_CheckForUpdates);
-+
(m_restrictedActionsMenuApplication[UIActionRestrictionLevel_Base]);
- }
- #endif /* VBOX_GUI_WITH_NETWORK_MANAGER */
- 
-diff a/src/VBox/Frontends/VirtualBox/src/globals/UIActionPool.h 
b/src/VBox/Frontends/VirtualBox/src/globals/UIActionPool.h
-Index: virtualbox/src/VBox/Frontends/VirtualBox/src/globals/UIActionPool.h
-===
 virtualbox.orig/src/VBox/Frontends/VirtualBox/src/globals/UIActionPool.h
-+++ virtualbox/src/VBox/Frontends/VirtualBox/src/globals/UIActionPool.h
-@@ -62,7 +62,6 @@ enum UIActionIndex
- UIActionIndex_M_Application_S_Preferences,
- #ifdef VBOX_GUI_WITH_NETWORK_MANAGER
- UIActionIndex_M_Application_S_NetworkAccessManager,
--UIActionIndex_M_Application_S_CheckForUpdates,
- #endif /* VBOX_GUI_WITH_NETWORK_MANAGER */
- UIActionIndex_M_Application_S_ResetWarnings,
- UIActionIndex_M_Application_S_Close,
-Index: 
virtualbox/src/VBox/Frontends/VirtualBox/src/settings/UISettingsDialogSpecific.cpp
-===
 

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

2016-07-14 Thread Sergej Pupykin
Date: Thursday, July 14, 2016 @ 19:15:35
  Author: spupykin
Revision: 182912

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-07-14 19:15:19 UTC (rev 182911)
+++ community-i686/PKGBUILD 2016-07-14 19:15:35 UTC (rev 182912)
@@ -1,26 +0,0 @@
-# $Id$
-# Contributor: Emil Renner Berthing 
-
-pkgname=mktorrent
-pkgver=1.0
-pkgrel=4
-pkgdesc='Simple command line utility to create BitTorrent metainfo files'
-arch=('i686' 'x86_64')
-url='http://mktorrent.sourceforge.net/'
-license='GPL'
-depends=('openssl')
-source=("http://downloads.sourceforge.net/mktorrent/mktorrent-${pkgver}.tar.gz;)
-md5sums=('0da00209da96a0dc39efbb6eb5b4d8ff')
-
-build() {
-  cd ${srcdir}/mktorrent-${pkgver}
-  make PREFIX=/usr \
-  USE_PTHREADS=1 USE_OPENSSL=1 USE_LONG_OPTIONS=1 USE_LARGE_FILES=1
-}
-
-package() {
-  cd ${srcdir}/mktorrent-${pkgver}
-  make DESTDIR=${pkgdir} PREFIX=/usr \
-  USE_PTHREADS=1 USE_OPENSSL=1 USE_LONG_OPTIONS=1 USE_LARGE_FILES=1 \
-  install
-}

Copied: mktorrent/repos/community-i686/PKGBUILD (from rev 182911, 
mktorrent/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-07-14 19:15:35 UTC (rev 182912)
@@ -0,0 +1,28 @@
+# $Id$
+# Contributor: Emil Renner Berthing 
+
+pkgname=mktorrent
+pkgver=1.0
+pkgrel=5
+pkgdesc='Simple command line utility to create BitTorrent metainfo files'
+arch=('i686' 'x86_64')
+#url='http://mktorrent.sourceforge.net/'
+url="https://github.com/Rudde/mktorrent;
+license=('GPL')
+depends=('openssl')
+#source=("http://downloads.sourceforge.net/mktorrent/mktorrent-${pkgver}.tar.gz;)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Rudde/mktorrent/archive/v$pkgver.tar.gz;)
+md5sums=('0610018b3d83d0f88947939a7b2edfd1')
+
+build() {
+  cd ${srcdir}/mktorrent-${pkgver}
+  make PREFIX=/usr \
+  USE_PTHREADS=1 USE_OPENSSL=1 USE_LONG_OPTIONS=1 USE_LARGE_FILES=1
+}
+
+package() {
+  cd ${srcdir}/mktorrent-${pkgver}
+  make DESTDIR=${pkgdir} PREFIX=/usr \
+  USE_PTHREADS=1 USE_OPENSSL=1 USE_LONG_OPTIONS=1 USE_LARGE_FILES=1 \
+  install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-07-14 19:15:19 UTC (rev 182911)
+++ community-x86_64/PKGBUILD   2016-07-14 19:15:35 UTC (rev 182912)
@@ -1,26 +0,0 @@
-# $Id$
-# Contributor: Emil Renner Berthing 
-
-pkgname=mktorrent
-pkgver=1.0
-pkgrel=4
-pkgdesc='Simple command line utility to create BitTorrent metainfo files'
-arch=('i686' 'x86_64')
-url='http://mktorrent.sourceforge.net/'
-license='GPL'
-depends=('openssl')
-source=("http://downloads.sourceforge.net/mktorrent/mktorrent-${pkgver}.tar.gz;)
-md5sums=('0da00209da96a0dc39efbb6eb5b4d8ff')
-
-build() {
-  cd ${srcdir}/mktorrent-${pkgver}
-  make PREFIX=/usr \
-  USE_PTHREADS=1 USE_OPENSSL=1 USE_LONG_OPTIONS=1 USE_LARGE_FILES=1
-}
-
-package() {
-  cd ${srcdir}/mktorrent-${pkgver}
-  make DESTDIR=${pkgdir} PREFIX=/usr \
-  USE_PTHREADS=1 USE_OPENSSL=1 USE_LONG_OPTIONS=1 USE_LARGE_FILES=1 \
-  install
-}

Copied: mktorrent/repos/community-x86_64/PKGBUILD (from rev 182911, 
mktorrent/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-07-14 19:15:35 UTC (rev 182912)
@@ -0,0 +1,28 @@
+# $Id$
+# Contributor: Emil Renner Berthing 
+
+pkgname=mktorrent
+pkgver=1.0
+pkgrel=5
+pkgdesc='Simple command line utility to create BitTorrent metainfo files'
+arch=('i686' 'x86_64')
+#url='http://mktorrent.sourceforge.net/'
+url="https://github.com/Rudde/mktorrent;
+license=('GPL')
+depends=('openssl')
+#source=("http://downloads.sourceforge.net/mktorrent/mktorrent-${pkgver}.tar.gz;)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Rudde/mktorrent/archive/v$pkgver.tar.gz;)
+md5sums=('0610018b3d83d0f88947939a7b2edfd1')
+
+build() {
+  cd ${srcdir}/mktorrent-${pkgver}
+  make PREFIX=/usr \
+  USE_PTHREADS=1 USE_OPENSSL=1 USE_LONG_OPTIONS=1 USE_LARGE_FILES=1
+}
+
+package() {
+  cd 

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

2016-07-14 Thread Sergej Pupykin
Date: Thursday, July 14, 2016 @ 19:15:19
  Author: spupykin
Revision: 182911

upgpkg: mktorrent 1.0-5

upd

Modified:
  mktorrent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 17:02:58 UTC (rev 182910)
+++ PKGBUILD2016-07-14 19:15:19 UTC (rev 182911)
@@ -3,14 +3,16 @@
 
 pkgname=mktorrent
 pkgver=1.0
-pkgrel=4
+pkgrel=5
 pkgdesc='Simple command line utility to create BitTorrent metainfo files'
 arch=('i686' 'x86_64')
-url='http://mktorrent.sourceforge.net/'
-license='GPL'
+#url='http://mktorrent.sourceforge.net/'
+url="https://github.com/Rudde/mktorrent;
+license=('GPL')
 depends=('openssl')
-source=("http://downloads.sourceforge.net/mktorrent/mktorrent-${pkgver}.tar.gz;)
-md5sums=('0da00209da96a0dc39efbb6eb5b4d8ff')
+#source=("http://downloads.sourceforge.net/mktorrent/mktorrent-${pkgver}.tar.gz;)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Rudde/mktorrent/archive/v$pkgver.tar.gz;)
+md5sums=('0610018b3d83d0f88947939a7b2edfd1')
 
 build() {
   cd ${srcdir}/mktorrent-${pkgver}


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

2016-07-14 Thread Daniel Isenmann
Date: Thursday, July 14, 2016 @ 19:10:50
  Author: daniel
Revision: 271869

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-07-14 19:10:45 UTC (rev 271868)
+++ extra-i686/PKGBUILD 2016-07-14 19:10:50 UTC (rev 271869)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Daniel Isenmann 
-
-pkgname=babl
-pkgver=0.1.14
-pkgrel=1
-pkgdesc="Dynamic, any to any, pixel format conversion library"
-arch=('i686' 'x86_64')
-url="http://gegl.org/babl/;
-license=('LGPL3')
-depends=('glibc')
-makedepends=('gobject-introspection' 'vala')
-options=('!makeflags')
-source=(http://ftp.gimp.org/pub/babl/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('1e1e27a9a07da95e905d07816701b2efaf5611af')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make check
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: babl/repos/extra-i686/PKGBUILD (from rev 271868, babl/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-07-14 19:10:50 UTC (rev 271869)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Daniel Isenmann 
+
+pkgname=babl
+pkgver=0.1.16
+pkgrel=1
+pkgdesc="Dynamic, any to any, pixel format conversion library"
+arch=('i686' 'x86_64')
+url="http://gegl.org/babl/;
+license=('LGPL3')
+depends=('glibc')
+makedepends=('gobject-introspection' 'vala')
+options=('!makeflags')
+source=(http://ftp.gimp.org/pub/babl/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('a1c72e5f5d55a8b736ef2fa67ddb86ec')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-07-14 19:10:45 UTC (rev 271868)
+++ extra-x86_64/PKGBUILD   2016-07-14 19:10:50 UTC (rev 271869)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Daniel Isenmann 
-
-pkgname=babl
-pkgver=0.1.14
-pkgrel=1
-pkgdesc="Dynamic, any to any, pixel format conversion library"
-arch=('i686' 'x86_64')
-url="http://gegl.org/babl/;
-license=('LGPL3')
-depends=('glibc')
-makedepends=('gobject-introspection' 'vala')
-options=('!makeflags')
-source=(http://ftp.gimp.org/pub/babl/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('1e1e27a9a07da95e905d07816701b2efaf5611af')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make check
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: babl/repos/extra-x86_64/PKGBUILD (from rev 271868, babl/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-07-14 19:10:50 UTC (rev 271869)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Daniel Isenmann 
+
+pkgname=babl
+pkgver=0.1.16
+pkgrel=1
+pkgdesc="Dynamic, any to any, pixel format conversion library"
+arch=('i686' 'x86_64')
+url="http://gegl.org/babl/;
+license=('LGPL3')
+depends=('glibc')
+makedepends=('gobject-introspection' 'vala')
+options=('!makeflags')
+source=(http://ftp.gimp.org/pub/babl/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('a1c72e5f5d55a8b736ef2fa67ddb86ec')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}


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

2016-07-14 Thread Daniel Isenmann
Date: Thursday, July 14, 2016 @ 19:10:57
  Author: daniel
Revision: 271870

upgpkg: gimp 2.8.18-1

New upstream release

Modified:
  gimp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 19:10:50 UTC (rev 271869)
+++ PKGBUILD2016-07-14 19:10:57 UTC (rev 271870)
@@ -2,8 +2,8 @@
 # Maintainer: Daniel Isenmann 
 
 pkgname=gimp
-pkgver=2.8.16
-pkgrel=2
+pkgver=2.8.18
+pkgrel=1
 pkgdesc="GNU Image Manipulation Program"
 arch=('i686' 'x86_64')
 url="http://www.gimp.org/;
@@ -22,7 +22,7 @@
 conflicts=('gimp-devel')
 
source=(http://download.gimp.org/pub/gimp/v${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2
 linux.gpl 
 uri-backend-libcurl.patch)
-md5sums=('30e0a1b7c18b0e3415f4ac54567252ac'
+md5sums=('5adaa11a68bc8a42bb2c778fee4d389c'
  'bb27bc214261d36484093e857f015f38'
  'e894f4b2ffa92c71448fdd350e9b78c6')
 


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

2016-07-14 Thread Daniel Isenmann
Date: Thursday, July 14, 2016 @ 19:11:03
  Author: daniel
Revision: 271871

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

Added:
  gimp/repos/extra-i686/PKGBUILD
(from rev 271870, gimp/trunk/PKGBUILD)
  gimp/repos/extra-i686/freetype_location.patch
(from rev 271870, gimp/trunk/freetype_location.patch)
  gimp/repos/extra-i686/linux.gpl
(from rev 271870, gimp/trunk/linux.gpl)
  gimp/repos/extra-i686/patch_CVE1913.patch
(from rev 271870, gimp/trunk/patch_CVE1913.patch)
  gimp/repos/extra-i686/patch_CVE197.patch
(from rev 271870, gimp/trunk/patch_CVE197.patch)
  gimp/repos/extra-i686/uri-backend-libcurl.patch
(from rev 271870, gimp/trunk/uri-backend-libcurl.patch)
  gimp/repos/extra-x86_64/PKGBUILD
(from rev 271870, gimp/trunk/PKGBUILD)
  gimp/repos/extra-x86_64/freetype_location.patch
(from rev 271870, gimp/trunk/freetype_location.patch)
  gimp/repos/extra-x86_64/linux.gpl
(from rev 271870, gimp/trunk/linux.gpl)
  gimp/repos/extra-x86_64/patch_CVE1913.patch
(from rev 271870, gimp/trunk/patch_CVE1913.patch)
  gimp/repos/extra-x86_64/patch_CVE197.patch
(from rev 271870, gimp/trunk/patch_CVE197.patch)
  gimp/repos/extra-x86_64/uri-backend-libcurl.patch
(from rev 271870, gimp/trunk/uri-backend-libcurl.patch)
Deleted:
  gimp/repos/extra-i686/PKGBUILD
  gimp/repos/extra-i686/freetype_location.patch
  gimp/repos/extra-i686/linux.gpl
  gimp/repos/extra-i686/patch_CVE1913.patch
  gimp/repos/extra-i686/patch_CVE197.patch
  gimp/repos/extra-i686/uri-backend-libcurl.patch
  gimp/repos/extra-x86_64/PKGBUILD
  gimp/repos/extra-x86_64/freetype_location.patch
  gimp/repos/extra-x86_64/linux.gpl
  gimp/repos/extra-x86_64/patch_CVE1913.patch
  gimp/repos/extra-x86_64/patch_CVE197.patch
  gimp/repos/extra-x86_64/uri-backend-libcurl.patch

+
 /PKGBUILD  |   98 ++
 /freetype_location.patch   |   50 +
 /linux.gpl |   38 +++
 /patch_CVE1913.patch   |   60 ++
 /patch_CVE197.patch|  300 +++
 /uri-backend-libcurl.patch |  154 +++
 extra-i686/PKGBUILD|   49 -
 extra-i686/freetype_location.patch |   25 --
 extra-i686/linux.gpl   |   19 -
 extra-i686/patch_CVE1913.patch |   30 ---
 extra-i686/patch_CVE197.patch  |  150 ---
 extra-i686/uri-backend-libcurl.patch   |   77 ---
 extra-x86_64/PKGBUILD  |   49 -
 extra-x86_64/freetype_location.patch   |   25 --
 extra-x86_64/linux.gpl |   19 -
 extra-x86_64/patch_CVE1913.patch   |   30 ---
 extra-x86_64/patch_CVE197.patch|  150 ---
 extra-x86_64/uri-backend-libcurl.patch |   77 ---
 18 files changed, 700 insertions(+), 700 deletions(-)

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


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

2016-07-14 Thread Daniel Isenmann
Date: Thursday, July 14, 2016 @ 19:10:45
  Author: daniel
Revision: 271868

upgpkg: babl 0.1.16-1

New upstream release

Modified:
  babl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 18:53:43 UTC (rev 271867)
+++ PKGBUILD2016-07-14 19:10:45 UTC (rev 271868)
@@ -2,7 +2,7 @@
 # Maintainer: Daniel Isenmann 
 
 pkgname=babl
-pkgver=0.1.14
+pkgver=0.1.16
 pkgrel=1
 pkgdesc="Dynamic, any to any, pixel format conversion library"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 makedepends=('gobject-introspection' 'vala')
 options=('!makeflags')
 source=(http://ftp.gimp.org/pub/babl/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('1e1e27a9a07da95e905d07816701b2efaf5611af')
+md5sums=('a1c72e5f5d55a8b736ef2fa67ddb86ec')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"


[arch-commits] Commit in mono/repos (40 files)

2016-07-14 Thread Daniel Isenmann
Date: Thursday, July 14, 2016 @ 18:27:00
  Author: daniel
Revision: 271865

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

Added:
  mono/repos/extra-i686/Microsoft.Portable.Common.targets
(from rev 271864, mono/trunk/Microsoft.Portable.Common.targets)
  mono/repos/extra-i686/PKGBUILD
(from rev 271864, mono/trunk/PKGBUILD)
  mono/repos/extra-i686/bug434892.patch
(from rev 271864, mono/trunk/bug434892.patch)
  mono/repos/extra-i686/build_fix.patch
(from rev 271864, mono/trunk/build_fix.patch)
  mono/repos/extra-i686/fix-zlib-helper.patch
(from rev 271864, mono/trunk/fix-zlib-helper.patch)
  mono/repos/extra-i686/mono.binfmt.d
(from rev 271864, mono/trunk/mono.binfmt.d)
  mono/repos/extra-i686/mono.install
(from rev 271864, mono/trunk/mono.install)
  mono/repos/extra-i686/mono_context.patch
(from rev 271864, mono/trunk/mono_context.patch)
  mono/repos/extra-i686/sgen_fix.patch
(from rev 271864, mono/trunk/sgen_fix.patch)
  mono/repos/extra-i686/tls_fix.patch
(from rev 271864, mono/trunk/tls_fix.patch)
  mono/repos/extra-x86_64/Microsoft.Portable.Common.targets
(from rev 271864, mono/trunk/Microsoft.Portable.Common.targets)
  mono/repos/extra-x86_64/PKGBUILD
(from rev 271864, mono/trunk/PKGBUILD)
  mono/repos/extra-x86_64/bug434892.patch
(from rev 271864, mono/trunk/bug434892.patch)
  mono/repos/extra-x86_64/build_fix.patch
(from rev 271864, mono/trunk/build_fix.patch)
  mono/repos/extra-x86_64/fix-zlib-helper.patch
(from rev 271864, mono/trunk/fix-zlib-helper.patch)
  mono/repos/extra-x86_64/mono.binfmt.d
(from rev 271864, mono/trunk/mono.binfmt.d)
  mono/repos/extra-x86_64/mono.install
(from rev 271864, mono/trunk/mono.install)
  mono/repos/extra-x86_64/mono_context.patch
(from rev 271864, mono/trunk/mono_context.patch)
  mono/repos/extra-x86_64/sgen_fix.patch
(from rev 271864, mono/trunk/sgen_fix.patch)
  mono/repos/extra-x86_64/tls_fix.patch
(from rev 271864, mono/trunk/tls_fix.patch)
Deleted:
  mono/repos/extra-i686/Microsoft.Portable.Common.targets
  mono/repos/extra-i686/PKGBUILD
  mono/repos/extra-i686/bug434892.patch
  mono/repos/extra-i686/build_fix.patch
  mono/repos/extra-i686/fix-zlib-helper.patch
  mono/repos/extra-i686/mono.binfmt.d
  mono/repos/extra-i686/mono.install
  mono/repos/extra-i686/mono_context.patch
  mono/repos/extra-i686/sgen_fix.patch
  mono/repos/extra-i686/tls_fix.patch
  mono/repos/extra-x86_64/Microsoft.Portable.Common.targets
  mono/repos/extra-x86_64/PKGBUILD
  mono/repos/extra-x86_64/bug434892.patch
  mono/repos/extra-x86_64/build_fix.patch
  mono/repos/extra-x86_64/fix-zlib-helper.patch
  mono/repos/extra-x86_64/mono.binfmt.d
  mono/repos/extra-x86_64/mono.install
  mono/repos/extra-x86_64/mono_context.patch
  mono/repos/extra-x86_64/sgen_fix.patch
  mono/repos/extra-x86_64/tls_fix.patch

+
 /Microsoft.Portable.Common.targets |8 
 /PKGBUILD  |  120 
 /bug434892.patch   |   22 ++
 /build_fix.patch   |   50 +
 /fix-zlib-helper.patch |   52 +
 /mono.binfmt.d |2 
 /mono.install  |   14 +
 /mono_context.patch|  108 +++
 /sgen_fix.patch|  224 +++
 /tls_fix.patch |  182 ++
 extra-i686/Microsoft.Portable.Common.targets   |4 
 extra-i686/PKGBUILD|   63 --
 extra-i686/bug434892.patch |   11 -
 extra-i686/build_fix.patch |   25 --
 extra-i686/fix-zlib-helper.patch   |   26 --
 extra-i686/mono.binfmt.d   |1 
 extra-i686/mono.install|7 
 extra-i686/mono_context.patch  |   54 -
 extra-i686/sgen_fix.patch  |  112 ---
 extra-i686/tls_fix.patch   |   91 -
 extra-x86_64/Microsoft.Portable.Common.targets |4 
 extra-x86_64/PKGBUILD  |   63 --
 extra-x86_64/bug434892.patch   |   11 -
 extra-x86_64/build_fix.patch   |   25 --
 extra-x86_64/fix-zlib-helper.patch |   26 --
 extra-x86_64/mono.binfmt.d |1 
 extra-x86_64/mono.install  |7 
 extra-x86_64/mono_context.patch|   54 -
 extra-x86_64/sgen_fix.patch|  112 ---
 extra-x86_64/tls_fix.patch |   91 -
 30 files changed, 782 insertions(+), 788 deletions(-)

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


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

2016-07-14 Thread Daniel Isenmann
Date: Thursday, July 14, 2016 @ 18:26:52
  Author: daniel
Revision: 271864

upgpkg: mono 4.4.1.0-1

New upstream release

Modified:
  mono/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 18:26:43 UTC (rev 271863)
+++ PKGBUILD2016-07-14 18:26:52 UTC (rev 271864)
@@ -3,25 +3,23 @@
 # Contributor: Brice Carpentier 
 
 pkgname=mono
-pkgver=4.4.0.40
-_pkgver=4.4.0
-pkgrel=2
+pkgver=4.4.1.0
+_pkgver=4.4.1
+pkgrel=1
 pkgdesc="Free implementation of the .NET platform including runtime and 
compiler"
 arch=(i686 x86_64)
 license=('GPL' 'LGPL2.1' 'MPL' 'custom:MITX11')
 url="http://www.mono-project.com/;
-depends=('zlib' 'libgdiplus>=3.8' 'sh' 'python' 'ca-certificates')
+depends=('zlib' 'libgdiplus>=4.2' 'sh' 'python' 'ca-certificates')
 provides=('monodoc')
 conflicts=('monodoc')
 install="${pkgname}.install"
 
source=(http://download.mono-project.com/sources/mono/${pkgname}-${pkgver}.tar.bz2
 mono.binfmt.d
-   mono_context.patch
-   tls_fix.patch)
-md5sums=('f9765c947421ec96ab30aa73f0f4659f'
+   mono_context.patch)
+md5sums=('18b7931a20b0dbb7c27322bb6a1ad5e2'
  'b9ef8a65fea497acf176cca16c1e2402'
- '9325e50a3fde354229c507801622b64b'
- 'f354f332a66014743e1dfd0bde058ba7')
+ '9325e50a3fde354229c507801622b64b')
 
 build() {
   cd "${srcdir}"/${pkgname}-${_pkgver}
@@ -33,7 +31,6 @@
 --bindir=/usr/bin \
 --sbindir=/usr/bin \
 --with-mcs-docs=no 
-  patch -p1 < ../tls_fix.patch
   make
 
   # build jay


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

2016-07-14 Thread Daniel Isenmann
Date: Thursday, July 14, 2016 @ 18:26:43
  Author: daniel
Revision: 271863

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

Added:
  libgdiplus/repos/extra-i686/PKGBUILD
(from rev 271862, libgdiplus/trunk/PKGBUILD)
  libgdiplus/repos/extra-i686/libgdiplus-2.10.9-freetype25.patch
(from rev 271862, libgdiplus/trunk/libgdiplus-2.10.9-freetype25.patch)
  libgdiplus/repos/extra-i686/libgdiplus-2.10.9-giflib-5.1.0.patch
(from rev 271862, libgdiplus/trunk/libgdiplus-2.10.9-giflib-5.1.0.patch)
  libgdiplus/repos/extra-i686/libgdiplus-2.10.9-gold.patch
(from rev 271862, libgdiplus/trunk/libgdiplus-2.10.9-gold.patch)
  libgdiplus/repos/extra-i686/libgdiplus0-giflib5.patch
(from rev 271862, libgdiplus/trunk/libgdiplus0-giflib5.patch)
  libgdiplus/repos/extra-i686/libpng15.patch
(from rev 271862, libgdiplus/trunk/libpng15.patch)
  libgdiplus/repos/extra-x86_64/PKGBUILD
(from rev 271862, libgdiplus/trunk/PKGBUILD)
  libgdiplus/repos/extra-x86_64/libgdiplus-2.10.9-freetype25.patch
(from rev 271862, libgdiplus/trunk/libgdiplus-2.10.9-freetype25.patch)
  libgdiplus/repos/extra-x86_64/libgdiplus-2.10.9-giflib-5.1.0.patch
(from rev 271862, libgdiplus/trunk/libgdiplus-2.10.9-giflib-5.1.0.patch)
  libgdiplus/repos/extra-x86_64/libgdiplus-2.10.9-gold.patch
(from rev 271862, libgdiplus/trunk/libgdiplus-2.10.9-gold.patch)
  libgdiplus/repos/extra-x86_64/libgdiplus0-giflib5.patch
(from rev 271862, libgdiplus/trunk/libgdiplus0-giflib5.patch)
  libgdiplus/repos/extra-x86_64/libpng15.patch
(from rev 271862, libgdiplus/trunk/libpng15.patch)
Deleted:
  libgdiplus/repos/extra-i686/PKGBUILD
  libgdiplus/repos/extra-i686/libgdiplus-2.10.9-freetype25.patch
  libgdiplus/repos/extra-i686/libgdiplus-2.10.9-giflib-5.1.0.patch
  libgdiplus/repos/extra-i686/libgdiplus-2.10.9-gold.patch
  libgdiplus/repos/extra-i686/libgdiplus0-giflib5.patch
  libgdiplus/repos/extra-i686/libpng15.patch
  libgdiplus/repos/extra-x86_64/PKGBUILD
  libgdiplus/repos/extra-x86_64/libgdiplus-2.10.9-freetype25.patch
  libgdiplus/repos/extra-x86_64/libgdiplus-2.10.9-giflib-5.1.0.patch
  libgdiplus/repos/extra-x86_64/libgdiplus-2.10.9-gold.patch
  libgdiplus/repos/extra-x86_64/libgdiplus0-giflib5.patch
  libgdiplus/repos/extra-x86_64/libpng15.patch

---+
 /PKGBUILD |   60 +++
 /libgdiplus-2.10.9-freetype25.patch   |   52 +++
 /libgdiplus-2.10.9-giflib-5.1.0.patch |   60 +++
 /libgdiplus-2.10.9-gold.patch |   32 +
 /libgdiplus0-giflib5.patch|  274 
 /libpng15.patch   |  328 
 extra-i686/PKGBUILD   |   34 --
 extra-i686/libgdiplus-2.10.9-freetype25.patch |   26 -
 extra-i686/libgdiplus-2.10.9-giflib-5.1.0.patch   |   30 -
 extra-i686/libgdiplus-2.10.9-gold.patch   |   16 
 extra-i686/libgdiplus0-giflib5.patch  |  137 
 extra-i686/libpng15.patch |  164 --
 extra-x86_64/PKGBUILD |   34 --
 extra-x86_64/libgdiplus-2.10.9-freetype25.patch   |   26 -
 extra-x86_64/libgdiplus-2.10.9-giflib-5.1.0.patch |   30 -
 extra-x86_64/libgdiplus-2.10.9-gold.patch |   16 
 extra-x86_64/libgdiplus0-giflib5.patch|  137 
 extra-x86_64/libpng15.patch   |  164 --
 18 files changed, 806 insertions(+), 814 deletions(-)

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


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

2016-07-14 Thread Daniel Isenmann
Date: Thursday, July 14, 2016 @ 18:26:37
  Author: daniel
Revision: 271862

upgpkg: libgdiplus 4.2-1

New upstream release

Modified:
  libgdiplus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 18:19:47 UTC (rev 271861)
+++ PKGBUILD2016-07-14 18:26:37 UTC (rev 271862)
@@ -2,7 +2,7 @@
 # Maintainer: Daniel Isenmann 
 
 pkgname=libgdiplus
-pkgver=3.12
+pkgver=4.2
 pkgrel=1
 pkgdesc="An Open Source Implementation of the GDI+ API"
 arch=(i686 x86_64)
@@ -9,15 +9,11 @@
 license=('MPL' 'LGPL')
 url="http://www.mono-project.com;
 depends=('libtiff' 'cairo' 'giflib' 'glib2' 'libexif')
-source=(http://download.mono-project.com/sources/${pkgname}/${pkgname}-${pkgver}.tar.gz
-   libgdiplus0-giflib5.patch)
-md5sums=('b8fd78c2adce16498354c2476a248d98'
- 'fa26245d5bf28607730192386d66fca7')
+source=(http://download.mono-project.com/sources/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+md5sums=('3e68075aa0911d5ebc2b3739e85af0ea')
 
 prepare() {
   cd ${pkgname}-${pkgver}
-  patch -Np1 -i ../libgdiplus0-giflib5.patch
-
   sed -i -e 's/-L\${libjpeg_prefix}\/lib -ljpeg/-ljpeg/' configure
 }
 


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

2016-07-14 Thread Jan de Groot
Date: Thursday, July 14, 2016 @ 18:19:47
  Author: jgc
Revision: 271861

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

Added:
  poppler/repos/staging-i686/
  poppler/repos/staging-i686/PKGBUILD
(from rev 271860, poppler/trunk/PKGBUILD)
  poppler/repos/staging-x86_64/
  poppler/repos/staging-x86_64/PKGBUILD
(from rev 271860, poppler/trunk/PKGBUILD)

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

Copied: poppler/repos/staging-i686/PKGBUILD (from rev 271860, 
poppler/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-07-14 18:19:47 UTC (rev 271861)
@@ -0,0 +1,92 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgbase=poppler
+pkgname=('poppler' 'poppler-glib' 'poppler-qt4' 'poppler-qt5')
+pkgver=0.45.0
+pkgrel=1
+arch=(i686 x86_64)
+license=('GPL')
+makedepends=('libjpeg' 'gcc-libs' 'cairo' 'fontconfig' 'openjpeg' 'gtk2' 'qt4' 
'pkgconfig' 'lcms2' 'gobject-introspection' 'icu' 'qt5-base' 'git' 'python2')
+options=('!emptydirs')
+url="https://poppler.freedesktop.org/;
+source=(https://poppler.freedesktop.org/${pkgbase}-${pkgver}.tar.xz
+test::git+https://cgit.freedesktop.org/poppler/test/#commit=0d2bfd4)
+sha256sums=('96dd1a6024bcdaa4530a3b49687db3d5c24ddfd072ccb37c6de0e42599728798'
+'SKIP')
+ 
+build() {
+  cd ${pkgbase}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --enable-cairo-output \
+  --enable-xpdf-headers \
+  --enable-libjpeg --enable-zlib \
+  --enable-poppler-qt4 \
+  --enable-poppler-qt5 \
+  --enable-poppler-glib
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' libtool
+
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  LANG=en_US.UTF8 make check
+}
+
+package_poppler() {
+  pkgdesc="PDF rendering library based on xpdf 3.0"
+  depends=('libjpeg' 'gcc-libs' 'cairo' 'fontconfig' 'openjpeg' 'lcms2')
+  optdepends=('poppler-data: encoding data to display PDF documents containing 
CJK characters')
+  conflicts=("poppler-qt3<${pkgver}")
+
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  sed -e 's/^glib_subdir =.*/glib_subdir =/' \
+  -e 's/^qt4_subdir =.*/qt4_subdir =/' \
+  -e 's/^qt5_subdir =.*/qt5_subdir =/' -i Makefile
+  make DESTDIR="${pkgdir}" install
+
+  rm -f "${pkgdir}"/usr/lib/pkgconfig/poppler-{glib,qt4,qt5}.pc
+}
+
+package_poppler-glib() {
+  pkgdesc="Poppler glib bindings"
+  depends=("poppler=${pkgver}" 'glib2')
+
+  cd "${pkgbase}-${pkgver}"
+  make -C poppler DESTDIR="${pkgdir}" install-libLTLIBRARIES
+  make -C glib DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/lib/pkgconfig"
+  install -m644 poppler-glib.pc "${pkgdir}/usr/lib/pkgconfig/"
+  rm -f "${pkgdir}"/usr/lib/libpoppler.*
+  rm -f "${pkgdir}/usr/bin/poppler-glib-demo"
+}
+
+package_poppler-qt4() {
+  pkgdesc="Poppler Qt4 bindings"
+  provides=("poppler-qt=${pkgver}")
+  replaces=('poppler-qt')
+  conflicts=('poppler-qt')
+  depends=("poppler=${pkgver}" 'qt4')
+
+  cd "${pkgbase}-${pkgver}"
+  make -C poppler DESTDIR="${pkgdir}" install-libLTLIBRARIES
+  make -C qt4 DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/lib/pkgconfig"
+  install -m644 poppler-qt4.pc "${pkgdir}/usr/lib/pkgconfig/"
+  rm -f "${pkgdir}"/usr/lib/libpoppler.*
+}
+
+package_poppler-qt5() {
+  pkgdesc="Poppler Qt5 bindings"
+  depends=("poppler=${pkgver}" 'qt5-base')
+
+  cd "${pkgbase}-${pkgver}"
+  make -C poppler DESTDIR="${pkgdir}" install-libLTLIBRARIES
+  make -C qt5 DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/lib/pkgconfig"
+  install -m644 poppler-qt5.pc "${pkgdir}/usr/lib/pkgconfig/"
+  rm -f "${pkgdir}"/usr/lib/libpoppler.*
+}

Copied: poppler/repos/staging-x86_64/PKGBUILD (from rev 271860, 
poppler/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-07-14 18:19:47 UTC (rev 271861)
@@ -0,0 +1,92 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgbase=poppler
+pkgname=('poppler' 'poppler-glib' 'poppler-qt4' 'poppler-qt5')
+pkgver=0.45.0
+pkgrel=1
+arch=(i686 x86_64)
+license=('GPL')
+makedepends=('libjpeg' 'gcc-libs' 'cairo' 'fontconfig' 'openjpeg' 'gtk2' 'qt4' 
'pkgconfig' 'lcms2' 'gobject-introspection' 'icu' 'qt5-base' 'git' 'python2')
+options=('!emptydirs')
+url="https://poppler.freedesktop.org/;
+source=(https://poppler.freedesktop.org/${pkgbase}-${pkgver}.tar.xz
+test::git+https://cgit.freedesktop.org/poppler/test/#commit=0d2bfd4)
+sha256sums=('96dd1a6024bcdaa4530a3b49687db3d5c24ddfd072ccb37c6de0e42599728798'
+'SKIP')
+ 
+build() {
+  cd 

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

2016-07-14 Thread Jan de Groot
Date: Thursday, July 14, 2016 @ 18:19:38
  Author: jgc
Revision: 271860

upgpkg: poppler 0.45.0-1

Modified:
  poppler/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 18:07:04 UTC (rev 271859)
+++ PKGBUILD2016-07-14 18:19:38 UTC (rev 271860)
@@ -3,17 +3,17 @@
 
 pkgbase=poppler
 pkgname=('poppler' 'poppler-glib' 'poppler-qt4' 'poppler-qt5')
-pkgver=0.42.0
+pkgver=0.45.0
 pkgrel=1
 arch=(i686 x86_64)
 license=('GPL')
 makedepends=('libjpeg' 'gcc-libs' 'cairo' 'fontconfig' 'openjpeg' 'gtk2' 'qt4' 
'pkgconfig' 'lcms2' 'gobject-introspection' 'icu' 'qt5-base' 'git' 'python2')
 options=('!emptydirs')
-url="http://poppler.freedesktop.org/;
-source=(http://poppler.freedesktop.org/${pkgbase}-${pkgver}.tar.xz
+url="https://poppler.freedesktop.org/;
+source=(https://poppler.freedesktop.org/${pkgbase}-${pkgver}.tar.xz
 test::git+https://cgit.freedesktop.org/poppler/test/#commit=0d2bfd4)
-md5sums=('c63efcde7d52b4135bb7463b04790862'
- 'SKIP')
+sha256sums=('96dd1a6024bcdaa4530a3b49687db3d5c24ddfd072ccb37c6de0e42599728798'
+'SKIP')
  
 build() {
   cd ${pkgbase}-${pkgver}
@@ -26,7 +26,7 @@
   --enable-poppler-qt5 \
   --enable-poppler-glib
 
-  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
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' libtool
 
   make
 }


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

2016-07-14 Thread Jan de Groot
Date: Thursday, July 14, 2016 @ 18:07:04
  Author: jgc
Revision: 271859

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-07-14 18:06:59 UTC (rev 271858)
+++ extra-i686/PKGBUILD 2016-07-14 18:07:04 UTC (rev 271859)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=libwacom
-pkgver=0.18
-pkgrel=1
-pkgdesc="Library to identify Wacom tablets and their features"
-arch=('x86_64' 'i686')
-url="http://sourceforge.net/apps/mediawiki/linuxwacom/index.php?title=Libwacom;
-license=('MIT')
-depends=('glib2' 'systemd' 'libgudev')
-source=(http://sourceforge.net/projects/linuxwacom/files/libwacom/$pkgname-$pkgver.tar.bz2{,.sig})
-sha256sums=('71bfa2a8d10ec2f2ada852aed816724a9af4713cbe0cf8559877b7fa56a7b722'
-'SKIP')
-validpgpkeys=('9A12ECCC5383CA2AF5B42CDCA6DC66911B2127D5') #Jason Gerecke 

-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -m755 -d ${pkgdir}/usr/lib/udev/rules.d
-  cd tools
-  ./generate-udev-rules > ${pkgdir}/usr/lib/udev/rules.d/65-libwacom.rules
-  
-}

Copied: libwacom/repos/extra-i686/PKGBUILD (from rev 271858, 
libwacom/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-07-14 18:07:04 UTC (rev 271859)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=libwacom
+pkgver=0.21
+pkgrel=1
+pkgdesc="Library to identify Wacom tablets and their features"
+arch=('x86_64' 'i686')
+url="https://sourceforge.net/apps/mediawiki/linuxwacom/index.php?title=Libwacom;
+license=('MIT')
+depends=('glib2' 'systemd' 'libgudev')
+source=(https://sourceforge.net/projects/linuxwacom/files/libwacom/$pkgname-$pkgver.tar.bz2{,.sig})
+sha256sums=('c594cacc69a572356a76cd7909b913d3867759a872a2663b2005ff4e99984605'
+'SKIP')
+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 

+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -m755 -d ${pkgdir}/usr/lib/udev/rules.d
+  cd tools
+  ./generate-udev-rules > ${pkgdir}/usr/lib/udev/rules.d/65-libwacom.rules
+  
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-07-14 18:06:59 UTC (rev 271858)
+++ extra-x86_64/PKGBUILD   2016-07-14 18:07:04 UTC (rev 271859)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=libwacom
-pkgver=0.18
-pkgrel=1
-pkgdesc="Library to identify Wacom tablets and their features"
-arch=('x86_64' 'i686')
-url="http://sourceforge.net/apps/mediawiki/linuxwacom/index.php?title=Libwacom;
-license=('MIT')
-depends=('glib2' 'systemd' 'libgudev')
-source=(http://sourceforge.net/projects/linuxwacom/files/libwacom/$pkgname-$pkgver.tar.bz2{,.sig})
-sha256sums=('71bfa2a8d10ec2f2ada852aed816724a9af4713cbe0cf8559877b7fa56a7b722'
-'SKIP')
-validpgpkeys=('9A12ECCC5383CA2AF5B42CDCA6DC66911B2127D5') #Jason Gerecke 

-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -m755 -d ${pkgdir}/usr/lib/udev/rules.d
-  cd tools
-  ./generate-udev-rules > ${pkgdir}/usr/lib/udev/rules.d/65-libwacom.rules
-  
-}

Copied: libwacom/repos/extra-x86_64/PKGBUILD (from rev 271858, 
libwacom/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-07-14 18:07:04 UTC (rev 271859)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan 

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

2016-07-14 Thread Jan de Groot
Date: Thursday, July 14, 2016 @ 18:06:59
  Author: jgc
Revision: 271858

upgpkg: libwacom 0.21-1

Modified:
  libwacom/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 18:00:02 UTC (rev 271857)
+++ PKGBUILD2016-07-14 18:06:59 UTC (rev 271858)
@@ -2,17 +2,17 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=libwacom
-pkgver=0.18
+pkgver=0.21
 pkgrel=1
 pkgdesc="Library to identify Wacom tablets and their features"
 arch=('x86_64' 'i686')
-url="http://sourceforge.net/apps/mediawiki/linuxwacom/index.php?title=Libwacom;
+url="https://sourceforge.net/apps/mediawiki/linuxwacom/index.php?title=Libwacom;
 license=('MIT')
 depends=('glib2' 'systemd' 'libgudev')
-source=(http://sourceforge.net/projects/linuxwacom/files/libwacom/$pkgname-$pkgver.tar.bz2{,.sig})
-sha256sums=('71bfa2a8d10ec2f2ada852aed816724a9af4713cbe0cf8559877b7fa56a7b722'
+source=(https://sourceforge.net/projects/linuxwacom/files/libwacom/$pkgname-$pkgver.tar.bz2{,.sig})
+sha256sums=('c594cacc69a572356a76cd7909b913d3867759a872a2663b2005ff4e99984605'
 'SKIP')
-validpgpkeys=('9A12ECCC5383CA2AF5B42CDCA6DC66911B2127D5') #Jason Gerecke 

+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 

 
 build() {
   cd $pkgname-$pkgver


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

2016-07-14 Thread Jan de Groot
Date: Thursday, July 14, 2016 @ 17:59:58
  Author: jgc
Revision: 271856

upgpkg: pygobject 3.20.1-1

Modified:
  pygobject/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 11:13:07 UTC (rev 271855)
+++ PKGBUILD2016-07-14 17:59:58 UTC (rev 271856)
@@ -3,8 +3,8 @@
 
 pkgbase=pygobject
 pkgname=(python-gobject python2-gobject pygobject-devel)
-pkgver=3.20.0
-pkgrel=2
+pkgver=3.20.1
+pkgrel=1
 pkgdesc="Python Bindings for GLib/GObject/GIO/GTK+"
 url="https://wiki.gnome.org/Projects/PyGObject;
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 makedepends=(python{,2}-cairo gobject-introspection)
 optdepends=('cairo: Cairo bindings')
 
source=("https://download.gnome.org/sources/$pkgbase/${pkgver:0:4}/$pkgbase-$pkgver.tar.xz;)
-sha256sums=('31ab4701f40490082aa98af537ccddba889577abe66d242582f28577e8807f46')
+sha256sums=('3d261005d6fed6a92ac4c25f283792552f7dad865d1b7e0c03c2b84c04dbd745')
 
 prepare() {
   mkdir build-py{2,3} devel


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

2016-07-14 Thread Jan de Groot
Date: Thursday, July 14, 2016 @ 18:00:02
  Author: jgc
Revision: 271857

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-07-14 17:59:58 UTC (rev 271856)
+++ extra-i686/PKGBUILD 2016-07-14 18:00:02 UTC (rev 271857)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgbase=pygobject
-pkgname=(python-gobject python2-gobject pygobject-devel)
-pkgver=3.20.0
-pkgrel=2
-pkgdesc="Python Bindings for GLib/GObject/GIO/GTK+"
-url="https://wiki.gnome.org/Projects/PyGObject;
-arch=(i686 x86_64)
-license=(LGPL)
-depends=(gobject-introspection-runtime)
-makedepends=(python{,2}-cairo gobject-introspection)
-optdepends=('cairo: Cairo bindings')
-source=("https://download.gnome.org/sources/$pkgbase/${pkgver:0:4}/$pkgbase-$pkgver.tar.xz;)
-sha256sums=('31ab4701f40490082aa98af537ccddba889577abe66d242582f28577e8807f46')
-
-prepare() {
-  mkdir build-py{2,3} devel
-}
-
-_build() (
-  cd build-py$1
-  ../$pkgbase-$pkgver/configure --prefix=/usr --with-python=/usr/bin/python$1
-  sed -i 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-)
-
-build() {
-  _build 2
-  _build 3
-}
-
-package_python-gobject() {
-  depends=("pygobject-devel=$pkgver" python)
-
-  cd build-py3
-  make DESTDIR="$pkgdir" install
-  mv "$pkgdir"/usr/{include,lib/pkgconfig} "$srcdir/devel"
-}
-
-package_python2-gobject() {
-  pkgdesc="${pkgdesc/Python/Python2}"
-  depends=("pygobject-devel=$pkgver" python2)
-
-  cd build-py2
-  make DESTDIR="$pkgdir" install
-  python2 -m compileall "$pkgdir"/usr/lib/python2.7/site-packages/gi
-  rm -r "$pkgdir"/usr/{include,lib/pkgconfig}
-}
-
-package_pygobject-devel() {
-  pkgdesc="Common development files for pygobject"
-  optdepends=()
-
-  cd devel
-  mkdir -p "$pkgdir/usr/lib"
-  mv include "$pkgdir/usr/"
-  mv pkgconfig "$pkgdir/usr/lib/"
-}

Copied: pygobject/repos/extra-i686/PKGBUILD (from rev 271856, 
pygobject/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-07-14 18:00:02 UTC (rev 271857)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgbase=pygobject
+pkgname=(python-gobject python2-gobject pygobject-devel)
+pkgver=3.20.1
+pkgrel=1
+pkgdesc="Python Bindings for GLib/GObject/GIO/GTK+"
+url="https://wiki.gnome.org/Projects/PyGObject;
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(gobject-introspection-runtime)
+makedepends=(python{,2}-cairo gobject-introspection)
+optdepends=('cairo: Cairo bindings')
+source=("https://download.gnome.org/sources/$pkgbase/${pkgver:0:4}/$pkgbase-$pkgver.tar.xz;)
+sha256sums=('3d261005d6fed6a92ac4c25f283792552f7dad865d1b7e0c03c2b84c04dbd745')
+
+prepare() {
+  mkdir build-py{2,3} devel
+}
+
+_build() (
+  cd build-py$1
+  ../$pkgbase-$pkgver/configure --prefix=/usr --with-python=/usr/bin/python$1
+  sed -i 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+)
+
+build() {
+  _build 2
+  _build 3
+}
+
+package_python-gobject() {
+  depends=("pygobject-devel=$pkgver" python)
+
+  cd build-py3
+  make DESTDIR="$pkgdir" install
+  mv "$pkgdir"/usr/{include,lib/pkgconfig} "$srcdir/devel"
+}
+
+package_python2-gobject() {
+  pkgdesc="${pkgdesc/Python/Python2}"
+  depends=("pygobject-devel=$pkgver" python2)
+
+  cd build-py2
+  make DESTDIR="$pkgdir" install
+  python2 -m compileall "$pkgdir"/usr/lib/python2.7/site-packages/gi
+  rm -r "$pkgdir"/usr/{include,lib/pkgconfig}
+}
+
+package_pygobject-devel() {
+  pkgdesc="Common development files for pygobject"
+  optdepends=()
+
+  cd devel
+  mkdir -p "$pkgdir/usr/lib"
+  mv include "$pkgdir/usr/"
+  mv pkgconfig "$pkgdir/usr/lib/"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-07-14 17:59:58 UTC (rev 271856)
+++ extra-x86_64/PKGBUILD   2016-07-14 18:00:02 UTC (rev 271857)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgbase=pygobject
-pkgname=(python-gobject python2-gobject pygobject-devel)
-pkgver=3.20.0
-pkgrel=2
-pkgdesc="Python Bindings for GLib/GObject/GIO/GTK+"
-url="https://wiki.gnome.org/Projects/PyGObject;
-arch=(i686 x86_64)
-license=(LGPL)
-depends=(gobject-introspection-runtime)
-makedepends=(python{,2}-cairo gobject-introspection)
-optdepends=('cairo: Cairo 

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

2016-07-14 Thread Sergej Pupykin
Date: Thursday, July 14, 2016 @ 17:02:58
  Author: spupykin
Revision: 182910

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

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

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

Copied: luasec/repos/community-testing-i686/PKGBUILD (from rev 182909, 
luasec/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-07-14 17:02:58 UTC (rev 182910)
@@ -0,0 +1,80 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Dwayne Bent 
+# Contributor: Paul-Sebastian Manole 
+
+pkgbase=luasec
+pkgname=(lua-sec lua51-sec lua52-sec)
+epoch=2
+pkgver=0.6
+pkgrel=1
+pkgdesc='Lua bindings for OpenSSL library to provide TLS/SSL communication.'
+arch=('i686' 'x86_64')
+url='https://github.com/brunoos/luasec/wiki'
+license=('MIT')
+makedepends=('openssl' 'lua' 'lua-socket' 'lua51' 'lua51-socket' 'lua52' 
'lua52-socket')
+options=('!buildflags')
+source=("https://github.com/brunoos/luasec/archive/luasec-$pkgver.tar.gz;)
+md5sums=('14e1aef6d2aae96bbf98afc6b6634af2')
+
+prepare() {
+  cp -a luasec-luasec-$pkgver luasec-luasec-$pkgver-51
+  cp -a luasec-luasec-$pkgver luasec-luasec-$pkgver-52
+}
+
+build() {
+  msg2 'Building with lua 5.3'
+  cd "$srcdir"/luasec-luasec-$pkgver
+  make linux DEFS="-DWITH_LUASOCKET -DOPENSSL_NO_SSL3"
+
+  msg2 'Building with lua 5.1'
+  cd "$srcdir"/luasec-luasec-$pkgver-51
+  find . -type f -name \*.[ch] -exec sed -i \
+-e 's|include .lua.h.|include "lua5.1/lua.h"|g' \
+-e 's|include .lualib.h.|include "lua5.1/lualib.h"|g' \
+-e 's|include .luaconf.h.|include "lua5.1/luaconf.h"|g' \
+-e 's|include .lauxlib.h.|include "lua5.1/lauxlib.h"|g' \
+{} \;
+  make linux DEFS="-DWITH_LUASOCKET -DOPENSSL_NO_SSL3"
+
+  msg2 'Building with lua 5.2'
+  cd "$srcdir"/luasec-luasec-$pkgver-52
+  find . -type f -name \*.[ch] -exec sed -i \
+-e 's|include .lua.h.|include "lua5.2/lua.h"|g' \
+-e 's|include .lualib.h.|include "lua5.2/lualib.h"|g' \
+-e 's|include .luaconf.h.|include "lua5.2/luaconf.h"|g' \
+-e 's|include .lauxlib.h.|include "lua5.2/lauxlib.h"|g' \
+{} \;
+  make linux DEFS="-DWITH_LUASOCKET -DOPENSSL_NO_SSL3"
+}
+
+package_lua-sec() {
+  depends=('openssl' 'lua' 'lua-socket')
+
+  install -dm755 "$pkgdir/usr/lib/lua/5.3"
+  cd luasec-luasec-$pkgver
+  make LUACPATH="$pkgdir/usr/lib/lua/5.3" LUAPATH="$pkgdir/usr/share/lua/5.3" 
install
+  install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua51-sec() {
+  depends=('openssl' 'lua51' 'lua51-socket')
+  conflicts=('luasec')
+  replaces=('luasec')
+
+  install -dm755 "$pkgdir/usr/lib/lua/5.1"
+  cd luasec-luasec-$pkgver-51
+  make LUACPATH="$pkgdir/usr/lib/lua/5.1" LUAPATH="$pkgdir/usr/share/lua/5.1" 
install
+  install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua52-sec() {
+  depends=('openssl' 'lua52' 'lua52-socket')
+
+  install -dm755 "$pkgdir/usr/lib/lua/5.2"
+  cd luasec-luasec-$pkgver-52
+  make LUACPATH="$pkgdir/usr/lib/lua/5.2" LUAPATH="$pkgdir/usr/share/lua/5.2" 
install
+  install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: luasec/repos/community-testing-x86_64/PKGBUILD (from rev 182909, 
luasec/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2016-07-14 17:02:58 UTC (rev 182910)
@@ -0,0 +1,80 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Dwayne Bent 
+# Contributor: Paul-Sebastian Manole 
+
+pkgbase=luasec
+pkgname=(lua-sec lua51-sec lua52-sec)
+epoch=2
+pkgver=0.6
+pkgrel=1
+pkgdesc='Lua bindings for OpenSSL library to provide TLS/SSL communication.'
+arch=('i686' 'x86_64')
+url='https://github.com/brunoos/luasec/wiki'
+license=('MIT')
+makedepends=('openssl' 'lua' 'lua-socket' 'lua51' 'lua51-socket' 'lua52' 
'lua52-socket')
+options=('!buildflags')
+source=("https://github.com/brunoos/luasec/archive/luasec-$pkgver.tar.gz;)
+md5sums=('14e1aef6d2aae96bbf98afc6b6634af2')
+
+prepare() {
+  cp -a luasec-luasec-$pkgver luasec-luasec-$pkgver-51
+  cp -a luasec-luasec-$pkgver luasec-luasec-$pkgver-52
+}
+
+build() {
+  msg2 'Building with lua 5.3'
+  cd 

[arch-commits] Commit in luasec/trunk (PKGBUILD nossl.patch)

2016-07-14 Thread Sergej Pupykin
Date: Thursday, July 14, 2016 @ 17:02:44
  Author: spupykin
Revision: 182909

upgpkg: luasec 2:0.6-1

upd

Modified:
  luasec/trunk/PKGBUILD
Deleted:
  luasec/trunk/nossl.patch

-+
 PKGBUILD|   20 +++-
 nossl.patch |   13 -
 2 files changed, 7 insertions(+), 26 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 16:34:19 UTC (rev 182908)
+++ PKGBUILD2016-07-14 17:02:44 UTC (rev 182909)
@@ -5,9 +5,9 @@
 
 pkgbase=luasec
 pkgname=(lua-sec lua51-sec lua52-sec)
-pkgver=0.5.1
-pkgrel=2
 epoch=2
+pkgver=0.6
+pkgrel=1
 pkgdesc='Lua bindings for OpenSSL library to provide TLS/SSL communication.'
 arch=('i686' 'x86_64')
 url='https://github.com/brunoos/luasec/wiki'
@@ -14,16 +14,10 @@
 license=('MIT')
 makedepends=('openssl' 'lua' 'lua-socket' 'lua51' 'lua51-socket' 'lua52' 
'lua52-socket')
 options=('!buildflags')
-source=("https://github.com/brunoos/luasec/archive/luasec-$pkgver.tar.gz;
-   'nossl.patch')
-md5sums=('e34e274a57e9045641191eb7398cce2a'
- '7ce9d659e65fe9207e4808ad38f64d24')
+source=("https://github.com/brunoos/luasec/archive/luasec-$pkgver.tar.gz;)
+md5sums=('14e1aef6d2aae96bbf98afc6b6634af2')
 
 prepare() {
-  cd luasec-luasec-$pkgver
-  patch -p1 < ../nossl.patch
-  cd ..
-
   cp -a luasec-luasec-$pkgver luasec-luasec-$pkgver-51
   cp -a luasec-luasec-$pkgver luasec-luasec-$pkgver-52
 }
@@ -31,7 +25,7 @@
 build() {
   msg2 'Building with lua 5.3'
   cd "$srcdir"/luasec-luasec-$pkgver
-  make linux
+  make linux DEFS="-DWITH_LUASOCKET -DOPENSSL_NO_SSL3"
 
   msg2 'Building with lua 5.1'
   cd "$srcdir"/luasec-luasec-$pkgver-51
@@ -41,7 +35,7 @@
 -e 's|include .luaconf.h.|include "lua5.1/luaconf.h"|g' \
 -e 's|include .lauxlib.h.|include "lua5.1/lauxlib.h"|g' \
 {} \;
-  make linux
+  make linux DEFS="-DWITH_LUASOCKET -DOPENSSL_NO_SSL3"
 
   msg2 'Building with lua 5.2'
   cd "$srcdir"/luasec-luasec-$pkgver-52
@@ -51,7 +45,7 @@
 -e 's|include .luaconf.h.|include "lua5.2/luaconf.h"|g' \
 -e 's|include .lauxlib.h.|include "lua5.2/lauxlib.h"|g' \
 {} \;
-  make linux
+  make linux DEFS="-DWITH_LUASOCKET -DOPENSSL_NO_SSL3"
 }
 
 package_lua-sec() {

Deleted: nossl.patch
===
--- nossl.patch 2016-07-14 16:34:19 UTC (rev 182908)
+++ nossl.patch 2016-07-14 17:02:44 UTC (rev 182909)
@@ -1,13 +0,0 @@
 a/src/context.c2016-03-03 05:35:25.59327 +0100
-+++ b/src/context.c2016-03-03 05:35:47.79333 +0100
-@@ -65,10 +65,7 @@ static int set_option_flag(const char *o
-  */
- static LSEC_SSL_METHOD* str2method(const char *method)
- {
-   if (!strcmp(method, "sslv23"))  return SSLv23_method();
--#ifndef OPENSSL_NO_SSL3
--  if (!strcmp(method, "sslv3"))   return SSLv3_method();
--#endif
-   if (!strcmp(method, "tlsv1"))   return TLSv1_method();
- #if (OPENSSL_VERSION_NUMBER >= 0x1000100fL)
-   if (!strcmp(method, "tlsv1_1")) return TLSv1_1_method();


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

2016-07-14 Thread Sergej Pupykin
Date: Thursday, July 14, 2016 @ 16:34:05
  Author: spupykin
Revision: 182907

upgpkg: usb_modeswitch 2.4.0-1

upd

Modified:
  usb_modeswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 16:04:36 UTC (rev 182906)
+++ PKGBUILD2016-07-14 16:34:05 UTC (rev 182907)
@@ -2,9 +2,9 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname=usb_modeswitch
-pkgver=2.3.0
+pkgver=2.4.0
 pkgrel=1
-_pkgdata=20160112
+_pkgdata=20160612
 pkgdesc="Activating switchable USB devices on Linux."
 arch=('i686' 'x86_64')
 url="http://www.draisberghof.de/usb_modeswitch/;
@@ -15,8 +15,8 @@
 
source=("http://www.draisberghof.de/usb_modeswitch/usb-modeswitch-${pkgver}.tar.bz2;

"http://www.draisberghof.de/usb_modeswitch/usb-modeswitch-data-${_pkgdata}.tar.bz2;

"usb-modeswitch-${pkgver}-device_reference.txt::http://www.draisberghof.de/usb_modeswitch/device_reference.txt;)
-md5sums=('7faf7dccd50b3ca8aaa16fcb5bf0dc2f'
- '040d11138fc0a61b980d704ac3b4547f'
+md5sums=('6e1640db47768bb9012f91b7593116ef'
+ 'e3d30774dc594131ce3398b1e669d427'
  '080bac4145f002466b1cbd1b973bba44')
 
 prepare() {


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

2016-07-14 Thread Sergej Pupykin
Date: Thursday, July 14, 2016 @ 16:34:19
  Author: spupykin
Revision: 182908

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-07-14 16:34:05 UTC (rev 182907)
+++ community-i686/PKGBUILD 2016-07-14 16:34:19 UTC (rev 182908)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=usb_modeswitch
-pkgver=2.3.0
-pkgrel=1
-_pkgdata=20160112
-pkgdesc="Activating switchable USB devices on Linux."
-arch=('i686' 'x86_64')
-url="http://www.draisberghof.de/usb_modeswitch/;
-license=('GPL')
-depends=('libusb' 'tcl')
-makedepends=('gcc' 'make')
-backup=("etc/$pkgname.conf")
-source=("http://www.draisberghof.de/usb_modeswitch/usb-modeswitch-${pkgver}.tar.bz2;
-   
"http://www.draisberghof.de/usb_modeswitch/usb-modeswitch-data-${_pkgdata}.tar.bz2;
-   
"usb-modeswitch-${pkgver}-device_reference.txt::http://www.draisberghof.de/usb_modeswitch/device_reference.txt;)
-md5sums=('7faf7dccd50b3ca8aaa16fcb5bf0dc2f'
- '040d11138fc0a61b980d704ac3b4547f'
- '080bac4145f002466b1cbd1b973bba44')
-
-prepare() {
-  cd $srcdir/usb-modeswitch-$pkgver/
-  sed -i 's|/usr/sbin/usb_mode|/usr/bin/usb_mode|g' 
usb_modeswitch.{conf,tcl,sh}
-}
-
-build() {
-  cd $srcdir/usb-modeswitch-$pkgver/
-  make clean
-  make SBINDIR=/usr/bin
-}
-
-package() {
-  cd $srcdir/usb-modeswitch-$pkgver/
-
-  mkdir -p $pkgdir/usr/lib/udev
-  mkdir -p $pkgdir/etc
-  mkdir -p $pkgdir/usr/share/man/man1
-
-  make DESTDIR=${pkgdir} UDEVDIR=${pkgdir}/usr/lib/udev 
SBINDIR=$pkgdir/usr/bin install
-
-  cp $srcdir/usb-modeswitch-${pkgver}-device_reference.txt 
$pkgdir/etc/usb_modeswitch.setup
-
-  cd $srcdir/usb-modeswitch-data-${_pkgdata}
-  make DESTDIR=$pkgdir install RULESDIR=${pkgdir}/usr/lib/udev/rules.d
-}

Copied: usb_modeswitch/repos/community-i686/PKGBUILD (from rev 182907, 
usb_modeswitch/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-07-14 16:34:19 UTC (rev 182908)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=usb_modeswitch
+pkgver=2.4.0
+pkgrel=1
+_pkgdata=20160612
+pkgdesc="Activating switchable USB devices on Linux."
+arch=('i686' 'x86_64')
+url="http://www.draisberghof.de/usb_modeswitch/;
+license=('GPL')
+depends=('libusb' 'tcl')
+makedepends=('gcc' 'make')
+backup=("etc/$pkgname.conf")
+source=("http://www.draisberghof.de/usb_modeswitch/usb-modeswitch-${pkgver}.tar.bz2;
+   
"http://www.draisberghof.de/usb_modeswitch/usb-modeswitch-data-${_pkgdata}.tar.bz2;
+   
"usb-modeswitch-${pkgver}-device_reference.txt::http://www.draisberghof.de/usb_modeswitch/device_reference.txt;)
+md5sums=('6e1640db47768bb9012f91b7593116ef'
+ 'e3d30774dc594131ce3398b1e669d427'
+ '080bac4145f002466b1cbd1b973bba44')
+
+prepare() {
+  cd $srcdir/usb-modeswitch-$pkgver/
+  sed -i 's|/usr/sbin/usb_mode|/usr/bin/usb_mode|g' 
usb_modeswitch.{conf,tcl,sh}
+}
+
+build() {
+  cd $srcdir/usb-modeswitch-$pkgver/
+  make clean
+  make SBINDIR=/usr/bin
+}
+
+package() {
+  cd $srcdir/usb-modeswitch-$pkgver/
+
+  mkdir -p $pkgdir/usr/lib/udev
+  mkdir -p $pkgdir/etc
+  mkdir -p $pkgdir/usr/share/man/man1
+
+  make DESTDIR=${pkgdir} UDEVDIR=${pkgdir}/usr/lib/udev 
SBINDIR=$pkgdir/usr/bin install
+
+  cp $srcdir/usb-modeswitch-${pkgver}-device_reference.txt 
$pkgdir/etc/usb_modeswitch.setup
+
+  cd $srcdir/usb-modeswitch-data-${_pkgdata}
+  make DESTDIR=$pkgdir install RULESDIR=${pkgdir}/usr/lib/udev/rules.d
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-07-14 16:34:05 UTC (rev 182907)
+++ community-x86_64/PKGBUILD   2016-07-14 16:34:19 UTC (rev 182908)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=usb_modeswitch
-pkgver=2.3.0
-pkgrel=1
-_pkgdata=20160112
-pkgdesc="Activating switchable USB devices on Linux."
-arch=('i686' 'x86_64')
-url="http://www.draisberghof.de/usb_modeswitch/;
-license=('GPL')
-depends=('libusb' 'tcl')
-makedepends=('gcc' 'make')
-backup=("etc/$pkgname.conf")

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

2016-07-14 Thread Sergej Pupykin
Date: Thursday, July 14, 2016 @ 16:04:36
  Author: spupykin
Revision: 182906

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

Added:
  shotwell/repos/community-i686/PKGBUILD
(from rev 182905, shotwell/trunk/PKGBUILD)
  shotwell/repos/community-x86_64/PKGBUILD
(from rev 182905, shotwell/trunk/PKGBUILD)
Deleted:
  shotwell/repos/community-i686/PKGBUILD
  shotwell/repos/community-i686/webkit2.patch
  shotwell/repos/community-x86_64/PKGBUILD
  shotwell/repos/community-x86_64/webkit2.patch

+
 /PKGBUILD  |   68 ++
 community-i686/PKGBUILD|   42 -
 community-i686/webkit2.patch   | 1144 ---
 community-x86_64/PKGBUILD  |   42 -
 community-x86_64/webkit2.patch | 1144 ---
 5 files changed, 68 insertions(+), 2372 deletions(-)

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


[arch-commits] Commit in shotwell/trunk (PKGBUILD webkit2.patch)

2016-07-14 Thread Sergej Pupykin
Date: Thursday, July 14, 2016 @ 16:04:18
  Author: spupykin
Revision: 182905

upgpkg: shotwell 1:0.23.2-1

upd

Modified:
  shotwell/trunk/PKGBUILD
Deleted:
  shotwell/trunk/webkit2.patch

---+
 PKGBUILD  |   16 
 webkit2.patch | 1144 
 2 files changed, 4 insertions(+), 1156 deletions(-)

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


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

2016-07-14 Thread Florian Pritz
Date: Thursday, July 14, 2016 @ 15:14:59
  Author: bluewind
Revision: 182903

Fix FS#49770 - [asciidoc] Missing documents and example files

upgpkg: asciidoc 8.6.9-3

Modified:
  asciidoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 14:57:35 UTC (rev 182902)
+++ PKGBUILD2016-07-14 15:14:59 UTC (rev 182903)
@@ -9,7 +9,7 @@
 
 pkgname=asciidoc
 pkgver=8.6.9
-pkgrel=2
+pkgrel=3
 pkgdesc='Text document format for short documents, articles, books and UNIX 
man pages.'
 arch=('any')
 url='http://www.methods.co.nz/asciidoc/'
@@ -54,6 +54,7 @@
   cd ${pkgname}-${pkgver}
 
   make install DESTDIR=${pkgdir}
+  make docs DESTDIR=${pkgdir}
 
   install -Dm644 asciidocapi.py \
 ${pkgdir}/usr/lib/python2.7/site-packages/asciidocapi.py


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

2016-07-14 Thread Florian Pritz
Date: Thursday, July 14, 2016 @ 15:15:02
  Author: bluewind
Revision: 182904

archrelease: copy trunk to community-any

Added:
  asciidoc/repos/community-any/PKGBUILD
(from rev 182903, asciidoc/trunk/PKGBUILD)
Deleted:
  asciidoc/repos/community-any/PKGBUILD

--+
 PKGBUILD |  129 ++---
 1 file changed, 65 insertions(+), 64 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-14 15:14:59 UTC (rev 182903)
+++ PKGBUILD2016-07-14 15:15:02 UTC (rev 182904)
@@ -1,64 +0,0 @@
-# $Id$
-# Contributor: Chris Brannon 
-# Contributor: Geoffroy Carrier 
-# Contributor: Dan McGee 
-# Contributor: Jaroslaw Rosiek 
-# Contributor: Darwin Bautista 
-# Contributor: Daniel J Griffiths 
-# Maintainer: Florian Pritz 
-
-pkgname=asciidoc
-pkgver=8.6.9
-pkgrel=2
-pkgdesc='Text document format for short documents, articles, books and UNIX 
man pages.'
-arch=('any')
-url='http://www.methods.co.nz/asciidoc/'
-license=('GPL')
-depends=('python2' 'libxslt' 'docbook-xsl')
-optdepends=('lilypond: music-filter'
-'imagemagick: music-filter (used in conjunction with lilypond)'
-'source-highlight: source-highlight-filter'
-'dblatex: pdf generation'
-'fop: alternative pdf generation'
-'lynx: text generation'
-'w3m: text generation (alternative to lynx)')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('c59018f105be8d022714b826b0be130a')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-  # python2 fix
-  for file in asciidocapi.py a2x.py asciidoc.py filters/music/music2png.py 
filters/latex/latex2png.py \
- filters/code/code-filter.py filters/graphviz/graphviz2png.py; do
-   sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
-  done
-  #sed -i -e 's_sys:python_sys:python2_g' -e 's_sys3:python_sys3:python2_g' 
xhtml11.conf
-  #sed -i 's_sys:python_sys:python2_g' xhtml11-quirks.conf
-  #sed -i -e 's/{python}/{python2}/g' \
- #-e 's#{language@python:py:#{language@python2:py:#' \
- #filters/source/source-highlight-filter.conf \
- #html5.conf xhtml11.conf xhtml11-quirks.conf
-  #sed -i -e "s#'python'#'python2'#g" filters/code/code-filter.py
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  make install DESTDIR=${pkgdir}
-
-  install -Dm644 asciidocapi.py \
-${pkgdir}/usr/lib/python2.7/site-packages/asciidocapi.py
-
-  # fix FS#21579 - [asciidoc] 8.6.2-2 "asciidoc" table style doesn't work 
(mismatched python version) 
-  #sed -i 's/python/python2/' \
-#${pkgdir}/etc/asciidoc/asciidoc.conf
-}

Copied: asciidoc/repos/community-any/PKGBUILD (from rev 182903, 
asciidoc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-07-14 15:15:02 UTC (rev 182904)
@@ -0,0 +1,65 @@
+# $Id$
+# Contributor: Chris Brannon 
+# Contributor: Geoffroy Carrier 
+# Contributor: Dan McGee 
+# Contributor: Jaroslaw Rosiek 
+# Contributor: Darwin Bautista 
+# Contributor: Daniel J Griffiths 
+# Maintainer: Florian Pritz 
+
+pkgname=asciidoc
+pkgver=8.6.9
+pkgrel=3
+pkgdesc='Text document format for short documents, articles, books and UNIX 
man pages.'
+arch=('any')
+url='http://www.methods.co.nz/asciidoc/'
+license=('GPL')
+depends=('python2' 'libxslt' 'docbook-xsl')
+optdepends=('lilypond: music-filter'
+'imagemagick: music-filter (used in conjunction with lilypond)'
+'source-highlight: source-highlight-filter'
+'dblatex: pdf generation'
+'fop: alternative pdf generation'
+'lynx: text generation'
+'w3m: text generation (alternative to lynx)')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('c59018f105be8d022714b826b0be130a')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+
+  # python2 fix
+  for file in asciidocapi.py a2x.py asciidoc.py filters/music/music2png.py 
filters/latex/latex2png.py \
+ filters/code/code-filter.py filters/graphviz/graphviz2png.py; do
+   sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
+  done
+  #sed -i -e 's_sys:python_sys:python2_g' -e 's_sys3:python_sys3:python2_g' 
xhtml11.conf
+  #sed -i 's_sys:python_sys:python2_g' xhtml11-quirks.conf
+  #sed -i -e 's/{python}/{python2}/g' \
+ #-e 's#{language@python:py:#{language@python2:py:#' \
+ #filters/source/source-highlight-filter.conf \
+   

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

2016-07-14 Thread Sergej Pupykin
Date: Thursday, July 14, 2016 @ 14:57:35
  Author: spupykin
Revision: 182902

FS#50037

Modified:
  qucs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 14:54:54 UTC (rev 182901)
+++ PKGBUILD2016-07-14 14:57:35 UTC (rev 182902)
@@ -19,7 +19,8 @@
 
 prepare() {
   cd $srcdir/$pkgname-${pkgver/s/.}
-  sed -i 's|Icon=.*|Icon=/usr/share/qucs/bitmaps/big.qucs.xpm|' 
debian/qucs.desktop
+#  sed -i 's|Icon=.*|Icon=/usr/share/qucs/bitmaps/big.qucs.xpm|' 
debian/qucs.desktop
+  sed -i 's/Icon=.*/Icon=qucs/' debian/qucs.desktop
 }
 
 build() {


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

2016-07-14 Thread Sergej Pupykin
Date: Thursday, July 14, 2016 @ 14:54:54
  Author: spupykin
Revision: 182901

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

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

+
 /PKGBUILD  |  130 +++
 /glusterfs.install |   16 
 community-i686/PKGBUILD|   65 -
 community-i686/glusterfs.install   |8 --
 community-x86_64/PKGBUILD  |   65 -
 community-x86_64/glusterfs.install |8 --
 6 files changed, 146 insertions(+), 146 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-07-14 14:54:37 UTC (rev 182900)
+++ community-i686/PKGBUILD 2016-07-14 14:54:54 UTC (rev 182901)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributors:
-#   Andrei Antoukh - n...@niwi.be - http://www.niwi.be
-#   henning mueller 
-
-pkgname=glusterfs
-epoch=1
-pkgver=3.7.11
-pkgrel=1
-pkgdesc='Is a cluster file-system capable of scaling to several peta-bytes.'
-arch=(i686 x86_64)
-url='http://www.gluster.org/'
-license=(GPL2 LGPL3)
-install=glusterfs.install
-depends=(fuse python2 libxml2 libaio liburcu)
-makedepends=(flex bison)
-optdepends=('rpcbind: NFS'
-   'glib2: qemu-block')
-#source=($pkgname-$pkgver.tar.gz::https://github.com/gluster/glusterfs/archive/v$pkgver.tar.gz)
-source=(https://download.gluster.org/pub/gluster/glusterfs/${pkgver%.??}/$pkgver/glusterfs-$pkgver.tar.gz)
-md5sums=('b617d007c967cc482abf1077e2a2968f')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-  find -type f -name '*.py' -exec sed -i \
--e 's:env\ python:env\ python2:' \
--e 's:/usr/bin/python:/usr/bin/python2:' {} \;
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./autogen.sh
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---with-mountutildir=/usr/bin \
---sysconfdir=/etc \
---localstatedir=/var \
---mandir=/usr/share/man \
---libexecdir=/usr/lib/$pkgname \
---with-systemddir=/usr/lib/systemd/system \
-PYTHON=python2 LEXLIB=
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make -j1 DESTDIR=$pkgdir install
-
-  mkdir -p $pkgdir/usr/lib/tmpfiles.d
-  echo "d /var/run/glusterfs 0755 root root -" 
>$pkgdir/usr/lib/tmpfiles.d/glusterfs.conf
-
-  install -D -m 644 \
-$srcdir/$pkgname-$pkgver/{README.md,INSTALL,COPYING*} \
-$pkgdir/usr/share/doc/glusterfs/
-
-  cp -rf \
-$srcdir/$pkgname-$pkgver/doc/* \
-$pkgdir/usr/share/doc/glusterfs/
-  rm -rf $pkgdir/var/run
-}
-
-# vim:set ts=2 sw=2 et:

Copied: glusterfs/repos/community-i686/PKGBUILD (from rev 182900, 
glusterfs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-07-14 14:54:54 UTC (rev 182901)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributors:
+#   Andrei Antoukh - n...@niwi.be - http://www.niwi.be
+#   henning mueller 
+
+pkgname=glusterfs
+epoch=1
+pkgver=3.7.13
+pkgrel=1
+pkgdesc='Is a cluster file-system capable of scaling to several peta-bytes.'
+arch=(i686 x86_64)
+url='http://www.gluster.org/'
+license=(GPL2 LGPL3)
+install=glusterfs.install
+depends=(fuse python2 libxml2 libaio liburcu)
+makedepends=(flex bison)
+optdepends=('rpcbind: NFS'
+   'glib2: qemu-block')
+#source=($pkgname-$pkgver.tar.gz::https://github.com/gluster/glusterfs/archive/v$pkgver.tar.gz)
+source=(https://download.gluster.org/pub/gluster/glusterfs/${pkgver%.??}/$pkgver/glusterfs-$pkgver.tar.gz)
+md5sums=('a34973aadc89fee5295875a7eb631b66')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  find -type f -name '*.py' -exec sed -i \
+-e 's:env\ python:env\ python2:' \
+-e 's:/usr/bin/python:/usr/bin/python2:' {} \;
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./autogen.sh
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--with-mountutildir=/usr/bin \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--mandir=/usr/share/man \
+--libexecdir=/usr/lib/$pkgname \
+--with-systemddir=/usr/lib/systemd/system \
+PYTHON=python2 LEXLIB=
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  

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

2016-07-14 Thread Sergej Pupykin
Date: Thursday, July 14, 2016 @ 14:54:37
  Author: spupykin
Revision: 182900

upgpkg: glusterfs 1:3.7.13-1

upd

Modified:
  glusterfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 14:39:08 UTC (rev 182899)
+++ PKGBUILD2016-07-14 14:54:37 UTC (rev 182900)
@@ -6,7 +6,7 @@
 
 pkgname=glusterfs
 epoch=1
-pkgver=3.7.11
+pkgver=3.7.13
 pkgrel=1
 pkgdesc='Is a cluster file-system capable of scaling to several peta-bytes.'
 arch=(i686 x86_64)
@@ -19,7 +19,7 @@
'glib2: qemu-block')
 
#source=($pkgname-$pkgver.tar.gz::https://github.com/gluster/glusterfs/archive/v$pkgver.tar.gz)
 
source=(https://download.gluster.org/pub/gluster/glusterfs/${pkgver%.??}/$pkgver/glusterfs-$pkgver.tar.gz)
-md5sums=('b617d007c967cc482abf1077e2a2968f')
+md5sums=('a34973aadc89fee5295875a7eb631b66')
 
 prepare() {
   cd $srcdir/$pkgname-$pkgver


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

2016-07-14 Thread Felix Yan
Date: Thursday, July 14, 2016 @ 14:39:08
  Author: felixonmars
Revision: 182899

archrelease: copy trunk to community-any

Added:
  python-oslo-utils/repos/community-any/PKGBUILD
(from rev 182898, python-oslo-utils/trunk/PKGBUILD)
Deleted:
  python-oslo-utils/repos/community-any/PKGBUILD

--+
 PKGBUILD |  124 ++---
 1 file changed, 62 insertions(+), 62 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-14 14:38:51 UTC (rev 182898)
+++ PKGBUILD2016-07-14 14:39:08 UTC (rev 182899)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-
-pkgbase=python-oslo-utils
-pkgname=(python-oslo-utils python2-oslo-utils)
-pkgver=3.15.0
-pkgrel=1
-pkgdesc="Oslo Utility library"
-arch=('any')
-url="https://pypi.python.org/pypi/oslo.utils/$pkgver;
-license=('Apache')
-makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python2-funcsigs'
- 'python-iso8601' 'python2-iso8601' 'python-oslo-i18n' 
'python2-oslo-i18n' 'python2-monotonic'
- 'python-pytz' 'python2-pytz' 'python-netaddr' 'python2-netaddr' 
'python-netifaces'
- 'python2-netifaces' 'python-debtcollector' 
'python2-debtcollector')
-checkdepends=('python-oslotest' 'python2-oslotest')
-source=("git+https://git.openstack.org/openstack/oslo.utils#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a oslo.utils{,-py2}
-
-  # Use python 3's standard monotonic function
-  sed -i '/monotonic/d' oslo.utils/requirements.txt
-  sed -i 's/from monotonic import monotonic/from time import monotonic/' 
oslo.utils/oslo_utils/timeutils.py
-}
-
-build() {
-  cd "$srcdir"/oslo.utils
-  python setup.py build
-
-  cd "$srcdir"/oslo.utils-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/oslo.utils
-  python setup.py testr
-
-  cd "$srcdir"/oslo.utils-py2
-  PYTHON=python2 python2 setup.py testr
-}
-
-package_python-oslo-utils() {
-  depends=('python-six' 'python-pbr' 'python-iso8601' 'python-oslo-i18n' 
'python-pytz'
-   'python-netaddr' 'python-netifaces' 'python-debtcollector')
-
-  cd "$srcdir"/oslo.utils
-  python setup.py install --root="$pkgdir/" --optimize=1
-}
-
-package_python2-oslo-utils() {
-  depends=('python2-six' 'python2-pbr' 'python2-iso8601' 'python2-oslo-i18n' 
'python2-monotonic'
-   'python2-pytz' 'python2-netaddr' 'python2-netifaces' 
'python2-debtcollector'
-   'python2-funcsigs')
-
-  cd "$srcdir"/oslo.utils-py2
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-oslo-utils/repos/community-any/PKGBUILD (from rev 182898, 
python-oslo-utils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-07-14 14:39:08 UTC (rev 182899)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-oslo-utils
+pkgname=(python-oslo-utils python2-oslo-utils)
+pkgver=3.16.0
+pkgrel=1
+pkgdesc="Oslo Utility library"
+arch=('any')
+url="https://pypi.python.org/pypi/oslo.utils/$pkgver;
+license=('Apache')
+makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python2-funcsigs'
+ 'python-iso8601' 'python2-iso8601' 'python-oslo-i18n' 
'python2-oslo-i18n' 'python2-monotonic'
+ 'python-pytz' 'python2-pytz' 'python-netaddr' 'python2-netaddr' 
'python-netifaces'
+ 'python2-netifaces' 'python-debtcollector' 
'python2-debtcollector')
+checkdepends=('python-oslotest' 'python2-oslotest')
+source=("git+https://git.openstack.org/openstack/oslo.utils#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a oslo.utils{,-py2}
+
+  # Use python 3's standard monotonic function
+  sed -i '/monotonic/d' oslo.utils/requirements.txt
+  sed -i 's/from monotonic import monotonic/from time import monotonic/' 
oslo.utils/oslo_utils/timeutils.py
+}
+
+build() {
+  cd "$srcdir"/oslo.utils
+  python setup.py build
+
+  cd "$srcdir"/oslo.utils-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/oslo.utils
+  python setup.py testr
+
+  cd "$srcdir"/oslo.utils-py2
+  PYTHON=python2 python2 setup.py testr
+}
+
+package_python-oslo-utils() {
+  depends=('python-six' 'python-pbr' 'python-iso8601' 'python-oslo-i18n' 
'python-pytz'
+   'python-netaddr' 'python-netifaces' 'python-debtcollector')
+
+  cd "$srcdir"/oslo.utils
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-oslo-utils() {
+  depends=('python2-six' 'python2-pbr' 'python2-iso8601' 'python2-oslo-i18n' 
'python2-monotonic'
+   'python2-pytz' 'python2-netaddr' 'python2-netifaces' 
'python2-debtcollector'
+   'python2-funcsigs')
+
+  cd "$srcdir"/oslo.utils-py2
+  python2 setup.py install --root="$pkgdir/" 

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

2016-07-14 Thread Felix Yan
Date: Thursday, July 14, 2016 @ 14:38:51
  Author: felixonmars
Revision: 182898

upgpkg: python-oslo-utils 3.16.0-1

Modified:
  python-oslo-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 14:33:37 UTC (rev 182897)
+++ PKGBUILD2016-07-14 14:38:51 UTC (rev 182898)
@@ -4,7 +4,7 @@
 
 pkgbase=python-oslo-utils
 pkgname=(python-oslo-utils python2-oslo-utils)
-pkgver=3.15.0
+pkgver=3.16.0
 pkgrel=1
 pkgdesc="Oslo Utility library"
 arch=('any')


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

2016-07-14 Thread Sébastien Luttringer
Date: Thursday, July 14, 2016 @ 14:33:37
  Author: seblu
Revision: 182897

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

Added:
  sshpass/repos/community-i686/PKGBUILD
(from rev 182896, sshpass/trunk/PKGBUILD)
  sshpass/repos/community-x86_64/PKGBUILD
(from rev 182896, sshpass/trunk/PKGBUILD)
Deleted:
  sshpass/repos/community-i686/PKGBUILD
  sshpass/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 2016-07-14 14:33:08 UTC (rev 182896)
+++ community-i686/PKGBUILD 2016-07-14 14:33:37 UTC (rev 182897)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer 
-# Contributor: Timothy Redaelli 
-# Contributor: Sebastien Vasey sebastien dot vasey at gmail dot com
-
-pkgname=sshpass
-pkgver=1.05
-pkgrel=2
-pkgdesc='Fool ssh into accepting an interactive password non-interactively'
-arch=('i686' 'x86_64')
-url='http://sourceforge.net/projects/sshpass/'
-license=('GPL')
-depends=('openssh')
-source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('c52d65fdee0712af6f77eb2b60974ac7')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: sshpass/repos/community-i686/PKGBUILD (from rev 182896, 
sshpass/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-07-14 14:33:37 UTC (rev 182897)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sébastien Luttringer 
+# Contributor: Timothy Redaelli 
+# Contributor: Sebastien Vasey sebastien dot vasey at gmail dot com
+
+pkgname=sshpass
+pkgver=1.06
+pkgrel=1
+pkgdesc='Fool ssh into accepting an interactive password non-interactively'
+arch=('i686' 'x86_64')
+url='http://sourceforge.net/projects/sshpass/'
+license=('GPL')
+depends=('openssh')
+source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('f59695e3b9761fb51be7d795819421f9')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-07-14 14:33:08 UTC (rev 182896)
+++ community-x86_64/PKGBUILD   2016-07-14 14:33:37 UTC (rev 182897)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer 
-# Contributor: Timothy Redaelli 
-# Contributor: Sebastien Vasey sebastien dot vasey at gmail dot com
-
-pkgname=sshpass
-pkgver=1.05
-pkgrel=2
-pkgdesc='Fool ssh into accepting an interactive password non-interactively'
-arch=('i686' 'x86_64')
-url='http://sourceforge.net/projects/sshpass/'
-license=('GPL')
-depends=('openssh')
-source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('c52d65fdee0712af6f77eb2b60974ac7')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: sshpass/repos/community-x86_64/PKGBUILD (from rev 182896, 
sshpass/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-07-14 14:33:37 UTC (rev 182897)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sébastien Luttringer 
+# Contributor: Timothy Redaelli 
+# Contributor: Sebastien Vasey sebastien dot vasey at gmail dot com
+
+pkgname=sshpass
+pkgver=1.06
+pkgrel=1
+pkgdesc='Fool ssh into accepting an interactive password non-interactively'
+arch=('i686' 'x86_64')
+url='http://sourceforge.net/projects/sshpass/'
+license=('GPL')
+depends=('openssh')
+source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('f59695e3b9761fb51be7d795819421f9')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-07-14 Thread Sébastien Luttringer
Date: Thursday, July 14, 2016 @ 14:33:08
  Author: seblu
Revision: 182896

upgpkg: sshpass 1.06-1

Modified:
  sshpass/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 14:17:09 UTC (rev 182895)
+++ PKGBUILD2016-07-14 14:33:08 UTC (rev 182896)
@@ -4,8 +4,8 @@
 # Contributor: Sebastien Vasey sebastien dot vasey at gmail dot com
 
 pkgname=sshpass
-pkgver=1.05
-pkgrel=2
+pkgver=1.06
+pkgrel=1
 pkgdesc='Fool ssh into accepting an interactive password non-interactively'
 arch=('i686' 'x86_64')
 url='http://sourceforge.net/projects/sshpass/'
@@ -12,7 +12,7 @@
 license=('GPL')
 depends=('openssh')
 source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('c52d65fdee0712af6f77eb2b60974ac7')
+md5sums=('f59695e3b9761fb51be7d795819421f9')
 
 build() {
   cd $pkgname-$pkgver


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

2016-07-14 Thread Sébastien Luttringer
Date: Thursday, July 14, 2016 @ 14:16:51
  Author: seblu
Revision: 182894

upgpkg: keepalived 1.2.23-1

Modified:
  keepalived/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 14:06:02 UTC (rev 182893)
+++ PKGBUILD2016-07-14 14:16:51 UTC (rev 182894)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Zucchelli 
 
 pkgname=keepalived
-pkgver=1.2.22
+pkgver=1.2.23
 pkgrel=1
 pkgdesc='Failover and monitoring daemon for LVS clusters'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 makedepends=('libnfnetlink')
 source=("http://www.keepalived.org/software/$pkgname-$pkgver.tar.gz;
 'keepalived.service')
-md5sums=('eb86fc8da95b43a0a91fa798ed3df3c5'
+md5sums=('451919d34d0af969a2c574529dca96e9'
  '0a5171f4298528315e8a8004b55befb7')
 
 build() {


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

2016-07-14 Thread Sébastien Luttringer
Date: Thursday, July 14, 2016 @ 14:17:09
  Author: seblu
Revision: 182895

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

Added:
  keepalived/repos/community-i686/PKGBUILD
(from rev 182894, keepalived/trunk/PKGBUILD)
  keepalived/repos/community-i686/keepalived.service
(from rev 182894, keepalived/trunk/keepalived.service)
  keepalived/repos/community-x86_64/PKGBUILD
(from rev 182894, keepalived/trunk/PKGBUILD)
  keepalived/repos/community-x86_64/keepalived.service
(from rev 182894, keepalived/trunk/keepalived.service)
Deleted:
  keepalived/repos/community-i686/PKGBUILD
  keepalived/repos/community-i686/keepalived.service
  keepalived/repos/community-x86_64/PKGBUILD
  keepalived/repos/community-x86_64/keepalived.service

-+
 /PKGBUILD   |   78 ++
 /keepalived.service |   18 +++
 community-i686/PKGBUILD |   39 -
 community-i686/keepalived.service   |9 ---
 community-x86_64/PKGBUILD   |   39 -
 community-x86_64/keepalived.service |9 ---
 6 files changed, 96 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-07-14 14:16:51 UTC (rev 182894)
+++ community-i686/PKGBUILD 2016-07-14 14:17:09 UTC (rev 182895)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Andrea Zucchelli 
-
-pkgname=keepalived
-pkgver=1.2.22
-pkgrel=1
-pkgdesc='Failover and monitoring daemon for LVS clusters'
-arch=('i686' 'x86_64')
-url='http://www.keepalived.org/'
-license=('GPL2')
-backup=('etc/keepalived/keepalived.conf')
-depends=('openssl' 'popt' 'libnl1')
-makedepends=('libnfnetlink')
-source=("http://www.keepalived.org/software/$pkgname-$pkgver.tar.gz;
-'keepalived.service')
-md5sums=('eb86fc8da95b43a0a91fa798ed3df3c5'
- '0a5171f4298528315e8a8004b55befb7')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  # clean pacakge init scripts
-  rm -r "$pkgdir/etc/rc.d" "$pkgdir/etc/sysconfig"
-  # move examples to /usr/share
-  install -d -m 755 "$pkgdir/usr/share/$pkgname"
-  mv "$pkgdir/etc/keepalived/samples" "$pkgdir/usr/share/$pkgname/samples"
-  # systemd
-  install -D -m 644 "$srcdir/$pkgname.service" \
-"$pkgdir/usr/lib/systemd/system/$pkgname.service"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: keepalived/repos/community-i686/PKGBUILD (from rev 182894, 
keepalived/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-07-14 14:17:09 UTC (rev 182895)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Andrea Zucchelli 
+
+pkgname=keepalived
+pkgver=1.2.23
+pkgrel=1
+pkgdesc='Failover and monitoring daemon for LVS clusters'
+arch=('i686' 'x86_64')
+url='http://www.keepalived.org/'
+license=('GPL2')
+backup=('etc/keepalived/keepalived.conf')
+depends=('openssl' 'popt' 'libnl1')
+makedepends=('libnfnetlink')
+source=("http://www.keepalived.org/software/$pkgname-$pkgver.tar.gz;
+'keepalived.service')
+md5sums=('451919d34d0af969a2c574529dca96e9'
+ '0a5171f4298528315e8a8004b55befb7')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  # clean pacakge init scripts
+  rm -r "$pkgdir/etc/rc.d" "$pkgdir/etc/sysconfig"
+  # move examples to /usr/share
+  install -d -m 755 "$pkgdir/usr/share/$pkgname"
+  mv "$pkgdir/etc/keepalived/samples" "$pkgdir/usr/share/$pkgname/samples"
+  # systemd
+  install -D -m 644 "$srcdir/$pkgname.service" \
+"$pkgdir/usr/lib/systemd/system/$pkgname.service"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/keepalived.service
===
--- community-i686/keepalived.service   2016-07-14 14:16:51 UTC (rev 182894)
+++ community-i686/keepalived.service   2016-07-14 14:17:09 UTC (rev 182895)
@@ -1,9 +0,0 @@
-[Unit]
-Description=Keepalive Daemon
-After=network.target
-
-[Service]
-ExecStart=/usr/bin/keepalived --dont-fork
-
-[Install]
-WantedBy=multi-user.target

Copied: keepalived/repos/community-i686/keepalived.service (from rev 182894, 
keepalived/trunk/keepalived.service)
===
--- community-i686/keepalived.service   (rev 0)
+++ community-i686/keepalived.service   2016-07-14 14:17:09 UTC (rev 182895)
@@ -0,0 +1,9 @@
+[Unit]
+Description=Keepalive Daemon
+After=network.target
+
+[Service]
+ExecStart=/usr/bin/keepalived --dont-fork
+

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

2016-07-14 Thread Felix Yan
Date: Thursday, July 14, 2016 @ 14:06:02
  Author: felixonmars
Revision: 182893

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-14 14:05:41 UTC (rev 182892)
+++ PKGBUILD2016-07-14 14:06:02 UTC (rev 182893)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.22.0
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 'python2-django'
-  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
-  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
-  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
-  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
-  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
-  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
-  'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  sed -i 's/pep8/pycodestyle/' raven-python/setup.py
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 182892, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-07-14 14:06:02 UTC (rev 182893)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.23.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 'python2-django'
+  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
+  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
+  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
+  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
+  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
+  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
+  'python2-pytest-timeout')

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

2016-07-14 Thread Felix Yan
Date: Thursday, July 14, 2016 @ 14:05:41
  Author: felixonmars
Revision: 182892

upgpkg: python-raven 5.23.0-1

Modified:
  python-raven/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 12:58:27 UTC (rev 182891)
+++ PKGBUILD2016-07-14 14:05:41 UTC (rev 182892)
@@ -4,7 +4,7 @@
 
 pkgbase=python-raven
 pkgname=(python-raven python2-raven)
-pkgver=5.22.0
+pkgver=5.23.0
 pkgrel=1
 pkgdesc="Python client for Sentry"
 arch=('any')
@@ -26,7 +26,6 @@
 md5sums=('SKIP')
 
 prepare() {
-  sed -i 's/pep8/pycodestyle/' raven-python/setup.py
   cp -a raven-python{,-py2}
 }
 


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

2016-07-14 Thread Christian Hesse
Date: Thursday, July 14, 2016 @ 12:58:27
  Author: eworm
Revision: 182891

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-07-14 12:58:24 UTC (rev 182890)
+++ community-i686/PKGBUILD 2016-07-14 12:58:27 UTC (rev 182891)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-# Contributor: Jonathan Conder 
-
-pkgname='packagekit'
-pkgver=1.1.2
-pkgrel=1
-pkgdesc='A system designed to make installation and updates of packages easier'
-arch=('i686' 'x86_64')
-url='http://www.packagekit.org/'
-license=('GPL')
-depends=('dbus-glib' 'pacman>=5.0.0' 'polkit' 'shared-mime-info' 'sqlite')
-makedepends=('gobject-introspection' 'gtk-doc' 'intltool'
-   'networkmanager' 'bash-completion' 'vala' 'autoconf-archive')
-optdepends=('networkmanager: detect connection status'
-   'bash-completion: command completion in bash')
-backup=('var/lib/PackageKit/transactions.db'
-   'etc/PackageKit/alpm.d/pacman.conf'
-   'etc/PackageKit/alpm.d/repos.list')
-validpgpkeys=(
-   '163EB50119225DB3DF8F49EA17ACBA8DFA970E17'  # Richard Hughes 

-   'EC60AABDF42AAE8FB062640480858FA38F62AF74') # Kalev Lember 

-source=("http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${pkgver}.tar.xz"{,.asc})
-sha256sums=('5659d4e52b39b5adeb00c2b3f59f1ba29e41265cfa4562fb0a193e4264fa5f68'
-'SKIP')
-
-build() {
-   cd "${srcdir}/PackageKit-${pkgver}"
-
-   ./autogen.sh --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --libexecdir=/usr/lib/PackageKit \
-   --disable-static \
-   --disable-gtk-doc \
-   --disable-local \
-   --disable-browser-plugin \
-   --disable-gstreamer-plugin \
-   --disable-gtk-module \
-   --disable-command-not-found \
-   --disable-cron \
-   --disable-dummy \
-   --enable-alpm
-   make
-}
-
-package() {
-   cd "${srcdir}/PackageKit-${pkgver}"
-
-   # install directory with root owner, polkit group and
-   # correct permission
-   install -d -o root -g 102 -m 750 "${pkgdir}/usr/share/polkit-1/rules.d"
-
-   make DESTDIR="${pkgdir}" install
-}
-

Copied: packagekit/repos/community-i686/PKGBUILD (from rev 182890, 
packagekit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-07-14 12:58:27 UTC (rev 182891)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Jonathan Conder 
+
+pkgname='packagekit'
+pkgver=1.1.3
+pkgrel=1
+pkgdesc='A system designed to make installation and updates of packages easier'
+arch=('i686' 'x86_64')
+url='http://www.packagekit.org/'
+license=('GPL')
+depends=('dbus-glib' 'pacman>=5.0.0' 'polkit' 'shared-mime-info' 'sqlite')
+makedepends=('gobject-introspection' 'gtk-doc' 'intltool'
+   'networkmanager' 'bash-completion' 'vala' 'autoconf-archive')
+optdepends=('networkmanager: detect connection status'
+   'bash-completion: command completion in bash')
+backup=('var/lib/PackageKit/transactions.db'
+   'etc/PackageKit/alpm.d/pacman.conf'
+   'etc/PackageKit/alpm.d/repos.list')
+validpgpkeys=(
+   '163EB50119225DB3DF8F49EA17ACBA8DFA970E17'  # Richard Hughes 

+   'EC60AABDF42AAE8FB062640480858FA38F62AF74') # Kalev Lember 

+source=("http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${pkgver}.tar.xz"{,.asc})
+sha256sums=('e8d42d1c49b58f9dba85dbb634bcdc986f5f478ef26d1f50a3453353cd33b841'
+'SKIP')
+
+build() {
+   cd "${srcdir}/PackageKit-${pkgver}"
+
+   ./autogen.sh --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --libexecdir=/usr/lib/PackageKit \
+   --disable-static \
+   --disable-gtk-doc \
+   --disable-local \
+   --disable-browser-plugin \
+   --disable-gstreamer-plugin \
+   --disable-gtk-module \
+   

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

2016-07-14 Thread Christian Hesse
Date: Thursday, July 14, 2016 @ 12:58:24
  Author: eworm
Revision: 182890

upgpkg: packagekit 1.1.3-1

new upstream release

Modified:
  packagekit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 12:45:11 UTC (rev 182889)
+++ PKGBUILD2016-07-14 12:58:24 UTC (rev 182890)
@@ -3,7 +3,7 @@
 # Contributor: Jonathan Conder 
 
 pkgname='packagekit'
-pkgver=1.1.2
+pkgver=1.1.3
 pkgrel=1
 pkgdesc='A system designed to make installation and updates of packages easier'
 arch=('i686' 'x86_64')
@@ -21,7 +21,7 @@
'163EB50119225DB3DF8F49EA17ACBA8DFA970E17'  # Richard Hughes 

'EC60AABDF42AAE8FB062640480858FA38F62AF74') # Kalev Lember 

 
source=("http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${pkgver}.tar.xz"{,.asc})
-sha256sums=('5659d4e52b39b5adeb00c2b3f59f1ba29e41265cfa4562fb0a193e4264fa5f68'
+sha256sums=('e8d42d1c49b58f9dba85dbb634bcdc986f5f478ef26d1f50a3453353cd33b841'
 'SKIP')
 
 build() {


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

2016-07-14 Thread Balló György
Date: Thursday, July 14, 2016 @ 12:45:11
  Author: bgyorgy
Revision: 182889

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

Added:
  gnome-pie/repos/community-i686/PKGBUILD
(from rev 182888, gnome-pie/trunk/PKGBUILD)
  gnome-pie/repos/community-x86_64/PKGBUILD
(from rev 182888, gnome-pie/trunk/PKGBUILD)
Deleted:
  gnome-pie/repos/community-i686/PKGBUILD
  gnome-pie/repos/community-i686/gnome-pie.install
  gnome-pie/repos/community-x86_64/PKGBUILD
  gnome-pie/repos/community-x86_64/gnome-pie.install

+
 /PKGBUILD  |   58 +++
 community-i686/PKGBUILD|   30 --
 community-i686/gnome-pie.install   |   11 --
 community-x86_64/PKGBUILD  |   30 --
 community-x86_64/gnome-pie.install |   11 --
 5 files changed, 58 insertions(+), 82 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-07-14 12:45:05 UTC (rev 182888)
+++ community-i686/PKGBUILD 2016-07-14 12:45:11 UTC (rev 182889)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-
-pkgname=gnome-pie
-_pkgname=Gnome-Pie
-pkgver=0.6.8
-pkgrel=1
-pkgdesc="Circular application launcher for GNOME"
-arch=('i686' 'x86_64')
-url="http://gnome-pie.simonschneegans.de/;
-license=('GPL')
-depends=('bamf' 'libarchive' 'libgee' 'gnome-menus')
-makedepends=('cmake' 'vala')
-install=$pkgname.install
-source=($_pkgname-$pkgver.tar.gz::https://github.com/Simmesimme/$_pkgname/archive/v$pkgver.tar.gz)
-md5sums=('d031616c872d9926c958a917b348f69c')
-
-build() {
-  cd $_pkgname-$pkgver
-  ./resources/locale/compile-po.sh
-  [[ -d build ]] || mkdir build
-  cd build
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd $_pkgname-$pkgver/build
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-pie/repos/community-i686/PKGBUILD (from rev 182888, 
gnome-pie/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-07-14 12:45:11 UTC (rev 182889)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Balló György 
+
+pkgname=gnome-pie
+_pkgname=Gnome-Pie
+pkgver=0.6.8
+pkgrel=2
+pkgdesc="Circular application launcher for GNOME"
+arch=('i686' 'x86_64')
+url="http://gnome-pie.simonschneegans.de/;
+license=('GPL')
+depends=('bamf' 'libarchive' 'libgee' 'gnome-menus')
+makedepends=('cmake' 'vala')
+source=($_pkgname-$pkgver.tar.gz::https://github.com/Simmesimme/$_pkgname/archive/v$pkgver.tar.gz)
+md5sums=('d031616c872d9926c958a917b348f69c')
+
+build() {
+  cd $_pkgname-$pkgver
+  ./resources/locale/compile-po.sh
+  [[ -d build ]] || mkdir build
+  cd build
+  cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd $_pkgname-$pkgver/build
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-i686/gnome-pie.install
===
--- community-i686/gnome-pie.install2016-07-14 12:45:05 UTC (rev 182888)
+++ community-i686/gnome-pie.install2016-07-14 12:45:11 UTC (rev 182889)
@@ -1,11 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-07-14 12:45:05 UTC (rev 182888)
+++ community-x86_64/PKGBUILD   2016-07-14 12:45:11 UTC (rev 182889)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-
-pkgname=gnome-pie
-_pkgname=Gnome-Pie
-pkgver=0.6.8
-pkgrel=1
-pkgdesc="Circular application launcher for GNOME"
-arch=('i686' 'x86_64')
-url="http://gnome-pie.simonschneegans.de/;
-license=('GPL')
-depends=('bamf' 'libarchive' 'libgee' 'gnome-menus')
-makedepends=('cmake' 'vala')
-install=$pkgname.install
-source=($_pkgname-$pkgver.tar.gz::https://github.com/Simmesimme/$_pkgname/archive/v$pkgver.tar.gz)
-md5sums=('d031616c872d9926c958a917b348f69c')
-
-build() {
-  cd $_pkgname-$pkgver
-  ./resources/locale/compile-po.sh
-  [[ -d build ]] || mkdir build
-  cd build
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd $_pkgname-$pkgver/build
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-pie/repos/community-x86_64/PKGBUILD (from rev 182888, 
gnome-pie/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-07-14 12:45:11 UTC (rev 182889)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Balló György 
+
+pkgname=gnome-pie

[arch-commits] Commit in gnome-pie/trunk (PKGBUILD gnome-pie.install)

2016-07-14 Thread Balló György
Date: Thursday, July 14, 2016 @ 12:45:05
  Author: bgyorgy
Revision: 182888

upgpkg: gnome-pie 0.6.8-2

Hooks rebuild

Modified:
  gnome-pie/trunk/PKGBUILD
Deleted:
  gnome-pie/trunk/gnome-pie.install

---+
 PKGBUILD  |3 +--
 gnome-pie.install |   11 ---
 2 files changed, 1 insertion(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 12:15:19 UTC (rev 182887)
+++ PKGBUILD2016-07-14 12:45:05 UTC (rev 182888)
@@ -4,7 +4,7 @@
 pkgname=gnome-pie
 _pkgname=Gnome-Pie
 pkgver=0.6.8
-pkgrel=1
+pkgrel=2
 pkgdesc="Circular application launcher for GNOME"
 arch=('i686' 'x86_64')
 url="http://gnome-pie.simonschneegans.de/;
@@ -11,7 +11,6 @@
 license=('GPL')
 depends=('bamf' 'libarchive' 'libgee' 'gnome-menus')
 makedepends=('cmake' 'vala')
-install=$pkgname.install
 
source=($_pkgname-$pkgver.tar.gz::https://github.com/Simmesimme/$_pkgname/archive/v$pkgver.tar.gz)
 md5sums=('d031616c872d9926c958a917b348f69c')
 

Deleted: gnome-pie.install
===
--- gnome-pie.install   2016-07-14 12:15:19 UTC (rev 182887)
+++ gnome-pie.install   2016-07-14 12:45:05 UTC (rev 182888)
@@ -1,11 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}


[arch-commits] Commit in openbve (5 files)

2016-07-14 Thread Balló György
Date: Thursday, July 14, 2016 @ 12:15:19
  Author: bgyorgy
Revision: 182887

archrelease: copy trunk to community-any

Added:
  openbve/repos/
  openbve/repos/community-any/
  openbve/repos/community-any/PKGBUILD
(from rev 182886, openbve/trunk/PKGBUILD)
  openbve/repos/community-any/openbve.desktop
(from rev 182886, openbve/trunk/openbve.desktop)
  openbve/repos/community-any/openbve.sh
(from rev 182886, openbve/trunk/openbve.sh)

-+
 PKGBUILD|   48 
 openbve.desktop |9 +
 openbve.sh  |2 ++
 3 files changed, 59 insertions(+)

Copied: openbve/repos/community-any/PKGBUILD (from rev 182886, 
openbve/trunk/PKGBUILD)
===
--- repos/community-any/PKGBUILD(rev 0)
+++ repos/community-any/PKGBUILD2016-07-14 12:15:19 UTC (rev 182887)
@@ -0,0 +1,48 @@
+# Maintainer: Balló György 
+
+pkgname=openbve
+_pkgname=OpenBVE
+pkgver=1.5.0.5
+pkgrel=1
+pkgdesc="Free-as-in-freedom train simulator placed in the public domain"
+arch=('any')
+url="http://openbve-project.net/;
+license=('MIT' 'custom:public domain')
+depends=('libxi' 'mono' 'openal')
+source=($_pkgname-$pkgver.tar.gz::https://github.com/leezer3/$_pkgname/archive/$pkgver.tar.gz
+$pkgname.sh
+$pkgname.desktop)
+sha256sums=('e4d46e6eae1708f969d9042f5f015b23ff22b63e36376208e1a78dcb3b926c19'
+'cf0f2a28e65248f742d6bb80f3101e36f24097e699c4e5acdf3fd4dbb965d3c3'
+'8190945fa834ecdcf8a3f271264e5be2e288933ecde943060346e16537611c0f')
+
+build() {
+  cd $_pkgname-$pkgver
+  xbuild /p:Configuration=Release openBVE/OpenBve/OpenBve.csproj
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  # Binaries
+  install -dm755 "$pkgdir/usr/lib/$pkgname/"
+  cp -r openBVE/OpenBve/bin/Release/* "$pkgdir/usr/lib/$pkgname/"
+
+  # Data
+  install -dm755 "$pkgdir/usr/share/games/$pkgname/"
+  mv "$pkgdir/usr/lib/$pkgname/Data" "$pkgdir/usr/share/games/$pkgname/"
+  ln -s ../../share/games/$pkgname/Data "$pkgdir/usr/lib/$pkgname/Data"
+
+  # Executable
+  install -Dm755 ../$pkgname.sh "$pkgdir/usr/bin/$pkgname"
+
+  # Desktop file and icon
+  install -Dm644 ../$pkgname.desktop 
$pkgdir/usr/share/applications/$pkgname.desktop
+  mkdir -p "$pkgdir/usr/share/pixmaps"
+  ln -s ../games/$pkgname/Data/Menu/logo.png 
"$pkgdir/usr/share/pixmaps/$pkgname.png"
+
+  # License
+  install -dm755 "$pkgdir/usr/share/licenses/$pkgname/"
+  install -m644 CSSCriptLicence.txt OpenTKLicence.txt Readme.md 
SharpCompressLicence.txt \
+"$pkgdir/usr/share/licenses/$pkgname/"
+}

Copied: openbve/repos/community-any/openbve.desktop (from rev 182886, 
openbve/trunk/openbve.desktop)
===
--- repos/community-any/openbve.desktop (rev 0)
+++ repos/community-any/openbve.desktop 2016-07-14 12:15:19 UTC (rev 182887)
@@ -0,0 +1,9 @@
+[Desktop Entry]
+Version=1.0
+Type=Application
+Name=OpenBVE
+Comment=Train/railway simulator compatible with 'BVE Trainsim' routes
+Comment[hu]=A „BVE Trainsim” útvonalaival kompatibilis vonatszimulátor
+Exec=openbve
+Icon=openbve
+Categories=Game;Simulation;

Copied: openbve/repos/community-any/openbve.sh (from rev 182886, 
openbve/trunk/openbve.sh)
===
--- repos/community-any/openbve.sh  (rev 0)
+++ repos/community-any/openbve.sh  2016-07-14 12:15:19 UTC (rev 182887)
@@ -0,0 +1,2 @@
+#!/bin/sh
+mono /usr/lib/openbve/OpenBve.exe "$@"


[arch-commits] Commit in (5 files)

2016-07-14 Thread Balló György
Date: Thursday, July 14, 2016 @ 12:14:48
  Author: bgyorgy
Revision: 182886

Move openbve from unsupported with 32 votes

Added:
  openbve/
  openbve/trunk/
  openbve/trunk/PKGBUILD
  openbve/trunk/openbve.desktop
  openbve/trunk/openbve.sh

-+
 PKGBUILD|   48 
 openbve.desktop |9 +
 openbve.sh  |2 ++
 3 files changed, 59 insertions(+)

Added: openbve/trunk/PKGBUILD
===
--- openbve/trunk/PKGBUILD  (rev 0)
+++ openbve/trunk/PKGBUILD  2016-07-14 12:14:48 UTC (rev 182886)
@@ -0,0 +1,48 @@
+# Maintainer: Balló György 
+
+pkgname=openbve
+_pkgname=OpenBVE
+pkgver=1.5.0.5
+pkgrel=1
+pkgdesc="Free-as-in-freedom train simulator placed in the public domain"
+arch=('any')
+url="http://openbve-project.net/;
+license=('MIT' 'custom:public domain')
+depends=('libxi' 'mono' 'openal')
+source=($_pkgname-$pkgver.tar.gz::https://github.com/leezer3/$_pkgname/archive/$pkgver.tar.gz
+$pkgname.sh
+$pkgname.desktop)
+sha256sums=('e4d46e6eae1708f969d9042f5f015b23ff22b63e36376208e1a78dcb3b926c19'
+'cf0f2a28e65248f742d6bb80f3101e36f24097e699c4e5acdf3fd4dbb965d3c3'
+'8190945fa834ecdcf8a3f271264e5be2e288933ecde943060346e16537611c0f')
+
+build() {
+  cd $_pkgname-$pkgver
+  xbuild /p:Configuration=Release openBVE/OpenBve/OpenBve.csproj
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  # Binaries
+  install -dm755 "$pkgdir/usr/lib/$pkgname/"
+  cp -r openBVE/OpenBve/bin/Release/* "$pkgdir/usr/lib/$pkgname/"
+
+  # Data
+  install -dm755 "$pkgdir/usr/share/games/$pkgname/"
+  mv "$pkgdir/usr/lib/$pkgname/Data" "$pkgdir/usr/share/games/$pkgname/"
+  ln -s ../../share/games/$pkgname/Data "$pkgdir/usr/lib/$pkgname/Data"
+
+  # Executable
+  install -Dm755 ../$pkgname.sh "$pkgdir/usr/bin/$pkgname"
+
+  # Desktop file and icon
+  install -Dm644 ../$pkgname.desktop 
$pkgdir/usr/share/applications/$pkgname.desktop
+  mkdir -p "$pkgdir/usr/share/pixmaps"
+  ln -s ../games/$pkgname/Data/Menu/logo.png 
"$pkgdir/usr/share/pixmaps/$pkgname.png"
+
+  # License
+  install -dm755 "$pkgdir/usr/share/licenses/$pkgname/"
+  install -m644 CSSCriptLicence.txt OpenTKLicence.txt Readme.md 
SharpCompressLicence.txt \
+"$pkgdir/usr/share/licenses/$pkgname/"
+}


Property changes on: openbve/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: openbve/trunk/openbve.desktop
===
--- openbve/trunk/openbve.desktop   (rev 0)
+++ openbve/trunk/openbve.desktop   2016-07-14 12:14:48 UTC (rev 182886)
@@ -0,0 +1,9 @@
+[Desktop Entry]
+Version=1.0
+Type=Application
+Name=OpenBVE
+Comment=Train/railway simulator compatible with 'BVE Trainsim' routes
+Comment[hu]=A „BVE Trainsim” útvonalaival kompatibilis vonatszimulátor
+Exec=openbve
+Icon=openbve
+Categories=Game;Simulation;

Added: openbve/trunk/openbve.sh
===
--- openbve/trunk/openbve.sh(rev 0)
+++ openbve/trunk/openbve.sh2016-07-14 12:14:48 UTC (rev 182886)
@@ -0,0 +1,2 @@
+#!/bin/sh
+mono /usr/lib/openbve/OpenBve.exe "$@"


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

2016-07-14 Thread Jan de Groot
Date: Thursday, July 14, 2016 @ 11:13:07
  Author: jgc
Revision: 271855

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

Added:
  gtk2/repos/testing-i686/
  gtk2/repos/testing-i686/PKGBUILD
(from rev 271854, gtk2/trunk/PKGBUILD)
  gtk2/repos/testing-i686/gtk-query-immodules-2.0.hook
(from rev 271854, gtk2/trunk/gtk-query-immodules-2.0.hook)
  gtk2/repos/testing-i686/gtk2.install
(from rev 271854, gtk2/trunk/gtk2.install)
  gtk2/repos/testing-i686/gtkrc
(from rev 271854, gtk2/trunk/gtkrc)
  gtk2/repos/testing-i686/xid-collision-debug.patch
(from rev 271854, gtk2/trunk/xid-collision-debug.patch)
  gtk2/repos/testing-x86_64/
  gtk2/repos/testing-x86_64/PKGBUILD
(from rev 271854, gtk2/trunk/PKGBUILD)
  gtk2/repos/testing-x86_64/gtk-query-immodules-2.0.hook
(from rev 271854, gtk2/trunk/gtk-query-immodules-2.0.hook)
  gtk2/repos/testing-x86_64/gtk2.install
(from rev 271854, gtk2/trunk/gtk2.install)
  gtk2/repos/testing-x86_64/gtkrc
(from rev 271854, gtk2/trunk/gtkrc)
  gtk2/repos/testing-x86_64/xid-collision-debug.patch
(from rev 271854, gtk2/trunk/xid-collision-debug.patch)

-+
 testing-i686/PKGBUILD   |   65 ++
 testing-i686/gtk-query-immodules-2.0.hook   |   11 
 testing-i686/gtk2.install   |3 +
 testing-i686/gtkrc  |3 +
 testing-i686/xid-collision-debug.patch  |   15 ++
 testing-x86_64/PKGBUILD |   65 ++
 testing-x86_64/gtk-query-immodules-2.0.hook |   11 
 testing-x86_64/gtk2.install |3 +
 testing-x86_64/gtkrc|3 +
 testing-x86_64/xid-collision-debug.patch|   15 ++
 10 files changed, 194 insertions(+)

Copied: gtk2/repos/testing-i686/PKGBUILD (from rev 271854, gtk2/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-07-14 11:13:07 UTC (rev 271855)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gtk2
+pkgver=2.24.30+95+g876b5f7
+pkgrel=1
+pkgdesc="GObject-based multi-platform GUI toolkit (legacy)"
+arch=(i686 x86_64)
+url="http://www.gtk.org/;
+depends=(atk pango libxcursor libxinerama libxrandr libxi libxcomposite 
libxdamage
+ shared-mime-info cairo libcups gtk-update-icon-cache librsvg 
desktop-file-utils)
+makedepends=(gobject-introspection python2 git gtk-doc)
+optdepends=('gnome-themes-standard: Default widget theme'
+'adwaita-icon-theme: Default icon theme')
+license=(LGPL)
+install=gtk2.install
+_commit=876b5f75faab5d8f3c60c3ec035b2ecd4ac5b67e
+source=("git://git.gnome.org/gtk+#commit=$_commit"
+gtkrc
+gtk-query-immodules-2.0.hook
+xid-collision-debug.patch)
+sha256sums=('SKIP'
+'bc968e3e4f57e818430130338e5f85a5025e21d7e31a3293b8f5a0e58362b805'
+'9656a1efc798da1ac2dae94e921ed0f72719bd52d4d0138f305b993f778f7758'
+'d758bb93e59df15a4ea7732cf984d1c3c19dff67c94b957575efea132b8fe558')
+
+pkgver() {
+  cd gtk+
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+cd gtk+
+patch -Np1 -i ../xid-collision-debug.patch
+sed -i '1s/python$/&2/' gtk/gtk-builder-convert
+NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+cd gtk+
+
+CXX=/bin/false ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--with-xinput=yes \
+--enable-gtk-doc
+
+# https://bugzilla.gnome.org/show_bug.cgi?id=655517
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd gtk+
+make DESTDIR="$pkgdir" install
+
+install -Dm644 ../gtkrc "$pkgdir/usr/share/gtk-2.0/gtkrc"
+install -Dm644 ../gtk-query-immodules-2.0.hook 
"$pkgdir/usr/share/libalpm/hooks/gtk-query-immodules-2.0.hook"
+
+rm "$pkgdir/usr/bin/gtk-update-icon-cache"
+rm -r "$pkgdir/usr/share/gtk-doc"
+}
+
+# vim:set et sw=4:

Copied: gtk2/repos/testing-i686/gtk-query-immodules-2.0.hook (from rev 271854, 
gtk2/trunk/gtk-query-immodules-2.0.hook)
===
--- testing-i686/gtk-query-immodules-2.0.hook   (rev 0)
+++ testing-i686/gtk-query-immodules-2.0.hook   2016-07-14 11:13:07 UTC (rev 
271855)
@@ -0,0 +1,11 @@
+[Trigger]
+Type = File
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = usr/lib/gtk-2.0/2.10.0/immodules/*.so
+
+[Action]
+Description = Probing GTK2 input method modules...
+When = PostTransaction
+Exec = /usr/bin/gtk-query-immodules-2.0 --update-cache

Copied: gtk2/repos/testing-i686/gtk2.install (from rev 271854, 
gtk2/trunk/gtk2.install)
===
--- testing-i686/gtk2.install   (rev 0)
+++ 

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

2016-07-14 Thread Jan de Groot
Date: Thursday, July 14, 2016 @ 11:13:01
  Author: jgc
Revision: 271854

upgpkg: gtk2 2.24.30+95+g876b5f7-1

Update to git snapshot, should fix FS#49949

Modified:
  gtk2/trunk/PKGBUILD

--+
 PKGBUILD |   26 +-
 1 file changed, 17 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 10:31:52 UTC (rev 271853)
+++ PKGBUILD2016-07-14 11:13:01 UTC (rev 271854)
@@ -2,40 +2,48 @@
 # Maintainer: Jan de Groot 
 
 pkgname=gtk2
-pkgver=2.24.30
-pkgrel=2
+pkgver=2.24.30+95+g876b5f7
+pkgrel=1
 pkgdesc="GObject-based multi-platform GUI toolkit (legacy)"
 arch=(i686 x86_64)
 url="http://www.gtk.org/;
 depends=(atk pango libxcursor libxinerama libxrandr libxi libxcomposite 
libxdamage
  shared-mime-info cairo libcups gtk-update-icon-cache librsvg 
desktop-file-utils)
-makedepends=(gobject-introspection python2)
+makedepends=(gobject-introspection python2 git gtk-doc)
 optdepends=('gnome-themes-standard: Default widget theme'
 'adwaita-icon-theme: Default icon theme')
 license=(LGPL)
 install=gtk2.install
-source=(https://download.gnome.org/sources/gtk+/2.24/gtk+-$pkgver.tar.xz
+_commit=876b5f75faab5d8f3c60c3ec035b2ecd4ac5b67e
+source=("git://git.gnome.org/gtk+#commit=$_commit"
 gtkrc
 gtk-query-immodules-2.0.hook
 xid-collision-debug.patch)
-sha256sums=('0d15cec3b6d55c60eac205b1f3ba81a1ed4eadd9d0f8e7c508bc7065d0c4ca50'
+sha256sums=('SKIP'
 'bc968e3e4f57e818430130338e5f85a5025e21d7e31a3293b8f5a0e58362b805'
 '9656a1efc798da1ac2dae94e921ed0f72719bd52d4d0138f305b993f778f7758'
 'd758bb93e59df15a4ea7732cf984d1c3c19dff67c94b957575efea132b8fe558')
 
+pkgver() {
+  cd gtk+
+  git describe --tags | sed 's/-/+/g'
+}
+
 prepare() {
-cd gtk+-$pkgver
+cd gtk+
 patch -Np1 -i ../xid-collision-debug.patch
 sed -i '1s/python$/&2/' gtk/gtk-builder-convert
+NOCONFIGURE=1 ./autogen.sh
 }
 
 build() {
-cd gtk+-$pkgver
+cd gtk+
 
 CXX=/bin/false ./configure --prefix=/usr \
 --sysconfdir=/etc \
 --localstatedir=/var \
---with-xinput=yes
+--with-xinput=yes \
+--enable-gtk-doc
 
 # https://bugzilla.gnome.org/show_bug.cgi?id=655517
 sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
@@ -44,7 +52,7 @@
 }
 
 package() {
-cd gtk+-$pkgver
+cd gtk+
 make DESTDIR="$pkgdir" install
 
 install -Dm644 ../gtkrc "$pkgdir/usr/share/gtk-2.0/gtkrc"


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

2016-07-14 Thread Jonathan Steel
Date: Thursday, July 14, 2016 @ 10:45:39
  Author: jsteel
Revision: 182885

archrelease: copy trunk to community-any

Added:
  aws-cli/repos/community-any/PKGBUILD
(from rev 182884, aws-cli/trunk/PKGBUILD)
Deleted:
  aws-cli/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-14 10:45:15 UTC (rev 182884)
+++ PKGBUILD2016-07-14 10:45:39 UTC (rev 182885)
@@ -1,32 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Alper KANAT 
-
-pkgname=aws-cli
-pkgver=1.10.46
-pkgrel=1
-pkgdesc='Universal Command Line Interface for Amazon Web Services'
-arch=('any')
-url="https://github.com/aws/aws-cli;
-license=('Apache')
-depends=('python-botocore' 'python-dateutil' 'python-jmespath'
- 'python-colorama' 'python-docutils' 'python-rsa'
- 'python-s3transfer')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('be7277309b3a781dc136c93f8f432fbb')
-
-build() {
-  cd $pkgname-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
-}

Copied: aws-cli/repos/community-any/PKGBUILD (from rev 182884, 
aws-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-07-14 10:45:39 UTC (rev 182885)
@@ -0,0 +1,32 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Alper KANAT 
+
+pkgname=aws-cli
+pkgver=1.10.47
+pkgrel=1
+pkgdesc='Universal Command Line Interface for Amazon Web Services'
+arch=('any')
+url="https://github.com/aws/aws-cli;
+license=('Apache')
+depends=('python-botocore' 'python-dateutil' 'python-jmespath'
+ 'python-colorama' 'python-docutils' 'python-rsa'
+ 'python-s3transfer')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('726383ece3cc60324062688d540bcb42')
+
+build() {
+  cd $pkgname-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
+}


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

2016-07-14 Thread Jonathan Steel
Date: Thursday, July 14, 2016 @ 10:45:15
  Author: jsteel
Revision: 182884

upgpkg: aws-cli 1.10.47-1

Modified:
  aws-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 10:43:16 UTC (rev 182883)
+++ PKGBUILD2016-07-14 10:45:15 UTC (rev 182884)
@@ -3,7 +3,7 @@
 # Contributor: Alper KANAT 
 
 pkgname=aws-cli
-pkgver=1.10.46
+pkgver=1.10.47
 pkgrel=1
 pkgdesc='Universal Command Line Interface for Amazon Web Services'
 arch=('any')
@@ -14,7 +14,7 @@
  'python-s3transfer')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('be7277309b3a781dc136c93f8f432fbb')
+md5sums=('726383ece3cc60324062688d540bcb42')
 
 build() {
   cd $pkgname-$pkgver


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

2016-07-14 Thread Jonathan Steel
Date: Thursday, July 14, 2016 @ 10:43:04
  Author: jsteel
Revision: 182882

upgpkg: python-botocore 1.4.37-1

Modified:
  python-botocore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 08:35:12 UTC (rev 182881)
+++ PKGBUILD2016-07-14 10:43:04 UTC (rev 182882)
@@ -4,7 +4,7 @@
 # Contributor: Chris Fordham
 
 pkgname=python-botocore
-pkgver=1.4.36
+pkgver=1.4.37
 pkgrel=1
 pkgdesc='A low-level interface to a growing number of Amazon Web Services'
 arch=('any')
@@ -13,7 +13,7 @@
 depends=('python-dateutil' 'python-jmespath' 'python-docutils')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('a7572dc30915ed23c8fe94b260efcb02')
+md5sums=('bbc4c996aac7003b173b68734b75200e')
 
 build() {
   cd botocore-$pkgver


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

2016-07-14 Thread Jonathan Steel
Date: Thursday, July 14, 2016 @ 10:43:16
  Author: jsteel
Revision: 182883

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-14 10:43:04 UTC (rev 182882)
+++ PKGBUILD2016-07-14 10:43:16 UTC (rev 182883)
@@ -1,30 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Ainola
-# Contributor: Chris Fordham
-
-pkgname=python-botocore
-pkgver=1.4.36
-pkgrel=1
-pkgdesc='A low-level interface to a growing number of Amazon Web Services'
-arch=('any')
-url="https://github.com/boto/botocore;
-license=('Apache')
-depends=('python-dateutil' 'python-jmespath' 'python-docutils')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('a7572dc30915ed23c8fe94b260efcb02')
-
-build() {
-  cd botocore-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd botocore-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-botocore/repos/community-any/PKGBUILD (from rev 182882, 
python-botocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-07-14 10:43:16 UTC (rev 182883)
@@ -0,0 +1,30 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Ainola
+# Contributor: Chris Fordham
+
+pkgname=python-botocore
+pkgver=1.4.37
+pkgrel=1
+pkgdesc='A low-level interface to a growing number of Amazon Web Services'
+arch=('any')
+url="https://github.com/boto/botocore;
+license=('Apache')
+depends=('python-dateutil' 'python-jmespath' 'python-docutils')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('bbc4c996aac7003b173b68734b75200e')
+
+build() {
+  cd botocore-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd botocore-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2016-07-14 Thread Jan de Groot
Date: Thursday, July 14, 2016 @ 10:31:47
  Author: jgc
Revision: 271852

upgpkg: gnome-sudoku 3.20.4-1

Modified:
  gnome-sudoku/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 09:25:21 UTC (rev 271851)
+++ PKGBUILD2016-07-14 10:31:47 UTC (rev 271852)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=gnome-sudoku
-pkgver=3.20.3
+pkgver=3.20.4
 pkgrel=1
 pkgdesc="Test your logic skills in this number grid puzzle"
 url="https://wiki.gnome.org/Apps/Sudoku;
@@ -14,7 +14,7 @@
 options=(!emptydirs)
 groups=(gnome-extra)
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('9317b4848bb8f1bb4c87cc6abfa7475c0c79191f429ac6904bcbb186b15c0f20')
+sha256sums=('9077c4b9a2f9bbb8daf21ba1454d03f6d3a9f33715dbfec8b51e98e73cc886c3')
 
 build() {
   cd $pkgname-$pkgver


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

2016-07-14 Thread Jan de Groot
Date: Thursday, July 14, 2016 @ 10:31:52
  Author: jgc
Revision: 271853

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

Added:
  gnome-sudoku/repos/extra-i686/PKGBUILD
(from rev 271852, gnome-sudoku/trunk/PKGBUILD)
  gnome-sudoku/repos/extra-x86_64/PKGBUILD
(from rev 271852, gnome-sudoku/trunk/PKGBUILD)
Deleted:
  gnome-sudoku/repos/extra-i686/PKGBUILD
  gnome-sudoku/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-07-14 10:31:47 UTC (rev 271852)
+++ extra-i686/PKGBUILD 2016-07-14 10:31:52 UTC (rev 271853)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=gnome-sudoku
-pkgver=3.20.3
-pkgrel=1
-pkgdesc="Test your logic skills in this number grid puzzle"
-url="https://wiki.gnome.org/Apps/Sudoku;
-arch=(x86_64 i686)
-license=(GPL)
-depends=(dconf gtk3 qqwing libgee json-glib)
-makedepends=(intltool itstool vala)
-options=(!emptydirs)
-groups=(gnome-extra)
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('9317b4848bb8f1bb4c87cc6abfa7475c0c79191f429ac6904bcbb186b15c0f20')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  sed -i 's_#! /usr/bin/python_#!/usr/bin/python2_' 
"$pkgdir/usr/bin/gnome-sudoku"
-}

Copied: gnome-sudoku/repos/extra-i686/PKGBUILD (from rev 271852, 
gnome-sudoku/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-07-14 10:31:52 UTC (rev 271853)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-sudoku
+pkgver=3.20.4
+pkgrel=1
+pkgdesc="Test your logic skills in this number grid puzzle"
+url="https://wiki.gnome.org/Apps/Sudoku;
+arch=(x86_64 i686)
+license=(GPL)
+depends=(dconf gtk3 qqwing libgee json-glib)
+makedepends=(intltool itstool vala)
+options=(!emptydirs)
+groups=(gnome-extra)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('9077c4b9a2f9bbb8daf21ba1454d03f6d3a9f33715dbfec8b51e98e73cc886c3')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  sed -i 's_#! /usr/bin/python_#!/usr/bin/python2_' 
"$pkgdir/usr/bin/gnome-sudoku"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-07-14 10:31:47 UTC (rev 271852)
+++ extra-x86_64/PKGBUILD   2016-07-14 10:31:52 UTC (rev 271853)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=gnome-sudoku
-pkgver=3.20.3
-pkgrel=1
-pkgdesc="Test your logic skills in this number grid puzzle"
-url="https://wiki.gnome.org/Apps/Sudoku;
-arch=(x86_64 i686)
-license=(GPL)
-depends=(dconf gtk3 qqwing libgee json-glib)
-makedepends=(intltool itstool vala)
-options=(!emptydirs)
-groups=(gnome-extra)
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('9317b4848bb8f1bb4c87cc6abfa7475c0c79191f429ac6904bcbb186b15c0f20')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  sed -i 's_#! /usr/bin/python_#!/usr/bin/python2_' 
"$pkgdir/usr/bin/gnome-sudoku"
-}

Copied: gnome-sudoku/repos/extra-x86_64/PKGBUILD (from rev 271852, 
gnome-sudoku/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-07-14 10:31:52 UTC (rev 271853)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-sudoku
+pkgver=3.20.4
+pkgrel=1
+pkgdesc="Test your logic skills in this number grid puzzle"
+url="https://wiki.gnome.org/Apps/Sudoku;
+arch=(x86_64 i686)
+license=(GPL)
+depends=(dconf gtk3 qqwing libgee json-glib)
+makedepends=(intltool itstool vala)
+options=(!emptydirs)

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

2016-07-14 Thread Jan de Groot
Date: Thursday, July 14, 2016 @ 09:25:21
  Author: jgc
Revision: 271851

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-07-14 09:25:16 UTC (rev 271850)
+++ extra-i686/PKGBUILD 2016-07-14 09:25:21 UTC (rev 271851)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-pkgname=gspell
-pkgver=1.0.2
-pkgrel=1
-pkgdesc="a flexible API to implement the spell checking in a GTK+ application"
-arch=('i686' 'x86_64')
-url="https://wiki.gnome.org/Projects/gspell;
-license=('GPL2')
-depends=('gtk3' 'enchant' 'libxml2' 'iso-codes')
-makedepends=('intltool' 'gobject-introspection' 'vala')
-source=("https://download.gnome.org/sources/gspell/${pkgver:0:3}/gspell-${pkgver}.tar.xz;)
-sha256sums=('80d859a2ee7cf5184bd2b3dc696a0ec1b899ff67b606177e1ef87ef945ff92bb')
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure  --prefix=/usr
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-package(){
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: gspell/repos/extra-i686/PKGBUILD (from rev 271850, 
gspell/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-07-14 09:25:21 UTC (rev 271851)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Jan de Groot 
+pkgname=gspell
+pkgver=1.0.3
+pkgrel=1
+pkgdesc="a flexible API to implement the spell checking in a GTK+ application"
+arch=('i686' 'x86_64')
+url="https://wiki.gnome.org/Projects/gspell;
+license=('GPL2')
+depends=('gtk3' 'enchant' 'libxml2' 'iso-codes')
+makedepends=('intltool' 'gobject-introspection' 'vala')
+source=(https://download.gnome.org/sources/gspell/${pkgver:0:3}/gspell-${pkgver}.tar.xz)
+sha256sums=('d95905e6c631e34911e8e3feeb364815bf3fd7ccd1dac118a34bcbae70261bd5')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure  --prefix=/usr
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+package(){
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-07-14 09:25:16 UTC (rev 271850)
+++ extra-x86_64/PKGBUILD   2016-07-14 09:25:21 UTC (rev 271851)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-pkgname=gspell
-pkgver=1.0.2
-pkgrel=1
-pkgdesc="a flexible API to implement the spell checking in a GTK+ application"
-arch=('i686' 'x86_64')
-url="https://wiki.gnome.org/Projects/gspell;
-license=('GPL2')
-depends=('gtk3' 'enchant' 'libxml2' 'iso-codes')
-makedepends=('intltool' 'gobject-introspection' 'vala')
-source=("https://download.gnome.org/sources/gspell/${pkgver:0:3}/gspell-${pkgver}.tar.xz;)
-sha256sums=('80d859a2ee7cf5184bd2b3dc696a0ec1b899ff67b606177e1ef87ef945ff92bb')
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure  --prefix=/usr
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-package(){
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: gspell/repos/extra-x86_64/PKGBUILD (from rev 271850, 
gspell/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-07-14 09:25:21 UTC (rev 271851)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Jan de Groot 
+pkgname=gspell
+pkgver=1.0.3
+pkgrel=1
+pkgdesc="a flexible API to implement the spell checking in a GTK+ application"
+arch=('i686' 'x86_64')
+url="https://wiki.gnome.org/Projects/gspell;
+license=('GPL2')
+depends=('gtk3' 'enchant' 'libxml2' 'iso-codes')
+makedepends=('intltool' 'gobject-introspection' 'vala')
+source=(https://download.gnome.org/sources/gspell/${pkgver:0:3}/gspell-${pkgver}.tar.xz)
+sha256sums=('d95905e6c631e34911e8e3feeb364815bf3fd7ccd1dac118a34bcbae70261bd5')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure  --prefix=/usr
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+package(){
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}


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

2016-07-14 Thread Jan de Groot
Date: Thursday, July 14, 2016 @ 09:25:16
  Author: jgc
Revision: 271850

upgpkg: gspell 1.0.3-1

Modified:
  gspell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 09:06:33 UTC (rev 271849)
+++ PKGBUILD2016-07-14 09:25:16 UTC (rev 271850)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Jan de Groot 
 pkgname=gspell
-pkgver=1.0.2
+pkgver=1.0.3
 pkgrel=1
 pkgdesc="a flexible API to implement the spell checking in a GTK+ application"
 arch=('i686' 'x86_64')
@@ -9,8 +9,8 @@
 license=('GPL2')
 depends=('gtk3' 'enchant' 'libxml2' 'iso-codes')
 makedepends=('intltool' 'gobject-introspection' 'vala')
-source=("https://download.gnome.org/sources/gspell/${pkgver:0:3}/gspell-${pkgver}.tar.xz;)
-sha256sums=('80d859a2ee7cf5184bd2b3dc696a0ec1b899ff67b606177e1ef87ef945ff92bb')
+source=(https://download.gnome.org/sources/gspell/${pkgver:0:3}/gspell-${pkgver}.tar.xz)
+sha256sums=('d95905e6c631e34911e8e3feeb364815bf3fd7ccd1dac118a34bcbae70261bd5')
 
 build() {
   cd "$pkgname-$pkgver"


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

2016-07-14 Thread Jan de Groot
Date: Thursday, July 14, 2016 @ 09:06:33
  Author: jgc
Revision: 271849

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-07-14 09:06:28 UTC (rev 271848)
+++ extra-i686/PKGBUILD 2016-07-14 09:06:33 UTC (rev 271849)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=libspectre
-pkgver=0.2.7
-pkgrel=2
-pkgdesc="Small library for rendering Postscript documents"
-arch=('i686' 'x86_64')
-license=('GPL2')
-url="http://www.freedesktop.org/wiki/Software/libspectre;
-depends=('ghostscript>=9.00')
-source=(http://libspectre.freedesktop.org/releases/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('a7efd97b82b84ff1bb7a0d88c7e35ad10cc84ea8')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: libspectre/repos/extra-i686/PKGBUILD (from rev 271848, 
libspectre/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-07-14 09:06:33 UTC (rev 271849)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=libspectre
+pkgver=0.2.8
+pkgrel=1
+pkgdesc="Small library for rendering Postscript documents"
+arch=('i686' 'x86_64')
+license=('GPL2')
+url="https://www.freedesktop.org/wiki/Software/libspectre;
+depends=('ghostscript>=9.00')
+source=(http://libspectre.freedesktop.org/releases/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('322499a5ba8874bc0cc20426b0e429024bf1a573')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-07-14 09:06:28 UTC (rev 271848)
+++ extra-x86_64/PKGBUILD   2016-07-14 09:06:33 UTC (rev 271849)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=libspectre
-pkgver=0.2.7
-pkgrel=2
-pkgdesc="Small library for rendering Postscript documents"
-arch=('i686' 'x86_64')
-license=('GPL2')
-url="http://www.freedesktop.org/wiki/Software/libspectre;
-depends=('ghostscript>=9.00')
-source=(http://libspectre.freedesktop.org/releases/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('a7efd97b82b84ff1bb7a0d88c7e35ad10cc84ea8')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: libspectre/repos/extra-x86_64/PKGBUILD (from rev 271848, 
libspectre/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-07-14 09:06:33 UTC (rev 271849)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=libspectre
+pkgver=0.2.8
+pkgrel=1
+pkgdesc="Small library for rendering Postscript documents"
+arch=('i686' 'x86_64')
+license=('GPL2')
+url="https://www.freedesktop.org/wiki/Software/libspectre;
+depends=('ghostscript>=9.00')
+source=(http://libspectre.freedesktop.org/releases/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('322499a5ba8874bc0cc20426b0e429024bf1a573')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}


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

2016-07-14 Thread Jan de Groot
Date: Thursday, July 14, 2016 @ 09:06:28
  Author: jgc
Revision: 271848

upgpkg: libspectre 0.2.8-1

Modified:
  libspectre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 08:50:24 UTC (rev 271847)
+++ PKGBUILD2016-07-14 09:06:28 UTC (rev 271848)
@@ -2,15 +2,15 @@
 # Maintainer: Jan de Groot 
 
 pkgname=libspectre
-pkgver=0.2.7
-pkgrel=2
+pkgver=0.2.8
+pkgrel=1
 pkgdesc="Small library for rendering Postscript documents"
 arch=('i686' 'x86_64')
 license=('GPL2')
-url="http://www.freedesktop.org/wiki/Software/libspectre;
+url="https://www.freedesktop.org/wiki/Software/libspectre;
 depends=('ghostscript>=9.00')
 source=(http://libspectre.freedesktop.org/releases/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('a7efd97b82b84ff1bb7a0d88c7e35ad10cc84ea8')
+sha1sums=('322499a5ba8874bc0cc20426b0e429024bf1a573')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"


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

2016-07-14 Thread Jan de Groot
Date: Thursday, July 14, 2016 @ 08:50:24
  Author: jgc
Revision: 271847

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

Added:
  gnome-session/repos/extra-i686/PKGBUILD
(from rev 271846, gnome-session/trunk/PKGBUILD)
  gnome-session/repos/extra-i686/platformtheme.patch
(from rev 271846, gnome-session/trunk/platformtheme.patch)
  gnome-session/repos/extra-i686/timeout.patch
(from rev 271846, gnome-session/trunk/timeout.patch)
  gnome-session/repos/extra-x86_64/PKGBUILD
(from rev 271846, gnome-session/trunk/PKGBUILD)
  gnome-session/repos/extra-x86_64/platformtheme.patch
(from rev 271846, gnome-session/trunk/platformtheme.patch)
  gnome-session/repos/extra-x86_64/timeout.patch
(from rev 271846, gnome-session/trunk/timeout.patch)
Deleted:
  gnome-session/repos/extra-i686/PKGBUILD
  gnome-session/repos/extra-i686/gnome-session.install
  gnome-session/repos/extra-i686/timeout.patch
  gnome-session/repos/extra-x86_64/PKGBUILD
  gnome-session/repos/extra-x86_64/gnome-session.install
  gnome-session/repos/extra-x86_64/timeout.patch

+
 /PKGBUILD  |   88 +++
 /timeout.patch |   48 +++
 extra-i686/PKGBUILD|   39 ---
 extra-i686/gnome-session.install   |   12 
 extra-i686/platformtheme.patch |   34 +
 extra-i686/timeout.patch   |   24 -
 extra-x86_64/PKGBUILD  |   39 ---
 extra-x86_64/gnome-session.install |   12 
 extra-x86_64/platformtheme.patch   |   34 +
 extra-x86_64/timeout.patch |   24 -
 10 files changed, 204 insertions(+), 150 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-07-14 08:50:18 UTC (rev 271846)
+++ extra-i686/PKGBUILD 2016-07-14 08:50:24 UTC (rev 271847)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-session
-pkgver=3.20.1
-pkgrel=1
-pkgdesc="The GNOME Session Handler"
-arch=(i686 x86_64)
-license=(GPL LGPL)
-depends=(systemd dconf gsettings-desktop-schemas gtk3 gnome-desktop
- json-glib libgl libsm libxtst systemd)
-makedepends=(intltool mesa gtk-doc xtrans)
-options=('!emptydirs')
-install=gnome-session.install
-url="http://www.gnome.org;
-groups=(gnome)
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
-timeout.patch)
-sha256sums=('2ae9f53dc74f851222fbefbe0dc08db0a78cc76ceeb156f92ebd4d40fd038913'
-'9eaf31857b41db417475c3b14adc11b10c8226ed76978cdf96dd648fa6e505fc')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Increase timeout, for slow machines
-  patch -Np1 -i ../timeout.patch
-}
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --libexecdir=/usr/lib/gnome-session \
-  --disable-schemas-compile --enable-systemd --disable-gconf
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-session/repos/extra-i686/PKGBUILD (from rev 271846, 
gnome-session/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-07-14 08:50:24 UTC (rev 271847)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-session
+pkgver=3.20.2
+pkgrel=1
+pkgdesc="The GNOME Session Handler"
+arch=(i686 x86_64)
+license=(GPL LGPL)
+depends=(systemd dconf gsettings-desktop-schemas gtk3 gnome-desktop
+ json-glib libgl libsm libxtst systemd)
+makedepends=(intltool mesa gtk-doc xtrans)
+options=('!emptydirs')
+url="http://www.gnome.org;
+groups=(gnome)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
+timeout.patch
+platformtheme.patch)
+sha256sums=('025f97e0b9f5431890598d6130040e1e7071771cc29e1d29d8e2e7c84d95f6da'
+'9eaf31857b41db417475c3b14adc11b10c8226ed76978cdf96dd648fa6e505fc'
+'912cab8e94a5d8d97753746899830f61508eec4233480794c7e7f6b0dcd924ee')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Increase timeout, for slow machines
+  patch -Np1 -i ../timeout.patch
+
+  # FS#49977
+  patch -Np1 -i ../platformtheme.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --libexecdir=/usr/lib/gnome-session \
+  --disable-schemas-compile --enable-systemd --disable-gconf
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/gnome-session.install
===
--- extra-i686/gnome-session.install2016-07-14 08:50:18 UTC (rev 271846)
+++ extra-i686/gnome-session.install2016-07-14 08:50:24 UTC (rev 

[arch-commits] Commit in gnome-session/trunk (3 files)

2016-07-14 Thread Jan de Groot
Date: Thursday, July 14, 2016 @ 08:50:18
  Author: jgc
Revision: 271846

upgpkg: gnome-session 3.20.2-1

Remove install (hooks), Fix FS#49977

Added:
  gnome-session/trunk/platformtheme.patch
Modified:
  gnome-session/trunk/PKGBUILD
Deleted:
  gnome-session/trunk/gnome-session.install

---+
 PKGBUILD  |   17 +++--
 gnome-session.install |   12 
 platformtheme.patch   |   34 ++
 3 files changed, 45 insertions(+), 18 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 06:45:52 UTC (rev 271845)
+++ PKGBUILD2016-07-14 08:50:18 UTC (rev 271846)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-session
-pkgver=3.20.1
+pkgver=3.20.2
 pkgrel=1
 pkgdesc="The GNOME Session Handler"
 arch=(i686 x86_64)
@@ -11,13 +11,14 @@
  json-glib libgl libsm libxtst systemd)
 makedepends=(intltool mesa gtk-doc xtrans)
 options=('!emptydirs')
-install=gnome-session.install
 url="http://www.gnome.org;
 groups=(gnome)
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
-timeout.patch)
-sha256sums=('2ae9f53dc74f851222fbefbe0dc08db0a78cc76ceeb156f92ebd4d40fd038913'
-'9eaf31857b41db417475c3b14adc11b10c8226ed76978cdf96dd648fa6e505fc')
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
+timeout.patch
+platformtheme.patch)
+sha256sums=('025f97e0b9f5431890598d6130040e1e7071771cc29e1d29d8e2e7c84d95f6da'
+'9eaf31857b41db417475c3b14adc11b10c8226ed76978cdf96dd648fa6e505fc'
+'912cab8e94a5d8d97753746899830f61508eec4233480794c7e7f6b0dcd924ee')
 
 prepare() {
   cd $pkgname-$pkgver
@@ -24,7 +25,11 @@
 
   # Increase timeout, for slow machines
   patch -Np1 -i ../timeout.patch
+
+  # FS#49977
+  patch -Np1 -i ../platformtheme.patch
 }
+
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc \

Deleted: gnome-session.install
===
--- gnome-session.install   2016-07-14 06:45:52 UTC (rev 271845)
+++ gnome-session.install   2016-07-14 08:50:18 UTC (rev 271846)
@@ -1,12 +0,0 @@
-post_install() {
-  glib-compile-schemas /usr/share/glib-2.0/schemas
-  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Added: platformtheme.patch
===
--- platformtheme.patch (rev 0)
+++ platformtheme.patch 2016-07-14 08:50:18 UTC (rev 271846)
@@ -0,0 +1,34 @@
+From ce4208add3b49d440e0c418229774dd802ee6b87 Mon Sep 17 00:00:00 2001
+From: Ray Strode 
+Date: Thu, 31 Mar 2016 21:55:55 -0400
+Subject: [PATCH] main: allow users to override QT_QPA_PLATFORMTHEME
+
+commit 971baf2e225abc5a67bd0c149f4cbfdb0ef8c549 added
+code to make Qt applications look like GNOME ones.
+
+That makes it impossible for users to use custom
+platform themes though.
+
+This commit addresses the problem by only setting
+QT_QPA_PLATFORMTHEME if it isn't already set.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=762681
+---
+ gnome-session/main.c | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/gnome-session/main.c b/gnome-session/main.c
+index 9f3ca0f..615b4ce 100644
+--- a/gnome-session/main.c
 b/gnome-session/main.c
+@@ -415,7 +415,9 @@ main (int argc, char **argv)
+ 
+ /* Tell Qt to try to make Qt applications look like gnome
+  */
+-gsm_util_setenv ("QT_QPA_PLATFORMTHEME", "qgnomeplatform");
++if (g_getenv ("QT_QPA_PLATFORMTHEME") == NULL) {
++gsm_util_setenv ("QT_QPA_PLATFORMTHEME", "qgnomeplatform");
++}
+ 
+ /* hack to fix keyring until we can reorder things in 3.20
+  * https://bugzilla.gnome.org/show_bug.cgi?id=738205


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

2016-07-14 Thread Felix Yan
Date: Thursday, July 14, 2016 @ 08:35:12
  Author: felixonmars
Revision: 182881

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

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

---+
 /PKGBUILD |  168 
 community-i686/PKGBUILD   |   83 -
 community-x86_64/PKGBUILD |   83 -
 3 files changed, 168 insertions(+), 166 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-07-14 08:34:50 UTC (rev 182880)
+++ community-i686/PKGBUILD 2016-07-14 08:35:12 UTC (rev 182881)
@@ -1,83 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Maintainer: Felix Yan 
-# Contributor: Thomas S Hatch 
-# Contributor: Jelle van der Waa 
-
-pkgbase=python-pymongo
-pkgname=('python-pymongo' 'python2-pymongo')
-pkgver=3.2.2
-pkgrel=1
-pkgdesc='Python module for using MongoDB'
-arch=('x86_64' 'i686')
-license=('APACHE')
-url='http://pypi.python.org/pypi/pymongo/'
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-nose' 'python2-nose' 'python2-gevent' 
'python2-monotonic' 'mongodb' 'perl')
-source=("http://pypi.python.org/packages/source/p/pymongo/pymongo-$pkgver.tar.gz;)
-sha256sums=('f2018165823b341d83d398165d1c625e5db5cc779e7c44c107034407808463b6')
-
-prepare() {
-  cp -a "pymongo-$pkgver" "pymongo2-$pkgver"
-}
-
-build() {
-  cd "$srcdir/pymongo-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/pymongo2-$pkgver"
-  python2 setup.py build
-}
-
-check() {
-  _mongod_run() {
-MONGO_TMP_PORT=$(perl -MSocket -le 'socket S, PF_INET, 
SOCK_STREAM,getprotobyname("tcp");
-  $port = 5;
-  ++$port until bind S, sockaddr_in($port,inet_aton("127.1"));
-  print $port')
-echo "Picked port $MONGO_TMP_PORT to run tests with."
-
-# Start a mongod instance for test
-rm -rf "$srcdir/mongo_tmp"
-mkdir "$srcdir/mongo_tmp"
-rm -f "$srcdir/mongo_tmp.pid"
-
-# Specifying --storageEngine is needed for i686
-if [ "$CARCH" == "i686" ]; then
-  _storageEngine="--storageEngine=mmapv1"
-else
-  _storageEngine=""
-fi
-
-mongod --bind_ip 127.0.0.1 --port $MONGO_TMP_PORT --dbpath 
"$srcdir/mongo_tmp" --nojournal $_storageEngine -v \
-   --nohttpinterface --noauth --smallfiles --nssize 1 --pidfilepath 
"$srcdir/mongo_tmp.pid" --logpath "$srcdir/mongo_tmp.log" &
-# --fork is somehow broken in latest mongodb
-sleep 5
-
-DB_PORT=$MONGO_TMP_PORT "$@"
-kill $(cat "$srcdir/mongo_tmp.pid")
-  }
-
-  cd "$srcdir/pymongo-$pkgver"
-  _mongod_run python setup.py test
-
-  cd "$srcdir/pymongo2-$pkgver"
-  _mongod_run python2 setup.py test
-}
-
-package_python2-pymongo() {
-  depends=('python2')
-  optdepends=('python2-monotonic: enable support for a monotonic clock')
-
-  cd "pymongo2-$pkgver"
-  python2 setup.py install --root="$pkgdir" --skip-build --optimize=1
-}
-
-package_python-pymongo() {
-  depends=('python')
-
-  cd "pymongo-$pkgver"
-  python setup.py install --root="$pkgdir" --skip-build --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pymongo/repos/community-i686/PKGBUILD (from rev 182880, 
python-pymongo/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-07-14 08:35:12 UTC (rev 182881)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Maintainer: Felix Yan 
+# Contributor: Thomas S Hatch 
+# Contributor: Jelle van der Waa 
+
+pkgbase=python-pymongo
+pkgname=('python-pymongo' 'python2-pymongo')
+pkgver=3.3.0
+pkgrel=1
+pkgdesc='Python module for using MongoDB'
+arch=('x86_64' 'i686')
+license=('APACHE')
+url='http://pypi.python.org/pypi/pymongo/'
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-nose' 'python2-nose' 'python2-gevent' 
'python2-monotonic' 'mongodb' 'perl')
+source=("https://pypi.io/packages/source/p/pymongo/pymongo-$pkgver.tar.gz;)
+sha256sums=('3d45302fc2622fabf34356ba274c69df41285bac71bbd229f1587283b851b91e')
+
+prepare() {
+  cp -a "pymongo-$pkgver" "pymongo2-$pkgver"
+}
+
+build() {
+  cd "$srcdir/pymongo-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/pymongo2-$pkgver"
+  python2 setup.py build
+}
+
+check() {
+  _mongod_run() {
+MONGO_TMP_PORT=$(perl -MSocket -le 'socket S, PF_INET, 
SOCK_STREAM,getprotobyname("tcp");
+  $port = 5;
+  ++$port until bind S, 

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

2016-07-14 Thread Felix Yan
Date: Thursday, July 14, 2016 @ 08:34:50
  Author: felixonmars
Revision: 182880

upgpkg: python-pymongo 3.3.0-1

Modified:
  python-pymongo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 08:02:14 UTC (rev 182879)
+++ PKGBUILD2016-07-14 08:34:50 UTC (rev 182880)
@@ -6,7 +6,7 @@
 
 pkgbase=python-pymongo
 pkgname=('python-pymongo' 'python2-pymongo')
-pkgver=3.2.2
+pkgver=3.3.0
 pkgrel=1
 pkgdesc='Python module for using MongoDB'
 arch=('x86_64' 'i686')
@@ -14,8 +14,8 @@
 url='http://pypi.python.org/pypi/pymongo/'
 makedepends=('python-setuptools' 'python2-setuptools')
 checkdepends=('python-nose' 'python2-nose' 'python2-gevent' 
'python2-monotonic' 'mongodb' 'perl')
-source=("http://pypi.python.org/packages/source/p/pymongo/pymongo-$pkgver.tar.gz;)
-sha256sums=('f2018165823b341d83d398165d1c625e5db5cc779e7c44c107034407808463b6')
+source=("https://pypi.io/packages/source/p/pymongo/pymongo-$pkgver.tar.gz;)
+sha256sums=('3d45302fc2622fabf34356ba274c69df41285bac71bbd229f1587283b851b91e')
 
 prepare() {
   cp -a "pymongo-$pkgver" "pymongo2-$pkgver"
@@ -56,6 +56,7 @@
 
 DB_PORT=$MONGO_TMP_PORT "$@"
 kill $(cat "$srcdir/mongo_tmp.pid")
+sleep 5
   }
 
   cd "$srcdir/pymongo-$pkgver"


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

2016-07-14 Thread Felix Yan
Date: Thursday, July 14, 2016 @ 08:02:14
  Author: felixonmars
Revision: 182879

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

Added:
  purescript/repos/community-i686/PKGBUILD
(from rev 182878, purescript/trunk/PKGBUILD)
  purescript/repos/community-i686/protolude-0.1.6.patch
(from rev 182878, purescript/trunk/protolude-0.1.6.patch)
  purescript/repos/community-x86_64/PKGBUILD
(from rev 182878, purescript/trunk/PKGBUILD)
  purescript/repos/community-x86_64/protolude-0.1.6.patch
(from rev 182878, purescript/trunk/protolude-0.1.6.patch)
Deleted:
  purescript/repos/community-i686/PKGBUILD
  purescript/repos/community-x86_64/PKGBUILD

+
 /PKGBUILD  |  100 
 community-i686/PKGBUILD|   45 -
 community-i686/protolude-0.1.6.patch   |  245 +++
 community-x86_64/PKGBUILD  |   45 -
 community-x86_64/protolude-0.1.6.patch |  245 +++
 5 files changed, 590 insertions(+), 90 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-07-14 08:01:52 UTC (rev 182878)
+++ community-i686/PKGBUILD 2016-07-14 08:02:14 UTC (rev 182879)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-pkgname=purescript
-pkgver=0.9.1
-pkgrel=10
-pkgdesc="PureScript Programming Language Compiler"
-url="http://www.purescript.org/;
-license=("MIT")
-arch=('i686' 'x86_64')
-depends=('gmp' 'libffi' 'zlib')
-makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-aeson-better-errors" 
"haskell-ansi-terminal"
- "haskell-ansi-wl-pprint" "haskell-base-compat" 
"haskell-bower-json" "haskell-boxes"
- "haskell-dlist" "haskell-edit-distance" "haskell-fsnotify" 
"haskell-glob"
- "haskell-http-types" "haskell-language-javascript" 
"haskell-lifted-base"
- "haskell-monad-control" "haskell-monad-logger" "haskell-mtl"
- "haskell-optparse-applicative" "haskell-parallel" "haskell-parsec"
- "haskell-pattern-arrows" "haskell-pipes" "haskell-pipes-http" 
"haskell-regex-tdfa"
- "haskell-safe" "haskell-semigroups" "haskell-sourcemap" 
"haskell-spdx" "haskell-split"
- "haskell-stm" "haskell-syb" "haskell-text" 
"haskell-transformers-base"
- "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-utf8-string"
- "haskell-vector")
-optdepends=('pulp: for development environment')
-source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('72a4c9148a5d6b6ec2650185be7b8aa6a43a089d73037f870babd0ded9a5d0e7')
-
-prepare() {
-sed -i 's/pipes >= 4.0.0 && < 4.2.0,/pipes >= 4.0.0 \&\& < 4.3.0,/' 
$pkgname-$pkgver/$pkgname.cabal
-}
-
-build() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-
-runhaskell Setup configure -O --enable-library-profiling --enable-shared \
---prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgbase" \
---libsubdir=\$compiler/site-local/\$pkgid
-LC_CTYPE=en_US.UTF-8 runhaskell Setup build
-}
-
-package() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-runhaskell Setup copy --destdir="${pkgdir}"
-rm -r "$pkgdir"/usr/{lib,share}
-}

Copied: purescript/repos/community-i686/PKGBUILD (from rev 182878, 
purescript/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-07-14 08:02:14 UTC (rev 182879)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=purescript
+pkgver=0.9.2
+pkgrel=1
+pkgdesc="PureScript Programming Language Compiler"
+url="http://www.purescript.org/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi' 'zlib')
+makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-aeson-better-errors" 
"haskell-ansi-terminal"
+ "haskell-ansi-wl-pprint" "haskell-base-compat" 
"haskell-bower-json" "haskell-boxes"
+ "haskell-clock" "haskell-dlist" "haskell-edit-distance" 
"haskell-file-embed"
+ "haskell-fsnotify" "haskell-glob" "haskell-http-types" 
"haskell-language-javascript"
+ "haskell-lifted-base" "haskell-monad-control" 
"haskell-monad-logger" "haskell-mtl"
+ "haskell-optparse-applicative" "haskell-parallel" "haskell-parsec"
+ "haskell-pattern-arrows" "haskell-pipes" "haskell-pipes-http" 
"haskell-protolude"
+ "haskell-regex-tdfa" "haskell-safe" "haskell-semigroups" 
"haskell-sourcemap"
+ "haskell-spdx" "haskell-split" "haskell-stm" "haskell-syb" 
"haskell-text"
+ "haskell-transformers-base" 

[arch-commits] Commit in purescript/trunk (PKGBUILD protolude-0.1.6.patch)

2016-07-14 Thread Felix Yan
Date: Thursday, July 14, 2016 @ 08:01:52
  Author: felixonmars
Revision: 182878

upgpkg: purescript 0.9.2-1

Added:
  purescript/trunk/protolude-0.1.6.patch
Modified:
  purescript/trunk/PKGBUILD

---+
 PKGBUILD  |   33 +++---
 protolude-0.1.6.patch |  245 
 2 files changed, 264 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 07:36:53 UTC (rev 182877)
+++ PKGBUILD2016-07-14 08:01:52 UTC (rev 182878)
@@ -3,8 +3,8 @@
 # Contributor: Arch Haskell Team 
 
 pkgname=purescript
-pkgver=0.9.1
-pkgrel=10
+pkgver=0.9.2
+pkgrel=1
 pkgdesc="PureScript Programming Language Compiler"
 url="http://www.purescript.org/;
 license=("MIT")
@@ -12,26 +12,31 @@
 depends=('gmp' 'libffi' 'zlib')
 makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-aeson-better-errors" 
"haskell-ansi-terminal"
  "haskell-ansi-wl-pprint" "haskell-base-compat" 
"haskell-bower-json" "haskell-boxes"
- "haskell-dlist" "haskell-edit-distance" "haskell-fsnotify" 
"haskell-glob"
- "haskell-http-types" "haskell-language-javascript" 
"haskell-lifted-base"
- "haskell-monad-control" "haskell-monad-logger" "haskell-mtl"
+ "haskell-clock" "haskell-dlist" "haskell-edit-distance" 
"haskell-file-embed"
+ "haskell-fsnotify" "haskell-glob" "haskell-http-types" 
"haskell-language-javascript"
+ "haskell-lifted-base" "haskell-monad-control" 
"haskell-monad-logger" "haskell-mtl"
  "haskell-optparse-applicative" "haskell-parallel" "haskell-parsec"
- "haskell-pattern-arrows" "haskell-pipes" "haskell-pipes-http" 
"haskell-regex-tdfa"
- "haskell-safe" "haskell-semigroups" "haskell-sourcemap" 
"haskell-spdx" "haskell-split"
- "haskell-stm" "haskell-syb" "haskell-text" 
"haskell-transformers-base"
- "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-utf8-string"
- "haskell-vector")
+ "haskell-pattern-arrows" "haskell-pipes" "haskell-pipes-http" 
"haskell-protolude"
+ "haskell-regex-tdfa" "haskell-safe" "haskell-semigroups" 
"haskell-sourcemap"
+ "haskell-spdx" "haskell-split" "haskell-stm" "haskell-syb" 
"haskell-text"
+ "haskell-transformers-base" "haskell-transformers-compat"
+ "haskell-unordered-containers" "haskell-utf8-string" 
"haskell-vector" "haskell-wai"
+ "haskell-wai-websockets" "haskell-warp" "haskell-websockets")
 optdepends=('pulp: for development environment')
-source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('72a4c9148a5d6b6ec2650185be7b8aa6a43a089d73037f870babd0ded9a5d0e7')
+source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;
+protolude-0.1.6.patch)
+sha256sums=('08a09bb101a900bf5ec3954cddfbfac11e81550d1ec92221559922f0e5b1acb3'
+'a85f3fb3e78c7dec7c69f0b86815395c8a58dfcee726dca4757ed266c9644451')
 
 prepare() {
-sed -i 's/pipes >= 4.0.0 && < 4.2.0,/pipes >= 4.0.0 \&\& < 4.3.0,/' 
$pkgname-$pkgver/$pkgname.cabal
+cd "${srcdir}/${pkgname}-${pkgver}"
+# https://github.com/purescript/purescript/pull/2225
+patch -p1 -i ../protolude-0.1.6.patch
 }
 
 build() {
 cd "${srcdir}/${pkgname}-${pkgver}"
-
+
 runhaskell Setup configure -O --enable-library-profiling --enable-shared \
 --prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgbase" \
 --libsubdir=\$compiler/site-local/\$pkgid

Added: protolude-0.1.6.patch
===
--- protolude-0.1.6.patch   (rev 0)
+++ protolude-0.1.6.patch   2016-07-14 08:01:52 UTC (rev 182878)
@@ -0,0 +1,245 @@
+From 839f595a2edf7a51188d00772ee801e06393f300 Mon Sep 17 00:00:00 2001
+From: ilovezfs 
+Date: Tue, 12 Jul 2016 10:09:51 -0700
+Subject: [PATCH] protolude 0.1.6: fix ambiguous occurrences
+
+Prevent PureScript build failure with protolude 0.1.6 due to
+ambiguous occurrence errors arising from the following conflicts:
+
+  Protolude.fromStrict vs. Data.ByteString.Lazy.fromStrict
+  Protolude.decodeUtf8 vs. Data.Text.Lazy.Encoding.decodeUtf8
+  Protolude.encodeUtf8 vs. Data.Text.Lazy.Encoding.encodeUtf8
+
+In order to preserve the ability to use "fromStrict" without qualifying
+it (e.g., Z.fromStrict), this fixes the ambiguous occurrences in a way
+that is backwards incompatible with protolude 0.1.5. In particular,
+using fromStrict without qualification requires hiding it, but since
+protolude 0.1.5 doesn't actually export fromStrict, importing 0.1.5
+hiding fromStrict will trigger a dodgy imports warning.
+
+Bumping the protolude dependency to >= 0.1.6 requires bumps to

[arch-commits] Commit in haskell-wai-websockets/repos (4 files)

2016-07-14 Thread Felix Yan
Date: Thursday, July 14, 2016 @ 07:36:53
  Author: felixonmars
Revision: 182877

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

Added:
  haskell-wai-websockets/repos/community-i686/
  haskell-wai-websockets/repos/community-i686/PKGBUILD
(from rev 182876, haskell-wai-websockets/trunk/PKGBUILD)
  haskell-wai-websockets/repos/community-x86_64/
  haskell-wai-websockets/repos/community-x86_64/PKGBUILD
(from rev 182876, haskell-wai-websockets/trunk/PKGBUILD)

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

Copied: haskell-wai-websockets/repos/community-i686/PKGBUILD (from rev 182876, 
haskell-wai-websockets/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-07-14 07:36:53 UTC (rev 182877)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-websockets
+pkgname=haskell-wai-websockets
+pkgver=3.0.0.9
+pkgrel=1
+pkgdesc="Provide a bridge between WAI and the websockets package."
+url="http://github.com/yesodweb/wai;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-blaze-builder" "haskell-case-insensitive" 
"haskell-http-types"
+ "haskell-network" "haskell-wai" "haskell-websockets")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('a2476dcd0474a4d3322b4d0bbf0418eebb834ad03cecd43d1648d0c73c9f2883')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-example
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-wai-websockets/repos/community-x86_64/PKGBUILD (from rev 
182876, haskell-wai-websockets/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-07-14 07:36:53 UTC (rev 182877)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-websockets
+pkgname=haskell-wai-websockets
+pkgver=3.0.0.9
+pkgrel=1
+pkgdesc="Provide a bridge between WAI and the websockets package."
+url="http://github.com/yesodweb/wai;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-blaze-builder" "haskell-case-insensitive" 
"haskell-http-types"
+ "haskell-network" "haskell-wai" "haskell-websockets")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('a2476dcd0474a4d3322b4d0bbf0418eebb834ad03cecd43d1648d0c73c9f2883')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-example
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy 

[arch-commits] Commit in (4 files)

2016-07-14 Thread Felix Yan
Date: Thursday, July 14, 2016 @ 07:36:24
  Author: felixonmars
Revision: 182876

addpkg: haskell-wai-websockets 3.0.0.9-1

Added:
  haskell-wai-websockets/
  haskell-wai-websockets/repos/
  haskell-wai-websockets/trunk/
  haskell-wai-websockets/trunk/PKGBUILD

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

Added: haskell-wai-websockets/trunk/PKGBUILD
===
--- haskell-wai-websockets/trunk/PKGBUILD   (rev 0)
+++ haskell-wai-websockets/trunk/PKGBUILD   2016-07-14 07:36:24 UTC (rev 
182876)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-websockets
+pkgname=haskell-wai-websockets
+pkgver=3.0.0.9
+pkgrel=1
+pkgdesc="Provide a bridge between WAI and the websockets package."
+url="http://github.com/yesodweb/wai;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-blaze-builder" "haskell-case-insensitive" 
"haskell-http-types"
+ "haskell-network" "haskell-wai" "haskell-websockets")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('a2476dcd0474a4d3322b4d0bbf0418eebb834ad03cecd43d1648d0c73c9f2883')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-example
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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


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

2016-07-14 Thread Felix Yan
Date: Thursday, July 14, 2016 @ 07:35:11
  Author: felixonmars
Revision: 182874

upgpkg: python-hypothesis 3.4.2-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 07:30:48 UTC (rev 182873)
+++ PKGBUILD2016-07-14 07:35:11 UTC (rev 182874)
@@ -3,7 +3,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.4.1
+pkgver=3.4.2
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -22,10 +22,10 @@
 }
 
 build() {
-  cd "$srcdir/hypothesis"
+  cd "$srcdir"/hypothesis
   python setup.py build
 
-  cd "$srcdir/hypothesis-py2"
+  cd "$srcdir"/hypothesis-py2
   python2 setup.py build
 }
 
@@ -32,11 +32,13 @@
 check() {(
   # I dunno how to fix pytest w/django tests :/
 
-  cd "$srcdir/hypothesis"
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" LC_CTYPE=en_US.UTF-8 python setup.py 
ptr
+  export LC_CTYPE=en_US.UTF-8
 
-  cd "$srcdir/hypothesis-py2"
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" LC_CTYPE=en_US.UTF-8 python2 
setup.py ptr
+  cd "$srcdir"/hypothesis
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python setup.py ptr
+
+  cd "$srcdir"/hypothesis-py2
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 setup.py ptr
   ) || warning "Tests failed"
 }
 
@@ -49,7 +51,7 @@
   'python-pytest: for pytest module')
 
   cd hypothesis
-  python setup.py install --root="${pkgdir}" --optimize=1
+  python setup.py install --root="$pkgdir" --optimize=1
 }
 
 package_python2-hypothesis() {
@@ -61,5 +63,5 @@
   'python2-pytest: for pytest module')
 
   cd hypothesis-py2
-  python2 setup.py install --root="${pkgdir}" --optimize=1
+  python2 setup.py install --root="$pkgdir" --optimize=1
 }


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

2016-07-14 Thread Felix Yan
Date: Thursday, July 14, 2016 @ 07:35:24
  Author: felixonmars
Revision: 182875

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  132 ++---
 1 file changed, 67 insertions(+), 65 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-14 07:35:11 UTC (rev 182874)
+++ PKGBUILD2016-07-14 07:35:24 UTC (rev 182875)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-hypothesis
-pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.4.1
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org;
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-enum34' 'git')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8'
-  'python-pytz' 'python2-pytz' 'python-django' 'python2-django' 
'python-numpy'
-  'python2-numpy' 'python-fake-factory' 'python2-fake-factory' 
'python-flaky'
-  'python2-flaky' 'python-pytest-benchmark' 
'python2-pytest-benchmark')
-source=("git+https://github.com/DRMacIver/hypothesis.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a hypothesis{,-py2}
-}
-
-build() {
-  cd "$srcdir/hypothesis"
-  python setup.py build
-
-  cd "$srcdir/hypothesis-py2"
-  python2 setup.py build
-}
-
-check() {(
-  # I dunno how to fix pytest w/django tests :/
-
-  cd "$srcdir/hypothesis"
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" LC_CTYPE=en_US.UTF-8 python setup.py 
ptr
-
-  cd "$srcdir/hypothesis-py2"
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" LC_CTYPE=en_US.UTF-8 python2 
setup.py ptr
-  ) || warning "Tests failed"
-}
-
-package_python-hypothesis() {
-  depends=('python')
-  optdepends=('python-pytz: for datetime and django module'
-  'python-fake-factory: for fakefactory and django module'
-  'python-django: for django module'
-  'python-numpy: for numpy module'
-  'python-pytest: for pytest module')
-
-  cd hypothesis
-  python setup.py install --root="${pkgdir}" --optimize=1
-}
-
-package_python2-hypothesis() {
-  depends=('python2-enum34')
-  optdepends=('python2-pytz: for datetime and django module'
-  'python2-fake-factory: for fakefactory and django module'
-  'python2-django: for django module'
-  'python2-numpy: for numpy module'
-  'python2-pytest: for pytest module')
-
-  cd hypothesis-py2
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 182874, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-07-14 07:35:24 UTC (rev 182875)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-hypothesis
+pkgname=('python-hypothesis' 'python2-hypothesis')
+pkgver=3.4.2
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org;
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-enum34' 'git')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8'
+  'python-pytz' 'python2-pytz' 'python-django' 'python2-django' 
'python-numpy'
+  'python2-numpy' 'python-fake-factory' 'python2-fake-factory' 
'python-flaky'
+  'python2-flaky' 'python-pytest-benchmark' 
'python2-pytest-benchmark')
+source=("git+https://github.com/DRMacIver/hypothesis.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a hypothesis{,-py2}
+}
+
+build() {
+  cd "$srcdir"/hypothesis
+  python setup.py build
+
+  cd "$srcdir"/hypothesis-py2
+  python2 setup.py build
+}
+
+check() {(
+  # I dunno how to fix pytest w/django tests :/
+
+  export LC_CTYPE=en_US.UTF-8
+
+  cd "$srcdir"/hypothesis
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python setup.py ptr
+
+  cd "$srcdir"/hypothesis-py2
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 setup.py ptr
+  ) || warning "Tests failed"
+}
+
+package_python-hypothesis() {
+  depends=('python')
+  optdepends=('python-pytz: for datetime and django module'
+  'python-fake-factory: for fakefactory and django module'
+  'python-django: for django module'
+  'python-numpy: for numpy module'
+  'python-pytest: for pytest module')
+
+  cd hypothesis
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-hypothesis() {
+  depends=('python2-enum34')
+  optdepends=('python2-pytz: for datetime and django 

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

2016-07-14 Thread Felix Yan
Date: Thursday, July 14, 2016 @ 07:30:48
  Author: felixonmars
Revision: 182873

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

Added:
  haskell-websockets/repos/community-i686/
  haskell-websockets/repos/community-i686/PKGBUILD
(from rev 182872, haskell-websockets/trunk/PKGBUILD)
  haskell-websockets/repos/community-x86_64/
  haskell-websockets/repos/community-x86_64/PKGBUILD
(from rev 182872, haskell-websockets/trunk/PKGBUILD)

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

Copied: haskell-websockets/repos/community-i686/PKGBUILD (from rev 182872, 
haskell-websockets/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-07-14 07:30:48 UTC (rev 182873)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=websockets
+pkgname=haskell-websockets
+pkgver=0.9.6.2
+pkgrel=1
+pkgdesc="A sensible and clean way to write WebSocket-capable servers in 
Haskell."
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-attoparsec" "haskell-base64-bytestring" 
"haskell-blaze-builder"
+ "haskell-case-insensitive" "haskell-entropy" "haskell-network" 
"haskell-random"
+ "haskell-sha" "haskell-text")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('d772478ca85b4723cadbf7d73a16c15dea466fd1524d6fe323a2675106c93353')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-Example
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENCE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENCE"
+}

Copied: haskell-websockets/repos/community-x86_64/PKGBUILD (from rev 182872, 
haskell-websockets/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-07-14 07:30:48 UTC (rev 182873)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=websockets
+pkgname=haskell-websockets
+pkgver=0.9.6.2
+pkgrel=1
+pkgdesc="A sensible and clean way to write WebSocket-capable servers in 
Haskell."
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-attoparsec" "haskell-base64-bytestring" 
"haskell-blaze-builder"
+ "haskell-case-insensitive" "haskell-entropy" "haskell-network" 
"haskell-random"
+ "haskell-sha" "haskell-text")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('d772478ca85b4723cadbf7d73a16c15dea466fd1524d6fe323a2675106c93353')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-Example
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 

[arch-commits] Commit in (4 files)

2016-07-14 Thread Felix Yan
Date: Thursday, July 14, 2016 @ 07:30:26
  Author: felixonmars
Revision: 182872

addpkg: haskell-websockets 0.9.6.2-1

Added:
  haskell-websockets/
  haskell-websockets/repos/
  haskell-websockets/trunk/
  haskell-websockets/trunk/PKGBUILD

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

Added: haskell-websockets/trunk/PKGBUILD
===
--- haskell-websockets/trunk/PKGBUILD   (rev 0)
+++ haskell-websockets/trunk/PKGBUILD   2016-07-14 07:30:26 UTC (rev 182872)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=websockets
+pkgname=haskell-websockets
+pkgver=0.9.6.2
+pkgrel=1
+pkgdesc="A sensible and clean way to write WebSocket-capable servers in 
Haskell."
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-attoparsec" "haskell-base64-bytestring" 
"haskell-blaze-builder"
+ "haskell-case-insensitive" "haskell-entropy" "haskell-network" 
"haskell-random"
+ "haskell-sha" "haskell-text")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('d772478ca85b4723cadbf7d73a16c15dea466fd1524d6fe323a2675106c93353')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-Example
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENCE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENCE"
+}


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


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

2016-07-14 Thread Felix Yan
Date: Thursday, July 14, 2016 @ 07:15:13
  Author: felixonmars
Revision: 182871

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

Added:
  haskell-protolude/repos/community-i686/
  haskell-protolude/repos/community-i686/PKGBUILD
(from rev 182870, haskell-protolude/trunk/PKGBUILD)
  haskell-protolude/repos/community-x86_64/
  haskell-protolude/repos/community-x86_64/PKGBUILD
(from rev 182870, haskell-protolude/trunk/PKGBUILD)

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

Copied: haskell-protolude/repos/community-i686/PKGBUILD (from rev 182870, 
haskell-protolude/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-07-14 07:15:13 UTC (rev 182871)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=protolude
+pkgname=haskell-protolude
+pkgver=0.1.6
+pkgrel=1
+pkgdesc="A sensible set of defaults for writing custom Preludes."
+url="https://github.com/sdiehl/protolude;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-async" "haskell-mtl" "haskell-safe" 
"haskell-stm" "haskell-text")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('daddf3511ec1a971f53aecc4b198c008e89ab035736dbb453440d1d2b0733cbd')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-protolude/repos/community-x86_64/PKGBUILD (from rev 182870, 
haskell-protolude/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-07-14 07:15:13 UTC (rev 182871)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=protolude
+pkgname=haskell-protolude
+pkgver=0.1.6
+pkgrel=1
+pkgdesc="A sensible set of defaults for writing custom Preludes."
+url="https://github.com/sdiehl/protolude;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-async" "haskell-mtl" "haskell-safe" 
"haskell-stm" "haskell-text")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('daddf3511ec1a971f53aecc4b198c008e89ab035736dbb453440d1d2b0733cbd')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in (4 files)

2016-07-14 Thread Felix Yan
Date: Thursday, July 14, 2016 @ 07:05:17
  Author: felixonmars
Revision: 182870

addpkg: haskell-protolude 0.1.6-1

Added:
  haskell-protolude/
  haskell-protolude/repos/
  haskell-protolude/trunk/
  haskell-protolude/trunk/PKGBUILD

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

Added: haskell-protolude/trunk/PKGBUILD
===
--- haskell-protolude/trunk/PKGBUILD(rev 0)
+++ haskell-protolude/trunk/PKGBUILD2016-07-14 07:05:17 UTC (rev 182870)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=protolude
+pkgname=haskell-protolude
+pkgver=0.1.6
+pkgrel=1
+pkgdesc="A sensible set of defaults for writing custom Preludes."
+url="https://github.com/sdiehl/protolude;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-async" "haskell-mtl" "haskell-safe" 
"haskell-stm" "haskell-text")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('daddf3511ec1a971f53aecc4b198c008e89ab035736dbb453440d1d2b0733cbd')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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


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

2016-07-14 Thread Felix Yan
Date: Thursday, July 14, 2016 @ 07:00:02
  Author: felixonmars
Revision: 182868

upgpkg: ibus-chewing 1.5.1-1

Modified:
  ibus-chewing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 06:59:13 UTC (rev 182867)
+++ PKGBUILD2016-07-14 07:00:02 UTC (rev 182868)
@@ -6,7 +6,7 @@
 # Contributor: Hiroshi Yui 
 
 pkgname=ibus-chewing
-pkgver=1.5.0
+pkgver=1.5.1
 _cmakefedoraver=2.6.0
 pkgrel=1
 pkgdesc='Chinese Chewing Engine for IBus Framework'


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

2016-07-14 Thread Felix Yan
Date: Thursday, July 14, 2016 @ 07:00:24
  Author: felixonmars
Revision: 182869

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

Added:
  ibus-chewing/repos/community-i686/PKGBUILD
(from rev 182868, ibus-chewing/trunk/PKGBUILD)
  ibus-chewing/repos/community-x86_64/PKGBUILD
(from rev 182868, ibus-chewing/trunk/PKGBUILD)
Deleted:
  ibus-chewing/repos/community-i686/PKGBUILD
  ibus-chewing/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-07-14 07:00:02 UTC (rev 182868)
+++ community-i686/PKGBUILD 2016-07-14 07:00:24 UTC (rev 182869)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Rainy 
-# Contributor: Lee.MaRS 
-# Contributor: Hiroshi Yui 
-
-pkgname=ibus-chewing
-pkgver=1.5.0
-_cmakefedoraver=2.6.0
-pkgrel=1
-pkgdesc='Chinese Chewing Engine for IBus Framework'
-arch=('i686' 'x86_64')
-license=('GPL')
-url='http://ibus.googlecode.com'
-depends=('ibus' 'libchewing' 'libxtst')
-makedepends=('swig' 'gob2' 'cmake' 'git')
-source=("git+https://github.com/definite/ibus-chewing.git#tag=$pkgver;
-
"git+http://git.fedorahosted.org/git/cmake-fedora.git#tag=$_cmakefedoraver;)
-sha512sums=('SKIP'
-'SKIP')
-
-prepare() {
-  cd $pkgname
-  ln -s ../cmake-fedora/Modules ./
-}
-
-build() {
-  cd $pkgname
-  cmake . -DCMAKE_INSTALL_PREFIX=/usr \
--DSYSCONF_INSTALL_DIR=/usr/share \
--DLIBEXEC_DIR=/usr/lib/ibus
-  make
-  make translations
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: ibus-chewing/repos/community-i686/PKGBUILD (from rev 182868, 
ibus-chewing/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-07-14 07:00:24 UTC (rev 182869)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Rainy 
+# Contributor: Lee.MaRS 
+# Contributor: Hiroshi Yui 
+
+pkgname=ibus-chewing
+pkgver=1.5.1
+_cmakefedoraver=2.6.0
+pkgrel=1
+pkgdesc='Chinese Chewing Engine for IBus Framework'
+arch=('i686' 'x86_64')
+license=('GPL')
+url='http://ibus.googlecode.com'
+depends=('ibus' 'libchewing' 'libxtst')
+makedepends=('swig' 'gob2' 'cmake' 'git')
+source=("git+https://github.com/definite/ibus-chewing.git#tag=$pkgver;
+
"git+http://git.fedorahosted.org/git/cmake-fedora.git#tag=$_cmakefedoraver;)
+sha512sums=('SKIP'
+'SKIP')
+
+prepare() {
+  cd $pkgname
+  ln -s ../cmake-fedora/Modules ./
+}
+
+build() {
+  cd $pkgname
+  cmake . -DCMAKE_INSTALL_PREFIX=/usr \
+-DSYSCONF_INSTALL_DIR=/usr/share \
+-DLIBEXEC_DIR=/usr/lib/ibus
+  make
+  make translations
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-07-14 07:00:02 UTC (rev 182868)
+++ community-x86_64/PKGBUILD   2016-07-14 07:00:24 UTC (rev 182869)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Rainy 
-# Contributor: Lee.MaRS 
-# Contributor: Hiroshi Yui 
-
-pkgname=ibus-chewing
-pkgver=1.5.0
-_cmakefedoraver=2.6.0
-pkgrel=1
-pkgdesc='Chinese Chewing Engine for IBus Framework'
-arch=('i686' 'x86_64')
-license=('GPL')
-url='http://ibus.googlecode.com'
-depends=('ibus' 'libchewing' 'libxtst')
-makedepends=('swig' 'gob2' 'cmake' 'git')
-source=("git+https://github.com/definite/ibus-chewing.git#tag=$pkgver;
-
"git+http://git.fedorahosted.org/git/cmake-fedora.git#tag=$_cmakefedoraver;)
-sha512sums=('SKIP'
-'SKIP')
-
-prepare() {
-  cd $pkgname
-  ln -s ../cmake-fedora/Modules ./
-}
-
-build() {
-  cd $pkgname
-  cmake . -DCMAKE_INSTALL_PREFIX=/usr \
--DSYSCONF_INSTALL_DIR=/usr/share \
--DLIBEXEC_DIR=/usr/lib/ibus
-  make
-  make translations
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: ibus-chewing/repos/community-x86_64/PKGBUILD (from rev 182868, 
ibus-chewing/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-07-14 07:00:24 

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

2016-07-14 Thread Felix Yan
Date: Thursday, July 14, 2016 @ 06:59:13
  Author: felixonmars
Revision: 182867

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-07-14 06:58:50 UTC (rev 182866)
+++ community-i686/PKGBUILD 2016-07-14 06:59:13 UTC (rev 182867)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-pkgname=hoogle
-pkgver=5.0
-pkgrel=3
-pkgdesc="Haskell API Search"
-url="http://www.haskell.org/hoogle/;
-license=("custom:BSD3")
-arch=('i686' 'x86_64')
-depends=('gmp' 'libffi' 'zlib')
-makedepends=("ghc=8.0.1" "haskell-quickcheck" "haskell-aeson" 
"haskell-cmdargs" "haskell-conduit"
- "haskell-conduit-extra" "haskell-connection" "haskell-extra" 
"haskell-src-exts"
- "haskell-http-conduit" "haskell-http-types" "haskell-js-flot" 
"haskell-js-jquery"
- "haskell-mmap" "haskell-network" "haskell-network-uri" 
"haskell-old-locale"
- "haskell-resourcet" "haskell-tar" "haskell-text" 
"haskell-uniplate"
- "haskell-utf8-string" "haskell-vector" "haskell-wai" 
"haskell-wai-logger"
- "haskell-warp" "haskell-warp-tls" "haskell-zlib")
-source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('19fa34b6695956548f3dc1992e883bb7cf32459d260587dd5a06ef986684c50f')
-
-build() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-
-runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname"
-runhaskell Setup build
-}
-
-package() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-
-runhaskell Setup copy --destdir="${pkgdir}"
-install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-rm -r "$pkgdir"/usr/{lib,share/doc}
-}

Copied: hoogle/repos/community-i686/PKGBUILD (from rev 182866, 
hoogle/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-07-14 06:59:13 UTC (rev 182867)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.1
+pkgrel=1
+pkgdesc="Haskell API Search"
+url="http://www.haskell.org/hoogle/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi' 'zlib')
+makedepends=("ghc=8.0.1" "haskell-quickcheck" "haskell-aeson" 
"haskell-cmdargs" "haskell-conduit"
+ "haskell-conduit-extra" "haskell-connection" "haskell-extra" 
"haskell-src-exts"
+ "haskell-http-conduit" "haskell-http-types" "haskell-js-flot" 
"haskell-js-jquery"
+ "haskell-mmap" "haskell-network" "haskell-network-uri" 
"haskell-old-locale"
+ "haskell-resourcet" "haskell-tar" "haskell-text" 
"haskell-uniplate"
+ "haskell-utf8-string" "haskell-vector" "haskell-wai" 
"haskell-wai-logger"
+ "haskell-warp" "haskell-warp-tls" "haskell-zlib")
+source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('7aea6d779e14574f78f4506949f96a020ac1f8273b84f418094197366cc3112e')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-07-14 06:58:50 UTC (rev 182866)
+++ community-x86_64/PKGBUILD   2016-07-14 06:59:13 UTC (rev 182867)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-pkgname=hoogle
-pkgver=5.0
-pkgrel=3
-pkgdesc="Haskell API Search"
-url="http://www.haskell.org/hoogle/;
-license=("custom:BSD3")
-arch=('i686' 'x86_64')
-depends=('gmp' 'libffi' 'zlib')
-makedepends=("ghc=8.0.1" "haskell-quickcheck" 

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

2016-07-14 Thread Felix Yan
Date: Thursday, July 14, 2016 @ 06:58:50
  Author: felixonmars
Revision: 182866

upgpkg: hoogle 5.0.1-1

Modified:
  hoogle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 06:53:54 UTC (rev 182865)
+++ PKGBUILD2016-07-14 06:58:50 UTC (rev 182866)
@@ -3,8 +3,8 @@
 # Contributor: Arch Haskell Team 
 
 pkgname=hoogle
-pkgver=5.0
-pkgrel=3
+pkgver=5.0.1
+pkgrel=1
 pkgdesc="Haskell API Search"
 url="http://www.haskell.org/hoogle/;
 license=("custom:BSD3")
@@ -18,7 +18,7 @@
  "haskell-utf8-string" "haskell-vector" "haskell-wai" 
"haskell-wai-logger"
  "haskell-warp" "haskell-warp-tls" "haskell-zlib")
 
source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('19fa34b6695956548f3dc1992e883bb7cf32459d260587dd5a06ef986684c50f')
+sha256sums=('7aea6d779e14574f78f4506949f96a020ac1f8273b84f418094197366cc3112e')
 
 build() {
 cd "${srcdir}/${pkgname}-${pkgver}"


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

2016-07-14 Thread Felix Yan
Date: Thursday, July 14, 2016 @ 06:53:54
  Author: felixonmars
Revision: 182865

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-07-14 06:53:27 UTC (rev 182864)
+++ community-i686/PKGBUILD 2016-07-14 06:53:54 UTC (rev 182865)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=rclone
-pkgver=1.30
-pkgrel=1
-pkgdesc="Sync files to and from Google Drive, S3, Swift, Cloudfiles, Dropbox 
and Google Cloud Storage"
-arch=('i686' 'x86_64')
-url="http://rclone.org/;
-license=('MIT')
-depends=('glibc')
-makedepends=('git' 'python2' 'pandoc' 'go')
-source=("git+https://github.com/ncw/rclone.git#tag=v$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cd rclone
-
-  sed -i "1s/python$/&2/" make_manual.py
-
-  mkdir -p .gopath/src/github.com/ncw
-  ln -sf "$PWD" .gopath/src/github.com/ncw/rclone
-  export GOPATH="$PWD/.gopath"
-
-  go get github.com/go-ini/ini github.com/jmespath/go-jmespath
-  go get github.com/ncw/rclone
-}
-
-build() {
-  cd rclone
-
-  go build # -gccgoflags "$CFLAGS $LDFLAGS"
-  make doc
-}
-
-check() {
-  cd rclone
-  make test || warning "Tests failed"
-}
-
-package() {
-  cd rclone
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-
-  install -Dm644 rclone.1 "$pkgdir/usr/share/man/man1/rclone.1"
-  install -d "$pkgdir/usr/share/doc/$pkgname"
-  install -t "$pkgdir/usr/share/doc/$pkgname" -m644 MANUAL.html MANUAL.txt
-}

Copied: rclone/repos/community-i686/PKGBUILD (from rev 182864, 
rclone/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-07-14 06:53:54 UTC (rev 182865)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=rclone
+pkgver=1.32
+pkgrel=1
+pkgdesc="Sync files to and from Google Drive, S3, Swift, Cloudfiles, Dropbox 
and Google Cloud Storage"
+arch=('i686' 'x86_64')
+url="http://rclone.org/;
+license=('MIT')
+depends=('glibc')
+makedepends=('git' 'python2' 'pandoc' 'go')
+source=("git+https://github.com/ncw/rclone.git#tag=v$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cd rclone
+
+  sed -i "1s/python$/&2/" make_manual.py
+
+  mkdir -p .gopath/src/github.com/ncw
+  ln -sf "$PWD" .gopath/src/github.com/ncw/rclone
+  export GOPATH="$PWD/.gopath"
+
+  go get github.com/go-ini/ini github.com/jmespath/go-jmespath
+  go get github.com/ncw/rclone
+}
+
+build() {
+  cd rclone
+
+  go build # -gccgoflags "$CFLAGS $LDFLAGS"
+  make doc
+}
+
+check() {
+  cd rclone
+  make test || warning "Tests failed"
+}
+
+package() {
+  cd rclone
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+
+  install -Dm644 rclone.1 "$pkgdir/usr/share/man/man1/rclone.1"
+  install -d "$pkgdir/usr/share/doc/$pkgname"
+  install -t "$pkgdir/usr/share/doc/$pkgname" -m644 MANUAL.html MANUAL.txt
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-07-14 06:53:27 UTC (rev 182864)
+++ community-x86_64/PKGBUILD   2016-07-14 06:53:54 UTC (rev 182865)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=rclone
-pkgver=1.30
-pkgrel=1
-pkgdesc="Sync files to and from Google Drive, S3, Swift, Cloudfiles, Dropbox 
and Google Cloud Storage"
-arch=('i686' 'x86_64')
-url="http://rclone.org/;
-license=('MIT')
-depends=('glibc')
-makedepends=('git' 'python2' 'pandoc' 'go')
-source=("git+https://github.com/ncw/rclone.git#tag=v$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cd rclone
-
-  sed -i "1s/python$/&2/" make_manual.py
-
-  mkdir -p .gopath/src/github.com/ncw
-  ln -sf "$PWD" .gopath/src/github.com/ncw/rclone
-  export GOPATH="$PWD/.gopath"
-
-  go get github.com/go-ini/ini github.com/jmespath/go-jmespath
-  go get github.com/ncw/rclone
-}
-
-build() {
-  cd rclone
-
-  go build # -gccgoflags "$CFLAGS $LDFLAGS"
-  make doc
-}
-
-check() {
-  cd rclone
-  make test || warning "Tests failed"
-}
-
-package() {
-  cd rclone
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-
-  install -Dm644 rclone.1 "$pkgdir/usr/share/man/man1/rclone.1"
-  install 

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

2016-07-14 Thread Felix Yan
Date: Thursday, July 14, 2016 @ 06:53:27
  Author: felixonmars
Revision: 182864

upgpkg: rclone 1.32-1

Modified:
  rclone/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 06:51:38 UTC (rev 182863)
+++ PKGBUILD2016-07-14 06:53:27 UTC (rev 182864)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=rclone
-pkgver=1.30
+pkgver=1.32
 pkgrel=1
 pkgdesc="Sync files to and from Google Drive, S3, Swift, Cloudfiles, Dropbox 
and Google Cloud Storage"
 arch=('i686' 'x86_64')


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

2016-07-14 Thread Felix Yan
Date: Thursday, July 14, 2016 @ 06:51:38
  Author: felixonmars
Revision: 182863

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  128 ++---
 1 file changed, 64 insertions(+), 64 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-14 06:51:13 UTC (rev 182862)
+++ PKGBUILD2016-07-14 06:51:38 UTC (rev 182863)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-oslotest
-pkgname=(python-oslotest python2-oslotest)
-pkgver=2.6.0
-pkgrel=1
-pkgdesc="Oslo test framework"
-arch=('any')
-url="https://github.com/openstack/oslotest;
-license=('Apache')
-makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr'
- 'python-fixtures' 'python2-fixtures' 'python-subunit' 
'python2-subunit'
- 'python-testrepository' 'python2-testrepository' 
'python-testscenarios'
- 'python2-testscenarios' 'python-testtools' 'python2-testtools'
- 'python-mock' 'python2-mock' 'python-mox3' 'python2-mox3'
- 'python-os-client-config' 'python2-os-client-config' 
'python-debtcollector'
- 'python2-debtcollector')
-source=("git+https://github.com/openstack/oslotest.git#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a oslotest{,-py2}
-}
-
-build() {
-  cd "$srcdir"/oslotest
-  python setup.py build
-
-  cd "$srcdir"/oslotest-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/oslotest
-  python setup.py testr
-
-  cd "$srcdir"/oslotest-py2
-  PYTHON=python2 python2 setup.py testr
-}
-
-package_python-oslotest() {
-  depends=('python-fixtures' 'python-subunit' 'python-testrepository' 
'python-testscenarios'
-   'python-testtools' 'python-mock' 'python-mox3' 
'python-os-client-config'
-   'python-debtcollector')
-
-  cd "$srcdir"/oslotest
-  python setup.py install --root="$pkgdir/" --optimize=1
-}
-
-package_python2-oslotest() {
-  depends=('python2-fixtures' 'python2-subunit' 'python2-testrepository' 
'python2-testscenarios'
-   'python2-testtools' 'python2-mock' 'python2-mox3' 
'python2-os-client-config'
-   'python2-debtcollector')
-
-  cd "$srcdir"/oslotest-py2
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-
-  for _exe in "$pkgdir"/usr/bin/*; do
-mv "$_exe"{,2}
-  done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-oslotest/repos/community-any/PKGBUILD (from rev 182862, 
python-oslotest/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-07-14 06:51:38 UTC (rev 182863)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-oslotest
+pkgname=(python-oslotest python2-oslotest)
+pkgver=2.7.0
+pkgrel=1
+pkgdesc="Oslo test framework"
+arch=('any')
+url="https://github.com/openstack/oslotest;
+license=('Apache')
+makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr'
+ 'python-fixtures' 'python2-fixtures' 'python-subunit' 
'python2-subunit'
+ 'python-testrepository' 'python2-testrepository' 
'python-testscenarios'
+ 'python2-testscenarios' 'python-testtools' 'python2-testtools'
+ 'python-mock' 'python2-mock' 'python-mox3' 'python2-mox3'
+ 'python-os-client-config' 'python2-os-client-config' 
'python-debtcollector'
+ 'python2-debtcollector')
+source=("git+https://github.com/openstack/oslotest.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a oslotest{,-py2}
+}
+
+build() {
+  cd "$srcdir"/oslotest
+  python setup.py build
+
+  cd "$srcdir"/oslotest-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/oslotest
+  python setup.py testr
+
+  cd "$srcdir"/oslotest-py2
+  PYTHON=python2 python2 setup.py testr
+}
+
+package_python-oslotest() {
+  depends=('python-fixtures' 'python-subunit' 'python-testrepository' 
'python-testscenarios'
+   'python-testtools' 'python-mock' 'python-mox3' 
'python-os-client-config'
+   'python-debtcollector')
+
+  cd "$srcdir"/oslotest
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-oslotest() {
+  depends=('python2-fixtures' 'python2-subunit' 'python2-testrepository' 
'python2-testscenarios'
+   'python2-testtools' 'python2-mock' 'python2-mox3' 
'python2-os-client-config'
+   'python2-debtcollector')
+
+  cd "$srcdir"/oslotest-py2
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+
+  for _exe in "$pkgdir"/usr/bin/*; do
+mv "$_exe"{,2}
+  done
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-07-14 Thread Felix Yan
Date: Thursday, July 14, 2016 @ 06:51:13
  Author: felixonmars
Revision: 182862

upgpkg: python-oslotest 2.7.0-1

Modified:
  python-oslotest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 06:48:59 UTC (rev 182861)
+++ PKGBUILD2016-07-14 06:51:13 UTC (rev 182862)
@@ -3,7 +3,7 @@
 
 pkgbase=python-oslotest
 pkgname=(python-oslotest python2-oslotest)
-pkgver=2.6.0
+pkgver=2.7.0
 pkgrel=1
 pkgdesc="Oslo test framework"
 arch=('any')


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

2016-07-14 Thread Felix Yan
Date: Thursday, July 14, 2016 @ 06:48:59
  Author: felixonmars
Revision: 182861

archrelease: copy trunk to community-any

Added:
  python-oslo-serialization/repos/community-any/PKGBUILD
(from rev 182860, python-oslo-serialization/trunk/PKGBUILD)
Deleted:
  python-oslo-serialization/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-14 06:48:44 UTC (rev 182860)
+++ PKGBUILD2016-07-14 06:48:59 UTC (rev 182861)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-oslo-serialization
-pkgname=(python-oslo-serialization python2-oslo-serialization)
-pkgver=2.10.0
-pkgrel=1
-pkgdesc="Oslo Serialization library"
-arch=('any')
-url="http://docs.openstack.org/developer/oslo.serialization;
-license=('Apache')
-makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr'
- 'python-babel' 'python2-babel' 'python-msgpack' 'python2-msgpack'
- 'python-oslo-utils' 'python2-oslo-utils' 'python-pytz' 
'python2-pytz')
-checkdepends=('python-oslotest' 'python2-oslotest' 'python2-ipaddress')
-source=("git+https://git.openstack.org/openstack/oslo.serialization#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a oslo.serialization{,-py2}
-}
-
-build() {
-  cd "$srcdir"/oslo.serialization
-  python setup.py build
-
-  cd "$srcdir"/oslo.serialization-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/oslo.serialization
-  python setup.py testr
-
-  cd "$srcdir"/oslo.serialization-py2
-  PYTHON=python2 python2 setup.py testr
-}
-
-package_python-oslo-serialization() {
-  depends=('python-six' 'python-pbr' 'python-babel' 'python-msgpack' 
'python-oslo-utils'
-   'python-pytz')
-
-  cd "$srcdir"/oslo.serialization
-  python setup.py install --root="$pkgdir/" --optimize=1
-}
-
-package_python2-oslo-serialization() {
-  depends=('python2-six' 'python2-pbr' 'python2-babel' 'python2-msgpack' 
'python2-oslo-utils'
-   'python2-pytz')
-
-  cd "$srcdir"/oslo.serialization-py2
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-oslo-serialization/repos/community-any/PKGBUILD (from rev 
182860, python-oslo-serialization/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-07-14 06:48:59 UTC (rev 182861)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-oslo-serialization
+pkgname=(python-oslo-serialization python2-oslo-serialization)
+pkgver=2.11.0
+pkgrel=1
+pkgdesc="Oslo Serialization library"
+arch=('any')
+url="http://docs.openstack.org/developer/oslo.serialization;
+license=('Apache')
+makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr'
+ 'python-babel' 'python2-babel' 'python-msgpack' 'python2-msgpack'
+ 'python-oslo-utils' 'python2-oslo-utils' 'python-pytz' 
'python2-pytz')
+checkdepends=('python-oslotest' 'python2-oslotest' 'python2-ipaddress')
+source=("git+https://git.openstack.org/openstack/oslo.serialization#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a oslo.serialization{,-py2}
+}
+
+build() {
+  cd "$srcdir"/oslo.serialization
+  python setup.py build
+
+  cd "$srcdir"/oslo.serialization-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/oslo.serialization
+  python setup.py testr
+
+  cd "$srcdir"/oslo.serialization-py2
+  PYTHON=python2 python2 setup.py testr
+}
+
+package_python-oslo-serialization() {
+  depends=('python-six' 'python-pbr' 'python-babel' 'python-msgpack' 
'python-oslo-utils'
+   'python-pytz')
+
+  cd "$srcdir"/oslo.serialization
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-oslo-serialization() {
+  depends=('python2-six' 'python2-pbr' 'python2-babel' 'python2-msgpack' 
'python2-oslo-utils'
+   'python2-pytz')
+
+  cd "$srcdir"/oslo.serialization-py2
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-07-14 Thread Felix Yan
Date: Thursday, July 14, 2016 @ 06:48:44
  Author: felixonmars
Revision: 182860

upgpkg: python-oslo-serialization 2.11.0-1

Modified:
  python-oslo-serialization/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-14 06:46:03 UTC (rev 182859)
+++ PKGBUILD2016-07-14 06:48:44 UTC (rev 182860)
@@ -3,7 +3,7 @@
 
 pkgbase=python-oslo-serialization
 pkgname=(python-oslo-serialization python2-oslo-serialization)
-pkgver=2.10.0
+pkgver=2.11.0
 pkgrel=1
 pkgdesc="Oslo Serialization library"
 arch=('any')


  1   2   >