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

2016-05-15 Thread Felix Yan
Date: Monday, May 16, 2016 @ 07:54:23
  Author: fyan
Revision: 175444

archrelease: copy trunk to community-any

Added:
  python-doublex/repos/community-any/
  python-doublex/repos/community-any/PKGBUILD
(from rev 175443, python-doublex/trunk/PKGBUILD)

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

Copied: python-doublex/repos/community-any/PKGBUILD (from rev 175443, 
python-doublex/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-05-16 05:54:23 UTC (rev 175444)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-doublex
+pkgname=('python-doublex' 'python2-doublex')
+pkgver=1.8.2
+pkgrel=1
+pkgdesc="Powerful test doubles framework for Python"
+arch=('any')
+license=('GPL')
+url="https://github.com/davidvilla/python-doublex;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-pyhamcrest' 
'python2-pyhamcrest' 'git')
+checkdepends=('python-nose' 'python2-nose')
+source=("git+https://github.com/davidvilla/python-doublex.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a python-doublex{,-py2}
+}
+
+build() {
+  cd "$srcdir"/python-doublex
+  python setup.py build
+
+  cd "$srcdir"/python-doublex-py2
+  python2 setup.py build
+}
+
+check() {
+  # https://github.com/davidvilla/python-doublex/issues/3
+
+  cd "$srcdir"/python-doublex
+  python setup.py test || warning "Tests failed"
+
+  cd "$srcdir"/python-doublex-py2
+  python2 setup.py test || warning "Tests failed"
+}
+
+package_python-doublex() {
+  depends=('python-pyhamcrest')
+
+  cd python-doublex
+  python setup.py install --root="$pkgdir" --optimize=1
+  rm "$pkgdir"/usr/README.rst
+}
+
+package_python2-doublex() {
+  depends=('python2-pyhamcrest')
+
+  cd python-doublex-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  rm "$pkgdir"/usr/README.rst
+}


[arch-commits] Commit in (4 files)

2016-05-15 Thread Felix Yan
Date: Monday, May 16, 2016 @ 07:54:00
  Author: fyan
Revision: 175443

addpkg: python-doublex 1.8.2-1

Added:
  python-doublex/
  python-doublex/repos/
  python-doublex/trunk/
  python-doublex/trunk/PKGBUILD

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

Added: python-doublex/trunk/PKGBUILD
===
--- python-doublex/trunk/PKGBUILD   (rev 0)
+++ python-doublex/trunk/PKGBUILD   2016-05-16 05:54:00 UTC (rev 175443)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-doublex
+pkgname=('python-doublex' 'python2-doublex')
+pkgver=1.8.2
+pkgrel=1
+pkgdesc="Powerful test doubles framework for Python"
+arch=('any')
+license=('GPL')
+url="https://github.com/davidvilla/python-doublex;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-pyhamcrest' 
'python2-pyhamcrest' 'git')
+checkdepends=('python-nose' 'python2-nose')
+source=("git+https://github.com/davidvilla/python-doublex.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a python-doublex{,-py2}
+}
+
+build() {
+  cd "$srcdir"/python-doublex
+  python setup.py build
+
+  cd "$srcdir"/python-doublex-py2
+  python2 setup.py build
+}
+
+check() {
+  # https://github.com/davidvilla/python-doublex/issues/3
+
+  cd "$srcdir"/python-doublex
+  python setup.py test || warning "Tests failed"
+
+  cd "$srcdir"/python-doublex-py2
+  python2 setup.py test || warning "Tests failed"
+}
+
+package_python-doublex() {
+  depends=('python-pyhamcrest')
+
+  cd python-doublex
+  python setup.py install --root="$pkgdir" --optimize=1
+  rm "$pkgdir"/usr/README.rst
+}
+
+package_python2-doublex() {
+  depends=('python2-pyhamcrest')
+
+  cd python-doublex-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  rm "$pkgdir"/usr/README.rst
+}


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


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

2016-05-15 Thread Felix Yan
Date: Monday, May 16, 2016 @ 07:19:05
  Author: fyan
Revision: 175442

archrelease: copy trunk to community-any

Added:
  python-pyhamcrest/repos/community-any/
  python-pyhamcrest/repos/community-any/PKGBUILD
(from rev 175441, python-pyhamcrest/trunk/PKGBUILD)

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

Copied: python-pyhamcrest/repos/community-any/PKGBUILD (from rev 175441, 
python-pyhamcrest/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-05-16 05:19:05 UTC (rev 175442)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-pyhamcrest
+pkgname=('python-pyhamcrest' 'python2-pyhamcrest')
+pkgver=1.9.0
+pkgrel=1
+pkgdesc="Hamcrest framework for matcher objects"
+arch=('any')
+license=('BSD')
+url="https://github.com/hamcrest/PyHamcrest;
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-cov'
+  'python2-pytest-cov' 'python-mock' 'python2-mock')
+source=("https://pypi.io/packages/source/P/PyHamcrest/PyHamcrest-$pkgver.tar.gz;)
+sha512sums=('3b8393d0079b619b208ec7f06ed5133c4ff9d9dba050f818adf56347fc2225fd1c85d60f3dc262b7b9722061f0b8e4966180b6b96245a371e578d0d51633b4b0')
+
+prepare() {
+  cp -a PyHamcrest-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/PyHamcrest-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/PyHamcrest-$pkgver-py2
+  python2 setup.py build
+}
+
+# Tests not included in release tarball
+check_disabled() {
+  cd "$srcdir"/PyHamcrest-$pkgver
+  python setup.py ptr
+
+  cd "$srcdir"/PyHamcrest-$pkgver-py2
+  python2 setup.py ptr
+}
+
+package_python-pyhamcrest() {
+  depends=('python-six')
+
+  cd PyHamcrest-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+package_python2-pyhamcrest() {
+  depends=('python2-six')
+
+  cd PyHamcrest-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}


[arch-commits] Commit in (4 files)

2016-05-15 Thread Felix Yan
Date: Monday, May 16, 2016 @ 07:18:50
  Author: fyan
Revision: 175441

addpkg: python-pyhamcrest 1.9.0-1

Added:
  python-pyhamcrest/
  python-pyhamcrest/repos/
  python-pyhamcrest/trunk/
  python-pyhamcrest/trunk/PKGBUILD

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

Added: python-pyhamcrest/trunk/PKGBUILD
===
--- python-pyhamcrest/trunk/PKGBUILD(rev 0)
+++ python-pyhamcrest/trunk/PKGBUILD2016-05-16 05:18:50 UTC (rev 175441)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-pyhamcrest
+pkgname=('python-pyhamcrest' 'python2-pyhamcrest')
+pkgver=1.9.0
+pkgrel=1
+pkgdesc="Hamcrest framework for matcher objects"
+arch=('any')
+license=('BSD')
+url="https://github.com/hamcrest/PyHamcrest;
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-cov'
+  'python2-pytest-cov' 'python-mock' 'python2-mock')
+source=("https://pypi.io/packages/source/P/PyHamcrest/PyHamcrest-$pkgver.tar.gz;)
+sha512sums=('3b8393d0079b619b208ec7f06ed5133c4ff9d9dba050f818adf56347fc2225fd1c85d60f3dc262b7b9722061f0b8e4966180b6b96245a371e578d0d51633b4b0')
+
+prepare() {
+  cp -a PyHamcrest-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/PyHamcrest-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/PyHamcrest-$pkgver-py2
+  python2 setup.py build
+}
+
+# Tests not included in release tarball
+check_disabled() {
+  cd "$srcdir"/PyHamcrest-$pkgver
+  python setup.py ptr
+
+  cd "$srcdir"/PyHamcrest-$pkgver-py2
+  python2 setup.py ptr
+}
+
+package_python-pyhamcrest() {
+  depends=('python-six')
+
+  cd PyHamcrest-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+package_python2-pyhamcrest() {
+  depends=('python2-six')
+
+  cd PyHamcrest-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}


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


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

2016-05-15 Thread Felix Yan
Date: Monday, May 16, 2016 @ 05:35:36
  Author: fyan
Revision: 175440

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-16 03:35:22 UTC (rev 175439)
+++ PKGBUILD2016-05-16 03:35:36 UTC (rev 175440)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-
-pkgbase=python-clint
-pkgname=(python-clint python2-clint)
-pkgver=0.5.1
-pkgrel=2
-pkgdesc='Module for developing commandline applications'
-arch=('any')
-url='http://pypi.python.org/pypi/clint/'
-license=('custom:ISC')
-makedepends=('python' 'python2')
-source=("http://pypi.python.org/packages/source/c/clint/clint-$pkgver.tar.gz;)
-sha256sums=('05224c32b1075563d0b16d0015faaf9da43aa214e4a2140e51f08789e7a4c5aa')
-
-prepare() {
-  cp -a clint-$pkgver{,-py2}
-}
-
-package_python-clint() {
-  depends=('python')
-
-  cd "clint-$pkgver"
-
-  python setup.py install \
---install-data="/usr/share/doc/$pkgname" --root="$pkgdir"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-clint() {
-  depends=('python2')
-
-  cd "clint-$pkgver-py2"
-
-  python setup.py install \
---install-data="/usr/share/doc/$pkgname" --root="$pkgdir"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-clint/repos/community-any/PKGBUILD (from rev 175439, 
python-clint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-16 03:35:36 UTC (rev 175440)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+
+pkgbase=python-clint
+pkgname=(python-clint python2-clint)
+pkgver=0.5.1
+pkgrel=3
+pkgdesc='Module for developing commandline applications'
+arch=('any')
+url='http://pypi.python.org/pypi/clint/'
+license=('custom:ISC')
+makedepends=('python' 'python2')
+source=("http://pypi.python.org/packages/source/c/clint/clint-$pkgver.tar.gz;)
+sha256sums=('05224c32b1075563d0b16d0015faaf9da43aa214e4a2140e51f08789e7a4c5aa')
+
+prepare() {
+  cp -a clint-$pkgver{,-py2}
+}
+
+package_python-clint() {
+  depends=('python')
+
+  cd "clint-$pkgver"
+
+  python setup.py install \
+--install-data="/usr/share/doc/$pkgname" --root="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-clint() {
+  depends=('python2')
+
+  cd "clint-$pkgver-py2"
+
+  python2 setup.py install \
+--install-data="/usr/share/doc/$pkgname" --root="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-05-15 Thread Felix Yan
Date: Monday, May 16, 2016 @ 05:35:22
  Author: fyan
Revision: 175439

upgpkg: python-clint 0.5.1-3

fix the python2 package (i should be more careful!)

Modified:
  python-clint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-16 03:31:27 UTC (rev 175438)
+++ PKGBUILD2016-05-16 03:35:22 UTC (rev 175439)
@@ -4,7 +4,7 @@
 pkgbase=python-clint
 pkgname=(python-clint python2-clint)
 pkgver=0.5.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Module for developing commandline applications'
 arch=('any')
 url='http://pypi.python.org/pypi/clint/'
@@ -32,7 +32,7 @@
 
   cd "clint-$pkgver-py2"
 
-  python setup.py install \
+  python2 setup.py install \
 --install-data="/usr/share/doc/$pkgname" --root="$pkgdir"
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }


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

2016-05-15 Thread Felix Yan
Date: Monday, May 16, 2016 @ 05:31:12
  Author: fyan
Revision: 175437

upgpkg: python-clint 0.5.1-2

enable python2 counterpart

Modified:
  python-clint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-16 02:17:23 UTC (rev 175436)
+++ PKGBUILD2016-05-16 03:31:12 UTC (rev 175437)
@@ -1,18 +1,25 @@
 # $Id$
 # Maintainer: Alexander F Rødseth 
 
-pkgname=python-clint
+pkgbase=python-clint
+pkgname=(python-clint python2-clint)
 pkgver=0.5.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Module for developing commandline applications'
 arch=('any')
 url='http://pypi.python.org/pypi/clint/'
 license=('custom:ISC')
-depends=('python')
+makedepends=('python' 'python2')
 source=("http://pypi.python.org/packages/source/c/clint/clint-$pkgver.tar.gz;)
 sha256sums=('05224c32b1075563d0b16d0015faaf9da43aa214e4a2140e51f08789e7a4c5aa')
 
-package() {
+prepare() {
+  cp -a clint-$pkgver{,-py2}
+}
+
+package_python-clint() {
+  depends=('python')
+
   cd "clint-$pkgver"
 
   python setup.py install \
@@ -20,4 +27,14 @@
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }
 
+package_python2-clint() {
+  depends=('python2')
+
+  cd "clint-$pkgver-py2"
+
+  python setup.py install \
+--install-data="/usr/share/doc/$pkgname" --root="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
 # vim:set ts=2 sw=2 et:


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

2016-05-15 Thread Felix Yan
Date: Monday, May 16, 2016 @ 05:31:27
  Author: fyan
Revision: 175438

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-16 03:31:12 UTC (rev 175437)
+++ PKGBUILD2016-05-16 03:31:27 UTC (rev 175438)
@@ -1,23 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-
-pkgname=python-clint
-pkgver=0.5.1
-pkgrel=1
-pkgdesc='Module for developing commandline applications'
-arch=('any')
-url='http://pypi.python.org/pypi/clint/'
-license=('custom:ISC')
-depends=('python')
-source=("http://pypi.python.org/packages/source/c/clint/clint-$pkgver.tar.gz;)
-sha256sums=('05224c32b1075563d0b16d0015faaf9da43aa214e4a2140e51f08789e7a4c5aa')
-
-package() {
-  cd "clint-$pkgver"
-
-  python setup.py install \
---install-data="/usr/share/doc/$pkgname" --root="$pkgdir"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-clint/repos/community-any/PKGBUILD (from rev 175437, 
python-clint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-16 03:31:27 UTC (rev 175438)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+
+pkgbase=python-clint
+pkgname=(python-clint python2-clint)
+pkgver=0.5.1
+pkgrel=2
+pkgdesc='Module for developing commandline applications'
+arch=('any')
+url='http://pypi.python.org/pypi/clint/'
+license=('custom:ISC')
+makedepends=('python' 'python2')
+source=("http://pypi.python.org/packages/source/c/clint/clint-$pkgver.tar.gz;)
+sha256sums=('05224c32b1075563d0b16d0015faaf9da43aa214e4a2140e51f08789e7a4c5aa')
+
+prepare() {
+  cp -a clint-$pkgver{,-py2}
+}
+
+package_python-clint() {
+  depends=('python')
+
+  cd "clint-$pkgver"
+
+  python setup.py install \
+--install-data="/usr/share/doc/$pkgname" --root="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-clint() {
+  depends=('python2')
+
+  cd "clint-$pkgver-py2"
+
+  python setup.py install \
+--install-data="/usr/share/doc/$pkgname" --root="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-05-15 Thread Pierre Neidhardt
Date: Monday, May 16, 2016 @ 04:17:23
  Author: ambrevar
Revision: 175436

archrelease: copy trunk to community-any

Added:
  udiskie/repos/community-any/PKGBUILD
(from rev 175435, udiskie/trunk/PKGBUILD)
Deleted:
  udiskie/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-16 02:16:19 UTC (rev 175435)
+++ PKGBUILD2016-05-16 02:17:23 UTC (rev 175436)
@@ -1,29 +0,0 @@
-# $Id: PKGBUILD 73684 2012-07-14 05:00:28Z dwallace $
-# Maintainer: Pierre Neidhardt 
-# Contributor: Daniel Wallace 
-# Contributor: Byron Clark 
-
-pkgname=udiskie
-pkgver=1.4.10
-pkgrel=1
-pkgdesc="Removable disk automounter using udisks"
-arch=("any")
-url="https://pypi.python.org/pypi/udiskie;
-license=("MIT")
-depends=("udisks2" "python-gobject" "python-setuptools" "python-yaml" 
"python-docopt" "gettext" "libnotify" "hicolor-icon-theme")
-makedepends=("asciidoc")
-optdepends=("udisks: optional for use with old backend")
-options=(!emptydirs)
-source=("$pkgname-$pkgver.tar.gz::https://codeload.github.com/coldfix/$pkgname/tar.gz/$pkgver;)
-md5sums=('b032523110e01469cf2920f1483e76a5')
-
-package() {
-   cd "$srcdir/$pkgname-$pkgver"
-   export LC_ALL=en_US.utf8
-
-   python setup.py install --root="$pkgdir" --optimize=1
-
-   make -C doc
-   install -m 0644 -D "doc/$pkgname.8" 
"$pkgdir/usr/share/man/man8/$pkgname.8"
-   install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: udiskie/repos/community-any/PKGBUILD (from rev 175435, 
udiskie/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-16 02:17:23 UTC (rev 175436)
@@ -0,0 +1,29 @@
+# $Id: PKGBUILD 73684 2012-07-14 05:00:28Z dwallace $
+# Maintainer: Pierre Neidhardt 
+# Contributor: Daniel Wallace 
+# Contributor: Byron Clark 
+
+pkgname=udiskie
+pkgver=1.4.11
+pkgrel=1
+pkgdesc="Removable disk automounter using udisks"
+arch=("any")
+url="https://pypi.python.org/pypi/udiskie;
+license=("MIT")
+depends=("udisks2" "python-gobject" "python-setuptools" "python-yaml" 
"python-docopt" "gettext" "libnotify" "hicolor-icon-theme")
+makedepends=("asciidoc")
+optdepends=("udisks: optional for use with old backend")
+options=(!emptydirs)
+source=("$pkgname-$pkgver.tar.gz::https://codeload.github.com/coldfix/$pkgname/tar.gz/$pkgver;)
+md5sums=('1ca6995fa41c559b54c7e2c127317f92')
+
+package() {
+   cd "$srcdir/$pkgname-$pkgver"
+   export LC_ALL=en_US.utf8
+
+   python setup.py install --root="$pkgdir" --optimize=1
+
+   make -C doc
+   install -m 0644 -D "doc/$pkgname.8" 
"$pkgdir/usr/share/man/man8/$pkgname.8"
+   install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2016-05-15 Thread Pierre Neidhardt
Date: Monday, May 16, 2016 @ 04:16:19
  Author: ambrevar
Revision: 175435

upgpkg: udiskie 1.4.11-1

Modified:
  udiskie/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-15 23:01:16 UTC (rev 175434)
+++ PKGBUILD2016-05-16 02:16:19 UTC (rev 175435)
@@ -4,7 +4,7 @@
 # Contributor: Byron Clark 
 
 pkgname=udiskie
-pkgver=1.4.10
+pkgver=1.4.11
 pkgrel=1
 pkgdesc="Removable disk automounter using udisks"
 arch=("any")
@@ -15,7 +15,7 @@
 optdepends=("udisks: optional for use with old backend")
 options=(!emptydirs)
 
source=("$pkgname-$pkgver.tar.gz::https://codeload.github.com/coldfix/$pkgname/tar.gz/$pkgver;)
-md5sums=('b032523110e01469cf2920f1483e76a5')
+md5sums=('1ca6995fa41c559b54c7e2c127317f92')
 
 package() {
cd "$srcdir/$pkgname-$pkgver"


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

2016-05-15 Thread Alexander Rødseth
Date: Monday, May 16, 2016 @ 01:01:16
  Author: arodseth
Revision: 175434

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

Added:
  giggle/repos/community-i686/PKGBUILD
(from rev 175433, giggle/trunk/PKGBUILD)
  giggle/repos/community-i686/gtksourceview3.7.patch
(from rev 175433, giggle/trunk/gtksourceview3.7.patch)
  giggle/repos/community-i686/vte2.91.patch
(from rev 175433, giggle/trunk/vte2.91.patch)
  giggle/repos/community-x86_64/PKGBUILD
(from rev 175433, giggle/trunk/PKGBUILD)
  giggle/repos/community-x86_64/gtksourceview3.7.patch
(from rev 175433, giggle/trunk/gtksourceview3.7.patch)
  giggle/repos/community-x86_64/vte2.91.patch
(from rev 175433, giggle/trunk/vte2.91.patch)
Deleted:
  giggle/repos/community-i686/PKGBUILD
  giggle/repos/community-i686/giggle.install
  giggle/repos/community-i686/gtksourceview3.7.patch
  giggle/repos/community-i686/vte2.91.patch
  giggle/repos/community-x86_64/PKGBUILD
  giggle/repos/community-x86_64/giggle.install
  giggle/repos/community-x86_64/gtksourceview3.7.patch
  giggle/repos/community-x86_64/vte2.91.patch

-+
 /PKGBUILD   |   92 +++
 /gtksourceview3.7.patch |   72 +
 /vte2.91.patch  |  100 ++
 community-i686/PKGBUILD |   47 --
 community-i686/giggle.install   |   13 ---
 community-i686/gtksourceview3.7.patch   |   36 --
 community-i686/vte2.91.patch|   50 ---
 community-x86_64/PKGBUILD   |   47 --
 community-x86_64/giggle.install |   13 ---
 community-x86_64/gtksourceview3.7.patch |   36 --
 community-x86_64/vte2.91.patch  |   50 ---
 11 files changed, 264 insertions(+), 292 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-05-15 23:01:02 UTC (rev 175433)
+++ community-i686/PKGBUILD 2016-05-15 23:01:16 UTC (rev 175434)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Ionut Biru 
-# Contributor: neodreams 
-
-pkgname=giggle
-pkgver=0.7
-pkgrel=4
-pkgdesc='Git repository viewer'
-arch=('x86_64' 'i686')
-url='https://wiki.gnome.org/Apps/giggle'
-license=('GPL')
-depends=('git' 'gtksourceview3' 'vte3' 'desktop-file-utils' 
'hicolor-icon-theme')
-makedepends=('intltool' 'itstool' 'gnome-common' 'yelp-tools')
-install=giggle.install
-source=("http://ftp.gnome.org/pub/GNOME/sources/giggle/$pkgver/$pkgname-$pkgver.tar.xz;
-'gtksourceview3.7.patch'
-'vte2.91.patch')
-sha256sums=('ae2e2237fa0d0999d99d0a0ee9b7ec147e80bd2472d59a045b2b01eb02261f59'
-'ca0b841d11bb5072741784dbeb72705eddf8e2bde780b8712355d5b66e456b37'
-'2eba9ff9b11ac8ae2d1f3d104a61026b0b04e745f810f719c8f4657f8c23ce02')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  patch -Np1 -i ../gtksourceview3.7.patch
-  patch -Np1 -i ../vte2.91.patch
-  NOCONFIGURE=1 AUTOPOINT=intltoolize gnome-autogen.sh
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" check
-}
-
-package() {
-  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
-}
-
-# getver: -u 7 git.gnome.org/browse/giggle/plain/NEWS
-# vim:set ts=2 sw=2 et:

Copied: giggle/repos/community-i686/PKGBUILD (from rev 175433, 
giggle/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-05-15 23:01:16 UTC (rev 175434)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Ionut Biru 
+# Contributor: neodreams 
+
+pkgname=giggle
+pkgver=0.7
+pkgrel=5
+pkgdesc='Git repository viewer'
+arch=('x86_64' 'i686')
+url='https://wiki.gnome.org/Apps/giggle'
+license=('GPL')
+depends=('git' 'gtksourceview3' 'vte3')
+makedepends=('intltool' 'itstool' 'gnome-common' 'yelp-tools')
+source=("http://ftp.gnome.org/pub/GNOME/sources/giggle/$pkgver/$pkgname-$pkgver.tar.xz;
+'gtksourceview3.7.patch'
+'vte2.91.patch')
+sha256sums=('ae2e2237fa0d0999d99d0a0ee9b7ec147e80bd2472d59a045b2b01eb02261f59'
+'ca0b841d11bb5072741784dbeb72705eddf8e2bde780b8712355d5b66e456b37'
+'2eba9ff9b11ac8ae2d1f3d104a61026b0b04e745f810f719c8f4657f8c23ce02')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  patch -Np1 -i ../gtksourceview3.7.patch
+  patch -Np1 -i ../vte2.91.patch
+  NOCONFIGURE=1 AUTOPOINT=intltoolize gnome-autogen.sh
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" check
+}
+
+package() 

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

2016-05-15 Thread Alexander Rødseth
Date: Monday, May 16, 2016 @ 01:01:02
  Author: arodseth
Revision: 175433

upgpkg: giggle 0.7-5

Modified:
  giggle/trunk/PKGBUILD
Deleted:
  giggle/trunk/giggle.install

+
 PKGBUILD   |5 ++---
 giggle.install |   13 -
 2 files changed, 2 insertions(+), 16 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-15 22:16:24 UTC (rev 175432)
+++ PKGBUILD2016-05-15 23:01:02 UTC (rev 175433)
@@ -5,14 +5,13 @@
 
 pkgname=giggle
 pkgver=0.7
-pkgrel=4
+pkgrel=5
 pkgdesc='Git repository viewer'
 arch=('x86_64' 'i686')
 url='https://wiki.gnome.org/Apps/giggle'
 license=('GPL')
-depends=('git' 'gtksourceview3' 'vte3' 'desktop-file-utils' 
'hicolor-icon-theme')
+depends=('git' 'gtksourceview3' 'vte3')
 makedepends=('intltool' 'itstool' 'gnome-common' 'yelp-tools')
-install=giggle.install
 
source=("http://ftp.gnome.org/pub/GNOME/sources/giggle/$pkgver/$pkgname-$pkgver.tar.xz;
 'gtksourceview3.7.patch'
 'vte2.91.patch')

Deleted: giggle.install
===
--- giggle.install  2016-05-15 22:16:24 UTC (rev 175432)
+++ giggle.install  2016-05-15 23:01:02 UTC (rev 175433)
@@ -1,13 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -f -t -q /usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
-


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

2016-05-15 Thread Gaetan Bisson
Date: Monday, May 16, 2016 @ 00:26:13
  Author: bisson
Revision: 268074

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

Added:
  postfix/repos/extra-i686/PKGBUILD
(from rev 268073, postfix/trunk/PKGBUILD)
  postfix/repos/extra-i686/aliases.patch
(from rev 268073, postfix/trunk/aliases.patch)
  postfix/repos/extra-i686/install
(from rev 268073, postfix/trunk/install)
  postfix/repos/extra-i686/service
(from rev 268073, postfix/trunk/service)
  postfix/repos/extra-x86_64/PKGBUILD
(from rev 268073, postfix/trunk/PKGBUILD)
  postfix/repos/extra-x86_64/aliases.patch
(from rev 268073, postfix/trunk/aliases.patch)
  postfix/repos/extra-x86_64/install
(from rev 268073, postfix/trunk/install)
  postfix/repos/extra-x86_64/service
(from rev 268073, postfix/trunk/service)
Deleted:
  postfix/repos/extra-i686/PKGBUILD
  postfix/repos/extra-i686/aliases.patch
  postfix/repos/extra-i686/install
  postfix/repos/extra-i686/service
  postfix/repos/extra-x86_64/PKGBUILD
  postfix/repos/extra-x86_64/aliases.patch
  postfix/repos/extra-x86_64/install
  postfix/repos/extra-x86_64/service

+
 /PKGBUILD  |  202 +++
 /aliases.patch |   36 +++
 /install   |   46 +
 /service   |   28 +
 extra-i686/PKGBUILD|  101 -
 extra-i686/aliases.patch   |   18 ---
 extra-i686/install |   23 
 extra-i686/service |   14 --
 extra-x86_64/PKGBUILD  |  101 -
 extra-x86_64/aliases.patch |   18 ---
 extra-x86_64/install   |   23 
 extra-x86_64/service   |   14 --
 12 files changed, 312 insertions(+), 312 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-05-15 22:25:11 UTC (rev 268073)
+++ extra-i686/PKGBUILD 2016-05-15 22:26:13 UTC (rev 268074)
@@ -1,101 +0,0 @@
-# $Id$
-# Contributor: Jeff Brodnax 
-# Contributor: Paul Mattal 
-# Maintainer: Gaetan Bisson 
-
-pkgname=postfix
-pkgver=3.1.0
-pkgrel=4
-url='http://www.postfix.org/'
-pkgdesc='Fast, easy to administer, secure mail server'
-license=('custom')
-arch=('i686' 'x86_64')
-depends=('openssl' 'pcre' 'icu' 'libsasl' 'libldap' 'db'
- 'libmariadbclient' 'postgresql-libs' 'sqlite' 'tinycdb')
-source=("ftp://ftp.porcupine.org/mirrors/postfix-release/official/${pkgname}-${pkgver}.tar.gz;
-'aliases.patch'
-'service')
-sha1sums=('a79409958c0327dc605473d2522483219464cbd2'
-  '5fc3de6c7df1e5851a0a379e825148868808318b'
-  'dd12885d367bebaf0fc9d2e9823a7f82086b6ee9')
-
-backup=('etc/postfix/'{access,aliases,canonical,generic,header_checks,main.cf,master.cf,relocated,transport,virtual})
-
-conflicts=('smtp-server' 'smtp-forwarder' 'postfix-tools')
-provides=('smtp-server' 'smtp-forwarder' 'postfix-tools')
-replaces=('postfix-tools')
-
-install=install
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   CCARGS='
--DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I/usr/include/sasl
--DHAS_LDAP
--DUSE_TLS
--DHAS_MYSQL -I/usr/include/mysql
--DHAS_PGSQL -I/usr/include/postgresql
--DHAS_SQLITE
--DHAS_CDB
--DDEF_COMMAND_DIR=\"/usr/bin\"
--DDEF_DAEMON_DIR=\"/usr/lib/postfix/bin\"
--DDEF_SENDMAIL_PATH=\"/usr/bin/sendmail\"
--DDEF_README_DIR=\"/usr/share/doc/postfix\"
--DDEF_MANPAGE_DIR=\"/usr/share/man\"
-'
-   AUXLIBS='
--lsasl2
--lldap -llber
--lssl -lcrypto
--lmysqlclient -lz -lm
--lpq
--lsqlite3 -lpthread
--lcdb
-'
-   make makefiles \
-   DEBUG='' \
-   pie=yes \
-   shared=yes \
-   CCARGS="${CCARGS//$'\n'/}" \
-   AUXLIBS="${AUXLIBS//$'\n'/}" \
-   OPT="${CFLAGS} ${LDFLAGS}" \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/postfix-${pkgver}"
-
-   sed 's:bin/postconf -dhx:bin/postconf -c conf -dhx:g' -i postfix-install
-   LD_LIBRARY_PATH=lib:$LD_LIBRARY_PATH \
-   sh postfix-install -non-interactive install_root="${pkgdir}"
-
-   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-   install -Dm644 ../service 
"${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
-
-   for name in posttls-finger {smtp,qmqp}-{sink,source}; do
-   install -Dm644 "man/man1/${name}.1" 
"${pkgdir}/usr/share/man/man1/${name}.1"
-   install -Dm755 "bin/${name}" "${pkgdir}/usr/bin/${name}"
-   done
-
-   # now set permissions right to appease the pacman gods
-   sed -r \
-   -e 

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

2016-05-15 Thread Gaetan Bisson
Date: Monday, May 16, 2016 @ 00:25:11
  Author: bisson
Revision: 268073

upstream update

Modified:
  postfix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-15 18:00:50 UTC (rev 268072)
+++ PKGBUILD2016-05-15 22:25:11 UTC (rev 268073)
@@ -4,8 +4,8 @@
 # Maintainer: Gaetan Bisson 
 
 pkgname=postfix
-pkgver=3.1.0
-pkgrel=4
+pkgver=3.1.1
+pkgrel=1
 url='http://www.postfix.org/'
 pkgdesc='Fast, easy to administer, secure mail server'
 license=('custom')
@@ -15,7 +15,7 @@
 
source=("ftp://ftp.porcupine.org/mirrors/postfix-release/official/${pkgname}-${pkgver}.tar.gz;
 'aliases.patch'
 'service')
-sha1sums=('a79409958c0327dc605473d2522483219464cbd2'
+sha1sums=('e1c8ba08cd2ef1ee0d01d1946e2b3272708e6a7d'
   '5fc3de6c7df1e5851a0a379e825148868808318b'
   'dd12885d367bebaf0fc9d2e9823a7f82086b6ee9')
 


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

2016-05-15 Thread Sven-Hendrik Haase
Date: Monday, May 16, 2016 @ 00:16:12
  Author: svenstaro
Revision: 175431

upgpkg: pypy 5.1.1-1

upstream release 5.1.1

Modified:
  pypy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-15 21:10:17 UTC (rev 175430)
+++ PKGBUILD2016-05-15 22:16:12 UTC (rev 175431)
@@ -3,7 +3,7 @@
 # Contributor: William Giokas <1007...@gmail.com>
 
 pkgname=pypy
-pkgver=5.1
+pkgver=5.1.1
 pkgrel=1
 pkgdesc="A Python implementation written in Python, JIT enabled"
 url="http://pypy.org;


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

2016-05-15 Thread Sven-Hendrik Haase
Date: Monday, May 16, 2016 @ 00:16:24
  Author: svenstaro
Revision: 175432

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

Added:
  pypy/repos/community-i686/LICENSE
(from rev 175431, pypy/trunk/LICENSE)
  pypy/repos/community-i686/PKGBUILD
(from rev 175431, pypy/trunk/PKGBUILD)
  pypy/repos/community-x86_64/LICENSE
(from rev 175431, pypy/trunk/LICENSE)
  pypy/repos/community-x86_64/PKGBUILD
(from rev 175431, pypy/trunk/PKGBUILD)
Deleted:
  pypy/repos/community-i686/LICENSE
  pypy/repos/community-i686/PKGBUILD
  pypy/repos/community-x86_64/LICENSE
  pypy/repos/community-x86_64/PKGBUILD

---+
 /LICENSE  |  308 
 /PKGBUILD |  112 
 community-i686/LICENSE|  154 --
 community-i686/PKGBUILD   |   56 
 community-x86_64/LICENSE  |  154 --
 community-x86_64/PKGBUILD |   56 
 6 files changed, 420 insertions(+), 420 deletions(-)

Deleted: community-i686/LICENSE
===
--- community-i686/LICENSE  2016-05-15 22:16:12 UTC (rev 175431)
+++ community-i686/LICENSE  2016-05-15 22:16:24 UTC (rev 175432)
@@ -1,154 +0,0 @@
-License for files in the pypy/ directory 
-==
-
-Except when otherwise stated (look for LICENSE files in directories or
-information at the beginning of each file) all software and
-documentation in the 'pypy' directories is licensed as follows: 
-
-The MIT License
-
-Permission is hereby granted, free of charge, to any person 
-obtaining a copy of this software and associated documentation 
-files (the "Software"), to deal in the Software without 
-restriction, including without limitation the rights to use, 
-copy, modify, merge, publish, distribute, sublicense, and/or 
-sell copies of the Software, and to permit persons to whom the 
-Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included 
-in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 
-OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 
MERCHANTABILITY, 
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 
-THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 
-FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 
-DEALINGS IN THE SOFTWARE.
-
-
-PyPy Copyright holders 2003-2010
 
-
-Except when otherwise stated (look for LICENSE files or information at
-the beginning of each file) the files in the 'pypy' directory are each
-copyrighted by one or more of the following people and organizations:
-
-Armin Rigo
-Maciej Fijalkowski
-Carl Friedrich Bolz
-Samuele Pedroni
-Antonio Cuni
-Michael Hudson
-Christian Tismer
-Holger Krekel
-Eric van Riet Paap
-Richard Emslie
-Anders Chrigstrom
-Amaury Forgeot d Arc
-Aurelien Campeas
-Anders Lehmann
-Niklaus Haldimann
-Seo Sanghyeon
-Leonardo Santagada
-Lawrence Oluyede
-Jakub Gustak
-Guido Wesdorp
-Benjamin Peterson
-Alexander Schremmer
-Niko Matsakis
-Ludovic Aubry
-Alex Martelli
-Toon Verwaest
-Stephan Diehl
-Adrien Di Mascio
-Stefan Schwarzer
-Tomek Meka
-Patrick Maupin
-Jacob Hallen
-Laura Creighton
-Bob Ippolito
-Camillo Bruni
-Simon Burton
-Bruno Gola
-Alexandre Fayolle
-Marius Gedminas
-Guido van Rossum
-Valentino Volonghi
-Adrian Kuhn
-Paul deGrandis
-Gerald Klix
-Wanja Saatkamp
-Anders Hammarquist
-Oscar Nierstrasz
-Eugene Oden
-Lukas Renggli
-Guenter Jantzen
-Dinu Gherman
-Bartosz Skowron
-Georg Brandl
-Ben Young
-Jean-Paul Calderone
-Nicolas Chauvat
-Rocco Moretti
-Michael Twomey
-boria
-Jared Grubb
-Olivier Dormond
-Stuart Williams
-Jens-Uwe Mager
-Justas Sadzevicius
-Mikael Schönenberg
-Brian Dorsey
-Jonathan David Riehl
-Beatrice During
-Elmo Mäntynen
-Andreas Friedge
-Alex Gaynor
-Anders Qvist
-Alan McIntyre
-Bert Freudenberg
-
-Heinrich-Heine University, Germany 
-Open End AB (formerly AB Strakt), Sweden
-merlinux GmbH, Germany 
-tismerysoft GmbH, Germany 
-Logilab Paris, France 
-DFKI GmbH, Germany 
-Impara, Germany
-Change Maker, Sweden 
-
- 
-License for 'lib-python/2.5.2' and 'lib-python/2.5.2-modified'
-== 
-
-Except when otherwise stated (look for LICENSE files or

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

2016-05-15 Thread Lukas Jirkovsky
Date: Sunday, May 15, 2016 @ 22:20:35
  Author: stativ
Revision: 175428

archrelease: copy trunk to community-x86_64

Added:
  embree/repos/community-x86_64/PKGBUILD
(from rev 175427, embree/trunk/PKGBUILD)
Deleted:
  embree/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-15 20:20:23 UTC (rev 175427)
+++ PKGBUILD2016-05-15 20:20:35 UTC (rev 175428)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky 
-pkgname=embree
-pkgver=2.8.0
-pkgrel=1
-pkgdesc="A collection of high-performance ray tracing kernels"
-arch=('x86_64')
-url="https://embree.github.io/;
-license=('Apache')
-depends=('intel-tbb')
-makedepends=('cmake' 'ispc' 'openexr')
-source=("$pkgname-${pkgver}.tar.gz::http://github.com/embree/embree/archive/v${pkgver}.tar.gz;)
-md5sums=('5558c63a1f6a25d687d76d7f8029abbb')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  cmake . \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_BUILD_TYPE=Release \
--DENABLE_TUTORIALS=OFF \
--DTBB_ROOT=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-

Copied: embree/repos/community-x86_64/PKGBUILD (from rev 175427, 
embree/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-15 20:20:35 UTC (rev 175428)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+pkgname=embree
+pkgver=2.9.0
+pkgrel=1
+pkgdesc="A collection of high-performance ray tracing kernels"
+arch=('x86_64')
+url="https://embree.github.io/;
+license=('Apache')
+depends=('intel-tbb')
+makedepends=('cmake' 'ispc' 'openexr')
+source=("$pkgname-${pkgver}.tar.gz::http://github.com/embree/embree/archive/v${pkgver}.tar.gz;)
+md5sums=('1c6128b2d96b263721e514eb8f5ca0fc')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_BUILD_TYPE=Release \
+-DENABLE_TUTORIALS=OFF \
+-DTBB_ROOT=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+


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

2016-05-15 Thread Lukas Jirkovsky
Date: Sunday, May 15, 2016 @ 22:20:23
  Author: stativ
Revision: 175427

upgpkg: embree 2.9.0-1

update to 2.9.0

Modified:
  embree/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-15 20:14:05 UTC (rev 175426)
+++ PKGBUILD2016-05-15 20:20:23 UTC (rev 175427)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Lukas Jirkovsky 
 pkgname=embree
-pkgver=2.8.0
+pkgver=2.9.0
 pkgrel=1
 pkgdesc="A collection of high-performance ray tracing kernels"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('intel-tbb')
 makedepends=('cmake' 'ispc' 'openexr')
 
source=("$pkgname-${pkgver}.tar.gz::http://github.com/embree/embree/archive/v${pkgver}.tar.gz;)
-md5sums=('5558c63a1f6a25d687d76d7f8029abbb')
+md5sums=('1c6128b2d96b263721e514eb8f5ca0fc')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


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

2016-05-15 Thread Antonio Rojas
Date: Sunday, May 15, 2016 @ 22:14:05
  Author: arojas
Revision: 175426

archrelease: copy trunk to community-any

Added:
  youtube-dl/repos/community-any/PKGBUILD
(from rev 175425, youtube-dl/trunk/PKGBUILD)
Deleted:
  youtube-dl/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-15 20:13:39 UTC (rev 175425)
+++ PKGBUILD2016-05-15 20:14:05 UTC (rev 175426)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=youtube-dl
-pkgver=2016.03.26
-pkgrel=1
-pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
-arch=('any')
-url="http://rg3.github.io/youtube-dl/;
-license=('custom')
-depends=('python' 'python-setuptools')
-optdepends=('ffmpeg: for video post-processing'
-'rtmpdump: for rtmp streams support'
-   'atomicparsley: for embedding thumbnails into m4a files')
-source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
-
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
-sha1sums=('8016ef34e4afe9c66571c03523b42cb1e61b7b0c'
-  'SKIP')
-validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18')
-
-prepare() {
-  cd ${pkgname}
-  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
-  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
-}
-
-package() {
-  cd ${pkgname}
-  python setup.py install --root="${pkgdir}/" --optimize=1
-  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
- "${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
-  install -Dm644 youtube-dl.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_youtube-dl"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: youtube-dl/repos/community-any/PKGBUILD (from rev 175425, 
youtube-dl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-15 20:14:05 UTC (rev 175426)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=youtube-dl
+pkgver=2016.05.10
+pkgrel=1
+pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
+arch=('any')
+url="http://rg3.github.io/youtube-dl/;
+license=('custom')
+depends=('python' 'python-setuptools')
+optdepends=('ffmpeg: for video post-processing'
+'rtmpdump: for rtmp streams support'
+   'atomicparsley: for embedding thumbnails into m4a files')
+source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
+
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
+sha1sums=('e155c4ff72ecd2dc85edf88a7f2d6f9ca78894e9'
+  'SKIP')
+validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18')
+
+prepare() {
+  cd ${pkgname}
+  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
+  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
+}
+
+package() {
+  cd ${pkgname}
+  python setup.py install --root="${pkgdir}/" --optimize=1
+  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
+ "${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
+  install -Dm644 youtube-dl.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_youtube-dl"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2016-05-15 Thread Antonio Rojas
Date: Sunday, May 15, 2016 @ 22:13:39
  Author: arojas
Revision: 175425

Update to 2016.05.10

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-15 20:10:38 UTC (rev 175424)
+++ PKGBUILD2016-05-15 20:13:39 UTC (rev 175425)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=youtube-dl
-pkgver=2016.03.26
+pkgver=2016.05.10
 pkgrel=1
 pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
 arch=('any')
@@ -14,7 +14,7 @@
'atomicparsley: for embedding thumbnails into m4a files')
 source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
 
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
-sha1sums=('8016ef34e4afe9c66571c03523b42cb1e61b7b0c'
+sha1sums=('e155c4ff72ecd2dc85edf88a7f2d6f9ca78894e9'
   'SKIP')
 validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18')
 


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

2016-05-15 Thread Antonio Rojas
Date: Sunday, May 15, 2016 @ 22:10:38
  Author: arojas
Revision: 175424

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

Added:
  maxima-ecl/repos/community-i686/PKGBUILD
(from rev 175423, maxima-ecl/trunk/PKGBUILD)
  maxima-ecl/repos/community-i686/build-fasl.patch
(from rev 175423, maxima-ecl/trunk/build-fasl.patch)
  maxima-ecl/repos/community-i686/matrixexp.patch
(from rev 175423, maxima-ecl/trunk/matrixexp.patch)
  maxima-ecl/repos/community-i686/maxima.desktop
(from rev 175423, maxima-ecl/trunk/maxima.desktop)
  maxima-ecl/repos/community-x86_64/PKGBUILD
(from rev 175423, maxima-ecl/trunk/PKGBUILD)
  maxima-ecl/repos/community-x86_64/build-fasl.patch
(from rev 175423, maxima-ecl/trunk/build-fasl.patch)
  maxima-ecl/repos/community-x86_64/matrixexp.patch
(from rev 175423, maxima-ecl/trunk/matrixexp.patch)
  maxima-ecl/repos/community-x86_64/maxima.desktop
(from rev 175423, maxima-ecl/trunk/maxima.desktop)
Deleted:
  maxima-ecl/repos/community-i686/PKGBUILD
  maxima-ecl/repos/community-i686/build-fasl.patch
  maxima-ecl/repos/community-i686/matrixexp.patch
  maxima-ecl/repos/community-i686/maxima.desktop
  maxima-ecl/repos/community-x86_64/PKGBUILD
  maxima-ecl/repos/community-x86_64/build-fasl.patch
  maxima-ecl/repos/community-x86_64/matrixexp.patch
  maxima-ecl/repos/community-x86_64/maxima.desktop

---+
 /PKGBUILD |  136 
 /build-fasl.patch |   46 
 /matrixexp.patch  |   26 ++
 /maxima.desktop   |   22 +
 community-i686/PKGBUILD   |   68 --
 community-i686/build-fasl.patch   |   23 --
 community-i686/matrixexp.patch|   13 ---
 community-i686/maxima.desktop |   11 --
 community-x86_64/PKGBUILD |   68 --
 community-x86_64/build-fasl.patch |   23 --
 community-x86_64/matrixexp.patch  |   13 ---
 community-x86_64/maxima.desktop   |   11 --
 12 files changed, 230 insertions(+), 230 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-05-15 20:08:06 UTC (rev 175423)
+++ community-i686/PKGBUILD 2016-05-15 20:10:38 UTC (rev 175424)
@@ -1,68 +0,0 @@
-# $Id: PKGBUILD 150832 2012-02-23 12:01:17Z juergen $
-# Maintainer: Antonio Rojas 
-# Contributor: Ronald van Haren 
-# Contributor: Damir Perisa 
-# Modified to compile against ecl by: maribu
-
-pkgname=maxima-ecl
-_pkgname=maxima
-pkgver=5.38.0
-_eclver=16.0.0
-pkgrel=2
-pkgdesc="A sophisticated computer algebra system (compiled against ecl)"
-arch=(i686 x86_64)
-license=(GPL)
-url="http://maxima.sourceforge.net;
-depends=(ecl=$_eclver texinfo shared-mime-info)
-makedepends=(python2 emacs patch)
-optdepends=('gnuplot: plotting capabilities' 'rlwrap: readline support via 
/usr/bin/rmaxima' 'tk: graphical xmaxima interface')
-conflicts=(maxima)
-provides=(maxima)
-options=(!zipman) # don't zip info pages or they won't work inside maxima
-source=("http://downloads.sourceforge.net/sourceforge/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;
-"${_pkgname}.desktop" 'build-fasl.patch' 'matrixexp.patch')
-md5sums=('31036638fa60b5019bade619eec27496'
- '24aa81126fbb8b726854e5a80d4c2415'
- 'eb33481ea06afb97743af06ff52c099b'
- '0a1fb7bb0cfdede965252b75decc2c0d')
-
-prepare() {
-  cd $_pkgname-$pkgver
-
-# set correct python executable to create docs
-  sed -i "s|${PYTHONBIN:-python}|python2|" doc/info/extract_categories.sh
-
-# build maxima ecl library
-  patch -p1 -i ../build-fasl.patch
-# fix matrix exponentiation
-  patch -p1 -i ../matrixexp.patch
-}
-
-build() {
-  cd $_pkgname-$pkgver
-
-  # set correct python executable to create docs
-  sed -i "s|${PYTHONBIN:-python}|python2|" doc/info/extract_categories.sh
-
-  ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info \
-   --libexecdir=/usr/lib --enable-ecl --with-default-lisp=ecl
-  make -j1
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  make DESTDIR="$pkgdir" emacsdir=/usr/share/emacs/site-lisp/maxima install
-
-  # install some freedesktop.org compatibility
-  install -Dm644 ${srcdir}/${_pkgname}.desktop \
-   $pkgdir/usr/share/applications/${_pkgname}.desktop
-
-  # make sure, we have a nice icon for the desktop file at the right place
-  install -d $pkgdir/usr/share/pixmaps/
-  ln -s /usr/share/maxima/${pkgver}/xmaxima/maxima-new.png \
-   $pkgdir/usr/share/pixmaps/${_pkgname}.png
-
-  _ecldir="/usr/lib/ecl-$_eclver"
-  mkdir -p "$pkgdir/$_ecldir"
-  install src/binary-ecl/maxima.fas "$pkgdir/$_ecldir"
-}

Copied: maxima-ecl/repos/community-i686/PKGBUILD (from rev 175423, 
maxima-ecl/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ 

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

2016-05-15 Thread Antonio Rojas
Date: Sunday, May 15, 2016 @ 22:08:06
  Author: arojas
Revision: 175423

Update to 5.38.1

Modified:
  maxima-ecl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-15 17:48:22 UTC (rev 175422)
+++ PKGBUILD2016-05-15 20:08:06 UTC (rev 175423)
@@ -6,9 +6,9 @@
 
 pkgname=maxima-ecl
 _pkgname=maxima
-pkgver=5.38.0
+pkgver=5.38.1
 _eclver=16.0.0
-pkgrel=2
+pkgrel=1
 pkgdesc="A sophisticated computer algebra system (compiled against ecl)"
 arch=(i686 x86_64)
 license=(GPL)
@@ -21,7 +21,7 @@
 options=(!zipman) # don't zip info pages or they won't work inside maxima
 
source=("http://downloads.sourceforge.net/sourceforge/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;
 "${_pkgname}.desktop" 'build-fasl.patch' 'matrixexp.patch')
-md5sums=('31036638fa60b5019bade619eec27496'
+md5sums=('bc21a56e0e413c24a31408ee5900cb59'
  '24aa81126fbb8b726854e5a80d4c2415'
  'eb33481ea06afb97743af06ff52c099b'
  '0a1fb7bb0cfdede965252b75decc2c0d')


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

2016-05-15 Thread Tobias Powalowski
Date: Sunday, May 15, 2016 @ 20:00:48
  Author: tpowa
Revision: 268071

db-move: moved efibootmgr from [testing] to [core] (i686, x86_64)

Added:
  efibootmgr/repos/core-i686/PKGBUILD
(from rev 268070, efibootmgr/repos/testing-i686/PKGBUILD)
  efibootmgr/repos/core-i686/efibootmgr-tilt_slashes-func.patch
(from rev 268070, 
efibootmgr/repos/testing-i686/efibootmgr-tilt_slashes-func.patch)
  efibootmgr/repos/core-x86_64/PKGBUILD
(from rev 268070, efibootmgr/repos/testing-x86_64/PKGBUILD)
  efibootmgr/repos/core-x86_64/efibootmgr-tilt_slashes-func.patch
(from rev 268070, 
efibootmgr/repos/testing-x86_64/efibootmgr-tilt_slashes-func.patch)
Deleted:
  efibootmgr/repos/core-i686/PKGBUILD
  efibootmgr/repos/core-i686/efibootmgr-tilt_slashes-func.patch
  efibootmgr/repos/core-x86_64/PKGBUILD
  efibootmgr/repos/core-x86_64/efibootmgr-tilt_slashes-func.patch
  efibootmgr/repos/testing-i686/
  efibootmgr/repos/testing-x86_64/

+
 /PKGBUILD  |  106 +++
 /efibootmgr-tilt_slashes-func.patch|  122 +++
 core-i686/PKGBUILD |   53 -
 core-i686/efibootmgr-tilt_slashes-func.patch   |   61 ---
 core-x86_64/PKGBUILD   |   53 -
 core-x86_64/efibootmgr-tilt_slashes-func.patch |   61 ---
 6 files changed, 228 insertions(+), 228 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2016-05-15 18:00:46 UTC (rev 268070)
+++ core-i686/PKGBUILD  2016-05-15 18:00:48 UTC (rev 268071)
@@ -1,53 +0,0 @@
-# Maintainer: Tobias Powalowski 
-# Contributor: Murtuza Akhtari 
-# Contributor: Keshav Amburay <(the ddoott ridikulus ddoott rat) (aatt) 
(gemmaeiil) (ddoott) (ccoomm)>
-
-pkgname="efibootmgr"
-pkgdesc="Tool to modify UEFI Firmware Boot Manager Variables"
-pkgver=0.12
-pkgrel=1
-arch=('x86_64' 'i686')
-url="https://github.com/vathpela/efibootmgr;
-license=('GPL2')
-makedepends=('git')
-depends=('pciutils' 'efivar' 'zlib')
-options=('strip' 'zipman' 'docs' '!emptydirs')
-
-source=("efibootmgr::git+https://github.com/vathpela/efibootmgr.git#tag=efibootmgr-${pkgver};)
-#source=("efibootmgr::git+https://github.com/vathpela/efibootmgr.git#commit=099e1107489a24e019e8900f1c44da646945c343;)
-sha1sums=('SKIP')
-
-pkgver() {
-   cd "${srcdir}/efibootmgr/"
-   echo "$(git describe --tags)" | sed -e 's|efibootmgr-||g' -e 's|-|\.|g'
-}
-
-prepare() {
-   
-   cd "${srcdir}/efibootmgr/"
-   
-   git clean -x -d -f
-   echo
-   
-}
-
-build() {
-   
-   cd "${srcdir}/efibootmgr/"
-   
-   make EXTRA_CFLAGS="-Os"
-   echo
-   
-}
-
-package() {
-   
-   cd "${srcdir}/efibootmgr/"
-   
-   install -d "${pkgdir}/usr/bin/"
-   install -D -m0755 "${srcdir}/efibootmgr/src/efibootmgr/efibootmgr" 
"${pkgdir}/usr/bin/efibootmgr"
-   
-   install -d "${pkgdir}/usr/share/man/man8/"
-   install -D -m0644 "${srcdir}/efibootmgr/src/man/man8/efibootmgr.8" 
"${pkgdir}/usr/share/man/man8/efibootmgr.8"
-   
-}

Copied: efibootmgr/repos/core-i686/PKGBUILD (from rev 268070, 
efibootmgr/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2016-05-15 18:00:48 UTC (rev 268071)
@@ -0,0 +1,53 @@
+# Maintainer: Tobias Powalowski 
+# Contributor: Murtuza Akhtari 
+# Contributor: Keshav Amburay <(the ddoott ridikulus ddoott rat) (aatt) 
(gemmaeiil) (ddoott) (ccoomm)>
+
+pkgname="efibootmgr"
+pkgdesc="Tool to modify UEFI Firmware Boot Manager Variables"
+pkgver=0.12.25.g75d2580
+pkgrel=1
+arch=('x86_64' 'i686')
+url="https://github.com/rhinstaller/efibootmgr;
+license=('GPL2')
+makedepends=('git')
+depends=('pciutils' 'efivar' 'zlib')
+options=('strip' 'zipman' 'docs' '!emptydirs')
+
+#source=("efibootmgr::git+https://github.com/rhinstaller/efibootmgr.git#tag=efibootmgr-${pkgver};)
+source=("efibootmgr::git+https://github.com/rhinstaller/efibootmgr.git#commit=75d25807ba81cb724964c989012611272c8f1f5d;)
+sha1sums=('SKIP')
+
+pkgver() {
+   cd "${srcdir}/efibootmgr/"
+   echo "$(git describe --tags)" | sed -e 's|efibootmgr-||g' -e 's|-|\.|g'
+}
+
+prepare() {
+   
+   cd "${srcdir}/efibootmgr/"
+   
+   git clean -x -d -f
+   echo
+   
+}
+
+build() {
+   
+   cd "${srcdir}/efibootmgr/"
+   
+   make EXTRA_CFLAGS="-Os"
+   echo
+   
+}
+
+package() {
+   
+   cd "${srcdir}/efibootmgr/"
+   
+   install -d "${pkgdir}/usr/bin/"
+   install -D -m0755 "${srcdir}/efibootmgr/src/efibootmgr" 
"${pkgdir}/usr/bin/efibootmgr"
+   
+   install -d "${pkgdir}/usr/share/man/man8/"
+   install -D -m0644 "${srcdir}/efibootmgr/src/efibootmgr.8" 

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

2016-05-15 Thread Tobias Powalowski
Date: Sunday, May 15, 2016 @ 20:00:50
  Author: tpowa
Revision: 268072

db-move: moved popt from [testing] to [core] (i686, x86_64)

Added:
  popt/repos/core-i686/PKGBUILD
(from rev 268071, popt/repos/testing-i686/PKGBUILD)
  popt/repos/core-x86_64/PKGBUILD
(from rev 268071, popt/repos/testing-x86_64/PKGBUILD)
Deleted:
  popt/repos/core-i686/PKGBUILD
  popt/repos/core-x86_64/PKGBUILD
  popt/repos/testing-i686/
  popt/repos/testing-x86_64/

--+
 /PKGBUILD|   52 +
 core-i686/PKGBUILD   |   25 ---
 core-x86_64/PKGBUILD |   25 ---
 3 files changed, 52 insertions(+), 50 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2016-05-15 18:00:48 UTC (rev 268071)
+++ core-i686/PKGBUILD  2016-05-15 18:00:50 UTC (rev 268072)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=popt
-pkgver=1.16
-pkgrel=7
-pkgdesc="A commandline option parser"
-arch=('i686' 'x86_64')
-url="http://rpm5.org;
-license=('custom')
-depends=('glibc')
-source=(http://rpm5.org/files/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('cfe94a15a2404db85858a81ff8de27c8ff3e235e')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: popt/repos/core-i686/PKGBUILD (from rev 268071, 
popt/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2016-05-15 18:00:50 UTC (rev 268072)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=popt
+pkgver=1.16
+pkgrel=8
+pkgdesc="A commandline option parser"
+arch=('i686' 'x86_64')
+url="http://rpm5.org;
+license=('custom')
+depends=('glibc')
+options=('staticlibs')
+source=(http://rpm5.org/files/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('cfe94a15a2404db85858a81ff8de27c8ff3e235e')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2016-05-15 18:00:48 UTC (rev 268071)
+++ core-x86_64/PKGBUILD2016-05-15 18:00:50 UTC (rev 268072)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=popt
-pkgver=1.16
-pkgrel=7
-pkgdesc="A commandline option parser"
-arch=('i686' 'x86_64')
-url="http://rpm5.org;
-license=('custom')
-depends=('glibc')
-source=(http://rpm5.org/files/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('cfe94a15a2404db85858a81ff8de27c8ff3e235e')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: popt/repos/core-x86_64/PKGBUILD (from rev 268071, 
popt/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2016-05-15 18:00:50 UTC (rev 268072)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=popt
+pkgver=1.16
+pkgrel=8
+pkgdesc="A commandline option parser"
+arch=('i686' 'x86_64')
+url="http://rpm5.org;
+license=('custom')
+depends=('glibc')
+options=('staticlibs')
+source=(http://rpm5.org/files/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('cfe94a15a2404db85858a81ff8de27c8ff3e235e')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2016-05-15 Thread Tobias Powalowski
Date: Sunday, May 15, 2016 @ 20:00:46
  Author: tpowa
Revision: 268070

db-move: moved efivar from [testing] to [core] (i686, x86_64)

Added:
  efivar/repos/core-i686/PKGBUILD
(from rev 268069, efivar/repos/testing-i686/PKGBUILD)
  efivar/repos/core-x86_64/PKGBUILD
(from rev 268069, efivar/repos/testing-x86_64/PKGBUILD)
Deleted:
  efivar/repos/core-i686/PKGBUILD
  efivar/repos/core-x86_64/PKGBUILD
  efivar/repos/testing-i686/
  efivar/repos/testing-x86_64/

--+
 /PKGBUILD|  116 +
 core-i686/PKGBUILD   |   58 
 core-x86_64/PKGBUILD |   58 
 3 files changed, 116 insertions(+), 116 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2016-05-15 17:29:19 UTC (rev 268069)
+++ core-i686/PKGBUILD  2016-05-15 18:00:46 UTC (rev 268070)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer : Tobias Powalowski 
-# Contributor : Keshav Amburay <(the ddoott ridikulus ddoott rat) (aatt) 
(gemmaeiil) (ddoott) (ccoomm)>
-
-pkgname="efivar"
-pkgdesc="Tools and library to manipulate EFI variables"
-pkgver=0.21
-pkgrel=1
-arch=('x86_64' 'i686')
-url="https://github.com/vathpela/efivar;
-license=('LGPL2.1')
-makedepends=('git')
-depends=('popt')
-conflicts=('libefivar')
-provides=("libefivar=${pkgver}")
-options=('strip' 'zipman' 'docs')
-
-source=("efivar::git+https://github.com/vathpela/efivar.git#tag=${pkgver};)
-#source=("efivar::git+https://github.com/vathpela/efivar.git#commit=81d01467fac30ee0662cb86a6079745c4dfe9425;)
-sha1sums=('SKIP')
-
-pkgver() {
-   cd "${srcdir}/efivar/"
-   echo "$(git describe --tags)" | sed -e 's|efivar-||g'
-}
-
-prepare() {
-   
-   cd "${srcdir}/efivar/"
-   
-   git clean -x -d -f
-   echo
-   
-   sed 's|-O0|-Os|g' -i "${srcdir}/efivar/Make.defaults" || true
-   sed 's|-rpath=$(TOPDIR)/src/|-rpath=$(libdir)|g' -i 
"${srcdir}/efivar/src/test/Makefile" || true
-   
-}
-
-build() {
-   
-   cd "${srcdir}/efivar/"
-   
-   make libdir="/usr/lib/" bindir="/usr/bin/" mandir="/usr/share/man/" 
includedir="/usr/include/" V=1 -j1
-   echo
-   
-}
-
-package() {
-   
-   cd "${srcdir}/efivar/"
-   
-   make -j1 V=1 DESTDIR="${pkgdir}/" libdir="/usr/lib/" bindir="/usr/bin/" 
mandir="/usr/share/man/" includedir="/usr/include/" install
-   echo
-   
-   install -d "${pkgdir}/usr/bin"
-   install -D -m0755 "${srcdir}/efivar/src/test/tester" 
"${pkgdir}/usr/bin/efivar-tester"
-   
-}

Copied: efivar/repos/core-i686/PKGBUILD (from rev 268069, 
efivar/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2016-05-15 18:00:46 UTC (rev 268070)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer : Tobias Powalowski 
+# Contributor : Keshav Amburay <(the ddoott ridikulus ddoott rat) (aatt) 
(gemmaeiil) (ddoott) (ccoomm)>
+
+pkgname="efivar"
+pkgdesc="Tools and library to manipulate EFI variables"
+pkgver=0.23.30.gc5685d8
+pkgrel=1
+arch=('x86_64' 'i686')
+url="https://github.com/rhinstaller/efivar;
+license=('LGPL2.1')
+makedepends=('git')
+depends=('popt')
+conflicts=('libefivar')
+provides=("libefivar=${pkgver}")
+options=('strip' 'zipman' 'docs')
+#source=("efivar::git+https://github.com/rhinstaller/efivar.git#tag=${pkgver};)
+source=("efivar::git+https://github.com/rhinstaller/efivar.git#commit=c5685d8d14a0164728a6587fe037a3b995db721b;)
+sha1sums=('SKIP')
+
+pkgver() {
+   cd "${srcdir}/efivar/"
+   echo "$(git describe --tags)" | sed -e 's|efivar-||g' -e 's|-|\.|g'
+}
+
+prepare() {
+   
+   cd "${srcdir}/efivar/"
+   
+   git clean -x -d -f
+   echo
+   
+   sed 's|-O0|-Os|g' -i "${srcdir}/efivar/Make.defaults" || true
+   sed 's|-rpath,$(TOPDIR)/src|-rpath,$(libdir)|g' -i 
"${srcdir}/efivar/src/test/Makefile" || true
+}
+
+build() {
+   
+   cd "${srcdir}/efivar/"
+   
+   make libdir="/usr/lib/" bindir="/usr/bin/" mandir="/usr/share/man/" 
includedir="/usr/include/" V=1 -j1
+cd "${srcdir}/efivar/src/test"
+make libdir="/usr/lib/" bindir="/usr/bin/" mandir="/usr/share/man/" 
includedir="/usr/include/" V=1 -j1
+   echo
+   
+}
+
+package() {
+   
+   cd "${srcdir}/efivar/"
+   
+   make -j1 V=1 DESTDIR="${pkgdir}/" libdir="/usr/lib/" bindir="/usr/bin/" 
mandir="/usr/share/man/" includedir="/usr/include/" install
+   echo
+   
+   install -d "${pkgdir}/usr/bin"
+   install -D -m0755 "${srcdir}/efivar/src/test/tester" 
"${pkgdir}/usr/bin/efivar-tester"
+   
+}

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2016-05-15 17:29:19 UTC (rev 268069)
+++ 

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

2016-05-15 Thread Felix Yan
Date: Sunday, May 15, 2016 @ 19:48:22
  Author: fyan
Revision: 175422

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-05-15 17:47:47 UTC (rev 175421)
+++ community-i686/PKGBUILD 2016-05-15 17:48:22 UTC (rev 175422)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Angel Velasquez 
-# Contributor: Alexander Fehr 
-# Contributor: Daniel J Griffiths 
-
-pkgname=aria2
-pkgver=1.22.0
-pkgrel=1
-pkgdesc='Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink'
-arch=('i686' 'x86_64')
-url='http://aria2.sourceforge.net/'
-license=('GPL')
-depends=('gnutls' 'libxml2' 'sqlite' 'c-ares' 'ca-certificates' 'libssh2')
-checkdepends=('cppunit')
-source=("https://github.com/tatsuhiro-t/aria2/releases/download/release-$pkgver/aria2-$pkgver.tar.xz;)
-sha256sums=('ac3fb3f33a76ce22f968ace293445ef64c201b0ae43aef21e664e4b977e34f89')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure \
---prefix=/usr \
---with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
-
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  # add bash completion
-  install -d "$pkgdir"/usr/share/bash-completion/completions
-  install -m644 "$pkgdir"/usr/share/doc/aria2/bash_completion/aria2c \
-"$pkgdir"/usr/share/bash-completion/completions
-  rm -rf "$pkgdir"/usr/share/doc/aria2/bash_completion
-}

Copied: aria2/repos/community-i686/PKGBUILD (from rev 175421, 
aria2/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-05-15 17:48:22 UTC (rev 175422)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Angel Velasquez 
+# Contributor: Alexander Fehr 
+# Contributor: Daniel J Griffiths 
+
+pkgname=aria2
+pkgver=1.23.0
+pkgrel=1
+pkgdesc='Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink'
+arch=('i686' 'x86_64')
+url='http://aria2.sourceforge.net/'
+license=('GPL')
+depends=('gnutls' 'libxml2' 'sqlite' 'c-ares' 'ca-certificates' 'libssh2')
+checkdepends=('cppunit')
+source=("https://github.com/tatsuhiro-t/aria2/releases/download/release-$pkgver/aria2-$pkgver.tar.xz;)
+sha256sums=('585185866415bf1120e4bf0a484e7dfec2e9e7c5305023b15ad0f66f90391f93')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
+
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  # add bash completion
+  install -d "$pkgdir"/usr/share/bash-completion/completions
+  install -m644 "$pkgdir"/usr/share/doc/aria2/bash_completion/aria2c \
+"$pkgdir"/usr/share/bash-completion/completions
+  rm -rf "$pkgdir"/usr/share/doc/aria2/bash_completion
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-05-15 17:47:47 UTC (rev 175421)
+++ community-x86_64/PKGBUILD   2016-05-15 17:48:22 UTC (rev 175422)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Angel Velasquez 
-# Contributor: Alexander Fehr 
-# Contributor: Daniel J Griffiths 
-
-pkgname=aria2
-pkgver=1.22.0
-pkgrel=1
-pkgdesc='Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink'
-arch=('i686' 'x86_64')
-url='http://aria2.sourceforge.net/'
-license=('GPL')
-depends=('gnutls' 'libxml2' 'sqlite' 'c-ares' 'ca-certificates' 'libssh2')
-checkdepends=('cppunit')
-source=("https://github.com/tatsuhiro-t/aria2/releases/download/release-$pkgver/aria2-$pkgver.tar.xz;)

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

2016-05-15 Thread Felix Yan
Date: Sunday, May 15, 2016 @ 19:47:47
  Author: fyan
Revision: 175421

upgpkg: aria2 1.23.0-1

Modified:
  aria2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-15 17:35:15 UTC (rev 175420)
+++ PKGBUILD2016-05-15 17:47:47 UTC (rev 175421)
@@ -7,7 +7,7 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=aria2
-pkgver=1.22.0
+pkgver=1.23.0
 pkgrel=1
 pkgdesc='Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink'
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 depends=('gnutls' 'libxml2' 'sqlite' 'c-ares' 'ca-certificates' 'libssh2')
 checkdepends=('cppunit')
 
source=("https://github.com/tatsuhiro-t/aria2/releases/download/release-$pkgver/aria2-$pkgver.tar.xz;)
-sha256sums=('ac3fb3f33a76ce22f968ace293445ef64c201b0ae43aef21e664e4b977e34f89')
+sha256sums=('585185866415bf1120e4bf0a484e7dfec2e9e7c5305023b15ad0f66f90391f93')
 
 build() {
   cd $pkgname-$pkgver


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

2016-05-15 Thread Jaroslav Lichtblau
Date: Sunday, May 15, 2016 @ 19:35:15
  Author: jlichtblau
Revision: 175420

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

Added:
  goldendict/repos/community-i686/PKGBUILD
(from rev 175419, goldendict/trunk/PKGBUILD)
  goldendict/repos/community-i686/goldendict.changelog
(from rev 175419, goldendict/trunk/goldendict.changelog)
  goldendict/repos/community-x86_64/PKGBUILD
(from rev 175419, goldendict/trunk/PKGBUILD)
  goldendict/repos/community-x86_64/goldendict.changelog
(from rev 175419, goldendict/trunk/goldendict.changelog)
Deleted:
  goldendict/repos/community-i686/PKGBUILD
  goldendict/repos/community-i686/goldendict.changelog
  goldendict/repos/community-x86_64/PKGBUILD
  goldendict/repos/community-x86_64/goldendict.changelog

---+
 /PKGBUILD |   74 
 /goldendict.changelog |   46 +++
 community-i686/PKGBUILD   |   36 ---
 community-i686/goldendict.changelog   |   20 
 community-x86_64/PKGBUILD |   36 ---
 community-x86_64/goldendict.changelog |   20 
 6 files changed, 120 insertions(+), 112 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-05-15 17:34:58 UTC (rev 175419)
+++ community-i686/PKGBUILD 2016-05-15 17:35:15 UTC (rev 175420)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: m0rph 
-
-pkgname=goldendict
-pkgver=1.5.0RC2
-pkgrel=1
-pkgdesc="Feature-rich dictionary lookup program"
-arch=('i686' 'x86_64')
-url="http://goldendict.org;
-license=('GPL3')
-depends=('hunspell' 'libxtst' 'libzip' 'libao' 'qt5-webkit' 'qt5-svg' 
'qt5-tools' 'phonon-qt5' 'ffmpeg')
-provides=('stardict')
-changelog=$pkgname.changelog
-source=($pkgname-$pkgver.tar.gz::https://github.com/$pkgname/$pkgname/archive/1.5.0-RC2.tar.gz)
-sha256sums=('bccee0a3d3902f8fa31e439e220a405065fff774e5f8c581be2b0743d3f83fde')
-
-build(){
-  cd "${srcdir}"/$pkgname-1.5.0-RC2
-
-  qmake-qt5 "CONFIG+=no_epwing_support" PREFIX="/usr" 
-  make
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-1.5.0-RC2
-
-  make INSTALL_ROOT="${pkgdir}" install
-
-# languages
-  install -d "${pkgdir}"/usr/share/$pkgname/locale
-  install -m644 locale/*.qm -t "${pkgdir}"/usr/share/$pkgname/locale
-
-# removing unneeded
-  rm -rf "${pkgdir}"/usr/share/app-install
-}

Copied: goldendict/repos/community-i686/PKGBUILD (from rev 175419, 
goldendict/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-05-15 17:35:15 UTC (rev 175420)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: m0rph 
+
+pkgname=goldendict
+pkgver=1.5.0RC2
+pkgrel=2
+pkgdesc="Feature-rich dictionary lookup program"
+arch=('i686' 'x86_64')
+url="http://goldendict.org;
+license=('GPL3')
+depends=('hunspell' 'libxtst' 'libzip' 'libao' 'qt5-webkit' 'qt5-svg'
+ 'qt5-x11extras' 'qt5-tools' 'phonon-qt5' 'ffmpeg')
+provides=('stardict')
+changelog=$pkgname.changelog
+source=($pkgname-$pkgver.tar.gz::https://github.com/$pkgname/$pkgname/archive/1.5.0-RC2.tar.gz)
+sha256sums=('bccee0a3d3902f8fa31e439e220a405065fff774e5f8c581be2b0743d3f83fde')
+
+build(){
+  cd "${srcdir}"/$pkgname-1.5.0-RC2
+
+  qmake-qt5 "CONFIG+=no_epwing_support" PREFIX="/usr" 
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-1.5.0-RC2
+
+  make INSTALL_ROOT="${pkgdir}" install
+
+# languages
+  install -d "${pkgdir}"/usr/share/$pkgname/locale
+  install -m644 locale/*.qm -t "${pkgdir}"/usr/share/$pkgname/locale
+
+# removing unneeded
+  rm -rf "${pkgdir}"/usr/share/app-install
+}

Deleted: community-i686/goldendict.changelog
===
--- community-i686/goldendict.changelog 2016-05-15 17:34:58 UTC (rev 175419)
+++ community-i686/goldendict.changelog 2016-05-15 17:35:15 UTC (rev 175420)
@@ -1,20 +0,0 @@
-2016-05-11 Jaroslav Lichtblau 
-   * goldendict 1.5.0RC2-1
-
-2016-02-17 Jaroslav Lichtblau 
-   * goldendict 1.5.0RC-3 ffmpeg 3.0 rebuild
-
-2015-02-02 Jaroslav Lichtblau 
-   * goldendict 1.5.0RC-1 FS#43667 fix, localizations added again
-
-2011-12-17 Jaroslav Lichtblau 
-   * goldendict 1.0.1-5 libQtWebKit.so.4 now in new qtwebkit package
-
-2010-12-27 Jaroslav Lichtblau 
-   * Update to major release 1.0.1
-
-2010-02-16 Jaroslav Lichtblau 
-   * FS#18350 fixed in 0.9.0-5
-
-2009-06-21 Jaroslav Lichtblau 
-   * Package moved to [community] in 

[arch-commits] Commit in goldendict/trunk (PKGBUILD goldendict.changelog)

2016-05-15 Thread Jaroslav Lichtblau
Date: Sunday, May 15, 2016 @ 19:34:58
  Author: jlichtblau
Revision: 175419

upgpkg: goldendict 1.5.0RC2-2 - FS#49316 fix

Modified:
  goldendict/trunk/PKGBUILD
  goldendict/trunk/goldendict.changelog

--+
 PKGBUILD |5 +++--
 goldendict.changelog |3 +++
 2 files changed, 6 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-15 17:06:11 UTC (rev 175418)
+++ PKGBUILD2016-05-15 17:34:58 UTC (rev 175419)
@@ -4,12 +4,13 @@
 
 pkgname=goldendict
 pkgver=1.5.0RC2
-pkgrel=1
+pkgrel=2
 pkgdesc="Feature-rich dictionary lookup program"
 arch=('i686' 'x86_64')
 url="http://goldendict.org;
 license=('GPL3')
-depends=('hunspell' 'libxtst' 'libzip' 'libao' 'qt5-webkit' 'qt5-svg' 
'qt5-tools' 'phonon-qt5' 'ffmpeg')
+depends=('hunspell' 'libxtst' 'libzip' 'libao' 'qt5-webkit' 'qt5-svg'
+ 'qt5-x11extras' 'qt5-tools' 'phonon-qt5' 'ffmpeg')
 provides=('stardict')
 changelog=$pkgname.changelog
 
source=($pkgname-$pkgver.tar.gz::https://github.com/$pkgname/$pkgname/archive/1.5.0-RC2.tar.gz)

Modified: goldendict.changelog
===
--- goldendict.changelog2016-05-15 17:06:11 UTC (rev 175418)
+++ goldendict.changelog2016-05-15 17:34:58 UTC (rev 175419)
@@ -1,3 +1,6 @@
+2016-05-15 Jaroslav Lichtblau 
+   * goldendict 1.5.0RC2-2 FS#49316 fix
+
 2016-05-11 Jaroslav Lichtblau 
* goldendict 1.5.0RC2-1
 


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

2016-05-15 Thread Tobias Powalowski
Date: Sunday, May 15, 2016 @ 19:29:19
  Author: tpowa
Revision: 268069

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

Added:
  dosfstools/repos/core-i686/PKGBUILD
(from rev 268068, dosfstools/trunk/PKGBUILD)
  dosfstools/repos/core-x86_64/PKGBUILD
(from rev 268068, dosfstools/trunk/PKGBUILD)
Deleted:
  dosfstools/repos/core-i686/PKGBUILD
  dosfstools/repos/core-x86_64/PKGBUILD

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

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2016-05-15 17:29:06 UTC (rev 268068)
+++ core-i686/PKGBUILD  2016-05-15 17:29:19 UTC (rev 268069)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: dorphell 
-# Committer: Judd Vinet 
-pkgname=dosfstools
-pkgver=4.0
-pkgrel=2
-pkgdesc="DOS filesystem utilities"
-arch=(i686 x86_64)
-depends=('glibc')
-source=(https://github.com/$pkgname/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz{,.sig}
-)
-url="https://github.com/dosfstools/dosfstools;
-license=('GPL2')
-validpgpkeys=('25714AECDBFDACEE1CE95FE77F6022516E869F64') # Andreas Bombe
-md5sums=('20f8388b99702f276c973d228c7cff45'
- 'SKIP')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --libexecdir=/usr/lib --sbindir=/usr/bin 
--mandir=/usr/share/man --docdir=/usr/share/doc --enable-compat-symlinks
-}
-
-build() {
-   cd $srcdir/$pkgname-$pkgver
-   make
-}
-
-package () {
-   cd $srcdir/$pkgname-$pkgver
-   make DESTDIR=$pkgdir install
-}

Copied: dosfstools/repos/core-i686/PKGBUILD (from rev 268068, 
dosfstools/trunk/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2016-05-15 17:29:19 UTC (rev 268069)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: dorphell 
+# Committer: Judd Vinet 
+pkgname=dosfstools
+pkgver=4.0
+pkgrel=3
+pkgdesc="DOS filesystem utilities"
+arch=(i686 x86_64)
+depends=('glibc')
+source=(https://github.com/$pkgname/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz{,.sig}
+)
+url="https://github.com/dosfstools/dosfstools;
+license=('GPL2')
+validpgpkeys=('25714AECDBFDACEE1CE95FE77F6022516E869F64') # Andreas Bombe
+md5sums=('20f8388b99702f276c973d228c7cff45'
+ 'SKIP')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --libexecdir=/usr/lib --sbindir=/usr/bin 
--mandir=/usr/share/man --docdir=/usr/share/doc/dosfstools 
--enable-compat-symlinks
+}
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+   make
+}
+
+package () {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir install
+}

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2016-05-15 17:29:06 UTC (rev 268068)
+++ core-x86_64/PKGBUILD2016-05-15 17:29:19 UTC (rev 268069)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: dorphell 
-# Committer: Judd Vinet 
-pkgname=dosfstools
-pkgver=4.0
-pkgrel=2
-pkgdesc="DOS filesystem utilities"
-arch=(i686 x86_64)
-depends=('glibc')
-source=(https://github.com/$pkgname/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz{,.sig}
-)
-url="https://github.com/dosfstools/dosfstools;
-license=('GPL2')
-validpgpkeys=('25714AECDBFDACEE1CE95FE77F6022516E869F64') # Andreas Bombe
-md5sums=('20f8388b99702f276c973d228c7cff45'
- 'SKIP')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --libexecdir=/usr/lib --sbindir=/usr/bin 
--mandir=/usr/share/man --docdir=/usr/share/doc --enable-compat-symlinks
-}
-
-build() {
-   cd $srcdir/$pkgname-$pkgver
-   make
-}
-
-package () {
-   cd $srcdir/$pkgname-$pkgver
-   make DESTDIR=$pkgdir install
-}

Copied: dosfstools/repos/core-x86_64/PKGBUILD (from rev 268068, 
dosfstools/trunk/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2016-05-15 17:29:19 UTC (rev 268069)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: dorphell 
+# Committer: Judd Vinet 
+pkgname=dosfstools
+pkgver=4.0
+pkgrel=3
+pkgdesc="DOS filesystem utilities"
+arch=(i686 x86_64)
+depends=('glibc')
+source=(https://github.com/$pkgname/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz{,.sig}
+)
+url="https://github.com/dosfstools/dosfstools;
+license=('GPL2')
+validpgpkeys=('25714AECDBFDACEE1CE95FE77F6022516E869F64') # Andreas Bombe
+md5sums=('20f8388b99702f276c973d228c7cff45'
+ 'SKIP')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --libexecdir=/usr/lib 

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

2016-05-15 Thread Tobias Powalowski
Date: Sunday, May 15, 2016 @ 19:29:06
  Author: tpowa
Revision: 268068

upgpkg: dosfstools 4.0-3

fix docdir #49335

Modified:
  dosfstools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-15 15:51:14 UTC (rev 268067)
+++ PKGBUILD2016-05-15 17:29:06 UTC (rev 268068)
@@ -3,7 +3,7 @@
 # Committer: Judd Vinet 
 pkgname=dosfstools
 pkgver=4.0
-pkgrel=2
+pkgrel=3
 pkgdesc="DOS filesystem utilities"
 arch=(i686 x86_64)
 depends=('glibc')
@@ -17,7 +17,7 @@
 
 prepare() {
   cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --libexecdir=/usr/lib --sbindir=/usr/bin 
--mandir=/usr/share/man --docdir=/usr/share/doc --enable-compat-symlinks
+  ./configure --prefix=/usr --libexecdir=/usr/lib --sbindir=/usr/bin 
--mandir=/usr/share/man --docdir=/usr/share/doc/dosfstools 
--enable-compat-symlinks
 }
 
 build() {


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

2016-05-15 Thread Massimiliano Torromeo
Date: Sunday, May 15, 2016 @ 19:06:11
  Author: mtorromeo
Revision: 175418

archrelease: copy trunk to community-x86_64

Added:
  rkt/repos/community-x86_64/PKGBUILD
(from rev 175417, rkt/trunk/PKGBUILD)
  rkt/repos/community-x86_64/rkt.install
(from rev 175417, rkt/trunk/rkt.install)
  rkt/repos/community-x86_64/rkt.sysusers
(from rev 175417, rkt/trunk/rkt.sysusers)
Deleted:
  rkt/repos/community-x86_64/PKGBUILD
  rkt/repos/community-x86_64/rkt.install
  rkt/repos/community-x86_64/rkt.sysusers

--+
 PKGBUILD |  185 -
 rkt.install  |   20 +++---
 rkt.sysusers |2 
 3 files changed, 104 insertions(+), 103 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-15 17:05:52 UTC (rev 175417)
+++ PKGBUILD2016-05-15 17:06:11 UTC (rev 175418)
@@ -1,92 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-
-# Contributor: Yuval Adam  PGP-Key: 271386AA2EB7672F
-# Contributor: Kenny Rasschaert  
PGP-Key: 1F70454121E41419
-# Contributor: Adrián Pérez de Castro  
PGP-Key: 91C559DBE4C9123B
-# Contributor: Carl George  PGP-Key: 4BA2F7E101D9F512
-
-pkgname=rkt
-pkgver=1.5.1
-pkgrel=1
-pkgdesc="App container runtime"
-arch=('x86_64')
-url="https://github.com/coreos/rkt;
-license=(apache)
-depends=('glibc' 'openssl' 'zlib')
-makedepends=('cpio' 'go' 'wget' 'squashfs-tools' 'perl-capture-tiny'
- 'intltool' 'gperf' 'git' 'libseccomp' 'bc')
-
-# stage1/usr_from_coreos/coreos-common.mk
-CCN_IMG_RELEASE=991.0.0
-CCN_SYSTEMD_VERSION=v225
-
-# stage1/usr_from_kvm/kernel.mk
-KERNEL_VERSION=4.3.1
-
-source=(https://github.com/coreos/rkt/archive/v$pkgver/$pkgname-$pkgver.tar.gz
-
http://alpha.release.core-os.net/amd64-usr/$CCN_IMG_RELEASE/coreos_production_pxe_image.cpio.gz{,.sig}
-
https://www.kernel.org/pub/linux/kernel/v4.x/linux-$KERNEL_VERSION.tar.xz
-rkt.sysusers)
-noextract=(coreos_production_pxe_image.cpio.gz
-   linux-$KERNEL_VERSION.tar.xz)
-validpgpkeys=('04127D0BFABEC8871FFB2CCE50E0885593D2DCB4')
-sha256sums=('2a9320b0fe41551e88e8477e4223ef9e2b7ebaf9947829235b5e936dbd61f5d4'
-'33697d3d7c7458bbb160a5eb889ced34b001c35e22e10c86235042eb57ae51ed'
-'SKIP'
-'11faaff6e7546038b868f524cdf42a5a1b67be9fdfd37d931723a8deb1811b72'
-'1ad8d343191be731289577d249a2467fbe5a69949117601e760b459f599d311f')
-install="rkt.install"
-
-prepare() {
-  cd $pkgname-$pkgver
-  mkdir -p build-rkt-$pkgver/tmp/usr_from_kvm/kernel/
-  cd build-rkt-$pkgver/tmp/usr_from_kvm/kernel/
-  ln -s "$srcdir"/linux-$KERNEL_VERSION.tar.xz
-}
-
-build() {
-  cd $pkgname-$pkgver
-  export GOPATH="$PWD/Godeps/_workspace/src"
-
-  ./autogen.sh
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---localstatedir=/var \
---enable-tpm=auto \
---with-stage1-flavors=coreos,kvm,host,fly \
---with-stage1-default-flavor=coreos \
-   --with-stage1-default-images-directory=/usr/lib/rkt/stage1-images \
-   
--with-stage1-default-location=/usr/lib/rkt/stage1-images/stage1-coreos.aci \
-
--with-coreos-local-pxe-image-path="$srcdir"/coreos_production_pxe_image.cpio.gz
 \
---with-coreos-local-pxe-image-systemd-version=$CCN_SYSTEMD_VERSION
-  make manpages
-  make bash-completion
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  for unit in rkt-gc.{timer,service} rkt-metadata.{socket,service}; do
-install -Dm644 dist/init/systemd/$unit 
"$pkgdir"/usr/lib/systemd/system/$unit
-  done
-
-  install -Dm644 dist/init/systemd/tmpfiles.d/rkt.conf 
"$pkgdir"/usr/lib/tmpfiles.d/rkt.conf
-  install -Dm644 "$srcdir"/rkt.sysusers "$pkgdir"/usr/lib/sysusers.d/rkt.conf
-  install -Dm644 dist/bash_completion/rkt.bash 
"$pkgdir"/usr/share/bash-completion/completions/rkt
-
-  cd dist/manpages
-  for f in *; do
-install -Dm644 "$f" "$pkgdir/usr/share/man/man1/$f"
-  done
-  cd ../..
-
-  cd build-$pkgname-$pkgver
-  install -dm755 "$pkgdir"/usr/bin "$pkgdir"/usr/lib/rkt/stage1-images
-  mv bin/{rkt,actool} "$pkgdir"/usr/bin
-  mv bin/stage1-*.aci "$pkgdir"/usr/lib/rkt/stage1-images/
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rkt/repos/community-x86_64/PKGBUILD (from rev 175417, 
rkt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-15 17:06:11 UTC (rev 175418)
@@ -0,0 +1,93 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+# Contributor: Yuval Adam  PGP-Key: 271386AA2EB7672F
+# Contributor: Kenny Rasschaert  
PGP-Key: 1F70454121E41419
+# Contributor: Adrián Pérez de Castro  
PGP-Key: 91C559DBE4C9123B
+# Contributor: Carl George  PGP-Key: 4BA2F7E101D9F512
+
+pkgname=rkt
+pkgver=1.6.0
+pkgrel=1
+pkgdesc="App container runtime"
+arch=('x86_64')
+url="https://github.com/coreos/rkt;
+license=(apache)
+depends=('glibc' 'openssl' 'zlib')

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

2016-05-15 Thread Massimiliano Torromeo
Date: Sunday, May 15, 2016 @ 19:05:52
  Author: mtorromeo
Revision: 175417

upgpkg: rkt 1.6.0-1

Updated to 1.6.0

Modified:
  rkt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-15 15:31:02 UTC (rev 175416)
+++ PKGBUILD2016-05-15 17:05:52 UTC (rev 175417)
@@ -7,7 +7,7 @@
 # Contributor: Carl George  PGP-Key: 4BA2F7E101D9F512
 
 pkgname=rkt
-pkgver=1.5.1
+pkgver=1.6.0
 pkgrel=1
 pkgdesc="App container runtime"
 arch=('x86_64')
@@ -18,21 +18,22 @@
  'intltool' 'gperf' 'git' 'libseccomp' 'bc')
 
 # stage1/usr_from_coreos/coreos-common.mk
-CCN_IMG_RELEASE=991.0.0
-CCN_SYSTEMD_VERSION=v225
+CCN_IMG_RELEASE=1032.0.0
+CCN_SYSTEMD_VERSION=v229
 
 # stage1/usr_from_kvm/kernel.mk
 KERNEL_VERSION=4.3.1
 
 source=(https://github.com/coreos/rkt/archive/v$pkgver/$pkgname-$pkgver.tar.gz
-
http://alpha.release.core-os.net/amd64-usr/$CCN_IMG_RELEASE/coreos_production_pxe_image.cpio.gz{,.sig}
+
coreos_production_pxe_image-$CCN_IMG_RELEASE.cpio.gz::http://alpha.release.core-os.net/amd64-usr/$CCN_IMG_RELEASE/coreos_production_pxe_image.cpio.gz
+
coreos_production_pxe_image-$CCN_IMG_RELEASE.cpio.gz.sig::http://alpha.release.core-os.net/amd64-usr/$CCN_IMG_RELEASE/coreos_production_pxe_image.cpio.gz.sig
 
https://www.kernel.org/pub/linux/kernel/v4.x/linux-$KERNEL_VERSION.tar.xz
 rkt.sysusers)
 noextract=(coreos_production_pxe_image.cpio.gz
linux-$KERNEL_VERSION.tar.xz)
 validpgpkeys=('04127D0BFABEC8871FFB2CCE50E0885593D2DCB4')
-sha256sums=('2a9320b0fe41551e88e8477e4223ef9e2b7ebaf9947829235b5e936dbd61f5d4'
-'33697d3d7c7458bbb160a5eb889ced34b001c35e22e10c86235042eb57ae51ed'
+sha256sums=('767f2ed21d6dbf00a7a264d0dbd84a2733d56dbe97bab90b3d99af47d33c9b5c'
+'2e34b18dc6d8a7f89ab6dd64ed405299171067f4d9f0bb2cf18b15be9985bed2'
 'SKIP'
 '11faaff6e7546038b868f524cdf42a5a1b67be9fdfd37d931723a8deb1811b72'
 '1ad8d343191be731289577d249a2467fbe5a69949117601e760b459f599d311f')
@@ -59,7 +60,7 @@
 --with-stage1-default-flavor=coreos \
--with-stage1-default-images-directory=/usr/lib/rkt/stage1-images \

--with-stage1-default-location=/usr/lib/rkt/stage1-images/stage1-coreos.aci \
-
--with-coreos-local-pxe-image-path="$srcdir"/coreos_production_pxe_image.cpio.gz
 \
+
--with-coreos-local-pxe-image-path="$srcdir"/coreos_production_pxe_image-$CCN_IMG_RELEASE.cpio.gz
 \
 --with-coreos-local-pxe-image-systemd-version=$CCN_SYSTEMD_VERSION
   make manpages
   make bash-completion


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

2016-05-15 Thread Andreas Radke
Date: Sunday, May 15, 2016 @ 17:51:14
  Author: andyrtr
Revision: 268067

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

Added:
  hplip/repos/extra-i686/PKGBUILD
(from rev 268066, hplip/trunk/PKGBUILD)
  hplip/repos/extra-i686/disable_upgrade.patch
(from rev 268066, hplip/trunk/disable_upgrade.patch)
  hplip/repos/extra-x86_64/PKGBUILD
(from rev 268066, hplip/trunk/PKGBUILD)
  hplip/repos/extra-x86_64/disable_upgrade.patch
(from rev 268066, hplip/trunk/disable_upgrade.patch)
Deleted:
  hplip/repos/extra-i686/PKGBUILD
  hplip/repos/extra-i686/disable_upgrade.patch
  hplip/repos/extra-i686/hplip.install
  hplip/repos/extra-x86_64/PKGBUILD
  hplip/repos/extra-x86_64/disable_upgrade.patch
  hplip/repos/extra-x86_64/hplip.install

+
 /PKGBUILD  |  172 +++
 /disable_upgrade.patch |   28 +
 extra-i686/PKGBUILD|   86 -
 extra-i686/disable_upgrade.patch   |   14 --
 extra-i686/hplip.install   |   18 ---
 extra-x86_64/PKGBUILD  |   86 -
 extra-x86_64/disable_upgrade.patch |   14 --
 extra-x86_64/hplip.install |   18 ---
 8 files changed, 200 insertions(+), 236 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-05-15 15:50:56 UTC (rev 268066)
+++ extra-i686/PKGBUILD 2016-05-15 15:51:14 UTC (rev 268067)
@@ -1,86 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Maintainer: Tom Gundersen 
-# Contributor : Rémy Oudompheng 
-# Contributor: Morgan LEFIEUX 
-
-pkgname=hplip
-pkgver=3.16.5
-pkgrel=2
-pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
-arch=('i686' 'x86_64')
-url="http://hplipopensource.com;
-license=('GPL')
-depends=('python-dbus' 'ghostscript' 'net-snmp' 'wget' 'foomatic-db-engine')
-makedepends=('python-pyqt4' 'python-gobject' 'sane' 'rpcbind' 'cups' 'libusb')
-optdepends=('cups: for printing support'
-'sane: for scanner support'
-'xsane: sane scanner frontend'
-'python-pillow: for commandline scanning support'
-'python-reportlab: for pdf output in hp-scan'
-'rpcbind: for network support'
-'python-pyqt5: for running GUI and hp-toolbox'
-'python-gobject: for running hp-toolbox'
-'hplip-plugin: binary blobs for specific devices (AUR) or run 
hp-setup to download the plugin'
-'libusb: for advanced usb support')
-install=hplip.install
-backup=('etc/hp/hplip.conf' 'etc/sane.d/dll.d/hpaio')
-source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
-disable_upgrade.patch)
-sha1sums=('59264a6668ab37871fd007fcee70d4932f11f9d7'
-  'SKIP'
-  '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e')
-validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 
-
-prepare() {
- cd $pkgname-$pkgver
- 
- # disable insecure update - https://bugs.archlinux.org/task/38083
- patch -Np0 -i ${srcdir}/disable_upgrade.patch
- 
- # https://bugs.archlinux.org/task/30085 - hack found in Gentoo
- # Use system foomatic-rip for hpijs driver instead of foomatic-rip-hplip
- # The hpcups driver does not use foomatic-rip
-   local i
-   for i in ppd/hpijs/*.ppd.gz ; do
-   rm -f ${i}.temp
-   gunzip -c ${i} | sed 's/foomatic-rip-hplip/foomatic-rip/g' | \
-   gzip > ${i}.temp || return 1
-   mv ${i}.temp ${i}
-   done
-   
- export AUTOMAKE='automake --foreign'
- autoreconf --force --install
-}
-
-build() {
- cd $pkgname-$pkgver
- ./configure --prefix=/usr \
- --enable-qt4 \
- --disable-foomatic-rip-hplip-install \
- --enable-foomatic-ppd-install \
- --enable-hpcups-install \
- --enable-new-hpcups \
- --enable-cups-ppd-install \
- --enable-cups-drv-install \
- --enable-hpijs-install \
- --enable-foomatic-drv-install \
- --enable-pp-build #--help
- make
-}
-
-package() {
- cd $pkgname-$pkgver
- make -j1 rulesdir=/usr/lib/udev/rules.d DESTDIR="$pkgdir/" install
- 
- # remove config provided by sane and autostart of hp-daemon
- rm -rf "$pkgdir"/etc/{sane.d,xdg}
- install -dm755 ${pkgdir}/etc/sane.d/dll.d
- echo hpaio > ${pkgdir}/etc/sane.d/dll.d/hpaio
- 
- # remove HAL .fdi file because HAL is no longer used
- rm -vrf "$pkgdir"/usr/share/hal
- 
- # remove rc script
- rm -vrf "$pkgdir"/etc/init.d
-}

Copied: hplip/repos/extra-i686/PKGBUILD (from rev 268066, hplip/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-05-15 15:51:14 UTC (rev 

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

2016-05-15 Thread Andreas Radke
Date: Sunday, May 15, 2016 @ 17:50:56
  Author: andyrtr
Revision: 268066

upgpkg: hplip 3.16.5-3

* remove obsolete install scriptlet
* use pyqt5 gui - FS#49344

Modified:
  hplip/trunk/PKGBUILD
Deleted:
  hplip/trunk/hplip.install

---+
 PKGBUILD  |8 
 hplip.install |   18 --
 2 files changed, 4 insertions(+), 22 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-15 15:47:57 UTC (rev 268065)
+++ PKGBUILD2016-05-15 15:50:56 UTC (rev 268066)
@@ -6,13 +6,13 @@
 
 pkgname=hplip
 pkgver=3.16.5
-pkgrel=2
+pkgrel=3
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
 url="http://hplipopensource.com;
 license=('GPL')
 depends=('python-dbus' 'ghostscript' 'net-snmp' 'wget' 'foomatic-db-engine')
-makedepends=('python-pyqt4' 'python-gobject' 'sane' 'rpcbind' 'cups' 'libusb')
+makedepends=('python-pyqt5' 'python-gobject' 'sane' 'rpcbind' 'cups' 'libusb')
 optdepends=('cups: for printing support'
 'sane: for scanner support'
 'xsane: sane scanner frontend'
@@ -23,7 +23,6 @@
 'python-gobject: for running hp-toolbox'
 'hplip-plugin: binary blobs for specific devices (AUR) or run 
hp-setup to download the plugin'
 'libusb: for advanced usb support')
-install=hplip.install
 backup=('etc/hp/hplip.conf' 'etc/sane.d/dll.d/hpaio')
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch)
@@ -56,7 +55,8 @@
 build() {
  cd $pkgname-$pkgver
  ./configure --prefix=/usr \
- --enable-qt4 \
+ --enable-qt5 \
+ --disable-qt4 \
  --disable-foomatic-rip-hplip-install \
  --enable-foomatic-ppd-install \
  --enable-hpcups-install \

Deleted: hplip.install
===
--- hplip.install   2016-05-15 15:47:57 UTC (rev 268065)
+++ hplip.install   2016-05-15 15:50:56 UTC (rev 268066)
@@ -1,18 +0,0 @@
-post_install() {
-  cat << EOF
-
-NOTE
-
-# If you want to use this driver with sane:
-#  echo "hpaio" >> /etc/sane.d/dll.conf
-
-EOF
-}
-
-post_upgrade() {
-  if [ "`vercmp $2 3.12.4-2`" -lt 0 ]; then
-# important upgrade notice
-echo "> Please remove your printer in cups, then add it"
-echo "> back and reconfigure it to make it work again!"
-  fi
-}


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

2016-05-15 Thread Jan Steffens
Date: Sunday, May 15, 2016 @ 17:47:57
  Author: heftig
Revision: 268065

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

Added:
  geocode-glib/repos/extra-i686/PKGBUILD
(from rev 268064, geocode-glib/trunk/PKGBUILD)
  geocode-glib/repos/extra-x86_64/PKGBUILD
(from rev 268064, geocode-glib/trunk/PKGBUILD)
Deleted:
  geocode-glib/repos/extra-i686/PKGBUILD
  geocode-glib/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-05-15 15:47:08 UTC (rev 268064)
+++ extra-i686/PKGBUILD 2016-05-15 15:47:57 UTC (rev 268065)
@@ -1,27 +0,0 @@
-#$Id:
-#Maintainer: Jan de Groot 
-
-pkgname=geocode-glib
-pkgver=3.20.1
-pkgrel=1
-pkgdesc="Geocode Helper library"
-arch=(i686 x86_64)
-license=('GPL')
-url="https://git.gnome.org/browse/geocode-glib/;
-depends=('glib2' 'json-glib' 'libsoup')
-makedepends=('intltool' 'gobject-introspection')
-options=('!emptydirs')
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('669fc832cabf8cc2f0fc4194a8fa464cdb9c03ebf9aca5353d7cf935ba8637a2')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="${pkgdir}" install
-}
-

Copied: geocode-glib/repos/extra-i686/PKGBUILD (from rev 268064, 
geocode-glib/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-05-15 15:47:57 UTC (rev 268065)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=geocode-glib
+pkgver=3.20.1
+pkgrel=2
+pkgdesc="Geocode Helper library"
+url="https://git.gnome.org/browse/geocode-glib/;
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(glib2 json-glib libsoup)
+makedepends=(intltool gobject-introspection gnome-common)
+options=(!emptydirs)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('669fc832cabf8cc2f0fc4194a8fa464cdb9c03ebf9aca5353d7cf935ba8637a2')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's/gnome/Adwaita/g' icons/Makefile.am
+  NOCONFIGURE=1 gnome-autogen.sh
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}
+

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-05-15 15:47:08 UTC (rev 268064)
+++ extra-x86_64/PKGBUILD   2016-05-15 15:47:57 UTC (rev 268065)
@@ -1,27 +0,0 @@
-#$Id:
-#Maintainer: Jan de Groot 
-
-pkgname=geocode-glib
-pkgver=3.20.1
-pkgrel=1
-pkgdesc="Geocode Helper library"
-arch=(i686 x86_64)
-license=('GPL')
-url="https://git.gnome.org/browse/geocode-glib/;
-depends=('glib2' 'json-glib' 'libsoup')
-makedepends=('intltool' 'gobject-introspection')
-options=('!emptydirs')
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('669fc832cabf8cc2f0fc4194a8fa464cdb9c03ebf9aca5353d7cf935ba8637a2')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="${pkgdir}" install
-}
-

Copied: geocode-glib/repos/extra-x86_64/PKGBUILD (from rev 268064, 
geocode-glib/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-05-15 15:47:57 UTC (rev 268065)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=geocode-glib
+pkgver=3.20.1
+pkgrel=2
+pkgdesc="Geocode Helper library"
+url="https://git.gnome.org/browse/geocode-glib/;
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(glib2 json-glib libsoup)
+makedepends=(intltool gobject-introspection gnome-common)
+options=(!emptydirs)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('669fc832cabf8cc2f0fc4194a8fa464cdb9c03ebf9aca5353d7cf935ba8637a2')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's/gnome/Adwaita/g' icons/Makefile.am
+  NOCONFIGURE=1 gnome-autogen.sh
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}
+


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

2016-05-15 Thread Jan Steffens
Date: Sunday, May 15, 2016 @ 17:47:08
  Author: heftig
Revision: 268064

3.20.1-2: Move to Adwaita icon theme

Modified:
  geocode-glib/trunk/PKGBUILD

--+
 PKGBUILD |   25 -
 1 file changed, 16 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-15 13:54:09 UTC (rev 268063)
+++ PKGBUILD2016-05-15 15:47:08 UTC (rev 268064)
@@ -1,19 +1,26 @@
-#$Id:
-#Maintainer: Jan de Groot 
+# $Id$
+# Maintainer: Jan de Groot 
+# Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=geocode-glib
 pkgver=3.20.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Geocode Helper library"
+url="https://git.gnome.org/browse/geocode-glib/;
 arch=(i686 x86_64)
-license=('GPL')
-url="https://git.gnome.org/browse/geocode-glib/;
-depends=('glib2' 'json-glib' 'libsoup')
-makedepends=('intltool' 'gobject-introspection')
-options=('!emptydirs')
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+license=(LGPL)
+depends=(glib2 json-glib libsoup)
+makedepends=(intltool gobject-introspection gnome-common)
+options=(!emptydirs)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
 sha256sums=('669fc832cabf8cc2f0fc4194a8fa464cdb9c03ebf9aca5353d7cf935ba8637a2')
 
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's/gnome/Adwaita/g' icons/Makefile.am
+  NOCONFIGURE=1 gnome-autogen.sh
+}
+
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr


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

2016-05-15 Thread Alexander Rødseth
Date: Sunday, May 15, 2016 @ 17:30:49
  Author: arodseth
Revision: 175415

upgpkg: geany 1.27-2

Modified:
  geany/trunk/PKGBUILD
Deleted:
  geany/trunk/geany.install

---+
 PKGBUILD  |9 -
 geany.install |   14 --
 2 files changed, 4 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-15 14:48:16 UTC (rev 175414)
+++ PKGBUILD2016-05-15 15:30:49 UTC (rev 175415)
@@ -7,7 +7,7 @@
 
 pkgname=geany
 pkgver=1.27
-pkgrel=1
+pkgrel=2
 pkgdesc='Fast and lightweight IDE'
 arch=('x86_64' 'i686')
 url='http://www.geany.org/'
@@ -17,16 +17,15 @@
 optdepends=('geany-plugins: various extra features'
 'vte: terminal support'
 'python2')
-install="$pkgname.install"
 source=("http://download.geany.org/$pkgname-$pkgver.tar.bz2;)
 sha256sums=('846ff699a5944c5c3c068ae0199d4c13946a668bfc6d03f8c79765667c20cadf')
 
 prepare() {
   cd "$pkgname-$pkgver"
-
+  
   # Python2 fix
-   sed -i '0,/on/s//on2/' data/templates/files/main.py
-
+  sed -i '0,/on/s//on2/' data/templates/files/main.py
+  
   # Syntax highlighting for PKGBUILD files
   sed -i 's/Sh=/Sh=PKGBUILD;/' data/filetype_extensions.conf
 }

Deleted: geany.install
===
--- geany.install   2016-05-15 14:48:16 UTC (rev 175414)
+++ geany.install   2016-05-15 15:30:49 UTC (rev 175415)
@@ -1,14 +0,0 @@
-post_upgrade() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_install() {
-  post_upgrade
-}
-
-post_remove() {
-  post_upgrade
-}
-
-# vim:set ts=2 sw=2 et:


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

2016-05-15 Thread Alexander Rødseth
Date: Sunday, May 15, 2016 @ 17:31:02
  Author: arodseth
Revision: 175416

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

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

+
 /PKGBUILD  |   90 +++
 community-i686/PKGBUILD|   46 ---
 community-i686/geany.install   |   14 --
 community-x86_64/PKGBUILD  |   46 ---
 community-x86_64/geany.install |   14 --
 5 files changed, 90 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-05-15 15:30:49 UTC (rev 175415)
+++ community-i686/PKGBUILD 2016-05-15 15:31:02 UTC (rev 175416)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Angel Velasquez 
-# Contributor: Ionut Biru  
-# Contributor: William Rea 
-# Contributor: Allan McRae 
-
-pkgname=geany
-pkgver=1.27
-pkgrel=1
-pkgdesc='Fast and lightweight IDE'
-arch=('x86_64' 'i686')
-url='http://www.geany.org/'
-license=('GPL')
-depends=('gtk2' 'hicolor-icon-theme' 'desktop-file-utils')
-makedepends=('perl-xml-parser' 'intltool')
-optdepends=('geany-plugins: various extra features'
-'vte: terminal support'
-'python2')
-install="$pkgname.install"
-source=("http://download.geany.org/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('846ff699a5944c5c3c068ae0199d4c13946a668bfc6d03f8c79765667c20cadf')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  # Python2 fix
-   sed -i '0,/on/s//on2/' data/templates/files/main.py
-
-  # Syntax highlighting for PKGBUILD files
-  sed -i 's/Sh=/Sh=PKGBUILD;/' data/filetype_extensions.conf
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
-}
-
-# getver: geany.org/Documentation/ChangeLog
-# vim:set ts=2 sw=2 et:

Copied: geany/repos/community-i686/PKGBUILD (from rev 175415, 
geany/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-05-15 15:31:02 UTC (rev 175416)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Angel Velasquez 
+# Contributor: Ionut Biru  
+# Contributor: William Rea 
+# Contributor: Allan McRae 
+
+pkgname=geany
+pkgver=1.27
+pkgrel=2
+pkgdesc='Fast and lightweight IDE'
+arch=('x86_64' 'i686')
+url='http://www.geany.org/'
+license=('GPL')
+depends=('gtk2' 'hicolor-icon-theme' 'desktop-file-utils')
+makedepends=('perl-xml-parser' 'intltool')
+optdepends=('geany-plugins: various extra features'
+'vte: terminal support'
+'python2')
+source=("http://download.geany.org/$pkgname-$pkgver.tar.bz2;)
+sha256sums=('846ff699a5944c5c3c068ae0199d4c13946a668bfc6d03f8c79765667c20cadf')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  
+  # Python2 fix
+  sed -i '0,/on/s//on2/' data/templates/files/main.py
+  
+  # Syntax highlighting for PKGBUILD files
+  sed -i 's/Sh=/Sh=PKGBUILD;/' data/filetype_extensions.conf
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+}
+
+# getver: geany.org/Documentation/ChangeLog
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/geany.install
===
--- community-i686/geany.install2016-05-15 15:30:49 UTC (rev 175415)
+++ community-i686/geany.install2016-05-15 15:31:02 UTC (rev 175416)
@@ -1,14 +0,0 @@
-post_upgrade() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_install() {
-  post_upgrade
-}
-
-post_remove() {
-  post_upgrade
-}
-
-# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-05-15 15:30:49 UTC (rev 175415)
+++ community-x86_64/PKGBUILD   2016-05-15 15:31:02 UTC (rev 175416)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Angel Velasquez 
-# Contributor: Ionut Biru  
-# Contributor: William Rea 
-# Contributor: Allan McRae 
-
-pkgname=geany
-pkgver=1.27
-pkgrel=1

[arch-commits] Commit in supervisor/repos/community-any (8 files)

2016-05-15 Thread Massimiliano Torromeo
Date: Sunday, May 15, 2016 @ 16:48:16
  Author: mtorromeo
Revision: 175414

archrelease: copy trunk to community-any

Added:
  supervisor/repos/community-any/PKGBUILD
(from rev 175413, supervisor/trunk/PKGBUILD)
  supervisor/repos/community-any/supervisor.logrotate
(from rev 175413, supervisor/trunk/supervisor.logrotate)
  supervisor/repos/community-any/supervisord.conf
(from rev 175413, supervisor/trunk/supervisord.conf)
  supervisor/repos/community-any/supervisord.service
(from rev 175413, supervisor/trunk/supervisord.service)
Deleted:
  supervisor/repos/community-any/PKGBUILD
  supervisor/repos/community-any/supervisor.logrotate
  supervisor/repos/community-any/supervisord.conf
  supervisor/repos/community-any/supervisord.service

--+
 PKGBUILD |   88 
 supervisor.logrotate |   12 +-
 supervisord.conf |  262 -
 supervisord.service  |   26 ++--
 4 files changed, 194 insertions(+), 194 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-15 14:47:53 UTC (rev 175413)
+++ PKGBUILD2016-05-15 14:48:16 UTC (rev 175414)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Daniele Paolella 
-
-pkgname=supervisor
-pkgver=3.2.3
-pkgrel=1
-pkgdesc="A system for controlling process state under UNIX"
-arch=('any')
-url="http://supervisord.org;
-license=('custom')
-depends=('python2-meld3' 'python2-setuptools')
-backup=('etc/supervisord.conf')
-source=("http://pypi.python.org/packages/source/s/$pkgname/$pkgname-$pkgver.tar.gz;
-'supervisord.service'
-'supervisor.logrotate'
-'supervisord.conf')
-sha256sums=('3d6f0304c8ce74ab2100dfc4ab0f70050568504216f9508a81b8ed269aec9705'
-'111f632081633dafae18ff069001e9ea78e9a24669ed75efc196f8d83d92f993'
-'7347d79c8b7f5cc59d5ffa31e4df64f92e89dee0dc84bdb3bdfcba212de93f4b'
-'fe0a60e34f67bf6ed7ca8731d9ce7657e00f37a43e0dfb96aa0df57adc4cd423')
-
-prepare() {
-   cd "$srcdir/$pkgname-$pkgver"
-   rm -rf "supervisor/medusa/"{debian,demo,docs,test}
-   find -type f -name "*.py" -exec sed -i 's|/usr/bin/env 
python|/usr/bin/env python2|' {} \;
-}
-
-build() {
-   cd "$srcdir/$pkgname-$pkgver"
-   python2 setup.py build
-}
-
-package() {
-   cd "$srcdir/$pkgname-$pkgver"
-   python2 setup.py install -O1 --skip-build --prefix=/usr --root="$pkgdir"
-   install -Dm600 "$srcdir/supervisord.conf" "$pkgdir/etc/supervisord.conf"
-   install -Dm644 "$srcdir/supervisor.logrotate" 
"$pkgdir/etc/logrotate.d/supervisor"
-   install -Dm644 "$srcdir/supervisord.service" 
"$pkgdir/usr/lib/systemd/system/supervisord.service"
-   install -d "$pkgdir/usr/share/licenses/$pkgname"
-   install -d "$pkgdir/var/log/$pkgname"
-   install -d "$pkgdir/etc/supervisor.d"
-   mv LICENSES.txt COPYRIGHT.txt "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: supervisor/repos/community-any/PKGBUILD (from rev 175413, 
supervisor/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-15 14:48:16 UTC (rev 175414)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Daniele Paolella 
+
+pkgname=supervisor
+pkgver=3.3.0
+pkgrel=1
+pkgdesc="A system for controlling process state under UNIX"
+arch=('any')
+url="http://supervisord.org;
+license=('custom')
+depends=('python2-meld3' 'python2-setuptools')
+backup=('etc/supervisord.conf')
+source=("https://files.pythonhosted.org/packages/source/s/$pkgname/$pkgname-$pkgver.tar.gz;
+'supervisord.service'
+'supervisor.logrotate'
+'supervisord.conf')
+sha256sums=('3176fb8a78c60164020e252e4a2b50b039cfec1f410b4562a843b66186188652'
+'111f632081633dafae18ff069001e9ea78e9a24669ed75efc196f8d83d92f993'
+'7347d79c8b7f5cc59d5ffa31e4df64f92e89dee0dc84bdb3bdfcba212de93f4b'
+'fe0a60e34f67bf6ed7ca8731d9ce7657e00f37a43e0dfb96aa0df57adc4cd423')
+
+prepare() {
+   cd "$srcdir/$pkgname-$pkgver"
+   rm -rf "supervisor/medusa/"{debian,demo,docs,test}
+   find -type f -name "*.py" -exec sed -i 's|/usr/bin/env 
python|/usr/bin/env python2|' {} \;
+}
+
+build() {
+   cd "$srcdir/$pkgname-$pkgver"
+   python2 setup.py build
+}
+
+package() {
+   cd "$srcdir/$pkgname-$pkgver"
+   python2 setup.py install -O1 --skip-build --prefix=/usr --root="$pkgdir"
+   install -Dm600 "$srcdir/supervisord.conf" "$pkgdir/etc/supervisord.conf"
+   install -Dm644 "$srcdir/supervisor.logrotate" 
"$pkgdir/etc/logrotate.d/supervisor"
+   install -Dm644 "$srcdir/supervisord.service" 
"$pkgdir/usr/lib/systemd/system/supervisord.service"
+   install -d 

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

2016-05-15 Thread Massimiliano Torromeo
Date: Sunday, May 15, 2016 @ 16:47:53
  Author: mtorromeo
Revision: 175413

upgpkg: supervisor 3.3.0-1

Updated to 3.3.0

Modified:
  supervisor/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-15 09:01:02 UTC (rev 175412)
+++ PKGBUILD2016-05-15 14:47:53 UTC (rev 175413)
@@ -3,7 +3,7 @@
 # Contributor: Daniele Paolella 
 
 pkgname=supervisor
-pkgver=3.2.3
+pkgver=3.3.0
 pkgrel=1
 pkgdesc="A system for controlling process state under UNIX"
 arch=('any')
@@ -11,11 +11,11 @@
 license=('custom')
 depends=('python2-meld3' 'python2-setuptools')
 backup=('etc/supervisord.conf')
-source=("http://pypi.python.org/packages/source/s/$pkgname/$pkgname-$pkgver.tar.gz;
+source=("https://files.pythonhosted.org/packages/source/s/$pkgname/$pkgname-$pkgver.tar.gz;
 'supervisord.service'
 'supervisor.logrotate'
 'supervisord.conf')
-sha256sums=('3d6f0304c8ce74ab2100dfc4ab0f70050568504216f9508a81b8ed269aec9705'
+sha256sums=('3176fb8a78c60164020e252e4a2b50b039cfec1f410b4562a843b66186188652'
 '111f632081633dafae18ff069001e9ea78e9a24669ed75efc196f8d83d92f993'
 '7347d79c8b7f5cc59d5ffa31e4df64f92e89dee0dc84bdb3bdfcba212de93f4b'
 'fe0a60e34f67bf6ed7ca8731d9ce7657e00f37a43e0dfb96aa0df57adc4cd423')


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

2016-05-15 Thread Jan Steffens
Date: Sunday, May 15, 2016 @ 15:54:09
  Author: heftig
Revision: 268063

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

Added:
  gnome-themes-standard/repos/extra-i686/PKGBUILD
(from rev 268062, gnome-themes-standard/trunk/PKGBUILD)
  gnome-themes-standard/repos/extra-x86_64/PKGBUILD
(from rev 268062, gnome-themes-standard/trunk/PKGBUILD)
Deleted:
  gnome-themes-standard/repos/extra-i686/PKGBUILD
  gnome-themes-standard/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-05-15 13:50:38 UTC (rev 268062)
+++ extra-i686/PKGBUILD 2016-05-15 13:54:09 UTC (rev 268063)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-themes-standard
-pkgver=3.20
-pkgrel=1
-pkgdesc="Default themes for the GNOME desktop"
-arch=(i686 x86_64)
-url="http://www.gnome.org;
-license=(GPL2)
-depends=(cantarell-fonts ttf-dejavu librsvg)
-makedepends=(intltool gtk2 gtk3)
-optdepends=('gtk-engines: HighContrast GTK2 theme')
-groups=(gnome)
-replaces=(gnome-themes)
-conflicts=(gnome-themes)
-options=('!emptydirs')
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('1cde84b34da310e6f2d403bfdbe9abb0798e5f07a1d1b4fde82af8e97edd3bdc')
-
-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
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gnome-themes-standard/repos/extra-i686/PKGBUILD (from rev 268062, 
gnome-themes-standard/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-05-15 13:54:09 UTC (rev 268063)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-themes-standard
+pkgver=3.20.2
+pkgrel=1
+pkgdesc="Default themes for the GNOME desktop"
+arch=(i686 x86_64)
+url="http://www.gnome.org;
+license=(GPL2)
+depends=(cantarell-fonts ttf-dejavu librsvg)
+makedepends=(intltool gtk2 gtk3)
+optdepends=('gtk-engines: HighContrast GTK2 theme')
+groups=(gnome)
+replaces=(gnome-themes)
+conflicts=(gnome-themes)
+options=('!emptydirs')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('9d0d9c4b2c9f9008301c3c1878ebb95859a735b7fd4a6a518802b9637e4a7915')
+
+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
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-05-15 13:50:38 UTC (rev 268062)
+++ extra-x86_64/PKGBUILD   2016-05-15 13:54:09 UTC (rev 268063)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-themes-standard
-pkgver=3.20
-pkgrel=1
-pkgdesc="Default themes for the GNOME desktop"
-arch=(i686 x86_64)
-url="http://www.gnome.org;
-license=(GPL2)
-depends=(cantarell-fonts ttf-dejavu librsvg)
-makedepends=(intltool gtk2 gtk3)
-optdepends=('gtk-engines: HighContrast GTK2 theme')
-groups=(gnome)
-replaces=(gnome-themes)
-conflicts=(gnome-themes)
-options=('!emptydirs')
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('1cde84b34da310e6f2d403bfdbe9abb0798e5f07a1d1b4fde82af8e97edd3bdc')
-
-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
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gnome-themes-standard/repos/extra-x86_64/PKGBUILD (from rev 268062, 
gnome-themes-standard/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-05-15 13:54:09 UTC (rev 268063)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-themes-standard
+pkgver=3.20.2
+pkgrel=1
+pkgdesc="Default themes for the GNOME desktop"
+arch=(i686 x86_64)
+url="http://www.gnome.org;
+license=(GPL2)
+depends=(cantarell-fonts ttf-dejavu librsvg)
+makedepends=(intltool gtk2 gtk3)
+optdepends=('gtk-engines: HighContrast GTK2 theme')
+groups=(gnome)
+replaces=(gnome-themes)
+conflicts=(gnome-themes)

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

2016-05-15 Thread Jan Steffens
Date: Sunday, May 15, 2016 @ 15:50:38
  Author: heftig
Revision: 268062

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

Added:
  gnote/repos/extra-i686/PKGBUILD
(from rev 268061, gnote/trunk/PKGBUILD)
  gnote/repos/extra-x86_64/PKGBUILD
(from rev 268061, gnote/trunk/PKGBUILD)
Deleted:
  gnote/repos/extra-i686/PKGBUILD
  gnote/repos/extra-i686/gnote.install
  gnote/repos/extra-x86_64/PKGBUILD
  gnote/repos/extra-x86_64/gnote.install

+
 /PKGBUILD  |   74 +++
 extra-i686/PKGBUILD|   39 --
 extra-i686/gnote.install   |   21 
 extra-x86_64/PKGBUILD  |   39 --
 extra-x86_64/gnote.install |   21 
 5 files changed, 74 insertions(+), 120 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-05-15 13:48:38 UTC (rev 268061)
+++ extra-i686/PKGBUILD 2016-05-15 13:50:38 UTC (rev 268062)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer:  Ionut Biru 
-# Contributor: uastasi 
-
-pkgname=gnote
-pkgver=3.20.0
-pkgrel=1
-pkgdesc='A note taking application'
-arch=('i686' 'x86_64')
-url='https://wiki.gnome.org/action/show/Apps/Gnote'
-license=('GPL3')
-depends=('gtkmm3' 'libxslt' 'hicolor-icon-theme' 'desktop-file-utils' 'dconf' 
'libsecret')
-makedepends=('intltool' 'itstool' 'boost')
-install=gnote.install
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('4c363595e6f2d1a9a640f02c83e4b8680ea6d3101315e59d39c4db2d585f81a9')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---libexecdir=/usr/lib/gnote \
---disable-scrollkeeper \
---disable-schemas-compile \
---disable-static
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnote/repos/extra-i686/PKGBUILD (from rev 268061, gnote/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-05-15 13:50:38 UTC (rev 268062)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer:  Ionut Biru 
+# Contributor: uastasi 
+
+pkgname=gnote
+pkgver=3.20.1
+pkgrel=1
+pkgdesc="A note taking application"
+url="https://wiki.gnome.org/Apps/Gnote;
+arch=(i686 x86_64)
+license=(GPL3)
+depends=(gtkmm3 gtkspell3 libxslt dconf libsecret)
+makedepends=(intltool itstool boost)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('75acffdc2c0cc8cd226dc4471e6624d523bbd86c415ef4e05be70cbbfd4014e7')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir=/usr/lib/$pkgname \
+--disable-schemas-compile \
+--disable-static
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/gnote.install
===
--- extra-i686/gnote.install2016-05-15 13:48:38 UTC (rev 268061)
+++ extra-i686/gnote.install2016-05-15 13:50:38 UTC (rev 268062)
@@ -1,21 +0,0 @@
-pkgname=gnote
-
-post_install() {
-glib-compile-schemas usr/share/glib-2.0/schemas
-gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-update-desktop-database -q
-}
-
-pre_upgrade() {
-if [ -f usr/share/gconf/schemas/${pkgname}.schemas ]; then
-usr/sbin/gconfpkg --uninstall ${pkgname}
-fi
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-05-15 13:48:38 UTC (rev 268061)
+++ extra-x86_64/PKGBUILD   2016-05-15 13:50:38 UTC (rev 268062)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer:  Ionut Biru 
-# Contributor: uastasi 
-
-pkgname=gnote
-pkgver=3.20.0
-pkgrel=1
-pkgdesc='A note taking application'
-arch=('i686' 'x86_64')
-url='https://wiki.gnome.org/action/show/Apps/Gnote'
-license=('GPL3')
-depends=('gtkmm3' 'libxslt' 'hicolor-icon-theme' 'desktop-file-utils' 'dconf' 
'libsecret')
-makedepends=('intltool' 'itstool' 'boost')
-install=gnote.install
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('4c363595e6f2d1a9a640f02c83e4b8680ea6d3101315e59d39c4db2d585f81a9')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
-

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

2016-05-15 Thread Jan Steffens
Date: Sunday, May 15, 2016 @ 15:48:38
  Author: heftig
Revision: 268061

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

Added:
  thunderbird/repos/extra-i686/PKGBUILD
(from rev 268060, thunderbird/trunk/PKGBUILD)
  thunderbird/repos/extra-i686/firefox-gcc-6.0.patch
(from rev 268060, thunderbird/trunk/firefox-gcc-6.0.patch)
  thunderbird/repos/extra-i686/mozconfig
(from rev 268060, thunderbird/trunk/mozconfig)
  thunderbird/repos/extra-i686/mozilla-1228540-1.patch
(from rev 268060, thunderbird/trunk/mozilla-1228540-1.patch)
  thunderbird/repos/extra-i686/mozilla-1228540.patch
(from rev 268060, thunderbird/trunk/mozilla-1228540.patch)
  thunderbird/repos/extra-i686/thunderbird-install-dir.patch
(from rev 268060, thunderbird/trunk/thunderbird-install-dir.patch)
  thunderbird/repos/extra-i686/thunderbird.desktop
(from rev 268060, thunderbird/trunk/thunderbird.desktop)
  thunderbird/repos/extra-i686/vendor.js
(from rev 268060, thunderbird/trunk/vendor.js)
  thunderbird/repos/extra-x86_64/PKGBUILD
(from rev 268060, thunderbird/trunk/PKGBUILD)
  thunderbird/repos/extra-x86_64/firefox-gcc-6.0.patch
(from rev 268060, thunderbird/trunk/firefox-gcc-6.0.patch)
  thunderbird/repos/extra-x86_64/mozconfig
(from rev 268060, thunderbird/trunk/mozconfig)
  thunderbird/repos/extra-x86_64/mozilla-1228540-1.patch
(from rev 268060, thunderbird/trunk/mozilla-1228540-1.patch)
  thunderbird/repos/extra-x86_64/mozilla-1228540.patch
(from rev 268060, thunderbird/trunk/mozilla-1228540.patch)
  thunderbird/repos/extra-x86_64/thunderbird-install-dir.patch
(from rev 268060, thunderbird/trunk/thunderbird-install-dir.patch)
  thunderbird/repos/extra-x86_64/thunderbird.desktop
(from rev 268060, thunderbird/trunk/thunderbird.desktop)
  thunderbird/repos/extra-x86_64/vendor.js
(from rev 268060, thunderbird/trunk/vendor.js)
Deleted:
  thunderbird/repos/extra-i686/PKGBUILD
  thunderbird/repos/extra-i686/firefox-gcc-6.0.patch
  thunderbird/repos/extra-i686/mozconfig
  thunderbird/repos/extra-i686/mozilla-1228540-1.patch
  thunderbird/repos/extra-i686/mozilla-1228540.patch
  thunderbird/repos/extra-i686/thunderbird-install-dir.patch
  thunderbird/repos/extra-i686/thunderbird.desktop
  thunderbird/repos/extra-i686/vendor.js
  thunderbird/repos/extra-x86_64/PKGBUILD
  thunderbird/repos/extra-x86_64/firefox-gcc-6.0.patch
  thunderbird/repos/extra-x86_64/mozconfig
  thunderbird/repos/extra-x86_64/mozilla-1228540-1.patch
  thunderbird/repos/extra-x86_64/mozilla-1228540.patch
  thunderbird/repos/extra-x86_64/thunderbird-install-dir.patch
  thunderbird/repos/extra-x86_64/thunderbird.desktop
  thunderbird/repos/extra-x86_64/vendor.js

+
 /PKGBUILD  |  226 
 /firefox-gcc-6.0.patch |   52 
 /mozconfig |   68 
 /mozilla-1228540-1.patch   |  168 
 /mozilla-1228540.patch |18276 +++
 /thunderbird-install-dir.patch |   24 
 /thunderbird.desktop   |  346 
 /vendor.js |   24 
 extra-i686/PKGBUILD|  113 
 extra-i686/firefox-gcc-6.0.patch   |   26 
 extra-i686/mozconfig   |   34 
 extra-i686/mozilla-1228540-1.patch |   84 
 extra-i686/mozilla-1228540.patch   | 9138 -
 extra-i686/thunderbird-install-dir.patch   |   12 
 extra-i686/thunderbird.desktop |  173 
 extra-i686/vendor.js   |9 
 extra-x86_64/PKGBUILD  |  113 
 extra-x86_64/firefox-gcc-6.0.patch |   26 
 extra-x86_64/mozconfig |   34 
 extra-x86_64/mozilla-1228540-1.patch   |   84 
 extra-x86_64/mozilla-1228540.patch | 9138 -
 extra-x86_64/thunderbird-install-dir.patch |   12 
 extra-x86_64/thunderbird.desktop   |  173 
 extra-x86_64/vendor.js |9 
 24 files changed, 19184 insertions(+), 19178 deletions(-)

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


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

2016-05-15 Thread Jan Steffens
Date: Sunday, May 15, 2016 @ 15:30:58
  Author: heftig
Revision: 268060

3.20.1-1

Modified:
  gnote/trunk/PKGBUILD
Deleted:
  gnote/trunk/gnote.install

---+
 PKGBUILD  |   20 +---
 gnote.install |   21 -
 2 files changed, 9 insertions(+), 32 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-15 13:27:18 UTC (rev 268059)
+++ PKGBUILD2016-05-15 13:30:58 UTC (rev 268060)
@@ -3,17 +3,16 @@
 # Contributor: uastasi 
 
 pkgname=gnote
-pkgver=3.20.0
+pkgver=3.20.1
 pkgrel=1
-pkgdesc='A note taking application'
-arch=('i686' 'x86_64')
-url='https://wiki.gnome.org/action/show/Apps/Gnote'
-license=('GPL3')
-depends=('gtkmm3' 'libxslt' 'hicolor-icon-theme' 'desktop-file-utils' 'dconf' 
'libsecret')
-makedepends=('intltool' 'itstool' 'boost')
-install=gnote.install
+pkgdesc="A note taking application"
+url="https://wiki.gnome.org/Apps/Gnote;
+arch=(i686 x86_64)
+license=(GPL3)
+depends=(gtkmm3 gtkspell3 libxslt dconf libsecret)
+makedepends=(intltool itstool boost)
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('4c363595e6f2d1a9a640f02c83e4b8680ea6d3101315e59d39c4db2d585f81a9')
+sha256sums=('75acffdc2c0cc8cd226dc4471e6624d523bbd86c415ef4e05be70cbbfd4014e7')
 
 build() {
   cd $pkgname-$pkgver
@@ -20,8 +19,7 @@
   ./configure --prefix=/usr \
 --sysconfdir=/etc \
 --localstatedir=/var \
---libexecdir=/usr/lib/gnote \
---disable-scrollkeeper \
+--libexecdir=/usr/lib/$pkgname \
 --disable-schemas-compile \
 --disable-static
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool

Deleted: gnote.install
===
--- gnote.install   2016-05-15 13:27:18 UTC (rev 268059)
+++ gnote.install   2016-05-15 13:30:58 UTC (rev 268060)
@@ -1,21 +0,0 @@
-pkgname=gnote
-
-post_install() {
-glib-compile-schemas usr/share/glib-2.0/schemas
-gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-update-desktop-database -q
-}
-
-pre_upgrade() {
-if [ -f usr/share/gconf/schemas/${pkgname}.schemas ]; then
-usr/sbin/gconfpkg --uninstall ${pkgname}
-fi
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}


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

2016-05-15 Thread Jan Steffens
Date: Sunday, May 15, 2016 @ 15:27:18
  Author: heftig
Revision: 268059

3.20.2-1

Modified:
  gnome-themes-standard/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-15 13:20:03 UTC (rev 268058)
+++ PKGBUILD2016-05-15 13:27:18 UTC (rev 268059)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-themes-standard
-pkgver=3.20
+pkgver=3.20.2
 pkgrel=1
 pkgdesc="Default themes for the GNOME desktop"
 arch=(i686 x86_64)
@@ -16,7 +16,7 @@
 conflicts=(gnome-themes)
 options=('!emptydirs')
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('1cde84b34da310e6f2d403bfdbe9abb0798e5f07a1d1b4fde82af8e97edd3bdc')
+sha256sums=('9d0d9c4b2c9f9008301c3c1878ebb95859a735b7fd4a6a518802b9637e4a7915')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in thunderbird/trunk (PKGBUILD vendor.js)

2016-05-15 Thread Jan Steffens
Date: Sunday, May 15, 2016 @ 15:20:03
  Author: heftig
Revision: 268058

45.1.0-2: FS#49331 disable JIT until fixed

Modified:
  thunderbird/trunk/PKGBUILD
  thunderbird/trunk/vendor.js

---+
 PKGBUILD  |4 ++--
 vendor.js |3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-15 12:09:40 UTC (rev 268057)
+++ PKGBUILD2016-05-15 13:20:03 UTC (rev 268058)
@@ -7,7 +7,7 @@
 
 pkgname=thunderbird
 pkgver=45.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Standalone mail and news reader from mozilla.org"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')
@@ -32,7 +32,7 @@
 '4d1e1ddabc9e975ed39f49e134559a29e01cd49439e358233f1ede43bf5a52bf'
 '2588c567fec88b44b65f0cd111e8769361c138d4c964310684f7bb80066f8f9f'
 'd1ccbaf0973615c57f7893355e5cd3a89efb4e91071d0ec376e429b50cf6ed19'
-'e4ea8e6788163d9f8db8f1f40023db3ea0a1358f9a4510169f2d4c4fe6a887ed')
+'8f9ee921896b939e36d089c8ff544bc2b0a8b56dd5a2b4f5e75a19a6e1849284')
 
 # Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
 # Note: These are for Arch Linux use ONLY. For your own distribution, please

Modified: vendor.js
===
--- vendor.js   2016-05-15 12:09:40 UTC (rev 268057)
+++ vendor.js   2016-05-15 13:20:03 UTC (rev 268058)
@@ -7,3 +7,6 @@
 // Don't disable our bundled extensions in the application directory
 pref("extensions.autoDisableScopes", 11);
 pref("extensions.shownSelectionUI", true);
+
+// https://bugzilla.mozilla.org/show_bug.cgi?id=1245783
+pref("javascript.options.ion", false);


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

2016-05-15 Thread Andreas Radke
Date: Sunday, May 15, 2016 @ 14:09:21
  Author: andyrtr
Revision: 268056

* put config files under backup control
* enable hpaio scanner driver; FS#49340

Modified:
  hplip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-15 07:37:26 UTC (rev 268055)
+++ PKGBUILD2016-05-15 12:09:21 UTC (rev 268056)
@@ -6,7 +6,7 @@
 
 pkgname=hplip
 pkgver=3.16.5
-pkgrel=1
+pkgrel=2
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
 url="http://hplipopensource.com;
@@ -24,6 +24,7 @@
 'hplip-plugin: binary blobs for specific devices (AUR) or run 
hp-setup to download the plugin'
 'libusb: for advanced usb support')
 install=hplip.install
+backup=('etc/hp/hplip.conf' 'etc/sane.d/dll.d/hpaio')
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch)
 sha1sums=('59264a6668ab37871fd007fcee70d4932f11f9d7'
@@ -74,6 +75,8 @@
  
  # remove config provided by sane and autostart of hp-daemon
  rm -rf "$pkgdir"/etc/{sane.d,xdg}
+ install -dm755 ${pkgdir}/etc/sane.d/dll.d
+ echo hpaio > ${pkgdir}/etc/sane.d/dll.d/hpaio
  
  # remove HAL .fdi file because HAL is no longer used
  rm -vrf "$pkgdir"/usr/share/hal


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

2016-05-15 Thread Andreas Radke
Date: Sunday, May 15, 2016 @ 14:09:40
  Author: andyrtr
Revision: 268057

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

Added:
  hplip/repos/extra-i686/PKGBUILD
(from rev 268056, hplip/trunk/PKGBUILD)
  hplip/repos/extra-i686/disable_upgrade.patch
(from rev 268056, hplip/trunk/disable_upgrade.patch)
  hplip/repos/extra-i686/hplip.install
(from rev 268056, hplip/trunk/hplip.install)
  hplip/repos/extra-x86_64/PKGBUILD
(from rev 268056, hplip/trunk/PKGBUILD)
  hplip/repos/extra-x86_64/disable_upgrade.patch
(from rev 268056, hplip/trunk/disable_upgrade.patch)
  hplip/repos/extra-x86_64/hplip.install
(from rev 268056, hplip/trunk/hplip.install)
Deleted:
  hplip/repos/extra-i686/PKGBUILD
  hplip/repos/extra-i686/disable_upgrade.patch
  hplip/repos/extra-i686/hplip.install
  hplip/repos/extra-x86_64/PKGBUILD
  hplip/repos/extra-x86_64/disable_upgrade.patch
  hplip/repos/extra-x86_64/hplip.install

+
 /PKGBUILD  |  172 +++
 /disable_upgrade.patch |   28 +
 /hplip.install |   36 +++
 extra-i686/PKGBUILD|   83 
 extra-i686/disable_upgrade.patch   |   14 --
 extra-i686/hplip.install   |   18 ---
 extra-x86_64/PKGBUILD  |   83 
 extra-x86_64/disable_upgrade.patch |   14 --
 extra-x86_64/hplip.install |   18 ---
 9 files changed, 236 insertions(+), 230 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-05-15 12:09:21 UTC (rev 268056)
+++ extra-i686/PKGBUILD 2016-05-15 12:09:40 UTC (rev 268057)
@@ -1,83 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Maintainer: Tom Gundersen 
-# Contributor : Rémy Oudompheng 
-# Contributor: Morgan LEFIEUX 
-
-pkgname=hplip
-pkgver=3.16.5
-pkgrel=1
-pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
-arch=('i686' 'x86_64')
-url="http://hplipopensource.com;
-license=('GPL')
-depends=('python-dbus' 'ghostscript' 'net-snmp' 'wget' 'foomatic-db-engine')
-makedepends=('python-pyqt4' 'python-gobject' 'sane' 'rpcbind' 'cups' 'libusb')
-optdepends=('cups: for printing support'
-'sane: for scanner support'
-'xsane: sane scanner frontend'
-'python-pillow: for commandline scanning support'
-'python-reportlab: for pdf output in hp-scan'
-'rpcbind: for network support'
-'python-pyqt5: for running GUI and hp-toolbox'
-'python-gobject: for running hp-toolbox'
-'hplip-plugin: binary blobs for specific devices (AUR) or run 
hp-setup to download the plugin'
-'libusb: for advanced usb support')
-install=hplip.install
-source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
-disable_upgrade.patch)
-sha1sums=('59264a6668ab37871fd007fcee70d4932f11f9d7'
-  'SKIP'
-  '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e')
-validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux 
Imaging and Printing) 
-
-prepare() {
- cd $pkgname-$pkgver
- 
- # disable insecure update - https://bugs.archlinux.org/task/38083
- patch -Np0 -i ${srcdir}/disable_upgrade.patch
- 
- # https://bugs.archlinux.org/task/30085 - hack found in Gentoo
- # Use system foomatic-rip for hpijs driver instead of foomatic-rip-hplip
- # The hpcups driver does not use foomatic-rip
-   local i
-   for i in ppd/hpijs/*.ppd.gz ; do
-   rm -f ${i}.temp
-   gunzip -c ${i} | sed 's/foomatic-rip-hplip/foomatic-rip/g' | \
-   gzip > ${i}.temp || return 1
-   mv ${i}.temp ${i}
-   done
-   
- export AUTOMAKE='automake --foreign'
- autoreconf --force --install
-}
-
-build() {
- cd $pkgname-$pkgver
- ./configure --prefix=/usr \
- --enable-qt4 \
- --disable-foomatic-rip-hplip-install \
- --enable-foomatic-ppd-install \
- --enable-hpcups-install \
- --enable-new-hpcups \
- --enable-cups-ppd-install \
- --enable-cups-drv-install \
- --enable-hpijs-install \
- --enable-foomatic-drv-install \
- --enable-pp-build #--help
- make
-}
-
-package() {
- cd $pkgname-$pkgver
- make -j1 rulesdir=/usr/lib/udev/rules.d DESTDIR="$pkgdir/" install
- 
- # remove config provided by sane and autostart of hp-daemon
- rm -rf "$pkgdir"/etc/{sane.d,xdg}
- 
- # remove HAL .fdi file because HAL is no longer used
- rm -vrf "$pkgdir"/usr/share/hal
- 
- # remove rc script
- rm -vrf "$pkgdir"/etc/init.d
-}

Copied: hplip/repos/extra-i686/PKGBUILD (from rev 268056, hplip/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD  

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

2016-05-15 Thread Felix Yan
Date: Sunday, May 15, 2016 @ 11:01:02
  Author: fyan
Revision: 175412

archrelease: copy trunk to community-any

Added:
  eslint/repos/community-any/PKGBUILD
(from rev 175411, eslint/trunk/PKGBUILD)
Deleted:
  eslint/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-05-15 09:00:42 UTC (rev 175411)
+++ PKGBUILD2016-05-15 09:01:02 UTC (rev 175412)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=eslint
-pkgver=2.10.0
-pkgrel=1
-pkgdesc='An AST-based pattern checker for JavaScript'
-arch=('any')
-url='http://eslint.org'
-license=('MIT')
-depends=('nodejs')
-makedepends=('npm')
-source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-md5sums=('43b5dd34e3b8f3714970dcac124e5f25')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-
-  # Fix permissions
-  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
-
-  install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
-  ln -s ../../../lib/node_modules/eslint/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: eslint/repos/community-any/PKGBUILD (from rev 175411, 
eslint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-05-15 09:01:02 UTC (rev 175412)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=eslint
+pkgver=2.10.1
+pkgrel=1
+pkgdesc='An AST-based pattern checker for JavaScript'
+arch=('any')
+url='http://eslint.org'
+license=('MIT')
+depends=('nodejs')
+makedepends=('npm')
+source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+md5sums=('864975670af46b1b6b6ab14fa5da8e7f')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  rm -r "$pkgdir"/usr/etc
+
+  # Fix permissions
+  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
+
+  install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
+  ln -s ../../../lib/node_modules/eslint/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2016-05-15 Thread Felix Yan
Date: Sunday, May 15, 2016 @ 11:00:42
  Author: fyan
Revision: 175411

upgpkg: eslint 2.10.1-1

Modified:
  eslint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-15 05:14:56 UTC (rev 175410)
+++ PKGBUILD2016-05-15 09:00:42 UTC (rev 175411)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=eslint
-pkgver=2.10.0
+pkgver=2.10.1
 pkgrel=1
 pkgdesc='An AST-based pattern checker for JavaScript'
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('npm')
 source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-md5sums=('43b5dd34e3b8f3714970dcac124e5f25')
+md5sums=('864975670af46b1b6b6ab14fa5da8e7f')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2016-05-15 Thread Pierre Schmitz
Date: Sunday, May 15, 2016 @ 09:37:26
  Author: pierre
Revision: 268055

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

Added:
  php-apcu/repos/extra-i686/PKGBUILD
(from rev 268054, php-apcu/trunk/PKGBUILD)
  php-apcu/repos/extra-i686/apcu.ini
(from rev 268054, php-apcu/trunk/apcu.ini)
  php-apcu/repos/extra-x86_64/PKGBUILD
(from rev 268054, php-apcu/trunk/PKGBUILD)
  php-apcu/repos/extra-x86_64/apcu.ini
(from rev 268054, php-apcu/trunk/apcu.ini)
Deleted:
  php-apcu/repos/extra-i686/PKGBUILD
  php-apcu/repos/extra-i686/apcu.ini
  php-apcu/repos/extra-x86_64/PKGBUILD
  php-apcu/repos/extra-x86_64/apcu.ini

---+
 /PKGBUILD |   88 
 /apcu.ini |6 +++
 extra-i686/PKGBUILD   |   44 
 extra-i686/apcu.ini   |3 -
 extra-x86_64/PKGBUILD |   44 
 extra-x86_64/apcu.ini |3 -
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-05-15 07:37:09 UTC (rev 268054)
+++ extra-i686/PKGBUILD 2016-05-15 07:37:26 UTC (rev 268055)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz 
-
-pkgname=php-apcu
-pkgver=5.1.3
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc='A userland caching module for PHP'
-url='http://pecl.php.net/package/APCu'
-depends=('php')
-license=('PHP')
-source=("http://pecl.php.net/get/apcu-$pkgver.tgz;
-'apcu.ini')
-backup=('etc/php/conf.d/apcu.ini')
-md5sums=('5eb70215c5259196e57ce630b1a1d6b2'
- 'a353f7efe61928aa2162720789fa171f')
-
-build() {
-   cd $srcdir/apcu-$pkgver
-
-   phpize
-   ./configure --prefix=/usr
-   make
-}
-
-check() {
-   cd $srcdir/apcu-$pkgver
-
-   export REPORT_EXIT_STATUS=1
-   export NO_INTERACTION=1
-   export SKIP_ONLINE_TESTS=1
-   export SKIP_SLOW_TESTS=1
-   make test
-}
-
-package() {
-   cd $srcdir/apcu-$pkgver
-
-   make INSTALL_ROOT=$pkgdir install
-
-   install -D -m644 $srcdir/apcu.ini $pkgdir/etc/php/conf.d/apcu.ini
-   install -D -m644 apc.php $pkgdir/usr/share/webapps/php-apcu/apc.php
-   install -D -m644 INSTALL $pkgdir/usr/share/doc/php-apcu/install.txt
-}

Copied: php-apcu/repos/extra-i686/PKGBUILD (from rev 268054, 
php-apcu/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-05-15 07:37:26 UTC (rev 268055)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=php-apcu
+pkgver=5.1.4
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc='A userland caching module for PHP'
+url='http://pecl.php.net/package/APCu'
+depends=('php')
+license=('PHP')
+source=("http://pecl.php.net/get/apcu-$pkgver.tgz;
+'apcu.ini')
+backup=('etc/php/conf.d/apcu.ini')
+md5sums=('af23ab91d9d1de142c940dbf2b2398df'
+ 'a353f7efe61928aa2162720789fa171f')
+
+build() {
+   cd $srcdir/apcu-$pkgver
+
+   phpize
+   ./configure --prefix=/usr
+   make
+}
+
+check() {
+   cd $srcdir/apcu-$pkgver
+
+   export REPORT_EXIT_STATUS=1
+   export NO_INTERACTION=1
+   export SKIP_ONLINE_TESTS=1
+   export SKIP_SLOW_TESTS=1
+   make test
+}
+
+package() {
+   cd $srcdir/apcu-$pkgver
+
+   make INSTALL_ROOT=$pkgdir install
+
+   install -D -m644 $srcdir/apcu.ini $pkgdir/etc/php/conf.d/apcu.ini
+   install -D -m644 apc.php $pkgdir/usr/share/webapps/php-apcu/apc.php
+   install -D -m644 INSTALL $pkgdir/usr/share/doc/php-apcu/install.txt
+}

Deleted: extra-i686/apcu.ini
===
--- extra-i686/apcu.ini 2016-05-15 07:37:09 UTC (rev 268054)
+++ extra-i686/apcu.ini 2016-05-15 07:37:26 UTC (rev 268055)
@@ -1,3 +0,0 @@
-;extension=apcu.so
-; install php-apcu-bc and enable apc.so for APC compatibility
-;extension=apc.so

Copied: php-apcu/repos/extra-i686/apcu.ini (from rev 268054, 
php-apcu/trunk/apcu.ini)
===
--- extra-i686/apcu.ini (rev 0)
+++ extra-i686/apcu.ini 2016-05-15 07:37:26 UTC (rev 268055)
@@ -0,0 +1,3 @@
+;extension=apcu.so
+; install php-apcu-bc and enable apc.so for APC compatibility
+;extension=apc.so

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-05-15 07:37:09 UTC (rev 268054)
+++ extra-x86_64/PKGBUILD   2016-05-15 07:37:26 UTC (rev 268055)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz 
-
-pkgname=php-apcu
-pkgver=5.1.3
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc='A userland caching module for PHP'
-url='http://pecl.php.net/package/APCu'
-depends=('php')
-license=('PHP')
-source=("http://pecl.php.net/get/apcu-$pkgver.tgz;
-

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

2016-05-15 Thread Pierre Schmitz
Date: Sunday, May 15, 2016 @ 09:37:09
  Author: pierre
Revision: 268054

upgpkg: php-apcu 5.1.4-1

Modified:
  php-apcu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-15 02:32:38 UTC (rev 268053)
+++ PKGBUILD2016-05-15 07:37:09 UTC (rev 268054)
@@ -2,7 +2,7 @@
 # Maintainer: Pierre Schmitz 
 
 pkgname=php-apcu
-pkgver=5.1.3
+pkgver=5.1.4
 pkgrel=1
 arch=('i686' 'x86_64')
 pkgdesc='A userland caching module for PHP'
@@ -12,7 +12,7 @@
 source=("http://pecl.php.net/get/apcu-$pkgver.tgz;
 'apcu.ini')
 backup=('etc/php/conf.d/apcu.ini')
-md5sums=('5eb70215c5259196e57ce630b1a1d6b2'
+md5sums=('af23ab91d9d1de142c940dbf2b2398df'
  'a353f7efe61928aa2162720789fa171f')
 
 build() {