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

2017-07-17 Thread Felix Yan
Date: Tuesday, July 18, 2017 @ 05:38:08
  Author: felixonmars
Revision: 300743

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

Added:
  python-cryptography/repos/testing-i686/
  python-cryptography/repos/testing-i686/PKGBUILD
(from rev 300742, python-cryptography/trunk/PKGBUILD)
  python-cryptography/repos/testing-x86_64/
  python-cryptography/repos/testing-x86_64/PKGBUILD
(from rev 300742, python-cryptography/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   55 ++
 testing-x86_64/PKGBUILD |   55 ++
 2 files changed, 110 insertions(+)

Copied: python-cryptography/repos/testing-i686/PKGBUILD (from rev 300742, 
python-cryptography/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-07-18 05:38:08 UTC (rev 300743)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-cryptography
+pkgname=('python-cryptography' 'python2-cryptography')
+pkgver=2.0
+pkgrel=1
+pkgdesc="A package designed to expose cryptographic recipes and primitives to 
Python developers"
+arch=('i686' 'x86_64')
+license=('Apache')
+url="http://pypi.python.org/pypi/cryptography;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six' 'python-cffi'
+ 'python2-cffi' 'python2-enum34' 'python-pyasn1' 'python2-pyasn1' 
'python-idna'
+ 'python2-idna' 'python2-ipaddress' 'python-asn1crypto' 
'python2-asn1crypto')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
"python-cryptography-vectors=$pkgver"
+  "python2-cryptography-vectors=$pkgver" 'python-iso8601' 
'python2-iso8601'
+  'python-pretend' 'python2-pretend' 'python-hypothesis' 
'python2-hypothesis'
+  'python-pytz' 'python2-pytz')
+source=("https://pypi.io/packages/source/c/cryptography/cryptography-$pkgver.tar.gz;)
+sha512sums=('a5a0a687e6d31adbf25510da085fa34790ca76668c2b12dbadc0eae0ef8c035bc6269982b7704ea770bcc569c1e55fb06bc8a81975f3456fb2d1a70c3589a303')
+
+prepare() {
+  cp -a cryptography-${pkgver}{,-python2}
+}
+
+build() {
+  cd "$srcdir"/cryptography-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/cryptography-$pkgver-python2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/cryptography-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/cryptography-$pkgver-python2
+  python2 setup.py pytest
+}
+
+package_python-cryptography() {
+  depends=('python-six' 'python-cffi' 'python-idna' 'python-setuptools' 
'python-asn1crypto')
+
+  cd cryptography-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+package_python2-cryptography() {
+  depends=('python2-six' 'python2-cffi' 'python2-enum34' 'python2-idna' 
'python2-ipaddress'
+   'python2-setuptools' 'python2-asn1crypto')
+
+  cd cryptography-$pkgver-python2
+  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}

Copied: python-cryptography/repos/testing-x86_64/PKGBUILD (from rev 300742, 
python-cryptography/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-07-18 05:38:08 UTC (rev 300743)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-cryptography
+pkgname=('python-cryptography' 'python2-cryptography')
+pkgver=2.0
+pkgrel=1
+pkgdesc="A package designed to expose cryptographic recipes and primitives to 
Python developers"
+arch=('i686' 'x86_64')
+license=('Apache')
+url="http://pypi.python.org/pypi/cryptography;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six' 'python-cffi'
+ 'python2-cffi' 'python2-enum34' 'python-pyasn1' 'python2-pyasn1' 
'python-idna'
+ 'python2-idna' 'python2-ipaddress' 'python-asn1crypto' 
'python2-asn1crypto')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
"python-cryptography-vectors=$pkgver"
+  "python2-cryptography-vectors=$pkgver" 'python-iso8601' 
'python2-iso8601'
+  'python-pretend' 'python2-pretend' 'python-hypothesis' 
'python2-hypothesis'
+  'python-pytz' 'python2-pytz')
+source=("https://pypi.io/packages/source/c/cryptography/cryptography-$pkgver.tar.gz;)
+sha512sums=('a5a0a687e6d31adbf25510da085fa34790ca76668c2b12dbadc0eae0ef8c035bc6269982b7704ea770bcc569c1e55fb06bc8a81975f3456fb2d1a70c3589a303')
+
+prepare() {
+  cp -a cryptography-${pkgver}{,-python2}
+}
+
+build() {
+  cd "$srcdir"/cryptography-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/cryptography-$pkgver-python2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/cryptography-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/cryptography-$pkgver-python2
+  python2 setup.py pytest

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

2017-07-17 Thread Felix Yan
Date: Tuesday, July 18, 2017 @ 05:37:23
  Author: felixonmars
Revision: 300742

upgpkg: python-cryptography 2.0-1

Modified:
  python-cryptography/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-18 03:52:04 UTC (rev 300741)
+++ PKGBUILD2017-07-18 05:37:23 UTC (rev 300742)
@@ -3,7 +3,7 @@
 
 pkgbase=python-cryptography
 pkgname=('python-cryptography' 'python2-cryptography')
-pkgver=1.9
+pkgver=2.0
 pkgrel=1
 pkgdesc="A package designed to expose cryptographic recipes and primitives to 
Python developers"
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
   'python-pretend' 'python2-pretend' 'python-hypothesis' 
'python2-hypothesis'
   'python-pytz' 'python2-pytz')
 
source=("https://pypi.io/packages/source/c/cryptography/cryptography-$pkgver.tar.gz;)
-sha512sums=('815e9c09366935f8603a3e6e74c28ce79175596d00dbcd19d3792505237bd1cf953a4f401c2b97e4beaa7f2bbdcf9d7f95c4753d001a07fa816830af97cdd24e')
+sha512sums=('a5a0a687e6d31adbf25510da085fa34790ca76668c2b12dbadc0eae0ef8c035bc6269982b7704ea770bcc569c1e55fb06bc8a81975f3456fb2d1a70c3589a303')
 
 prepare() {
   cp -a cryptography-${pkgver}{,-python2}


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

2017-07-17 Thread Felix Yan
Date: Tuesday, July 18, 2017 @ 04:36:18
  Author: felixonmars
Revision: 245533

archrelease: copy trunk to community-any

Added:
  python-cryptography-vectors/repos/community-any/PKGBUILD
(from rev 245532, python-cryptography-vectors/trunk/PKGBUILD)
Deleted:
  python-cryptography-vectors/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-07-18 04:35:46 UTC (rev 245532)
+++ PKGBUILD2017-07-18 04:36:18 UTC (rev 245533)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-cryptography-vectors
-pkgname=('python-cryptography-vectors' 'python2-cryptography-vectors')
-pkgver=1.9
-pkgrel=1
-pkgdesc="Test vectors for the cryptography package"
-arch=('any')
-license=('Apache')
-url="http://pypi.python.org/pypi/cryptography-vectors;
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("https://pypi.io/packages/source/c/cryptography-vectors/cryptography_vectors-${pkgver}.tar.gz;)
-sha512sums=('3c37dc39496b66539f54bf377b4653b59abaa81fc9fbd68e2d337acbfe9c7fd80801b37c2f7698356b22fb9bcd9f8a41ff95ee405b208c267c0fcba56ead')
-
-prepare() {
-   cp -a cryptography_vectors-$pkgver{,-python2}
-}
-
-package_python-cryptography-vectors() {
-   depends=('python')
- 
-   cd cryptography_vectors-$pkgver
-   python3 setup.py install --root="$pkgdir" --optimize=1
-}
- 
-package_python2-cryptography-vectors() {
-   depends=('python2')
- 
-   cd cryptography_vectors-$pkgver-python2
-   python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-cryptography-vectors/repos/community-any/PKGBUILD (from rev 
245532, python-cryptography-vectors/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-07-18 04:36:18 UTC (rev 245533)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-cryptography-vectors
+pkgname=('python-cryptography-vectors' 'python2-cryptography-vectors')
+pkgver=2.0
+pkgrel=1
+pkgdesc="Test vectors for the cryptography package"
+arch=('any')
+license=('Apache')
+url="http://pypi.python.org/pypi/cryptography-vectors;
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("https://pypi.io/packages/source/c/cryptography-vectors/cryptography_vectors-${pkgver}.tar.gz;)
+sha512sums=('827c5b56322fc2000c51d9a0542e147e2e011cf7a92e9e27660a32da3582ec71bcd5f166c3e920c01baa348706c8c3edbcab387c0427ace27a7d5f2746f3a4c5')
+
+prepare() {
+   cp -a cryptography_vectors-$pkgver{,-python2}
+}
+
+package_python-cryptography-vectors() {
+   depends=('python')
+ 
+   cd cryptography_vectors-$pkgver
+   python3 setup.py install --root="$pkgdir" --optimize=1
+}
+ 
+package_python2-cryptography-vectors() {
+   depends=('python2')
+ 
+   cd cryptography_vectors-$pkgver-python2
+   python2 setup.py install --root="$pkgdir" --optimize=1
+}


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

2017-07-17 Thread Felix Yan
Date: Tuesday, July 18, 2017 @ 04:35:46
  Author: felixonmars
Revision: 245532

upgpkg: python-cryptography-vectors 2.0-1

Modified:
  python-cryptography-vectors/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-18 04:34:02 UTC (rev 245531)
+++ PKGBUILD2017-07-18 04:35:46 UTC (rev 245532)
@@ -3,7 +3,7 @@
 
 pkgbase=python-cryptography-vectors
 pkgname=('python-cryptography-vectors' 'python2-cryptography-vectors')
-pkgver=1.9
+pkgver=2.0
 pkgrel=1
 pkgdesc="Test vectors for the cryptography package"
 arch=('any')
@@ -11,7 +11,7 @@
 url="http://pypi.python.org/pypi/cryptography-vectors;
 makedepends=('python-setuptools' 'python2-setuptools')
 
source=("https://pypi.io/packages/source/c/cryptography-vectors/cryptography_vectors-${pkgver}.tar.gz;)
-sha512sums=('3c37dc39496b66539f54bf377b4653b59abaa81fc9fbd68e2d337acbfe9c7fd80801b37c2f7698356b22fb9bcd9f8a41ff95ee405b208c267c0fcba56ead')
+sha512sums=('827c5b56322fc2000c51d9a0542e147e2e011cf7a92e9e27660a32da3582ec71bcd5f166c3e920c01baa348706c8c3edbcab387c0427ace27a7d5f2746f3a4c5')
 
 prepare() {
cp -a cryptography_vectors-$pkgver{,-python2}


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

2017-07-17 Thread Felix Yan
Date: Tuesday, July 18, 2017 @ 04:34:02
  Author: felixonmars
Revision: 245531

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-07-18 04:33:09 UTC (rev 245530)
+++ PKGBUILD2017-07-18 04:34:02 UTC (rev 245531)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-pytest-mock
-pkgname=('python-pytest-mock' 'python2-pytest-mock')
-pkgver=1.6.0
-pkgrel=1
-pkgdesc="Thin-wrapper around the mock package for easier use with py.test"
-arch=('any')
-license=('LGPL3')
-url="https://github.com/pytest-dev/pytest-mock/;
-makedepends=('python-pytest' 'python2-pytest' 'python2-mock' 
'python-setuptools-scm'
- 'python2-setuptools-scm')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-mock/archive/v$pkgver.tar.gz;)
-sha512sums=('be2c49f35368168d3423881353041492f316082e949ba6d5787b0abbcffee8648193f2e05fab0280e7d1f27f0d5bd068333b6b0e581497e833da400379ae')
-
-prepare() {
-  cp -a pytest-mock-$pkgver{,-py2}
-
-  export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-}
-
-build() {
-  cd "$srcdir"/pytest-mock-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/pytest-mock-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack entry points by installing it
-
-  cd "$srcdir"/pytest-mock-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH:$PWD/tests"
 py.test
-
-  cd "$srcdir"/pytest-mock-$pkgver-py2
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  
PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH:$PWD/tests"
 py.test2
-}
-
-package_python-pytest-mock() {
-  depends=('python-pytest')
-
-  cd pytest-mock-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-pytest-mock() {
-  depends=('python2-pytest' 'python2-mock')
-
-  cd pytest-mock-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-pytest-mock/repos/community-any/PKGBUILD (from rev 245530, 
python-pytest-mock/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-07-18 04:34:02 UTC (rev 245531)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-pytest-mock
+pkgname=('python-pytest-mock' 'python2-pytest-mock')
+pkgver=1.6.2
+pkgrel=1
+pkgdesc="Thin-wrapper around the mock package for easier use with py.test"
+arch=('any')
+license=('LGPL3')
+url="https://github.com/pytest-dev/pytest-mock/;
+makedepends=('python-pytest' 'python2-pytest' 'python2-mock' 
'python-setuptools-scm'
+ 'python2-setuptools-scm')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-mock/archive/v$pkgver.tar.gz;)
+sha512sums=('be8b492a13721a74fde6d47bb8e1e85ee9ec4013ef44be5f02eb64d1c3202e6749e2028ca3ea63829e92631c04592ad5fbb2ba40ee33f296279b719add62efa3')
+
+prepare() {
+  cp -a pytest-mock-$pkgver{,-py2}
+
+  export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+}
+
+build() {
+  cd "$srcdir"/pytest-mock-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/pytest-mock-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd "$srcdir"/pytest-mock-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH:$PWD/tests"
 py.test
+
+  cd "$srcdir"/pytest-mock-$pkgver-py2
+  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+  
PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH:$PWD/tests"
 py.test2
+}
+
+package_python-pytest-mock() {
+  depends=('python-pytest')
+
+  cd pytest-mock-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-pytest-mock() {
+  depends=('python2-pytest' 'python2-mock')
+
+  cd pytest-mock-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}


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

2017-07-17 Thread Felix Yan
Date: Tuesday, July 18, 2017 @ 04:33:09
  Author: felixonmars
Revision: 245530

upgpkg: python-pytest-mock 1.6.2-1

Modified:
  python-pytest-mock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-18 04:32:43 UTC (rev 245529)
+++ PKGBUILD2017-07-18 04:33:09 UTC (rev 245530)
@@ -3,7 +3,7 @@
 
 pkgbase=python-pytest-mock
 pkgname=('python-pytest-mock' 'python2-pytest-mock')
-pkgver=1.6.0
+pkgver=1.6.2
 pkgrel=1
 pkgdesc="Thin-wrapper around the mock package for easier use with py.test"
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('python-pytest' 'python2-pytest' 'python2-mock' 
'python-setuptools-scm'
  'python2-setuptools-scm')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-mock/archive/v$pkgver.tar.gz;)
-sha512sums=('be2c49f35368168d3423881353041492f316082e949ba6d5787b0abbcffee8648193f2e05fab0280e7d1f27f0d5bd068333b6b0e581497e833da400379ae')
+sha512sums=('be8b492a13721a74fde6d47bb8e1e85ee9ec4013ef44be5f02eb64d1c3202e6749e2028ca3ea63829e92631c04592ad5fbb2ba40ee33f296279b719add62efa3')
 
 prepare() {
   cp -a pytest-mock-$pkgver{,-py2}


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

2017-07-17 Thread Felix Yan
Date: Tuesday, July 18, 2017 @ 04:32:43
  Author: felixonmars
Revision: 245529

archrelease: copy trunk to community-any

Added:
  ruby-bundler/repos/community-any/PKGBUILD
(from rev 245528, ruby-bundler/trunk/PKGBUILD)
Deleted:
  ruby-bundler/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-07-18 04:32:10 UTC (rev 245528)
+++ PKGBUILD2017-07-18 04:32:43 UTC (rev 245529)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Jonne Haß 
-# Contributor: Hyacinthe Cartiaux 
-# Contributor: Anatol Pomozov 
-# Contributor: Alexsandr Pavlov 
-
-pkgname=ruby-bundler
-_gemname=${pkgname#ruby-}
-pkgver=1.15.1
-pkgrel=1
-pkgdesc="Manages an application's dependencies through its entire life, across 
many machines, systematically and repeatably."
-arch=('any')
-url='http://bundler.io'
-license=('MIT')
-depends=('ruby')
-options=('!emptydirs')
-source=("https://rubygems.org/downloads/$_gemname-$pkgver.gem;)
-noextract=("$_gemname-$pkgver.gem")
-sha512sums=('c4d2b7f9483ce6fef090f4114d740bd95e92cd619625477d9efed4e56decddfff4f0490368bc509f4f1a1b888476ed4ef8ff99f2bf49d73a8fc12cbd259cfda9')
-
-package() {
-  cd "$srcdir"
-
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-  HOME="/tmp" GEM_HOME="$_gemdir" GEM_PATH="$_gemdir" gem install 
--no-user-install --ignore-dependencies \
- -i "$pkgdir/$_gemdir" -n "$pkgdir/usr/bin" "$_gemname-$pkgver.gem"
-  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
-  install -D -m644 "$pkgdir/$_gemdir/gems/$_gemname-$pkgver/LICENSE.md" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
-}

Copied: ruby-bundler/repos/community-any/PKGBUILD (from rev 245528, 
ruby-bundler/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-07-18 04:32:43 UTC (rev 245529)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Jonne Haß 
+# Contributor: Hyacinthe Cartiaux 
+# Contributor: Anatol Pomozov 
+# Contributor: Alexsandr Pavlov 
+
+pkgname=ruby-bundler
+_gemname=${pkgname#ruby-}
+pkgver=1.15.2
+pkgrel=1
+pkgdesc="Manages an application's dependencies through its entire life, across 
many machines, systematically and repeatably."
+arch=('any')
+url='http://bundler.io'
+license=('MIT')
+depends=('ruby')
+options=('!emptydirs')
+source=("https://rubygems.org/downloads/$_gemname-$pkgver.gem;)
+noextract=("$_gemname-$pkgver.gem")
+sha512sums=('3c57d8d4c1741f769d5347c284e425d64f5445fed9bb8ed581e38c2a499e8a6989d1a5d949d3d6f884c8f74ebf79c6152208b2b1056546bd5260bdc8c936af4e')
+
+package() {
+  cd "$srcdir"
+
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+  HOME="/tmp" GEM_HOME="$_gemdir" GEM_PATH="$_gemdir" gem install 
--no-user-install --ignore-dependencies \
+ -i "$pkgdir/$_gemdir" -n "$pkgdir/usr/bin" "$_gemname-$pkgver.gem"
+  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
+  install -D -m644 "$pkgdir/$_gemdir/gems/$_gemname-$pkgver/LICENSE.md" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
+}


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

2017-07-17 Thread Felix Yan
Date: Tuesday, July 18, 2017 @ 04:32:10
  Author: felixonmars
Revision: 245528

upgpkg: ruby-bundler 1.15.2-1

Modified:
  ruby-bundler/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-18 03:22:41 UTC (rev 245527)
+++ PKGBUILD2017-07-18 04:32:10 UTC (rev 245528)
@@ -7,7 +7,7 @@
 
 pkgname=ruby-bundler
 _gemname=${pkgname#ruby-}
-pkgver=1.15.1
+pkgver=1.15.2
 pkgrel=1
 pkgdesc="Manages an application's dependencies through its entire life, across 
many machines, systematically and repeatably."
 arch=('any')
@@ -17,7 +17,7 @@
 options=('!emptydirs')
 source=("https://rubygems.org/downloads/$_gemname-$pkgver.gem;)
 noextract=("$_gemname-$pkgver.gem")
-sha512sums=('c4d2b7f9483ce6fef090f4114d740bd95e92cd619625477d9efed4e56decddfff4f0490368bc509f4f1a1b888476ed4ef8ff99f2bf49d73a8fc12cbd259cfda9')
+sha512sums=('3c57d8d4c1741f769d5347c284e425d64f5445fed9bb8ed581e38c2a499e8a6989d1a5d949d3d6f884c8f74ebf79c6152208b2b1056546bd5260bdc8c936af4e')
 
 package() {
   cd "$srcdir"


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

2017-07-17 Thread Jan Steffens
Date: Tuesday, July 18, 2017 @ 03:52:04
  Author: heftig
Revision: 300741

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-07-18 03:51:37 UTC (rev 300740)
+++ extra-i686/PKGBUILD 2017-07-18 03:52:04 UTC (rev 300741)
@@ -1,43 +0,0 @@
-# $Id$ 
-# Maintainer: Jan de Groot 
-
-pkgname=pango
-pkgver=1.40.6+9+g92cc73c8
-pkgrel=1
-pkgdesc="A library for layout and rendering of text"
-url="https://www.pango.org/;
-arch=(i686 x86_64)
-license=(LGPL)
-depends=(libthai cairo libxft harfbuzz)
-makedepends=(harfbuzz fontconfig cairo libxft libthai gobject-introspection 
help2man gtk-doc git meson)
-checkdepends=(ttf-dejavu cantarell-fonts)
-_commit=92cc73c898e4665fd739704417d487d137dd271b  # master
-source=("git+https://git.gnome.org/browse/pango#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  mkdir build
-  cd $pkgname
-}
-
-build() {
-  cd build
-  meson --prefix=/usr --buildtype=release ../$pkgname --libexecdir=/usr/lib \
--Denable_docs=true
-  ninja -v
-}
-
-check() {
-  cd build
-  mesontest
-}
-
-package() {
-  cd build
-  DESTDIR="$pkgdir" ninja install
-}

Copied: pango/repos/extra-i686/PKGBUILD (from rev 300740, pango/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-07-18 03:52:04 UTC (rev 300741)
@@ -0,0 +1,43 @@
+# $Id$ 
+# Maintainer: Jan de Groot 
+
+pkgname=pango
+pkgver=1.40.7
+pkgrel=1
+pkgdesc="A library for layout and rendering of text"
+url="https://www.pango.org/;
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(libthai cairo libxft harfbuzz)
+makedepends=(harfbuzz fontconfig cairo libxft libthai gobject-introspection 
help2man gtk-doc git meson)
+checkdepends=(ttf-dejavu cantarell-fonts)
+_commit=7a8744e17fdb8ebb975301813665736667900634  # tags/1.40.7^0
+source=("git+https://git.gnome.org/browse/pango#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+}
+
+build() {
+  cd build
+  meson --prefix=/usr --buildtype=release ../$pkgname --libexecdir=/usr/lib \
+-Denable_docs=true
+  ninja
+}
+
+check() {
+  cd build
+  mesontest
+}
+
+package() {
+  cd build
+  DESTDIR="$pkgdir" ninja install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-07-18 03:51:37 UTC (rev 300740)
+++ extra-x86_64/PKGBUILD   2017-07-18 03:52:04 UTC (rev 300741)
@@ -1,43 +0,0 @@
-# $Id$ 
-# Maintainer: Jan de Groot 
-
-pkgname=pango
-pkgver=1.40.6+9+g92cc73c8
-pkgrel=1
-pkgdesc="A library for layout and rendering of text"
-url="https://www.pango.org/;
-arch=(i686 x86_64)
-license=(LGPL)
-depends=(libthai cairo libxft harfbuzz)
-makedepends=(harfbuzz fontconfig cairo libxft libthai gobject-introspection 
help2man gtk-doc git meson)
-checkdepends=(ttf-dejavu cantarell-fonts)
-_commit=92cc73c898e4665fd739704417d487d137dd271b  # master
-source=("git+https://git.gnome.org/browse/pango#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  mkdir build
-  cd $pkgname
-}
-
-build() {
-  cd build
-  meson --prefix=/usr --buildtype=release ../$pkgname --libexecdir=/usr/lib \
--Denable_docs=true
-  ninja -v
-}
-
-check() {
-  cd build
-  mesontest
-}
-
-package() {
-  cd build
-  DESTDIR="$pkgdir" ninja install
-}

Copied: pango/repos/extra-x86_64/PKGBUILD (from rev 300740, 
pango/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-07-18 03:52:04 UTC (rev 300741)
@@ -0,0 +1,43 @@
+# $Id$ 
+# Maintainer: Jan de Groot 
+
+pkgname=pango
+pkgver=1.40.7
+pkgrel=1
+pkgdesc="A library for layout and rendering of text"
+url="https://www.pango.org/;
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(libthai cairo libxft harfbuzz)
+makedepends=(harfbuzz fontconfig cairo libxft libthai gobject-introspection 
help2man gtk-doc git meson)
+checkdepends=(ttf-dejavu cantarell-fonts)
+_commit=7a8744e17fdb8ebb975301813665736667900634  # 

[arch-commits] Commit in meson/repos/extra-any (3 files)

2017-07-17 Thread Jan Steffens
Date: Tuesday, July 18, 2017 @ 03:51:37
  Author: heftig
Revision: 300740

archrelease: copy trunk to extra-any

Added:
  meson/repos/extra-any/PKGBUILD
(from rev 300739, meson/trunk/PKGBUILD)
Deleted:
  meson/repos/extra-any/0001-pkgconfig-avoid-appending-slash-at-Cflags.patch
  meson/repos/extra-any/PKGBUILD

--+
 0001-pkgconfig-avoid-appending-slash-at-Cflags.patch |   32 
 PKGBUILD |  110 -
 2 files changed, 53 insertions(+), 89 deletions(-)

Deleted: 0001-pkgconfig-avoid-appending-slash-at-Cflags.patch
===
--- 0001-pkgconfig-avoid-appending-slash-at-Cflags.patch2017-07-18 
03:50:56 UTC (rev 300739)
+++ 0001-pkgconfig-avoid-appending-slash-at-Cflags.patch2017-07-18 
03:51:37 UTC (rev 300740)
@@ -1,32 +0,0 @@
-From 8dcdaede56a1d608a029576d9204ddef6018d798 Mon Sep 17 00:00:00 2001
-From: Laurent Carlier 
-Date: Tue, 11 Jul 2017 12:44:59 +0200
-Subject: [PATCH] pkgconfig: avoid appending slash at Cflags
-
-otherwise it can break some compilations, see 
https://bugs.archlinux.org/task/54763

- mesonbuild/modules/pkgconfig.py | 7 ---
- 1 file changed, 4 insertions(+), 3 deletions(-)
-
-diff --git a/mesonbuild/modules/pkgconfig.py b/mesonbuild/modules/pkgconfig.py
-index 09c615ab..d662742f 100644
 a/mesonbuild/modules/pkgconfig.py
-+++ b/mesonbuild/modules/pkgconfig.py
-@@ -96,10 +96,11 @@ class PkgConfigModule(ExtensionModule):
- ofile.write('Libs.private: {}\n'.format(' 
'.join(generate_libs_flags(priv_libs
- ofile.write('Cflags:')
- for h in subdirs:
--if h == '.':
--h = ''
- ofile.write(' ')
--ofile.write(os.path.join('-I${includedir}', h))
-+if h == '.':
-+ofile.write('-I${includedir}')
-+else:
-+ofile.write(os.path.join('-I${includedir}', h))
- ofile.write('\n')
- 
- def process_libs(self, libs):
--- 
-2.13.2
-

Deleted: PKGBUILD
===
--- PKGBUILD2017-07-18 03:50:56 UTC (rev 300739)
+++ PKGBUILD2017-07-18 03:51:37 UTC (rev 300740)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Levente Polyak 
-# Contributor: Anatol Pomozov 
-
-pkgname=meson
-pkgver=0.41.1+8+g1be77026
-pkgrel=2
-pkgdesc='High productivity build system'
-url='http://mesonbuild.com/'
-arch=('any')
-license=('Apache')
-depends=('python' 'ninja')
-makedepends=('python-setuptools' 'git')
-checkdepends=('gcc-objc' 'vala' 'rust' 'gcc-fortran' 'mono' 'boost' 'qt4' 
'qt5-base' 'git' 'gnustep-base'
-  'cython' 'gtkmm3' 'gtest' 'gmock' 'protobuf' 'wxgtk' 
'python-gobject' 'gobject-introspection'
-  'itstool' 'gtk3' 'valgrind' 'ldc' 'java-environment>=8' 
'gtk-doc' 'llvm' 'clang' 'sdl2'
-  'doxygen')
-_commit=1be77026373469ce4d71650adbba236df031a9f4  # 0.41
-source=("git+https://github.com/mesonbuild/meson#commit=$_commit;
-0001-pkgconfig-avoid-appending-slash-at-Cflags.patch)
-sha512sums=('SKIP'
-
'ed7a147cb353981c1558bbb3d870f42e214b3ee0d33366ec8f289479bcbfed467183f6398fb6ab3091f2ff334f17943da22985cc500ee0b25d5ffee99726b85f')
-validpgpkeys=('95181F4EED14FDF4E41B518D3BF4693BFEEB9428') # Jussi Pakkanen 

-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  # fix FS#54763
-  patch -Np1 -i ../0001-pkgconfig-avoid-appending-slash-at-Cflags.patch
-}
-
-build() {
-  cd $pkgname
-  python setup.py build
-}
-
-check() {
-  cd $pkgname
-  unset CLASSPATH  # GNUstep breaks java tests
-  # Installing graphviz breaks doxygen tests
-  LC_CTYPE=en_US.UTF-8 DC=ldc ./run_tests.py
-}
-
-package() {
-  cd $pkgname
-  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-  install -Dm 644 syntax-highlighting/vim/ftdetect/meson.vim -t 
"${pkgdir}/usr/share/vim/vimfiles/ftdetect"
-  install -Dm 644 syntax-highlighting/vim/indent/meson.vim -t 
"${pkgdir}/usr/share/vim/vimfiles/indent"
-  install -Dm 644 syntax-highlighting/vim/syntax/meson.vim -t 
"${pkgdir}/usr/share/vim/vimfiles/syntax"
-}
-
-# vim: ts=2 sw=2 et:

Copied: meson/repos/extra-any/PKGBUILD (from rev 300739, meson/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-07-18 03:51:37 UTC (rev 300740)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Levente Polyak 
+# Contributor: Anatol Pomozov 
+
+pkgname=meson
+pkgver=0.41.1+16+g19f39ad0
+pkgrel=1
+pkgdesc='High productivity build 

[arch-commits] Commit in meson/trunk (2 files)

2017-07-17 Thread Jan Steffens
Date: Tuesday, July 18, 2017 @ 03:50:56
  Author: heftig
Revision: 300739

0.41.1+16+g19f39ad0-1

Modified:
  meson/trunk/PKGBUILD
Deleted:
  meson/trunk/0001-pkgconfig-avoid-appending-slash-at-Cflags.patch

--+
 0001-pkgconfig-avoid-appending-slash-at-Cflags.patch |   32 -
 PKGBUILD |   14 ++-
 2 files changed, 5 insertions(+), 41 deletions(-)

Deleted: 0001-pkgconfig-avoid-appending-slash-at-Cflags.patch
===
--- 0001-pkgconfig-avoid-appending-slash-at-Cflags.patch2017-07-18 
03:50:43 UTC (rev 300738)
+++ 0001-pkgconfig-avoid-appending-slash-at-Cflags.patch2017-07-18 
03:50:56 UTC (rev 300739)
@@ -1,32 +0,0 @@
-From 8dcdaede56a1d608a029576d9204ddef6018d798 Mon Sep 17 00:00:00 2001
-From: Laurent Carlier 
-Date: Tue, 11 Jul 2017 12:44:59 +0200
-Subject: [PATCH] pkgconfig: avoid appending slash at Cflags
-
-otherwise it can break some compilations, see 
https://bugs.archlinux.org/task/54763

- mesonbuild/modules/pkgconfig.py | 7 ---
- 1 file changed, 4 insertions(+), 3 deletions(-)
-
-diff --git a/mesonbuild/modules/pkgconfig.py b/mesonbuild/modules/pkgconfig.py
-index 09c615ab..d662742f 100644
 a/mesonbuild/modules/pkgconfig.py
-+++ b/mesonbuild/modules/pkgconfig.py
-@@ -96,10 +96,11 @@ class PkgConfigModule(ExtensionModule):
- ofile.write('Libs.private: {}\n'.format(' 
'.join(generate_libs_flags(priv_libs
- ofile.write('Cflags:')
- for h in subdirs:
--if h == '.':
--h = ''
- ofile.write(' ')
--ofile.write(os.path.join('-I${includedir}', h))
-+if h == '.':
-+ofile.write('-I${includedir}')
-+else:
-+ofile.write(os.path.join('-I${includedir}', h))
- ofile.write('\n')
- 
- def process_libs(self, libs):
--- 
-2.13.2
-

Modified: PKGBUILD
===
--- PKGBUILD2017-07-18 03:50:43 UTC (rev 300738)
+++ PKGBUILD2017-07-18 03:50:56 UTC (rev 300739)
@@ -4,8 +4,8 @@
 # Contributor: Anatol Pomozov 
 
 pkgname=meson
-pkgver=0.41.1+8+g1be77026
-pkgrel=2
+pkgver=0.41.1+16+g19f39ad0
+pkgrel=1
 pkgdesc='High productivity build system'
 url='http://mesonbuild.com/'
 arch=('any')
@@ -16,11 +16,9 @@
   'cython' 'gtkmm3' 'gtest' 'gmock' 'protobuf' 'wxgtk' 
'python-gobject' 'gobject-introspection'
   'itstool' 'gtk3' 'valgrind' 'ldc' 'java-environment>=8' 
'gtk-doc' 'llvm' 'clang' 'sdl2'
   'doxygen')
-_commit=1be77026373469ce4d71650adbba236df031a9f4  # 0.41
-source=("git+https://github.com/mesonbuild/meson#commit=$_commit;
-0001-pkgconfig-avoid-appending-slash-at-Cflags.patch)
-sha512sums=('SKIP'
-
'ed7a147cb353981c1558bbb3d870f42e214b3ee0d33366ec8f289479bcbfed467183f6398fb6ab3091f2ff334f17943da22985cc500ee0b25d5ffee99726b85f')
+_commit=19f39ad05952099ecb915399231aa88f9acd3b20  # 0.41
+source=("git+https://github.com/mesonbuild/meson#commit=$_commit;)
+sha512sums=('SKIP')
 validpgpkeys=('95181F4EED14FDF4E41B518D3BF4693BFEEB9428') # Jussi Pakkanen 

 
 pkgver() {
@@ -30,8 +28,6 @@
 
 prepare() {
   cd $pkgname
-  # fix FS#54763
-  patch -Np1 -i ../0001-pkgconfig-avoid-appending-slash-at-Cflags.patch
 }
 
 build() {


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

2017-07-17 Thread Jan Steffens
Date: Tuesday, July 18, 2017 @ 03:50:43
  Author: heftig
Revision: 300738

1.40.7-1

Modified:
  pango/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 21:29:00 UTC (rev 300737)
+++ PKGBUILD2017-07-18 03:50:43 UTC (rev 300738)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=pango
-pkgver=1.40.6+9+g92cc73c8
+pkgver=1.40.7
 pkgrel=1
 pkgdesc="A library for layout and rendering of text"
 url="https://www.pango.org/;
@@ -11,7 +11,7 @@
 depends=(libthai cairo libxft harfbuzz)
 makedepends=(harfbuzz fontconfig cairo libxft libthai gobject-introspection 
help2man gtk-doc git meson)
 checkdepends=(ttf-dejavu cantarell-fonts)
-_commit=92cc73c898e4665fd739704417d487d137dd271b  # master
+_commit=7a8744e17fdb8ebb975301813665736667900634  # tags/1.40.7^0
 source=("git+https://git.gnome.org/browse/pango#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -29,7 +29,7 @@
   cd build
   meson --prefix=/usr --buildtype=release ../$pkgname --libexecdir=/usr/lib \
 -Denable_docs=true
-  ninja -v
+  ninja
 }
 
 check() {


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

2017-07-17 Thread Anatol Pomozov
Date: Tuesday, July 18, 2017 @ 03:22:41
  Author: anatolik
Revision: 245527

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

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

-+
 /PKGBUILD   |  156 ++
 /rethinkdb-tmpfile.conf |2 
 /rethinkdb.install  |   30 +
 /rethinkdb.service  |   24 
 /rethinkdb.sysusers |2 
 community-i686/PKGBUILD |   78 ---
 community-i686/rethinkdb-tmpfile.conf   |1 
 community-i686/rethinkdb.install|   15 --
 community-i686/rethinkdb.service|   12 --
 community-i686/rethinkdb.sysusers   |1 
 community-x86_64/PKGBUILD   |   78 ---
 community-x86_64/rethinkdb-tmpfile.conf |1 
 community-x86_64/rethinkdb.install  |   15 --
 community-x86_64/rethinkdb.service  |   12 --
 community-x86_64/rethinkdb.sysusers |1 
 15 files changed, 214 insertions(+), 214 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-18 03:21:07 UTC (rev 245526)
+++ community-i686/PKGBUILD 2017-07-18 03:22:41 UTC (rev 245527)
@@ -1,78 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov 
-# Contributor: Massimiliano Torromeo 
-# Contributor: Sigmund Lahn 
-
-pkgname=rethinkdb
-pkgver=2.3.5
-_tag=rethinkdb-$pkgver
-pkgrel=9
-pkgdesc='Distributed powerful and scalable NoSQL database'
-arch=(i686 x86_64)
-url='http://www.rethinkdb.com/'
-license=(AGPL)
-depends=(protobuf ncurses curl openssl-1.0)
-makedepends=(boost python2 wget)
-backup=(etc/rethinkdb/instances.d/default.conf)
-install=rethinkdb.install
-options=(!emptydirs)
-source=(
-  https://download.rethinkdb.com/dist/$_tag.tgz
-  rethinkdb-tmpfile.conf
-  rethinkdb.service
-  rethinkdb.sysusers
-  
mksnapshot_crash_fix.patch::https://github.com/rethinkdb/rethinkdb/commit/871bd3705a1f29c4ab07a096d562a4b06231a97c.patch
-)
-sha256sums=('dd8aeee169b177179bfe080725f0560443e0f26dae875b32ae25d90cf2f8ee10'
-'656d3a42e75d087e723f71aa320fdd91cbbb82071ef72eb11fd3e4a619b429a4'
-'e56bffa2b9ebc3a00ef566ab2be0719a633c89d961a2461dfa2d9ffdb258c1a2'
-'0660e0c7c093b440718486e1d0138322cf393da43e1fc92fb712b8282db76b5c'
-'a14a52cb6a0b1873b1c48847a6d7bdfd82a377a114ba40c8e9035b4e7b7cca16')
-
-prepare() {
-  cd $_tag
-
-  # fix for https://github.com/rethinkdb/rethinkdb/issues/5757
-  patch -p1 < ../mksnapshot_crash_fix.patch
-
-  sed \
--e 's|#!/usr/bin/python|#!/usr/bin/python2|' \
--e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
--i scripts/*.py external/v8_*/tools/*.py
-  sed -e 's|exec python|exec python2|g' -i external/v8_*/build/gyp/gyp
-  sed -e 's|\bpython\b|python2|g' -i 
external/v8_*/{Makefile,*/*.gyp,*/*.gypi,*/*/*.gyp}
-
-}
-
-build() {
-  cd $_tag
-  export PYTHON=/usr/bin/python2
-  CXX=g++-5 ./configure --fetch v8 --fetch jemalloc --dynamic all 
--enable-precompiled-web --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
CXXFLAGS="$CXXFLAGS -I/usr/include/openssl-1.0" LDFLAGS="$LDFLAGS 
-L/usr/lib/openssl-1.0"
-  make ALLOW_WARNINGS=1
-}
-
-check() {
-  cd $_tag
-
-  # these tests are flaky and 

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

2017-07-17 Thread Anatol Pomozov
Date: Tuesday, July 18, 2017 @ 03:21:07
  Author: anatolik
Revision: 245526

upgpkg: rethinkdb 2.3.6-1

Modified:
  rethinkdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 23:52:14 UTC (rev 245525)
+++ PKGBUILD2017-07-18 03:21:07 UTC (rev 245526)
@@ -4,9 +4,9 @@
 # Contributor: Sigmund Lahn 
 
 pkgname=rethinkdb
-pkgver=2.3.5
+pkgver=2.3.6
 _tag=rethinkdb-$pkgver
-pkgrel=9
+pkgrel=1
 pkgdesc='Distributed powerful and scalable NoSQL database'
 arch=(i686 x86_64)
 url='http://www.rethinkdb.com/'
@@ -23,7 +23,7 @@
   rethinkdb.sysusers
   
mksnapshot_crash_fix.patch::https://github.com/rethinkdb/rethinkdb/commit/871bd3705a1f29c4ab07a096d562a4b06231a97c.patch
 )
-sha256sums=('dd8aeee169b177179bfe080725f0560443e0f26dae875b32ae25d90cf2f8ee10'
+sha256sums=('c42159666910ad01be295a57caf8839ec3a89227d8919be5418e3aa1f0a3dc28'
 '656d3a42e75d087e723f71aa320fdd91cbbb82071ef72eb11fd3e4a619b429a4'
 'e56bffa2b9ebc3a00ef566ab2be0719a633c89d961a2461dfa2d9ffdb258c1a2'
 '0660e0c7c093b440718486e1d0138322cf393da43e1fc92fb712b8282db76b5c'


[arch-commits] Commit in android-tools/trunk (PKGBUILD build.sh generate_build.rb)

2017-07-17 Thread Anatol Pomozov
Date: Monday, July 17, 2017 @ 23:50:08
  Author: anatolik
Revision: 245524

upgpkg: android-tools 7.1.2_r27-1

Modified:
  android-tools/trunk/PKGBUILD
  android-tools/trunk/build.sh
  android-tools/trunk/generate_build.rb

---+
 PKGBUILD  |4 ++--
 build.sh  |4 ++--
 generate_build.rb |2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 22:55:16 UTC (rev 245523)
+++ PKGBUILD2017-07-17 23:50:08 UTC (rev 245524)
@@ -4,7 +4,7 @@
 # Contributor: Alucryd 
 
 pkgname=android-tools
-pkgver=7.1.2_r6
+pkgver=7.1.2_r27
 pkgrel=1
 pkgdesc='Android platform tools'
 arch=(i686 x86_64)
@@ -26,7 +26,7 @@
   'SKIP'
   'SKIP'
   'SKIP'
-  '84dd43a0102e35fcdf0a855c617e1d151f49fb2a'
+  '524e3a1768d4386c31436210c6798a06ec636203'
   '33538c9161c199f1e608d3b8f519adb1cd9d46d5'
   '7004dbd0c193668827174880de6f8434de8ceaee'
   '2e69152091bb9642be058e49ec6cb720a2fd91dc'

Modified: build.sh
===
--- build.sh2017-07-17 22:55:16 UTC (rev 245523)
+++ build.sh2017-07-17 23:50:08 UTC (rev 245524)
@@ -48,7 +48,7 @@
 clang -o core/libcutils/socket_inaddr_any_server_unix.c.o -std=gnu11 $CFLAGS 
$CPPFLAGS -D_GNU_SOURCE -Icore/include -c 
core/libcutils/socket_inaddr_any_server_unix.c
 clang++ -o core/libcutils/sockets.cpp.o -std=gnu++14 $CXXFLAGS $CPPFLAGS 
-D_GNU_SOURCE -Icore/include -c core/libcutils/sockets.cpp
 clang++ -o core/adb/diagnose_usb.cpp.o -std=gnu++14 $CXXFLAGS $CPPFLAGS 
-Icore/include -Icore/base/include -c core/adb/diagnose_usb.cpp
-g++ -o adb -lpthread -lcrypto $LDFLAGS core/base/file.cpp.o 
core/base/logging.cpp.o core/base/parsenetaddress.cpp.o 
core/base/stringprintf.cpp.o core/base/strings.cpp.o 
core/base/errors_unix.cpp.o core/liblog/log_event_write.c.o 
core/liblog/fake_log_device.c.o core/liblog/log_event_list.c.o 
core/liblog/logger_write.c.o core/liblog/config_write.c.o 
core/liblog/logger_lock.c.o core/liblog/fake_writer.c.o 
core/liblog/logger_name.c.o core/libcutils/load_file.c.o 
core/libcutils/socket_local_client_unix.c.o 
core/libcutils/socket_loopback_client_unix.c.o 
core/libcutils/socket_network_client_unix.c.o 
core/libcutils/socket_loopback_server_unix.c.o 
core/libcutils/socket_local_server_unix.c.o core/libcutils/sockets_unix.cpp.o 
core/libcutils/socket_inaddr_any_server_unix.c.o core/libcutils/sockets.cpp.o 
core/adb/adb.cpp.o core/adb/adb_auth.cpp.o core/adb/adb_io.cpp.o 
core/adb/adb_listeners.cpp.o core/adb/adb_trace.cpp.o core/adb/adb_utils.cpp.o 
core/adb/bugreport.cpp.o core/adb/line_printer.cpp
 .o core/adb/sockets.cpp.o core/adb/transport.cpp.o 
core/adb/transport_local.cpp.o core/adb/transport_usb.cpp.o 
core/adb/sysdeps_unix.cpp.o core/adb/fdevent.cpp.o 
core/adb/get_my_path_linux.cpp.o core/adb/usb_linux.cpp.o 
core/adb/adb_auth_host.cpp.o core/adb/shell_service_protocol.cpp.o 
core/adb/console.cpp.o core/adb/commandline.cpp.o core/adb/adb_client.cpp.o 
core/adb/services.cpp.o core/adb/file_sync_client.cpp.o 
core/adb/client/main.cpp.o core/adb/diagnose_usb.cpp.o
+clang++ -o adb -lpthread -lcrypto $LDFLAGS core/base/file.cpp.o 
core/base/logging.cpp.o core/base/parsenetaddress.cpp.o 
core/base/stringprintf.cpp.o core/base/strings.cpp.o 
core/base/errors_unix.cpp.o core/liblog/log_event_write.c.o 
core/liblog/fake_log_device.c.o core/liblog/log_event_list.c.o 
core/liblog/logger_write.c.o core/liblog/config_write.c.o 
core/liblog/logger_lock.c.o core/liblog/fake_writer.c.o 
core/liblog/logger_name.c.o core/libcutils/load_file.c.o 
core/libcutils/socket_local_client_unix.c.o 
core/libcutils/socket_loopback_client_unix.c.o 
core/libcutils/socket_network_client_unix.c.o 
core/libcutils/socket_loopback_server_unix.c.o 
core/libcutils/socket_local_server_unix.c.o core/libcutils/sockets_unix.cpp.o 
core/libcutils/socket_inaddr_any_server_unix.c.o core/libcutils/sockets.cpp.o 
core/adb/adb.cpp.o core/adb/adb_auth.cpp.o core/adb/adb_io.cpp.o 
core/adb/adb_listeners.cpp.o core/adb/adb_trace.cpp.o core/adb/adb_utils.cpp.o 
core/adb/bugreport.cpp.o core/adb/line_printer
 .cpp.o core/adb/sockets.cpp.o core/adb/transport.cpp.o 
core/adb/transport_local.cpp.o core/adb/transport_usb.cpp.o 
core/adb/sysdeps_unix.cpp.o core/adb/fdevent.cpp.o 
core/adb/get_my_path_linux.cpp.o core/adb/usb_linux.cpp.o 
core/adb/adb_auth_host.cpp.o core/adb/shell_service_protocol.cpp.o 
core/adb/console.cpp.o core/adb/commandline.cpp.o core/adb/adb_client.cpp.o 
core/adb/services.cpp.o core/adb/file_sync_client.cpp.o 
core/adb/client/main.cpp.o core/adb/diagnose_usb.cpp.o
 clang++ -o core/fastboot/protocol.cpp.o -std=gnu++14 $CXXFLAGS $CPPFLAGS 
-DFASTBOOT_REVISION=\"$PKGVER\" -D_GNU_SOURCE -Icore/base/include 
-Icore/include -Icore/adb -Icore/libsparse/include -Icore/mkbootimg 
-Iextras/ext4_utils -Iextras/f2fs_utils -c 

[arch-commits] Commit in mayavi/repos (20 files)

2017-07-17 Thread Andrzej Giniewicz
Date: Monday, July 17, 2017 @ 22:55:16
  Author: aginiewicz
Revision: 245523

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

Added:
  mayavi/repos/community-i686/PKGBUILD
(from rev 245522, mayavi/trunk/PKGBUILD)
  mayavi/repos/community-i686/mayavi.csh
(from rev 245522, mayavi/trunk/mayavi.csh)
  mayavi/repos/community-i686/mayavi.sh
(from rev 245522, mayavi/trunk/mayavi.sh)
  mayavi/repos/community-i686/setuptools.patch
(from rev 245522, mayavi/trunk/setuptools.patch)
  mayavi/repos/community-i686/vtk6.patch
(from rev 245522, mayavi/trunk/vtk6.patch)
  mayavi/repos/community-x86_64/PKGBUILD
(from rev 245522, mayavi/trunk/PKGBUILD)
  mayavi/repos/community-x86_64/mayavi.csh
(from rev 245522, mayavi/trunk/mayavi.csh)
  mayavi/repos/community-x86_64/mayavi.sh
(from rev 245522, mayavi/trunk/mayavi.sh)
  mayavi/repos/community-x86_64/setuptools.patch
(from rev 245522, mayavi/trunk/setuptools.patch)
  mayavi/repos/community-x86_64/vtk6.patch
(from rev 245522, mayavi/trunk/vtk6.patch)
Deleted:
  mayavi/repos/community-i686/PKGBUILD
  mayavi/repos/community-i686/mayavi.csh
  mayavi/repos/community-i686/mayavi.sh
  mayavi/repos/community-i686/setuptools.patch
  mayavi/repos/community-i686/vtk6.patch
  mayavi/repos/community-x86_64/PKGBUILD
  mayavi/repos/community-x86_64/mayavi.csh
  mayavi/repos/community-x86_64/mayavi.sh
  mayavi/repos/community-x86_64/setuptools.patch
  mayavi/repos/community-x86_64/vtk6.patch

---+
 /PKGBUILD |  228 
 /mayavi.csh   |2 
 /mayavi.sh|2 
 /setuptools.patch |   44 ++
 /vtk6.patch   |   94 ++
 community-i686/PKGBUILD   |  118 --
 community-i686/mayavi.csh |1 
 community-i686/mayavi.sh  |1 
 community-i686/setuptools.patch   |   22 ---
 community-i686/vtk6.patch |   47 ---
 community-x86_64/PKGBUILD |  118 --
 community-x86_64/mayavi.csh   |1 
 community-x86_64/mayavi.sh|1 
 community-x86_64/setuptools.patch |   22 ---
 community-x86_64/vtk6.patch   |   47 ---
 15 files changed, 370 insertions(+), 378 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-17 22:55:03 UTC (rev 245522)
+++ community-i686/PKGBUILD 2017-07-17 22:55:16 UTC (rev 245523)
@@ -1,118 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz 
-
-pkgname=mayavi
-pkgver=4.5.0
-pkgrel=5
-pkgdesc="A 3-dimensional visualizer of scientific data"
-arch=('i686' 'x86_64')
-url="https://github.com/enthought/mayavi;
-license=('BSD')
-depends=('ipython2' 'vtk6' 'python2-envisage' 'python2-traitsui' 
'python2-configobj' 'wxpython'
- 'gdal' 'unixodbc' 'jsoncpp' 'openmpi' 'ffmpeg')
-makedepends=('python2-setuptools' 'python2-sphinx' 'python2-twisted' 
'xorg-server-xvfb' 'qt5-base')
-replaces=('python2-mayavi')
-provides=('python2-mayavi')
-options=(!emptydirs)
-
-source=("$pkgname-$pkgver.tar.gz::https://github.com/enthought/mayavi/archive/${pkgver}.tar.gz;
-"mayavi.sh" "mayavi.csh" "vtk6.patch" "setuptools.patch")
-md5sums=('ed3b0004b810bd5741ae9bb46d197250'
- '3e998f4f3cb1d9bc3353fbb933984458'
- 'd68e29e3c805ad2e0a5e82b1744b1f0a'
- '1b91b3aaf31a44ddc5e770f4fb1e3c5f'
- 'fa81f3c6610942dedd072ef55428c41b')
-
-prepare() {
-  cd "$srcdir"/mayavi-$pkgver
-
-  # patch to force VTK6
-  patch -p1 < ../vtk6.patch
-
-  # patch to fix setuptools 28.0 --- 
https://github.com/enthought/mayavi/issues/443
-  patch -p1 < ../setuptools.patch
-
-  # fix wrong-file-end-of-line-encoding
-  for file in *.txt examples/mayavi/data/room_vis.wrl examples/tvtk/dscene.py \
-examples/mayavi/interactive/wx_mayavi_embed*.py ; do
-sed "s|\r||g" $file > $file.new && \
-touch -r $file $file.new && \
-mv $file.new $file
-  done
-
-  # file-not-utf8
-  for file in *.txt docs/*.txt; do
-iconv -f ISO-8859-1 -t UTF-8 -o $file.new $file && \
-touch -r $file $file.new && \
-mv $file.new $file
-  done
-
-  # remove exec permission
-  find examples -type f -exec chmod 0644 {} ";"
-  chmod 0644 mayavi/tests/data/cellsnd.ascii.inp
-
-  # set path so autodoc can find just built modules
-  echo "sys.path.append('$srcdir/mayavi-$pkgver/build/lib.linux-$CARCH-2.7/')" 
>> docs/source/mayavi/conf.py
-
-  # Use python2-sphinx provided sphinx-build2
-  sed -i -e 's/sphinx-build/sphinx-build2/' docs/Makefile*
-
-  # fix python->python2
-  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
-  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
-  -i $(find . -name '*[\._]py')
-}
-
-build() {
-  cd "$srcdir"/mayavi-$pkgver
-
-  rm -rf build
-  mkdir 

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

2017-07-17 Thread Andrzej Giniewicz
Date: Monday, July 17, 2017 @ 22:55:03
  Author: aginiewicz
Revision: 245522

upgpkg: mayavi 4.5.0-6

mayavi2: switch to vtk 7 as it seems to work now FS#54756

Modified:
  mayavi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 21:25:17 UTC (rev 245521)
+++ PKGBUILD2017-07-17 22:55:03 UTC (rev 245522)
@@ -3,12 +3,12 @@
 
 pkgname=mayavi
 pkgver=4.5.0
-pkgrel=5
+pkgrel=6
 pkgdesc="A 3-dimensional visualizer of scientific data"
 arch=('i686' 'x86_64')
 url="https://github.com/enthought/mayavi;
 license=('BSD')
-depends=('ipython2' 'vtk6' 'python2-envisage' 'python2-traitsui' 
'python2-configobj' 'wxpython'
+depends=('ipython2' 'vtk' 'python2-envisage' 'python2-traitsui' 
'python2-configobj' 'wxpython'
  'gdal' 'unixodbc' 'jsoncpp' 'openmpi' 'ffmpeg')
 makedepends=('python2-setuptools' 'python2-sphinx' 'python2-twisted' 
'xorg-server-xvfb' 'qt5-base')
 replaces=('python2-mayavi')
@@ -16,19 +16,15 @@
 options=(!emptydirs)
 
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/enthought/mayavi/archive/${pkgver}.tar.gz;
-"mayavi.sh" "mayavi.csh" "vtk6.patch" "setuptools.patch")
+"mayavi.sh" "mayavi.csh" "setuptools.patch")
 md5sums=('ed3b0004b810bd5741ae9bb46d197250'
  '3e998f4f3cb1d9bc3353fbb933984458'
  'd68e29e3c805ad2e0a5e82b1744b1f0a'
- '1b91b3aaf31a44ddc5e770f4fb1e3c5f'
  'fa81f3c6610942dedd072ef55428c41b')
 
 prepare() {
   cd "$srcdir"/mayavi-$pkgver
 
-  # patch to force VTK6
-  patch -p1 < ../vtk6.patch
-
   # patch to fix setuptools 28.0 --- 
https://github.com/enthought/mayavi/issues/443
   patch -p1 < ../setuptools.patch
 


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

2017-07-17 Thread Jan Steffens
Date: Monday, July 17, 2017 @ 21:29:00
  Author: heftig
Revision: 300737

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-07-17 21:28:34 UTC (rev 300736)
+++ extra-i686/PKGBUILD 2017-07-17 21:29:00 UTC (rev 300737)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Jan de Groot 
-# Contributor: Ionut Biru 
-
-pkgname=orc
-pkgver=0.4.26+2+g249c709
-pkgrel=1
-pkgdesc="Optimized Inner Loop Runtime Compiler"
-url="https://cgit.freedesktop.org/gstreamer/orc;
-arch=(i686 x86_64)
-license=(custom)
-depends=(glibc)
-makedepends=(valgrind git gtk-doc)
-_commit=249c709e90458ecef7a068df553ea41a83eedf0f  # master
-source=("git+https://anongit.freedesktop.org/git/gstreamer/orc#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^orc-//;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --disable-static --enable-gtk-doc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd $pkgname
-  make check
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: orc/repos/extra-i686/PKGBUILD (from rev 300736, orc/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-07-17 21:29:00 UTC (rev 300737)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+# Contributor: Ionut Biru 
+
+pkgname=orc
+pkgver=0.4.27
+pkgrel=1
+pkgdesc="Optimized Inner Loop Runtime Compiler"
+url="https://cgit.freedesktop.org/gstreamer/orc;
+arch=(i686 x86_64)
+license=(custom)
+depends=(glibc)
+makedepends=(valgrind git gtk-doc meson)
+_commit=1163fd1027010ce16ff25bc5448948f4a5073844  # tags/orc-0.4.27^0
+source=("git+https://anongit.freedesktop.org/git/gstreamer/orc#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^orc-//;s/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+}
+
+build() {
+  cd build
+  meson --prefix=/usr --buildtype=release ../$pkgname
+  ninja
+}
+
+check() {
+  cd build
+  mesontest
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+  install -Dm644 $pkgname/COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-07-17 21:28:34 UTC (rev 300736)
+++ extra-x86_64/PKGBUILD   2017-07-17 21:29:00 UTC (rev 300737)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Jan de Groot 
-# Contributor: Ionut Biru 
-
-pkgname=orc
-pkgver=0.4.26+2+g249c709
-pkgrel=1
-pkgdesc="Optimized Inner Loop Runtime Compiler"
-url="https://cgit.freedesktop.org/gstreamer/orc;
-arch=(i686 x86_64)
-license=(custom)
-depends=(glibc)
-makedepends=(valgrind git gtk-doc)
-_commit=249c709e90458ecef7a068df553ea41a83eedf0f  # master
-source=("git+https://anongit.freedesktop.org/git/gstreamer/orc#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^orc-//;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --disable-static --enable-gtk-doc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd $pkgname
-  make check
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: orc/repos/extra-x86_64/PKGBUILD (from rev 300736, orc/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-07-17 21:29:00 UTC (rev 300737)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+# Contributor: Ionut Biru 

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

2017-07-17 Thread Jan Steffens
Date: Monday, July 17, 2017 @ 21:28:34
  Author: heftig
Revision: 300736

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-07-17 21:27:24 UTC (rev 300735)
+++ extra-i686/PKGBUILD 2017-07-17 21:28:34 UTC (rev 300736)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgbase=nautilus
-pkgname=(nautilus libnautilus-extension)
-pkgver=3.24.1
-pkgrel=1
-pkgdesc="Default file manager for GNOME"
-url="https://wiki.gnome.org/Apps/Nautilus;
-arch=(i686 x86_64)
-license=(GPL)
-depends=(libexif gnome-desktop exempi gvfs dconf libtracker-sparql 
nautilus-sendto gnome-autoar)
-makedepends=(gobject-introspection packagekit git gtk-doc meson)
-options=(!emptydirs)
-_commit=3a3af1d3b6528eef4a76bb840724bb1e5740688f  # tags/3.24.1^0
-source=("git+https://git.gnome.org/browse/nautilus#commit=$_commit;
-"git+https://git.gnome.org/browse/libgd;)
-sha256sums=('SKIP'
-'SKIP')
-
-prepare() {
-  mkdir -p build libne/usr/{lib,share}
-  cd $pkgbase
-}
-
-pkgver() {
-  cd $pkgbase
-  git describe --tags | sed 's/-/+/g'
-}
-
-build() {
-  cd build
-  export LANG=en_US.UTF-8
-  meson --prefix=/usr --buildtype=release ../$pkgbase \
---sysconfdir=/etc \
--Denable-exif=true \
--Denable-xmp=true \
--Denable-gtk-doc=true \
--Denable-selinux=false
-  ninja
-}
-
-package_nautilus() {
-  depends+=(libnautilus-extension)
-  groups=(gnome)
-
-  cd build
-  DESTDIR="$pkgdir" ninja install
-
-### Split libnautilus-extension
-
-  cd ../libne
-  mv "$pkgdir"/usr/include usr
-  mv "$pkgdir"/usr/lib/{girepository-1.0,libnautilus-extension*,pkgconfig} 
usr/lib
-  mv "$pkgdir"/usr/share/{gir-1.0,gtk-doc} usr/share
-}
-
-package_libnautilus-extension() {
-  pkgdesc="Library for extending the $pkgdesc"
-  depends=(gtk3)
-  mv libne/usr "$pkgdir"
-}

Copied: nautilus/repos/extra-i686/PKGBUILD (from rev 300735, 
nautilus/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-07-17 21:28:34 UTC (rev 300736)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgbase=nautilus
+pkgname=(nautilus libnautilus-extension)
+pkgver=3.24.2
+pkgrel=1
+pkgdesc="Default file manager for GNOME"
+url="https://wiki.gnome.org/Apps/Nautilus;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(libexif gnome-desktop exempi gvfs dconf libtracker-sparql 
nautilus-sendto gnome-autoar)
+makedepends=(gobject-introspection packagekit git gtk-doc meson)
+options=(!emptydirs)
+_commit=d11d53db7fb3cdaa73aab653cec8a0a48579a936  # tags/3.24.2^0
+source=("git+https://git.gnome.org/browse/nautilus#commit=$_commit;
+"git+https://git.gnome.org/browse/libgd;)
+sha256sums=('SKIP'
+'SKIP')
+
+prepare() {
+  mkdir -p build libne/usr/{lib,share}
+  cd $pkgbase
+
+  git submodule init
+  git config --local submodule.libgd.url "$srcdir/libgd"
+  git submodule update
+}
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/-/+/g'
+}
+
+build() {
+  cd build
+  export LANG=en_US.UTF-8
+  meson --prefix=/usr --buildtype=release ../$pkgbase \
+--sysconfdir=/etc \
+-Denable-exif=true \
+-Denable-xmp=true \
+-Denable-gtk-doc=true \
+-Denable-selinux=false
+  ninja
+}
+
+package_nautilus() {
+  depends+=(libnautilus-extension)
+  groups=(gnome)
+
+  cd build
+  DESTDIR="$pkgdir" ninja install
+
+### Split libnautilus-extension
+
+  cd ../libne
+  mv "$pkgdir"/usr/include usr
+  mv "$pkgdir"/usr/lib/{girepository-1.0,libnautilus-extension*,pkgconfig} 
usr/lib
+  mv "$pkgdir"/usr/share/{gir-1.0,gtk-doc} usr/share
+}
+
+package_libnautilus-extension() {
+  pkgdesc="Library for extending the $pkgdesc"
+  depends=(gtk3)
+  mv libne/usr "$pkgdir"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-07-17 21:27:24 UTC (rev 300735)
+++ extra-x86_64/PKGBUILD   2017-07-17 21:28:34 UTC (rev 300736)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgbase=nautilus
-pkgname=(nautilus libnautilus-extension)
-pkgver=3.24.1
-pkgrel=1
-pkgdesc="Default file manager for GNOME"
-url="https://wiki.gnome.org/Apps/Nautilus;
-arch=(i686 x86_64)
-license=(GPL)
-depends=(libexif gnome-desktop exempi gvfs dconf 

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

2017-07-17 Thread Anatol Pomozov
Date: Monday, July 17, 2017 @ 21:25:17
  Author: anatolik
Revision: 245521

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-17 21:24:31 UTC (rev 245520)
+++ community-i686/PKGBUILD 2017-07-17 21:25:17 UTC (rev 245521)
@@ -1,78 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov 
-# Contributor: Jonne Haß 
-
-pkgname=crystal
-pkgver=0.23.0
-pkgrel=2
-_binary_rel=1
-pkgdesc='The Crystal Programming Language'
-arch=(i686 x86_64)
-url='http://crystal-lang.org'
-license=(Apache)
-depends=(gc libatomic_ops pcre libevent llvm-libs)
-makedepends=(libxml2 llvm)
-checkdepends=(libyaml libxml2 gmp inetutils git)
-optdepends=('shards: crystal language package manager'
-'libyaml: For YAML support'
-'gmp: For BigInt support'
-'libxml2: For XML support')
-source=(crystal-$pkgver.tar.gz::https://github.com/crystal-lang/crystal/archive/$pkgver.tar.gz)
-source_i686+=(https://github.com/crystal-lang/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-i686.tar.gz)
-source_x86_64+=(https://github.com/crystal-lang/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-x86_64.tar.gz)
-sha256sums=('9b65904bb55100994a3b8022b9c553e5aa78979f459c8b10aa64053a65e5d517')
-sha256sums_i686=('0a758770e6cb277bc5ed38fb6edafbf820b99527b65d6a44fd9f3a4c4743b70f')
-sha256sums_x86_64=('1d0348e1df3c56f9c29a3a76254c074846389fe5bed659c2cc1051bab83e1a5a')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i 's|Please install shards: https://github.com/ysbaddaden/shards|Please 
install shards: pacman -S shards|' src/compiler/crystal/command.cr
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  # We use --no-debug because it runs out of memory on i686 without it
-  # https://github.com/crystal-lang/crystal/issues/3787#issuecomment-281591985
-  make release=1 \
-   FLAGS="--release --no-debug" \
-   PATH="$srcdir/$pkgname-$pkgver-$_binary_rel/bin:$PATH" \
-   CRYSTAL_PATH="$srcdir/$pkgname-$pkgver/src" \
-   CRYSTAL_CONFIG_VERSION="$pkgver" \
-   CRYSTAL_CONFIG_PATH="lib:/usr/lib/crystal" \
-   CRYSTAL_CACHE_DIR="/tmp/crystal"
-  make doc CRYSTAL_CACHE_DIR="/tmp/crystal"
-}
-
-check() {
-  cd $pkgname-$pkgver
-
-  # disable tests as it fails with OOM at i686
-  true || make spec CRYSTAL_PATH="$srcdir/$pkgname-$pkgver/src" \
-CRYSTAL_CONFIG_VERSION="$pkgver" \
-CRYSTAL_CACHE_DIR="/tmp/crystal" \
-PATH=".build:$PATH"
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  # /usr/bin/crystalcompiled executable
-  # /usr/lib/crystal/   compiler src & core libs
-  # /usr/share/doc/crystal/api  api docs
-  # /usr/share/doc/crystal/samples/ samples
-
-  install -Dm755 ".build/crystal" "$pkgdir/usr/bin/crystal"
-
-  install -dm755 "$pkgdir/usr/lib"
-  cp -r src "$pkgdir/usr/lib/crystal"
-
-  install -dm755 "$pkgdir/usr/share/doc/crystal"
-  cp -r doc "$pkgdir/usr/share/doc/crystal/api"
-  cp -r samples "$pkgdir/usr/share/doc/crystal/"
-
-  install -Dm644 etc/completion.bash 
"$pkgdir/usr/share/bash-completion/completions/crystal"
-  install -Dm644 etc/completion.zsh 
"$pkgdir/usr/share/zsh/site-functions/_crystal"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: crystal/repos/community-i686/PKGBUILD (from rev 245520, 
crystal/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-07-17 21:25:17 UTC (rev 245521)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: Jonne Haß 
+
+pkgname=crystal
+pkgver=0.23.1
+pkgrel=1
+_binary_rel=3
+pkgdesc='The Crystal Programming Language'
+arch=(i686 x86_64)
+url='http://crystal-lang.org'
+license=(Apache)
+depends=(gc libatomic_ops pcre libevent llvm-libs)
+makedepends=(libxml2 llvm)
+checkdepends=(libyaml libxml2 gmp inetutils git)
+optdepends=('shards: crystal language package manager'
+'libyaml: For YAML support'
+'gmp: For BigInt support'
+'libxml2: For XML support')
+source=(crystal-$pkgver.tar.gz::https://github.com/crystal-lang/crystal/archive/$pkgver.tar.gz)

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

2017-07-17 Thread Jan Steffens
Date: Monday, July 17, 2017 @ 21:27:24
  Author: heftig
Revision: 300735

3.24.2-1

Modified:
  nautilus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 21:27:16 UTC (rev 300734)
+++ PKGBUILD2017-07-17 21:27:24 UTC (rev 300735)
@@ -3,7 +3,7 @@
 
 pkgbase=nautilus
 pkgname=(nautilus libnautilus-extension)
-pkgver=3.24.1
+pkgver=3.24.2
 pkgrel=1
 pkgdesc="Default file manager for GNOME"
 url="https://wiki.gnome.org/Apps/Nautilus;
@@ -12,7 +12,7 @@
 depends=(libexif gnome-desktop exempi gvfs dconf libtracker-sparql 
nautilus-sendto gnome-autoar)
 makedepends=(gobject-introspection packagekit git gtk-doc meson)
 options=(!emptydirs)
-_commit=3a3af1d3b6528eef4a76bb840724bb1e5740688f  # tags/3.24.1^0
+_commit=d11d53db7fb3cdaa73aab653cec8a0a48579a936  # tags/3.24.2^0
 source=("git+https://git.gnome.org/browse/nautilus#commit=$_commit;
 "git+https://git.gnome.org/browse/libgd;)
 sha256sums=('SKIP'


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

2017-07-17 Thread Jan Steffens
Date: Monday, July 17, 2017 @ 21:27:16
  Author: heftig
Revision: 300734

0.4.27-1

Modified:
  orc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 21:05:15 UTC (rev 300733)
+++ PKGBUILD2017-07-17 21:27:16 UTC (rev 300734)
@@ -4,7 +4,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=orc
-pkgver=0.4.26+2+g249c709
+pkgver=0.4.27
 pkgrel=1
 pkgdesc="Optimized Inner Loop Runtime Compiler"
 url="https://cgit.freedesktop.org/gstreamer/orc;
@@ -11,8 +11,8 @@
 arch=(i686 x86_64)
 license=(custom)
 depends=(glibc)
-makedepends=(valgrind git gtk-doc)
-_commit=249c709e90458ecef7a068df553ea41a83eedf0f  # master
+makedepends=(valgrind git gtk-doc meson)
+_commit=1163fd1027010ce16ff25bc5448948f4a5073844  # tags/orc-0.4.27^0
 
source=("git+https://anongit.freedesktop.org/git/gstreamer/orc#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -22,24 +22,22 @@
 }
 
 prepare() {
+  mkdir build
   cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
 }
 
 build() {
-  cd $pkgname
-  ./configure --prefix=/usr --disable-static --enable-gtk-doc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
+  cd build
+  meson --prefix=/usr --buildtype=release ../$pkgname
+  ninja
 }
 
 check() {
-  cd $pkgname
-  make check
+  cd build
+  mesontest
 }
 
 package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  DESTDIR="$pkgdir" ninja -C build install
+  install -Dm644 $pkgname/COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }


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

2017-07-17 Thread Anatol Pomozov
Date: Monday, July 17, 2017 @ 21:24:31
  Author: anatolik
Revision: 245520

upgpkg: crystal 0.23.1-1

updpkg 0.23.1

Modified:
  crystal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 21:02:01 UTC (rev 245519)
+++ PKGBUILD2017-07-17 21:24:31 UTC (rev 245520)
@@ -3,9 +3,9 @@
 # Contributor: Jonne Haß 
 
 pkgname=crystal
-pkgver=0.23.0
-pkgrel=2
-_binary_rel=1
+pkgver=0.23.1
+pkgrel=1
+_binary_rel=3
 pkgdesc='The Crystal Programming Language'
 arch=(i686 x86_64)
 url='http://crystal-lang.org'
@@ -20,9 +20,9 @@
 
source=(crystal-$pkgver.tar.gz::https://github.com/crystal-lang/crystal/archive/$pkgver.tar.gz)
 
source_i686+=(https://github.com/crystal-lang/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-i686.tar.gz)
 
source_x86_64+=(https://github.com/crystal-lang/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-x86_64.tar.gz)
-sha256sums=('9b65904bb55100994a3b8022b9c553e5aa78979f459c8b10aa64053a65e5d517')
-sha256sums_i686=('0a758770e6cb277bc5ed38fb6edafbf820b99527b65d6a44fd9f3a4c4743b70f')
-sha256sums_x86_64=('1d0348e1df3c56f9c29a3a76254c074846389fe5bed659c2cc1051bab83e1a5a')
+sha256sums=('8cf1b9a4eab29fca2f779ea186ae18f7ce444ce189c621925fa1a0c61dd5ff55')
+sha256sums_i686=('268a39b8d37385ff60d113d4d9fc966472160faa1e3bbf7ae58860ab6678aceb')
+sha256sums_x86_64=('6a84cc866838ffa5250e28c3ce1a918a93f89c06393fe8cfd4068fcbbc66f3ab')
 
 prepare() {
   cd $pkgname-$pkgver


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

2017-07-17 Thread Sergej Pupykin
Date: Monday, July 17, 2017 @ 21:02:01
  Author: spupykin
Revision: 245519

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

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

+
 /PKGBUILD  |  144 +++
 /glusterfs.install |6 +
 community-i686/PKGBUILD|   72 -
 community-i686/glusterfs.install   |3 
 community-x86_64/PKGBUILD  |   72 -
 community-x86_64/glusterfs.install |3 
 6 files changed, 150 insertions(+), 150 deletions(-)

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

Copied: glusterfs/repos/community-i686/PKGBUILD (from rev 245518, 
glusterfs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-07-17 21:02:01 UTC (rev 245519)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributors:
+#   Andrei Antoukh - n...@niwi.be - http://www.niwi.be
+#   henning mueller 
+
+pkgname=glusterfs
+epoch=1
+pkgver=3.11.1
+pkgrel=1
+pkgdesc='Is a cluster file-system capable of scaling to several peta-bytes.'
+arch=(i686 x86_64)
+url='http://www.gluster.org/'
+license=(GPL2 LGPL3)
+install=glusterfs.install
+backup=('etc/glusterfs/glusterd.vol'
+   'etc/glusterfs/eventsconfig.json'
+   'etc/glusterfs/gluster-rsyslog-5.8.conf'
+   'etc/glusterfs/gluster-rsyslog-7.2.conf'
+   'etc/glusterfs/glusterd.vol'
+   'etc/glusterfs/glusterfs-georep-logrotate'
+   'etc/glusterfs/glusterfs-logrotate')
+depends=(fuse python2 libxml2 libaio liburcu attr which)
+makedepends=(flex bison)
+optdepends=('rpcbind: NFS'
+   'glib2: qemu-block')
+#source=($pkgname-$pkgver.tar.gz::https://github.com/gluster/glusterfs/archive/v$pkgver.tar.gz)

[arch-commits] Commit in freeradius/repos (20 files)

2017-07-17 Thread Sergej Pupykin
Date: Monday, July 17, 2017 @ 21:01:36
  Author: spupykin
Revision: 245517

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

Added:
  freeradius/repos/community-i686/PKGBUILD
(from rev 245516, freeradius/trunk/PKGBUILD)
  freeradius/repos/community-i686/freeradius-openssl-1.1.patch
(from rev 245516, freeradius/trunk/freeradius-openssl-1.1.patch)
  freeradius/repos/community-i686/freeradius.install
(from rev 245516, freeradius/trunk/freeradius.install)
  freeradius/repos/community-i686/freeradius.service
(from rev 245516, freeradius/trunk/freeradius.service)
  freeradius/repos/community-i686/freeradius.tmpfiles
(from rev 245516, freeradius/trunk/freeradius.tmpfiles)
  freeradius/repos/community-x86_64/PKGBUILD
(from rev 245516, freeradius/trunk/PKGBUILD)
  freeradius/repos/community-x86_64/freeradius-openssl-1.1.patch
(from rev 245516, freeradius/trunk/freeradius-openssl-1.1.patch)
  freeradius/repos/community-x86_64/freeradius.install
(from rev 245516, freeradius/trunk/freeradius.install)
  freeradius/repos/community-x86_64/freeradius.service
(from rev 245516, freeradius/trunk/freeradius.service)
  freeradius/repos/community-x86_64/freeradius.tmpfiles
(from rev 245516, freeradius/trunk/freeradius.tmpfiles)
Deleted:
  freeradius/repos/community-i686/PKGBUILD
  freeradius/repos/community-i686/freeradius-openssl-1.1.patch
  freeradius/repos/community-i686/freeradius.install
  freeradius/repos/community-i686/freeradius.service
  freeradius/repos/community-i686/freeradius.tmpfiles
  freeradius/repos/community-x86_64/PKGBUILD
  freeradius/repos/community-x86_64/freeradius-openssl-1.1.patch
  freeradius/repos/community-x86_64/freeradius.install
  freeradius/repos/community-x86_64/freeradius.service
  freeradius/repos/community-x86_64/freeradius.tmpfiles

---+
 /PKGBUILD |  126 
 /freeradius-openssl-1.1.patch |12568 
 /freeradius.install   |   32 
 /freeradius.service   |   30 
 /freeradius.tmpfiles  |2 
 community-i686/PKGBUILD   |   63 
 community-i686/freeradius-openssl-1.1.patch   | 6284 
 community-i686/freeradius.install |   16 
 community-i686/freeradius.service |   15 
 community-i686/freeradius.tmpfiles|1 
 community-x86_64/PKGBUILD |   63 
 community-x86_64/freeradius-openssl-1.1.patch | 6284 
 community-x86_64/freeradius.install   |   16 
 community-x86_64/freeradius.service   |   15 
 community-x86_64/freeradius.tmpfiles  |1 
 15 files changed, 12758 insertions(+), 12758 deletions(-)

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


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

2017-07-17 Thread Sergej Pupykin
Date: Monday, July 17, 2017 @ 21:01:43
  Author: spupykin
Revision: 245518

upgpkg: glusterfs 1:3.11.1-1

Modified:
  glusterfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 21:01:36 UTC (rev 245517)
+++ PKGBUILD2017-07-17 21:01:43 UTC (rev 245518)
@@ -6,7 +6,7 @@
 
 pkgname=glusterfs
 epoch=1
-pkgver=3.10.1
+pkgver=3.11.1
 pkgrel=1
 pkgdesc='Is a cluster file-system capable of scaling to several peta-bytes.'
 arch=(i686 x86_64)
@@ -26,7 +26,7 @@
'glib2: qemu-block')
 
#source=($pkgname-$pkgver.tar.gz::https://github.com/gluster/glusterfs/archive/v$pkgver.tar.gz)
 
source=(https://download.gluster.org/pub/gluster/glusterfs/${pkgver%.?}/$pkgver/glusterfs-$pkgver.tar.gz)
-sha256sums=('d3c23df3299964efe6b688c94ddde258506ecf173b58e8c07fa18d470bb21517')
+sha256sums=('c7e0502631c9bc9da05795b666b74ef40a30a0344f5a2e205e65bd2faefe1442')
 
 prepare() {
   cd "$srcdir"/$pkgname-$pkgver


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

2017-07-17 Thread Sergej Pupykin
Date: Monday, July 17, 2017 @ 21:01:04
  Author: spupykin
Revision: 245516

upgpkg: freeradius 3.0.15-1

Modified:
  freeradius/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 19:32:08 UTC (rev 245515)
+++ PKGBUILD2017-07-17 21:01:04 UTC (rev 245516)
@@ -4,8 +4,8 @@
 # Contributor: Daniel Micay 
 
 pkgname=freeradius
-pkgver=3.0.14
-pkgrel=4
+pkgver=3.0.15
+pkgrel=1
 pkgdesc="The premier open source RADIUS server"
 arch=('i686' 'x86_64')
 url="http://www.freeradius.org/;
@@ -21,7 +21,7 @@
 source=("ftp://ftp.freeradius.org/pub/radius/freeradius-server-$pkgver.tar.bz2;
freeradius.tmpfiles
freeradius.service freeradius-openssl-1.1.patch)
-sha256sums=('2771f6ecd6c816ac4d52b66bb8ae6781ca20e1e4984c5804fc4e67de3a807c59'
+sha256sums=('23267d8505e7b2909f5bdbf3938ca077c1fe122290dc969304d4f3b594f7e3ba'
 '08a084e143b263e8acbb8e4740a485f868647e047f3b6ae72b9b925d0416714f'
 '968cfd22f59e2a8ebe44955251a1f510fcdfdeba901798e12d3646d4439e0b1c'
 '406d22b7e15017163f3736a0a91c6ef8c327fd5a19af74b3519d16a4f7f205fd')


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

2017-07-17 Thread Jan Steffens
Date: Monday, July 17, 2017 @ 20:53:08
  Author: heftig
Revision: 300732

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

Added:
  epiphany/repos/extra-i686/PKGBUILD
(from rev 300731, epiphany/trunk/PKGBUILD)
  epiphany/repos/extra-i686/pluginsdir.diff
(from rev 300731, epiphany/trunk/pluginsdir.diff)
  epiphany/repos/extra-x86_64/PKGBUILD
(from rev 300731, epiphany/trunk/PKGBUILD)
  epiphany/repos/extra-x86_64/pluginsdir.diff
(from rev 300731, epiphany/trunk/pluginsdir.diff)
Deleted:
  epiphany/repos/extra-i686/PKGBUILD
  epiphany/repos/extra-i686/pluginsdir.diff
  epiphany/repos/extra-x86_64/PKGBUILD
  epiphany/repos/extra-x86_64/pluginsdir.diff

--+
 /PKGBUILD|  112 +
 /pluginsdir.diff |   40 ++
 extra-i686/PKGBUILD  |   56 
 extra-i686/pluginsdir.diff   |   20 ---
 extra-x86_64/PKGBUILD|   56 
 extra-x86_64/pluginsdir.diff |   20 ---
 6 files changed, 152 insertions(+), 152 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-07-17 20:51:55 UTC (rev 300731)
+++ extra-i686/PKGBUILD 2017-07-17 20:53:08 UTC (rev 300732)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=epiphany
-pkgver=3.24.2
-pkgrel=1
-pkgdesc="A GNOME web browser based on the WebKit rendering engine"
-url="https://wiki.gnome.org/Apps/Web;
-arch=(i686 x86_64)
-license=(GPL)
-depends=(webkit2gtk gcr gnome-desktop icu)
-makedepends=(intltool itstool docbook-xml startup-notification lsb-release
- gobject-introspection yelp-tools autoconf-archive appstream-glib 
git)
-groups=(gnome)
-_commit=d0e5c8fff89633b504cb9dc02638b1c25f227c38  # tags/3.24.2^0
-source=("git+https://git.gnome.org/browse/epiphany#commit=$_commit;
-"git+https://git.gnome.org/browse/libgd;
-"git+https://git.gnome.org/browse/gvdb;
-pluginsdir.diff)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'3bbd4b36e697a3a9165e0b71d5af566fe96a8f1237d854b9dee9a7e0b9fef8e3')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  patch -Np1 -i ../pluginsdir.diff
-
-  git submodule init
-  git config --local submodule.libgd.url "$srcdir/libgd"
-  git config --local submodule.gvdb.url "$srcdir/gvdb"
-  git submodule update
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --libexecdir=/usr/lib/$pkgname 
--enable-compile-warnings=yes
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: epiphany/repos/extra-i686/PKGBUILD (from rev 300731, 
epiphany/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-07-17 20:53:08 UTC (rev 300732)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=epiphany
+pkgver=3.24.3
+pkgrel=1
+pkgdesc="A GNOME web browser based on the WebKit rendering engine"
+url="https://wiki.gnome.org/Apps/Web;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(webkit2gtk gcr gnome-desktop icu)
+makedepends=(intltool itstool docbook-xml startup-notification lsb-release
+ gobject-introspection yelp-tools autoconf-archive appstream-glib 
git)
+groups=(gnome)
+_commit=43489a7d54b89a45709fadd6a90d0e99cf0dc45d  # tags/3.24.3^0
+source=("git+https://git.gnome.org/browse/epiphany#commit=$_commit;
+"git+https://git.gnome.org/browse/libgd;
+"git+https://git.gnome.org/browse/gvdb;
+pluginsdir.diff)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'3bbd4b36e697a3a9165e0b71d5af566fe96a8f1237d854b9dee9a7e0b9fef8e3')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  patch -Np1 -i ../pluginsdir.diff
+
+  git submodule init
+  git config --local submodule.libgd.url "$srcdir/libgd"
+  git config --local submodule.gvdb.url "$srcdir/gvdb"
+  git submodule update
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --libexecdir=/usr/lib/$pkgname 
--enable-compile-warnings=yes
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/pluginsdir.diff
===
--- extra-i686/pluginsdir.diff  2017-07-17 20:51:55 UTC (rev 300731)
+++ extra-i686/pluginsdir.diff  2017-07-17 20:53:08 UTC (rev 

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

2017-07-17 Thread Jan Steffens
Date: Monday, July 17, 2017 @ 20:51:55
  Author: heftig
Revision: 300731

3.24.3-1

Modified:
  epiphany/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 20:12:31 UTC (rev 300730)
+++ PKGBUILD2017-07-17 20:51:55 UTC (rev 300731)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=epiphany
-pkgver=3.24.2
+pkgver=3.24.3
 pkgrel=1
 pkgdesc="A GNOME web browser based on the WebKit rendering engine"
 url="https://wiki.gnome.org/Apps/Web;
@@ -12,7 +12,7 @@
 makedepends=(intltool itstool docbook-xml startup-notification lsb-release
  gobject-introspection yelp-tools autoconf-archive appstream-glib 
git)
 groups=(gnome)
-_commit=d0e5c8fff89633b504cb9dc02638b1c25f227c38  # tags/3.24.2^0
+_commit=43489a7d54b89a45709fadd6a90d0e99cf0dc45d  # tags/3.24.3^0
 source=("git+https://git.gnome.org/browse/epiphany#commit=$_commit;
 "git+https://git.gnome.org/browse/libgd;
 "git+https://git.gnome.org/browse/gvdb;


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

2017-07-17 Thread Sven-Hendrik Haase
Date: Monday, July 17, 2017 @ 19:31:54
  Author: svenstaro
Revision: 245514

upgpkg: netdata 1.7.0-1

Modified:
  netdata/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 18:55:32 UTC (rev 245513)
+++ PKGBUILD2017-07-17 19:31:54 UTC (rev 245514)
@@ -2,9 +2,9 @@
 # Contributor: SanskritFritz (gmail)
 
 pkgname=netdata
-pkgver=1.6.0
-pkgrel=4
-pkgdesc="Real-time performance monitoring, in the greatest possible detail, 
over the web."
+pkgver=1.7.0
+pkgrel=1
+pkgdesc="Real-time performance monitoring, in the greatest possible detail, 
over the web"
 url="https://github.com/firehol/netdata/wiki;
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -25,7 +25,7 @@
 
'etc/netdata/python.d/'{apache_cache,apache,cpufreq,dovecot,example,exim,hddtemp,ipfs,memcached,mysql,nginx,nginx_log,phpfpm,postfix,redis,retroshare,sensors,squid,tomcat}.conf)
 install="$pkgname.install"
 
source=("https://github.com/firehol/netdata/releases/download/v${pkgver}/netdata-${pkgver}.tar.xz;)
-sha512sums=('e091c2b3a619f62c209d2de8389bc33f98159071730344b17b66a766a3dcf2f598c95f10dbaf1421e32a468f18c975373291e3909002e9bf21dea9939559e1fc')
+sha512sums=('68b2d2f5380120a3babe13be948515387d6fcfb35cdb50d5ae79dff2a09bc7f56623a2c352645b6a0ded585ea6dcc45f4d28a0250de5b9cba9239e6a22558462')
 
 build() {
cd "$pkgname-$pkgver"


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

2017-07-17 Thread Sven-Hendrik Haase
Date: Monday, July 17, 2017 @ 19:32:08
  Author: svenstaro
Revision: 245515

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

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

--+
 /PKGBUILD|  108 +
 /netdata.install |   52 +
 community-i686/PKGBUILD  |   54 --
 community-i686/netdata.install   |   26 
 community-x86_64/PKGBUILD|   54 --
 community-x86_64/netdata.install |   26 
 6 files changed, 160 insertions(+), 160 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-17 19:31:54 UTC (rev 245514)
+++ community-i686/PKGBUILD 2017-07-17 19:32:08 UTC (rev 245515)
@@ -1,54 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: SanskritFritz (gmail)
-
-pkgname=netdata
-pkgver=1.6.0
-pkgrel=4
-pkgdesc="Real-time performance monitoring, in the greatest possible detail, 
over the web."
-url="https://github.com/firehol/netdata/wiki;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('libmnl' 'libnetfilter_acct' 'zlib')
-optdepends=('nodejs: for monitoring named and SNMP devices'
-'lm_sensors: for monitoring hardware sensors'
-'iproute2: for monitoring Linux QoS'
-'python: for most of the external plugins'
-'python-psycopg2: for monitoring PostgreSQL databases'
-'python-mysqldb: for monitoring mysql databases'
-'python-requests: for monitoring elasticsearch'
-'hddtemp: for monitoring hhd temperature'
-'network-ups-tools: for monitoring UPS'
-'apcupsd: for monitoring APC UPS'
-'iw: for monitoring Linux as access point')
-backup=('etc/netdata/'{apps_groups,charts.d,health_alarm_notify,health_email_recipients,netdata,python.d}.conf
-
'etc/netdata/health.d/'{apache,cpu,disks,entropy,memcached,mysql,named,net,nginx,qos,ram,redis,retroshare,squid,swap}.conf
-
'etc/netdata/python.d/'{apache_cache,apache,cpufreq,dovecot,example,exim,hddtemp,ipfs,memcached,mysql,nginx,nginx_log,phpfpm,postfix,redis,retroshare,sensors,squid,tomcat}.conf)
-install="$pkgname.install"
-source=("https://github.com/firehol/netdata/releases/download/v${pkgver}/netdata-${pkgver}.tar.xz;)
-sha512sums=('e091c2b3a619f62c209d2de8389bc33f98159071730344b17b66a766a3dcf2f598c95f10dbaf1421e32a468f18c975373291e3909002e9bf21dea9939559e1fc')
-
-build() {
-   cd "$pkgname-$pkgver"
-
-   ./autogen.sh
-   ./configure \
-   --prefix="/usr" \
-   --sbindir="/usr/bin" \
-   --sysconfdir="/etc" \
-   --libexecdir="/usr/lib" \
-   --localstatedir="/var" \
-   --with-zlib --with-math --with-user=netdata
-   make
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-
-   make DESTDIR="$pkgdir" install
-
-   touch "$pkgdir/etc/netdata/netdata.conf"
-
-   install -Dm0644 "system/netdata.service" 
"$pkgdir/usr/lib/systemd/system/netdata.service"
-   install -Dm0644 "system/netdata.logrotate" 
"$pkgdir/etc/logrotate.d/netdata"
-}
-

Copied: netdata/repos/community-i686/PKGBUILD (from rev 245514, 
netdata/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-07-17 19:32:08 UTC (rev 245515)
@@ -0,0 +1,54 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: SanskritFritz (gmail)
+
+pkgname=netdata
+pkgver=1.7.0
+pkgrel=1
+pkgdesc="Real-time performance monitoring, in the greatest possible detail, 
over the web"
+url="https://github.com/firehol/netdata/wiki;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libmnl' 'libnetfilter_acct' 'zlib')
+optdepends=('nodejs: for monitoring named and SNMP devices'
+'lm_sensors: for monitoring hardware sensors'
+'iproute2: for monitoring Linux QoS'
+'python: for most of the external plugins'
+'python-psycopg2: for monitoring PostgreSQL databases'
+'python-mysqldb: for monitoring mysql databases'
+'python-requests: for monitoring elasticsearch'
+'hddtemp: for monitoring hhd temperature'
+'network-ups-tools: for monitoring 

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

2017-07-17 Thread Dave Reisner
Date: Monday, July 17, 2017 @ 19:24:56
  Author: dreisner
Revision: 300706

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

Added:
  c-ares/repos/testing-i686/
  c-ares/repos/testing-i686/LICENSE
(from rev 300705, c-ares/trunk/LICENSE)
  c-ares/repos/testing-i686/PKGBUILD
(from rev 300705, c-ares/trunk/PKGBUILD)
  c-ares/repos/testing-x86_64/
  c-ares/repos/testing-x86_64/LICENSE
(from rev 300705, c-ares/trunk/LICENSE)
  c-ares/repos/testing-x86_64/PKGBUILD
(from rev 300705, c-ares/trunk/PKGBUILD)

-+
 testing-i686/LICENSE|   10 ++
 testing-i686/PKGBUILD   |   35 +++
 testing-x86_64/LICENSE  |   10 ++
 testing-x86_64/PKGBUILD |   35 +++
 4 files changed, 90 insertions(+)

Copied: c-ares/repos/testing-i686/LICENSE (from rev 300705, 
c-ares/trunk/LICENSE)
===
--- testing-i686/LICENSE(rev 0)
+++ testing-i686/LICENSE2017-07-17 19:24:56 UTC (rev 300706)
@@ -0,0 +1,10 @@
+Copyright 1998 by the Massachusetts Institute of Technology.
+
+Permission to use, copy, modify, and distribute this software and its
+documentation for any purpose and without fee is hereby granted, provided that
+the above copyright notice appear in all copies and that both that copyright
+notice and this permission notice appear in supporting documentation, and that
+the name of M.I.T. not be used in advertising or publicity pertaining to
+distribution of the software without specific, written prior permission.
+M.I.T. makes no representations about the suitability of this software for any
+purpose.  It is provided "as is" without express or implied warranty.

Copied: c-ares/repos/testing-i686/PKGBUILD (from rev 300705, 
c-ares/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-07-17 19:24:56 UTC (rev 300706)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Dave Reisner 
+# Contributor: Daniel J Griffiths 
+# Contributor: Jeff Mickey 
+# Contributor: Alexander Fehr 
+
+pkgname=c-ares
+pkgver=1.13.0
+pkgrel=1
+pkgdesc='C library that performs DNS requests and name resolves asynchronously'
+arch=('i686' 'x86_64')
+url='https://c-ares.haxx.se/'
+license=('custom')
+depends=('glibc')
+source=("https://c-ares.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc}
+'LICENSE')
+sha512sums=('4a7942e754673f5b8d55a7471e31b0f390e8324b14c12077580c956147fad4d165c7fe8a3190199b1add95c710ceeb1a7957706d4f0d6299d39c5dddc719bd9d'
+'SKIP'
+
'55e8607392c5f82ed85e3580fa632dfdc2dcd0b1a5e918dc61d00532c15c11ecb709f6007b65805c1fbe8fcd21ee794c9e4a9638c97ac1f4960b2654010a4d0a')
+validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2'   # Daniel Stenberg
+  '914C533DF9B2ADA2204F586D78E11C6B279D5C91')  # Daniel Stenberg
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr --enable-shared
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "$srcdir/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: c-ares/repos/testing-x86_64/LICENSE (from rev 300705, 
c-ares/trunk/LICENSE)
===
--- testing-x86_64/LICENSE  (rev 0)
+++ testing-x86_64/LICENSE  2017-07-17 19:24:56 UTC (rev 300706)
@@ -0,0 +1,10 @@
+Copyright 1998 by the Massachusetts Institute of Technology.
+
+Permission to use, copy, modify, and distribute this software and its
+documentation for any purpose and without fee is hereby granted, provided that
+the above copyright notice appear in all copies and that both that copyright
+notice and this permission notice appear in supporting documentation, and that
+the name of M.I.T. not be used in advertising or publicity pertaining to
+distribution of the software without specific, written prior permission.
+M.I.T. makes no representations about the suitability of this software for any
+purpose.  It is provided "as is" without express or implied warranty.

Copied: c-ares/repos/testing-x86_64/PKGBUILD (from rev 300705, 
c-ares/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-07-17 19:24:56 UTC (rev 300706)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Dave Reisner 
+# Contributor: Daniel J Griffiths 
+# Contributor: Jeff Mickey 
+# Contributor: Alexander Fehr 
+
+pkgname=c-ares
+pkgver=1.13.0
+pkgrel=1
+pkgdesc='C library that performs DNS requests and name resolves asynchronously'
+arch=('i686' 'x86_64')
+url='https://c-ares.haxx.se/'

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

2017-07-17 Thread Dave Reisner
Date: Monday, July 17, 2017 @ 19:24:32
  Author: dreisner
Revision: 300705

upgpkg: c-ares 1.13.0-1

Modified:
  c-ares/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 16:24:10 UTC (rev 300704)
+++ PKGBUILD2017-07-17 19:24:32 UTC (rev 300705)
@@ -5,7 +5,7 @@
 # Contributor: Alexander Fehr 
 
 pkgname=c-ares
-pkgver=1.12.0
+pkgver=1.13.0
 pkgrel=1
 pkgdesc='C library that performs DNS requests and name resolves asynchronously'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 depends=('glibc')
 source=("https://c-ares.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc}
 'LICENSE')
-sha512sums=('3da0fadb04eccab49b4e6eff3f087a392dd76238d47e74e2ede723883468da688e41f679ee8ca38613fc4f80d3bd7c29e69d3d6c711f988a02fd5d21a3ee1dc6'
+sha512sums=('4a7942e754673f5b8d55a7471e31b0f390e8324b14c12077580c956147fad4d165c7fe8a3190199b1add95c710ceeb1a7957706d4f0d6299d39c5dddc719bd9d'
 'SKIP'
 
'55e8607392c5f82ed85e3580fa632dfdc2dcd0b1a5e918dc61d00532c15c11ecb709f6007b65805c1fbe8fcd21ee794c9e4a9638c97ac1f4960b2654010a4d0a')
 validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2'   # Daniel Stenberg


[arch-commits] Commit in nodejs-lts-boron/repos (8 files)

2017-07-17 Thread Bruno Pagani
Date: Monday, July 17, 2017 @ 18:55:32
  Author: archange
Revision: 245513

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

Added:
  nodejs-lts-boron/repos/community-i686/PKGBUILD
(from rev 245512, nodejs-lts-boron/trunk/PKGBUILD)
  nodejs-lts-boron/repos/community-i686/fix-gcc7.patch
(from rev 245512, nodejs-lts-boron/trunk/fix-gcc7.patch)
  nodejs-lts-boron/repos/community-x86_64/PKGBUILD
(from rev 245512, nodejs-lts-boron/trunk/PKGBUILD)
  nodejs-lts-boron/repos/community-x86_64/fix-gcc7.patch
(from rev 245512, nodejs-lts-boron/trunk/fix-gcc7.patch)
Deleted:
  nodejs-lts-boron/repos/community-i686/PKGBUILD
  nodejs-lts-boron/repos/community-i686/fix-gcc7.patch
  nodejs-lts-boron/repos/community-x86_64/PKGBUILD
  nodejs-lts-boron/repos/community-x86_64/fix-gcc7.patch

-+
 /PKGBUILD   |  130 +++
 /fix-gcc7.patch |  140 ++
 community-i686/PKGBUILD |   65 -
 community-i686/fix-gcc7.patch   |   70 ---
 community-x86_64/PKGBUILD   |   65 -
 community-x86_64/fix-gcc7.patch |   70 ---
 6 files changed, 270 insertions(+), 270 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-17 18:48:36 UTC (rev 245512)
+++ community-i686/PKGBUILD 2017-07-17 18:55:32 UTC (rev 245513)
@@ -1,65 +0,0 @@
-# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
-
-pkgname=nodejs-lts-boron
-pkgver=6.11.0
-pkgrel=1
-pkgdesc='Evented I/O for V8 javascript (LTS release: Boron)'
-arch=('i686' 'x86_64')
-url='https://nodejs.org/'
-license=('MIT')
-depends=('openssl-1.0' 'zlib' 'icu' 'libuv' 'http-parser' 'c-ares')
-makedepends=('python2' 'procps-ng')
-optdepends=('npm: nodejs package manager')
-provides=('nodejs')
-conflicts=('nodejs')
-source=("${url}/dist/v${pkgver}/node-v${pkgver}.tar.xz"
-'fix-gcc7.patch')
-sha256sums=('02ba35391edea2b294c736489af01954ce6e6c39d318f4423ae6617c69ef0a51'
-'f2044670abfda0d17690bb36c4124f97e4a915e726de6fa0a12da70d018863b3')
-
-prepare() {
-  cd node-v${pkgver}
-
-  patch -p1 -i ../fix-gcc7.patch
-
-  msg 'Fixing for python2 name'
-  find -type f -exec sed \
--e 's_^#!/usr/bin/env python$_&2_' \
--e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
--e 's_^#!/usr/bin/python$_&2_' \
--e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
--e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
--e "s_'python'_'python2'_" -i {} \;
-  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
-}
-
-build() {
-  cd node-v${pkgver}
-  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
-  export PYTHON=python2
-  ./configure \
---prefix=/usr \
---with-intl=system-icu \
---without-npm \
---shared-openssl \
---shared-zlib \
---shared-libuv \
---shared-http-parser \
---shared-cares
-
-  make
-}
-
-check() {
-  cd node-v${pkgver}
-  # At least two expected failures because of OpenSSL 1.1 vs 1.0
-  make test || warning "Tests failed"
-}
-
-package() {
-  cd node-v${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/nodejs/LICENSE
-}

Copied: nodejs-lts-boron/repos/community-i686/PKGBUILD (from rev 245512, 
nodejs-lts-boron/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-07-17 18:55:32 UTC (rev 245513)
@@ -0,0 +1,65 @@
+# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
+
+pkgname=nodejs-lts-boron
+pkgver=6.11.1
+pkgrel=1
+pkgdesc='Evented I/O for V8 javascript (LTS release: Boron)'
+arch=('i686' 'x86_64')
+url='https://nodejs.org/'
+license=('MIT')
+depends=('openssl-1.0' 'zlib' 'icu' 'libuv' 'http-parser' 'c-ares')
+makedepends=('python2' 'procps-ng')
+optdepends=('npm: nodejs package manager')
+provides=('nodejs')
+conflicts=('nodejs')
+source=("${url}/dist/v${pkgver}/node-v${pkgver}.tar.xz"
+'fix-gcc7.patch')
+sha256sums=('6f6655b85919aa54cb045a6d69a226849802fcc26491d0db4ce59873e41cc2b8'
+'f2044670abfda0d17690bb36c4124f97e4a915e726de6fa0a12da70d018863b3')
+
+prepare() {
+  cd node-v${pkgver}
+
+  patch -p1 -i ../fix-gcc7.patch
+
+  msg 'Fixing for python2 name'
+  find -type f -exec sed \
+-e 's_^#!/usr/bin/env python$_&2_' \
+-e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
+-e 's_^#!/usr/bin/python$_&2_' \
+-e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
+-e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
+-e "s_'python'_'python2'_" -i {} \;
+  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
+}
+
+build() {
+  cd node-v${pkgver}
+  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
+  export PYTHON=python2
+  

[arch-commits] Commit in nodejs-lts-boron/trunk (PKGBUILD)

2017-07-17 Thread Bruno Pagani
Date: Monday, July 17, 2017 @ 18:48:36
  Author: archange
Revision: 245512

upgpkg: nodejs-lts-boron 6.11.1-1

Upstream release, fix a security issue.

Modified:
  nodejs-lts-boron/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 18:00:17 UTC (rev 245511)
+++ PKGBUILD2017-07-17 18:48:36 UTC (rev 245512)
@@ -1,7 +1,7 @@
 # Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
 
 pkgname=nodejs-lts-boron
-pkgver=6.11.0
+pkgver=6.11.1
 pkgrel=1
 pkgdesc='Evented I/O for V8 javascript (LTS release: Boron)'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 conflicts=('nodejs')
 source=("${url}/dist/v${pkgver}/node-v${pkgver}.tar.xz"
 'fix-gcc7.patch')
-sha256sums=('02ba35391edea2b294c736489af01954ce6e6c39d318f4423ae6617c69ef0a51'
+sha256sums=('6f6655b85919aa54cb045a6d69a226849802fcc26491d0db4ce59873e41cc2b8'
 'f2044670abfda0d17690bb36c4124f97e4a915e726de6fa0a12da70d018863b3')
 
 prepare() {


[arch-commits] Commit in nodejs-lts-argon/repos (8 files)

2017-07-17 Thread Bruno Pagani
Date: Monday, July 17, 2017 @ 18:00:17
  Author: archange
Revision: 245511

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

Added:
  nodejs-lts-argon/repos/community-i686/PKGBUILD
(from rev 245510, nodejs-lts-argon/trunk/PKGBUILD)
  nodejs-lts-argon/repos/community-i686/nodejs-v8-icu59.patch
(from rev 245510, nodejs-lts-argon/trunk/nodejs-v8-icu59.patch)
  nodejs-lts-argon/repos/community-x86_64/PKGBUILD
(from rev 245510, nodejs-lts-argon/trunk/PKGBUILD)
  nodejs-lts-argon/repos/community-x86_64/nodejs-v8-icu59.patch
(from rev 245510, nodejs-lts-argon/trunk/nodejs-v8-icu59.patch)
Deleted:
  nodejs-lts-argon/repos/community-i686/PKGBUILD
  nodejs-lts-argon/repos/community-i686/nodejs-v8-icu59.patch
  nodejs-lts-argon/repos/community-x86_64/PKGBUILD
  nodejs-lts-argon/repos/community-x86_64/nodejs-v8-icu59.patch

+
 /PKGBUILD  |  128 +++
 /nodejs-v8-icu59.patch |   20 
 community-i686/PKGBUILD|   64 ---
 community-i686/nodejs-v8-icu59.patch   |   10 --
 community-x86_64/PKGBUILD  |   64 ---
 community-x86_64/nodejs-v8-icu59.patch |   10 --
 6 files changed, 148 insertions(+), 148 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-17 17:59:34 UTC (rev 245510)
+++ community-i686/PKGBUILD 2017-07-17 18:00:17 UTC (rev 245511)
@@ -1,64 +0,0 @@
-# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
-
-pkgname=nodejs-lts-argon
-pkgver=4.8.3
-pkgrel=1
-pkgdesc='Evented I/O for V8 javascript (LTS release: Argon)'
-arch=('i686' 'x86_64')
-url='https://nodejs.org/'
-license=('MIT')
-depends=('openssl-1.0' 'zlib' 'icu' 'libuv' 'http-parser')
-makedepends=('python2' 'procps-ng')
-optdepends=('npm: nodejs package manager')
-provides=('nodejs')
-conflicts=('nodejs')
-source=("${url}/dist/v${pkgver}/node-v${pkgver}.tar.xz"
-'nodejs-v8-icu59.patch')
-sha256sums=('d84e7544c2e31a2d0825b4f8b093d169bf8bdb1881ee8cf75ff937918e59e9cb'
-'3b4d747522f655054829a67b5358f6f1c8bcbb2845f8e0f9866c9c78e55e1be8')
-
-prepare() {
-  cd node-v${pkgver}
-
-  patch -p1 -i ../nodejs-v8-icu59.patch
-
-  msg 'Fixing for python2 name'
-  find -type f -exec sed \
--e 's_^#!/usr/bin/env python$_&2_' \
--e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
--e 's_^#!/usr/bin/python$_&2_' \
--e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
--e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
--e "s_'python'_'python2'_" -i {} \;
-  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
-}
-
-build() {
-  cd node-v${pkgver}
-  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
-  export PYTHON=python2
-  ./configure \
---prefix=/usr \
---with-intl=system-icu \
---without-npm \
---shared-openssl \
---shared-zlib \
---shared-libuv \
---shared-http-parser
-
-  make
-}
-
-check() {
-  cd node-v${pkgver}
-  # At least two expected failures because of OpenSSL 1.1 vs 1.0
-  make test || warning "Tests failed"
-}
-
-package() {
-  cd node-v${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/nodejs/LICENSE
-}

Copied: nodejs-lts-argon/repos/community-i686/PKGBUILD (from rev 245510, 
nodejs-lts-argon/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-07-17 18:00:17 UTC (rev 245511)
@@ -0,0 +1,64 @@
+# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
+
+pkgname=nodejs-lts-argon
+pkgver=4.8.4
+pkgrel=1
+pkgdesc='Evented I/O for V8 javascript (LTS release: Argon)'
+arch=('i686' 'x86_64')
+url='https://nodejs.org/'
+license=('MIT')
+depends=('openssl-1.0' 'zlib' 'icu' 'libuv' 'http-parser')
+makedepends=('python2' 'procps-ng')
+optdepends=('npm: nodejs package manager')
+provides=('nodejs')
+conflicts=('nodejs')
+source=("${url}/dist/v${pkgver}/node-v${pkgver}.tar.xz"
+'nodejs-v8-icu59.patch')
+sha256sums=('35fe633a48cbe93c79327161d9dc964ac9810f4ceb2ed8628487e6e14a15905b'
+'3b4d747522f655054829a67b5358f6f1c8bcbb2845f8e0f9866c9c78e55e1be8')
+
+prepare() {
+  cd node-v${pkgver}
+
+  patch -p1 -i ../nodejs-v8-icu59.patch
+
+  msg 'Fixing for python2 name'
+  find -type f -exec sed \
+-e 's_^#!/usr/bin/env python$_&2_' \
+-e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
+-e 's_^#!/usr/bin/python$_&2_' \
+-e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
+-e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
+-e "s_'python'_'python2'_" -i {} \;
+  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
+}
+
+build() {
+  cd node-v${pkgver}
+  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
+  export PYTHON=python2
+  

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

2017-07-17 Thread Antonio Rojas
Date: Monday, July 17, 2017 @ 17:59:11
  Author: arojas
Revision: 245509

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-17 17:58:40 UTC (rev 245508)
+++ community-i686/PKGBUILD 2017-07-17 17:59:11 UTC (rev 245509)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Allan McRae 
-# Contributor: ezzetabi 
-
-pkgname=ppl
-pkgver=1.2
-pkgrel=1
-pkgdesc="A modern library for convex polyhedra and other numerical 
abstractions"
-arch=(i686 x86_64)
-url="http://bugseng.com/products/ppl;
-license=(GPL3)
-depends=(gmp)
-options=(!docs)
-source=(http://bugseng.com/products/ppl/download/ftp/releases/$pkgver/ppl-$pkgver.tar.gz)
-md5sums=('2b43339316a3139fd75c7e8ca7ddc201')
-validpgpkeys=('058E41DB299DE2DD0AC649CA881457CBB5944392') # Roberto Bagnara
-
-build() {
-  cd ppl-$pkgver
-  ./configure --prefix=/usr --enable-interfaces="c,cxx"
-  make
-}
-
-check() {
-  cd ppl-$pkgver
-  make check
-}
-
-package() {
-  cd ppl-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: ppl/repos/community-i686/PKGBUILD (from rev 245508, ppl/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-07-17 17:59:11 UTC (rev 245509)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Allan McRae 
+# Contributor: ezzetabi 
+
+pkgname=ppl
+pkgver=1.2
+pkgrel=2
+pkgdesc="A modern library for convex polyhedra and other numerical 
abstractions"
+arch=(i686 x86_64)
+url="http://bugseng.com/products/ppl;
+license=(GPL3)
+depends=(glpk)
+makedepends=(swi-prolog)
+optdepends=('swi-prolog: SWI Prolog interface')
+options=(!docs)
+source=(http://bugseng.com/products/ppl/download/ftp/releases/$pkgver/ppl-$pkgver.tar.gz)
+md5sums=('2b43339316a3139fd75c7e8ca7ddc201')
+validpgpkeys=('058E41DB299DE2DD0AC649CA881457CBB5944392') # Roberto Bagnara
+
+build() {
+  cd ppl-$pkgver
+  ./configure --prefix=/usr --enable-interfaces="c,cxx,swi_prolog"
+  make
+}
+
+check() {
+  cd ppl-$pkgver
+  make check
+}
+
+package() {
+  cd ppl-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-07-17 17:58:40 UTC (rev 245508)
+++ community-x86_64/PKGBUILD   2017-07-17 17:59:11 UTC (rev 245509)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Allan McRae 
-# Contributor: ezzetabi 
-
-pkgname=ppl
-pkgver=1.2
-pkgrel=1
-pkgdesc="A modern library for convex polyhedra and other numerical 
abstractions"
-arch=(i686 x86_64)
-url="http://bugseng.com/products/ppl;
-license=(GPL3)
-depends=(gmp)
-options=(!docs)
-source=(http://bugseng.com/products/ppl/download/ftp/releases/$pkgver/ppl-$pkgver.tar.gz)
-md5sums=('2b43339316a3139fd75c7e8ca7ddc201')
-validpgpkeys=('058E41DB299DE2DD0AC649CA881457CBB5944392') # Roberto Bagnara
-
-build() {
-  cd ppl-$pkgver
-  ./configure --prefix=/usr --enable-interfaces="c,cxx"
-  make
-}
-
-check() {
-  cd ppl-$pkgver
-  make check
-}
-
-package() {
-  cd ppl-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: ppl/repos/community-x86_64/PKGBUILD (from rev 245508, 
ppl/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-07-17 17:59:11 UTC (rev 245509)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Allan McRae 
+# Contributor: ezzetabi 
+
+pkgname=ppl
+pkgver=1.2
+pkgrel=2
+pkgdesc="A modern library for convex polyhedra and other numerical 
abstractions"
+arch=(i686 x86_64)
+url="http://bugseng.com/products/ppl;
+license=(GPL3)
+depends=(glpk)
+makedepends=(swi-prolog)
+optdepends=('swi-prolog: SWI Prolog interface')
+options=(!docs)
+source=(http://bugseng.com/products/ppl/download/ftp/releases/$pkgver/ppl-$pkgver.tar.gz)
+md5sums=('2b43339316a3139fd75c7e8ca7ddc201')
+validpgpkeys=('058E41DB299DE2DD0AC649CA881457CBB5944392') # Roberto Bagnara
+
+build() {
+  cd ppl-$pkgver
+  ./configure --prefix=/usr --enable-interfaces="c,cxx,swi_prolog"
+  

[arch-commits] Commit in nodejs-lts-argon/trunk (PKGBUILD)

2017-07-17 Thread Bruno Pagani
Date: Monday, July 17, 2017 @ 17:59:34
  Author: archange
Revision: 245510

upgpkg: nodejs-lts-argon 4.8.4-1

Upstream update, fix a security issue.

Modified:
  nodejs-lts-argon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 17:59:11 UTC (rev 245509)
+++ PKGBUILD2017-07-17 17:59:34 UTC (rev 245510)
@@ -1,7 +1,7 @@
 # Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
 
 pkgname=nodejs-lts-argon
-pkgver=4.8.3
+pkgver=4.8.4
 pkgrel=1
 pkgdesc='Evented I/O for V8 javascript (LTS release: Argon)'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 conflicts=('nodejs')
 source=("${url}/dist/v${pkgver}/node-v${pkgver}.tar.xz"
 'nodejs-v8-icu59.patch')
-sha256sums=('d84e7544c2e31a2d0825b4f8b093d169bf8bdb1881ee8cf75ff937918e59e9cb'
+sha256sums=('35fe633a48cbe93c79327161d9dc964ac9810f4ceb2ed8628487e6e14a15905b'
 '3b4d747522f655054829a67b5358f6f1c8bcbb2845f8e0f9866c9c78e55e1be8')
 
 prepare() {


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

2017-07-17 Thread Antonio Rojas
Date: Monday, July 17, 2017 @ 17:58:40
  Author: arojas
Revision: 245508

Enable glpk and prolog interface (FS#54851)

Modified:
  ppl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 17:09:12 UTC (rev 245507)
+++ PKGBUILD2017-07-17 17:58:40 UTC (rev 245508)
@@ -5,12 +5,14 @@
 
 pkgname=ppl
 pkgver=1.2
-pkgrel=1
+pkgrel=2
 pkgdesc="A modern library for convex polyhedra and other numerical 
abstractions"
 arch=(i686 x86_64)
 url="http://bugseng.com/products/ppl;
 license=(GPL3)
-depends=(gmp)
+depends=(glpk)
+makedepends=(swi-prolog)
+optdepends=('swi-prolog: SWI Prolog interface')
 options=(!docs)
 
source=(http://bugseng.com/products/ppl/download/ftp/releases/$pkgver/ppl-$pkgver.tar.gz)
 md5sums=('2b43339316a3139fd75c7e8ca7ddc201')
@@ -18,7 +20,7 @@
 
 build() {
   cd ppl-$pkgver
-  ./configure --prefix=/usr --enable-interfaces="c,cxx"
+  ./configure --prefix=/usr --enable-interfaces="c,cxx,swi_prolog"
   make
 }
 


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

2017-07-17 Thread Christian Rebischke
Date: Monday, July 17, 2017 @ 17:09:12
  Author: shibumi
Revision: 245507

substituted tag with commit for packer

We don't want tag here because git tags are changeable.
Thanks to anthraxx.

Modified:
  packer-io/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 16:44:48 UTC (rev 245506)
+++ PKGBUILD2017-07-17 17:09:12 UTC (rev 245507)
@@ -9,6 +9,7 @@
 license=('MPL')
 makedepends=('git' 'go')
 depends=('glibc')
+_packer_commit='6a8ae4b258d1bb0beece05c9fc3bbc1c186a0480'
 _go_checkpoint_commit='a8d0786e7fa88adb6b3bcaa341a99af7f9740671'
 _go_cleanhttp_commit='3573b8b52aa7b37b9358d966a898feb387f62437'
 _go_uuid_commit='64130c7a86d732268a38cb04cfbaf0cc987fda98'
@@ -19,7 +20,7 @@
 _go_radix_commit='4239b77079c7b5d1243b7b4736304ce8ddb6f0f2'
 _speakeasy_commit='4aabc24848ce5fd31929f7d1e4ea74d3709c14cd'
 _go_isatty_commit='fc9e8d8ef48496124e79ae0df75490096eccf6fe'
-source=("git+https://github.com/hashicorp/packer#tag=v${pkgver};
+source=("git+https://github.com/hashicorp/packer#commit=${_packer_commit};
 
"git+https://github.com/hashicorp/go-checkpoint#commit=${_go_checkpoint_commit};
 
"git+https://github.com/hashicorp/go-cleanhttp#commit=${_go_cleanhttp_commit};
 "git+https://github.com/hashicorp/go-uuid#commit=${_go_uuid_commit};


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

2017-07-17 Thread Levente Polyak
Date: Monday, July 17, 2017 @ 16:44:42
  Author: anthraxx
Revision: 245505

upgpkg: python-engineio 1.7.0-1

Modified:
  python-engineio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 16:36:25 UTC (rev 245504)
+++ PKGBUILD2017-07-17 16:44:42 UTC (rev 245505)
@@ -2,7 +2,7 @@
 
 pkgbase=python-engineio
 pkgname=('python-engineio' 'python2-engineio')
-pkgver=1.5.4
+pkgver=1.7.0
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -14,7 +14,8 @@
   'python2-mock' 'python2-eventlet' 'python2-pytest')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha512sums=('9a7a075a18349edf9d9f39e5fd956580d81a01ce5daee26cf6a5099665e429115fe922fda9cacf4266ebfc14e403db16aec3b7476ea20ec4bdd395782686340c')
+sha256sums=('9b5a58c3c14e56f266f32169ee32b01beddf38115d6bbba3ef86731799c014b7')
+sha512sums=('e470efbc5a384cd05eec247a14a710ca7fae034b1e0edda77a2f2749e82fc29a75e6f9a7cb1cb0d684f7827e2d0660b0bd3a5b02ccbfc1d67e8efcda373dd7b3')
 
 prepare() {
   cp -ra ${pkgbase}-${pkgver}{,-py2}


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

2017-07-17 Thread Levente Polyak
Date: Monday, July 17, 2017 @ 16:44:48
  Author: anthraxx
Revision: 245506

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-07-17 16:44:42 UTC (rev 245505)
+++ PKGBUILD2017-07-17 16:44:48 UTC (rev 245506)
@@ -1,72 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgbase=python-engineio
-pkgname=('python-engineio' 'python2-engineio')
-pkgver=1.5.4
-pkgrel=1
-pkgdesc='Python implementation of the Engine.IO realtime server'
-url='https://github.com/miguelgrinberg/python-engineio'
-arch=('any')
-license=('MIT')
-makedepends=('python-setuptools' 'python-sphinx' 'python-six'
- 'python2-setuptools' 'python2-sphinx' 'python2-six')
-checkdepends=('python-mock' 'python-eventlet' 'python-pytest' 'python-aiohttp'
-  'python2-mock' 'python2-eventlet' 'python2-pytest')
-options=('!makeflags')
-source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
-sha512sums=('9a7a075a18349edf9d9f39e5fd956580d81a01ce5daee26cf6a5099665e429115fe922fda9cacf4266ebfc14e403db16aec3b7476ea20ec4bdd395782686340c')
-
-prepare() {
-  cp -ra ${pkgbase}-${pkgver}{,-py2}
-}
-
-build() {
-  (cd ${pkgbase}-${pkgver}
-python setup.py build
-make -C docs man text SPHINXBUILD=sphinx-build
-  )
-  (cd ${pkgbase}-${pkgver}-py2
-python2 setup.py build
-make -C docs man text SPHINXBUILD=sphinx-build2
-  )
-}
-
-check() {
-  (cd ${pkgbase}-${pkgver}
-py.test
-  )
-  (cd ${pkgbase}-${pkgver}-py2
-py.test2
-  )
-}
-
-package_python-engineio() {
-  depends=('python-six')
-  optdepends=(
-'python-eventlet: eventlet support'
-'python-aiohttp: aiohttp support'
-  )
-
-  cd ${pkgbase}-${pkgver}
-  python setup.py install -O1 --root="${pkgdir}" --skip-build
-  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm 644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README"
-  install -Dm 644 docs/_build/text/index.txt 
"${pkgdir}/usr/share/doc/${pkgname}/DOCUMENTATION"
-  install -Dm 644 docs/_build/man/engineio.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-}
-
-package_python2-engineio() {
-  depends=('python2-six')
-  optdepends=(
-'python2-eventlet: eventlet support'
-  )
-
-  cd ${pkgbase}-${pkgver}-py2
-  python2 setup.py install -O1 --root="${pkgdir}" --skip-build
-  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm 644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README"
-  install -Dm 644 docs/_build/text/index.txt 
"${pkgdir}/usr/share/doc/${pkgname}/DOCUMENTATION"
-  install -Dm 644 docs/_build/man/engineio.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-engineio/repos/community-any/PKGBUILD (from rev 245505, 
python-engineio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-07-17 16:44:48 UTC (rev 245506)
@@ -0,0 +1,73 @@
+# Maintainer: Levente Polyak 
+
+pkgbase=python-engineio
+pkgname=('python-engineio' 'python2-engineio')
+pkgver=1.7.0
+pkgrel=1
+pkgdesc='Python implementation of the Engine.IO realtime server'
+url='https://github.com/miguelgrinberg/python-engineio'
+arch=('any')
+license=('MIT')
+makedepends=('python-setuptools' 'python-sphinx' 'python-six'
+ 'python2-setuptools' 'python2-sphinx' 'python2-six')
+checkdepends=('python-mock' 'python-eventlet' 'python-pytest' 'python-aiohttp'
+  'python2-mock' 'python2-eventlet' 'python2-pytest')
+options=('!makeflags')
+source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}.tar.gz)
+sha256sums=('9b5a58c3c14e56f266f32169ee32b01beddf38115d6bbba3ef86731799c014b7')
+sha512sums=('e470efbc5a384cd05eec247a14a710ca7fae034b1e0edda77a2f2749e82fc29a75e6f9a7cb1cb0d684f7827e2d0660b0bd3a5b02ccbfc1d67e8efcda373dd7b3')
+
+prepare() {
+  cp -ra ${pkgbase}-${pkgver}{,-py2}
+}
+
+build() {
+  (cd ${pkgbase}-${pkgver}
+python setup.py build
+make -C docs man text SPHINXBUILD=sphinx-build
+  )
+  (cd ${pkgbase}-${pkgver}-py2
+python2 setup.py build
+make -C docs man text SPHINXBUILD=sphinx-build2
+  )
+}
+
+check() {
+  (cd ${pkgbase}-${pkgver}
+py.test
+  )
+  (cd ${pkgbase}-${pkgver}-py2
+py.test2
+  )
+}
+
+package_python-engineio() {
+  depends=('python-six')
+  optdepends=(
+'python-eventlet: eventlet support'
+'python-aiohttp: aiohttp support'
+  )
+
+  cd ${pkgbase}-${pkgver}
+  python setup.py install -O1 

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

2017-07-17 Thread Levente Polyak
Date: Monday, July 17, 2017 @ 16:36:25
  Author: anthraxx
Revision: 245504

archrelease: copy trunk to community-any

Added:
  python-flask-socketio/repos/community-any/PKGBUILD
(from rev 245503, python-flask-socketio/trunk/PKGBUILD)
Deleted:
  python-flask-socketio/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-07-17 16:36:19 UTC (rev 245503)
+++ PKGBUILD2017-07-17 16:36:25 UTC (rev 245504)
@@ -1,63 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgbase=python-flask-socketio
-pkgname=('python-flask-socketio' 'python2-flask-socketio')
-_pkgname=Flask-SocketIO
-pkgver=2.8.6
-pkgrel=1
-pkgdesc='Socket.IO integration for Flask applications'
-url='https://flask-socketio.readthedocs.org/'
-arch=('any')
-license=('MIT')
-makedepends=('python-setuptools' 'python-sphinx' 'python-flask' 
'python-eventlet' 'python-socketio'
- 'python2-setuptools' 'python2-sphinx' 'python2-flask' 
'python2-eventlet' 'python2-socketio')
-checkdepends=('python-coverage' 'python-pytest' 'python2-coverage' 
'python2-pytest')
-options=('!makeflags')
-source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/Flask-SocketIO/archive/v${pkgver}.tar.gz)
-sha512sums=('b487aa8930375adcb48c4afdeea34560ccd4b96365c373186902819d333b4c7c827f283c0fd5cce3e426d6521a983655709c17a2ffbac432975147b22dbbf28a')
-
-prepare() {
-  cp -ra ${_pkgname}-${pkgver}{,-py2}
-}
-
-build() {
-  (cd ${_pkgname}-${pkgver}
-python setup.py build
-make -C docs man text SPHINXBUILD=sphinx-build
-  )
-  (cd ${_pkgname}-${pkgver}-py2
-python2 setup.py build
-make -C docs man text SPHINXBUILD=sphinx-build2
-  )
-}
-
-check() {
-  (cd ${_pkgname}-${pkgver}
-py.test test_socketio.py
-  )
-  (cd ${_pkgname}-${pkgver}-py2
-py.test2 test_socketio.py
-  )
-}
-
-package_python-flask-socketio() {
-  depends=('python-flask' 'python-eventlet' 'python-socketio')
-  cd ${_pkgname}-${pkgver}
-  python setup.py install -O1 --root="${pkgdir}" --skip-build
-  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm 644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README"
-  install -Dm 644 docs/_build/text/index.txt 
"${pkgdir}/usr/share/doc/${pkgname}/DOCUMENTATION"
-  install -Dm 644 docs/_build/man/flask-socketio.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-}
-
-package_python2-flask-socketio() {
-  depends=('python2-flask' 'python2-eventlet' 'python-socketio')
-  cd ${_pkgname}-${pkgver}-py2
-  python2 setup.py install -O1 --root="${pkgdir}" --skip-build
-  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm 644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README"
-  install -Dm 644 docs/_build/text/index.txt 
"${pkgdir}/usr/share/doc/${pkgname}/DOCUMENTATION"
-  install -Dm 644 docs/_build/man/flask-socketio.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-flask-socketio/repos/community-any/PKGBUILD (from rev 245503, 
python-flask-socketio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-07-17 16:36:25 UTC (rev 245504)
@@ -0,0 +1,64 @@
+# Maintainer: Levente Polyak 
+
+pkgbase=python-flask-socketio
+pkgname=('python-flask-socketio' 'python2-flask-socketio')
+_pkgname=Flask-SocketIO
+pkgver=2.9.1
+pkgrel=1
+pkgdesc='Socket.IO integration for Flask applications'
+url='https://flask-socketio.readthedocs.org/'
+arch=('any')
+license=('MIT')
+makedepends=('python-setuptools' 'python-sphinx' 'python-flask' 
'python-eventlet' 'python-socketio'
+ 'python2-setuptools' 'python2-sphinx' 'python2-flask' 
'python2-eventlet' 'python2-socketio')
+checkdepends=('python-coverage' 'python-pytest' 'python2-coverage' 
'python2-pytest')
+options=('!makeflags')
+source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/Flask-SocketIO/archive/v${pkgver}.tar.gz)
+sha256sums=('c649d1e826b91c740e304b91c0777f44f91ee8ee083bc07ec4f3caea404826d4')
+sha512sums=('772b304ef39cb68840b7ad9842696c5fb381533aa81decd72e920df15a3f042e9bd7dd82d460d28ba41d11a06f6010e3ad6f1bfb018a9caab96d15c233489e45')
+
+prepare() {
+  cp -ra ${_pkgname}-${pkgver}{,-py2}
+}
+
+build() {
+  (cd ${_pkgname}-${pkgver}
+python setup.py build
+make -C docs man text SPHINXBUILD=sphinx-build
+  )
+  (cd ${_pkgname}-${pkgver}-py2
+python2 setup.py build
+make -C docs man text SPHINXBUILD=sphinx-build2
+  )
+}
+
+check() {
+  (cd ${_pkgname}-${pkgver}
+py.test test_socketio.py
+  )
+  (cd ${_pkgname}-${pkgver}-py2
+py.test2 test_socketio.py
+  )
+}
+
+package_python-flask-socketio() {
+  depends=('python-flask' 'python-eventlet' 'python-socketio')

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

2017-07-17 Thread Levente Polyak
Date: Monday, July 17, 2017 @ 16:36:19
  Author: anthraxx
Revision: 245503

upgpkg: python-flask-socketio 2.9.1-1

Modified:
  python-flask-socketio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 16:29:31 UTC (rev 245502)
+++ PKGBUILD2017-07-17 16:36:19 UTC (rev 245503)
@@ -3,7 +3,7 @@
 pkgbase=python-flask-socketio
 pkgname=('python-flask-socketio' 'python2-flask-socketio')
 _pkgname=Flask-SocketIO
-pkgver=2.8.6
+pkgver=2.9.1
 pkgrel=1
 pkgdesc='Socket.IO integration for Flask applications'
 url='https://flask-socketio.readthedocs.org/'
@@ -14,7 +14,8 @@
 checkdepends=('python-coverage' 'python-pytest' 'python2-coverage' 
'python2-pytest')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/Flask-SocketIO/archive/v${pkgver}.tar.gz)
-sha512sums=('b487aa8930375adcb48c4afdeea34560ccd4b96365c373186902819d333b4c7c827f283c0fd5cce3e426d6521a983655709c17a2ffbac432975147b22dbbf28a')
+sha256sums=('c649d1e826b91c740e304b91c0777f44f91ee8ee083bc07ec4f3caea404826d4')
+sha512sums=('772b304ef39cb68840b7ad9842696c5fb381533aa81decd72e920df15a3f042e9bd7dd82d460d28ba41d11a06f6010e3ad6f1bfb018a9caab96d15c233489e45')
 
 prepare() {
   cp -ra ${_pkgname}-${pkgver}{,-py2}


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

2017-07-17 Thread Levente Polyak
Date: Monday, July 17, 2017 @ 16:29:24
  Author: anthraxx
Revision: 245501

upgpkg: python-socketio 1.7.6-1

Modified:
  python-socketio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 15:54:50 UTC (rev 245500)
+++ PKGBUILD2017-07-17 16:29:24 UTC (rev 245501)
@@ -2,7 +2,7 @@
 
 pkgbase=python-socketio
 pkgname=('python-socketio' 'python2-socketio')
-pkgver=1.7.5
+pkgver=1.7.6
 pkgrel=1
 pkgdesc='Python implementation of the Socket.IO realtime server'
 url='https://github.com/miguelgrinberg/python-socketio'
@@ -13,8 +13,8 @@
 checkdepends=('python-pytest' 'python-mock' 'python2-pytest' 'python2-mock')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-socketio/archive/v${pkgver}.tar.gz)
-sha256sums=('0f3d5a9903501062ad443170629235e9d4c848e723685b3458021d239f3e0eed')
-sha512sums=('39d94c79c7c3a5e583fe581423520c06eb25f0c1e7807dd1f5621f6434015e2d3812d9a7ae309b7ad4daba0da4fd35f6335360b9f7d270fe274e843fefa55563')
+sha256sums=('b14c43d5003044bd6d08fe81658a564e84c2625567691c86371b7e4c05e238f9')
+sha512sums=('e33e4417e9cbc27b12fec124d115658285f47fa1bcf610e86e1ec0a581d90a26341bb38eeb016e9d3aceb4165bfa3f3deb6515f6f6197943ff8ea94bd4c1')
 
 prepare() {
   cp -ra ${pkgbase}-${pkgver}{,-py2}


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

2017-07-17 Thread Levente Polyak
Date: Monday, July 17, 2017 @ 16:29:31
  Author: anthraxx
Revision: 245502

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-07-17 16:29:24 UTC (rev 245501)
+++ PKGBUILD2017-07-17 16:29:31 UTC (rev 245502)
@@ -1,65 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgbase=python-socketio
-pkgname=('python-socketio' 'python2-socketio')
-pkgver=1.7.5
-pkgrel=1
-pkgdesc='Python implementation of the Socket.IO realtime server'
-url='https://github.com/miguelgrinberg/python-socketio'
-arch=('any')
-license=('MIT')
-makedepends=('python-setuptools' 'python-sphinx' 'python-six' 'python-engineio'
- 'python2-setuptools' 'python2-sphinx' 'python2-six' 
'python2-engineio')
-checkdepends=('python-pytest' 'python-mock' 'python2-pytest' 'python2-mock')
-options=('!makeflags')
-source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-socketio/archive/v${pkgver}.tar.gz)
-sha256sums=('0f3d5a9903501062ad443170629235e9d4c848e723685b3458021d239f3e0eed')
-sha512sums=('39d94c79c7c3a5e583fe581423520c06eb25f0c1e7807dd1f5621f6434015e2d3812d9a7ae309b7ad4daba0da4fd35f6335360b9f7d270fe274e843fefa55563')
-
-prepare() {
-  cp -ra ${pkgbase}-${pkgver}{,-py2}
-}
-
-build() {
-  (cd ${pkgbase}-${pkgver}
-python setup.py build
-make -C docs man text SPHINXBUILD=sphinx-build
-  )
-  (cd ${pkgbase}-${pkgver}-py2
-python2 setup.py build
-make -C docs man text SPHINXBUILD=sphinx-build2
-  )
-}
-
-check() {
-  (cd ${pkgbase}-${pkgver}
-py.test
-  )
-  (cd ${pkgbase}-${pkgver}-py2
-py.test2
-  )
-}
-
-package_python-socketio() {
-  depends=('python-six' 'python-engineio')
-
-  cd ${pkgbase}-${pkgver}
-  python setup.py install -O1 --root="${pkgdir}" --skip-build
-  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm 644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README"
-  install -Dm 644 docs/_build/text/index.txt 
"${pkgdir}/usr/share/doc/${pkgname}/DOCUMENTATION"
-  install -Dm 644 docs/_build/man/socketio.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-}
-
-package_python2-socketio() {
-  depends=('python2-six' 'python2-engineio')
-
-  cd ${pkgbase}-${pkgver}-py2
-  python2 setup.py install -O1 --root="${pkgdir}" --skip-build
-  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm 644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README"
-  install -Dm 644 docs/_build/text/index.txt 
"${pkgdir}/usr/share/doc/${pkgname}/DOCUMENTATION"
-  install -Dm 644 docs/_build/man/socketio.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-socketio/repos/community-any/PKGBUILD (from rev 245501, 
python-socketio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-07-17 16:29:31 UTC (rev 245502)
@@ -0,0 +1,65 @@
+# Maintainer: Levente Polyak 
+
+pkgbase=python-socketio
+pkgname=('python-socketio' 'python2-socketio')
+pkgver=1.7.6
+pkgrel=1
+pkgdesc='Python implementation of the Socket.IO realtime server'
+url='https://github.com/miguelgrinberg/python-socketio'
+arch=('any')
+license=('MIT')
+makedepends=('python-setuptools' 'python-sphinx' 'python-six' 'python-engineio'
+ 'python2-setuptools' 'python2-sphinx' 'python2-six' 
'python2-engineio')
+checkdepends=('python-pytest' 'python-mock' 'python2-pytest' 'python2-mock')
+options=('!makeflags')
+source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-socketio/archive/v${pkgver}.tar.gz)
+sha256sums=('b14c43d5003044bd6d08fe81658a564e84c2625567691c86371b7e4c05e238f9')
+sha512sums=('e33e4417e9cbc27b12fec124d115658285f47fa1bcf610e86e1ec0a581d90a26341bb38eeb016e9d3aceb4165bfa3f3deb6515f6f6197943ff8ea94bd4c1')
+
+prepare() {
+  cp -ra ${pkgbase}-${pkgver}{,-py2}
+}
+
+build() {
+  (cd ${pkgbase}-${pkgver}
+python setup.py build
+make -C docs man text SPHINXBUILD=sphinx-build
+  )
+  (cd ${pkgbase}-${pkgver}-py2
+python2 setup.py build
+make -C docs man text SPHINXBUILD=sphinx-build2
+  )
+}
+
+check() {
+  (cd ${pkgbase}-${pkgver}
+py.test
+  )
+  (cd ${pkgbase}-${pkgver}-py2
+py.test2
+  )
+}
+
+package_python-socketio() {
+  depends=('python-six' 'python-engineio')
+
+  cd ${pkgbase}-${pkgver}
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm 644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README"
+  install -Dm 

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

2017-07-17 Thread Levente Polyak
Date: Monday, July 17, 2017 @ 16:24:10
  Author: anthraxx
Revision: 300704

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

Added:
  iptraf-ng/repos/extra-i686/PKGBUILD
(from rev 300703, iptraf-ng/trunk/PKGBUILD)
  iptraf-ng/repos/extra-x86_64/PKGBUILD
(from rev 300703, iptraf-ng/trunk/PKGBUILD)
Deleted:
  iptraf-ng/repos/extra-i686/PKGBUILD
  iptraf-ng/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-07-17 16:24:01 UTC (rev 300703)
+++ extra-i686/PKGBUILD 2017-07-17 16:24:10 UTC (rev 300704)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-# Maintainer: sh0 
-
-pkgname=iptraf-ng
-pkgver=1.1.4
-pkgrel=2
-pkgdesc="A console-based network monitoring utility (a fork of original 
iptraf)"
-url="https://fedorahosted.org/iptraf-ng/;
-arch=('i686' 'x86_64')
-depends=('ncurses')
-license=('GPL2')
-replaces=('iptraf')
-source=(https://fedorahosted.org/releases/i/p/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('de27cfeeede96e2acfb0edc8439b034a')
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --sbindir=/usr/bin
-  make CFLAGS="$CFLAGS -std=gnu99"
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR=$pkgdir install
-}

Copied: iptraf-ng/repos/extra-i686/PKGBUILD (from rev 300703, 
iptraf-ng/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-07-17 16:24:10 UTC (rev 300704)
@@ -0,0 +1,36 @@
+# Maintainer: Levente Polyak 
+# Contributor: Ionut Biru 
+# Contributor: sh0 
+
+pkgname=iptraf-ng
+pkgver=1.1.4
+pkgrel=3
+pkgdesc='Console-based network monitoring utility'
+url='https://sourceforge.net/projects/iptraf-ng/'
+arch=('i686' 'x86_64')
+depends=('ncurses')
+license=('GPL2')
+replaces=('iptraf')
+source=(https://infrastructure.fedoraproject.org/infra/hosted-content/iptraf-ng/iptraf-ng/iptraf-ng-${pkgver}.tar.gz)
+sha256sums=('79140cf07c0cceb1b5723242847a73aa86f5e4f9dccfe8970fda6801d347eb09')
+sha512sums=('8cafbcec75eb4071156a9e9350ffe6de99cb6386e8f50d05337113872ee50082a30009d85faa02d83633a8e727039791332d600654321b95ca6cfc881774')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sbindir=/usr/bin
+  # preserve our own flags
+  make CFLAGS="${CFLAGS} -std=gnu99" \
+LDFLAGS="${LDFLAGS}" CPPFLAGS="${CPPFLAGS}"
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 iptraf-ng-logrotate.conf -t "${pkgdir}/etc/logrotate.d"
+}
+
+# vim: ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-07-17 16:24:01 UTC (rev 300703)
+++ extra-x86_64/PKGBUILD   2017-07-17 16:24:10 UTC (rev 300704)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-# Maintainer: sh0 
-
-pkgname=iptraf-ng
-pkgver=1.1.4
-pkgrel=2
-pkgdesc="A console-based network monitoring utility (a fork of original 
iptraf)"
-url="https://fedorahosted.org/iptraf-ng/;
-arch=('i686' 'x86_64')
-depends=('ncurses')
-license=('GPL2')
-replaces=('iptraf')
-source=(https://fedorahosted.org/releases/i/p/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('de27cfeeede96e2acfb0edc8439b034a')
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --sbindir=/usr/bin
-  make CFLAGS="$CFLAGS -std=gnu99"
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR=$pkgdir install
-}

Copied: iptraf-ng/repos/extra-x86_64/PKGBUILD (from rev 300703, 
iptraf-ng/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-07-17 16:24:10 UTC (rev 300704)
@@ -0,0 +1,36 @@
+# Maintainer: Levente Polyak 
+# Contributor: Ionut Biru 
+# Contributor: sh0 
+
+pkgname=iptraf-ng
+pkgver=1.1.4
+pkgrel=3
+pkgdesc='Console-based network monitoring utility'
+url='https://sourceforge.net/projects/iptraf-ng/'
+arch=('i686' 'x86_64')
+depends=('ncurses')
+license=('GPL2')
+replaces=('iptraf')
+source=(https://infrastructure.fedoraproject.org/infra/hosted-content/iptraf-ng/iptraf-ng/iptraf-ng-${pkgver}.tar.gz)
+sha256sums=('79140cf07c0cceb1b5723242847a73aa86f5e4f9dccfe8970fda6801d347eb09')

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

2017-07-17 Thread Levente Polyak
Date: Monday, July 17, 2017 @ 16:24:01
  Author: anthraxx
Revision: 300703

upgpkg: iptraf-ng 1.1.4-3 (security flags rebuild)

Modified:
  iptraf-ng/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 16:02:00 UTC (rev 300702)
+++ PKGBUILD2017-07-17 16:24:01 UTC (rev 300703)
@@ -1,27 +1,36 @@
-# $Id$
-# Maintainer: Ionut Biru 
-# Maintainer: sh0 
+# Maintainer: Levente Polyak 
+# Contributor: Ionut Biru 
+# Contributor: sh0 
 
 pkgname=iptraf-ng
 pkgver=1.1.4
-pkgrel=2
-pkgdesc="A console-based network monitoring utility (a fork of original 
iptraf)"
-url="https://fedorahosted.org/iptraf-ng/;
+pkgrel=3
+pkgdesc='Console-based network monitoring utility'
+url='https://sourceforge.net/projects/iptraf-ng/'
 arch=('i686' 'x86_64')
 depends=('ncurses')
 license=('GPL2')
 replaces=('iptraf')
-source=(https://fedorahosted.org/releases/i/p/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('de27cfeeede96e2acfb0edc8439b034a')
+source=(https://infrastructure.fedoraproject.org/infra/hosted-content/iptraf-ng/iptraf-ng/iptraf-ng-${pkgver}.tar.gz)
+sha256sums=('79140cf07c0cceb1b5723242847a73aa86f5e4f9dccfe8970fda6801d347eb09')
+sha512sums=('8cafbcec75eb4071156a9e9350ffe6de99cb6386e8f50d05337113872ee50082a30009d85faa02d83633a8e727039791332d600654321b95ca6cfc881774')
 
 build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --sbindir=/usr/bin
-  make CFLAGS="$CFLAGS -std=gnu99"
+  cd ${pkgname}-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sbindir=/usr/bin
+  # preserve our own flags
+  make CFLAGS="${CFLAGS} -std=gnu99" \
+LDFLAGS="${LDFLAGS}" CPPFLAGS="${CPPFLAGS}"
 }
 
 package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR=$pkgdir install
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 iptraf-ng-logrotate.conf -t "${pkgdir}/etc/logrotate.d"
 }
+
+# vim: ts=2 sw=2 et:


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

2017-07-17 Thread Antonio Rojas
Date: Monday, July 17, 2017 @ 16:02:00
  Author: arojas
Revision: 300702

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

Added:
  kalzium/repos/extra-i686/PKGBUILD
(from rev 300701, kalzium/trunk/PKGBUILD)
  kalzium/repos/extra-i686/kalzium-ocaml-4.04.patch
(from rev 300701, kalzium/trunk/kalzium-ocaml-4.04.patch)
  kalzium/repos/extra-x86_64/PKGBUILD
(from rev 300701, kalzium/trunk/PKGBUILD)
  kalzium/repos/extra-x86_64/kalzium-ocaml-4.04.patch
(from rev 300701, kalzium/trunk/kalzium-ocaml-4.04.patch)
Deleted:
  kalzium/repos/extra-i686/PKGBUILD
  kalzium/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   92 
 extra-i686/PKGBUILD   |   40 -
 extra-i686/kalzium-ocaml-4.04.patch   |   13 
 extra-x86_64/PKGBUILD |   40 -
 extra-x86_64/kalzium-ocaml-4.04.patch |   13 
 5 files changed, 118 insertions(+), 80 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-07-17 16:01:30 UTC (rev 300701)
+++ extra-i686/PKGBUILD 2017-07-17 16:02:00 UTC (rev 300702)
@@ -1,40 +0,0 @@
-# $Id: PKGBUILD 281258 2016-11-18 20:36:27Z arojas $
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgname=kalzium
-pkgver=17.04.3
-pkgrel=1
-pkgdesc="Periodic Table of Elements"
-url="https://kde.org/applications/education/kalzium/;
-arch=(i686 x86_64)
-license=(GPL LGPL FDL)
-depends=(khtml kdelibs4support knewstuff kplotting avogadrolibs openbabel 
chemical-mime-data)
-makedepends=(extra-cmake-modules kdoctools kdesignerplugin python eigen) # 
ocaml facile
-conflicts=(kdeedu-kalzium)
-replaces=(kdeedu-kalzium)
-groups=(kde-applications kdeedu)
-source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('8dfe48d336d746cfc2387d67c5bcb921f9ea4dea1c0231864f7dcd87c35a9d5f'
-'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

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

Copied: kalzium/repos/extra-i686/PKGBUILD (from rev 300701, 
kalzium/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-07-17 16:02:00 UTC (rev 300702)
@@ -0,0 +1,46 @@
+# $Id: PKGBUILD 281258 2016-11-18 20:36:27Z arojas $
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=kalzium
+pkgver=17.04.3
+pkgrel=2
+pkgdesc="Periodic Table of Elements"
+url="https://kde.org/applications/education/kalzium/;
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+depends=(khtml kdelibs4support knewstuff kplotting avogadrolibs openbabel 
chemical-mime-data)
+makedepends=(extra-cmake-modules kdoctools kdesignerplugin python eigen ocaml 
facile)
+conflicts=(kdeedu-kalzium)
+replaces=(kdeedu-kalzium)
+groups=(kde-applications kdeedu)
+source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
+kalzium-ocaml-4.04.patch)
+sha256sums=('8dfe48d336d746cfc2387d67c5bcb921f9ea4dea1c0231864f7dcd87c35a9d5f'
+'SKIP'
+'1bb03588d074331fb78d4647aa038353cc202b9eff20f6bfec95c9e8340dc83b')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+
+# Fix solver build with ocaml 4.04
+  cd $pkgname-$pkgver
+  patch -p2 -i ../kalzium-ocaml-4.04.patch
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: kalzium/repos/extra-i686/kalzium-ocaml-4.04.patch (from rev 300701, 
kalzium/trunk/kalzium-ocaml-4.04.patch)
===
--- extra-i686/kalzium-ocaml-4.04.patch (rev 0)
+++ extra-i686/kalzium-ocaml-4.04.patch 2017-07-17 16:02:00 UTC (rev 300702)
@@ -0,0 +1,13 @@
+diff --git a/kalzium-17.04.3.orig/src/CMakeOCamlInstructions.cmake 
b/kalzium-17.04.3/src/CMakeOCamlInstructions.cmake
+--- a/kalzium-17.04.3.orig/src/CMakeOCamlInstructions.cmake
 b/kalzium-17.04.3/src/CMakeOCamlInstructions.cmake
+@@ -58,7 +58,7 @@
+ # object files
+ 
+ 

[arch-commits] Commit in kalzium/trunk (PKGBUILD kalzium-ocaml-4.04.patch)

2017-07-17 Thread Antonio Rojas
Date: Monday, July 17, 2017 @ 16:01:30
  Author: arojas
Revision: 300701

Reenable the solver

Added:
  kalzium/trunk/kalzium-ocaml-4.04.patch
Modified:
  kalzium/trunk/PKGBUILD

--+
 PKGBUILD |   14 ++
 kalzium-ocaml-4.04.patch |   13 +
 2 files changed, 23 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 15:51:31 UTC (rev 300700)
+++ PKGBUILD2017-07-17 16:01:30 UTC (rev 300701)
@@ -4,24 +4,30 @@
 
 pkgname=kalzium
 pkgver=17.04.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Periodic Table of Elements"
 url="https://kde.org/applications/education/kalzium/;
 arch=(i686 x86_64)
 license=(GPL LGPL FDL)
 depends=(khtml kdelibs4support knewstuff kplotting avogadrolibs openbabel 
chemical-mime-data)
-makedepends=(extra-cmake-modules kdoctools kdesignerplugin python eigen) # 
ocaml facile
+makedepends=(extra-cmake-modules kdoctools kdesignerplugin python eigen ocaml 
facile)
 conflicts=(kdeedu-kalzium)
 replaces=(kdeedu-kalzium)
 groups=(kde-applications kdeedu)
-source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
+kalzium-ocaml-4.04.patch)
 sha256sums=('8dfe48d336d746cfc2387d67c5bcb921f9ea4dea1c0231864f7dcd87c35a9d5f'
-'SKIP')
+'SKIP'
+'1bb03588d074331fb78d4647aa038353cc202b9eff20f6bfec95c9e8340dc83b')
 validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

   F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

 
 prepare() {
   mkdir -p build
+
+# Fix solver build with ocaml 4.04
+  cd $pkgname-$pkgver
+  patch -p2 -i ../kalzium-ocaml-4.04.patch
 }
 
 build() {

Added: kalzium-ocaml-4.04.patch
===
--- kalzium-ocaml-4.04.patch(rev 0)
+++ kalzium-ocaml-4.04.patch2017-07-17 16:01:30 UTC (rev 300701)
@@ -0,0 +1,13 @@
+diff --git a/kalzium-17.04.3.orig/src/CMakeOCamlInstructions.cmake 
b/kalzium-17.04.3/src/CMakeOCamlInstructions.cmake
+--- a/kalzium-17.04.3.orig/src/CMakeOCamlInstructions.cmake
 b/kalzium-17.04.3/src/CMakeOCamlInstructions.cmake
+@@ -58,7 +58,7 @@
+ # object files
+ 
+ add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/modwrap.o
+-   COMMAND ${OCAML_OCAMLOPT_EXECUTABLE} -I 
${LIBFACILE_INCLUDE_DIR} -c ${CMAKE_CURRENT_SOURCE_DIR}/solver/modwrap.c -o 
${CMAKE_CURRENT_BINARY_DIR}/modwrap.o
++   COMMAND ${OCAML_OCAMLOPT_EXECUTABLE} -I 
${LIBFACILE_INCLUDE_DIR} -c ${CMAKE_CURRENT_SOURCE_DIR}/solver/modwrap.c
+DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/solver/modwrap.c 
${CMAKE_CURRENT_BINARY_DIR}/solver.o
+WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
+ set_directory_properties(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES 
${CMAKE_CURRENT_BINARY_DIR}/modwrap.o)
+


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

2017-07-17 Thread Levente Polyak
Date: Monday, July 17, 2017 @ 15:54:44
  Author: anthraxx
Revision: 245499

upgpkg: ls++ 1:0.36-1 (fix epoch)

Modified:
  ls++/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 15:32:11 UTC (rev 245498)
+++ PKGBUILD2017-07-17 15:54:44 UTC (rev 245499)
@@ -5,6 +5,7 @@
 pkgver=0.36
 _gitcommit=e17221c78f398fc9180631c684cdefabb45d1595
 pkgrel=1
+epoch=1
 pkgdesc='Colorized LS on steroids'
 url='https://github.com/trapd00r/ls--/'
 arch=('any')


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

2017-07-17 Thread Levente Polyak
Date: Monday, July 17, 2017 @ 15:54:50
  Author: anthraxx
Revision: 245500

archrelease: copy trunk to community-any

Added:
  ls++/repos/community-any/PKGBUILD
(from rev 245499, ls++/trunk/PKGBUILD)
Deleted:
  ls++/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-07-17 15:54:44 UTC (rev 245499)
+++ PKGBUILD2017-07-17 15:54:50 UTC (rev 245500)
@@ -1,35 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: JokerBoy 
-
-pkgname=ls++
-pkgver=0.36
-_gitcommit=e17221c78f398fc9180631c684cdefabb45d1595
-pkgrel=1
-pkgdesc='Colorized LS on steroids'
-url='https://github.com/trapd00r/ls--/'
-arch=('any')
-license=('GPL2')
-depends=('perl-term-extendedcolor')
-makedepends=('git')
-backup=('etc/ls++.conf')
-options=('!emptydirs')
-source=(${pkgname}::"git+https://github.com/trapd00r/ls--#commit=${_gitcommit};)
-sha512sums=('SKIP')
-
-build() {
-  cd ${pkgname}
-  PERL_MM_USE_DEFAULT=1 \
-PERL_AUTOINSTALL=--skipdeps \
-PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='${pkgdir}'" \
-PERL_MB_OPT="--installdirs vendor --destdir '${pkgdir}'" \
-MODULEBUILDRC=/dev/null \
-perl Makefile.PL
-  make
-}
-
-package() {
-  cd ${pkgname}
-  make PREFIX=/ DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: ls++/repos/community-any/PKGBUILD (from rev 245499, ls++/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-07-17 15:54:50 UTC (rev 245500)
@@ -0,0 +1,36 @@
+# Maintainer: Levente Polyak 
+# Contributor: JokerBoy 
+
+pkgname=ls++
+pkgver=0.36
+_gitcommit=e17221c78f398fc9180631c684cdefabb45d1595
+pkgrel=1
+epoch=1
+pkgdesc='Colorized LS on steroids'
+url='https://github.com/trapd00r/ls--/'
+arch=('any')
+license=('GPL2')
+depends=('perl-term-extendedcolor')
+makedepends=('git')
+backup=('etc/ls++.conf')
+options=('!emptydirs')
+source=(${pkgname}::"git+https://github.com/trapd00r/ls--#commit=${_gitcommit};)
+sha512sums=('SKIP')
+
+build() {
+  cd ${pkgname}
+  PERL_MM_USE_DEFAULT=1 \
+PERL_AUTOINSTALL=--skipdeps \
+PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='${pkgdir}'" \
+PERL_MB_OPT="--installdirs vendor --destdir '${pkgdir}'" \
+MODULEBUILDRC=/dev/null \
+perl Makefile.PL
+  make
+}
+
+package() {
+  cd ${pkgname}
+  make PREFIX=/ DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:


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

2017-07-17 Thread Antonio Rojas
Date: Monday, July 17, 2017 @ 15:51:31
  Author: arojas
Revision: 300700

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-07-17 15:50:40 UTC (rev 300699)
+++ extra-i686/PKGBUILD 2017-07-17 15:51:31 UTC (rev 300700)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-
-pkgname=facile
-pkgver=1.1.3
-pkgrel=1
-pkgdesc="A Functional Constraint Library"
-arch=(i686 x86_64)
-url="http://www.recherche.enac.fr/opti/facile/;
-license=("LGPL")
-makedepends=('ocaml')
-depends=()
-source=(http://opti.recherche.enac.fr/facile/distrib/$pkgname-$pkgver.tar.gz)
-md5sums=('172c4fbea636a8fa575b988390639d8d')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver/src"
-  install -d "$pkgdir/usr/lib/ocaml/facile"
-  install -D -m 644 facile.cmxa facile.cmi facile.cma facile.a 
"$pkgdir/usr/lib/ocaml/facile"
-}

Copied: facile/repos/extra-i686/PKGBUILD (from rev 300699, 
facile/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-07-17 15:51:31 UTC (rev 300700)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgname=facile
+pkgver=1.1.3
+pkgrel=2
+pkgdesc="A Functional Constraint Library"
+arch=(i686 x86_64)
+url="http://www.recherche.enac.fr/opti/facile/;
+license=("LGPL")
+makedepends=('ocaml')
+depends=()
+source=(http://opti.recherche.enac.fr/facile/distrib/$pkgname-$pkgver.tar.gz)
+md5sums=('172c4fbea636a8fa575b988390639d8d')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver/src"
+  install -d "$pkgdir/usr/lib/ocaml/facile"
+  install -D -m 644 facile.cmxa facile.cmi facile.cma facile.a 
"$pkgdir/usr/lib/ocaml/facile"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-07-17 15:50:40 UTC (rev 300699)
+++ extra-x86_64/PKGBUILD   2017-07-17 15:51:31 UTC (rev 300700)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-
-pkgname=facile
-pkgver=1.1.3
-pkgrel=1
-pkgdesc="A Functional Constraint Library"
-arch=(i686 x86_64)
-url="http://www.recherche.enac.fr/opti/facile/;
-license=("LGPL")
-makedepends=('ocaml')
-depends=()
-source=(http://opti.recherche.enac.fr/facile/distrib/$pkgname-$pkgver.tar.gz)
-md5sums=('172c4fbea636a8fa575b988390639d8d')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver/src"
-  install -d "$pkgdir/usr/lib/ocaml/facile"
-  install -D -m 644 facile.cmxa facile.cmi facile.cma facile.a 
"$pkgdir/usr/lib/ocaml/facile"
-}

Copied: facile/repos/extra-x86_64/PKGBUILD (from rev 300699, 
facile/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-07-17 15:51:31 UTC (rev 300700)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgname=facile
+pkgver=1.1.3
+pkgrel=2
+pkgdesc="A Functional Constraint Library"
+arch=(i686 x86_64)
+url="http://www.recherche.enac.fr/opti/facile/;
+license=("LGPL")
+makedepends=('ocaml')
+depends=()
+source=(http://opti.recherche.enac.fr/facile/distrib/$pkgname-$pkgver.tar.gz)
+md5sums=('172c4fbea636a8fa575b988390639d8d')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver/src"
+  install -d "$pkgdir/usr/lib/ocaml/facile"
+  install -D -m 644 facile.cmxa facile.cmi facile.cma facile.a 
"$pkgdir/usr/lib/ocaml/facile"
+}


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

2017-07-17 Thread Antonio Rojas
Date: Monday, July 17, 2017 @ 15:50:40
  Author: arojas
Revision: 300699

Rebuild with ocaml 4.05

Modified:
  facile/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 15:06:50 UTC (rev 300698)
+++ PKGBUILD2017-07-17 15:50:40 UTC (rev 300699)
@@ -3,7 +3,7 @@
 
 pkgname=facile
 pkgver=1.1.3
-pkgrel=1
+pkgrel=2
 pkgdesc="A Functional Constraint Library"
 arch=(i686 x86_64)
 url="http://www.recherche.enac.fr/opti/facile/;


[arch-commits] Commit in deepin-control-center/repos (4 files)

2017-07-17 Thread Felix Yan
Date: Monday, July 17, 2017 @ 15:32:11
  Author: felixonmars
Revision: 245498

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

Added:
  deepin-control-center/repos/community-i686/PKGBUILD
(from rev 245497, deepin-control-center/trunk/PKGBUILD)
  deepin-control-center/repos/community-x86_64/PKGBUILD
(from rev 245497, deepin-control-center/trunk/PKGBUILD)
Deleted:
  deepin-control-center/repos/community-i686/PKGBUILD
  deepin-control-center/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-17 15:31:32 UTC (rev 245497)
+++ community-i686/PKGBUILD 2017-07-17 15:32:11 UTC (rev 245498)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-control-center
-pkgver=4.2.3
-pkgrel=2
-pkgdesc='New control center for linux deepin'
-arch=('i686' 'x86_64')
-url="http://github.com/linuxdeepin/dde-control-center;
-license=('GPL3')
-depends=('desktop-file-utils' 'deepin-tool-kit' 'deepin-account-faces' 
'deepin-api' 'geoip'
- 'geoip-database' 'geoip-database-extra' 'deepin-daemon' 'startdde'
- 'deepin-qt-dbus-factory' 'deepin-qt5integration')
-makedepends=('deepin-dock' 'qt5-tools')
-conflicts=('dde-control-center' 'dde-dock-applets')
-replaces=('dde-control-center' 'dde-dock-applets')
-groups=('deepin')
-source=("$pkgname-$pkgver.tar.gz::http://github.com/linuxdeepin/dde-control-center/archive/$pkgver.tar.gz;)
-sha512sums=('d235b0671f9fe63d7b4fef2c64eec160204598c5f0b9c53120ff5d711692f7d4a4fc6ca7c2ecc97605253ce70787d65457b136950431021089ee4cfde47970cf')
-
-build() {
-  cd dde-control-center-$pkgver
-  qmake-qt5 QMAKE_CFLAGS_ISYSTEM= PREFIX=/usr DISABLE_SYS_UPDATE=YES 
QMAKE_CXXFLAGS_RELEASE-="-fno-plt" QMAKE_LFLAGS_RELEASE="${LDFLAGS/,-z,now}"
-  make
-}
-
-package() {
-  cd dde-control-center-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-control-center/repos/community-i686/PKGBUILD (from rev 245497, 
deepin-control-center/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-07-17 15:32:11 UTC (rev 245498)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-control-center
+pkgver=4.2.3
+pkgrel=3
+pkgdesc='New control center for linux deepin'
+arch=('i686' 'x86_64')
+url="http://github.com/linuxdeepin/dde-control-center;
+license=('GPL3')
+depends=('desktop-file-utils' 'deepin-tool-kit' 'deepin-account-faces' 
'deepin-api' 'geoip'
+ 'geoip-database' 'geoip-database-extra' 'deepin-daemon' 'startdde'
+ 'deepin-qt-dbus-factory' 'deepin-qt5integration')
+makedepends=('deepin-dock' 'qt5-tools')
+conflicts=('dde-control-center' 'dde-dock-applets')
+replaces=('dde-control-center' 'dde-dock-applets')
+groups=('deepin')
+source=("$pkgname-$pkgver.tar.gz::http://github.com/linuxdeepin/dde-control-center/archive/$pkgver.tar.gz;)
+sha512sums=('d235b0671f9fe63d7b4fef2c64eec160204598c5f0b9c53120ff5d711692f7d4a4fc6ca7c2ecc97605253ce70787d65457b136950431021089ee4cfde47970cf')
+
+build() {
+  cd dde-control-center-$pkgver
+  sed -i '/checkNotify/d' plugins/notify/notifymanager.h
+  sed -e '/replyFinished/d' -e '/slotTimeout/d' -i 
plugins/weather/weatherrequest.h
+  qmake-qt5 QMAKE_CFLAGS_ISYSTEM= PREFIX=/usr DISABLE_SYS_UPDATE=YES
+  make
+}
+
+package() {
+  cd dde-control-center-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-07-17 15:31:32 UTC (rev 245497)
+++ community-x86_64/PKGBUILD   2017-07-17 15:32:11 UTC (rev 245498)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-control-center
-pkgver=4.2.3
-pkgrel=2
-pkgdesc='New control center for linux deepin'
-arch=('i686' 'x86_64')
-url="http://github.com/linuxdeepin/dde-control-center;
-license=('GPL3')
-depends=('desktop-file-utils' 'deepin-tool-kit' 'deepin-account-faces' 
'deepin-api' 'geoip'
- 'geoip-database' 'geoip-database-extra' 'deepin-daemon' 'startdde'
- 'deepin-qt-dbus-factory' 'deepin-qt5integration')
-makedepends=('deepin-dock' 'qt5-tools')
-conflicts=('dde-control-center' 'dde-dock-applets')
-replaces=('dde-control-center' 

[arch-commits] Commit in deepin-control-center/trunk (PKGBUILD)

2017-07-17 Thread Felix Yan
Date: Monday, July 17, 2017 @ 15:31:32
  Author: felixonmars
Revision: 245497

upgpkg: deepin-control-center 4.2.3-3

apply some fix and re-enable -fno-plt and -z,now

Modified:
  deepin-control-center/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 15:30:04 UTC (rev 245496)
+++ PKGBUILD2017-07-17 15:31:32 UTC (rev 245497)
@@ -5,7 +5,7 @@
 
 pkgname=deepin-control-center
 pkgver=4.2.3
-pkgrel=2
+pkgrel=3
 pkgdesc='New control center for linux deepin'
 arch=('i686' 'x86_64')
 url="http://github.com/linuxdeepin/dde-control-center;
@@ -22,7 +22,9 @@
 
 build() {
   cd dde-control-center-$pkgver
-  qmake-qt5 QMAKE_CFLAGS_ISYSTEM= PREFIX=/usr DISABLE_SYS_UPDATE=YES 
QMAKE_CXXFLAGS_RELEASE-="-fno-plt" QMAKE_LFLAGS_RELEASE="${LDFLAGS/,-z,now}"
+  sed -i '/checkNotify/d' plugins/notify/notifymanager.h
+  sed -e '/replyFinished/d' -e '/slotTimeout/d' -i 
plugins/weather/weatherrequest.h
+  qmake-qt5 QMAKE_CFLAGS_ISYSTEM= PREFIX=/usr DISABLE_SYS_UPDATE=YES
   make
 }
 


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

2017-07-17 Thread Antonio Rojas
Date: Monday, July 17, 2017 @ 15:30:04
  Author: arojas
Revision: 245496

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-17 15:29:30 UTC (rev 245495)
+++ community-i686/PKGBUILD 2017-07-17 15:30:04 UTC (rev 245496)
@@ -1,44 +0,0 @@
-# $Id: PKGBUILD 175037 2016-05-12 15:18:07Z arojas $
-# Maintainer: Antonio Rojas 
-
-pkgbase=giac
-pkgname=(xcas libgiac)
-_pkgver=1.2.3-55
-pkgver=${_pkgver//-/.}
-pkgrel=2
-pkgdesc="A free computer algebra system"
-arch=(i686 x86_64)
-url="http://www-fourier.ujf-grenoble.fr/~parisse/giac.html;
-license=(GPL3)
-makedepends=(mpfi gsl pari ntl lapack libpng libjpeg fltk texlive-core)
-source=("http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgbase}_${_pkgver}.tar.gz;)
-sha256sums=('bc0d1a6a90d75fa910d23b98a639eda68e48faa2005afae7d1032c912f57fb9d')
-
-build() {
-  cd $pkgbase-${pkgver%.*}
-
-  ./configure --prefix=/usr
-  make
-}
-
-package_xcas() {
-  depends=(libgiac fltk)
-  conflicts=(giac)
-  provides=(giac)
-  replaces=(giac)
-
-  cd $pkgbase-${pkgver%.*}
-  make DESTDIR="$pkgdir" install
-
-  rm -r "$pkgdir"/usr/{lib,include}
-}
-
-package_libgiac() {
-  pkgdesc="Giac shared library"
-  depends=(mpfi gsl pari ntl lapack libpng)
-
-  cd $pkgbase-${pkgver%.*}
-  make DESTDIR="$pkgdir" install
-
-  rm -r "$pkgdir"/usr/{bin,share}
-}

Copied: giac/repos/community-i686/PKGBUILD (from rev 245495, 
giac/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-07-17 15:30:04 UTC (rev 245496)
@@ -0,0 +1,44 @@
+# $Id: PKGBUILD 175037 2016-05-12 15:18:07Z arojas $
+# Maintainer: Antonio Rojas 
+
+pkgbase=giac
+pkgname=(xcas libgiac)
+_pkgver=1.2.3-57
+pkgver=${_pkgver//-/.}
+pkgrel=1
+pkgdesc="A free computer algebra system"
+arch=(i686 x86_64)
+url="http://www-fourier.ujf-grenoble.fr/~parisse/giac.html;
+license=(GPL3)
+makedepends=(mpfi gsl pari ntl lapack libpng libjpeg fltk texlive-core)
+source=("http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgbase}_${_pkgver}.tar.gz;)
+sha256sums=('21df9e66882ec3e6f5b9e4827b410b4899371fdf1e258fc33136ea97450eec28')
+
+build() {
+  cd $pkgbase-${pkgver%.*}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package_xcas() {
+  depends=(libgiac fltk)
+  conflicts=(giac)
+  provides=(giac)
+  replaces=(giac)
+
+  cd $pkgbase-${pkgver%.*}
+  make DESTDIR="$pkgdir" install
+
+  rm -r "$pkgdir"/usr/{lib,include}
+}
+
+package_libgiac() {
+  pkgdesc="Giac shared library"
+  depends=(mpfi gsl pari ntl lapack libpng)
+
+  cd $pkgbase-${pkgver%.*}
+  make DESTDIR="$pkgdir" install
+
+  rm -r "$pkgdir"/usr/{bin,share}
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-07-17 15:29:30 UTC (rev 245495)
+++ community-x86_64/PKGBUILD   2017-07-17 15:30:04 UTC (rev 245496)
@@ -1,44 +0,0 @@
-# $Id: PKGBUILD 175037 2016-05-12 15:18:07Z arojas $
-# Maintainer: Antonio Rojas 
-
-pkgbase=giac
-pkgname=(xcas libgiac)
-_pkgver=1.2.3-55
-pkgver=${_pkgver//-/.}
-pkgrel=2
-pkgdesc="A free computer algebra system"
-arch=(i686 x86_64)
-url="http://www-fourier.ujf-grenoble.fr/~parisse/giac.html;
-license=(GPL3)
-makedepends=(mpfi gsl pari ntl lapack libpng libjpeg fltk texlive-core)
-source=("http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgbase}_${_pkgver}.tar.gz;)
-sha256sums=('bc0d1a6a90d75fa910d23b98a639eda68e48faa2005afae7d1032c912f57fb9d')
-
-build() {
-  cd $pkgbase-${pkgver%.*}
-
-  ./configure --prefix=/usr
-  make
-}
-
-package_xcas() {
-  depends=(libgiac fltk)
-  conflicts=(giac)
-  provides=(giac)
-  replaces=(giac)
-
-  cd $pkgbase-${pkgver%.*}
-  make DESTDIR="$pkgdir" install
-
-  rm -r "$pkgdir"/usr/{lib,include}
-}
-
-package_libgiac() {
-  pkgdesc="Giac shared library"
-  depends=(mpfi gsl pari ntl lapack libpng)
-
-  cd $pkgbase-${pkgver%.*}
-  make DESTDIR="$pkgdir" install
-
-  rm -r "$pkgdir"/usr/{bin,share}
-}

Copied: giac/repos/community-x86_64/PKGBUILD (from rev 245495, 
giac/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD

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

2017-07-17 Thread Antonio Rojas
Date: Monday, July 17, 2017 @ 15:29:30
  Author: arojas
Revision: 245495

Update to 1.2.3.57

Modified:
  giac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 15:19:28 UTC (rev 245494)
+++ PKGBUILD2017-07-17 15:29:30 UTC (rev 245495)
@@ -3,9 +3,9 @@
 
 pkgbase=giac
 pkgname=(xcas libgiac)
-_pkgver=1.2.3-55
+_pkgver=1.2.3-57
 pkgver=${_pkgver//-/.}
-pkgrel=2
+pkgrel=1
 pkgdesc="A free computer algebra system"
 arch=(i686 x86_64)
 url="http://www-fourier.ujf-grenoble.fr/~parisse/giac.html;
@@ -12,7 +12,7 @@
 license=(GPL3)
 makedepends=(mpfi gsl pari ntl lapack libpng libjpeg fltk texlive-core)
 
source=("http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgbase}_${_pkgver}.tar.gz;)
-sha256sums=('bc0d1a6a90d75fa910d23b98a639eda68e48faa2005afae7d1032c912f57fb9d')
+sha256sums=('21df9e66882ec3e6f5b9e4827b410b4899371fdf1e258fc33136ea97450eec28')
 
 build() {
   cd $pkgbase-${pkgver%.*}


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

2017-07-17 Thread Felix Yan
Date: Monday, July 17, 2017 @ 15:19:28
  Author: felixonmars
Revision: 245494

archrelease: copy trunk to community-any

Added:
  dns-lexicon/repos/community-any/PKGBUILD
(from rev 245493, dns-lexicon/trunk/PKGBUILD)
Deleted:
  dns-lexicon/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-07-17 15:19:04 UTC (rev 245493)
+++ PKGBUILD2017-07-17 15:19:28 UTC (rev 245494)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=dns-lexicon
-pkgver=2.1.8
-pkgrel=1
-pkgdesc="Manipulate DNS records on various DNS providers in a 
standardized/agnostic way"
-arch=('any')
-url="https://github.com/AnalogJ/lexicon;
-license=('MIT')
-depends=('python-future' 'python-requests' 'python-setuptools' 
'python-tldextract')
-checkdepends=('python-pytest-runner' 'python-vcrpy')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/AnalogJ/lexicon/archive/v$pkgver.tar.gz;)
-sha512sums=('5e2ecf272b4d8381d64c1d78b5986a2928dbb45c556280420b2c2e2e596054ee159819f75ba0aba81f5535c1929e2165ed186e48fffadf8bf0502751bff8226a')
-
-build() {
-  cd lexicon-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd lexicon-$pkgver
-  python setup.py pytest --addopts '--ignore tests/providers/test_route53.py 
--ignore tests/providers/test_transip.py'
-}
-
-package() {
-  cd lexicon-$pkgver
-  python setup.py install -O1 --prefix=/usr --root="$pkgdir"
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dns-lexicon/repos/community-any/PKGBUILD (from rev 245493, 
dns-lexicon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-07-17 15:19:28 UTC (rev 245494)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=dns-lexicon
+pkgver=2.1.10
+pkgrel=1
+pkgdesc="Manipulate DNS records on various DNS providers in a 
standardized/agnostic way"
+arch=('any')
+url="https://github.com/AnalogJ/lexicon;
+license=('MIT')
+depends=('python-future' 'python-requests' 'python-setuptools' 
'python-tldextract')
+optdepends=('python-softlayer: for SoftLayer support'
+'python-boto3: for Route53 support')
+checkdepends=('python-pytest-runner' 'python-vcrpy' 'python-softlayer' 
'python-boto3')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/AnalogJ/lexicon/archive/v$pkgver.tar.gz;)
+sha512sums=('b98a00e80434fa9d58af19435d43f609280a28cba38937651dc38285bdfbb7f6b7c269d3a7c989ba783e2efe49be3ef8a7d9912f6a2611fe45f35a38dc243ba1')
+
+build() {
+  cd lexicon-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd lexicon-$pkgver
+  python setup.py pytest --addopts '--ignore tests/providers/test_route53.py 
--ignore tests/providers/test_transip.py'
+}
+
+package() {
+  cd lexicon-$pkgver
+  python setup.py install -O1 --prefix=/usr --root="$pkgdir"
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-07-17 Thread Felix Yan
Date: Monday, July 17, 2017 @ 15:19:04
  Author: felixonmars
Revision: 245493

upgpkg: dns-lexicon 2.1.10-1

Modified:
  dns-lexicon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 15:16:47 UTC (rev 245492)
+++ PKGBUILD2017-07-17 15:19:04 UTC (rev 245493)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=dns-lexicon
-pkgver=2.1.8
+pkgver=2.1.10
 pkgrel=1
 pkgdesc="Manipulate DNS records on various DNS providers in a 
standardized/agnostic way"
 arch=('any')
@@ -9,9 +9,11 @@
 url="https://github.com/AnalogJ/lexicon;
 license=('MIT')
 depends=('python-future' 'python-requests' 'python-setuptools' 
'python-tldextract')
-checkdepends=('python-pytest-runner' 'python-vcrpy')
+optdepends=('python-softlayer: for SoftLayer support'
+'python-boto3: for Route53 support')
+checkdepends=('python-pytest-runner' 'python-vcrpy' 'python-softlayer' 
'python-boto3')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/AnalogJ/lexicon/archive/v$pkgver.tar.gz;)
-sha512sums=('5e2ecf272b4d8381d64c1d78b5986a2928dbb45c556280420b2c2e2e596054ee159819f75ba0aba81f5535c1929e2165ed186e48fffadf8bf0502751bff8226a')
+sha512sums=('b98a00e80434fa9d58af19435d43f609280a28cba38937651dc38285bdfbb7f6b7c269d3a7c989ba783e2efe49be3ef8a7d9912f6a2611fe45f35a38dc243ba1')
 
 build() {
   cd lexicon-$pkgver


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

2017-07-17 Thread Felix Yan
Date: Monday, July 17, 2017 @ 15:16:47
  Author: felixonmars
Revision: 245492

archrelease: copy trunk to community-any

Added:
  python-softlayer/repos/community-any/
  python-softlayer/repos/community-any/PKGBUILD
(from rev 245491, python-softlayer/trunk/PKGBUILD)

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

Copied: python-softlayer/repos/community-any/PKGBUILD (from rev 245491, 
python-softlayer/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2017-07-17 15:16:47 UTC (rev 245492)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-softlayer
+pkgname=('python-softlayer' 'python2-softlayer')
+pkgver=5.2.7
+pkgrel=1
+pkgdesc="A library for SoftLayer's API"
+arch=('any')
+license=('MIT')
+url='http://github.com/softlayer/softlayer-python'
+makedepends=('python-setuptools' 'python2-setuptools' 'python-prettytable' 
'python2-prettytable'
+ 'python-click' 'python2-click' 'python-requests' 
'python2-requests'
+ 'python-prompt_toolkit' 'python2-prompt_toolkit' 
'python-pygments' 'python2-pygments')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-mock' 
'python2-mock'
+  'python-testtools' 'python2-testtools')
+source=("$pkgbase-$pkgver.tar.gz::http://github.com/softlayer/softlayer-python/archive/v$pkgver.tar.gz;)
+sha512sums=('f464dfc91a87dd4afedf176d4910bd8bd051bd93bba6c34f2064e1608f1f253492d758dc63f52f8ff2077d9be5ac0568ebc72e101833854171f4125265f54a46')
+
+prepare() {
+  cp -a softlayer-python-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/softlayer-python-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/softlayer-python-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/softlayer-python-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/softlayer-python-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-softlayer() {
+  depends=('python-setuptools' 'python-prettytable' 'python-click' 
'python-requests'
+   'python-prompt_toolkit' 'python-pygments')
+
+  cd softlayer-python-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-softlayer() {
+  depends=('python2-setuptools' 'python2-prettytable' 'python2-click' 
'python2-requests'
+   'python2-prompt_toolkit' 'python2-pygments')
+
+  cd softlayer-python-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2017-07-17 Thread Felix Yan
Date: Monday, July 17, 2017 @ 15:16:23
  Author: felixonmars
Revision: 245491

addpkg: python-softlayer 5.2.7-1

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

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

Added: python-softlayer/trunk/PKGBUILD
===
--- python-softlayer/trunk/PKGBUILD (rev 0)
+++ python-softlayer/trunk/PKGBUILD 2017-07-17 15:16:23 UTC (rev 245491)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-softlayer
+pkgname=('python-softlayer' 'python2-softlayer')
+pkgver=5.2.7
+pkgrel=1
+pkgdesc="A library for SoftLayer's API"
+arch=('any')
+license=('MIT')
+url='http://github.com/softlayer/softlayer-python'
+makedepends=('python-setuptools' 'python2-setuptools' 'python-prettytable' 
'python2-prettytable'
+ 'python-click' 'python2-click' 'python-requests' 
'python2-requests'
+ 'python-prompt_toolkit' 'python2-prompt_toolkit' 
'python-pygments' 'python2-pygments')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-mock' 
'python2-mock'
+  'python-testtools' 'python2-testtools')
+source=("$pkgbase-$pkgver.tar.gz::http://github.com/softlayer/softlayer-python/archive/v$pkgver.tar.gz;)
+sha512sums=('f464dfc91a87dd4afedf176d4910bd8bd051bd93bba6c34f2064e1608f1f253492d758dc63f52f8ff2077d9be5ac0568ebc72e101833854171f4125265f54a46')
+
+prepare() {
+  cp -a softlayer-python-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/softlayer-python-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/softlayer-python-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/softlayer-python-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/softlayer-python-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-softlayer() {
+  depends=('python-setuptools' 'python-prettytable' 'python-click' 
'python-requests'
+   'python-prompt_toolkit' 'python-pygments')
+
+  cd softlayer-python-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-softlayer() {
+  depends=('python2-setuptools' 'python2-prettytable' 'python2-click' 
'python2-requests'
+   'python2-prompt_toolkit' 'python2-pygments')
+
+  cd softlayer-python-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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


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

2017-07-17 Thread Felix Yan
Date: Monday, July 17, 2017 @ 15:07:29
  Author: felixonmars
Revision: 245490

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-17 15:06:38 UTC (rev 245489)
+++ community-i686/PKGBUILD 2017-07-17 15:07:29 UTC (rev 245490)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-# Source: https://github.com/zancarius/archlinux-pkgbuilds
-
-pkgbase=python-billiard
-pkgname=('python-billiard' 'python2-billiard')
-pkgver=3.5.0.2
-pkgrel=2
-pkgdesc="Python multiprocessing fork with improvements and bugfixes."
-arch=('i686' 'x86_64')
-url="http://pypi.python.org/pypi/billiard;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-case' 
'python2-case')
-source=("https://pypi.io/packages/source/b/billiard/billiard-$pkgver.tar.gz;)
-md5sums=('301a16643bc51d73869df81c9aa1e082')
-
-prepare() {
-  cp -a billiard-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/billiard-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/billiard-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/billiard-$pkgver
-  python setup.py ptr
-
-  cd "$srcdir"/billiard-$pkgver-py2
-  python2 setup.py ptr
-}
-
-package_python-billiard() {
-  depends=('python')
-
-  cd "$srcdir"/billiard-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm0664 "$srcdir"/billiard-$pkgver/LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-billiard() {
-  depends=('python2')
-
-  cd "$srcdir"/billiard-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm0664 "$srcdir"/billiard-$pkgver/LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-billiard/repos/community-i686/PKGBUILD (from rev 245489, 
python-billiard/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-07-17 15:07:29 UTC (rev 245490)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+# Source: https://github.com/zancarius/archlinux-pkgbuilds
+
+pkgbase=python-billiard
+pkgname=('python-billiard' 'python2-billiard')
+pkgver=3.5.0.3
+pkgrel=1
+pkgdesc="Python multiprocessing fork with improvements and bugfixes."
+arch=('i686' 'x86_64')
+url="http://pypi.python.org/pypi/billiard;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-case' 
'python2-case')
+source=("https://pypi.io/packages/source/b/billiard/billiard-$pkgver.tar.gz;)
+sha512sums=('f3a98e9b7af8c0b5741bcea915c0ff8d6e32e26d79637d14fc09ea85dd80693ea8205e13ac2d86e5035c377fdd6d769a2647b005dc10af8b106c75464458a808')
+
+prepare() {
+  cp -a billiard-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/billiard-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/billiard-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/billiard-$pkgver
+  python setup.py ptr
+
+  cd "$srcdir"/billiard-$pkgver-py2
+  python2 setup.py ptr
+}
+
+package_python-billiard() {
+  depends=('python')
+
+  cd "$srcdir"/billiard-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm0664 "$srcdir"/billiard-$pkgver/LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-billiard() {
+  depends=('python2')
+
+  cd "$srcdir"/billiard-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm0664 "$srcdir"/billiard-$pkgver/LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-07-17 15:06:38 UTC (rev 245489)
+++ community-x86_64/PKGBUILD   2017-07-17 15:07:29 UTC (rev 245490)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-# Source: 

[arch-commits] Commit in perl-net-dns-resolver-programmable/repos/extra-any (2 files)

2017-07-17 Thread Felix Yan
Date: Monday, July 17, 2017 @ 15:06:50
  Author: felixonmars
Revision: 300698

archrelease: copy trunk to extra-any

Added:
  perl-net-dns-resolver-programmable/repos/extra-any/PKGBUILD
(from rev 300697, perl-net-dns-resolver-programmable/trunk/PKGBUILD)
Deleted:
  perl-net-dns-resolver-programmable/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-07-17 15:06:15 UTC (rev 300697)
+++ PKGBUILD2017-07-17 15:06:50 UTC (rev 300698)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Jan de Groot 
-
-pkgname=perl-net-dns-resolver-programmable
-_realname=Net-DNS-Resolver-Programmable
-pkgver=0.005
-pkgrel=1
-pkgdesc="A Net::DNS::Resolver descendant class for offline emulation of DNS"
-arch=('any')
-license=('GPL' 'PerlArtistic')
-url="http://search.cpan.org/dist/${_realname}/;
-depends=('perl-net-dns' 'perl')
-makedepends=('perl-module-build')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/B/BI/BIGPRESH/${_realname}-${pkgver}.tar.gz)
-sha512sums=('1fe6070d21b1f8d6baaecf6c0f75569a15895e97f4ae232ac1cd518f01ca9d5d44b636fa7b619501bd09d9a91432fce6292ff000d2572a9f1cec08bcc97322ed')
-
-build() {
-  cd ${srcdir}/${_realname}-${pkgver}
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd ${srcdir}/${_realname}-${pkgver}
-  make install DESTDIR=${pkgdir} || return 1
-}

Copied: perl-net-dns-resolver-programmable/repos/extra-any/PKGBUILD (from rev 
300697, perl-net-dns-resolver-programmable/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-07-17 15:06:50 UTC (rev 300698)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Jan de Groot 
+
+pkgname=perl-net-dns-resolver-programmable
+_realname=Net-DNS-Resolver-Programmable
+pkgver=0.006
+pkgrel=1
+pkgdesc="A Net::DNS::Resolver descendant class for offline emulation of DNS"
+arch=('any')
+license=('GPL' 'PerlArtistic')
+url="http://search.cpan.org/dist/${_realname}/;
+depends=('perl-net-dns' 'perl')
+makedepends=('perl-module-build')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/B/BI/BIGPRESH/${_realname}-${pkgver}.tar.gz)
+sha512sums=('b32c9b349ffa7fc956ecd559a03695066cab65862b5db1af665974e86c2362225a4c5da6dc3f0540067093f8f644eb3e67015ef740569fe52013b374a0d8632a')
+
+build() {
+  cd ${srcdir}/${_realname}-${pkgver}
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd ${srcdir}/${_realname}-${pkgver}
+  make install DESTDIR=${pkgdir} || return 1
+}


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

2017-07-17 Thread Felix Yan
Date: Monday, July 17, 2017 @ 15:06:38
  Author: felixonmars
Revision: 245489

upgpkg: python-billiard 3.5.0.3-1

Modified:
  python-billiard/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 15:06:21 UTC (rev 245488)
+++ PKGBUILD2017-07-17 15:06:38 UTC (rev 245489)
@@ -5,8 +5,8 @@
 
 pkgbase=python-billiard
 pkgname=('python-billiard' 'python2-billiard')
-pkgver=3.5.0.2
-pkgrel=2
+pkgver=3.5.0.3
+pkgrel=1
 pkgdesc="Python multiprocessing fork with improvements and bugfixes."
 arch=('i686' 'x86_64')
 url="http://pypi.python.org/pypi/billiard;
@@ -14,7 +14,7 @@
 makedepends=('python-setuptools' 'python2-setuptools')
 checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-case' 
'python2-case')
 source=("https://pypi.io/packages/source/b/billiard/billiard-$pkgver.tar.gz;)
-md5sums=('301a16643bc51d73869df81c9aa1e082')
+sha512sums=('f3a98e9b7af8c0b5741bcea915c0ff8d6e32e26d79637d14fc09ea85dd80693ea8205e13ac2d86e5035c377fdd6d769a2647b005dc10af8b106c75464458a808')
 
 prepare() {
   cp -a billiard-$pkgver{,-py2}


[arch-commits] Commit in perl-net-dns-resolver-programmable/trunk (PKGBUILD)

2017-07-17 Thread Felix Yan
Date: Monday, July 17, 2017 @ 15:06:15
  Author: felixonmars
Revision: 300697

upgpkg: perl-net-dns-resolver-programmable 0.006-1

Modified:
  perl-net-dns-resolver-programmable/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 14:27:30 UTC (rev 300696)
+++ PKGBUILD2017-07-17 15:06:15 UTC (rev 300697)
@@ -4,7 +4,7 @@
 
 pkgname=perl-net-dns-resolver-programmable
 _realname=Net-DNS-Resolver-Programmable
-pkgver=0.005
+pkgver=0.006
 pkgrel=1
 pkgdesc="A Net::DNS::Resolver descendant class for offline emulation of DNS"
 arch=('any')
@@ -14,7 +14,7 @@
 makedepends=('perl-module-build')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/B/BI/BIGPRESH/${_realname}-${pkgver}.tar.gz)
-sha512sums=('1fe6070d21b1f8d6baaecf6c0f75569a15895e97f4ae232ac1cd518f01ca9d5d44b636fa7b619501bd09d9a91432fce6292ff000d2572a9f1cec08bcc97322ed')
+sha512sums=('b32c9b349ffa7fc956ecd559a03695066cab65862b5db1af665974e86c2362225a4c5da6dc3f0540067093f8f644eb3e67015ef740569fe52013b374a0d8632a')
 
 build() {
   cd ${srcdir}/${_realname}-${pkgver}


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

2017-07-17 Thread Felix Yan
Date: Monday, July 17, 2017 @ 15:06:21
  Author: felixonmars
Revision: 245488

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-07-17 15:05:49 UTC (rev 245487)
+++ PKGBUILD2017-07-17 15:06:21 UTC (rev 245488)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-vine
-pkgname=('python-vine' 'python2-vine')
-pkgver=1.1.3
-pkgrel=2
-pkgdesc="Promises, promises, promises"
-arch=('any')
-license=('BSD')
-url="https://github.com/celery/vine;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-case' 
'python2-case' 'git')
-checkdepends=('python-pytest' 'python2-pytest')
-source=("git+https://github.com/celery/vine.git#tag=v$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a vine{,-py2}
-}
-
-build() {
-  cd "$srcdir"/vine
-  python setup.py build
-
-  cd "$srcdir"/vine-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/vine
-  python setup.py test
-
-  cd "$srcdir"/vine-py2
-  python2 setup.py test
-}
-
-package_python-vine() {
-  depends=('python-case')
-
-  cd vine
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-vine() {
-  depends=('python2-case')
-
-  cd vine-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-vine/repos/community-any/PKGBUILD (from rev 245487, 
python-vine/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-07-17 15:06:21 UTC (rev 245488)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-vine
+pkgname=('python-vine' 'python2-vine')
+pkgver=1.1.4
+pkgrel=1
+pkgdesc="Promises, promises, promises"
+arch=('any')
+license=('BSD')
+url="https://github.com/celery/vine;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-case' 
'python2-case')
+checkdepends=('python-pytest' 'python2-pytest')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/celery/vine/archive/v$pkgver.tar.gz;)
+sha512sums=('022aec13ae53abea8e1280c8736c2a08553ec8cdadb420a8166a3aef9f120dab5da1e1cc04569422c96c1f74c76ac1f43d4e1267094b81a250dd08d47dd99d14')
+
+prepare() {
+  cp -a vine-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/vine-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/vine-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/vine-$pkgver
+  python setup.py test
+
+  cd "$srcdir"/vine-$pkgver-py2
+  python2 setup.py test
+}
+
+package_python-vine() {
+  depends=('python-case')
+
+  cd vine-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-vine() {
+  depends=('python2-case')
+
+  cd vine-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2017-07-17 Thread Felix Yan
Date: Monday, July 17, 2017 @ 15:05:32
  Author: felixonmars
Revision: 245486

archrelease: copy trunk to community-any

Added:
  coffee-script/repos/community-any/PKGBUILD
(from rev 245485, coffee-script/trunk/PKGBUILD)
Deleted:
  coffee-script/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-07-17 15:04:58 UTC (rev 245485)
+++ PKGBUILD2017-07-17 15:05:32 UTC (rev 245486)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: sloppybench 
-# Contributor: der_FeniX 
-# Contributor: Anatol Pomozov 
-# Contributor: Gordin <9ordin @t gmail dot com>
-# Contributor: Simon Lipp 
-# Contributor: Chris Bolton 
-# Contributor: Sergei Lebedev 
-# Contributor: flying sheep 
-
-pkgname=coffee-script
-pkgver=1.12.6
-pkgrel=1
-pkgdesc='CoffeeScript is a little language that compiles into JavaScript'
-arch=('any')
-url='http://coffeescript.org'
-license=('MIT')
-depends=('nodejs')
-makedepends=('npm')
-source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz;)
-noextract=("$pkgname-$pkgver.tgz")
-sha512sums=('f61016358f61e39409795ab4e924c8442cd4635dab9721a7655831c3aa794575bbcf442b9a84995f1ff78b10f000b7afb3f6fcdb8e0222e5d8fedd4baeff8a1f')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s "../../../lib/node_modules/$pkgname/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
-}

Copied: coffee-script/repos/community-any/PKGBUILD (from rev 245485, 
coffee-script/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-07-17 15:05:32 UTC (rev 245486)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: sloppybench 
+# Contributor: der_FeniX 
+# Contributor: Anatol Pomozov 
+# Contributor: Gordin <9ordin @t gmail dot com>
+# Contributor: Simon Lipp 
+# Contributor: Chris Bolton 
+# Contributor: Sergei Lebedev 
+# Contributor: flying sheep 
+
+pkgname=coffee-script
+pkgver=1.12.7
+pkgrel=1
+pkgdesc='CoffeeScript is a little language that compiles into JavaScript'
+arch=('any')
+url='http://coffeescript.org'
+license=('MIT')
+depends=('nodejs')
+makedepends=('npm')
+source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz;)
+noextract=("$pkgname-$pkgver.tgz")
+sha512sums=('7cb78486ac329986adfcca533d48d2287558625d1e73698ec802c430b9b3af98b58acb86fba8df2368f6779a013b7548ce051780154870e4fdb87d5317105c93')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  rm -r "$pkgdir"/usr/etc
+  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s "../../../lib/node_modules/$pkgname/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
+}


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

2017-07-17 Thread Felix Yan
Date: Monday, July 17, 2017 @ 15:05:49
  Author: felixonmars
Revision: 245487

upgpkg: python-vine 1.1.4-1

Modified:
  python-vine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 15:05:32 UTC (rev 245486)
+++ PKGBUILD2017-07-17 15:05:49 UTC (rev 245487)
@@ -3,34 +3,34 @@
 
 pkgbase=python-vine
 pkgname=('python-vine' 'python2-vine')
-pkgver=1.1.3
-pkgrel=2
+pkgver=1.1.4
+pkgrel=1
 pkgdesc="Promises, promises, promises"
 arch=('any')
 license=('BSD')
 url="https://github.com/celery/vine;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-case' 
'python2-case' 'git')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-case' 
'python2-case')
 checkdepends=('python-pytest' 'python2-pytest')
-source=("git+https://github.com/celery/vine.git#tag=v$pkgver;)
-sha512sums=('SKIP')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/celery/vine/archive/v$pkgver.tar.gz;)
+sha512sums=('022aec13ae53abea8e1280c8736c2a08553ec8cdadb420a8166a3aef9f120dab5da1e1cc04569422c96c1f74c76ac1f43d4e1267094b81a250dd08d47dd99d14')
 
 prepare() {
-  cp -a vine{,-py2}
+  cp -a vine-$pkgver{,-py2}
 }
 
 build() {
-  cd "$srcdir"/vine
+  cd "$srcdir"/vine-$pkgver
   python setup.py build
 
-  cd "$srcdir"/vine-py2
+  cd "$srcdir"/vine-$pkgver-py2
   python2 setup.py build
 }
 
 check() {
-  cd "$srcdir"/vine
+  cd "$srcdir"/vine-$pkgver
   python setup.py test
 
-  cd "$srcdir"/vine-py2
+  cd "$srcdir"/vine-$pkgver-py2
   python2 setup.py test
 }
 
@@ -37,7 +37,7 @@
 package_python-vine() {
   depends=('python-case')
 
-  cd vine
+  cd vine-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
@@ -45,7 +45,7 @@
 package_python2-vine() {
   depends=('python2-case')
 
-  cd vine-py2
+  cd vine-$pkgver-py2
   python2 setup.py install --root="$pkgdir" --optimize=1
   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }


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

2017-07-17 Thread Felix Yan
Date: Monday, July 17, 2017 @ 15:04:58
  Author: felixonmars
Revision: 245485

upgpkg: coffee-script 1.12.7-1

Modified:
  coffee-script/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 15:02:28 UTC (rev 245484)
+++ PKGBUILD2017-07-17 15:04:58 UTC (rev 245485)
@@ -10,7 +10,7 @@
 # Contributor: flying sheep 
 
 pkgname=coffee-script
-pkgver=1.12.6
+pkgver=1.12.7
 pkgrel=1
 pkgdesc='CoffeeScript is a little language that compiles into JavaScript'
 arch=('any')
@@ -20,7 +20,7 @@
 makedepends=('npm')
 source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz;)
 noextract=("$pkgname-$pkgver.tgz")
-sha512sums=('f61016358f61e39409795ab4e924c8442cd4635dab9721a7655831c3aa794575bbcf442b9a84995f1ff78b10f000b7afb3f6fcdb8e0222e5d8fedd4baeff8a1f')
+sha512sums=('7cb78486ac329986adfcca533d48d2287558625d1e73698ec802c430b9b3af98b58acb86fba8df2368f6779a013b7548ce051780154870e4fdb87d5317105c93')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2017-07-17 Thread Felix Yan
Date: Monday, July 17, 2017 @ 15:02:28
  Author: felixonmars
Revision: 245484

archrelease: copy trunk to community-any

Added:
  jenkins/repos/community-any/LICENSE
(from rev 245483, jenkins/trunk/LICENSE)
  jenkins/repos/community-any/PKGBUILD
(from rev 245483, jenkins/trunk/PKGBUILD)
  jenkins/repos/community-any/jenkins.conf
(from rev 245483, jenkins/trunk/jenkins.conf)
  jenkins/repos/community-any/jenkins.install
(from rev 245483, jenkins/trunk/jenkins.install)
  jenkins/repos/community-any/jenkins.service
(from rev 245483, jenkins/trunk/jenkins.service)
  jenkins/repos/community-any/jenkins.sysusers
(from rev 245483, jenkins/trunk/jenkins.sysusers)
  jenkins/repos/community-any/jenkins.tmpfiles
(from rev 245483, jenkins/trunk/jenkins.tmpfiles)
Deleted:
  jenkins/repos/community-any/LICENSE
  jenkins/repos/community-any/PKGBUILD
  jenkins/repos/community-any/jenkins.conf
  jenkins/repos/community-any/jenkins.install
  jenkins/repos/community-any/jenkins.service
  jenkins/repos/community-any/jenkins.sysusers
  jenkins/repos/community-any/jenkins.tmpfiles

--+
 LICENSE  |   46 +--
 PKGBUILD |   90 ++---
 jenkins.conf |   26 +++
 jenkins.install  |   14 
 jenkins.service  |   48 ++--
 jenkins.sysusers |4 +-
 jenkins.tmpfiles |2 -
 7 files changed, 115 insertions(+), 115 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2017-07-17 15:01:29 UTC (rev 245483)
+++ LICENSE 2017-07-17 15:02:28 UTC (rev 245484)
@@ -1,23 +0,0 @@
-The MIT License
-
-Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
-
-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.
-
-

Copied: jenkins/repos/community-any/LICENSE (from rev 245483, 
jenkins/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2017-07-17 15:02:28 UTC (rev 245484)
@@ -0,0 +1,23 @@
+The MIT License
+
+Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
+
+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.
+
+

Deleted: PKGBUILD
===
--- PKGBUILD2017-07-17 15:01:29 UTC (rev 245483)
+++ PKGBUILD2017-07-17 15:02:28 UTC (rev 245484)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Alexander Rødseth 
-# Contributor: Marcel Huber 
-# Contributor: Illarion Kovalchuk 
-
-pkgname=jenkins
-pkgver=2.69
-pkgrel=1
-pkgdesc='Extendable continuous integration server (latest)'
-arch=('any')
-url='https://jenkins.io'
-license=('MIT')
-depends=('java-runtime>=8' 'ttf-dejavu' 'libcups')
-provides=('jenkins-ci')
-conflicts=('jenkins-ci')
-replaces=('jenkins-ci')

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

2017-07-17 Thread Felix Yan
Date: Monday, July 17, 2017 @ 15:01:29
  Author: felixonmars
Revision: 245483

upgpkg: jenkins 2.70-1

Modified:
  jenkins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 14:57:00 UTC (rev 245482)
+++ PKGBUILD2017-07-17 15:01:29 UTC (rev 245483)
@@ -5,7 +5,7 @@
 # Contributor: Illarion Kovalchuk 
 
 pkgname=jenkins
-pkgver=2.69
+pkgver=2.70
 pkgrel=1
 pkgdesc='Extendable continuous integration server (latest)'
 arch=('any')
@@ -25,7 +25,7 @@
 'jenkins.tmpfiles'
 'jenkins.sysusers'
 'LICENSE')
-sha512sums=('fce15f2f165d7cfc3a642b774351314e67cf214c8879538577be644ecf12c289de46318ddb01113de04a36cb38f954006d7ad0681c308487d3202ff708dc'
+sha512sums=('ae6409da6e3666597d2fbdbe0c327e0c7328fa3ccae48fb1989f470971c65c0f75f03b9e52409b6b2a4bb7356dbdc160b1a859908c3e6aa5e9fe75cdb2101025'
 
'3a8421cef3953d899c150609f959cf5d5dd6d08d079a5e0f48bfece4f3c80491722b9e90ef841fddb87401c226b8338297c5c4e83e55a33ef8d6e387de3048d0'
 
'a336b006d3711abb75b49a2e12c09ee61cf3275a2cdbbd3676480e2f6ca8ba0fb4b9c08f3f9da193252c4fca827e9a1d5eaad847d0a889445693427ae1571fe7'
 
'a845a7147be54affc586dfce9a188ec24c92e673e88dec0b62da386d2e597de6ecda103429008562abd897f179a52c37cf2188ebc65b8c636efd07d707e18f90'


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

2017-07-17 Thread Felix Yan
Date: Monday, July 17, 2017 @ 14:57:00
  Author: felixonmars
Revision: 245482

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

Added:
  deepin-terminal/repos/community-i686/PKGBUILD
(from rev 245481, deepin-terminal/trunk/PKGBUILD)
  deepin-terminal/repos/community-x86_64/PKGBUILD
(from rev 245481, deepin-terminal/trunk/PKGBUILD)
Deleted:
  deepin-terminal/repos/community-i686/PKGBUILD
  deepin-terminal/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-17 14:56:21 UTC (rev 245481)
+++ community-i686/PKGBUILD 2017-07-17 14:57:00 UTC (rev 245482)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-terminal
-pkgver=2.5
-pkgrel=1
-pkgdesc='Default terminal emulation application for Deepin'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/deepin-terminal;
-license=('GPL3')
-depends=('vte3' 'libsecret' 'libgee' 'libwnck3' 'expect' 
'deepin-shortcut-viewer' 'deepin-menu'
- 'deepin-manual')
-makedepends=('vala' 'cmake')
-groups=('deepin-extra')
-#options=(!emptydirs)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-terminal/archive/$pkgver.tar.gz;)
-sha512sums=('b7ec3e904a691fb2efbccdff5561a871662caf2e21a53db7f17f686466b1308110a0ee0289bacda18d8b137fa236cc07352da146365dabb6617f022831662ef6')
-
-prepare() {
-  mkdir -p build
-
-  sed -i 's|return __FILE__;|return 
"/usr/share/deepin-terminal/project_path.c";|' 
deepin-terminal-$pkgver/project_path.c
-
-  rm deepin-terminal-$pkgver/vapi/gee-0.8.vapi
-}
-
-build() {
-  cd build
-  cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
-../deepin-terminal-$pkgver
-  make
-}
-
-package() {
-  make -C build DESTDIR="$pkgdir" install
-  ln -s deepin-terminal "$pkgdir"/usr/bin/x-terminal-emulator
-}

Copied: deepin-terminal/repos/community-i686/PKGBUILD (from rev 245481, 
deepin-terminal/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-07-17 14:57:00 UTC (rev 245482)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-terminal
+pkgver=2.5.1
+pkgrel=1
+pkgdesc='Default terminal emulation application for Deepin'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/deepin-terminal;
+license=('GPL3')
+depends=('vte3' 'libsecret' 'libgee' 'libwnck3' 'expect' 
'deepin-shortcut-viewer' 'deepin-menu'
+ 'deepin-manual')
+makedepends=('vala' 'cmake')
+groups=('deepin-extra')
+#options=(!emptydirs)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-terminal/archive/$pkgver.tar.gz;)
+sha512sums=('52499ad3a51a0890ac3002eb1223a0dde27a146a10a27e569d9fba502e61080340a569041af35d0c6bd38422850e4e3f35a583cb9100f394ea985c45124bcb49')
+
+prepare() {
+  mkdir -p build
+
+  sed -i 's|return __FILE__;|return 
"/usr/share/deepin-terminal/project_path.c";|' 
deepin-terminal-$pkgver/project_path.c
+
+  rm deepin-terminal-$pkgver/vapi/gee-0.8.vapi
+}
+
+build() {
+  cd build
+  cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+../deepin-terminal-$pkgver
+  make
+}
+
+package() {
+  make -C build DESTDIR="$pkgdir" install
+  ln -s deepin-terminal "$pkgdir"/usr/bin/x-terminal-emulator
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-07-17 14:56:21 UTC (rev 245481)
+++ community-x86_64/PKGBUILD   2017-07-17 14:57:00 UTC (rev 245482)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-terminal
-pkgver=2.5
-pkgrel=1
-pkgdesc='Default terminal emulation application for Deepin'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/deepin-terminal;
-license=('GPL3')
-depends=('vte3' 'libsecret' 'libgee' 'libwnck3' 'expect' 
'deepin-shortcut-viewer' 'deepin-menu'
- 'deepin-manual')
-makedepends=('vala' 'cmake')
-groups=('deepin-extra')
-#options=(!emptydirs)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-terminal/archive/$pkgver.tar.gz;)
-sha512sums=('b7ec3e904a691fb2efbccdff5561a871662caf2e21a53db7f17f686466b1308110a0ee0289bacda18d8b137fa236cc07352da146365dabb6617f022831662ef6')
-
-prepare() {
-  mkdir -p 

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

2017-07-17 Thread Felix Yan
Date: Monday, July 17, 2017 @ 14:56:21
  Author: felixonmars
Revision: 245481

upgpkg: deepin-terminal 2.5.1-1

Modified:
  deepin-terminal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 14:15:55 UTC (rev 245480)
+++ PKGBUILD2017-07-17 14:56:21 UTC (rev 245481)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-terminal
-pkgver=2.5
+pkgver=2.5.1
 pkgrel=1
 pkgdesc='Default terminal emulation application for Deepin'
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 groups=('deepin-extra')
 #options=(!emptydirs)
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-terminal/archive/$pkgver.tar.gz;)
-sha512sums=('b7ec3e904a691fb2efbccdff5561a871662caf2e21a53db7f17f686466b1308110a0ee0289bacda18d8b137fa236cc07352da146365dabb6617f022831662ef6')
+sha512sums=('52499ad3a51a0890ac3002eb1223a0dde27a146a10a27e569d9fba502e61080340a569041af35d0c6bd38422850e4e3f35a583cb9100f394ea985c45124bcb49')
 
 prepare() {
   mkdir -p build


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

2017-07-17 Thread Evangelos Foutras
Date: Monday, July 17, 2017 @ 14:27:19
  Author: foutrelis
Revision: 300695

upgpkg: tumbler 0.2.0-1

New upstream release.

Modified:
  tumbler/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 14:15:30 UTC (rev 300694)
+++ PKGBUILD2017-07-17 14:27:19 UTC (rev 300695)
@@ -4,7 +4,7 @@
 # Contributor: Jan Jezek 
 
 pkgname=tumbler
-pkgver=0.1.32
+pkgver=0.2.0
 pkgrel=1
 pkgdesc="D-Bus service for applications to request thumbnails"
 arch=('i686' 'x86_64')
@@ -11,8 +11,8 @@
 url="http://www.xfce.org/;
 license=('GPL2' 'LGPL')
 groups=('xfce4')
-depends=('dbus-glib' 'gdk-pixbuf2')
-makedepends=('intltool' 'ffmpegthumbnailer' 'poppler-glib' 'libgsf'
+depends=('gdk-pixbuf2')
+makedepends=('intltool' 'python' 'ffmpegthumbnailer' 'poppler-glib' 'libgsf'
  'libopenraw' 'freetype2')
 optdepends=('ffmpegthumbnailer: for video thumbnails'
 'poppler-glib: for PDF thumbnails'
@@ -20,7 +20,7 @@
 'libopenraw: for RAW thumbnails'
 'freetype2: for font thumbnails')
 
source=(http://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('f08c88d9dd3b8781aa218146c11ab4aec307e8eb9232aaf18d90a4bae29adacf')
+sha256sums=('4e27a59694b0a5cc69ebccbdb00c724e670b5b7c30bc4dc0b461aac93f234fac')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


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

2017-07-17 Thread Evangelos Foutras
Date: Monday, July 17, 2017 @ 14:27:30
  Author: foutrelis
Revision: 300696

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-07-17 14:27:19 UTC (rev 300695)
+++ extra-i686/PKGBUILD 2017-07-17 14:27:30 UTC (rev 300696)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: Andreas Radke 
-# Contributor: Jan Jezek 
-
-pkgname=tumbler
-pkgver=0.1.32
-pkgrel=1
-pkgdesc="D-Bus service for applications to request thumbnails"
-arch=('i686' 'x86_64')
-url="http://www.xfce.org/;
-license=('GPL2' 'LGPL')
-groups=('xfce4')
-depends=('dbus-glib' 'gdk-pixbuf2')
-makedepends=('intltool' 'ffmpegthumbnailer' 'poppler-glib' 'libgsf'
- 'libopenraw' 'freetype2')
-optdepends=('ffmpegthumbnailer: for video thumbnails'
-'poppler-glib: for PDF thumbnails'
-'libgsf: for ODF thumbnails'
-'libopenraw: for RAW thumbnails'
-'freetype2: for font thumbnails')
-source=(http://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('f08c88d9dd3b8781aa218146c11ab4aec307e8eb9232aaf18d90a4bae29adacf')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/xfce4 \
---disable-static \
---disable-debug \
---disable-gstreamer-thumbnailer
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: tumbler/repos/extra-i686/PKGBUILD (from rev 300695, 
tumbler/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-07-17 14:27:30 UTC (rev 300696)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Andreas Radke 
+# Contributor: Jan Jezek 
+
+pkgname=tumbler
+pkgver=0.2.0
+pkgrel=1
+pkgdesc="D-Bus service for applications to request thumbnails"
+arch=('i686' 'x86_64')
+url="http://www.xfce.org/;
+license=('GPL2' 'LGPL')
+groups=('xfce4')
+depends=('gdk-pixbuf2')
+makedepends=('intltool' 'python' 'ffmpegthumbnailer' 'poppler-glib' 'libgsf'
+ 'libopenraw' 'freetype2')
+optdepends=('ffmpegthumbnailer: for video thumbnails'
+'poppler-glib: for PDF thumbnails'
+'libgsf: for ODF thumbnails'
+'libopenraw: for RAW thumbnails'
+'freetype2: for font thumbnails')
+source=(http://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('4e27a59694b0a5cc69ebccbdb00c724e670b5b7c30bc4dc0b461aac93f234fac')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/xfce4 \
+--disable-static \
+--disable-debug \
+--disable-gstreamer-thumbnailer
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-07-17 14:27:19 UTC (rev 300695)
+++ extra-x86_64/PKGBUILD   2017-07-17 14:27:30 UTC (rev 300696)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: Andreas Radke 
-# Contributor: Jan Jezek 
-
-pkgname=tumbler
-pkgver=0.1.32
-pkgrel=1
-pkgdesc="D-Bus service for applications to request thumbnails"
-arch=('i686' 'x86_64')
-url="http://www.xfce.org/;
-license=('GPL2' 'LGPL')
-groups=('xfce4')
-depends=('dbus-glib' 'gdk-pixbuf2')
-makedepends=('intltool' 'ffmpegthumbnailer' 'poppler-glib' 'libgsf'
- 'libopenraw' 'freetype2')
-optdepends=('ffmpegthumbnailer: for video thumbnails'
-'poppler-glib: for PDF thumbnails'
-'libgsf: for ODF thumbnails'
-'libopenraw: for RAW thumbnails'
-'freetype2: for font thumbnails')
-source=(http://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('f08c88d9dd3b8781aa218146c11ab4aec307e8eb9232aaf18d90a4bae29adacf')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
-

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

2017-07-17 Thread Jonathan Steel
Date: Monday, July 17, 2017 @ 14:15:48
  Author: jsteel
Revision: 245479

upgpkg: aws-cli 1.11.120-1

Modified:
  aws-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 14:15:41 UTC (rev 245478)
+++ PKGBUILD2017-07-17 14:15:48 UTC (rev 245479)
@@ -3,7 +3,7 @@
 # Contributor: Alper KANAT 
 
 pkgname=aws-cli
-pkgver=1.11.118
+pkgver=1.11.120
 pkgrel=1
 pkgdesc='Universal Command Line Interface for Amazon Web Services'
 arch=('any')
@@ -14,7 +14,7 @@
  'python-s3transfer' 'python-yaml')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('5fd0fdac6a33c9305a2edb22696c318e')
+md5sums=('47184b68346f7d5198d9ed2c17b5c500')
 
 build() {
   cd $pkgname-$pkgver


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

2017-07-17 Thread Jonathan Steel
Date: Monday, July 17, 2017 @ 14:15:41
  Author: jsteel
Revision: 245478

archrelease: copy trunk to community-any

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

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

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

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


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

2017-07-17 Thread Jonathan Steel
Date: Monday, July 17, 2017 @ 14:15:55
  Author: jsteel
Revision: 245480

archrelease: copy trunk to community-any

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

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

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

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


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

2017-07-17 Thread Jan Steffens
Date: Monday, July 17, 2017 @ 14:15:30
  Author: heftig
Revision: 300694

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

Added:
  evolution-ews/repos/extra-i686/PKGBUILD
(from rev 300693, evolution-ews/trunk/PKGBUILD)
  evolution-ews/repos/extra-x86_64/PKGBUILD
(from rev 300693, evolution-ews/trunk/PKGBUILD)
Deleted:
  evolution-ews/repos/extra-i686/PKGBUILD
  evolution-ews/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-07-17 14:15:05 UTC (rev 300693)
+++ extra-i686/PKGBUILD 2017-07-17 14:15:30 UTC (rev 300694)
@@ -1,32 +0,0 @@
-# $Id$
-# Contributor: Ionut Biru 
-
-pkgname=evolution-ews
-pkgver=3.24.3
-pkgrel=1
-pkgdesc="MS Exchange integration through Exchange Web Services"
-url="https://wiki.gnome.org/Apps/Evolution/EWS;
-arch=(i686 x86_64)
-license=(LGPL2.1)
-depends=(libmspack evolution)
-makedepends=(intltool gnome-common git cmake)
-options=(!emptydirs)
-_commit=1f106e9003f6f375cce92585b6bb5f2facc78f44  # tags/EVOLUTION_EWS_3_24_3^0
-source=("git+https://git.gnome.org/browse/evolution-ews#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^EVOLUTION_EWS_//;s/_/./g;s/-/+/g'
-}
-
-build() {
-  cd $pkgname
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DLIBEXEC_INSTALL_DIR=/usr/lib/evolution 
-DSYSCONF_INSTALL_DIR=/etc
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: evolution-ews/repos/extra-i686/PKGBUILD (from rev 300693, 
evolution-ews/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-07-17 14:15:30 UTC (rev 300694)
@@ -0,0 +1,35 @@
+# $Id$
+# Contributor: Ionut Biru 
+
+pkgname=evolution-ews
+pkgver=3.24.4
+pkgrel=1
+pkgdesc="MS Exchange integration through Exchange Web Services"
+url="https://wiki.gnome.org/Apps/Evolution/EWS;
+arch=(i686 x86_64)
+license=(LGPL2.1)
+depends=(libmspack evolution)
+makedepends=(intltool gnome-common git cmake ninja)
+options=(!emptydirs)
+_commit=3a75aa8c1f1f0e8cc27826d979d304e63d98a5e5  # tags/EVOLUTION_EWS_3_24_4^0
+source=("git+https://git.gnome.org/browse/evolution-ews#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^EVOLUTION_EWS_//;s/_/./g;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+  cmake . -G Ninja \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIBEXEC_INSTALL_DIR=/usr/lib/evolution \
+-DSYSCONF_INSTALL_DIR=/etc
+  ninja
+}
+
+package() {
+  cd $pkgname
+  DESTDIR="$pkgdir" ninja install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-07-17 14:15:05 UTC (rev 300693)
+++ extra-x86_64/PKGBUILD   2017-07-17 14:15:30 UTC (rev 300694)
@@ -1,32 +0,0 @@
-# $Id$
-# Contributor: Ionut Biru 
-
-pkgname=evolution-ews
-pkgver=3.24.3
-pkgrel=1
-pkgdesc="MS Exchange integration through Exchange Web Services"
-url="https://wiki.gnome.org/Apps/Evolution/EWS;
-arch=(i686 x86_64)
-license=(LGPL2.1)
-depends=(libmspack evolution)
-makedepends=(intltool gnome-common git cmake)
-options=(!emptydirs)
-_commit=1f106e9003f6f375cce92585b6bb5f2facc78f44  # tags/EVOLUTION_EWS_3_24_3^0
-source=("git+https://git.gnome.org/browse/evolution-ews#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^EVOLUTION_EWS_//;s/_/./g;s/-/+/g'
-}
-
-build() {
-  cd $pkgname
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DLIBEXEC_INSTALL_DIR=/usr/lib/evolution 
-DSYSCONF_INSTALL_DIR=/etc
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: evolution-ews/repos/extra-x86_64/PKGBUILD (from rev 300693, 
evolution-ews/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-07-17 14:15:30 UTC (rev 300694)
@@ -0,0 +1,35 @@
+# $Id$
+# Contributor: Ionut Biru 
+
+pkgname=evolution-ews
+pkgver=3.24.4
+pkgrel=1
+pkgdesc="MS Exchange integration through Exchange Web Services"
+url="https://wiki.gnome.org/Apps/Evolution/EWS;
+arch=(i686 x86_64)
+license=(LGPL2.1)
+depends=(libmspack evolution)
+makedepends=(intltool gnome-common git cmake ninja)
+options=(!emptydirs)
+_commit=3a75aa8c1f1f0e8cc27826d979d304e63d98a5e5  # tags/EVOLUTION_EWS_3_24_4^0
+source=("git+https://git.gnome.org/browse/evolution-ews#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 

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

2017-07-17 Thread Jonathan Steel
Date: Monday, July 17, 2017 @ 14:15:28
  Author: jsteel
Revision: 245477

upgpkg: python-botocore 1.5.83-1

Modified:
  python-botocore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 11:13:04 UTC (rev 245476)
+++ PKGBUILD2017-07-17 14:15:28 UTC (rev 245477)
@@ -4,7 +4,7 @@
 # Contributor: Chris Fordham
 
 pkgname=python-botocore
-pkgver=1.5.81
+pkgver=1.5.83
 pkgrel=1
 pkgdesc='A low-level interface to a growing number of Amazon Web Services'
 arch=('any')
@@ -13,7 +13,7 @@
 depends=('python-dateutil' 'python-jmespath' 'python-docutils')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('fbd09abccf1704c0ebd92f5530ff489c')
+md5sums=('0e7aff2752db36e4502a96275b84bcfc')
 
 build() {
   cd botocore-$pkgver


[arch-commits] Commit in evolution-data-server/repos (4 files)

2017-07-17 Thread Jan Steffens
Date: Monday, July 17, 2017 @ 14:15:05
  Author: heftig
Revision: 300693

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

Added:
  evolution-data-server/repos/extra-i686/PKGBUILD
(from rev 300692, evolution-data-server/trunk/PKGBUILD)
  evolution-data-server/repos/extra-x86_64/PKGBUILD
(from rev 300692, evolution-data-server/trunk/PKGBUILD)
Deleted:
  evolution-data-server/repos/extra-i686/PKGBUILD
  evolution-data-server/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-07-17 14:14:29 UTC (rev 300692)
+++ extra-i686/PKGBUILD 2017-07-17 14:15:05 UTC (rev 300693)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=evolution-data-server
-pkgver=3.24.3
-pkgrel=1
-pkgdesc="Centralized access to appointments and contacts"
-url="https://wiki.gnome.org/Apps/Evolution;
-arch=(i686 x86_64)
-depends=(gnome-online-accounts nss krb5 libgweather libical db libgdata 
libphonenumber)
-makedepends=(intltool gperf gobject-introspection vala gtk-doc boost git cmake)
-license=(GPL)
-_commit=eeac176e17f7a2cfb5e34b54b60940ec714a581d  # 
tags/EVOLUTION_DATA_SERVER_3_24_3^0
-source=("git+https://git.gnome.org/browse/evolution-data-server#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^EVOLUTION_DATA_SERVER_//;s/_/./g;s/-/+/g'
-}
-
-build() {
-  cd $pkgname
-
-  cmake . \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIBEXEC_INSTALL_DIR=/usr/lib/$pkgname \
--DSYSCONF_INSTALL_DIR=/etc \
--DENABLE_INTROSPECTION=ON \
--DENABLE_VALA_BINDINGS=ON \
--DENABLE_UOA=OFF \
--DENABLE_GOOGLE_AUTH=ON \
--DENABLE_GTK_DOC=ON \
--DWITH_PHONENUMBER=ON
-  make
-}
-
-check() {
-  cd $pkgname
-  # libedata-book tests fail because they try to
-  # mkdir /usr/lib/evolution-data-server/camel-providers
-  make check -k || :
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: evolution-data-server/repos/extra-i686/PKGBUILD (from rev 300692, 
evolution-data-server/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-07-17 14:15:05 UTC (rev 300693)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=evolution-data-server
+pkgver=3.24.4
+pkgrel=1
+pkgdesc="Centralized access to appointments and contacts"
+url="https://wiki.gnome.org/Apps/Evolution;
+arch=(i686 x86_64)
+depends=(gnome-online-accounts nss krb5 libgweather libical db libgdata 
libphonenumber)
+makedepends=(intltool gperf gobject-introspection vala gtk-doc boost git cmake 
ninja)
+license=(GPL)
+_commit=4b64d44b1dd01a05be38504ae2a130f21a417913  # 
tags/EVOLUTION_DATA_SERVER_3_24_4^0
+source=("git+https://git.gnome.org/browse/evolution-data-server#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^EVOLUTION_DATA_SERVER_//;s/_/./g;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+
+  cmake . -G Ninja \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIBEXEC_INSTALL_DIR=/usr/lib/$pkgname \
+-DSYSCONF_INSTALL_DIR=/etc \
+-DENABLE_INTROSPECTION=ON \
+-DENABLE_VALA_BINDINGS=ON \
+-DENABLE_UOA=OFF \
+-DENABLE_GOOGLE_AUTH=ON \
+-DENABLE_GTK_DOC=ON \
+-DWITH_PHONENUMBER=ON
+  ninja
+}
+
+check() {
+  cd $pkgname
+  # libedata-book tests fail because they try to
+  # mkdir /usr/lib/evolution-data-server/camel-providers
+  ninja test || :
+}
+
+package() {
+  cd $pkgname
+  DESTDIR="$pkgdir" ninja install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-07-17 14:14:29 UTC (rev 300692)
+++ extra-x86_64/PKGBUILD   2017-07-17 14:15:05 UTC (rev 300693)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=evolution-data-server
-pkgver=3.24.3
-pkgrel=1
-pkgdesc="Centralized access to appointments and contacts"
-url="https://wiki.gnome.org/Apps/Evolution;
-arch=(i686 x86_64)
-depends=(gnome-online-accounts nss krb5 libgweather libical db libgdata 
libphonenumber)
-makedepends=(intltool gperf gobject-introspection vala gtk-doc boost git cmake)
-license=(GPL)
-_commit=eeac176e17f7a2cfb5e34b54b60940ec714a581d  # 
tags/EVOLUTION_DATA_SERVER_3_24_3^0
-source=("git+https://git.gnome.org/browse/evolution-data-server#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^EVOLUTION_DATA_SERVER_//;s/_/./g;s/-/+/g'
-}
-
-build() {
-  cd $pkgname
-
-  cmake . \
--DCMAKE_INSTALL_PREFIX=/usr \
-

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

2017-07-17 Thread Jan Steffens
Date: Monday, July 17, 2017 @ 14:14:29
  Author: heftig
Revision: 300692

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-07-17 14:10:56 UTC (rev 300691)
+++ extra-i686/PKGBUILD 2017-07-17 14:14:29 UTC (rev 300692)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgbase=evolution
-pkgname=(evolution evolution-bogofilter evolution-spamassassin)
-pkgver=3.24.3
-pkgrel=1
-pkgdesc="Manage your email, contacts and schedule"
-url="https://wiki.gnome.org/Apps/Evolution;
-arch=(i686 x86_64)
-license=(GPL)
-depends=(gnome-desktop evolution-data-server libcanberra libpst libytnef
- dconf gtkspell3 libcryptui gnome-autoar)
-makedepends=(intltool itstool docbook-xsl networkmanager bogofilter
- spamassassin highlight gtk-doc yelp-tools git cmake)
-options=(!emptydirs)
-_commit=67f6aedfeff10c8d5bd9268a197b4b6827f89cc4  # tags/EVOLUTION_3_24_3^0
-source=("git+https://git.gnome.org/browse/evolution#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgbase
-  git describe --tags | sed 's/^EVOLUTION_//;s/_/./g;s/-/+/g'
-}
-
-build() {
-  cd $pkgbase
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DLIBEXEC_INSTALL_DIR=/usr/lib 
-DSYSCONF_INSTALL_DIR=/etc -DENABLE_SMIME=ON -DENABLE_GTK_DOC=ON .
-  make
-}
-
-package_evolution() {
-  optdepends=('highlight: text highlight plugin'
-  'evolution-spamassassin: Spamassassin spam check plugin'
-  'evolution-bogofilter: Bogofilter spam check plugin')
-  groups=(gnome-extra)
-
-  cd $pkgbase
-  make DESTDIR="$pkgdir" install
-
-  mkdir ../plugins
-  mv "$pkgdir/usr/lib/evolution/modules/module-bogofilter.so" ../plugins/
-  mv "$pkgdir/usr/lib/evolution/modules/module-spamassassin.so" ../plugins/
-  mv "$pkgdir/usr/share/appdata/evolution-bogofilter.metainfo.xml" ../plugins/
-  mv "$pkgdir/usr/share/appdata/evolution-spamassassin.metainfo.xml" 
../plugins/
-}
-
-
-package_evolution-bogofilter() {
-  pkgdesc="Spam filtering for Evolution, using Bogofilter"
-  depends=("evolution=$pkgver" bogofilter)
-
-  install -Dm755 plugins/module-bogofilter.so 
"$pkgdir/usr/lib/evolution/modules/module-bogofilter.so"
-  install -Dm644 plugins/evolution-bogofilter.metainfo.xml 
"$pkgdir/usr/share/appdata/evolution-bogofilter.metainfo.xml"
-}
-
-package_evolution-spamassassin() {
-  pkgdesc="Spam filtering for Evolution, using SpamAssassin"
-  depends=("evolution=$pkgver" spamassassin)
-
-  install -Dm755 plugins/module-spamassassin.so 
"$pkgdir/usr/lib/evolution/modules/module-spamassassin.so"
-  install -Dm644 plugins/evolution-spamassassin.metainfo.xml 
"$pkgdir/usr/share/appdata/evolution-spamassassin.metainfo.xml"
-}

Copied: evolution/repos/extra-i686/PKGBUILD (from rev 300691, 
evolution/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-07-17 14:14:29 UTC (rev 300692)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgbase=evolution
+pkgname=(evolution evolution-bogofilter evolution-spamassassin)
+pkgver=3.24.4
+pkgrel=1
+pkgdesc="Manage your email, contacts and schedule"
+url="https://wiki.gnome.org/Apps/Evolution;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(gnome-desktop evolution-data-server libcanberra libpst libytnef
+ dconf gtkspell3 libcryptui gnome-autoar)
+makedepends=(intltool itstool docbook-xsl networkmanager bogofilter
+ spamassassin highlight gtk-doc yelp-tools git cmake ninja)
+options=(!emptydirs)
+_commit=1c101ab99de0b4ee4ba384b062f236cffe0c68ab  # tags/EVOLUTION_3_24_4^0
+source=("git+https://git.gnome.org/browse/evolution#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/^EVOLUTION_//;s/_/./g;s/-/+/g'
+}
+
+build() {
+  cd $pkgbase
+
+  cmake . -G Ninja \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIBEXEC_INSTALL_DIR=/usr/lib \
+-DSYSCONF_INSTALL_DIR=/etc \
+-DENABLE_SMIME=ON \
+-DENABLE_GTK_DOC=ON
+  ninja
+}
+
+package_evolution() {
+  optdepends=('highlight: text highlight plugin'
+  'evolution-spamassassin: Spamassassin spam check plugin'
+  

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

2017-07-17 Thread Jan Steffens
Date: Monday, July 17, 2017 @ 14:10:56
  Author: heftig
Revision: 300691

3.24.4-1

Modified:
  evolution-ews/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 14:10:43 UTC (rev 300690)
+++ PKGBUILD2017-07-17 14:10:56 UTC (rev 300691)
@@ -2,7 +2,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=evolution-ews
-pkgver=3.24.3
+pkgver=3.24.4
 pkgrel=1
 pkgdesc="MS Exchange integration through Exchange Web Services"
 url="https://wiki.gnome.org/Apps/Evolution/EWS;
@@ -9,9 +9,9 @@
 arch=(i686 x86_64)
 license=(LGPL2.1)
 depends=(libmspack evolution)
-makedepends=(intltool gnome-common git cmake)
+makedepends=(intltool gnome-common git cmake ninja)
 options=(!emptydirs)
-_commit=1f106e9003f6f375cce92585b6bb5f2facc78f44  # tags/EVOLUTION_EWS_3_24_3^0
+_commit=3a75aa8c1f1f0e8cc27826d979d304e63d98a5e5  # tags/EVOLUTION_EWS_3_24_4^0
 source=("git+https://git.gnome.org/browse/evolution-ews#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -22,11 +22,14 @@
 
 build() {
   cd $pkgname
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DLIBEXEC_INSTALL_DIR=/usr/lib/evolution 
-DSYSCONF_INSTALL_DIR=/etc
-  make
+  cmake . -G Ninja \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIBEXEC_INSTALL_DIR=/usr/lib/evolution \
+-DSYSCONF_INSTALL_DIR=/etc
+  ninja
 }
 
 package() {
   cd $pkgname
-  make DESTDIR="$pkgdir" install
+  DESTDIR="$pkgdir" ninja install
 }


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

2017-07-17 Thread Jan Steffens
Date: Monday, July 17, 2017 @ 14:10:43
  Author: heftig
Revision: 300690

3.24.4-1

Modified:
  evolution/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 14:07:48 UTC (rev 300689)
+++ PKGBUILD2017-07-17 14:10:43 UTC (rev 300690)
@@ -4,7 +4,7 @@
 
 pkgbase=evolution
 pkgname=(evolution evolution-bogofilter evolution-spamassassin)
-pkgver=3.24.3
+pkgver=3.24.4
 pkgrel=1
 pkgdesc="Manage your email, contacts and schedule"
 url="https://wiki.gnome.org/Apps/Evolution;
@@ -13,9 +13,9 @@
 depends=(gnome-desktop evolution-data-server libcanberra libpst libytnef
  dconf gtkspell3 libcryptui gnome-autoar)
 makedepends=(intltool itstool docbook-xsl networkmanager bogofilter
- spamassassin highlight gtk-doc yelp-tools git cmake)
+ spamassassin highlight gtk-doc yelp-tools git cmake ninja)
 options=(!emptydirs)
-_commit=67f6aedfeff10c8d5bd9268a197b4b6827f89cc4  # tags/EVOLUTION_3_24_3^0
+_commit=1c101ab99de0b4ee4ba384b062f236cffe0c68ab  # tags/EVOLUTION_3_24_4^0
 source=("git+https://git.gnome.org/browse/evolution#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -27,8 +27,13 @@
 build() {
   cd $pkgbase
 
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DLIBEXEC_INSTALL_DIR=/usr/lib 
-DSYSCONF_INSTALL_DIR=/etc -DENABLE_SMIME=ON -DENABLE_GTK_DOC=ON .
-  make
+  cmake . -G Ninja \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIBEXEC_INSTALL_DIR=/usr/lib \
+-DSYSCONF_INSTALL_DIR=/etc \
+-DENABLE_SMIME=ON \
+-DENABLE_GTK_DOC=ON
+  ninja
 }
 
 package_evolution() {
@@ -38,7 +43,7 @@
   groups=(gnome-extra)
 
   cd $pkgbase
-  make DESTDIR="$pkgdir" install
+  DESTDIR="$pkgdir" ninja install
 
   mkdir ../plugins
   mv "$pkgdir/usr/lib/evolution/modules/module-bogofilter.so" ../plugins/


[arch-commits] Commit in evolution-data-server/trunk (PKGBUILD)

2017-07-17 Thread Jan Steffens
Date: Monday, July 17, 2017 @ 14:07:48
  Author: heftig
Revision: 300689

3.24.4-1

Modified:
  evolution-data-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 09:26:27 UTC (rev 300688)
+++ PKGBUILD2017-07-17 14:07:48 UTC (rev 300689)
@@ -2,15 +2,15 @@
 # Maintainer: Jan de Groot 
 
 pkgname=evolution-data-server
-pkgver=3.24.3
+pkgver=3.24.4
 pkgrel=1
 pkgdesc="Centralized access to appointments and contacts"
 url="https://wiki.gnome.org/Apps/Evolution;
 arch=(i686 x86_64)
 depends=(gnome-online-accounts nss krb5 libgweather libical db libgdata 
libphonenumber)
-makedepends=(intltool gperf gobject-introspection vala gtk-doc boost git cmake)
+makedepends=(intltool gperf gobject-introspection vala gtk-doc boost git cmake 
ninja)
 license=(GPL)
-_commit=eeac176e17f7a2cfb5e34b54b60940ec714a581d  # 
tags/EVOLUTION_DATA_SERVER_3_24_3^0
+_commit=4b64d44b1dd01a05be38504ae2a130f21a417913  # 
tags/EVOLUTION_DATA_SERVER_3_24_4^0
 
source=("git+https://git.gnome.org/browse/evolution-data-server#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -22,7 +22,7 @@
 build() {
   cd $pkgname
 
-  cmake . \
+  cmake . -G Ninja \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DLIBEXEC_INSTALL_DIR=/usr/lib/$pkgname \
 -DSYSCONF_INSTALL_DIR=/etc \
@@ -32,7 +32,7 @@
 -DENABLE_GOOGLE_AUTH=ON \
 -DENABLE_GTK_DOC=ON \
 -DWITH_PHONENUMBER=ON
-  make
+  ninja
 }
 
 check() {
@@ -39,10 +39,10 @@
   cd $pkgname
   # libedata-book tests fail because they try to
   # mkdir /usr/lib/evolution-data-server/camel-providers
-  make check -k || :
+  ninja test || :
 }
 
 package() {
   cd $pkgname
-  make DESTDIR="$pkgdir" install
+  DESTDIR="$pkgdir" ninja install
 }


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

2017-07-17 Thread Sergej Pupykin
Date: Monday, July 17, 2017 @ 11:13:04
  Author: spupykin
Revision: 245476

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

Added:
  rsyslog/repos/community-i686/PKGBUILD
(from rev 245475, rsyslog/trunk/PKGBUILD)
  rsyslog/repos/community-i686/rsyslog.conf
(from rev 245475, rsyslog/trunk/rsyslog.conf)
  rsyslog/repos/community-i686/rsyslog.logrotate
(from rev 245475, rsyslog/trunk/rsyslog.logrotate)
  rsyslog/repos/community-x86_64/PKGBUILD
(from rev 245475, rsyslog/trunk/PKGBUILD)
  rsyslog/repos/community-x86_64/rsyslog.conf
(from rev 245475, rsyslog/trunk/rsyslog.conf)
  rsyslog/repos/community-x86_64/rsyslog.logrotate
(from rev 245475, rsyslog/trunk/rsyslog.logrotate)
Deleted:
  rsyslog/repos/community-i686/PKGBUILD
  rsyslog/repos/community-i686/rsyslog.conf
  rsyslog/repos/community-i686/rsyslog.logrotate
  rsyslog/repos/community-x86_64/PKGBUILD
  rsyslog/repos/community-x86_64/rsyslog.conf
  rsyslog/repos/community-x86_64/rsyslog.logrotate

+
 /PKGBUILD  |  122 +++
 /rsyslog.conf  |   88 +
 /rsyslog.logrotate |   14 
 community-i686/PKGBUILD|   61 -
 community-i686/rsyslog.conf|   44 
 community-i686/rsyslog.logrotate   |7 --
 community-x86_64/PKGBUILD  |   61 -
 community-x86_64/rsyslog.conf  |   44 
 community-x86_64/rsyslog.logrotate |7 --
 9 files changed, 224 insertions(+), 224 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-17 11:12:43 UTC (rev 245475)
+++ community-i686/PKGBUILD 2017-07-17 11:13:04 UTC (rev 245476)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=rsyslog
-pkgver=8.27.0
-pkgrel=1
-pkgdesc="An enhanced multi-threaded syslogd with a focus on security and 
reliability"
-url="http://www.rsyslog.com/;
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('zlib' 'libestr' 'libee' 'json-c' 'libsystemd' 'liblogging' 'librelp' 
'libfastjson')
-makedepends=('postgresql-libs>=8.4.1' 'libmariadbclient' 'net-snmp' 'gnutls'
-'python-docutils')
-optdepends=('postgresql-libs: PostgreSQL Database Support'
-   'libmariadbclient: MySQL Database Support'
-   'net-snmp'
-   'gnutls')
-backup=('etc/rsyslog.conf'
-   'etc/logrotate.d/rsyslog')
-options=('strip' 'zipman')
-source=("http://www.rsyslog.com/files/download/rsyslog/rsyslog-$pkgver.tar.gz;
-   'rsyslog.logrotate'
-   'rsyslog.conf')
-sha256sums=('02aefbba59324a6d8b70036a67686bed5f0c7be4ced62c039af6ee694cb5b1fd'
-'0f5bea3fd4dff2c9f097bf95768b2e1f6e9cfd9a08eab98bc3b3b4d2ed44119a'
-'5fd51665ab9a81fbb24773068cb261b8dec073d74082c121633f49b9381d9a3f')
-
-prepare() {
-  cd "$srcdir"/${pkgname}-${pkgver}
-  sed -i rsyslog.service.in \
--e 's|rsyslogd -n|rsyslogd -n -i /run/rsyslogd.pid|' \
--e '/ExecStart=.*$/iPIDFile=/run/rsyslogd.pid'
-}
-
-build() {
-  cd "$srcdir"/${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
-  --sbindir=/usr/bin \
-  --enable-mysql \
-  --enable-pgsql \
-  --enable-mail \
-  --enable-imfile \
-  --enable-snmp \
-  --enable-gnutls \
-  --enable-inet \
-  --enable-imjournal \
-  --enable-omjournal \
-  --enable-relp \
-  --enable-impstats \
-  --enable-imptcp \
-  --enable-omprog \
-  --with-systemdsystemunitdir=/usr/lib/systemd/system
-  make
-}
-
-package() {
-  cd "$srcdir"/${pkgname}-${pkgver}
-  make install DESTDIR="$pkgdir"
-  install -D -m644 "$srcdir"/${pkgname}.conf "$pkgdir"/etc/${pkgname}.conf
-  install -D -m644 "$srcdir"/${pkgname}.logrotate 
"$pkgdir"/etc/logrotate.d/${pkgname}
-}

Copied: rsyslog/repos/community-i686/PKGBUILD (from rev 245475, 
rsyslog/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-07-17 11:13:04 UTC (rev 245476)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=rsyslog
+pkgver=8.28.0
+pkgrel=1
+pkgdesc="An enhanced multi-threaded syslogd with a focus on security and 
reliability"
+url="http://www.rsyslog.com/;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('zlib' 'libestr' 'libee' 'json-c' 'libsystemd' 'liblogging' 'librelp' 
'libfastjson')
+makedepends=('postgresql-libs>=8.4.1' 'libmariadbclient' 'net-snmp' 'gnutls'
+'python-docutils')
+optdepends=('postgresql-libs: PostgreSQL Database Support'
+   'libmariadbclient: MySQL Database Support'
+   'net-snmp'
+   'gnutls')

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

2017-07-17 Thread Sergej Pupykin
Date: Monday, July 17, 2017 @ 11:12:43
  Author: spupykin
Revision: 245475

upgpkg: rsyslog 8.28.0-1

Modified:
  rsyslog/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 11:12:34 UTC (rev 245474)
+++ PKGBUILD2017-07-17 11:12:43 UTC (rev 245475)
@@ -2,7 +2,7 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname=rsyslog
-pkgver=8.27.0
+pkgver=8.28.0
 pkgrel=1
 pkgdesc="An enhanced multi-threaded syslogd with a focus on security and 
reliability"
 url="http://www.rsyslog.com/;
@@ -21,7 +21,7 @@
 source=("http://www.rsyslog.com/files/download/rsyslog/rsyslog-$pkgver.tar.gz;
'rsyslog.logrotate'
'rsyslog.conf')
-sha256sums=('02aefbba59324a6d8b70036a67686bed5f0c7be4ced62c039af6ee694cb5b1fd'
+sha256sums=('4ca5405908d612d45da700e36856430510875518eb8028d296d1ee4d2c44678e'
 '0f5bea3fd4dff2c9f097bf95768b2e1f6e9cfd9a08eab98bc3b3b4d2ed44119a'
 '5fd51665ab9a81fbb24773068cb261b8dec073d74082c121633f49b9381d9a3f')
 


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

2017-07-17 Thread Sergej Pupykin
Date: Monday, July 17, 2017 @ 11:12:34
  Author: spupykin
Revision: 245474

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

Added:
  redis/repos/community-i686/PKGBUILD
(from rev 245473, redis/trunk/PKGBUILD)
  redis/repos/community-i686/redis-2.8.11-use-system-jemalloc.patch
(from rev 245473, redis/trunk/redis-2.8.11-use-system-jemalloc.patch)
  redis/repos/community-i686/redis.conf-sane-defaults.patch
(from rev 245473, redis/trunk/redis.conf-sane-defaults.patch)
  redis/repos/community-i686/redis.install
(from rev 245473, redis/trunk/redis.install)
  redis/repos/community-i686/redis.logrotate
(from rev 245473, redis/trunk/redis.logrotate)
  redis/repos/community-i686/redis.service
(from rev 245473, redis/trunk/redis.service)
  redis/repos/community-x86_64/PKGBUILD
(from rev 245473, redis/trunk/PKGBUILD)
  redis/repos/community-x86_64/redis-2.8.11-use-system-jemalloc.patch
(from rev 245473, redis/trunk/redis-2.8.11-use-system-jemalloc.patch)
  redis/repos/community-x86_64/redis.conf-sane-defaults.patch
(from rev 245473, redis/trunk/redis.conf-sane-defaults.patch)
  redis/repos/community-x86_64/redis.install
(from rev 245473, redis/trunk/redis.install)
  redis/repos/community-x86_64/redis.logrotate
(from rev 245473, redis/trunk/redis.logrotate)
  redis/repos/community-x86_64/redis.service
(from rev 245473, redis/trunk/redis.service)
Deleted:
  redis/repos/community-i686/PKGBUILD
  redis/repos/community-i686/redis-2.8.11-use-system-jemalloc.patch
  redis/repos/community-i686/redis.conf-sane-defaults.patch
  redis/repos/community-i686/redis.install
  redis/repos/community-i686/redis.logrotate
  redis/repos/community-i686/redis.service
  redis/repos/community-x86_64/PKGBUILD
  redis/repos/community-x86_64/redis-2.8.11-use-system-jemalloc.patch
  redis/repos/community-x86_64/redis.conf-sane-defaults.patch
  redis/repos/community-x86_64/redis.install
  redis/repos/community-x86_64/redis.logrotate
  redis/repos/community-x86_64/redis.service

-+
 /PKGBUILD   |  102 ++
 /redis-2.8.11-use-system-jemalloc.patch |   30 
 /redis.conf-sane-defaults.patch |   24 +++
 /redis.install  |   16 ++
 /redis.logrotate|   10 +
 /redis.service  |   44 ++
 community-i686/PKGBUILD |   51 ---
 community-i686/redis-2.8.11-use-system-jemalloc.patch   |   15 --
 community-i686/redis.conf-sane-defaults.patch   |   12 -
 community-i686/redis.install|8 -
 community-i686/redis.logrotate  |5 
 community-i686/redis.service|   22 ---
 community-x86_64/PKGBUILD   |   51 ---
 community-x86_64/redis-2.8.11-use-system-jemalloc.patch |   15 --
 community-x86_64/redis.conf-sane-defaults.patch |   12 -
 community-x86_64/redis.install  |8 -
 community-x86_64/redis.logrotate|5 
 community-x86_64/redis.service  |   22 ---
 18 files changed, 226 insertions(+), 226 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-17 11:12:03 UTC (rev 245473)
+++ community-i686/PKGBUILD 2017-07-17 11:12:34 UTC (rev 245474)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer:  Sergej Pupykin 
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Jan-Erik Rediger 
-# Contributor: nofxx 
-
-pkgname=redis
-pkgver=3.2.9
-pkgrel=1
-pkgdesc='Advanced key-value store'
-arch=('i686' 'x86_64')
-url='http://redis.io/'
-license=('BSD')
-depends=('jemalloc' 'grep' 'shadow')
-backup=('etc/redis.conf'
-'etc/logrotate.d/redis')
-install=redis.install
-source=(http://download.redis.io/releases/redis-$pkgver.tar.gz
-redis.service
-redis.logrotate
-redis.conf-sane-defaults.patch
-redis-2.8.11-use-system-jemalloc.patch)
-sha256sums=('6eaacfa983b287e440d0839ead20c2231749d5d6b78bbe0e0ffa3a890c59ff26'
-'cceff2a097d9041a0c73caeb5c33e849af783c6a12db866f24b8417ac3ac9d11'
-'8b4c2caabb4f54157ad91ca472423112b1803685ad18ed11b60463d78494df13'
-'22cd3b9f7e9b17647a615d009b50603e7978b0af26c3e2c53560e57573b996ed'
-'b1d2802d7e459799565fb4660e97e57a23de0aa47689656ece4a00d1053dd919')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -p1 -i ../redis.conf-sane-defaults.patch
-#  patch -p1 -i ../redis-2.8.11-use-system-jemalloc.patch
-}
-
-build() {
-  make -C $pkgname-$pkgver
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make PREFIX="$pkgdir"/usr install
-
-  install -Dm644 COPYING 

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

2017-07-17 Thread Sergej Pupykin
Date: Monday, July 17, 2017 @ 11:12:03
  Author: spupykin
Revision: 245473

upgpkg: redis 4.0.0-1

Modified:
  redis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 11:11:41 UTC (rev 245472)
+++ PKGBUILD2017-07-17 11:12:03 UTC (rev 245473)
@@ -5,7 +5,7 @@
 # Contributor: nofxx 
 
 pkgname=redis
-pkgver=3.2.9
+pkgver=4.0.0
 pkgrel=1
 pkgdesc='Advanced key-value store'
 arch=('i686' 'x86_64')
@@ -20,7 +20,7 @@
 redis.logrotate
 redis.conf-sane-defaults.patch
 redis-2.8.11-use-system-jemalloc.patch)
-sha256sums=('6eaacfa983b287e440d0839ead20c2231749d5d6b78bbe0e0ffa3a890c59ff26'
+sha256sums=('d539ae309295721d5c3ed7298939645b6f86ab5d25fdf2a0352ab575c159df2d'
 'cceff2a097d9041a0c73caeb5c33e849af783c6a12db866f24b8417ac3ac9d11'
 '8b4c2caabb4f54157ad91ca472423112b1803685ad18ed11b60463d78494df13'
 '22cd3b9f7e9b17647a615d009b50603e7978b0af26c3e2c53560e57573b996ed'


[arch-commits] Commit in mediawiki/repos/community-any (6 files)

2017-07-17 Thread Sergej Pupykin
Date: Monday, July 17, 2017 @ 11:11:41
  Author: spupykin
Revision: 245472

archrelease: copy trunk to community-any

Added:
  mediawiki/repos/community-any/PKGBUILD
(from rev 245471, mediawiki/trunk/PKGBUILD)
  mediawiki/repos/community-any/apache.example.conf
(from rev 245471, mediawiki/trunk/apache.example.conf)
  mediawiki/repos/community-any/mediawiki.install
(from rev 245471, mediawiki/trunk/mediawiki.install)
Deleted:
  mediawiki/repos/community-any/PKGBUILD
  mediawiki/repos/community-any/apache.example.conf
  mediawiki/repos/community-any/mediawiki.install

-+
 PKGBUILD|  158 +-
 apache.example.conf |   14 ++--
 mediawiki.install   |   10 +--
 3 files changed, 91 insertions(+), 91 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-07-17 11:11:24 UTC (rev 245471)
+++ PKGBUILD2017-07-17 11:11:41 UTC (rev 245472)
@@ -1,79 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Sergej Pupykin 
-
-pkgbase=mediawiki
-pkgname=('mediawiki' 'mediawiki-math')
-pkgver=1.28.2
-_basever=${pkgver%.*}
-_hash=1097ee7
-pkgrel=1
-pkgdesc="MediaWiki engine"
-arch=('any')
-url="http://www.mediawiki.org/wiki/MediaWiki;
-# + http://www.mediawiki.org/wiki/Extension:Math
-license=("GPL")
-depends=('php')
-makedepends=('git')
-optdepends=('texvc: for math rendering'
-   'python2'
-   'pcre: for regular expressions support'
-   'php-intl: to handle Unicode normalization'
-#  'php-mysql: for MySQL database support'
-   'php-pgsql: for PostgreSQL database support'
-   'php-sqlite: for sqlite database support'
-   'php-apc: for cache support'
-   'php-xcache: for cache support'
-   'memcached: for cache support'
-   'php-gd: for thumbnails rendering'
-   'imagemagick: for thumbnails rendering'
-   'smtp-forwarder: for mail sending')
-install=mediawiki.install
-options=(!strip)
-validpgpkeys=('41B2ABE817ADD3E52BDA946F72BC1C5D23107F8A')
-#  
mediawiki-math-${_basever}::git+https://git.wikimedia.org/git/mediawiki/extensions/Math.git#branch=REL${_basever/./_}
-source=("https://releases.wikimedia.org/mediawiki/${_basever}/mediawiki-$pkgver.tar.gz"{,.sig}
-   
"mediawiki-math-${_basever}.tar.gz::https://codeload.github.com/wikimedia/mediawiki-extensions-Math/legacy.tar.gz/REL${_basever/./_};
-   apache.example.conf)
-sha256sums=('295026bfa63316fcffdeeaf84703d41bedaf31eef2fbaa9381c5356392537664'
-'SKIP'
-'554d61a1d4ea383687dbdebd5c8b715cd846e9ca3f3e32e124a5559f7e0a5b76'
-'cfeff68331e930b6a93f166c12666ac59a84aa24334f94520eff3f988f37ce2b')
-
-package_mediawiki() {
-  cd "$srcdir"
-  install -vdm0755 "$pkgdir"/usr/share/webapps
-  install -vdm0755 "$pkgdir"/etc/webapps/mediawiki
-  cp -a $pkgname-$pkgver "$pkgdir"/usr/share/webapps/mediawiki
-
-  install -vDm0644 "$srcdir"/apache.example.conf 
"$pkgdir"/etc/webapps/mediawiki/apache.example.conf
-
-  # move cache and images to /var
-  install -vdm0755 -o http -g http "$pkgdir"/var/cache/mediawiki
-  install -vdm0755 -o http -g http "$pkgdir"/var/lib/mediawiki
-
-  cd "$pkgdir"/usr/share/webapps/mediawiki
-
-  mv cache/.htaccess "$pkgdir"/var/cache/mediawiki/
-  rmdir cache
-  ln -sf /var/cache/mediawiki cache
-
-  mv images/* "$pkgdir"/var/lib/mediawiki/
-  mv images/.htaccess "$pkgdir"/var/lib/mediawiki/
-  rmdir images
-  ln -sf /var/lib/mediawiki images
-}
-
-package_mediawiki-math() {
-  depends=('mediawiki' 'texvc')
-  optdepends=()
-  backup=()
-  pkgdesc="MediaWiki math extension"
-  unset install
-
-  cd "$srcdir"
-  install -vdm0755 "$pkgdir"/usr/share/webapps/mediawiki/extensions
-#  cp -a mediawiki-math-${_basever} 
"$pkgdir"/usr/share/webapps/mediawiki/extensions/Math
-  cp -a wikimedia-mediawiki-extensions-Math-${_hash} 
"$pkgdir"/usr/share/webapps/mediawiki/extensions/Math
-  ln -s /usr/bin/texvc 
"$pkgdir"/usr/share/webapps/mediawiki/extensions/Math/math/texvc
-}

Copied: mediawiki/repos/community-any/PKGBUILD (from rev 245471, 
mediawiki/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-07-17 11:11:41 UTC (rev 245472)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Sergej Pupykin 
+
+pkgbase=mediawiki
+pkgname=('mediawiki' 'mediawiki-math')
+pkgver=1.29.0
+_basever=${pkgver%.*}
+_hash=05166d9
+pkgrel=1
+pkgdesc="MediaWiki engine"
+arch=('any')
+url="http://www.mediawiki.org/wiki/MediaWiki;
+# + http://www.mediawiki.org/wiki/Extension:Math
+license=("GPL")
+depends=('php')
+makedepends=('git')
+optdepends=('texvc: for math rendering'
+   'python2'
+   'pcre: for regular expressions support'
+   'php-intl: 

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

2017-07-17 Thread Sergej Pupykin
Date: Monday, July 17, 2017 @ 11:11:24
  Author: spupykin
Revision: 245471

upgpkg: mediawiki 1.29.0-1

Modified:
  mediawiki/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 11:11:18 UTC (rev 245470)
+++ PKGBUILD2017-07-17 11:11:24 UTC (rev 245471)
@@ -4,9 +4,9 @@
 
 pkgbase=mediawiki
 pkgname=('mediawiki' 'mediawiki-math')
-pkgver=1.28.2
+pkgver=1.29.0
 _basever=${pkgver%.*}
-_hash=1097ee7
+_hash=05166d9
 pkgrel=1
 pkgdesc="MediaWiki engine"
 arch=('any')
@@ -35,9 +35,9 @@
 
source=("https://releases.wikimedia.org/mediawiki/${_basever}/mediawiki-$pkgver.tar.gz"{,.sig}

"mediawiki-math-${_basever}.tar.gz::https://codeload.github.com/wikimedia/mediawiki-extensions-Math/legacy.tar.gz/REL${_basever/./_};
apache.example.conf)
-sha256sums=('295026bfa63316fcffdeeaf84703d41bedaf31eef2fbaa9381c5356392537664'
+sha256sums=('285075ae9d8b2698af4e2922644a02c16ef5869e9e9eb86f0bd3a54640f559c0'
 'SKIP'
-'554d61a1d4ea383687dbdebd5c8b715cd846e9ca3f3e32e124a5559f7e0a5b76'
+'0cb5c4072346bbb9183bd2506b48a81eb790046cb957a2f7f827e3b9aa686c1b'
 'cfeff68331e930b6a93f166c12666ac59a84aa24334f94520eff3f988f37ce2b')
 
 package_mediawiki() {


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

2017-07-17 Thread Sergej Pupykin
Date: Monday, July 17, 2017 @ 11:11:18
  Author: spupykin
Revision: 245470

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-17 11:10:59 UTC (rev 245469)
+++ community-i686/PKGBUILD 2017-07-17 11:11:18 UTC (rev 245470)
@@ -1,23 +0,0 @@
-# Maintainer: Kaiting Chen 
-
-pkgname='librelp'
-pkgver=1.2.12
-pkgrel=1
-pkgdesc="The Reliable Event Logging Protocol"
-url="http://www.librelp.com/;
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('gnutls')
-source=("http://download.rsyslog.com/librelp/librelp-${pkgver}.tar.gz;)
-md5sums=('b99eb5e5eb77b4fd999e440876106aee')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: librelp/repos/community-i686/PKGBUILD (from rev 245469, 
librelp/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-07-17 11:11:18 UTC (rev 245470)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Kaiting Chen 
+
+pkgname='librelp'
+pkgver=1.2.14
+pkgrel=1
+pkgdesc="The Reliable Event Logging Protocol"
+url="http://www.librelp.com/;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('gnutls')
+source=("http://download.rsyslog.com/librelp/librelp-${pkgver}.tar.gz;)
+sha256sums=('11f6241a4336358a33bfdadd43ef299e8258db0a5243d0c164499c6b85ae5955')
+
+build() {
+  cd "$srcdir"/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-07-17 11:10:59 UTC (rev 245469)
+++ community-x86_64/PKGBUILD   2017-07-17 11:11:18 UTC (rev 245470)
@@ -1,23 +0,0 @@
-# Maintainer: Kaiting Chen 
-
-pkgname='librelp'
-pkgver=1.2.12
-pkgrel=1
-pkgdesc="The Reliable Event Logging Protocol"
-url="http://www.librelp.com/;
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('gnutls')
-source=("http://download.rsyslog.com/librelp/librelp-${pkgver}.tar.gz;)
-md5sums=('b99eb5e5eb77b4fd999e440876106aee')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: librelp/repos/community-x86_64/PKGBUILD (from rev 245469, 
librelp/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-07-17 11:11:18 UTC (rev 245470)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Kaiting Chen 
+
+pkgname='librelp'
+pkgver=1.2.14
+pkgrel=1
+pkgdesc="The Reliable Event Logging Protocol"
+url="http://www.librelp.com/;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('gnutls')
+source=("http://download.rsyslog.com/librelp/librelp-${pkgver}.tar.gz;)
+sha256sums=('11f6241a4336358a33bfdadd43ef299e8258db0a5243d0c164499c6b85ae5955')
+
+build() {
+  cd "$srcdir"/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}


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

2017-07-17 Thread Sergej Pupykin
Date: Monday, July 17, 2017 @ 11:10:59
  Author: spupykin
Revision: 245469

upgpkg: librelp 1.2.14-1

Modified:
  librelp/trunk/PKGBUILD(contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 11:10:52 UTC (rev 245468)
+++ PKGBUILD2017-07-17 11:10:59 UTC (rev 245469)
@@ -1,7 +1,9 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
 # Maintainer: Kaiting Chen 
 
 pkgname='librelp'
-pkgver=1.2.12
+pkgver=1.2.14
 pkgrel=1
 pkgdesc="The Reliable Event Logging Protocol"
 url="http://www.librelp.com/;
@@ -9,7 +11,7 @@
 license=('GPL3')
 depends=('gnutls')
 source=("http://download.rsyslog.com/librelp/librelp-${pkgver}.tar.gz;)
-md5sums=('b99eb5e5eb77b4fd999e440876106aee')
+sha256sums=('11f6241a4336358a33bfdadd43ef299e8258db0a5243d0c164499c6b85ae5955')
 
 build() {
   cd "$srcdir"/${pkgname}-${pkgver}


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


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

2017-07-17 Thread Sergej Pupykin
Date: Monday, July 17, 2017 @ 11:10:52
  Author: spupykin
Revision: 245468

archrelease: copy trunk to community-any

Added:
  cacti/repos/community-any/PKGBUILD
(from rev 245467, cacti/trunk/PKGBUILD)
  cacti/repos/community-any/cacti.install
(from rev 245467, cacti/trunk/cacti.install)
Deleted:
  cacti/repos/community-any/PKGBUILD
  cacti/repos/community-any/cacti.install

---+
 PKGBUILD  |   68 
 cacti.install |   14 +--
 2 files changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-07-17 11:10:39 UTC (rev 245467)
+++ PKGBUILD2017-07-17 11:10:52 UTC (rev 245468)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: tuxbubling 
-
-pkgname=cacti
-pkgver=1.1.11
-pkgrel=1
-pkgdesc="complete network graphing solution designed to harness the power of 
RRDTool's data storage and graphing functionality"
-arch=(any)
-url="http://www.cacti.net;
-license=('GPL')
-depends=('rrdtool' 'mariadb' 'php' 'php-gd' 'net-snmp' 'xorg-fonts-100dpi')
-backup=('etc/webapps/cacti/.htaccess'
-   'etc/webapps/cacti/config.php')
-install=cacti.install
-source=("http://www.cacti.net/downloads/$pkgname-${pkgver/_/}.tar.gz;)
-sha256sums=('f1c1a370f880558368f150336b9306551bb5598c71397c764b79f6cf8eedcfe8')
-
-package() {
-  mkdir -p "$pkgdir"/usr/share/webapps/cacti "$pkgdir"/etc/webapps/cacti
-  mv "$srcdir"/$pkgname-${pkgver/_/}/* "$pkgdir"/usr/share/webapps/cacti
-  echo "Require all denied" >> "$pkgdir"/etc/webapps/cacti/.htaccess
-  mv "$pkgdir"/usr/share/webapps/cacti/include/config.php 
"$pkgdir"/etc/webapps/cacti
-  ln -s /etc/webapps/cacti/.htaccess 
"$pkgdir"/usr/share/webapps/cacti/.htaccess
-  ln -s /etc/webapps/cacti/config.php 
"$pkgdir"/usr/share/webapps/cacti/include/config.php
-
-  install -dm0755 "$pkgdir"/var/log/ "$pkgdir"/var/lib/cacti/
-
-  mv "$pkgdir"/usr/share/webapps/cacti/rra "$pkgdir"/var/lib/cacti/rra
-  ln -s /var/lib/cacti/rra "$pkgdir"/usr/share/webapps/cacti/rra
-
-  mv "$pkgdir"/usr/share/webapps/cacti/log "$pkgdir"/var/log/cacti
-  ln -s /var/log/cacti "$pkgdir"/usr/share/webapps/cacti/log
-}

Copied: cacti/repos/community-any/PKGBUILD (from rev 245467, 
cacti/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-07-17 11:10:52 UTC (rev 245468)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: tuxbubling 
+
+pkgname=cacti
+pkgver=1.1.13
+pkgrel=1
+pkgdesc="complete network graphing solution designed to harness the power of 
RRDTool's data storage and graphing functionality"
+arch=(any)
+url="http://www.cacti.net;
+license=('GPL')
+depends=('rrdtool' 'mariadb' 'php' 'php-gd' 'net-snmp' 'xorg-fonts-100dpi')
+backup=('etc/webapps/cacti/.htaccess'
+   'etc/webapps/cacti/config.php')
+install=cacti.install
+source=("http://www.cacti.net/downloads/$pkgname-${pkgver/_/}.tar.gz;)
+sha256sums=('ea935e1e9b89c57ad9e6335acaca3b525611eaff19c17516440df5028b63e387')
+
+package() {
+  mkdir -p "$pkgdir"/usr/share/webapps/cacti "$pkgdir"/etc/webapps/cacti
+  mv "$srcdir"/$pkgname-${pkgver/_/}/* "$pkgdir"/usr/share/webapps/cacti
+  echo "Require all denied" >> "$pkgdir"/etc/webapps/cacti/.htaccess
+  mv "$pkgdir"/usr/share/webapps/cacti/include/config.php 
"$pkgdir"/etc/webapps/cacti
+  ln -s /etc/webapps/cacti/.htaccess 
"$pkgdir"/usr/share/webapps/cacti/.htaccess
+  ln -s /etc/webapps/cacti/config.php 
"$pkgdir"/usr/share/webapps/cacti/include/config.php
+
+  install -dm0755 "$pkgdir"/var/log/ "$pkgdir"/var/lib/cacti/
+
+  mv "$pkgdir"/usr/share/webapps/cacti/rra "$pkgdir"/var/lib/cacti/rra
+  ln -s /var/lib/cacti/rra "$pkgdir"/usr/share/webapps/cacti/rra
+
+  mv "$pkgdir"/usr/share/webapps/cacti/log "$pkgdir"/var/log/cacti
+  ln -s /var/log/cacti "$pkgdir"/usr/share/webapps/cacti/log
+}

Deleted: cacti.install
===
--- cacti.install   2017-07-17 11:10:39 UTC (rev 245467)
+++ cacti.install   2017-07-17 11:10:52 UTC (rev 245468)
@@ -1,7 +0,0 @@
-post_upgrade() {
-  post_install
-}
-
-post_install() {
-  chown -R http:http var/log/cacti var/lib/cacti/rra
-}

Copied: cacti/repos/community-any/cacti.install (from rev 245467, 
cacti/trunk/cacti.install)
===
--- cacti.install   (rev 0)
+++ cacti.install   2017-07-17 11:10:52 UTC (rev 245468)
@@ -0,0 +1,7 @@
+post_upgrade() {
+  post_install
+}
+
+post_install() {
+  chown -R http:http var/log/cacti var/lib/cacti/rra
+}


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

2017-07-17 Thread Sergej Pupykin
Date: Monday, July 17, 2017 @ 11:10:39
  Author: spupykin
Revision: 245467

upgpkg: cacti 1.1.13-1

Modified:
  cacti/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 09:28:17 UTC (rev 245466)
+++ PKGBUILD2017-07-17 11:10:39 UTC (rev 245467)
@@ -3,7 +3,7 @@
 # Contributor: tuxbubling 
 
 pkgname=cacti
-pkgver=1.1.11
+pkgver=1.1.13
 pkgrel=1
 pkgdesc="complete network graphing solution designed to harness the power of 
RRDTool's data storage and graphing functionality"
 arch=(any)
@@ -14,7 +14,7 @@
'etc/webapps/cacti/config.php')
 install=cacti.install
 source=("http://www.cacti.net/downloads/$pkgname-${pkgver/_/}.tar.gz;)
-sha256sums=('f1c1a370f880558368f150336b9306551bb5598c71397c764b79f6cf8eedcfe8')
+sha256sums=('ea935e1e9b89c57ad9e6335acaca3b525611eaff19c17516440df5028b63e387')
 
 package() {
   mkdir -p "$pkgdir"/usr/share/webapps/cacti "$pkgdir"/etc/webapps/cacti


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

2017-07-17 Thread Massimiliano Torromeo
Date: Monday, July 17, 2017 @ 09:28:17
  Author: mtorromeo
Revision: 245466

Updated URL to point to the github page

Modified:
  sparsehash/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 07:32:28 UTC (rev 245465)
+++ PKGBUILD2017-07-17 09:28:17 UTC (rev 245466)
@@ -6,7 +6,7 @@
 pkgrel=1
 pkgdesc="Library that contains several hash-map implementations, including 
implementations that optimize for space or speed."
 arch=("any")
-url="http://code.google.com/p/sparsehash;
+url="https://github.com/sparsehash/sparsehash;
 license=('BSD')
 
source=("https://github.com/sparsehash/sparsehash/archive/sparsehash-$pkgver.tar.gz;)
 sha256sums=('05e986a5c7327796dad742182b2d10805a8d4f511ad090da0490f146c1ff7a8c')


[arch-commits] Commit in xdg-desktop-portal-kde (7 files)

2017-07-17 Thread Antonio Rojas
Date: Monday, July 17, 2017 @ 09:26:27
  Author: arojas
Revision: 300688

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

Added:
  xdg-desktop-portal-kde/repos/
  xdg-desktop-portal-kde/repos/extra-i686/
  xdg-desktop-portal-kde/repos/extra-i686/PKGBUILD
(from rev 300687, xdg-desktop-portal-kde/trunk/PKGBUILD)
  xdg-desktop-portal-kde/repos/extra-i686/full-libexecdir.patch
(from rev 300687, xdg-desktop-portal-kde/trunk/full-libexecdir.patch)
  xdg-desktop-portal-kde/repos/extra-x86_64/
  xdg-desktop-portal-kde/repos/extra-x86_64/PKGBUILD
(from rev 300687, xdg-desktop-portal-kde/trunk/PKGBUILD)
  xdg-desktop-portal-kde/repos/extra-x86_64/full-libexecdir.patch
(from rev 300687, xdg-desktop-portal-kde/trunk/full-libexecdir.patch)

+
 extra-i686/PKGBUILD|   45 +++
 extra-i686/full-libexecdir.patch   |9 +++
 extra-x86_64/PKGBUILD  |   45 +++
 extra-x86_64/full-libexecdir.patch |9 +++
 4 files changed, 108 insertions(+)

Copied: xdg-desktop-portal-kde/repos/extra-i686/PKGBUILD (from rev 300687, 
xdg-desktop-portal-kde/trunk/PKGBUILD)
===
--- repos/extra-i686/PKGBUILD   (rev 0)
+++ repos/extra-i686/PKGBUILD   2017-07-17 09:26:27 UTC (rev 300688)
@@ -0,0 +1,45 @@
+# $Id: PKGBUILD 295962 2017-05-13 12:58:56Z arojas $
+# Maintainer: Antonio Rojas 
+
+pkgname=xdg-desktop-portal-kde
+pkgver=5.10.3
+pkgrel=2
+pkgdesc='A backend implementation for xdg-desktop-portal using Qt/KF5'
+arch=(i686 x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(ki18n knotifications)
+makedepends=(extra-cmake-modules python)
+provides=(xdg-desktop-portal-impl)
+groups=(plasma)
+source=("https://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig}
 full-libexecdir.patch)
+sha256sums=('ed7d2af02ca714251e0db605af57c80ab0b665b5224143ba57ca581782e0cbc2'
+'SKIP'
+'b3a41f1a171f820ba75e252e6b8025b62ec5b5fd4771360d9d6e430ffe2614c9')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+
+# Fix binary location in service file
+  cd $pkgname-$pkgver
+  patch -p1 -i ../full-libexecdir.patch
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: xdg-desktop-portal-kde/repos/extra-i686/full-libexecdir.patch (from rev 
300687, xdg-desktop-portal-kde/trunk/full-libexecdir.patch)
===
--- repos/extra-i686/full-libexecdir.patch  (rev 0)
+++ repos/extra-i686/full-libexecdir.patch  2017-07-17 09:26:27 UTC (rev 
300688)
@@ -0,0 +1,9 @@
+diff --git a/data/org.freedesktop.impl.portal.desktop.kde.cmake.in 
b/data/org.freedesktop.impl.portal.desktop.kde.cmake.in
+index df7b099..8343477 100644
+--- a/data/org.freedesktop.impl.portal.desktop.kde.cmake.in
 b/data/org.freedesktop.impl.portal.desktop.kde.cmake.in
+@@ -1,3 +1,3 @@
+ [D-BUS Service]
+ Name=org.freedesktop.impl.portal.desktop.kde
+-Exec=@CMAKE_INSTALL_LIBEXECDIR@/xdg-desktop-portal-kde
++Exec=@CMAKE_INSTALL_FULL_LIBEXECDIR@/xdg-desktop-portal-kde

Copied: xdg-desktop-portal-kde/repos/extra-x86_64/PKGBUILD (from rev 300687, 
xdg-desktop-portal-kde/trunk/PKGBUILD)
===
--- repos/extra-x86_64/PKGBUILD (rev 0)
+++ repos/extra-x86_64/PKGBUILD 2017-07-17 09:26:27 UTC (rev 300688)
@@ -0,0 +1,45 @@
+# $Id: PKGBUILD 295962 2017-05-13 12:58:56Z arojas $
+# Maintainer: Antonio Rojas 
+
+pkgname=xdg-desktop-portal-kde
+pkgver=5.10.3
+pkgrel=2
+pkgdesc='A backend implementation for xdg-desktop-portal using Qt/KF5'
+arch=(i686 x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(ki18n knotifications)
+makedepends=(extra-cmake-modules python)
+provides=(xdg-desktop-portal-impl)
+groups=(plasma)
+source=("https://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig}
 full-libexecdir.patch)
+sha256sums=('ed7d2af02ca714251e0db605af57c80ab0b665b5224143ba57ca581782e0cbc2'
+'SKIP'
+'b3a41f1a171f820ba75e252e6b8025b62ec5b5fd4771360d9d6e430ffe2614c9')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  

[arch-commits] Commit in xdg-desktop-portal-kde (repos)

2017-07-17 Thread Antonio Rojas
Date: Monday, July 17, 2017 @ 09:26:06
  Author: arojas
Revision: 300687

Deleted:
  xdg-desktop-portal-kde/repos/


[arch-commits] Commit in xdg-desktop-portal-kde/repos (4 files)

2017-07-17 Thread Antonio Rojas
Date: Monday, July 17, 2017 @ 09:25:40
  Author: arojas
Revision: 300686

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

Added:
  xdg-desktop-portal-kde/repos/extra-i686/PKGBUILD
(from rev 300685, xdg-desktop-portal-kde/trunk/PKGBUILD)
  xdg-desktop-portal-kde/repos/extra-i686/full-libexecdir.patch
(from rev 300685, xdg-desktop-portal-kde/trunk/full-libexecdir.patch)
Deleted:
  xdg-desktop-portal-kde/repos/extra-i686/PKGBUILD
  xdg-desktop-portal-kde/repos/extra-x86_64/PKGBUILD

--+
 /PKGBUILD|   45 +
 extra-i686/PKGBUILD  |   40 
 extra-i686/full-libexecdir.patch |9 +++
 extra-x86_64/PKGBUILD|   45 -
 4 files changed, 54 insertions(+), 85 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-07-17 09:24:24 UTC (rev 300685)
+++ extra-i686/PKGBUILD 2017-07-17 09:25:40 UTC (rev 300686)
@@ -1,40 +0,0 @@
-# $Id: PKGBUILD 295962 2017-05-13 12:58:56Z arojas $
-# Maintainer: Antonio Rojas 
-
-pkgname=xdg-desktop-portal-kde
-pkgver=5.10.3
-pkgrel=1
-pkgdesc='A backend implementation for xdg-desktop-portal using Qt/KF5'
-arch=(i686 x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(ki18n knotifications)
-makedepends=(extra-cmake-modules python)
-provides=(xdg-desktop-portal-impl)
-groups=(plasma)
-source=("https://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('ed7d2af02ca714251e0db605af57c80ab0b665b5224143ba57ca581782e0cbc2'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_LIBEXECDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: xdg-desktop-portal-kde/repos/extra-i686/PKGBUILD (from rev 300685, 
xdg-desktop-portal-kde/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-07-17 09:25:40 UTC (rev 300686)
@@ -0,0 +1,45 @@
+# $Id: PKGBUILD 295962 2017-05-13 12:58:56Z arojas $
+# Maintainer: Antonio Rojas 
+
+pkgname=xdg-desktop-portal-kde
+pkgver=5.10.3
+pkgrel=2
+pkgdesc='A backend implementation for xdg-desktop-portal using Qt/KF5'
+arch=(i686 x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(ki18n knotifications)
+makedepends=(extra-cmake-modules python)
+provides=(xdg-desktop-portal-impl)
+groups=(plasma)
+source=("https://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig}
 full-libexecdir.patch)
+sha256sums=('ed7d2af02ca714251e0db605af57c80ab0b665b5224143ba57ca581782e0cbc2'
+'SKIP'
+'b3a41f1a171f820ba75e252e6b8025b62ec5b5fd4771360d9d6e430ffe2614c9')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+
+# Fix binary location in service file
+  cd $pkgname-$pkgver
+  patch -p1 -i ../full-libexecdir.patch
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: xdg-desktop-portal-kde/repos/extra-i686/full-libexecdir.patch (from rev 
300685, xdg-desktop-portal-kde/trunk/full-libexecdir.patch)
===
--- extra-i686/full-libexecdir.patch(rev 0)
+++ extra-i686/full-libexecdir.patch2017-07-17 09:25:40 UTC (rev 300686)
@@ -0,0 +1,9 @@
+diff --git a/data/org.freedesktop.impl.portal.desktop.kde.cmake.in 
b/data/org.freedesktop.impl.portal.desktop.kde.cmake.in
+index df7b099..8343477 100644
+--- a/data/org.freedesktop.impl.portal.desktop.kde.cmake.in
 b/data/org.freedesktop.impl.portal.desktop.kde.cmake.in
+@@ -1,3 +1,3 @@
+ [D-BUS Service]
+ Name=org.freedesktop.impl.portal.desktop.kde
+-Exec=@CMAKE_INSTALL_LIBEXECDIR@/xdg-desktop-portal-kde
++Exec=@CMAKE_INSTALL_FULL_LIBEXECDIR@/xdg-desktop-portal-kde

Deleted: extra-x86_64/PKGBUILD
===
--- 

  1   2   >