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

2016-12-03 Thread Kyle Keen
Date: Sunday, December 4, 2016 @ 07:43:48
  Author: kkeen
Revision: 197856

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

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

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

Copied: zeromq/repos/community-testing-i686/PKGBUILD (from rev 197855, 
zeromq/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-12-04 07:43:48 UTC (rev 197856)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Kyle Keen 
+pkgname=zeromq
+pkgver=4.2.0
+pkgrel=1
+pkgdesc="Fast messaging system built on sockets.  C and C++ bindings.  aka 
0MQ, ZMQ."
+arch=('i686' 'x86_64')
+url="http://www.zeromq.org";
+license=('LGPL')
+depends=('gcc-libs' 'util-linux' 'libsodium' 'libpgm')
+makedepends=('asciidoc' 'xmlto')
+options=('staticlibs')
+# "http://download.zeromq.org/$pkgname-$pkgver.tar.gz";
+source=("https://github.com/zeromq/libzmq/releases/download/v$pkgver/zeromq-$pkgver.tar.gz";
+'https://raw.githubusercontent.com/zeromq/cppzmq/8b52a6f/zmq.hpp')
+md5sums=('1fb2595d2a905a9e820c976a1d8348bc'
+ 'c732ee5409f8419323185d8aa44bc54c')
+
+prepare() {
+  # Needed for new libsodium
+  sed -i 's/libzmq_werror="yes"/libzmq_werror="no"/' $pkgname-$pkgver/configure
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure prefix=/usr --with-pgm --with-libsodium \
+--with-documentation --enable-static
+  make
+}
+
+check() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # this will fail if zmq.hpp is out of date
+  LANG=C gcc -c ../zmq.hpp -L ./.libs/ -I ./include/ -o ./test.o
+  rm -f test.o
+
+  # 10/63 tests fail on the build server
+  # 100% pass on my local box?
+  return 0
+  if [[ $CARCH == 'i686' ]]; then
+return 0
+  fi
+  make -k check
+}
+
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "$srcdir/zmq.hpp" "$pkgdir/usr/include/zmq.hpp"
+}
+

Copied: zeromq/repos/community-testing-x86_64/PKGBUILD (from rev 197855, 
zeromq/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2016-12-04 07:43:48 UTC (rev 197856)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Kyle Keen 
+pkgname=zeromq
+pkgver=4.2.0
+pkgrel=1
+pkgdesc="Fast messaging system built on sockets.  C and C++ bindings.  aka 
0MQ, ZMQ."
+arch=('i686' 'x86_64')
+url="http://www.zeromq.org";
+license=('LGPL')
+depends=('gcc-libs' 'util-linux' 'libsodium' 'libpgm')
+makedepends=('asciidoc' 'xmlto')
+options=('staticlibs')
+# "http://download.zeromq.org/$pkgname-$pkgver.tar.gz";
+source=("https://github.com/zeromq/libzmq/releases/download/v$pkgver/zeromq-$pkgver.tar.gz";
+'https://raw.githubusercontent.com/zeromq/cppzmq/8b52a6f/zmq.hpp')
+md5sums=('1fb2595d2a905a9e820c976a1d8348bc'
+ 'c732ee5409f8419323185d8aa44bc54c')
+
+prepare() {
+  # Needed for new libsodium
+  sed -i 's/libzmq_werror="yes"/libzmq_werror="no"/' $pkgname-$pkgver/configure
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure prefix=/usr --with-pgm --with-libsodium \
+--with-documentation --enable-static
+  make
+}
+
+check() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # this will fail if zmq.hpp is out of date
+  LANG=C gcc -c ../zmq.hpp -L ./.libs/ -I ./include/ -o ./test.o
+  rm -f test.o
+
+  # 10/63 tests fail on the build server
+  # 100% pass on my local box?
+  return 0
+  if [[ $CARCH == 'i686' ]]; then
+return 0
+  fi
+  make -k check
+}
+
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "$srcdir/zmq.hpp" "$pkgdir/usr/include/zmq.hpp"
+}
+


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

2016-12-03 Thread Kyle Keen
Date: Sunday, December 4, 2016 @ 07:43:28
  Author: kkeen
Revision: 197855

upgpkg: zeromq 4.2.0-1

Modified:
  zeromq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-04 04:13:06 UTC (rev 197854)
+++ PKGBUILD2016-12-04 07:43:28 UTC (rev 197855)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Kyle Keen 
 pkgname=zeromq
-pkgver=4.1.5
+pkgver=4.2.0
 pkgrel=1
 pkgdesc="Fast messaging system built on sockets.  C and C++ bindings.  aka 
0MQ, ZMQ."
 arch=('i686' 'x86_64')
@@ -11,10 +11,10 @@
 makedepends=('asciidoc' 'xmlto')
 options=('staticlibs')
 # "http://download.zeromq.org/$pkgname-$pkgver.tar.gz";
-source=("https://github.com/zeromq/zeromq4-1/releases/download/v$pkgver/zeromq-$pkgver.tar.gz";
-'https://raw.githubusercontent.com/zeromq/cppzmq/014628c/zmq.hpp')
-md5sums=('e7adf4b7dbae09b28cfd10d26cd67fac'
- '56f264ec5604a5576e0d836d89c38c77')
+source=("https://github.com/zeromq/libzmq/releases/download/v$pkgver/zeromq-$pkgver.tar.gz";
+'https://raw.githubusercontent.com/zeromq/cppzmq/8b52a6f/zmq.hpp')
+md5sums=('1fb2595d2a905a9e820c976a1d8348bc'
+ 'c732ee5409f8419323185d8aa44bc54c')
 
 prepare() {
   # Needed for new libsodium


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

2016-12-03 Thread Felix Yan
Date: Sunday, December 4, 2016 @ 04:13:06
  Author: felixonmars
Revision: 197854

archrelease: copy trunk to community-any

Added:
  nodejs-emojione/repos/community-any/PKGBUILD
(from rev 197853, nodejs-emojione/trunk/PKGBUILD)
Deleted:
  nodejs-emojione/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-04 04:12:47 UTC (rev 197853)
+++ PKGBUILD2016-12-04 04:13:06 UTC (rev 197854)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-_npmname=emojione
-pkgname=nodejs-$_npmname
-pkgver=2.2.6
-pkgrel=1
-pkgdesc="A complete set of emojis designed for the web"
-arch=('any')
-url="http://www.emojione.com";
-license=('MIT')
-depends=('nodejs' 'semver')
-makedepends=('npm')
-source=("https://registry.npmjs.org/$_npmname/-/$_npmname-$pkgver.tgz";)
-noextract=($_npmname-$pkgver.tgz)
-sha256sums=('78bbab3ad12a8cdcea06a9699d5ad82dc79a7bf107fb11089b4b2295883aa757')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$_npmname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s "../../../lib/node_modules/$_npmname/LICENSE.md" 
"$pkgdir/usr/share/licenses/$pkgname/"
-
-  # Fix permissions
-  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
-}

Copied: nodejs-emojione/repos/community-any/PKGBUILD (from rev 197853, 
nodejs-emojione/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-04 04:13:06 UTC (rev 197854)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_npmname=emojione
+pkgname=nodejs-$_npmname
+pkgver=2.2.7
+pkgrel=1
+pkgdesc="A complete set of emojis designed for the web"
+arch=('any')
+url="http://www.emojione.com";
+license=('MIT')
+depends=('nodejs')
+makedepends=('npm')
+source=("https://registry.npmjs.org/$_npmname/-/$_npmname-$pkgver.tgz";)
+noextract=($_npmname-$pkgver.tgz)
+sha256sums=('5fe002738e6e276f49ac37783799d2feab99a6131fdedccfa56569d745449ae5')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$_npmname-$pkgver.tgz
+  rm -r "$pkgdir"/usr/etc
+  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s "../../../lib/node_modules/$_npmname/LICENSE.md" 
"$pkgdir/usr/share/licenses/$pkgname/"
+
+  # Fix permissions
+  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
+}


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

2016-12-03 Thread Felix Yan
Date: Sunday, December 4, 2016 @ 04:12:47
  Author: felixonmars
Revision: 197853

upgpkg: nodejs-emojione 2.2.7-1

Modified:
  nodejs-emojione/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-04 01:30:51 UTC (rev 197852)
+++ PKGBUILD2016-12-04 04:12:47 UTC (rev 197853)
@@ -3,17 +3,17 @@
 
 _npmname=emojione
 pkgname=nodejs-$_npmname
-pkgver=2.2.6
+pkgver=2.2.7
 pkgrel=1
 pkgdesc="A complete set of emojis designed for the web"
 arch=('any')
 url="http://www.emojione.com";
 license=('MIT')
-depends=('nodejs' 'semver')
+depends=('nodejs')
 makedepends=('npm')
 source=("https://registry.npmjs.org/$_npmname/-/$_npmname-$pkgver.tgz";)
 noextract=($_npmname-$pkgver.tgz)
-sha256sums=('78bbab3ad12a8cdcea06a9699d5ad82dc79a7bf107fb11089b4b2295883aa757')
+sha256sums=('5fe002738e6e276f49ac37783799d2feab99a6131fdedccfa56569d745449ae5')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$_npmname-$pkgver.tgz


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

2016-12-03 Thread Felix Yan
Date: Sunday, December 4, 2016 @ 03:55:15
  Author: felixonmars
Revision: 282812

archrelease: copy trunk to testing-any

Added:
  python-setuptools/repos/testing-any/PKGBUILD
(from rev 282811, python-setuptools/trunk/PKGBUILD)
Deleted:
  python-setuptools/repos/testing-any/PKGBUILD

--+
 PKGBUILD |  164 ++---
 1 file changed, 82 insertions(+), 82 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-04 03:54:56 UTC (rev 282811)
+++ PKGBUILD2016-12-04 03:55:15 UTC (rev 282812)
@@ -1,82 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez 
-# Maintainer: Felix Yan 
-
-pkgbase=python-setuptools
-pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=30.0.0
-pkgrel=1
-epoch=1
-pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
-arch=('any')
-license=('PSF')
-url="http://pypi.python.org/pypi/setuptools";
-makedepends=('python-packaging' 'python2-packaging' 'python-mock' 
'python2-mock' 'python-appdirs'
- 'python2-appdirs' 'git')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-flake8'
-  'python2-pytest-flake8' 'python-pip' 'git')
-source=("git+https://github.com/pypa/setuptools.git#tag=v$pkgver";)
-sha512sums=('SKIP')
-
-prepare() {
-  # Remove vendored packages
-  rm -rv setuptools/pkg_resources/_vendor
-
-  # Remove post-release tag since we are using stable tags
-  sed -e '/tag_build = .post/d' \
-  -e '/tag_date = 1/d' \
-  -i setuptools/setup.cfg
-
-  cp -a setuptools{,-py2}
-
-  cd "$srcdir"/setuptools
-  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" 
setuptools/command/easy_install.py
-
-  cd "$srcdir"/setuptools-py2
-  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" 
setuptools/command/easy_install.py
-
-  export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
-}
-
-build() {
-  cd "$srcdir"/setuptools
-  python bootstrap.py
-  python setup.py build
-
-  cd "$srcdir"/setuptools-py2
-  python2 bootstrap.py
-  python2 setup.py build
-}
-
-check() {
-  # Workaround UTF-8 tests by setting LC_CTYPE
-  export LC_CTYPE=en_US.utf8
-
-  # https://github.com/pypa/setuptools/pull/810
-  export PYTHONDONTWRITEBYTECODE=1
-
-  cd "$srcdir"/setuptools
-  python setup.py ptr
-
-  cd "$srcdir"/setuptools-py2
-  python2 setup.py ptr
-}
- 
-package_python-setuptools() {
-  depends=('python-packaging' 'python-appdirs')
-  provides=('python-distribute')
-  replaces=('python-distribute')
-
-  cd "$srcdir"/setuptools
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
-}
- 
-package_python2-setuptools() {
-  depends=('python2-packaging' 'python2-appdirs')
-  provides=('python2-distribute')
-  replaces=('python2-distribute')
-
-  cd "$srcdir"/setuptools-py2
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
-  rm "$pkgdir"/usr/bin/easy_install
-}

Copied: python-setuptools/repos/testing-any/PKGBUILD (from rev 282811, 
python-setuptools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-04 03:55:15 UTC (rev 282812)
@@ -0,0 +1,82 @@
+# $Id$
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=30.1.0
+pkgrel=1
+epoch=1
+pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
+arch=('any')
+license=('PSF')
+url="http://pypi.python.org/pypi/setuptools";
+makedepends=('python-packaging' 'python2-packaging' 'python-mock' 
'python2-mock' 'python-appdirs'
+ 'python2-appdirs' 'git')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-flake8'
+  'python2-pytest-flake8' 'python-pip' 'git')
+source=("git+https://github.com/pypa/setuptools.git#tag=v$pkgver";)
+sha512sums=('SKIP')
+
+prepare() {
+  # Remove vendored packages
+  rm -rv setuptools/pkg_resources/_vendor
+
+  # Remove post-release tag since we are using stable tags
+  sed -e '/tag_build = .post/d' \
+  -e '/tag_date = 1/d' \
+  -i setuptools/setup.cfg
+
+  cp -a setuptools{,-py2}
+
+  cd "$srcdir"/setuptools
+  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" 
setuptools/command/easy_install.py
+
+  cd "$srcdir"/setuptools-py2
+  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" 
setuptools/command/easy_install.py
+
+  export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
+}
+
+build() {
+  cd "$srcdir"/setuptools
+  python bootstrap.py
+  python setup.py build
+
+  cd "$srcdir"/setuptools-py2
+  python2 bootstrap.py
+  python2 setup.py build
+}
+
+check() {
+  # Workaround UTF-8 tests by setting LC_CTYPE
+  export LC_CTYPE=en_US.utf8
+
+  # https://github.com/pypa/setuptools/pull/810
+  export PYTHONDONTWRITEBYTECODE=1
+
+  cd "$srcdir"/setupt

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

2016-12-03 Thread Felix Yan
Date: Sunday, December 4, 2016 @ 03:54:56
  Author: felixonmars
Revision: 282811

upgpkg: python-setuptools 1:30.1.0-1

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 22:34:39 UTC (rev 282810)
+++ PKGBUILD2016-12-04 03:54:56 UTC (rev 282811)
@@ -4,7 +4,7 @@
 
 pkgbase=python-setuptools
 pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=30.0.0
+pkgver=30.1.0
 pkgrel=1
 epoch=1
 pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"


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

2016-12-03 Thread Kyle Keen
Date: Sunday, December 4, 2016 @ 01:30:51
  Author: kkeen
Revision: 197852

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |   94 ++---
 1 file changed, 47 insertions(+), 47 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-04 01:30:22 UTC (rev 197851)
+++ PKGBUILD2016-12-04 01:30:51 UTC (rev 197852)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Jelle van der Waa 
-# Contributor: Pierre Chapuis 
-# Contributor: Stefano Esposito 
-
-pkgbase=python-irc
-pkgname=('python-irc' 'python2-irc')
-pkgver=15.0.4
-pkgrel=1
-pkgdesc="IRC (Internet Relay Chat) protocol client library for Python"
-depends=('python-six' 'python-pytz' 'python-more-itertools' 'python-jaraco')
-makedepends=('python-setuptools' 'python2-setuptools'
-'python2-jaraco' 'python2-more-itertools' 'python2-pytz')
-checkdepends=('python-pytest' 'python2-pytest')
-arch=('any')
-url="http://pypi.python.org/pypi/irc";
-license=('LGPL')
-source=("https://files.pythonhosted.org/packages/source/i/irc/irc-$pkgver.tar.gz";)
-md5sums=('facb018e1866f825f8085ecaf5ef3a96')
-
-build() {
-  cd "$srcdir"
-  cp -a "irc-$pkgver" "irc2-$pkgver"
-}
-
-package_python-irc() {
-  cd "$srcdir/irc-$pkgver"
-  export LC_ALL=en_US.UTF-8
-  python3 setup.py install --root="$pkgdir" --optimize=0
-}
-
-package_python2-irc() {
-  depends=('python2-six' 'python2-pytz' 'python2-more-itertools' 
'python2-jaraco')
-
-  cd "$srcdir/irc2-$pkgver"
-  python2 setup.py install --root="$pkgdir" --optimize=0
-}
-
-check() {
-  cd "$srcdir/irc-$pkgver"
-  export LC_ALL=en_US.UTF-8
-  python3 setup.py test 
-
-  cd "$srcdir/irc2-$pkgver"
-  python2 setup.py test 
-}

Copied: python-irc/repos/community-any/PKGBUILD (from rev 197851, 
python-irc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-04 01:30:51 UTC (rev 197852)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Jelle van der Waa 
+# Contributor: Pierre Chapuis 
+# Contributor: Stefano Esposito 
+
+pkgbase=python-irc
+pkgname=('python-irc' 'python2-irc')
+pkgver=15.0.5
+pkgrel=1
+pkgdesc="IRC (Internet Relay Chat) protocol client library for Python"
+depends=('python-six' 'python-pytz' 'python-more-itertools' 'python-jaraco')
+makedepends=('python-setuptools' 'python2-setuptools'
+'python2-jaraco' 'python2-more-itertools' 'python2-pytz')
+checkdepends=('python-pytest' 'python2-pytest')
+arch=('any')
+url="http://pypi.python.org/pypi/irc";
+license=('LGPL')
+source=("https://files.pythonhosted.org/packages/source/i/irc/irc-$pkgver.tar.gz";)
+md5sums=('c89a6a68946fe522f2b75ee417599af0')
+
+build() {
+  cd "$srcdir"
+  cp -a "irc-$pkgver" "irc2-$pkgver"
+}
+
+package_python-irc() {
+  cd "$srcdir/irc-$pkgver"
+  export LC_ALL=en_US.UTF-8
+  python3 setup.py install --root="$pkgdir" --optimize=0
+}
+
+package_python2-irc() {
+  depends=('python2-six' 'python2-pytz' 'python2-more-itertools' 
'python2-jaraco')
+
+  cd "$srcdir/irc2-$pkgver"
+  python2 setup.py install --root="$pkgdir" --optimize=0
+}
+
+check() {
+  cd "$srcdir/irc-$pkgver"
+  export LC_ALL=en_US.UTF-8
+  python3 setup.py test 
+
+  cd "$srcdir/irc2-$pkgver"
+  python2 setup.py test 
+}


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

2016-12-03 Thread Kyle Keen
Date: Sunday, December 4, 2016 @ 01:30:22
  Author: kkeen
Revision: 197851

upgpkg: python-irc 15.0.5-1

Modified:
  python-irc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-04 01:21:17 UTC (rev 197850)
+++ PKGBUILD2016-12-04 01:30:22 UTC (rev 197851)
@@ -6,7 +6,7 @@
 
 pkgbase=python-irc
 pkgname=('python-irc' 'python2-irc')
-pkgver=15.0.4
+pkgver=15.0.5
 pkgrel=1
 pkgdesc="IRC (Internet Relay Chat) protocol client library for Python"
 depends=('python-six' 'python-pytz' 'python-more-itertools' 'python-jaraco')
@@ -17,7 +17,7 @@
 url="http://pypi.python.org/pypi/irc";
 license=('LGPL')
 
source=("https://files.pythonhosted.org/packages/source/i/irc/irc-$pkgver.tar.gz";)
-md5sums=('facb018e1866f825f8085ecaf5ef3a96')
+md5sums=('c89a6a68946fe522f2b75ee417599af0')
 
 build() {
   cd "$srcdir"


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

2016-12-03 Thread Kyle Keen
Date: Sunday, December 4, 2016 @ 01:21:17
  Author: kkeen
Revision: 197850

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-04 01:21:01 UTC (rev 197849)
+++ PKGBUILD2016-12-04 01:21:17 UTC (rev 197850)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-
-pkgbase=python-ipykernel
-pkgname=(python-ipykernel python2-ipykernel)
-pkgver=4.5.1
-pkgrel=1
-pkgdesc="The ipython kernel for Jupyter"
-arch=('any')
-url="https://pypi.python.org/pypi/ipykernel";
-license=('BSD')
-depends=('python-traitlets' 'python-tornado' 'ipython')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("$pkgbase-$pkgver.tgz::https://github.com/ipython/ipykernel/archive/$pkgver.tar.gz";)
-md5sums=('c11f1c99b52b004120592875f7c29c5c')
-
-# jupyter -> python-jupyter_client  (add once dep cycle is resolved)
-# ipython2-notebook -> python2-jupyter_client (add once dep cycle is resolved)
-
-prepare() {
-  cd "$srcdir"
-  cp -r ipykernel-$pkgver python2-ipykernel-$pkgver
-}
-
-package_python-ipykernel() {
-  cd "$srcdir/ipykernel-$pkgver"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir"
-  install -Dm644 "ipykernel-$pkgver/COPYING.md" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-ipykernel() {
-  depends=('python2-traitlets' 'python2-tornado' 'ipython2')
-
-  cd "$srcdir/python2-ipykernel-$pkgver"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir"
-  install -d "$pkgdir/usr/share/jupyter/kernels/python2"
-  echo '{"display_name": "Python 2", "language": "python2", "argv": 
["python2", "-m", "ipykernel", "-f", "{connection_file}"],"codemirror_mode": 
{"version": 2, "name": "ipython2"}}' > 
"$pkgdir/usr/share/jupyter/kernels/python2/kernel.json"
-
-  install -Dm644 "ipykernel-$pkgver/COPYING.md" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-

Copied: python-ipykernel/repos/community-any/PKGBUILD (from rev 197849, 
python-ipykernel/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-04 01:21:17 UTC (rev 197850)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Kyle Keen 
+
+pkgbase=python-ipykernel
+pkgname=(python-ipykernel python2-ipykernel)
+pkgver=4.5.2
+pkgrel=1
+pkgdesc="The ipython kernel for Jupyter"
+arch=('any')
+url="https://pypi.python.org/pypi/ipykernel";
+license=('BSD')
+depends=('python-traitlets' 'python-tornado' 'ipython')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("$pkgbase-$pkgver.tgz::https://github.com/ipython/ipykernel/archive/$pkgver.tar.gz";)
+md5sums=('997939764262b8d2194780702cfbe1d3')
+
+# jupyter -> python-jupyter_client  (add once dep cycle is resolved)
+# ipython2-notebook -> python2-jupyter_client (add once dep cycle is resolved)
+
+prepare() {
+  cd "$srcdir"
+  cp -r ipykernel-$pkgver python2-ipykernel-$pkgver
+}
+
+package_python-ipykernel() {
+  cd "$srcdir/ipykernel-$pkgver"
+  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
+
+  cd "$srcdir"
+  install -Dm644 "ipykernel-$pkgver/COPYING.md" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-ipykernel() {
+  depends=('python2-traitlets' 'python2-tornado' 'ipython2')
+
+  cd "$srcdir/python2-ipykernel-$pkgver"
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
+
+  cd "$srcdir"
+  install -d "$pkgdir/usr/share/jupyter/kernels/python2"
+  echo '{"display_name": "Python 2", "language": "python2", "argv": 
["python2", "-m", "ipykernel", "-f", "{connection_file}"],"codemirror_mode": 
{"version": 2, "name": "ipython2"}}' > 
"$pkgdir/usr/share/jupyter/kernels/python2/kernel.json"
+
+  install -Dm644 "ipykernel-$pkgver/COPYING.md" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+


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

2016-12-03 Thread Kyle Keen
Date: Sunday, December 4, 2016 @ 01:21:01
  Author: kkeen
Revision: 197849

upgpkg: python-ipykernel 4.5.2-1

Modified:
  python-ipykernel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-04 01:15:14 UTC (rev 197848)
+++ PKGBUILD2016-12-04 01:21:01 UTC (rev 197849)
@@ -3,7 +3,7 @@
 
 pkgbase=python-ipykernel
 pkgname=(python-ipykernel python2-ipykernel)
-pkgver=4.5.1
+pkgver=4.5.2
 pkgrel=1
 pkgdesc="The ipython kernel for Jupyter"
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('python-traitlets' 'python-tornado' 'ipython')
 makedepends=('python-setuptools' 'python2-setuptools')
 
source=("$pkgbase-$pkgver.tgz::https://github.com/ipython/ipykernel/archive/$pkgver.tar.gz";)
-md5sums=('c11f1c99b52b004120592875f7c29c5c')
+md5sums=('997939764262b8d2194780702cfbe1d3')
 
 # jupyter -> python-jupyter_client  (add once dep cycle is resolved)
 # ipython2-notebook -> python2-jupyter_client (add once dep cycle is resolved)


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

2016-12-03 Thread Kyle Keen
Date: Sunday, December 4, 2016 @ 01:15:14
  Author: kkeen
Revision: 197848

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-04 01:14:58 UTC (rev 197847)
+++ PKGBUILD2016-12-04 01:15:14 UTC (rev 197848)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-
-pkgbase=python-jupyter_core
-pkgname=(python-jupyter_core python2-jupyter_core)
-pkgver=4.2.0
-pkgrel=1
-pkgdesc="Jupyter core package. A base package on which Jupyter projects rely."
-arch=('any')
-url="https://pypi.python.org/pypi/jupyter_core";
-license=('BSD')
-depends=('python-traitlets')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("https://github.com/jupyter/jupyter_core/archive/$pkgver.tar.gz";)
-md5sums=('25c1fc68b1b73c0a2e616c76f02bf061')
-
-prepare() {
-  cd "$srcdir"
-  cp -r jupyter_core-$pkgver python2-jupyter_core-$pkgver
-
-  cd python2-jupyter_core-$pkgver
-  sed -i 's/env python$/&2/' jupyter_core/troubleshoot.py
-}
-
-build() {
-  cd "$srcdir"
-}
-
-package_python-jupyter_core() {
-  cd "$srcdir/jupyter_core-$pkgver"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-  install -Dm644 COPYING.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-jupyter_core() {
-  # todo: figure out how to remove this, it probably shouldn't be used
-  depends=('python2-traitlets')
-
-  cd "$srcdir/python2-jupyter_core-$pkgver"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-  install -Dm644 COPYING.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  cd "$pkgdir/usr"
-  rm bin/jupyter
-  rm bin/jupyter-migrate
-  rmdir bin
-}
-

Copied: python-jupyter_core/repos/community-any/PKGBUILD (from rev 197847, 
python-jupyter_core/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-04 01:15:14 UTC (rev 197848)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Kyle Keen 
+
+pkgbase=python-jupyter_core
+pkgname=(python-jupyter_core python2-jupyter_core)
+pkgver=4.2.1
+pkgrel=1
+pkgdesc="Jupyter core package. A base package on which Jupyter projects rely."
+arch=('any')
+url="https://pypi.python.org/pypi/jupyter_core";
+license=('BSD')
+depends=('python-traitlets')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("$pkgname-$pkgver.tgz::https://github.com/jupyter/jupyter_core/archive/$pkgver.tar.gz";)
+md5sums=('ca0fd9a9e84daee852c47e3e0d0a13a0')
+
+prepare() {
+  cd "$srcdir"
+  cp -r jupyter_core-$pkgver python2-jupyter_core-$pkgver
+
+  cd python2-jupyter_core-$pkgver
+  sed -i 's/env python$/&2/' jupyter_core/troubleshoot.py
+}
+
+build() {
+  cd "$srcdir"
+}
+
+package_python-jupyter_core() {
+  cd "$srcdir/jupyter_core-$pkgver"
+  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
+  install -Dm644 COPYING.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-jupyter_core() {
+  # todo: figure out how to remove this, it probably shouldn't be used
+  depends=('python2-traitlets')
+
+  cd "$srcdir/python2-jupyter_core-$pkgver"
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
+  install -Dm644 COPYING.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  cd "$pkgdir/usr"
+  rm bin/jupyter
+  rm bin/jupyter-migrate
+  rmdir bin
+}
+


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

2016-12-03 Thread Kyle Keen
Date: Sunday, December 4, 2016 @ 01:14:58
  Author: kkeen
Revision: 197847

upgpkg: python-jupyter_core 4.2.1-1

Modified:
  python-jupyter_core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-04 00:58:19 UTC (rev 197846)
+++ PKGBUILD2016-12-04 01:14:58 UTC (rev 197847)
@@ -3,7 +3,7 @@
 
 pkgbase=python-jupyter_core
 pkgname=(python-jupyter_core python2-jupyter_core)
-pkgver=4.2.0
+pkgver=4.2.1
 pkgrel=1
 pkgdesc="Jupyter core package. A base package on which Jupyter projects rely."
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('python-traitlets')
 makedepends=('python-setuptools' 'python2-setuptools')
 
source=("$pkgname-$pkgver.tgz::https://github.com/jupyter/jupyter_core/archive/$pkgver.tar.gz";)
-md5sums=('25c1fc68b1b73c0a2e616c76f02bf061')
+md5sums=('ca0fd9a9e84daee852c47e3e0d0a13a0')
 
 prepare() {
   cd "$srcdir"


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

2016-12-03 Thread Kyle Keen
Date: Sunday, December 4, 2016 @ 00:58:03
  Author: kkeen
Revision: 197845

upgpkg: jupyter-nbformat 4.2.0-1

Modified:
  jupyter-nbformat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-04 00:47:47 UTC (rev 197844)
+++ PKGBUILD2016-12-04 00:58:03 UTC (rev 197845)
@@ -2,7 +2,7 @@
 # Maintainer: Kyle Keen 
 
 pkgname=jupyter-nbformat
-pkgver=4.1.0
+pkgver=4.2.0
 pkgrel=1
 pkgdesc="The base implementation of the Jupyter Notebook format and Python 
APIs for working with notebooks"
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('python-traitlets' 'python-jupyter_core' 'python-jsonschema')
 makedepends=('python-setuptools')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/jupyter/nbformat/archive/$pkgver.tar.gz";)
-md5sums=('826b4fc4ec42553b20144f53b57b4e7b')
+md5sums=('60a1e83350f76e5eeb6fc65f173bde75')
 
 build() {
   cd "$srcdir"


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

2016-12-03 Thread Kyle Keen
Date: Sunday, December 4, 2016 @ 00:58:19
  Author: kkeen
Revision: 197846

archrelease: copy trunk to community-any

Added:
  jupyter-nbformat/repos/community-any/PKGBUILD
(from rev 197845, jupyter-nbformat/trunk/PKGBUILD)
Deleted:
  jupyter-nbformat/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-04 00:58:03 UTC (rev 197845)
+++ PKGBUILD2016-12-04 00:58:19 UTC (rev 197846)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-
-pkgname=jupyter-nbformat
-pkgver=4.1.0
-pkgrel=1
-pkgdesc="The base implementation of the Jupyter Notebook format and Python 
APIs for working with notebooks"
-arch=('any')
-url="https://pypi.python.org/pypi/nbformat";
-license=('BSD')
-depends=('python-traitlets' 'python-jupyter_core' 'python-jsonschema')
-makedepends=('python-setuptools')
-source=("https://github.com/jupyter/nbformat/archive/$pkgver.tar.gz";)
-md5sums=('826b4fc4ec42553b20144f53b57b4e7b')
-
-build() {
-  cd "$srcdir"
-}
-
-package() {
-  cd "$srcdir/nbformat-$pkgver"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-  install -Dm644 COPYING.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-

Copied: jupyter-nbformat/repos/community-any/PKGBUILD (from rev 197845, 
jupyter-nbformat/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-04 00:58:19 UTC (rev 197846)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Kyle Keen 
+
+pkgname=jupyter-nbformat
+pkgver=4.2.0
+pkgrel=1
+pkgdesc="The base implementation of the Jupyter Notebook format and Python 
APIs for working with notebooks"
+arch=('any')
+url="https://pypi.python.org/pypi/nbformat";
+license=('BSD')
+depends=('python-traitlets' 'python-jupyter_core' 'python-jsonschema')
+makedepends=('python-setuptools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/jupyter/nbformat/archive/$pkgver.tar.gz";)
+md5sums=('60a1e83350f76e5eeb6fc65f173bde75')
+
+build() {
+  cd "$srcdir"
+}
+
+package() {
+  cd "$srcdir/nbformat-$pkgver"
+  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
+  install -Dm644 COPYING.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+


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

2016-12-03 Thread Kyle Keen
Date: Sunday, December 4, 2016 @ 00:47:47
  Author: kkeen
Revision: 197844

archrelease: copy trunk to community-any

Added:
  python-more-itertools/repos/community-any/PKGBUILD
(from rev 197843, python-more-itertools/trunk/PKGBUILD)
Deleted:
  python-more-itertools/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-04 00:47:25 UTC (rev 197843)
+++ PKGBUILD2016-12-04 00:47:47 UTC (rev 197844)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Germán Osella Massa 
-
-pkgbase=python-more-itertools
-pkgname=('python-more-itertools' 'python2-more-itertools')
-pkgver=2.3
-pkgrel=1
-pkgdesc='More routines for operating on iterables, beyond itertools'
-arch=('any')
-url='https://github.com/erikrose/more-itertools'
-#url='https://pypi.python.org/pypi/more-itertools'
-license=('MIT')
-depends=('python')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("https://files.pythonhosted.org/packages/source/m/more-itertools/more-itertools-$pkgver.tar.gz";)
-md5sums=('b59419aba22451f6a34ce8dbfe78d1ca')
-
-prepare() {
-  cp -R "more-itertools-$pkgver" "py2-more-itertools-$pkgver"
-}
-
-package_python-more-itertools() {
-  cd "$srcdir/more-itertools-$pkgver"
-  python3 setup.py install --root="$pkgdir/" --optimize=0
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-more-itertools() {
-  depends=('python2')
-  cd "$srcdir/py2-more-itertools-$pkgver"
-  python2 setup.py install --root="$pkgdir/" --optimize=0
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-more-itertools/repos/community-any/PKGBUILD (from rev 197843, 
python-more-itertools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-04 00:47:47 UTC (rev 197844)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Germán Osella Massa 
+
+pkgbase=python-more-itertools
+pkgname=('python-more-itertools' 'python2-more-itertools')
+pkgver=2.4.1
+pkgrel=1
+pkgdesc='More routines for operating on iterables, beyond itertools'
+arch=('any')
+url='https://github.com/erikrose/more-itertools'
+#url='https://pypi.python.org/pypi/more-itertools'
+license=('MIT')
+depends=('python')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("https://files.pythonhosted.org/packages/source/m/more-itertools/more-itertools-$pkgver.tar.gz";)
+md5sums=('f6bbfe38a6d0ee1a743adb2c1a4fb6fc')
+
+prepare() {
+  cp -R "more-itertools-$pkgver" "py2-more-itertools-$pkgver"
+}
+
+package_python-more-itertools() {
+  cd "$srcdir/more-itertools-$pkgver"
+  python3 setup.py install --root="$pkgdir/" --optimize=0
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-more-itertools() {
+  depends=('python2')
+  cd "$srcdir/py2-more-itertools-$pkgver"
+  python2 setup.py install --root="$pkgdir/" --optimize=0
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-12-03 Thread Kyle Keen
Date: Sunday, December 4, 2016 @ 00:47:25
  Author: kkeen
Revision: 197843

upgpkg: python-more-itertools 2.4.1-1

Modified:
  python-more-itertools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 20:34:48 UTC (rev 197842)
+++ PKGBUILD2016-12-04 00:47:25 UTC (rev 197843)
@@ -4,7 +4,7 @@
 
 pkgbase=python-more-itertools
 pkgname=('python-more-itertools' 'python2-more-itertools')
-pkgver=2.3
+pkgver=2.4.1
 pkgrel=1
 pkgdesc='More routines for operating on iterables, beyond itertools'
 arch=('any')
@@ -14,7 +14,7 @@
 depends=('python')
 makedepends=('python-setuptools' 'python2-setuptools')
 
source=("https://files.pythonhosted.org/packages/source/m/more-itertools/more-itertools-$pkgver.tar.gz";)
-md5sums=('b59419aba22451f6a34ce8dbfe78d1ca')
+md5sums=('f6bbfe38a6d0ee1a743adb2c1a4fb6fc')
 
 prepare() {
   cp -R "more-itertools-$pkgver" "py2-more-itertools-$pkgver"


[arch-commits] Commit in kalzium/kde-unstable (PKGBUILD)

2016-12-03 Thread Antonio Rojas
Date: Saturday, December 3, 2016 @ 22:33:55
  Author: arojas
Revision: 282809

avogadrolibs 1.90 rebuild

Modified:
  kalzium/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 22:23:00 UTC (rev 282808)
+++ PKGBUILD2016-12-03 22:33:55 UTC (rev 282809)
@@ -4,7 +4,7 @@
 
 pkgname=kalzium
 pkgver=16.11.90
-pkgrel=1
+pkgrel=2
 pkgdesc="Periodic Table of Elements"
 url="http://kde.org/applications/education/kalzium/";
 arch=(i686 x86_64)


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

2016-12-03 Thread Antonio Rojas
Date: Saturday, December 3, 2016 @ 22:34:39
  Author: arojas
Revision: 282810

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

Added:
  kalzium/repos/kde-unstable-i686/PKGBUILD
(from rev 282809, kalzium/kde-unstable/PKGBUILD)
  kalzium/repos/kde-unstable-x86_64/PKGBUILD
(from rev 282809, kalzium/kde-unstable/PKGBUILD)
Deleted:
  kalzium/repos/kde-unstable-i686/PKGBUILD
  kalzium/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: kde-unstable-i686/PKGBUILD
===
--- kde-unstable-i686/PKGBUILD  2016-12-03 22:33:55 UTC (rev 282809)
+++ kde-unstable-i686/PKGBUILD  2016-12-03 22:34:39 UTC (rev 282810)
@@ -1,39 +0,0 @@
-# $Id: PKGBUILD 281258 2016-11-18 20:36:27Z arojas $
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgname=kalzium
-pkgver=16.11.90
-pkgrel=1
-pkgdesc="Periodic Table of Elements"
-url="http://kde.org/applications/education/kalzium/";
-arch=(i686 x86_64)
-license=(GPL LGPL FDL)
-depends=(hicolor-icon-theme khtml kdelibs4support knewstuff kplotting 
avogadrolibs)
-makedepends=(extra-cmake-modules kdoctools kdesignerplugin python eigen) # 
ocaml facile
-conflicts=(kdeedu-kalzium)
-replaces=(kdeedu-kalzium)
-groups=(kde-applications kdeedu)
-source=("http://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha1sums=('eaaa276855ff7b9e19c9e9c94cb2ace06b07fbfb'
-  'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

-
-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/kde-unstable-i686/PKGBUILD (from rev 282809, 
kalzium/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-12-03 22:34:39 UTC (rev 282810)
@@ -0,0 +1,39 @@
+# $Id: PKGBUILD 281258 2016-11-18 20:36:27Z arojas $
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=kalzium
+pkgver=16.11.90
+pkgrel=2
+pkgdesc="Periodic Table of Elements"
+url="http://kde.org/applications/education/kalzium/";
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+depends=(hicolor-icon-theme khtml kdelibs4support knewstuff kplotting 
avogadrolibs)
+makedepends=(extra-cmake-modules kdoctools kdesignerplugin python eigen) # 
ocaml facile
+conflicts=(kdeedu-kalzium)
+replaces=(kdeedu-kalzium)
+groups=(kde-applications kdeedu)
+source=("http://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha1sums=('eaaa276855ff7b9e19c9e9c94cb2ace06b07fbfb'
+  'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

+
+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
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===
--- kde-unstable-x86_64/PKGBUILD2016-12-03 22:33:55 UTC (rev 282809)
+++ kde-unstable-x86_64/PKGBUILD2016-12-03 22:34:39 UTC (rev 282810)
@@ -1,39 +0,0 @@
-# $Id: PKGBUILD 281258 2016-11-18 20:36:27Z arojas $
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgname=kalzium
-pkgver=16.11.90
-pkgrel=1
-pkgdesc="Periodic Table of Elements"
-url="http://kde.org/applications/education/kalzium/";
-arch=(i686 x86_64)
-license=(GPL LGPL FDL)
-depends=(hicolor-icon-theme khtml kdelibs4support knewstuff kplotting 
avogadrolibs)
-makedepends=(extra-cmake-modules kdoctools kdesignerplugin python eigen) # 
ocaml facile
-conflicts=(kdeedu-kalzium)
-replaces=(kdeedu-kalzium)
-groups=(kde-applications kdeedu)
-source=("http://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha1sums=('eaaa276855ff7b9e19c9e9c94cb2ace06b07fbfb'
-  'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

-
-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/kde-unstable-x86_64/PKGBUILD (from rev 282809, 
kalzium/kde-unstable/PKGB

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

2016-12-03 Thread Antonio Rojas
Date: Saturday, December 3, 2016 @ 22:23:00
  Author: arojas
Revision: 282808

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-12-03 22:21:54 UTC (rev 282807)
+++ extra-i686/PKGBUILD 2016-12-03 22:23:00 UTC (rev 282808)
@@ -1,40 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=avogadrolibs
-pkgver=0.9.0
-pkgrel=2
-pkgdesc="An advanced molecular editor"
-arch=(i686 x86_64)
-url="http://www.openchemistry.org/";
-license=(custom)
-depends=(openbabel qt5-base glew)
-makedepends=(cmake eigen python2 boost)
-source=("http://downloads.sourceforge.net/project/avogadro/avogadro2/$pkgver/$pkgname-$pkgver.tar.gz";
-
avogadrolibs-gcc6.patch::"https://github.com/OpenChemistry/molequeue/commit/5d57279d.patch";)
-md5sums=('af5c0a0c782cfa528d1c203840c69cf6'
- 'd57372453ba647ea741b0efb7e50dc50')
-
-prepare() {
-  mkdir -p build
-
-# Fix GCC6 detection
-  cd $pkgname-$pkgver
-  patch -p1 -i ../avogadrolibs-gcc6.patch
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_SHARED_LIBS=ON \
--DUSE_QT=ON \
--DUSE_OPENGL=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-  install -Dm644 "$srcdir"/$pkgname-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: avogadrolibs/repos/extra-i686/PKGBUILD (from rev 282807, 
avogadrolibs/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-12-03 22:23:00 UTC (rev 282808)
@@ -0,0 +1,35 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=avogadrolibs
+pkgver=1.90.0
+pkgrel=1
+pkgdesc="An advanced molecular editor"
+arch=(i686 x86_64)
+url="http://www.openchemistry.org/";
+license=(custom)
+depends=(molequeue openbabel glew spglib)
+makedepends=(cmake eigen python2 boost)
+source=($pkgname-$pkgver.tar.gz::"https://github.com/OpenChemistry/avogadrolibs/archive/$pkgver.tar.gz";)
+md5sums=('f2b7014f48da5b2a72d49c01dafaf225')
+
+prepare() {
+  mkdir -p build
+
+# Find spglib
+  sed -e 's|NAMES spglib|NAMES spglib symspg|' -i 
$pkgname-$pkgver/cmake/FindSpglib.cmake
+
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-12-03 22:21:54 UTC (rev 282807)
+++ extra-x86_64/PKGBUILD   2016-12-03 22:23:00 UTC (rev 282808)
@@ -1,40 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=avogadrolibs
-pkgver=0.9.0
-pkgrel=2
-pkgdesc="An advanced molecular editor"
-arch=(i686 x86_64)
-url="http://www.openchemistry.org/";
-license=(custom)
-depends=(openbabel qt5-base glew)
-makedepends=(cmake eigen python2 boost)
-source=("http://downloads.sourceforge.net/project/avogadro/avogadro2/$pkgver/$pkgname-$pkgver.tar.gz";
-
avogadrolibs-gcc6.patch::"https://github.com/OpenChemistry/molequeue/commit/5d57279d.patch";)
-md5sums=('af5c0a0c782cfa528d1c203840c69cf6'
- 'd57372453ba647ea741b0efb7e50dc50')
-
-prepare() {
-  mkdir -p build
-
-# Fix GCC6 detection
-  cd $pkgname-$pkgver
-  patch -p1 -i ../avogadrolibs-gcc6.patch
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_SHARED_LIBS=ON \
--DUSE_QT=ON \
--DUSE_OPENGL=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-  install -Dm644 "$srcdir"/$pkgname-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: avogadrolibs/repos/extra-x86_64/PKGBUILD (from rev 282807, 
avogadrolibs/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-12-03 22:23:00 UTC (rev 282808)
@@ -0,0 +1,35 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=avogadrolibs
+pkgver=1.90.0
+pkgrel=1
+pkgdesc="An advanced molecular editor"
+arch=(i686 x86_64)
+url="http://www.openchemistry.org/";
+license=(cust

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

2016-12-03 Thread Antonio Rojas
Date: Saturday, December 3, 2016 @ 22:21:54
  Author: arojas
Revision: 282807

Update to 1.90

Modified:
  avogadrolibs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 22:10:07 UTC (rev 282806)
+++ PKGBUILD2016-12-03 22:21:54 UTC (rev 282807)
@@ -1,25 +1,23 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=avogadrolibs
-pkgver=0.9.0
-pkgrel=2
+pkgver=1.90.0
+pkgrel=1
 pkgdesc="An advanced molecular editor"
 arch=(i686 x86_64)
 url="http://www.openchemistry.org/";
 license=(custom)
-depends=(openbabel qt5-base glew)
+depends=(molequeue openbabel glew spglib)
 makedepends=(cmake eigen python2 boost)
-source=("http://downloads.sourceforge.net/project/avogadro/avogadro2/$pkgver/$pkgname-$pkgver.tar.gz";
-
avogadrolibs-gcc6.patch::"https://github.com/OpenChemistry/molequeue/commit/5d57279d.patch";)
-md5sums=('af5c0a0c782cfa528d1c203840c69cf6'
- 'd57372453ba647ea741b0efb7e50dc50')
+source=($pkgname-$pkgver.tar.gz::"https://github.com/OpenChemistry/avogadrolibs/archive/$pkgver.tar.gz";)
+md5sums=('f2b7014f48da5b2a72d49c01dafaf225')
 
 prepare() {
   mkdir -p build
 
-# Fix GCC6 detection
-  cd $pkgname-$pkgver
-  patch -p1 -i ../avogadrolibs-gcc6.patch
+# Find spglib
+  sed -e 's|NAMES spglib|NAMES spglib symspg|' -i 
$pkgname-$pkgver/cmake/FindSpglib.cmake
+
 }
 
 build() {
@@ -26,10 +24,7 @@
   cd build
   cmake ../$pkgname-$pkgver \
 -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_SHARED_LIBS=ON \
--DUSE_QT=ON \
--DUSE_OPENGL=ON
+-DCMAKE_INSTALL_LIBDIR=lib
   make
 }
 


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

2016-12-03 Thread Antonio Rojas
Date: Saturday, December 3, 2016 @ 22:10:07
  Author: arojas
Revision: 282806

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

Added:
  spglib/repos/
  spglib/repos/extra-i686/
  spglib/repos/extra-i686/PKGBUILD
(from rev 282805, spglib/trunk/PKGBUILD)
  spglib/repos/extra-x86_64/
  spglib/repos/extra-x86_64/PKGBUILD
(from rev 282805, spglib/trunk/PKGBUILD)

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

Copied: spglib/repos/extra-i686/PKGBUILD (from rev 282805, 
spglib/trunk/PKGBUILD)
===
--- repos/extra-i686/PKGBUILD   (rev 0)
+++ repos/extra-i686/PKGBUILD   2016-12-03 22:10:07 UTC (rev 282806)
@@ -0,0 +1,27 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=spglib
+pkgver=1.9.8
+pkgrel=1
+pkgdesc="C library for finding and handling crystal symmetries"
+arch=(i686 x86_64)
+url="http://spglib.sf.net/";
+license=(custom)
+depends=(glibc)
+makedepends=()
+source=($pkgname-$pkgver.tar.gz::"https://github.com/atztogo/spglib/archive/v$pkgver.tar.gz";)
+md5sums=('d576c28820daa9da18fc085675c67bcb')
+
+build() {
+  cd $pkgname-$pkgver
+  touch INSTALL NEWS README AUTHORS
+  autoreconf -vi
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: spglib/repos/extra-x86_64/PKGBUILD (from rev 282805, 
spglib/trunk/PKGBUILD)
===
--- repos/extra-x86_64/PKGBUILD (rev 0)
+++ repos/extra-x86_64/PKGBUILD 2016-12-03 22:10:07 UTC (rev 282806)
@@ -0,0 +1,27 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=spglib
+pkgver=1.9.8
+pkgrel=1
+pkgdesc="C library for finding and handling crystal symmetries"
+arch=(i686 x86_64)
+url="http://spglib.sf.net/";
+license=(custom)
+depends=(glibc)
+makedepends=()
+source=($pkgname-$pkgver.tar.gz::"https://github.com/atztogo/spglib/archive/v$pkgver.tar.gz";)
+md5sums=('d576c28820daa9da18fc085675c67bcb')
+
+build() {
+  cd $pkgname-$pkgver
+  touch INSTALL NEWS README AUTHORS
+  autoreconf -vi
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2016-12-03 Thread Antonio Rojas
Date: Saturday, December 3, 2016 @ 22:09:39
  Author: arojas
Revision: 282805

Add spglib, new avogadrolibs dependency

Added:
  spglib/
  spglib/trunk/
  spglib/trunk/PKGBUILD

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

Added: spglib/trunk/PKGBUILD
===
--- spglib/trunk/PKGBUILD   (rev 0)
+++ spglib/trunk/PKGBUILD   2016-12-03 22:09:39 UTC (rev 282805)
@@ -0,0 +1,27 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=spglib
+pkgver=1.9.8
+pkgrel=1
+pkgdesc="C library for finding and handling crystal symmetries"
+arch=(i686 x86_64)
+url="http://spglib.sf.net/";
+license=(custom)
+depends=(glibc)
+makedepends=()
+source=($pkgname-$pkgver.tar.gz::"https://github.com/atztogo/spglib/archive/v$pkgver.tar.gz";)
+md5sums=('d576c28820daa9da18fc085675c67bcb')
+
+build() {
+  cd $pkgname-$pkgver
+  touch INSTALL NEWS README AUTHORS
+  autoreconf -vi
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2016-12-03 Thread Antonio Rojas
Date: Saturday, December 3, 2016 @ 21:56:47
  Author: arojas
Revision: 282804

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

Added:
  molequeue/repos/
  molequeue/repos/extra-i686/
  molequeue/repos/extra-i686/PKGBUILD
(from rev 282803, molequeue/trunk/PKGBUILD)
  molequeue/repos/extra-x86_64/
  molequeue/repos/extra-x86_64/PKGBUILD
(from rev 282803, molequeue/trunk/PKGBUILD)

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

Copied: molequeue/repos/extra-i686/PKGBUILD (from rev 282803, 
molequeue/trunk/PKGBUILD)
===
--- repos/extra-i686/PKGBUILD   (rev 0)
+++ repos/extra-i686/PKGBUILD   2016-12-03 21:56:47 UTC (rev 282804)
@@ -0,0 +1,36 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=molequeue
+pkgver=0.8.0
+pkgrel=1
+pkgdesc="Desktop integration of high performance computing resources"
+arch=(i686 x86_64)
+url="http://www.openchemistry.org/";
+license=(custom)
+depends=(qt5-base)
+makedepends=(cmake)
+source=($pkgname-$pkgver.tar.gz::"https://github.com/OpenChemistry/molequeue/archive/$pkgver.tar.gz";
+
molequeue-gcc6.patch::"https://github.com/OpenChemistry/molequeue/commit/a983ff61.patch";)
+md5sums=('2f49f3e28965af6fec8a6df37d8ec697'
+ 'd57372453ba647ea741b0efb7e50dc50')
+
+prepare() {
+  mkdir -p build
+# Fix GCC6 detection
+  cd $pkgname-$pkgver
+  patch -p1 -i ../molequeue-gcc6.patch
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: molequeue/repos/extra-x86_64/PKGBUILD (from rev 282803, 
molequeue/trunk/PKGBUILD)
===
--- repos/extra-x86_64/PKGBUILD (rev 0)
+++ repos/extra-x86_64/PKGBUILD 2016-12-03 21:56:47 UTC (rev 282804)
@@ -0,0 +1,36 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=molequeue
+pkgver=0.8.0
+pkgrel=1
+pkgdesc="Desktop integration of high performance computing resources"
+arch=(i686 x86_64)
+url="http://www.openchemistry.org/";
+license=(custom)
+depends=(qt5-base)
+makedepends=(cmake)
+source=($pkgname-$pkgver.tar.gz::"https://github.com/OpenChemistry/molequeue/archive/$pkgver.tar.gz";
+
molequeue-gcc6.patch::"https://github.com/OpenChemistry/molequeue/commit/a983ff61.patch";)
+md5sums=('2f49f3e28965af6fec8a6df37d8ec697'
+ 'd57372453ba647ea741b0efb7e50dc50')
+
+prepare() {
+  mkdir -p build
+# Fix GCC6 detection
+  cd $pkgname-$pkgver
+  patch -p1 -i ../molequeue-gcc6.patch
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2016-12-03 Thread Antonio Rojas
Date: Saturday, December 3, 2016 @ 21:55:55
  Author: arojas
Revision: 282803

Add molequeue, new avogadrolibs dependency

Added:
  molequeue/
  molequeue/trunk/
  molequeue/trunk/PKGBUILD

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

Added: molequeue/trunk/PKGBUILD
===
--- molequeue/trunk/PKGBUILD(rev 0)
+++ molequeue/trunk/PKGBUILD2016-12-03 21:55:55 UTC (rev 282803)
@@ -0,0 +1,36 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=molequeue
+pkgver=0.8.0
+pkgrel=1
+pkgdesc="Desktop integration of high performance computing resources"
+arch=(i686 x86_64)
+url="http://www.openchemistry.org/";
+license=(custom)
+depends=(qt5-base)
+makedepends=(cmake)
+source=($pkgname-$pkgver.tar.gz::"https://github.com/OpenChemistry/molequeue/archive/$pkgver.tar.gz";
+
molequeue-gcc6.patch::"https://github.com/OpenChemistry/molequeue/commit/a983ff61.patch";)
+md5sums=('2f49f3e28965af6fec8a6df37d8ec697'
+ 'd57372453ba647ea741b0efb7e50dc50')
+
+prepare() {
+  mkdir -p build
+# Fix GCC6 detection
+  cd $pkgname-$pkgver
+  patch -p1 -i ../molequeue-gcc6.patch
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2016-12-03 Thread Lukas Jirkovsky
Date: Saturday, December 3, 2016 @ 20:34:48
  Author: stativ
Revision: 197842

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-03 20:34:44 UTC (rev 197841)
+++ PKGBUILD2016-12-03 20:34:48 UTC (rev 197842)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky 
-pkgname=embree
-pkgver=2.12.0
-pkgrel=2
-pkgdesc="A collection of high-performance ray tracing kernels"
-arch=('x86_64')
-url="https://embree.github.io/";
-license=('Apache')
-depends=('intel-tbb')
-makedepends=('cmake' 'ispc' 'freeglut' 'libxmu' 'openexr')
-source=("$pkgname-${pkgver}.tar.gz::https://github.com/embree/embree/archive/v${pkgver}.tar.gz";)
-md5sums=('9d649a8a353b0df0e832ff407d067510')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  cmake . \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_BUILD_TYPE=Release \
--DEMBREE_TUTORIALS=OFF \
--DEMBREE_MAX_ISA="SSE2"
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-

Copied: embree/repos/community-x86_64/PKGBUILD (from rev 197841, 
embree/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-03 20:34:48 UTC (rev 197842)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+pkgname=embree
+pkgver=2.13.0
+pkgrel=1
+pkgdesc="A collection of high-performance ray tracing kernels"
+arch=('x86_64')
+url="https://embree.github.io/";
+license=('Apache')
+depends=('intel-tbb')
+makedepends=('cmake' 'ispc' 'freeglut' 'libxmu' 'openexr')
+source=("$pkgname-${pkgver}.tar.gz::https://github.com/embree/embree/archive/v${pkgver}.tar.gz";)
+md5sums=('15acff05f33da76ee9ef8bd6bc5bc90e')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_BUILD_TYPE=Release \
+-DEMBREE_TUTORIALS=OFF \
+-DEMBREE_MAX_ISA="SSE2"
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+


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

2016-12-03 Thread Lukas Jirkovsky
Date: Saturday, December 3, 2016 @ 20:34:44
  Author: stativ
Revision: 197841

upgpkg: embree 2.13.0-1

update to 2.13.0

Modified:
  embree/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 19:55:00 UTC (rev 197840)
+++ PKGBUILD2016-12-03 20:34:44 UTC (rev 197841)
@@ -1,8 +1,8 @@
 # $Id$
 # Maintainer: Lukas Jirkovsky 
 pkgname=embree
-pkgver=2.12.0
-pkgrel=2
+pkgver=2.13.0
+pkgrel=1
 pkgdesc="A collection of high-performance ray tracing kernels"
 arch=('x86_64')
 url="https://embree.github.io/";
@@ -10,7 +10,7 @@
 depends=('intel-tbb')
 makedepends=('cmake' 'ispc' 'freeglut' 'libxmu' 'openexr')
 
source=("$pkgname-${pkgver}.tar.gz::https://github.com/embree/embree/archive/v${pkgver}.tar.gz";)
-md5sums=('9d649a8a353b0df0e832ff407d067510')
+md5sums=('15acff05f33da76ee9ef8bd6bc5bc90e')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


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

2016-12-03 Thread Alexander Rødseth
Date: Saturday, December 3, 2016 @ 19:55:00
  Author: arodseth
Revision: 197840

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-03 19:53:30 UTC (rev 197839)
+++ community-i686/PKGBUILD 2016-12-03 19:55:00 UTC (rev 197840)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Jeff Horelick 
-# Contributor: skydrome 
-
-pkgname=the_silver_searcher
-pkgver=0.33.0
-pkgrel=1
-pkgdesc='Code searching tool similar to Ack, but faster'
-url='https://github.com/ggreer/the_silver_searcher'
-license=('Apache')
-depends=('pcre' 'xz')
-makedepends=('git')
-arch=('x86_64' 'i686')
-source=("git://github.com/ggreer/$pkgname.git#tag=$pkgver")
-md5sums=('SKIP')
-
-prepare() {
-  sed -i 's:configure:configure --prefix=/usr:' "$pkgname/build.sh"
-}
-
-build() {
-  "./$pkgname/build.sh"
-}
-
-package() {
-  make -C "$pkgname" DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: the_silver_searcher/repos/community-i686/PKGBUILD (from rev 197839, 
the_silver_searcher/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-03 19:55:00 UTC (rev 197840)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Jeff Horelick 
+# Contributor: skydrome 
+
+pkgname=the_silver_searcher
+pkgver=1.0.1
+pkgrel=1
+pkgdesc='Code searching tool similar to Ack, but faster'
+arch=('x86_64' 'i686')
+url='https://github.com/ggreer/the_silver_searcher'
+license=('Apache')
+depends=('pcre' 'xz')
+makedepends=('git')
+source=("git://github.com/ggreer/$pkgname.git#tag=$pkgver")
+md5sums=('SKIP')
+
+prepare() {
+  sed -i 's:configure:configure --prefix=/usr:' "$pkgname/build.sh"
+}
+
+build() {
+  "./$pkgname/build.sh"
+}
+
+package() {
+  make -C "$pkgname" DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-12-03 19:53:30 UTC (rev 197839)
+++ community-x86_64/PKGBUILD   2016-12-03 19:55:00 UTC (rev 197840)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Jeff Horelick 
-# Contributor: skydrome 
-
-pkgname=the_silver_searcher
-pkgver=0.33.0
-pkgrel=1
-pkgdesc='Code searching tool similar to Ack, but faster'
-url='https://github.com/ggreer/the_silver_searcher'
-license=('Apache')
-depends=('pcre' 'xz')
-makedepends=('git')
-arch=('x86_64' 'i686')
-source=("git://github.com/ggreer/$pkgname.git#tag=$pkgver")
-md5sums=('SKIP')
-
-prepare() {
-  sed -i 's:configure:configure --prefix=/usr:' "$pkgname/build.sh"
-}
-
-build() {
-  "./$pkgname/build.sh"
-}
-
-package() {
-  make -C "$pkgname" DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: the_silver_searcher/repos/community-x86_64/PKGBUILD (from rev 197839, 
the_silver_searcher/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-12-03 19:55:00 UTC (rev 197840)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Jeff Horelick 
+# Contributor: skydrome 
+
+pkgname=the_silver_searcher
+pkgver=1.0.1
+pkgrel=1
+pkgdesc='Code searching tool similar to Ack, but faster'
+arch=('x86_64' 'i686')
+url='https://github.com/ggreer/the_silver_searcher'
+license=('Apache')
+depends=('pcre' 'xz')
+makedepends=('git')
+source=("git://github.com/ggreer/$pkgname.git#tag=$pkgver")
+md5sums=('SKIP')
+
+prepare() {
+  sed -i 's:configure:configure --prefix=/usr:' "$pkgname/build.sh"
+}
+
+build() {
+  "./$pkgname/build.sh"
+}
+
+package() {
+  make -C "$pkgname" DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-12-03 Thread Alexander Rødseth
Date: Saturday, December 3, 2016 @ 19:53:30
  Author: arodseth
Revision: 197839

upgpkg: the_silver_searcher 1.0.1-1

Modified:
  the_silver_searcher/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 19:43:00 UTC (rev 197838)
+++ PKGBUILD2016-12-03 19:53:30 UTC (rev 197839)
@@ -1,17 +1,17 @@
 # $Id$
-# Maintainer: Alexander Rødseth 
+# Maintainer: Alexander F Rødseth 
 # Contributor: Jeff Horelick 
 # Contributor: skydrome 
 
 pkgname=the_silver_searcher
-pkgver=0.33.0
+pkgver=1.0.1
 pkgrel=1
 pkgdesc='Code searching tool similar to Ack, but faster'
+arch=('x86_64' 'i686')
 url='https://github.com/ggreer/the_silver_searcher'
 license=('Apache')
 depends=('pcre' 'xz')
 makedepends=('git')
-arch=('x86_64' 'i686')
 source=("git://github.com/ggreer/$pkgname.git#tag=$pkgver")
 md5sums=('SKIP')
 


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

2016-12-03 Thread Alexander Rødseth
Date: Saturday, December 3, 2016 @ 19:43:00
  Author: arodseth
Revision: 197838

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

Added:
  haxe/repos/community-i686/PKGBUILD
(from rev 197837, haxe/trunk/PKGBUILD)
  haxe/repos/community-i686/haxe.sh
(from rev 197837, haxe/trunk/haxe.sh)
  haxe/repos/community-x86_64/PKGBUILD
(from rev 197837, haxe/trunk/PKGBUILD)
  haxe/repos/community-x86_64/haxe.sh
(from rev 197837, haxe/trunk/haxe.sh)
Deleted:
  haxe/repos/community-i686/PKGBUILD
  haxe/repos/community-i686/haxe.sh
  haxe/repos/community-x86_64/PKGBUILD
  haxe/repos/community-x86_64/haxe.sh

---+
 /PKGBUILD |  120 
 /haxe.sh  |2 
 community-i686/PKGBUILD   |   59 -
 community-i686/haxe.sh|1 
 community-x86_64/PKGBUILD |   59 -
 community-x86_64/haxe.sh  |1 
 6 files changed, 122 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-03 19:41:36 UTC (rev 197837)
+++ community-i686/PKGBUILD 2016-12-03 19:43:00 UTC (rev 197838)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Daichi Shinozaki 
-# Contributor: Andy Li 
-# Contributor: Kyle Brady  
-# Contributor: Patrick Hof 
-# Contributor: Michael Fellinger 
-
-pkgname=haxe
-pkgver=3.3.0rc1
-pkgrel=1
-pkgdesc='Cross-platform toolkit and programming language'
-arch=('x86_64' 'i686')
-url='http://haxe.org/'
-license=('GPL' 'MIT' 'LGPL') # http://haxe.org/foundation/open-source.html
-groups=('devel')
-depends=('neko>=2.0.0')
-optdepends=('python' 'php' 'java-environment' 'mono')
-makedepends=('git' 'ocaml>=4.00.0' 'zlib' 'neko>=2.0.0' 'camlp4')
-provides=('haxe' 'haxelib')
-options=('!strip' '!makeflags')
-source=("$pkgname-${pkgver/rc?/}::git+https://github.com/HaxeFoundation/haxe.git#tag=${pkgver/rc/-rc}";
-  'git+https://github.com/HaxeFoundation/haxelib.git'
-  'git+https://github.com/HaxeFoundation/ocamllibs.git'
-  'haxe.sh'
-)
-md5sums=('SKIP' 'SKIP' 'SKIP' '977476c8fc1dfc0acbb05bd22f9136b0')
-
-build() {
-  cd "$pkgname-${pkgver/rc?/}"
-
-  git submodule init
-  git config submodule.extra/haxelib_src.url "$srcdir/haxelib"
-  git config submodule.libs.url "$srcdir/ocamllibs"
-  git submodule update
-
-  make
-  make tools
-}
-
-check() {
-  cd "$pkgname-${pkgver/rc?/}"
-
-  echo "haxe version:"
-  ./haxe -version
-  echo "haxelib version:"
-  ./haxelib version
-}
-
-package() {
-  install -d "$pkgdir"/usr/bin/ "$pkgdir"/usr/share/haxe/
-  install -m 755 "$srcdir/$pkgname-${pkgver/rc?/}"/{haxe,haxelib} 
"$pkgdir"/usr/bin/
-  cp -rf "$srcdir/$pkgname-${pkgver/rc?/}"/std "$pkgdir"/usr/share/$pkgname/
-  install -Dm 644 "$srcdir/$pkgname-${pkgver/rc?/}"/extra/LICENSE.txt \
-"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-  install -Dm 644 "$srcdir/haxe.sh" "$pkgdir/etc/profile.d/haxe.sh"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: haxe/repos/community-i686/PKGBUILD (from rev 197837, 
haxe/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-03 19:43:00 UTC (rev 197838)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Daichi Shinozaki 
+# Contributor: Andy Li 
+# Contributor: Kyle Brady  
+# Contributor: Patrick Hof 
+# Contributor: Michael Fellinger 
+
+pkgname=haxe
+pkgver=3.4.0rc1
+pkgrel=1
+pkgdesc='Cross-platform toolkit and programming language'
+arch=('x86_64' 'i686')
+url='http://haxe.org/'
+license=('GPL' 'MIT' 'LGPL') # http://haxe.org/foundation/open-source.html
+groups=('devel')
+depends=('neko')
+optdepends=('python' 'php' 'java-environment' 'mono')
+makedepends=('git' 'ocaml' 'camlp4' 'zlib' 'neko')
+provides=('haxe' 'haxelib')
+options=('!strip' '!makeflags')
+source=("$pkgname-${pkgver/rc?/}::git+https://github.com/HaxeFoundation/haxe.git#tag=${pkgver/rc/-rc}";
+  'git+https://github.com/HaxeFoundation/haxelib.git'
+  'git+https://github.com/HaxeFoundation/ocamllibs.git'
+  'haxe.sh'
+)
+md5sums=('SKIP'
+ 'SKIP'
+ 'SKIP'
+ '977476c8fc1dfc0acbb05bd22f9136b0')
+
+build() {
+  cd "$pkgname-${pkgver/rc?/}"
+
+  git submodule init
+  git config submodule.extra/haxelib_src.url "$srcdir/haxelib"
+  git config submodule.libs.url "$srcdir/ocamllibs"
+  git submodule update
+
+  make
+  make tools
+}
+
+check() {
+  cd "$pkgname-${pkgver/rc?/}"
+
+  echo "haxe version: $(./haxe -version)"
+  echo "haxelib version: $(./haxelib version)"
+}
+
+package() {
+  install -d "$pkgdir"/usr/bin/ "$pkgdir"/usr/share/haxe/
+  install -m 755 "$srcdir/$pkgname-${pkgver/rc?/}"/{haxe,haxelib} 
"$pkgdir"/usr/bin/
+  cp -rf "$srcdir/$pkgname-${pkgver/rc?/}"/std "$pkgdir"/usr/share/$pkgname/
+  install -Dm 644 "$srcdir/$pkgname-${pkgver/rc?/}"/extra/LI

[arch-commits] Commit in xf86-video-intel/repos (6 files)

2016-12-03 Thread Andreas Radke
Date: Saturday, December 3, 2016 @ 19:42:44
  Author: andyrtr
Revision: 282802

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

Added:
  xf86-video-intel/repos/testing-i686/
  xf86-video-intel/repos/testing-i686/PKGBUILD
(from rev 282801, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/testing-i686/xf86-video-intel.install
(from rev 282801, xf86-video-intel/trunk/xf86-video-intel.install)
  xf86-video-intel/repos/testing-x86_64/
  xf86-video-intel/repos/testing-x86_64/PKGBUILD
(from rev 282801, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/testing-x86_64/xf86-video-intel.install
(from rev 282801, xf86-video-intel/trunk/xf86-video-intel.install)

-+
 testing-i686/PKGBUILD   |   65 ++
 testing-i686/xf86-video-intel.install   |   21 +
 testing-x86_64/PKGBUILD |   65 ++
 testing-x86_64/xf86-video-intel.install |   21 +
 4 files changed, 172 insertions(+)

Copied: xf86-video-intel/repos/testing-i686/PKGBUILD (from rev 282801, 
xf86-video-intel/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-12-03 19:42:44 UTC (rev 282802)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-intel
+_commit=9ac7a33 # 7 digits
+pkgver=2.99.917+740+g9ac7a33
+pkgrel=1
+epoch=1
+arch=(i686 x86_64)
+url="https://01.org/linuxgraphics";
+license=('custom')
+install=$pkgname.install
+pkgdesc="X.org Intel i810/i830/i915/945G/G965+ video drivers"
+depends=('mesa-dri' 'libxvmc' 'pixman' 'xcb-util>=0.3.9')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=20' 'libx11' 
'libxrender'
+ # additional deps for intel-virtual-output
+ 'libxrandr' 'libxinerama' 'libxcursor' 'libxtst' 'libxss'
+ # additional for git snapshot
+ 'git')
+optdepends=('libxrandr: for intel-virtual-output'
+'libxinerama: for intel-virtual-output'
+'libxcursor: for intel-virtual-output'
+'libxtst: for intel-virtual-output'
+'libxss: for intel-virtual-output')
+replaces=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
+provides=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
+conflicts=('xorg-server<1.16' 'X-ABI-VIDEODRV_VERSION<20' 
'X-ABI-VIDEODRV_VERSION>=21'
+   'xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xf86-video-i810' 
'xf86-video-intel-legacy')
+groups=('xorg-drivers' 'xorg')
+#source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+source=("git://anongit.freedesktop.org/xorg/driver/xf86-video-intel#commit=${_commit}")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --long | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr \
+--libexecdir=/usr/lib \
+--with-default-dri=3
+  make
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+package() {
+  cd $pkgname
+
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Copied: xf86-video-intel/repos/testing-i686/xf86-video-intel.install (from rev 
282801, xf86-video-intel/trunk/xf86-video-intel.install)
===
--- testing-i686/xf86-video-intel.install   (rev 0)
+++ testing-i686/xf86-video-intel.install   2016-12-03 19:42:44 UTC (rev 
282802)
@@ -0,0 +1,21 @@
+post_install() {
+  cat <>> This driver now uses DRI3 as the default Direct Rendering
+Infrastructure. You can try falling back to DRI2 if you run
+into trouble. To do so, save a file with the following 
+content as /etc/X11/xorg.conf.d/20-intel.conf :
+  Section "Device"
+Identifier  "Intel Graphics"
+Driver  "intel"
+Option  "DRI" "2" # DRI3 is now default 
+#Option  "AccelMethod"  "sna" # default
+#Option  "AccelMethod"  "uxa" # fallback
+  EndSection
+MSG
+}
+
+post_upgrade() {
+  if (( $(vercmp $2 1:2.99.917+684+g6988b87-3) < 0 )); then
+post_install
+  fi
+}

Copied: xf86-video-intel/repos/testing-x86_64/PKGBUILD (from rev 282801, 
xf86-video-intel/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-12-03 19:42:44 UTC (rev 282802)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-intel
+_commit=9ac7a33 # 7 digits
+pkgver=2.99.917+740+g9ac7a33
+pkgrel=1
+epoch=1
+arch=(i686 x86_64)
+url="https://01.org/linuxgraphics";
+license=('custom')
+install=$pkgname.install
+pkgdesc="X.or

[arch-commits] Commit in xf86-video-intel/trunk (PKGBUILD)

2016-12-03 Thread Andreas Radke
Date: Saturday, December 3, 2016 @ 19:42:33
  Author: andyrtr
Revision: 282801

upgpkg: xf86-video-intel 1:2.99.917+740+g9ac7a33-1

update to latest git commit

Modified:
  xf86-video-intel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 19:31:07 UTC (rev 282800)
+++ PKGBUILD2016-12-03 19:42:33 UTC (rev 282801)
@@ -3,8 +3,8 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xf86-video-intel
-_commit=bde9460 # 7 digits
-pkgver=2.99.917+736+gbde9460
+_commit=9ac7a33 # 7 digits
+pkgver=2.99.917+740+g9ac7a33
 pkgrel=1
 epoch=1
 arch=(i686 x86_64)


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

2016-12-03 Thread Alexander Rødseth
Date: Saturday, December 3, 2016 @ 19:41:36
  Author: arodseth
Revision: 197837

upgpkg: haxe 3.4.0rc1-1

Modified:
  haxe/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 19:20:27 UTC (rev 197836)
+++ PKGBUILD2016-12-03 19:41:36 UTC (rev 197837)
@@ -7,7 +7,7 @@
 # Contributor: Michael Fellinger 
 
 pkgname=haxe
-pkgver=3.3.0rc1
+pkgver=3.4.0rc1
 pkgrel=1
 pkgdesc='Cross-platform toolkit and programming language'
 arch=('x86_64' 'i686')
@@ -14,9 +14,9 @@
 url='http://haxe.org/'
 license=('GPL' 'MIT' 'LGPL') # http://haxe.org/foundation/open-source.html
 groups=('devel')
-depends=('neko>=2.0.0')
+depends=('neko')
 optdepends=('python' 'php' 'java-environment' 'mono')
-makedepends=('git' 'ocaml>=4.00.0' 'zlib' 'neko>=2.0.0' 'camlp4')
+makedepends=('git' 'ocaml' 'camlp4' 'zlib' 'neko')
 provides=('haxe' 'haxelib')
 options=('!strip' '!makeflags')
 
source=("$pkgname-${pkgver/rc?/}::git+https://github.com/HaxeFoundation/haxe.git#tag=${pkgver/rc/-rc}";
@@ -24,7 +24,10 @@
   'git+https://github.com/HaxeFoundation/ocamllibs.git'
   'haxe.sh'
 )
-md5sums=('SKIP' 'SKIP' 'SKIP' '977476c8fc1dfc0acbb05bd22f9136b0')
+md5sums=('SKIP'
+ 'SKIP'
+ 'SKIP'
+ '977476c8fc1dfc0acbb05bd22f9136b0')
 
 build() {
   cd "$pkgname-${pkgver/rc?/}"
@@ -41,10 +44,8 @@
 check() {
   cd "$pkgname-${pkgver/rc?/}"
 
-  echo "haxe version:"
-  ./haxe -version
-  echo "haxelib version:"
-  ./haxelib version
+  echo "haxe version: $(./haxe -version)"
+  echo "haxelib version: $(./haxelib version)"
 }
 
 package() {


[arch-commits] Commit in chromium/repos (26 files)

2016-12-03 Thread Evangelos Foutras
Date: Saturday, December 3, 2016 @ 19:31:07
  Author: foutrelis
Revision: 282800

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

Added:
  chromium/repos/extra-i686/PKGBUILD
(from rev 282799, chromium/trunk/PKGBUILD)
  chromium/repos/extra-i686/chromium-52.0.2743.116-unset-madv_free.patch
(from rev 282799, 
chromium/trunk/chromium-52.0.2743.116-unset-madv_free.patch)
  chromium/repos/extra-i686/chromium-icu58.patch
(from rev 282799, chromium/trunk/chromium-icu58.patch)
  chromium/repos/extra-i686/chromium-system-ffmpeg-r4.patch
(from rev 282799, chromium/trunk/chromium-system-ffmpeg-r4.patch)
  chromium/repos/extra-i686/chromium-widevine.patch
(from rev 282799, chromium/trunk/chromium-widevine.patch)
  chromium/repos/extra-i686/chromium.desktop
(from rev 282799, chromium/trunk/chromium.desktop)
  chromium/repos/extra-i686/chromium.install
(from rev 282799, chromium/trunk/chromium.install)
  chromium/repos/extra-x86_64/PKGBUILD
(from rev 282799, chromium/trunk/PKGBUILD)
  chromium/repos/extra-x86_64/chromium-52.0.2743.116-unset-madv_free.patch
(from rev 282799, 
chromium/trunk/chromium-52.0.2743.116-unset-madv_free.patch)
  chromium/repos/extra-x86_64/chromium-icu58.patch
(from rev 282799, chromium/trunk/chromium-icu58.patch)
  chromium/repos/extra-x86_64/chromium-system-ffmpeg-r4.patch
(from rev 282799, chromium/trunk/chromium-system-ffmpeg-r4.patch)
  chromium/repos/extra-x86_64/chromium-widevine.patch
(from rev 282799, chromium/trunk/chromium-widevine.patch)
  chromium/repos/extra-x86_64/chromium.desktop
(from rev 282799, chromium/trunk/chromium.desktop)
  chromium/repos/extra-x86_64/chromium.install
(from rev 282799, chromium/trunk/chromium.install)
Deleted:
  chromium/repos/extra-i686/PKGBUILD
  chromium/repos/extra-i686/chromium-52.0.2743.116-unset-madv_free.patch
  chromium/repos/extra-i686/chromium-53.0.2785.92-last-commit-position.patch
  chromium/repos/extra-i686/chromium-widevine.patch
  chromium/repos/extra-i686/chromium.desktop
  chromium/repos/extra-i686/chromium.install
  chromium/repos/extra-x86_64/PKGBUILD
  chromium/repos/extra-x86_64/chromium-52.0.2743.116-unset-madv_free.patch
  chromium/repos/extra-x86_64/chromium-53.0.2785.92-last-commit-position.patch
  chromium/repos/extra-x86_64/chromium-widevine.patch
  chromium/repos/extra-x86_64/chromium.desktop
  chromium/repos/extra-x86_64/chromium.install

---+
 /PKGBUILD |  396 ++
 /chromium-52.0.2743.116-unset-madv_free.patch |   30 
 /chromium-widevine.patch  |   20 
 /chromium.desktop |  224 +
 /chromium.install |   32 
 extra-i686/PKGBUILD   |  193 
 extra-i686/chromium-52.0.2743.116-unset-madv_free.patch   |   15 
 extra-i686/chromium-53.0.2785.92-last-commit-position.patch   |   26 
 extra-i686/chromium-icu58.patch   |  136 +++
 extra-i686/chromium-system-ffmpeg-r4.patch|   48 +
 extra-i686/chromium-widevine.patch|   10 
 extra-i686/chromium.desktop   |  112 --
 extra-i686/chromium.install   |   16 
 extra-x86_64/PKGBUILD |  193 
 extra-x86_64/chromium-52.0.2743.116-unset-madv_free.patch |   15 
 extra-x86_64/chromium-53.0.2785.92-last-commit-position.patch |   26 
 extra-x86_64/chromium-icu58.patch |  136 +++
 extra-x86_64/chromium-system-ffmpeg-r4.patch  |   48 +
 extra-x86_64/chromium-widevine.patch  |   10 
 extra-x86_64/chromium.desktop |  112 --
 extra-x86_64/chromium.install |   16 
 21 files changed, 1070 insertions(+), 744 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-12-03 18:32:49 UTC (rev 282799)
+++ extra-i686/PKGBUILD 2016-12-03 19:31:07 UTC (rev 282800)
@@ -1,193 +0,0 @@
-# $Id: PKGBUILD 277477 2016-10-01 03:36:40Z foutrelis $
-# Maintainer: Evangelos Foutras 
-# Contributor: Pierre Schmitz 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Daniel J Griffiths 
-
-# Possible replacements are listed in build/linux/unbundle/replace_gn_files.py
-# Keys are the names in the above script; values are the dependencies in Arch
-declare -rgA _system_libs=(
-  [flac]=flac
-  [harfbuzz-ng]=harfbuzz-icu
-  [libjpeg]=libjpeg
-  [libpng]=libpng
-  [libvpx]=libvpx
-  [libwebp]=libwebp
-  #[libxml]=libxml2# https://bugs.archlinux.org/task/29939
-  [libxslt]=libxslt
-  [re2]=re2
-  [snappy]=snappy
-  [yasm]=
-  #[zlib]=zlib # Error during build
-)

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

2016-12-03 Thread Xyne
Date: Saturday, December 3, 2016 @ 19:20:27
  Author: xyne
Revision: 197836

archrelease: copy trunk to community-any

Added:
  reflector/repos/community-any/PKGBUILD
(from rev 197835, reflector/trunk/PKGBUILD)
Deleted:
  reflector/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-03 19:20:03 UTC (rev 197835)
+++ PKGBUILD2016-12-03 19:20:27 UTC (rev 197836)
@@ -1,33 +0,0 @@
-#Maintainer: Xyne 
-pkgname=reflector
-pkgver=2015.12
-pkgrel=2
-pkgdesc='A Python 3 module and script to retrieve and filter the latest Pacman 
mirror list.'
-arch=(any)
-license=(GPL)
-url="http://xyne.archlinux.ca/projects/reflector";
-depends=(python3)
-optdepends=('rsync: rate rsync mirrors')
-source=(
-  http://xyne.archlinux.ca/projects/reflector/src/reflector-2015.12.tar.xz
-  http://xyne.archlinux.ca/projects/reflector/src/reflector-2015.12.tar.xz.sig
-)
-sha512sums=(
-  
9c1da4688fd2e2b5bd9f1498b9b9252043de3742eb86f6e8aecae3d9c2779fca2baadf64a5103abb08db01b4ecd5ccb61127bcdbcef64f972405371b631e013d
-  
5a689419ac03f6a1d2a6231c195b9653d4654a3062b21bb6791211455870154a305c39856f377102c6c982541cca945f9b381b7922d4d2a2e9b84e238a25acea
-)
-md5sums=(
-  b2997306594aa064bfeff3533132b174
-  43a73486fed553664e3a484ebdff501e
-)
-validpgpkeys=('EC3CBE7F607D11E663149E811D1F0DC78F173680')
-
-package ()
-{
-  cd "$srcdir/$pkgname-$pkgver"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-  install -Dm755 "$srcdir/$pkgname-$pkgver/$pkgname" "$pkgdir/usr/bin/$pkgname"
-}
-
-
-# vim: set ts=2 sw=2 et:

Copied: reflector/repos/community-any/PKGBUILD (from rev 197835, 
reflector/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-03 19:20:27 UTC (rev 197836)
@@ -0,0 +1,33 @@
+#Maintainer: Xyne 
+pkgname=reflector
+pkgver=2016
+pkgrel=1
+pkgdesc='A Python 3 module and script to retrieve and filter the latest Pacman 
mirror list.'
+arch=(any)
+license=(GPL)
+url="http://xyne.archlinux.ca/projects/reflector";
+depends=(python3)
+optdepends=('rsync: rate rsync mirrors')
+source=(
+  http://xyne.archlinux.ca/projects/reflector/src/reflector-2016.tar.xz
+  http://xyne.archlinux.ca/projects/reflector/src/reflector-2016.tar.xz.sig
+)
+sha512sums=(
+  
fdf85af6ffd53343af644d4be01d0a9d688fb443e51f7014b18404812afd639684e9bbabd564adb2fa303573351da6567f4afc6764a06b228e2b03a1509d99fe
+  
d150c38b122765ce5886ff59ddc5f8e43eb1d831ead016a436b1d3eb69b07919425acd1c0ca0e0eed6fc6a627c4e16a4f119034b1357586f18502a2dbbb7b85b
+)
+md5sums=(
+  9c2ba25cd43664d4df5232d599fe567d
+  5e47204f34ba71db824491fd3ca39d56
+)
+validpgpkeys=('EC3CBE7F607D11E663149E811D1F0DC78F173680')
+
+package ()
+{
+  cd "$srcdir/$pkgname-$pkgver"
+  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+  install -Dm755 "$srcdir/$pkgname-$pkgver/$pkgname" "$pkgdir/usr/bin/$pkgname"
+}
+
+
+# vim: set ts=2 sw=2 et:


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

2016-12-03 Thread Xyne
Date: Saturday, December 3, 2016 @ 19:20:03
  Author: xyne
Revision: 197835

upgpkg: reflector 2016-1

update to version 2016: new filter option for completion percent

Modified:
  reflector/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 18:39:58 UTC (rev 197834)
+++ PKGBUILD2016-12-03 19:20:03 UTC (rev 197835)
@@ -1,7 +1,7 @@
 #Maintainer: Xyne 
 pkgname=reflector
-pkgver=2015.12
-pkgrel=2
+pkgver=2016
+pkgrel=1
 pkgdesc='A Python 3 module and script to retrieve and filter the latest Pacman 
mirror list.'
 arch=(any)
 license=(GPL)
@@ -9,16 +9,16 @@
 depends=(python3)
 optdepends=('rsync: rate rsync mirrors')
 source=(
-  http://xyne.archlinux.ca/projects/reflector/src/reflector-2015.12.tar.xz
-  http://xyne.archlinux.ca/projects/reflector/src/reflector-2015.12.tar.xz.sig
+  http://xyne.archlinux.ca/projects/reflector/src/reflector-2016.tar.xz
+  http://xyne.archlinux.ca/projects/reflector/src/reflector-2016.tar.xz.sig
 )
 sha512sums=(
-  
9c1da4688fd2e2b5bd9f1498b9b9252043de3742eb86f6e8aecae3d9c2779fca2baadf64a5103abb08db01b4ecd5ccb61127bcdbcef64f972405371b631e013d
-  
5a689419ac03f6a1d2a6231c195b9653d4654a3062b21bb6791211455870154a305c39856f377102c6c982541cca945f9b381b7922d4d2a2e9b84e238a25acea
+  
fdf85af6ffd53343af644d4be01d0a9d688fb443e51f7014b18404812afd639684e9bbabd564adb2fa303573351da6567f4afc6764a06b228e2b03a1509d99fe
+  
d150c38b122765ce5886ff59ddc5f8e43eb1d831ead016a436b1d3eb69b07919425acd1c0ca0e0eed6fc6a627c4e16a4f119034b1357586f18502a2dbbb7b85b
 )
 md5sums=(
-  b2997306594aa064bfeff3533132b174
-  43a73486fed553664e3a484ebdff501e
+  9c2ba25cd43664d4df5232d599fe567d
+  5e47204f34ba71db824491fd3ca39d56
 )
 validpgpkeys=('EC3CBE7F607D11E663149E811D1F0DC78F173680')
 


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

2016-12-03 Thread Sven-Hendrik Haase
Date: Saturday, December 3, 2016 @ 18:39:39
  Author: svenstaro
Revision: 197833

upgpkg: gitlab 8.14.2-1

upstream release 8.14.2

Modified:
  gitlab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 18:28:11 UTC (rev 197832)
+++ PKGBUILD2016-12-03 18:39:39 UTC (rev 197833)
@@ -7,8 +7,8 @@
 # Contributor: Caleb Maclennan 
 
 pkgname=gitlab
-pkgver=8.14.1
-pkgrel=2
+pkgver=8.14.2
+pkgrel=1
 pkgdesc="Project management and code hosting application"
 arch=('i686' 'x86_64')
 url="https://gitlab.com/gitlab-org/gitlab-ce/tree/master#README";
@@ -41,7 +41,7 @@
 nginx-ssl.conf.example
 lighttpd.conf.example)
 install='gitlab.install'
-sha256sums=('d76006dd64eb25ed3dbaf705a7dfe41ddfb470195bcf98c055987aa74610'
+sha256sums=('ee40dc9a45589163156717aadd8346727ab815509d220212f19b75ebddfd8955'
 '0dabb9c10f6ba49404c13d6be2d0d6cf1bf7e5a0b95f0dea566e33c356997307'
 '3f64de78d1221a0ddf75baed19d1706c625c143701d30ad918f15231aeecfb4f'
 'e16a68539eeb49d24d2ab4a53ff95e33c67264a674b611c006dc5c8a24f41e0e'


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

2016-12-03 Thread Antonio Rojas
Date: Saturday, December 3, 2016 @ 18:32:22
  Author: arojas
Revision: 282798

Update to 2.14

Modified:
  links/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 16:51:06 UTC (rev 282797)
+++ PKGBUILD2016-12-03 18:32:22 UTC (rev 282798)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=links
-pkgver=2.13
+pkgver=2.14
 pkgrel=1
 pkgdesc="A text WWW browser, similar to Lynx"
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
'libpng: for using xlinks'
'librsvg: for using xlinks')
 source=(http://links.twibright.com/download/${pkgname}-${pkgver}.tar.bz2 
links.desktop)
-sha1sums=('ee5ef004723664d3928e29a603cb150db013603f'
+sha1sums=('0594a7401670e40d71906f1e35eec9aeb82e45f5'
   'f600e27c2a7118f7dd07a10230aa44463a02')
 
 prepare() {


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

2016-12-03 Thread Antonio Rojas
Date: Saturday, December 3, 2016 @ 18:32:49
  Author: arojas
Revision: 282799

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

Added:
  links/repos/testing-i686/
  links/repos/testing-i686/PKGBUILD
(from rev 282798, links/trunk/PKGBUILD)
  links/repos/testing-i686/links.desktop
(from rev 282798, links/trunk/links.desktop)
  links/repos/testing-x86_64/
  links/repos/testing-x86_64/PKGBUILD
(from rev 282798, links/trunk/PKGBUILD)
  links/repos/testing-x86_64/links.desktop
(from rev 282798, links/trunk/links.desktop)

--+
 testing-i686/PKGBUILD|   52 +
 testing-i686/links.desktop   |7 +
 testing-x86_64/PKGBUILD  |   52 +
 testing-x86_64/links.desktop |7 +
 4 files changed, 118 insertions(+)

Copied: links/repos/testing-i686/PKGBUILD (from rev 282798, 
links/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-12-03 18:32:49 UTC (rev 282799)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=links
+pkgver=2.14
+pkgrel=1
+pkgdesc="A text WWW browser, similar to Lynx"
+arch=('i686' 'x86_64')
+url="http://links.twibright.com/";
+license=('GPL')
+depends=('bzip2' 'xz' 'gpm' 'libevent')
+makedepends=('libtiff' 'libpng' 'libxt' 'librsvg')
+optdepends=('libx11: for using xlinks'
+   'libtiff: for using xlinks'
+   'libpng: for using xlinks'
+   'librsvg: for using xlinks')
+source=(http://links.twibright.com/download/${pkgname}-${pkgver}.tar.bz2 
links.desktop)
+sha1sums=('0594a7401670e40d71906f1e35eec9aeb82e45f5'
+  'f600e27c2a7118f7dd07a10230aa44463a02')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" configure
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  (cd intl; ./gen-intl; ./synclang)
+  ./configure --prefix=/usr --mandir=/usr/share/man --enable-javascript \
+--enable-graphics --with-x --with-fb
+  make
+  mv links xlinks
+
+  ./configure --prefix=/usr --mandir=/usr/share/man --enable-javascript \
+--disable-graphics --without-x  --without-fb
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 xlinks "${pkgdir}/usr/bin/xlinks"
+  ln -s links.1.gz "${pkgdir}/usr/share/man/man1/xlinks.1.gz"
+
+  install -D -m644 "${srcdir}/links.desktop" 
"${pkgdir}/usr/share/applications/links.desktop"
+  install -d "${pkgdir}/usr/share/pixmaps"
+  install -m644 links_16x16_1.xpm links_16x16_2.xpm links_32x32.xpm 
"${pkgdir}/usr/share/pixmaps/"
+
+  install -d "${pkgdir}/usr/share/doc/links/calibration"
+  install -m644 doc/links_cal/* "${pkgdir}/usr/share/doc/links/calibration/"
+}

Copied: links/repos/testing-i686/links.desktop (from rev 282798, 
links/trunk/links.desktop)
===
--- testing-i686/links.desktop  (rev 0)
+++ testing-i686/links.desktop  2016-12-03 18:32:49 UTC (rev 282799)
@@ -0,0 +1,7 @@
+[Desktop Entry]
+Name=Links
+Exec=xlinks -g
+Icon=links_32x32.xpm
+Type=Application
+Terminal=false
+Categories=Network;WebBrowser;

Copied: links/repos/testing-x86_64/PKGBUILD (from rev 282798, 
links/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-12-03 18:32:49 UTC (rev 282799)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=links
+pkgver=2.14
+pkgrel=1
+pkgdesc="A text WWW browser, similar to Lynx"
+arch=('i686' 'x86_64')
+url="http://links.twibright.com/";
+license=('GPL')
+depends=('bzip2' 'xz' 'gpm' 'libevent')
+makedepends=('libtiff' 'libpng' 'libxt' 'librsvg')
+optdepends=('libx11: for using xlinks'
+   'libtiff: for using xlinks'
+   'libpng: for using xlinks'
+   'librsvg: for using xlinks')
+source=(http://links.twibright.com/download/${pkgname}-${pkgver}.tar.bz2 
links.desktop)
+sha1sums=('0594a7401670e40d71906f1e35eec9aeb82e45f5'
+  'f600e27c2a7118f7dd07a10230aa44463a02')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" configure
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  (cd intl; ./gen-intl; ./synclang)
+  ./configure --prefix=/usr --mandir=/usr/share/man --enable-javascript \
+--enable-graphics --with-x --with-fb
+  make
+  mv links xlinks
+
+  ./configure --prefix=/usr --mandir=/usr/share/man --enable-javascript \
+--disable-graphics --without-x  --without-fb
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 xlinks "${pkgdir}/usr/bin/xlinks"
+  ln -s links.1.gz "${pkgdir}/usr/share/man/man1/xlinks.1.gz"
+
+  install -D -m644 "${srcdir}/links.desktop" 
"${pkgdir}/usr/share/applicati

[arch-commits] Commit in man-pages-it/trunk (PKGBUILD)

2016-12-03 Thread Antonio Rojas
Date: Saturday, December 3, 2016 @ 18:27:47
  Author: arojas
Revision: 197831

Update to 4.08

Modified:
  man-pages-it/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 17:09:50 UTC (rev 197830)
+++ PKGBUILD2016-12-03 18:27:47 UTC (rev 197831)
@@ -3,7 +3,7 @@
 # Contributor: Alessio 'mOLOk' Bolognino 
 
 pkgname=man-pages-it
-pkgver=4.07
+pkgver=4.08
 pkgrel=1
 pkgdesc="Italian man pages"
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('man-pages')
 options=('!emptydirs')
 source=("ftp://ftp.pluto.it/pub/pluto/ildp/man/$pkgname-$pkgver.tar.xz";)
-md5sums=('47b4ff95e55abf0291c81c990903ec50')
+md5sums=('869cf8ff2aa5c11b8d15d1ba7a47f4fa')
 
 package() {
   cd ${srcdir}/${pkgname}-${pkgver}


[arch-commits] Commit in man-pages-it/repos/community-any (PKGBUILD PKGBUILD)

2016-12-03 Thread Antonio Rojas
Date: Saturday, December 3, 2016 @ 18:28:11
  Author: arojas
Revision: 197832

archrelease: copy trunk to community-any

Added:
  man-pages-it/repos/community-any/PKGBUILD
(from rev 197831, man-pages-it/trunk/PKGBUILD)
Deleted:
  man-pages-it/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-03 18:27:47 UTC (rev 197831)
+++ PKGBUILD2016-12-03 18:28:11 UTC (rev 197832)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Alessio 'mOLOk' Bolognino 
-
-pkgname=man-pages-it
-pkgver=4.07
-pkgrel=1
-pkgdesc="Italian man pages"
-arch=('any')
-url="http://www.pluto.it/ildp/man/index.html";
-license=('GPL')
-depends=('man-pages')
-options=('!emptydirs')
-source=("ftp://ftp.pluto.it/pub/pluto/ildp/man/$pkgname-$pkgver.tar.xz";)
-md5sums=('47b4ff95e55abf0291c81c990903ec50')
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make MANDIR=${pkgdir}/usr/share/man/it
-  make MANDIR=${pkgdir}/usr/share/man/it install
-
-  # remove conflicts with other man pages
-  rm -f $pkgdir/usr/share/man/it/man5/passwd.5*
-}

Copied: man-pages-it/repos/community-any/PKGBUILD (from rev 197831, 
man-pages-it/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-03 18:28:11 UTC (rev 197832)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Alessio 'mOLOk' Bolognino 
+
+pkgname=man-pages-it
+pkgver=4.08
+pkgrel=1
+pkgdesc="Italian man pages"
+arch=('any')
+url="http://www.pluto.it/ildp/man/index.html";
+license=('GPL')
+depends=('man-pages')
+options=('!emptydirs')
+source=("ftp://ftp.pluto.it/pub/pluto/ildp/man/$pkgname-$pkgver.tar.xz";)
+md5sums=('869cf8ff2aa5c11b8d15d1ba7a47f4fa')
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make MANDIR=${pkgdir}/usr/share/man/it
+  make MANDIR=${pkgdir}/usr/share/man/it install
+
+  # remove conflicts with other man pages
+  rm -f $pkgdir/usr/share/man/it/man5/passwd.5*
+}


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

2016-12-03 Thread Johannes Löthberg
Date: Saturday, December 3, 2016 @ 17:09:42
  Author: demize
Revision: 197829

upgpkg: pkgconf 1.0.2-1

Modified:
  pkgconf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 17:00:37 UTC (rev 197828)
+++ PKGBUILD2016-12-03 17:09:42 UTC (rev 197829)
@@ -4,7 +4,7 @@
 # Contributor: Bartlomiej Piotrowski 
 
 pkgname=pkgconf
-pkgver=1.0.1
+pkgver=1.0.2
 pkgrel=1
 
 pkgdesc='Light pkg-config replacement'
@@ -17,7 +17,7 @@
 
 
source=("http://rabbit.dereferenced.org/~nenolod/distfiles/pkgconf-$pkgver.tar.gz";)
 
-sha256sums=('45ce2f6ab032451345185b800badd77c054040879bd2e56225dafc7fbe583cf1')
+sha256sums=('fb62bd77a4e164c7dfa43fcbd30b68b52cc78b19a2a427cef1aed19070a3349a')
 
 build() {
cd pkgconf-$pkgver


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

2016-12-03 Thread Johannes Löthberg
Date: Saturday, December 3, 2016 @ 17:09:50
  Author: demize
Revision: 197830

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

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

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

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

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

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

Copied: pkgconf/repos/community-x86_64/PKGBUILD (from rev 197829, 
pkgconf/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-12-03 17:09:50 UTC (rev 197830)
@@ -0,0 +1,33 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Piotr Gorski 
+# Contributor: Lucy 
+# Contributor: Bartlomiej Piotrowski 
+
+pkgname=pkgconf
+pkgver=1.0.2
+pkgrel=1
+
+pkgdesc='Light pkg-config replacement'
+url='https://github.com/pkgconf/pkgconf'
+arch=('i686' 'x86_64')
+license=('custom:ISC')
+
+conflicts=('pkg-config')
+provides=('pkg-config')
+
+source=("http://rabbit.dereferenced.org/~nenolod/distfiles/pkgconf-$pkgver.tar.gz";)
+
+sha256sums=('fb62bd77a4e164c7dfa43fcbd30b68b52cc78b19a2a427cef1aed19070a3349a')
+
+build() {
+   cd pkgconf-$pkgver
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd pkgconf-$pkgver
+   make 

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

2016-12-03 Thread Thorsten Töpper
Date: Saturday, December 3, 2016 @ 17:00:37
  Author: ttoepper
Revision: 197828

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

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

---+
 /PKGBUILD |   76 
 /mksh.install |   18 +
 community-i686/PKGBUILD   |   38 
 community-i686/mksh.install   |9 
 community-x86_64/PKGBUILD |   38 
 community-x86_64/mksh.install |9 
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-03 17:00:32 UTC (rev 197827)
+++ community-i686/PKGBUILD 2016-12-03 17:00:37 UTC (rev 197828)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Thorsten Töpper 
-# Contributor: Daniel Hommel 
-
-pkgname=mksh
-_pkgver=R53a
-pkgver=53.1
-pkgrel=1
-pkgdesc='The MirBSD Korn Shell - an enhanced version of the public domain ksh'
-url='https://www.mirbsd.org/mksh.htm'
-license=('custom')
-arch=('i686' 'x86_64')
-depends=('glibc') # Make namcap happy.
-install=mksh.install
-source=("https://www.mirbsd.org/MirOS/dist/mir/mksh/$pkgname-$_pkgver.tgz";
-'https://www.mirbsd.org/TaC-mksh.txt')
-md5sums=('43fc3e32963cc1795a299bcec531d770'
- 'SKIP')
-
-check() {
-  cd "$srcdir/$pkgname"
-  ./test.sh
-}
-
-build() {
-  cd "$srcdir/$pkgname"
-  sh Build.sh -r
-}
-
-package() {
-  cd "$srcdir/$pkgname"
-  install -D -m 755 mksh "$pkgdir/usr/bin/mksh"
-  install -D -m 644 mksh.1 "$pkgdir/usr/share/man/man1/mksh.1"
-  install -D -m 644 dot.mkshrc "$pkgdir/etc/skel/.mkshrc"
-  install -D -m 644 "$srcdir/TaC-mksh.txt" 
"$pkgdir/usr/share/licenses/mksh/TaC-mksh.txt"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: mksh/repos/community-i686/PKGBUILD (from rev 197827, 
mksh/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-03 17:00:37 UTC (rev 197828)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Thorsten Töpper 
+# Contributor: Daniel Hommel 
+
+pkgname=mksh
+_pkgver=R54
+pkgver=54
+pkgrel=1
+pkgdesc='The MirBSD Korn Shell - an enhanced version of the public domain ksh'
+url='https://www.mirbsd.org/mksh.htm'
+license=('custom')
+arch=('i686' 'x86_64')
+depends=('glibc') # Make namcap happy.
+install=mksh.install
+source=("https://www.mirbsd.org/MirOS/dist/mir/mksh/$pkgname-$_pkgver.tgz";
+'https://www.mirbsd.org/TaC-mksh.txt')
+md5sums=('be0a6fb93b4a5f927bcc1893bb6692f8'
+ 'SKIP')
+
+check() {
+  cd "$srcdir/$pkgname"
+  ./test.sh
+}
+
+build() {
+  cd "$srcdir/$pkgname"
+  sh Build.sh -r
+}
+
+package() {
+  cd "$srcdir/$pkgname"
+  install -D -m 755 mksh "$pkgdir/usr/bin/mksh"
+  install -D -m 644 mksh.1 "$pkgdir/usr/share/man/man1/mksh.1"
+  install -D -m 644 dot.mkshrc "$pkgdir/etc/skel/.mkshrc"
+  install -D -m 644 "$srcdir/TaC-mksh.txt" 
"$pkgdir/usr/share/licenses/mksh/TaC-mksh.txt"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/mksh.install
===
--- community-i686/mksh.install 2016-12-03 17:00:32 UTC (rev 197827)
+++ community-i686/mksh.install 2016-12-03 17:00:37 UTC (rev 197828)
@@ -1,9 +0,0 @@
-post_install() {
-  grep -x /bin/mksh /etc/shells >/dev/null || echo /bin/mksh >>/etc/shells
-}
-
-post_remove() {
-  sed -i "/^\/bin\/mksh$/d" /etc/shells
-}
-
-# vim:set ts=2 sw=2 et:

Copied: mksh/repos/community-i686/mksh.install (from rev 197827, 
mksh/trunk/mksh.install)
===
--- community-i686/mksh.install (rev 0)
+++ community-i686/mksh.install 2016-12-03 17:00:37 UTC (rev 197828)
@@ -0,0 +1,9 @@
+post_install() {
+  grep -x /bin/mksh /etc/shells >/dev/null || echo /bin/mksh >>/etc/shells
+}
+
+post_remove() {
+  sed -i "/^\/bin\/mksh$/d" /etc/shells
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-12-03 17:00:32 UTC (rev 197827)
+++ community-x86_64/PKGBUILD   2016-12-03 17:00:37 UTC (rev 197828)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Thorsten Töpper 
-# Contributor: Daniel Hommel 
-
-pkgname=mksh
-_pkgver=R53a
-pkgver=53.1
-pkgrel=1
-pkgdesc='The MirBSD Korn Shell - an enhanced version of the public do

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

2016-12-03 Thread Thorsten Töpper
Date: Saturday, December 3, 2016 @ 17:00:32
  Author: ttoepper
Revision: 197827

upgpkg: mksh 54-1

Modified:
  mksh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 15:29:31 UTC (rev 197826)
+++ PKGBUILD2016-12-03 17:00:32 UTC (rev 197827)
@@ -3,8 +3,8 @@
 # Contributor: Daniel Hommel 
 
 pkgname=mksh
-_pkgver=R53a
-pkgver=53.1
+_pkgver=R54
+pkgver=54
 pkgrel=1
 pkgdesc='The MirBSD Korn Shell - an enhanced version of the public domain ksh'
 url='https://www.mirbsd.org/mksh.htm'
@@ -14,7 +14,7 @@
 install=mksh.install
 source=("https://www.mirbsd.org/MirOS/dist/mir/mksh/$pkgname-$_pkgver.tgz";
 'https://www.mirbsd.org/TaC-mksh.txt')
-md5sums=('43fc3e32963cc1795a299bcec531d770'
+md5sums=('be0a6fb93b4a5f927bcc1893bb6692f8'
  'SKIP')
 
 check() {


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

2016-12-03 Thread Evangelos Foutras
Date: Saturday, December 3, 2016 @ 16:51:06
  Author: foutrelis
Revision: 282797

Add git to build deps

Needed by tools/gn/last_commit_position.py.

Modified:
  chromium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 16:38:59 UTC (rev 282796)
+++ PKGBUILD2016-12-03 16:51:06 UTC (rev 282797)
@@ -35,7 +35,7 @@
  'ttf-font' 'systemd' 'dbus' 'libpulse' 'perl' 'perl-file-basedir'
  'pciutils' 'desktop-file-utils' 'hicolor-icon-theme')
 depends+=(${_system_libs[@]})
-makedepends=('python2' 'gperf' 'yasm' 'mesa' 'ninja')
+makedepends=('python2' 'gperf' 'yasm' 'mesa' 'ninja' 'git')
 optdepends=('kdebase-kdialog: needed for file dialogs in KDE'
 'gnome-keyring: for storing passwords in GNOME keyring'
 'kwallet: for storing passwords in KWallet')


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

2016-12-03 Thread Evangelos Foutras
Date: Saturday, December 3, 2016 @ 16:38:59
  Author: foutrelis
Revision: 282796

upgpkg: chromium 55.0.2883.75-1

- New upstream release.
- Use system ffmpeg, icu and zlib.
- Re-enable default memory allocator (tcmalloc).

Added:
  chromium/trunk/chromium-icu58.patch
  chromium/trunk/chromium-system-ffmpeg-r4.patch
Modified:
  chromium/trunk/PKGBUILD
Deleted:
  chromium/trunk/chromium-53.0.2785.92-last-commit-position.patch

--+
 PKGBUILD |   25 ++-
 chromium-53.0.2785.92-last-commit-position.patch |   26 
 chromium-icu58.patch |  136 +
 chromium-system-ffmpeg-r4.patch  |   48 +++
 4 files changed, 199 insertions(+), 36 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 16:23:18 UTC (rev 282795)
+++ PKGBUILD2016-12-03 16:38:59 UTC (rev 282796)
@@ -7,8 +7,10 @@
 # Possible replacements are listed in build/linux/unbundle/replace_gn_files.py
 # Keys are the names in the above script; values are the dependencies in Arch
 declare -rgA _system_libs=(
+  [ffmpeg]=ffmpeg
   [flac]=flac
   [harfbuzz-ng]=harfbuzz-icu
+  [icu]=icu
   [libjpeg]=libjpeg
   [libpng]=libpng
   [libvpx]=libvpx
@@ -18,11 +20,11 @@
   [re2]=re2
   [snappy]=snappy
   [yasm]=
-  #[zlib]=zlib # Error during build
+  [zlib]=minizip
 )
 
 pkgname=chromium
-pkgver=54.0.2840.100
+pkgver=55.0.2883.75
 pkgrel=1
 _launcher_ver=3
 pkgdesc="The open-source project behind Google Chrome, an attempt at creating 
a safer, faster, and more stable browser"
@@ -42,13 +44,15 @@
 
chromium-launcher-$_launcher_ver.tar.gz::https://github.com/foutrelis/chromium-launcher/archive/v$_launcher_ver.tar.gz
 chromium.desktop
 chromium-52.0.2743.116-unset-madv_free.patch
-chromium-53.0.2785.92-last-commit-position.patch
+chromium-system-ffmpeg-r4.patch
+chromium-icu58.patch
 chromium-widevine.patch)
-sha256sums=('e2e7f54a780c93ec2e933af09e1126837e6cf940b57213d39f36d58df10c89df'
+sha256sums=('5bcf7180935bebc7648f7e2577f612da681f7846127f79dac22630ded9984e55'
 '8b01fb4efe58146279858a754d90b49e5a38c9a0b36a1f84cbb7d12f92b84c28'
 '028a748a5c275de9b8f776f97909f999a8583a4b77fd1cd600b4fc5c0c3e91e9'
 '3b3aa9e28f29e6f539ed1c7832e79463b13128863a02e9c6fecd16c30d61c227'
-'d3dc397956a26ec045e76c25c57a1fac5fc0acff94306b2a670daee7ba15709e'
+'e3c474dbf3822a0be50695683bd8a2c9dfc82d41c1524a20b4581883c0c88986'
+'fad964da0295a6a7b4393778e717ebdfd37dec33fe78beb2c639abd3973deb7a'
 'd6fdcb922e5a7fbe15759d39ccc8ea4225821c44d98054ce0f23f9d1f00c9808')
 
 # Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
@@ -68,13 +72,14 @@
   sed "s/@WIDEVINE_VERSION@/Pinkie Pie/" ../chromium-widevine.patch |
 patch -Np1
 
+  # Build fixes from Gentoo
+  patch -Np1 -i ../chromium-system-ffmpeg-r4.patch
+  patch -Np1 -i ../chromium-icu58.patch
+
   # Disable MADV_FREE (if set by glibc)
   # https://bugzilla.redhat.com/show_bug.cgi?id=1361157
   patch -Np1 -i ../chromium-52.0.2743.116-unset-madv_free.patch
 
-  # Disable last_commit_position as we don't build from git repository
-  patch -Np1 -i ../chromium-53.0.2785.92-last-commit-position.patch
-
   # Work around bug in blink in which GCC 6 optimizes away null pointer checks
   # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=833524
   # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68853#c2
@@ -96,6 +101,7 @@
 find -type f -path "*third_party/$_lib/*" \
   \! -path "*third_party/$_lib/chromium/*" \
   \! -path "*third_party/$_lib/google/*" \
+  \! -path "*base/third_party/icu/*" \
   \! -regex '.*\.\(gn\|gni\|isolate\|py\)' \
   -delete
   done
@@ -128,7 +134,6 @@
 'proprietary_codecs=true'
 'link_pulseaudio=true'
 'linux_use_bundled_binutils=false'
-'use_allocator="none"'
 'use_cups=true'
 'use_gconf=false'
 'use_gnome_keyring=false'
@@ -170,7 +175,7 @@
   install -Dm4755 out/Release/chrome_sandbox \
 "$pkgdir/usr/lib/chromium/chrome-sandbox"
 
-  cp -a 
out/Release/{*.pak,*.bin,chromedriver,libwidevinecdmadapter.so,icudtl.dat} \
+  cp -a out/Release/{*.pak,*.bin,chromedriver,libwidevinecdmadapter.so} \
 out/Release/locales \
 out/Release/gen/content/content_resources.pak \
 "$pkgdir/usr/lib/chromium/"

Deleted: chromium-53.0.2785.92-last-commit-position.patch
===
--- chromium-53.0.2785.92-last-commit-position.patch2016-12-03 16:23:18 UTC 
(rev 282795)
+++ chromium-53.0.2785.92-last-commit-position.patch2016-12-03 16:38:59 UTC 
(rev 282796)
@@ -1,26 +0,0 @@
 a/tools/gn/gn_main.cc.orig 2015-11-12 11:49:56.260549036 +
-+++ b/tools/gn/gn_main.cc  2015-11-12 11:50:14.780931485 +
-@@ -11,13 +11,7 @

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

2016-12-03 Thread Jan Steffens
Date: Saturday, December 3, 2016 @ 16:23:18
  Author: heftig
Revision: 282795

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-12-03 16:22:39 UTC (rev 282794)
+++ extra-i686/PKGBUILD 2016-12-03 16:23:18 UTC (rev 282795)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Mirco Tischler 
-
-pkgname=ostree
-pkgver=2016.14
-pkgrel=1
-pkgdesc="Operating system and container binary deployment and upgrades"
-url="https://ostree.readthedocs.org/en/latest/";
-arch=(i686 x86_64)
-license=(GPL)
-depends=(glib2 xz zlib libsoup gpgme libarchive fuse util-linux mkinitcpio)
-makedepends=(e2fsprogs gobject-introspection gtk-doc libxslt systemd git
- python2)
-checkdepends=(parallel syslinux gjs cpio elfutils)
-_commit=7584dc0f25734117db47fef1ba0e24231a819a5e  # tags/v2016.14^0
-source=("git+https://github.com/ostreedev/ostree#commit=$_commit";
-"git+https://github.com/mendsley/bsdiff";
-"git+https://git.gnome.org/browse/libglnx";)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP')
-
-prepare() {
-  cd $pkgname
-
-  git submodule init
-  git config --local submodule.bsdiff.url "$srcdir/bsdiff"
-  git config --local submodule.libglnx.url "$srcdir/libglnx"
-  git submodule update
-
-  find . -name '*.py' -exec sed -i '1s/python$/&2/' {} +
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-build() {
-  cd $pkgname
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---sbindir=/usr/bin \
---libexecdir=/usr/lib \
---with-mkinitcpio \
---with-builtin-grub2-mkconfig \
---disable-static \
---enable-gtk-doc
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname
-  # Parallel tests lock up kernel in writeback code
-  make -j1 check
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: ostree/repos/extra-i686/PKGBUILD (from rev 282794, 
ostree/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-12-03 16:23:18 UTC (rev 282795)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Mirco Tischler 
+
+pkgname=ostree
+pkgver=2016.14+1+g70d140d
+pkgrel=1
+pkgdesc="Operating system and container binary deployment and upgrades"
+url="https://ostree.readthedocs.org/en/latest/";
+arch=(i686 x86_64)
+license=(GPL)
+depends=(glib2 xz zlib libsoup gpgme libarchive fuse util-linux mkinitcpio)
+makedepends=(e2fsprogs gobject-introspection gtk-doc libxslt systemd git
+ python2)
+checkdepends=(parallel syslinux gjs cpio elfutils)
+_commit=70d140d61c259717fd9616c2e37eaae6b7338ae7  # pull/558/merge~1
+source=("git+https://github.com/ostreedev/ostree#commit=$_commit";
+"git+https://github.com/mendsley/bsdiff";
+"git+https://git.gnome.org/browse/libglnx";)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP')
+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git config --local submodule.bsdiff.url "$srcdir/bsdiff"
+  git config --local submodule.libglnx.url "$srcdir/libglnx"
+  git submodule update
+
+  find . -name '*.py' -exec sed -i '1s/python$/&2/' {} +
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sbindir=/usr/bin \
+--libexecdir=/usr/lib \
+--with-mkinitcpio \
+--with-builtin-grub2-mkconfig \
+--disable-static \
+--enable-gtk-doc
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname
+  # Parallel tests lock up kernel in writeback code
+  make -j1 check
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-12-03 16:22:39 UTC (rev 282794)
+++ extra-x86_64/PKGBUILD   2016-12-03 16:23:18 UTC (rev 282795)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Mirco Tischler 
-
-pkgname=ostree
-pkgver=

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

2016-12-03 Thread Jan Steffens
Date: Saturday, December 3, 2016 @ 16:22:39
  Author: heftig
Revision: 282794

2016.14+1+g70d140d-1

Modified:
  ostree/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 14:50:27 UTC (rev 282793)
+++ PKGBUILD2016-12-03 16:22:39 UTC (rev 282794)
@@ -3,7 +3,7 @@
 # Contributor: Mirco Tischler 
 
 pkgname=ostree
-pkgver=2016.14
+pkgver=2016.14+1+g70d140d
 pkgrel=1
 pkgdesc="Operating system and container binary deployment and upgrades"
 url="https://ostree.readthedocs.org/en/latest/";
@@ -13,7 +13,7 @@
 makedepends=(e2fsprogs gobject-introspection gtk-doc libxslt systemd git
  python2)
 checkdepends=(parallel syslinux gjs cpio elfutils)
-_commit=7584dc0f25734117db47fef1ba0e24231a819a5e  # tags/v2016.14^0
+_commit=70d140d61c259717fd9616c2e37eaae6b7338ae7  # pull/558/merge~1
 source=("git+https://github.com/ostreedev/ostree#commit=$_commit";
 "git+https://github.com/mendsley/bsdiff";
 "git+https://git.gnome.org/browse/libglnx";)


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

2016-12-03 Thread Mihails Strasuns
Date: Saturday, December 3, 2016 @ 15:29:31
  Author: dicebot
Revision: 197826

archrelease: copy trunk to community-x86_64

Added:
  lib32-libphobos/repos/community-x86_64/
  lib32-libphobos/repos/community-x86_64/PKGBUILD
(from rev 197825, lib32-libphobos/trunk/PKGBUILD)

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

Copied: lib32-libphobos/repos/community-x86_64/PKGBUILD (from rev 197825, 
lib32-libphobos/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-12-03 15:29:31 UTC (rev 197826)
@@ -0,0 +1,52 @@
+# Maintainer: Mihails Strasuns 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Chris Brannon 
+# Contributor: Andrea Scarpino 
+# Contributor: Anders Bergh 
+# Contributor: Alexander Fehr 
+
+pkgname=('lib32-libphobos' 'lib32-libphobos-devel')
+groups=('dlang' 'dlang-dmd')
+pkgver=2.072.1
+pkgrel=1
+epoch=1
+pkgdesc="Libraries for cross-compiling 32-bit D apps from 64-bit system"
+arch=('x86_64')
+groups=('dlang' 'dlang-dmd')
+url="http://www.dlang.org";
+source=("git+http://github.com/D-Programming-Language/phobos.git#tag=v$pkgver";
+
"git+http://github.com/D-Programming-Language/druntime.git#tag=v$pkgver";)
+sha1sums=('SKIP'
+  'SKIP')
+makedepends=('dmd=1:2.072.1' 'git')
+depends=('lib32-gcc-libs')
+license=('custom')
+
+build() {
+cd $srcdir/druntime
+make -f posix.mak MODEL=32 RELEASE=1 DMD=dmd
+
+cd $srcdir/phobos
+make -f posix.mak MODEL=32 RELEASE=1 DMD=dmd
+}
+
+package_lib32-libphobos-devel() {
+pkgdesc="The Phobos standard library for D programming language. Modules 
and static library (32-bit)"
+depends=("dmd" "gcc-multilib")
+options=("staticlibs")
+provides=("d-runtime=$pkgver" "d-stdlib=$pkgver")
+
+install -Dm644 $srcdir/phobos/generated/linux/release/32/libphobos2.a 
$pkgdir/usr/lib32/libphobos2.a
+
+install -Dm644 $srcdir/druntime/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-druntime
+install -Dm644 $srcdir/phobos/LICENSE_1_0.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-phobos
+}
+
+package_lib32-libphobos() {
+pkgdesc="The Phobos standard library for D programming language (32-bit)"
+
+install -Dm644 $srcdir/phobos/generated/linux/release/32/libphobos2.so 
$pkgdir/usr/lib32/libphobos2.so
+
+install -Dm644 $srcdir/druntime/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-druntime
+install -Dm644 $srcdir/phobos/LICENSE_1_0.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-phobos
+}


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

2016-12-03 Thread Mihails Strasuns
Date: Saturday, December 3, 2016 @ 15:29:23
  Author: dicebot
Revision: 197825

upgpkg: lib32-libphobos 1:2.072.1-1

dmd 2.072.1

Modified:
  lib32-libphobos/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 14:55:59 UTC (rev 197824)
+++ PKGBUILD2016-12-03 15:29:23 UTC (rev 197825)
@@ -7,7 +7,7 @@
 
 pkgname=('lib32-libphobos' 'lib32-libphobos-devel')
 groups=('dlang' 'dlang-dmd')
-pkgver=2.071.2
+pkgver=2.072.1
 pkgrel=1
 epoch=1
 pkgdesc="Libraries for cross-compiling 32-bit D apps from 64-bit system"
@@ -18,7 +18,7 @@
 
"git+http://github.com/D-Programming-Language/druntime.git#tag=v$pkgver";)
 sha1sums=('SKIP'
   'SKIP')
-makedepends=('dmd=1:2.071.2' 'git')
+makedepends=('dmd=1:2.072.1' 'git')
 depends=('lib32-gcc-libs')
 license=('custom')
 


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

2016-12-03 Thread Mihails Strasuns
Date: Saturday, December 3, 2016 @ 14:55:59
  Author: dicebot
Revision: 197824

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-03 14:55:44 UTC (rev 197823)
+++ community-i686/PKGBUILD 2016-12-03 14:55:59 UTC (rev 197824)
@@ -1,40 +0,0 @@
-# Maintainer:  Mihails Strasuns 
-# Contributor: Moritz Maxeiner 
-pkgname=dub
-pkgver=1.1.0
-pkgrel=1
-pkgdesc="Developer package manager for D programming language"
-arch=('i686' 'x86_64')
-url="https://github.com/D-Programming-Language/dub";
-license=('MIT')
-makedepends=('dmd' 'libphobos-devel' 'git')
-depends=('curl')
-source=(
-  "git+https://github.com/D-Programming-Language/dub.git#tag=v$pkgver";
-)
-sha256sums=(
-  'SKIP'
-)
-
-build()
-{
-  # DC=`$srcdir/Arch-PKGBUILDs/d-compiler.sh`
-  DC=dmd
-  cd "${srcdir}/${pkgname}"
-
-  echo Generating version file...
-  GITVER=$(git describe) || GITVER=unknown
-  echo "module dub.version_;" > source/dub/version_.d
-  echo "enum dubVersion = \"$GITVER\";" >> source/dub/version_.d
-  echo "enum initialCompilerBinary = \"$DC\";" >> source/dub/version_.d
-
-  $DC -ofbin/dub -w -g -version=DubUseCurl -Isource -L-lcurl @build-files.txt
-}
-
-package()
-{
-  cd "${srcdir}/${pkgname}"
-  install -D -m755 bin/dub "${pkgdir}/usr/bin/dub"
-  install -D -m644 scripts/bash-completion/dub.bash 
$pkgdir/usr/share/bash-completion/completions/dub
-  install -D -m644 LICENSE.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
-}

Copied: dub/repos/community-i686/PKGBUILD (from rev 197823, dub/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-03 14:55:59 UTC (rev 197824)
@@ -0,0 +1,40 @@
+# Maintainer:  Mihails Strasuns 
+# Contributor: Moritz Maxeiner 
+pkgname=dub
+pkgver=1.1.1
+pkgrel=1
+pkgdesc="Developer package manager for D programming language"
+arch=('i686' 'x86_64')
+url="https://github.com/D-Programming-Language/dub";
+license=('MIT')
+makedepends=('dmd' 'libphobos-devel' 'git')
+depends=('curl')
+source=(
+  "git+https://github.com/D-Programming-Language/dub.git#tag=v$pkgver";
+)
+sha256sums=(
+  'SKIP'
+)
+
+build()
+{
+  # DC=`$srcdir/Arch-PKGBUILDs/d-compiler.sh`
+  DC=dmd
+  cd "${srcdir}/${pkgname}"
+
+  echo Generating version file...
+  GITVER=$(git describe) || GITVER=unknown
+  echo "module dub.version_;" > source/dub/version_.d
+  echo "enum dubVersion = \"$GITVER\";" >> source/dub/version_.d
+  echo "enum initialCompilerBinary = \"$DC\";" >> source/dub/version_.d
+
+  $DC -ofbin/dub -w -g -version=DubUseCurl -Isource -L-lcurl @build-files.txt
+}
+
+package()
+{
+  cd "${srcdir}/${pkgname}"
+  install -D -m755 bin/dub "${pkgdir}/usr/bin/dub"
+  install -D -m644 scripts/bash-completion/dub.bash 
$pkgdir/usr/share/bash-completion/completions/dub
+  install -D -m644 LICENSE.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-12-03 14:55:44 UTC (rev 197823)
+++ community-x86_64/PKGBUILD   2016-12-03 14:55:59 UTC (rev 197824)
@@ -1,40 +0,0 @@
-# Maintainer:  Mihails Strasuns 
-# Contributor: Moritz Maxeiner 
-pkgname=dub
-pkgver=1.1.0
-pkgrel=1
-pkgdesc="Developer package manager for D programming language"
-arch=('i686' 'x86_64')
-url="https://github.com/D-Programming-Language/dub";
-license=('MIT')
-makedepends=('dmd' 'libphobos-devel' 'git')
-depends=('curl')
-source=(
-  "git+https://github.com/D-Programming-Language/dub.git#tag=v$pkgver";
-)
-sha256sums=(
-  'SKIP'
-)
-
-build()
-{
-  # DC=`$srcdir/Arch-PKGBUILDs/d-compiler.sh`
-  DC=dmd
-  cd "${srcdir}/${pkgname}"
-
-  echo Generating version file...
-  GITVER=$(git describe) || GITVER=unknown
-  echo "module dub.version_;" > source/dub/version_.d
-  echo "enum dubVersion = \"$GITVER\";" >> source/dub/version_.d
-  echo "enum initialCompilerBinary = \"$DC\";" >> source/dub/version_.d
-
-  $DC -ofbin/dub -w -g -version=DubUseCurl -Isource -L-lcurl @build-files.txt
-}
-
-package()
-{
-  cd "${srcdir}/${pkgname}"
-  install -D -m755 bin/dub "${pkgdir}/usr/bin/dub"
-  install -D -m644 scripts/bash-completion/dub.bash 
$pkgdir/usr/share/bash-completion/completions/dub
-  install -D -m644 LICENSE.txt 
"${pkg

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

2016-12-03 Thread Mihails Strasuns
Date: Saturday, December 3, 2016 @ 14:55:44
  Author: dicebot
Revision: 197823

upgpkg: dub 1.1.1-1

dub 1.1.1

Modified:
  dub/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 14:07:16 UTC (rev 197822)
+++ PKGBUILD2016-12-03 14:55:44 UTC (rev 197823)
@@ -1,7 +1,7 @@
 # Maintainer:  Mihails Strasuns 
 # Contributor: Moritz Maxeiner 
 pkgname=dub
-pkgver=1.1.0
+pkgver=1.1.1
 pkgrel=1
 pkgdesc="Developer package manager for D programming language"
 arch=('i686' 'x86_64')


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

2016-12-03 Thread Laurent Carlier
Date: Saturday, December 3, 2016 @ 14:49:55
  Author: lcarlier
Revision: 282792

upgpkg: vulkan-tools 1.0.33.0-1

upstream update 1.0.33

Modified:
  vulkan-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 12:23:44 UTC (rev 282791)
+++ PKGBUILD2016-12-03 14:49:55 UTC (rev 282792)
@@ -3,15 +3,15 @@
 
 pkgbase=vulkan-tools
 pkgname=(vulkan-trace vulkan-extra-layers)
-pkgver=1.0.30.0
-pkgrel=2
+pkgver=1.0.33.0
+pkgrel=1
 arch=(i686 x86_64)
 url="http://lunarg.com/";
 license=('custom')
 depends=()
-makedepends=(git cmake wget python-lxml libxcb imagemagick)
+makedepends=(git cmake wget python-lxml libxcb imagemagick qt5-svg)
 
source=("vulkanTools-sdk-${pkgver}::https://github.com/LunarG/VulkanTools/archive/sdk-${pkgver}.tar.gz";)
-sha256sums=('7cabc5e25ec0b8873f9ba44755ba6ec935b66305e3f58761d943be10c694df4b')
+sha256sums=('86bc10bb4dd53b1b0e771999ad4726dfb0f5e9494eaa463a6139d7bd17bd4f8a')
 
 build() {
   cd "${srcdir}/VulkanTools-sdk-${pkgver}"
@@ -29,6 +29,7 @@
 -DBUILD_ICD=OFF \
 -DBUILD_TESTS=OFF \
 -DBUILD_DEMOS=OFF \
+-DBUILD_VIA=OFF \
 -DCMAKE_BUILD_TYPE=Release \
 ..
   make
@@ -36,7 +37,7 @@
 
 package_vulkan-trace() {
   pkgdesc="Vulkan tracing and replaying tools"
-  depends=(vulkan-icd-loader libxcb gcc-libs)
+  depends=(vulkan-icd-loader qt5-svg)
   groups=('vulkan-devel')
   
   cd "${srcdir}/VulkanTools-sdk-${pkgver}"
@@ -47,6 +48,7 @@
   install -dm755 ${pkgdir}/usr/share/licenses/${pkgname}
   
   install -m755 build/vktrace/{vkreplay,vktrace}${suffix} ${pkgdir}/usr/bin/
+  install -m755 build/vktrace/vktraceviewer${suffix} ${pkgdir}/usr/bin/
   install -m755 build/vktrace/libVkLayer_vktrace_layer${suffix}.so 
${pkgdir}/usr/lib/
  
   install -m644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/


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

2016-12-03 Thread Laurent Carlier
Date: Saturday, December 3, 2016 @ 14:50:27
  Author: lcarlier
Revision: 282793

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

Added:
  vulkan-tools/repos/extra-i686/PKGBUILD
(from rev 282792, vulkan-tools/trunk/PKGBUILD)
  vulkan-tools/repos/extra-x86_64/PKGBUILD
(from rev 282792, vulkan-tools/trunk/PKGBUILD)
Deleted:
  vulkan-tools/repos/extra-i686/PKGBUILD
  vulkan-tools/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-12-03 14:49:55 UTC (rev 282792)
+++ extra-i686/PKGBUILD 2016-12-03 14:50:27 UTC (rev 282793)
@@ -1,77 +0,0 @@
-# $Id$
-# Maintainer: Laurent Carlier 
-
-pkgbase=vulkan-tools
-pkgname=(vulkan-trace vulkan-extra-layers)
-pkgver=1.0.30.0
-pkgrel=2
-arch=(i686 x86_64)
-url="http://lunarg.com/";
-license=('custom')
-depends=()
-makedepends=(git cmake wget python-lxml libxcb imagemagick)
-source=("vulkanTools-sdk-${pkgver}::https://github.com/LunarG/VulkanTools/archive/sdk-${pkgver}.tar.gz";)
-sha256sums=('7cabc5e25ec0b8873f9ba44755ba6ec935b66305e3f58761d943be10c694df4b')
-
-build() {
-  cd "${srcdir}/VulkanTools-sdk-${pkgver}"
-
-  ./update_external_sources.sh --glslang --spirv-tools
-
-  rm -rf build ; mkdir build ; cd build
-  cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_SYSCONFDIR=/etc \
--DINCLUDE_INSTALL_DIR=/usr/include \
--DLIB_INSTALL_DIR=/usr/lib \
--DCMAKE_INSTALL_DATADIR=/usr/share \
--DCMAKE_SKIP_RPATH=True \
--DBUILD_ICD=OFF \
--DBUILD_TESTS=OFF \
--DBUILD_DEMOS=OFF \
--DCMAKE_BUILD_TYPE=Release \
-..
-  make
-}
-
-package_vulkan-trace() {
-  pkgdesc="Vulkan tracing and replaying tools"
-  depends=(vulkan-icd-loader libxcb gcc-libs)
-  groups=('vulkan-devel')
-  
-  cd "${srcdir}/VulkanTools-sdk-${pkgver}"
-  
-  [[ $CARCH == i686 ]] && suffix=32
-
-  install -dm755 ${pkgdir}/usr/{bin,lib}
-  install -dm755 ${pkgdir}/usr/share/licenses/${pkgname}
-  
-  install -m755 build/vktrace/{vkreplay,vktrace}${suffix} ${pkgdir}/usr/bin/
-  install -m755 build/vktrace/libVkLayer_vktrace_layer${suffix}.so 
${pkgdir}/usr/lib/
- 
-  install -m644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/
-}
-
-package_vulkan-extra-layers() {
-  pkgdesc="Extra layers for Vulkan development"
-  depends=(vulkan-validation-layers)
-  groups=('vulkan-devel')
-  
-  cd "${srcdir}/VulkanTools-sdk-${pkgver}"
-
-  install -dm755 ${pkgdir}/usr/lib
-  install -dm755 ${pkgdir}/usr/share/licenses/${pkgname}
-  install -dm755 ${pkgdir}/usr/share/vulkan/explicit_layer.d
- 
-  install -m644 build/layersvt/*.so ${pkgdir}/usr/lib
-
-  # fix library paths  
-  for i in layersvt/linux/*.json ; do 
-sed 's@./@@' $i > ${pkgdir}/usr/share/vulkan/explicit_layer.d/$(basename 
$i)
-  done
-
-  # this json file is really broken! see FS#50575
-  rm -v ${pkgdir}/usr/share/vulkan/explicit_layer.d/VkLayer_basic_implicit.json
-
-  install -m644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: vulkan-tools/repos/extra-i686/PKGBUILD (from rev 282792, 
vulkan-tools/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-12-03 14:50:27 UTC (rev 282793)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Laurent Carlier 
+
+pkgbase=vulkan-tools
+pkgname=(vulkan-trace vulkan-extra-layers)
+pkgver=1.0.33.0
+pkgrel=1
+arch=(i686 x86_64)
+url="http://lunarg.com/";
+license=('custom')
+depends=()
+makedepends=(git cmake wget python-lxml libxcb imagemagick qt5-svg)
+source=("vulkanTools-sdk-${pkgver}::https://github.com/LunarG/VulkanTools/archive/sdk-${pkgver}.tar.gz";)
+sha256sums=('86bc10bb4dd53b1b0e771999ad4726dfb0f5e9494eaa463a6139d7bd17bd4f8a')
+
+build() {
+  cd "${srcdir}/VulkanTools-sdk-${pkgver}"
+
+  ./update_external_sources.sh --glslang --spirv-tools
+
+  rm -rf build ; mkdir build ; cd build
+  cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_SYSCONFDIR=/etc \
+-DINCLUDE_INSTALL_DIR=/usr/include \
+-DLIB_INSTALL_DIR=/usr/lib \
+-DCMAKE_INSTALL_DATADIR=/usr/share \
+-DCMAKE_SKIP_RPATH=True \
+-DBUILD_ICD=OFF \
+-DBUILD_TESTS=OFF \
+-DBUILD_DEMOS=OFF \
+-DBUILD_VIA=OFF \
+-DCMAKE_BUILD_TYPE=Release \
+..
+  make
+}
+
+package_vulkan-trace() {
+  pkgdesc="Vulkan tracing and replaying tools"
+  depends=(vulkan-icd-loader qt5-svg)
+  groups=('vulkan-devel')
+  
+  cd "${srcdir}/VulkanTools-sdk-${pkgver}"
+  
+  [[ $CARCH == i686 ]] && suffix=32
+
+  install -dm755 ${pkgdir}/usr/{bin,lib}
+  install -dm755 ${pkgdir}/usr/share/licenses/${pkgname}
+  
+  install -m755 build/vktrace/{vkreplay,vktrace}${suffix} ${pkgdir}/usr

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

2016-12-03 Thread Mihails Strasuns
Date: Saturday, December 3, 2016 @ 14:07:16
  Author: dicebot
Revision: 197822

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-03 14:07:00 UTC (rev 197821)
+++ community-i686/PKGBUILD 2016-12-03 14:07:16 UTC (rev 197822)
@@ -1,99 +0,0 @@
-# Maintainer: Mihails Strasunse 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Chris Brannon 
-# Contributor: Andrea Scarpino 
-# Contributor: Anders Bergh 
-# Contributor: Alexander Fehr 
-
-pkgname=('dmd' 'libphobos-devel' 'libphobos')
-pkgdesc="D programming language compiler and standard library"
-groups=('dlang' 'dlang-dmd')
-pkgbase=dmd
-pkgver=2.071.2
-pkgrel=1
-epoch=1
-arch=('i686' 'x86_64')
-url="http://www.dlang.org";
-makedepends=('git' 'gcc' 'make' 'dmd' 'libphobos-devel')
-source=("git+http://github.com/D-Programming-Language/dmd.git#tag=v$pkgver";
-
"git+http://github.com/D-Programming-Language/druntime.git#tag=v$pkgver";
-"git+http://github.com/D-Programming-Language/phobos.git#tag=v$pkgver";)
-sha1sums=('SKIP'
-  'SKIP'
-  'SKIP')
-
-[[ $CARCH == "x86_64" ]] && _archbits="64"
-[[ $CARCH == "i686" ]] && _archbits="32"
-
-build() {
-cd $srcdir/dmd/src
-echo $pkgver > ../VERSION
-make -f posix.mak MODEL=$_archbits RELEASE=1 AUTO_BOOTSTRAP=1
-
-cd $srcdir/druntime
-make -f posix.mak MODEL=$_archbits DMD=$srcdir/dmd/src/dmd RELEASE=1
-
-cd $srcdir/phobos
-make -f posix.mak MODEL=$_archbits DMD=$srcdir/dmd/src/dmd RELEASE=1
-}
-
-package_dmd() {
-pkgdesc="The D programming language reference compiler"
-backup=('etc/dmd.conf')
-depends=('gcc' 'libphobos-devel')
-optdepends=(
-'dtools: collection of useful utilities for development in D'
-'libphobos: standard D library, Phobos; shared library'
-'gcc-multilib: to cross-compile 32-bit applications'
-)
-provides=("d-compiler=$pkgver")
-license=('custom')
-backup=('etc/dmd.conf')
-
-install -Dm755 $srcdir/dmd/src/dmd $pkgdir/usr/bin/dmd
-
-mkdir -p $pkgdir/etc
-echo -e "[Environment]\nDFLAGS=-I/usr/include/dlang/dmd -L-L/usr/lib 
-L-L/usr/lib32 -L--export-dynamic" > $pkgdir/etc/dmd.conf
-
-mkdir -p $pkgdir/usr/share/man/man1
-mkdir -p $pkgdir/usr/share/man/man5
-cp -r $srcdir/dmd/docs/man/man1/* $pkgdir/usr/share/man/man1/
-cp -r $srcdir/dmd/docs/man/man5/* $pkgdir/usr/share/man/man5/
-
-install -Dm644 $srcdir/dmd/src/backendlicense.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-backend
-install -Dm644 $srcdir/dmd/src/boostlicense.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-frontend
-
-mkdir -p $pkgdir/usr/share/d/samples/
-cp -r $srcdir/dmd/samples/* $pkgdir/usr/share/d/samples/
-
-find $pkgdir/usr -type f | xargs chmod 0644
-chmod 755 $pkgdir/usr/bin/*
-}
-
-package_libphobos-devel() {
-pkgdesc="The Phobos standard library for D programming language. Modules 
and static library."
-options=("staticlibs")
-provides=("d-runtime=$pkgver" "d-stdlib=$pkgver")
-license=("custom")
-
-install -Dm644 
$srcdir/phobos/generated/linux/release/$_archbits/libphobos2.a 
$pkgdir/usr/lib/libphobos2.a
-install -Dm644 $srcdir/phobos/LICENSE_1_0.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-mkdir -p $pkgdir/usr/include/dlang/dmd
-cp -r $srcdir/phobos/{*.d,etc,std} $pkgdir/usr/include/dlang/dmd
-cp -r $srcdir/druntime/import/* $pkgdir/usr/include/dlang/dmd/
-
-find $pkgdir/usr -type f | xargs chmod 0644
-
-install -Dm644 $srcdir/druntime/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-druntime
-install -Dm644 $srcdir/phobos/LICENSE_1_0.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-phobos
-}
-
-package_libphobos() {
-pkgdesc="The Phobos standard library for D programming language."
-depends=("curl")
-license=("custom")
-
-install -Dm644 
$srcdir/phobos/generated/linux/release/$_archbits/libphobos2.so 
$pkgdir/usr/lib/libphobos2.so
-install -Dm644 $srcdir/phobos/LICENSE_1_0.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: dmd/repos/community-i686/PKGBUILD (from rev 197821, dmd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-03 14:07:16 UTC (rev 197822)
@@ 

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

2016-12-03 Thread Mihails Strasuns
Date: Saturday, December 3, 2016 @ 14:07:00
  Author: dicebot
Revision: 197821

upgpkg: dmd 1:2.072.1-1

DMD 2.072.1

Modified:
  dmd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 09:56:02 UTC (rev 197820)
+++ PKGBUILD2016-12-03 14:07:00 UTC (rev 197821)
@@ -9,7 +9,7 @@
 pkgdesc="D programming language compiler and standard library"
 groups=('dlang' 'dlang-dmd')
 pkgbase=dmd
-pkgver=2.071.2
+pkgver=2.072.1
 pkgrel=1
 epoch=1
 arch=('i686' 'x86_64')
@@ -28,7 +28,7 @@
 build() {
 cd $srcdir/dmd/src
 echo $pkgver > ../VERSION
-make -f posix.mak MODEL=$_archbits RELEASE=1 AUTO_BOOTSTRAP=1
+make -f posix.mak MODEL=$_archbits RELEASE=1
 
 cd $srcdir/druntime
 make -f posix.mak MODEL=$_archbits DMD=$srcdir/dmd/src/dmd RELEASE=1


[arch-commits] Commit in kdegames-kajongg/repos/kde-unstable-any (PKGBUILD PKGBUILD)

2016-12-03 Thread Antonio Rojas
Date: Saturday, December 3, 2016 @ 12:23:44
  Author: arojas
Revision: 282791

archrelease: copy kde-unstable to kde-unstable-any

Added:
  kdegames-kajongg/repos/kde-unstable-any/PKGBUILD
(from rev 282790, kdegames-kajongg/kde-unstable/PKGBUILD)
Deleted:
  kdegames-kajongg/repos/kde-unstable-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-03 12:23:03 UTC (rev 282790)
+++ PKGBUILD2016-12-03 12:23:44 UTC (rev 282791)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdegames-kajongg
-pkgver=16.11.90
-pkgrel=2
-pkgdesc="The ancient Chinese board game for 4 players"
-url="http://kde.org/applications/games/kajongg/";
-arch=('any')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdegames')
-depends=('kdebase-runtime' 'python-twisted' 'kdebindings-python' 
'libkmahjongg')
-makedepends=('cmake' 'automoc4')
-optdepends=('vorbis-tools: for playing sounds')
-conflicts=('libkmahjongg4')
-source=("http://download.kde.org/unstable/applications/${pkgver}/src/kajongg-${pkgver}.tar.xz"{,.sig})
-sha1sums=('909230a180548b898571ce032a908bf51fa3ca5f'
-  'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kajongg-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DINSTALL_KAJONGG=TRUE
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-
-# Use tilesets from KF5 libkhmahjongg
-  ln -s /usr/share/kmahjongglib "$pkgdir"/usr/share/apps/kmahjongglib
-}

Copied: kdegames-kajongg/repos/kde-unstable-any/PKGBUILD (from rev 282790, 
kdegames-kajongg/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-03 12:23:44 UTC (rev 282791)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdegames-kajongg
+pkgver=16.11.90
+pkgrel=3
+pkgdesc="The ancient Chinese board game for 4 players"
+url="http://kde.org/applications/games/kajongg/";
+arch=(any)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdegames)
+depends=(kdebase-runtime python2-twisted python2-pyqt4 libkmahjongg)
+makedepends=()
+optdepends=('vorbis-tools: for playing sounds')
+source=("http://download.kde.org/unstable/applications/$pkgver/src/kajongg-$pkgver.tar.xz"{,.sig}
+
kajongg-open-settings.patch::"https://cgit.kde.org/kajongg.git/patch/?id=d801f84d";)
+sha1sums=('909230a180548b898571ce032a908bf51fa3ca5f'
+  'SKIP'
+  'eb65b697088d378b80b838bcec4b6bf4316e8251')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

+
+prepare() {
+  cd kajongg-$pkgver
+# Fix opening settings
+  patch -p1 -i ../kajongg-open-settings.patch
+# Fix shebang
+  find . -type f | xargs sed -e 's|\/usr\/bin\/env python|/usr/bin/env 
python2|' -i   
+}
+
+build() {
+  cd kajongg-$pkgver
+  python2 setup.py build
+}
+
+package() {
+  cd kajongg-$pkgver
+  python2 setup.py install --root="$pkgdir"
+}


[arch-commits] Commit in kdegames-kajongg/kde-unstable (PKGBUILD)

2016-12-03 Thread Antonio Rojas
Date: Saturday, December 3, 2016 @ 12:23:03
  Author: arojas
Revision: 282790

Drop kdebindings-python dependency

Modified:
  kdegames-kajongg/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 11:34:36 UTC (rev 282789)
+++ PKGBUILD2016-12-03 12:23:03 UTC (rev 282790)
@@ -1,42 +1,40 @@
 # $Id$
 # Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
 # Contributor: Andrea Scarpino 
 
 pkgname=kdegames-kajongg
 pkgver=16.11.90
-pkgrel=2
+pkgrel=3
 pkgdesc="The ancient Chinese board game for 4 players"
 url="http://kde.org/applications/games/kajongg/";
-arch=('any')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdegames')
-depends=('kdebase-runtime' 'python-twisted' 'kdebindings-python' 
'libkmahjongg')
-makedepends=('cmake' 'automoc4')
+arch=(any)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdegames)
+depends=(kdebase-runtime python2-twisted python2-pyqt4 libkmahjongg)
+makedepends=()
 optdepends=('vorbis-tools: for playing sounds')
-conflicts=('libkmahjongg4')
-source=("http://download.kde.org/unstable/applications/${pkgver}/src/kajongg-${pkgver}.tar.xz"{,.sig})
+source=("http://download.kde.org/unstable/applications/$pkgver/src/kajongg-$pkgver.tar.xz"{,.sig}
+
kajongg-open-settings.patch::"https://cgit.kde.org/kajongg.git/patch/?id=d801f84d";)
 sha1sums=('909230a180548b898571ce032a908bf51fa3ca5f'
-  'SKIP')
+  'SKIP'
+  'eb65b697088d378b80b838bcec4b6bf4316e8251')
 validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

 
 prepare() {
-  mkdir -p build
+  cd kajongg-$pkgver
+# Fix opening settings
+  patch -p1 -i ../kajongg-open-settings.patch
+# Fix shebang
+  find . -type f | xargs sed -e 's|\/usr\/bin\/env python|/usr/bin/env 
python2|' -i   
 }
 
 build() {
-  cd build
-  cmake ../kajongg-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DINSTALL_KAJONGG=TRUE
-  make
+  cd kajongg-$pkgver
+  python2 setup.py build
 }
 
 package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-
-# Use tilesets from KF5 libkhmahjongg
-  ln -s /usr/share/kmahjongglib "$pkgdir"/usr/share/apps/kmahjongglib
+  cd kajongg-$pkgver
+  python2 setup.py install --root="$pkgdir"
 }


[arch-commits] Commit in pacman-mirrorlist/repos/core-any (6 files)

2016-12-03 Thread Florian Pritz
Date: Saturday, December 3, 2016 @ 11:34:36
  Author: bluewind
Revision: 282789

archrelease: copy trunk to core-any

Added:
  pacman-mirrorlist/repos/core-any/PKGBUILD
(from rev 282788, pacman-mirrorlist/trunk/PKGBUILD)
  pacman-mirrorlist/repos/core-any/mirrorlist
(from rev 282788, pacman-mirrorlist/trunk/mirrorlist)
  pacman-mirrorlist/repos/core-any/upgpkg
(from rev 282788, pacman-mirrorlist/trunk/upgpkg)
Deleted:
  pacman-mirrorlist/repos/core-any/PKGBUILD
  pacman-mirrorlist/repos/core-any/mirrorlist
  pacman-mirrorlist/repos/core-any/upgpkg

+
 PKGBUILD   |   62 ++--
 mirrorlist |  899 +--
 upgpkg |8 
 3 files changed, 485 insertions(+), 484 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-03 11:34:32 UTC (rev 282788)
+++ PKGBUILD2016-12-03 11:34:36 UTC (rev 282789)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Dan McGee 
-
-pkgname=pacman-mirrorlist
-pkgver=20161121
-pkgrel=1
-pkgdesc="Arch Linux mirror list for use by pacman"
-arch=('any')
-url="https://www.archlinux.org/mirrorlist/";
-license=('GPL')
-backup=(etc/pacman.d/mirrorlist)
-source=(mirrorlist)
-
-# NOTE on building this package:
-# * Go to the trunk/ directory
-# * Run bash -c ". PKGBUILD; updatelist"
-# * Update the checksums, update pkgver
-# * Build the package
-
-updatelist() {
-  rm -f mirrorlist
-  curl -o mirrorlist https://www.archlinux.org/mirrorlist/all/
-}
-
-package() {
-  mkdir -p $pkgdir/etc/pacman.d
-  install -m644 $srcdir/mirrorlist $pkgdir/etc/pacman.d/
-}
-
-md5sums=('fdc2139704d3040c97f3e677755e40a6')
-sha256sums=('c23be3980e239508893ca08fbf1785970cb754459682f50f8b6bbb592999aaea')

Copied: pacman-mirrorlist/repos/core-any/PKGBUILD (from rev 282788, 
pacman-mirrorlist/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-03 11:34:36 UTC (rev 282789)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Dan McGee 
+
+pkgname=pacman-mirrorlist
+pkgver=20161203
+pkgrel=1
+pkgdesc="Arch Linux mirror list for use by pacman"
+arch=('any')
+url="https://www.archlinux.org/mirrorlist/";
+license=('GPL')
+backup=(etc/pacman.d/mirrorlist)
+source=(mirrorlist)
+
+# NOTE on building this package:
+# * Go to the trunk/ directory
+# * Run bash -c ". PKGBUILD; updatelist"
+# * Update the checksums, update pkgver
+# * Build the package
+
+updatelist() {
+  rm -f mirrorlist
+  curl -o mirrorlist https://www.archlinux.org/mirrorlist/all/
+}
+
+package() {
+  mkdir -p $pkgdir/etc/pacman.d
+  install -m644 $srcdir/mirrorlist $pkgdir/etc/pacman.d/
+}
+
+md5sums=('339bc666041ff5fc42e4cb3ff0099e8e')
+sha256sums=('44170a20e4235839dcabd6d0ac47b5ebad4e1cbca5cbc4ad7afa27f5c998fbc0')

Deleted: mirrorlist
===
--- mirrorlist  2016-12-03 11:34:32 UTC (rev 282788)
+++ mirrorlist  2016-12-03 11:34:36 UTC (rev 282789)
@@ -1,449 +0,0 @@
-##
-## Arch Linux repository mirrorlist
-## Generated on 2016-11-21
-##
-
-## Worldwide
-#Server = https://archlinux.surlyjake.com/archlinux/$repo/os/$arch
-#Server = http://mirrors.evowise.com/archlinux/$repo/os/$arch
-#Server = http://mirror.rackspace.com/archlinux/$repo/os/$arch
-
-## Australia
-#Server = https://mirror.aarnet.edu.au/pub/archlinux/$repo/os/$arch
-#Server = http://archlinux.mirror.digitalpacific.com.au/$repo/os/$arch
-#Server = http://ftp.iinet.net.au/pub/archlinux/$repo/os/$arch
-#Server = http://mirror.internode.on.net/pub/archlinux/$repo/os/$arch
-#Server = http://ftp.swin.edu.au/archlinux/$repo/os/$arch
-#Server = http://archlinux.uberglobalmirror.com/$repo/os/$arch
-
-## Austria
-#Server = http://mirror.digitalnova.at/archlinux/$repo/os/$arch
-#Server = http://mirror.easyname.at/archlinux/$repo/os/$arch
-#Server = http://mirror1.htu.tugraz.at/archlinux/$repo/os/$arch
-
-## Belarus
-#Server = http://ftp.byfly.by/pub/archlinux/$repo/os/$arch
-#Server = http://mirror.datacenter.by/pub/archlinux/$repo/os/$arch
-
-## Belgium
-#Server = http://archlinux.cu.be/$repo/os/$arch
-#Server = http://archlinux.mirror.kangaroot.net/$repo/os/$arch
-
-## Bosnia and Herzegovina
-#Server = http://burek.archlinux.ba/$repo/os/$arch
-#Server = http://archlinux.mirror.ba/$repo/os/$arch
-
-## Brazil
-#Server = http://archlinux-br.mirror.host1plus.com/$repo/os/$arch
-#Server = http://archlinux.c3sl.ufpr.br/$repo/os/$arch
-#Server = http://linorg.usp.br/archlinux/$repo/os/$arch
-#Server = http://pet.inf.ufsc.br/mirrors/archlinux/$repo/os/$arch
-#Server = http://archlinux.pop-es.rnp.br/$repo/os/$arch
-
-## Bulgaria
-#Server = http://mirrors.netix.net/archlinux/$repo/os/$arch
-#Server = http://mirror.telepoint.bg/archlinux/$repo/os/$arch
-#Server = http://mirro

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

2016-12-03 Thread Florian Pritz
Date: Saturday, December 3, 2016 @ 11:34:32
  Author: bluewind
Revision: 282788

upgpkg: pacman-mirrorlist 20161203-1

upstream update

Modified:
  pacman-mirrorlist/trunk/PKGBUILD
  pacman-mirrorlist/trunk/mirrorlist

+
 PKGBUILD   |6 +++---
 mirrorlist |7 ---
 2 files changed, 7 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 09:41:22 UTC (rev 282787)
+++ PKGBUILD2016-12-03 11:34:32 UTC (rev 282788)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee 
 
 pkgname=pacman-mirrorlist
-pkgver=20161121
+pkgver=20161203
 pkgrel=1
 pkgdesc="Arch Linux mirror list for use by pacman"
 arch=('any')
@@ -27,5 +27,5 @@
   install -m644 $srcdir/mirrorlist $pkgdir/etc/pacman.d/
 }
 
-md5sums=('fdc2139704d3040c97f3e677755e40a6')
-sha256sums=('c23be3980e239508893ca08fbf1785970cb754459682f50f8b6bbb592999aaea')
+md5sums=('339bc666041ff5fc42e4cb3ff0099e8e')
+sha256sums=('44170a20e4235839dcabd6d0ac47b5ebad4e1cbca5cbc4ad7afa27f5c998fbc0')

Modified: mirrorlist
===
--- mirrorlist  2016-12-03 09:41:22 UTC (rev 282787)
+++ mirrorlist  2016-12-03 11:34:32 UTC (rev 282788)
@@ -1,6 +1,6 @@
 ##
 ## Arch Linux repository mirrorlist
-## Generated on 2016-11-21
+## Generated on 2016-12-03
 ##
 
 ## Worldwide
@@ -113,6 +113,7 @@
 #Server = https://archlinux.vi-di.fr/$repo/os/$arch
 #Server = http://mirror.armbrust.me/archlinux/$repo/os/$arch
 #Server = https://mirror.armbrust.me/archlinux/$repo/os/$arch
+#Server = https://archlinux.ec-tech.fr/$repo/os/$arch
 #Server = http://fooo.biz/archlinux/$repo/os/$arch
 #Server = https://fooo.biz/archlinux/$repo/os/$arch
 #Server = http://mirror.gerhard.re/archlinux/$repo/os/$arch
@@ -172,6 +173,7 @@
 #Server = http://k42.ch/mirror/archlinux/$repo/os/$arch
 #Server = https://k42.ch/mirror/archlinux/$repo/os/$arch
 #Server = http://mirror.de.leaseweb.net/archlinux/$repo/os/$arch
+#Server = http://mirror.loli.forsale/arch/$repo/os/$arch
 #Server = https://mirror.loli.forsale/arch/$repo/os/$arch
 #Server = http://mirror.metalgamer.eu/archlinux/$repo/os/$arch
 #Server = https://mirror.metalgamer.eu/archlinux/$repo/os/$arch
@@ -245,6 +247,7 @@
 ## Italy
 #Server = http://archlinux.openlabto.org/archlinux/$repo/os/$arch
 #Server = http://archlinux.beccacervello.it/archlinux/$repo/os/$arch
+#Server = http://mi.mirror.garr.it/mirrors/archlinux/$repo/os/$arch
 #Server = http://mirrors.prometeus.net/archlinux/$repo/os/$arch
 #Server = http://archlinux.students.cs.unibo.it/$repo/os/$arch
 
@@ -416,8 +419,6 @@
 #Server = http://mirror.jmu.edu/pub/archlinux/$repo/os/$arch
 #Server = http://mirrors.kernel.org/archlinux/$repo/os/$arch
 #Server = https://mirrors.kernel.org/archlinux/$repo/os/$arch
-#Server = http://kwk.pw/arch/$repo/os/$arch
-#Server = https://kwk.pw/arch/$repo/os/$arch
 #Server = http://mirror.us.leaseweb.net/archlinux/$repo/os/$arch
 #Server = http://il.mirrors.linaxe.net/archlinux/$repo/os/$arch
 #Server = http://mirrors.liquidweb.com/archlinux/$repo/os/$arch


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

2016-12-03 Thread Antonio Rojas
Date: Saturday, December 3, 2016 @ 09:56:02
  Author: arojas
Revision: 197820

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-03 09:55:29 UTC (rev 197819)
+++ community-i686/PKGBUILD 2016-12-03 09:56:02 UTC (rev 197820)
@@ -1,25 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Tarn Burton 
-
-pkgname=normaliz
-pkgver=3.1.3
-pkgrel=1
-pkgdesc="A tool for computations in affine monoids, vector configurations, 
lattice polytopes, and rational cones."
-arch=(i686 x86_64)
-url="https://www.normaliz.uni-osnabrueck.de/";
-license=(GPL)
-depends=(gmp)
-makedepends=(boost)
-source=("https://github.com/Normaliz/Normaliz/releases/download/v$pkgver/Normaliz-$pkgver.tar.gz";)
-md5sums=('68a2e1457dbb8f4e4a3ced528706379c')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: normaliz/repos/community-i686/PKGBUILD (from rev 197819, 
normaliz/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-03 09:56:02 UTC (rev 197820)
@@ -0,0 +1,25 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Tarn Burton 
+
+pkgname=normaliz
+pkgver=3.1.4
+pkgrel=1
+pkgdesc="A tool for computations in affine monoids, vector configurations, 
lattice polytopes, and rational cones."
+arch=(i686 x86_64)
+url="https://www.normaliz.uni-osnabrueck.de/";
+license=(GPL)
+depends=(gmp)
+makedepends=(boost)
+source=("https://github.com/Normaliz/Normaliz/releases/download/v$pkgver/Normaliz-$pkgver.tar.gz";)
+md5sums=('0eab32959e10b0c41b92c768ef562136')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-12-03 09:55:29 UTC (rev 197819)
+++ community-x86_64/PKGBUILD   2016-12-03 09:56:02 UTC (rev 197820)
@@ -1,25 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Tarn Burton 
-
-pkgname=normaliz
-pkgver=3.1.3
-pkgrel=1
-pkgdesc="A tool for computations in affine monoids, vector configurations, 
lattice polytopes, and rational cones."
-arch=(i686 x86_64)
-url="https://www.normaliz.uni-osnabrueck.de/";
-license=(GPL)
-depends=(gmp)
-makedepends=(boost)
-source=("https://github.com/Normaliz/Normaliz/releases/download/v$pkgver/Normaliz-$pkgver.tar.gz";)
-md5sums=('68a2e1457dbb8f4e4a3ced528706379c')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: normaliz/repos/community-x86_64/PKGBUILD (from rev 197819, 
normaliz/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-12-03 09:56:02 UTC (rev 197820)
@@ -0,0 +1,25 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Tarn Burton 
+
+pkgname=normaliz
+pkgver=3.1.4
+pkgrel=1
+pkgdesc="A tool for computations in affine monoids, vector configurations, 
lattice polytopes, and rational cones."
+arch=(i686 x86_64)
+url="https://www.normaliz.uni-osnabrueck.de/";
+license=(GPL)
+depends=(gmp)
+makedepends=(boost)
+source=("https://github.com/Normaliz/Normaliz/releases/download/v$pkgver/Normaliz-$pkgver.tar.gz";)
+md5sums=('0eab32959e10b0c41b92c768ef562136')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2016-12-03 Thread Antonio Rojas
Date: Saturday, December 3, 2016 @ 09:55:29
  Author: arojas
Revision: 197819

Update to 3.1.4

Modified:
  normaliz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 09:12:17 UTC (rev 197818)
+++ PKGBUILD2016-12-03 09:55:29 UTC (rev 197819)
@@ -2,7 +2,7 @@
 # Contributor: Tarn Burton 
 
 pkgname=normaliz
-pkgver=3.1.3
+pkgver=3.1.4
 pkgrel=1
 pkgdesc="A tool for computations in affine monoids, vector configurations, 
lattice polytopes, and rational cones."
 arch=(i686 x86_64)
@@ -11,7 +11,7 @@
 depends=(gmp)
 makedepends=(boost)
 
source=("https://github.com/Normaliz/Normaliz/releases/download/v$pkgver/Normaliz-$pkgver.tar.gz";)
-md5sums=('68a2e1457dbb8f4e4a3ced528706379c')
+md5sums=('0eab32959e10b0c41b92c768ef562136')
 
 build() {
   cd $pkgname-$pkgver


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

2016-12-03 Thread Antonio Rojas
Date: Saturday, December 3, 2016 @ 09:41:22
  Author: arojas
Revision: 282787

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

Added:
  cfitsio/repos/extra-i686/PKGBUILD
(from rev 282786, cfitsio/trunk/PKGBUILD)
  cfitsio/repos/extra-x86_64/PKGBUILD
(from rev 282786, cfitsio/trunk/PKGBUILD)
Deleted:
  cfitsio/repos/extra-i686/PKGBUILD
  cfitsio/repos/extra-i686/cfitsio-3.400-fix-build.patch
  cfitsio/repos/extra-x86_64/PKGBUILD
  cfitsio/repos/extra-x86_64/cfitsio-3.400-fix-build.patch

+
 /PKGBUILD  |   82 +++
 extra-i686/PKGBUILD|   47 ---
 extra-i686/cfitsio-3.400-fix-build.patch   |   38 
 extra-x86_64/PKGBUILD  |   47 ---
 extra-x86_64/cfitsio-3.400-fix-build.patch |   38 
 5 files changed, 82 insertions(+), 170 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-12-03 09:40:52 UTC (rev 282786)
+++ extra-i686/PKGBUILD 2016-12-03 09:41:22 UTC (rev 282787)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Andrea Scarpino 
-# Contributor: Tobias Powalowski 
-
-pkgname=cfitsio
-pkgver=3.400
-pkgrel=1
-pkgdesc="A library of C and Fortran subroutines for reading and writing data 
files in FITS (Flexible Image Transport System) data format"
-arch=(i686 x86_64)
-url="http://heasarc.gsfc.nasa.gov/fitsio/";
-license=(custom)
-depends=(glibc)
-source=("ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/${pkgname}${pkgver/./}.tar.gz";
 cfitsio-3.400-fix-build.patch)
-sha512sums=('e54efb5c7a5a19ae354b202644cf2fcac946997bc0d14a3dc0b609af8725050604df167b4211586868a90b1d5098c1efdf167d6ce842c79b494e154544f3441a'
-
'931579603417c55922d02cdcb9aec9deb79e3aca2c36e15e697e6c371749291aec52873f7bdc188f3a4aabe849655be4172b3edbcba1c529d5bfed265f26fc38')
-
-prepare() {
-  cd $pkgname
-  patch -p1 -i ../cfitsio-3.400-fix-build.patch
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr \
---enable-reentrant
-  make shared
-  make utils
-}
-
-check() {
-  cd $pkgname
-  LD_LIBRARY_PATH=. ./testprog > testprog.lis
-  [[ -z $(diff testprog.lis testprog.out) ]] || return 1
-  [[ -z $(cmp testprog.fit testprog.std) ]] || return 1
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-
-  install -D -m644 License.txt \
-"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-# Fix conflicts with ccfits and smem
-  rm "$pkgdir"/usr/bin/{cookbook,smem,testprog}
-}

Copied: cfitsio/repos/extra-i686/PKGBUILD (from rev 282786, 
cfitsio/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-12-03 09:41:22 UTC (rev 282787)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino 
+# Contributor: Tobias Powalowski 
+
+pkgname=cfitsio
+pkgver=3.410
+pkgrel=1
+pkgdesc="A library of C and Fortran subroutines for reading and writing data 
files in FITS (Flexible Image Transport System) data format"
+arch=(i686 x86_64)
+url="http://heasarc.gsfc.nasa.gov/fitsio/";
+license=(custom)
+depends=(glibc)
+source=("ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/${pkgname}${pkgver/./}.tar.gz";)
+sha512sums=('b2ac31ab17e19eeeb4f1601f42f348402c0a4ab03725dbf74fe75eaabbee2f44f64f0c0ee7f0b2688bd93a9cc0dccf29f07e73b9148fff97fc78bebdbb5f6f0f')
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr \
+--enable-reentrant
+  make shared
+  make utils
+}
+
+check() {
+  cd $pkgname
+  LD_LIBRARY_PATH=. ./testprog > testprog.lis
+  [[ -z $(diff testprog.lis testprog.out) ]] || return 1
+  [[ -z $(cmp testprog.fit testprog.std) ]] || return 1
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+
+  install -D -m644 License.txt \
+"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+# Fix conflicts with ccfits and smem
+  rm "$pkgdir"/usr/bin/{cookbook,smem,testprog}
+}

Deleted: extra-i686/cfitsio-3.400-fix-build.patch
===
--- extra-i686/cfitsio-3.400-fix-build.patch2016-12-03 09:40:52 UTC (rev 
282786)
+++ extra-i686/cfitsio-3.400-fix-build.patch2016-12-03 09:41:22 UTC (rev 
282787)
@@ -1,38 +0,0 @@
 a/speed.c  2016-11-22 22:43:25.336155948 +
-+++ b/speed.c  2016-11-22 22:43:38.266122647 +
-@@ -457,7 +457,6 @@
- double telapse;
- time_t temp;
- struct  timeval tv;
--struct  timezone tz;
- 
- temp = time(0);
- 
-@@ -478,7 +477,7 @@
- telapse = difftime( start, temp );
- }
- */
--gettimeofday (&tv, &tz);
-+gettimeofday (&tv, NULL);
- 
-   startsec = tv.tv_sec;
- startmilli = tv.tv_usec/1000;
-@@ -489,12 +488,11 @@
- int gettime(double *elapse, float *elapscpu, int *status)
- {
- struct  timeval tv;
--struct  timezone tz;
-   int stopmilli;

[arch-commits] Commit in cfitsio/trunk (PKGBUILD cfitsio-3.400-fix-build.patch)

2016-12-03 Thread Antonio Rojas
Date: Saturday, December 3, 2016 @ 09:40:52
  Author: arojas
Revision: 282786

Update to 3.410

Modified:
  cfitsio/trunk/PKGBUILD
Deleted:
  cfitsio/trunk/cfitsio-3.400-fix-build.patch

---+
 PKGBUILD  |   12 +++-
 cfitsio-3.400-fix-build.patch |   38 --
 2 files changed, 3 insertions(+), 47 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 09:31:17 UTC (rev 282785)
+++ PKGBUILD2016-12-03 09:40:52 UTC (rev 282786)
@@ -4,7 +4,7 @@
 # Contributor: Tobias Powalowski 
 
 pkgname=cfitsio
-pkgver=3.400
+pkgver=3.410
 pkgrel=1
 pkgdesc="A library of C and Fortran subroutines for reading and writing data 
files in FITS (Flexible Image Transport System) data format"
 arch=(i686 x86_64)
@@ -11,15 +11,9 @@
 url="http://heasarc.gsfc.nasa.gov/fitsio/";
 license=(custom)
 depends=(glibc)
-source=("ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/${pkgname}${pkgver/./}.tar.gz";
 cfitsio-3.400-fix-build.patch)
-sha512sums=('e54efb5c7a5a19ae354b202644cf2fcac946997bc0d14a3dc0b609af8725050604df167b4211586868a90b1d5098c1efdf167d6ce842c79b494e154544f3441a'
-
'931579603417c55922d02cdcb9aec9deb79e3aca2c36e15e697e6c371749291aec52873f7bdc188f3a4aabe849655be4172b3edbcba1c529d5bfed265f26fc38')
+source=("ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/${pkgname}${pkgver/./}.tar.gz";)
+sha512sums=('b2ac31ab17e19eeeb4f1601f42f348402c0a4ab03725dbf74fe75eaabbee2f44f64f0c0ee7f0b2688bd93a9cc0dccf29f07e73b9148fff97fc78bebdbb5f6f0f')
 
-prepare() {
-  cd $pkgname
-  patch -p1 -i ../cfitsio-3.400-fix-build.patch
-}
-
 build() {
   cd $pkgname
   ./configure --prefix=/usr \

Deleted: cfitsio-3.400-fix-build.patch
===
--- cfitsio-3.400-fix-build.patch   2016-12-03 09:31:17 UTC (rev 282785)
+++ cfitsio-3.400-fix-build.patch   2016-12-03 09:40:52 UTC (rev 282786)
@@ -1,38 +0,0 @@
 a/speed.c  2016-11-22 22:43:25.336155948 +
-+++ b/speed.c  2016-11-22 22:43:38.266122647 +
-@@ -457,7 +457,6 @@
- double telapse;
- time_t temp;
- struct  timeval tv;
--struct  timezone tz;
- 
- temp = time(0);
- 
-@@ -478,7 +477,7 @@
- telapse = difftime( start, temp );
- }
- */
--gettimeofday (&tv, &tz);
-+gettimeofday (&tv, NULL);
- 
-   startsec = tv.tv_sec;
- startmilli = tv.tv_usec/1000;
-@@ -489,12 +488,11 @@
- int gettime(double *elapse, float *elapscpu, int *status)
- {
- struct  timeval tv;
--struct  timezone tz;
-   int stopmilli;
-   long stopsec;
- 
- 
--gettimeofday (&tv, &tz);
-+gettimeofday (&tv, NULL);
- ecpu = clock();
- finish = time(0);
- 
-@@ -509,3 +507,4 @@
- 
- return( *status );
- }
-+


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

2016-12-03 Thread Antonio Rojas
Date: Saturday, December 3, 2016 @ 09:31:17
  Author: arojas
Revision: 282785

Use system minizip

Modified:
  qt5-webengine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 08:50:43 UTC (rev 282784)
+++ PKGBUILD2016-12-03 09:31:17 UTC (rev 282785)
@@ -11,7 +11,7 @@
 license=('LGPL3' 'LGPL2.1' 'BSD')
 pkgdesc='Provides support for web applications using the Chromium browser 
project'
 depends=('qt5-webchannel' 'qt5-location' 'libxcomposite' 'libxrandr' 'libxtst' 
'libxcursor' 'libpulse' 'pciutils' 'libxss' 'libvpx' 'opus'
- 'libevent' 'libsrtp' 'libwebp' 'snappy' 'nss' 'protobuf' 'libxslt')
+ 'libevent' 'libsrtp' 'libwebp' 'snappy' 'nss' 'protobuf' 'libxslt' 
'minizip')
 makedepends=('python2' 'git' 'gperf' 'jsoncpp')
 groups=('qt' 'qt5')
 _pkgfqn="${pkgname/5-/}-opensource-src-${_qtver}"


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

2016-12-03 Thread Sven-Hendrik Haase
Date: Saturday, December 3, 2016 @ 09:11:46
  Author: svenstaro
Revision: 197817

upgpkg: gitlab 8.14.1-2

rebuild

Modified:
  gitlab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 09:09:18 UTC (rev 197816)
+++ PKGBUILD2016-12-03 09:11:46 UTC (rev 197817)
@@ -8,7 +8,7 @@
 
 pkgname=gitlab
 pkgver=8.14.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Project management and code hosting application"
 arch=('i686' 'x86_64')
 url="https://gitlab.com/gitlab-org/gitlab-ce/tree/master#README";


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

2016-12-03 Thread Jakob Gruber
Date: Saturday, December 3, 2016 @ 09:09:02
  Author: schuay
Revision: 197814

stone-soup-0.19.0-1

Modified:
  stone-soup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 08:53:00 UTC (rev 197813)
+++ PKGBUILD2016-12-03 09:09:02 UTC (rev 197814)
@@ -1,7 +1,7 @@
 # Maintainer: Jakob Gruber 
 
 pkgname=stone-soup
-pkgver=0.19.0
+pkgver=0.19.1
 pkgrel=1
 pkgdesc='Open-source, single-player, role-playing roguelike game of 
exploration and treasure-hunting'
 arch=('i686' 'x86_64')
@@ -71,4 +71,4 @@
 "${pkgdir}/usr/share/applications/${pkgname}.desktop"
 
 }
-md5sums=('37d6514c55356c549c8e089cd027c1b8')
+md5sums=('4a46cdf6702bf1879dbe7d6e67bb46b7')


[arch-commits] Commit in stone-soup/repos/community-x86_64 (4 files)

2016-12-03 Thread Jakob Gruber
Date: Saturday, December 3, 2016 @ 09:09:18
  Author: schuay
Revision: 197816

archrelease: copy trunk to community-x86_64

Added:
  stone-soup/repos/community-x86_64/PKGBUILD
(from rev 197815, stone-soup/trunk/PKGBUILD)
  stone-soup/repos/community-x86_64/stone-soup.install
(from rev 197815, stone-soup/trunk/stone-soup.install)
Deleted:
  stone-soup/repos/community-x86_64/PKGBUILD
  stone-soup/repos/community-x86_64/stone-soup.install

+
 PKGBUILD   |  148 +--
 stone-soup.install |   22 +++
 2 files changed, 85 insertions(+), 85 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-03 09:09:12 UTC (rev 197815)
+++ PKGBUILD2016-12-03 09:09:18 UTC (rev 197816)
@@ -1,74 +0,0 @@
-# Maintainer: Jakob Gruber 
-
-pkgname=stone-soup
-pkgver=0.19.0
-pkgrel=1
-pkgdesc='Open-source, single-player, role-playing roguelike game of 
exploration and treasure-hunting'
-arch=('i686' 'x86_64')
-url='http://crawl.develz.org/'
-depends=('lua51' 'ncurses' 'sdl2_image' 'sqlite' 'glu' 'freetype2' 
'ttf-dejavu')
-makedepends=('bison' 'flex' 'gendesk' 'mesa')
-conflicts=('crawl' 'stone-soup-tile' 'stone-soup-git')
-license=('custom')
-install=stone-soup.install
-source=("https://crawl.develz.org/release/stone_soup-${pkgver}-nodeps.tar.xz";)
-
-# used by gendesk to create .desktop file
-_exec=('crawl-tiles')
-_name=('Dungeon Crawl Stone Soup')
-
-package() {
-cd "$srcdir"
-gendesk -n --pkgname "$pkgname" --pkgdesc "$pkgdesc" \
---exec 'crawl-tiles' --name 'Dungeon Crawl Stone Soup' PKGBUILD
-
-cd "stone_soup-${pkgver}/source"
-
-# 0.16.0 weirdness
-sed -i 's|SDL_main.h|SDL2/&|' main.cc
-
-# git tarball weirdness
-echo "$pkgver" > util/release_ver
-
-# adjust makefile to use /usr/bin, owner root:root,
-# disable setgid on executable
-
-sed -i 's|bin_prefix:= bin|bin_prefix:= usr/bin|' Makefile
-sed -i 's/INSTALL_UGRP := games:games/INSTALL_UGRP := root:root/' Makefile
-sed -i 's|MCHMOD := 2755|MCHMOD := 755|' Makefile
-
-# first build and install tiles version
-
-make DESTDIR="${pkgdir}" \
- SAVEDIR="~/.crawl/" \
- DATADIR="/usr/share/${pkgname}/data" \
- USE_UNICODE=y \
- TILES=y \
- install
-
-# rename tiles executable to avoid clashing with console crawl
-
-mv "${pkgdir}/usr/bin/crawl" "${pkgdir}/usr/bin/crawl-tiles"
-
-# then build and install console version
-
-make DESTDIR="${pkgdir}" \
- SAVEDIR="~/.crawl/" \
- DATADIR="/usr/share/${pkgname}/data" \
- USE_UNICODE=y \
- install
-
-# install crawl license
-
-install -D -m644 ../licence.txt \
-"${pkgdir}/usr/share/licenses/${pkgname}/license.txt"
-
-# install icon and .desktop file
-
-install -D -m644 dat/tiles/stone_soup_icon-32x32.png \
-"${pkgdir}/usr/share/pixmaps/${pkgname}.png"
-install -D -m644 "${srcdir}/${pkgname}.desktop" \
-"${pkgdir}/usr/share/applications/${pkgname}.desktop"
-
-}
-md5sums=('37d6514c55356c549c8e089cd027c1b8')

Copied: stone-soup/repos/community-x86_64/PKGBUILD (from rev 197815, 
stone-soup/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-03 09:09:18 UTC (rev 197816)
@@ -0,0 +1,74 @@
+# Maintainer: Jakob Gruber 
+
+pkgname=stone-soup
+pkgver=0.19.1
+pkgrel=1
+pkgdesc='Open-source, single-player, role-playing roguelike game of 
exploration and treasure-hunting'
+arch=('i686' 'x86_64')
+url='http://crawl.develz.org/'
+depends=('lua51' 'ncurses' 'sdl2_image' 'sqlite' 'glu' 'freetype2' 
'ttf-dejavu')
+makedepends=('bison' 'flex' 'gendesk' 'mesa')
+conflicts=('crawl' 'stone-soup-tile' 'stone-soup-git')
+license=('custom')
+install=stone-soup.install
+source=("https://crawl.develz.org/release/stone_soup-${pkgver}-nodeps.tar.xz";)
+
+# used by gendesk to create .desktop file
+_exec=('crawl-tiles')
+_name=('Dungeon Crawl Stone Soup')
+
+package() {
+cd "$srcdir"
+gendesk -n --pkgname "$pkgname" --pkgdesc "$pkgdesc" \
+--exec 'crawl-tiles' --name 'Dungeon Crawl Stone Soup' PKGBUILD
+
+cd "stone_soup-${pkgver}/source"
+
+# 0.16.0 weirdness
+sed -i 's|SDL_main.h|SDL2/&|' main.cc
+
+# git tarball weirdness
+echo "$pkgver" > util/release_ver
+
+# adjust makefile to use /usr/bin, owner root:root,
+# disable setgid on executable
+
+sed -i 's|bin_prefix:= bin|bin_prefix:= usr/bin|' Makefile
+sed -i 's/INSTALL_UGRP := games:games/INSTALL_UGRP := root:root/' Makefile
+sed -i 's|MCHMOD := 2755|MCHMOD := 755|' Makefile
+
+# first build and install tiles version
+
+make DESTDIR="${pkgdir}" \
+ SAVEDIR="~/.crawl/" \
+ DATADIR="/usr/share/${pkgname}/data" \
+ USE_UNICODE=y \
+ TILES=y \
+

[arch-commits] Commit in stone-soup/repos/community-i686 (4 files)

2016-12-03 Thread Jakob Gruber
Date: Saturday, December 3, 2016 @ 09:09:12
  Author: schuay
Revision: 197815

archrelease: copy trunk to community-i686

Added:
  stone-soup/repos/community-i686/PKGBUILD
(from rev 197814, stone-soup/trunk/PKGBUILD)
  stone-soup/repos/community-i686/stone-soup.install
(from rev 197814, stone-soup/trunk/stone-soup.install)
Deleted:
  stone-soup/repos/community-i686/PKGBUILD
  stone-soup/repos/community-i686/stone-soup.install

+
 PKGBUILD   |  148 +--
 stone-soup.install |   22 +++
 2 files changed, 85 insertions(+), 85 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-03 09:09:02 UTC (rev 197814)
+++ PKGBUILD2016-12-03 09:09:12 UTC (rev 197815)
@@ -1,74 +0,0 @@
-# Maintainer: Jakob Gruber 
-
-pkgname=stone-soup
-pkgver=0.19.0
-pkgrel=1
-pkgdesc='Open-source, single-player, role-playing roguelike game of 
exploration and treasure-hunting'
-arch=('i686' 'x86_64')
-url='http://crawl.develz.org/'
-depends=('lua51' 'ncurses' 'sdl2_image' 'sqlite' 'glu' 'freetype2' 
'ttf-dejavu')
-makedepends=('bison' 'flex' 'gendesk' 'mesa')
-conflicts=('crawl' 'stone-soup-tile' 'stone-soup-git')
-license=('custom')
-install=stone-soup.install
-source=("https://crawl.develz.org/release/stone_soup-${pkgver}-nodeps.tar.xz";)
-
-# used by gendesk to create .desktop file
-_exec=('crawl-tiles')
-_name=('Dungeon Crawl Stone Soup')
-
-package() {
-cd "$srcdir"
-gendesk -n --pkgname "$pkgname" --pkgdesc "$pkgdesc" \
---exec 'crawl-tiles' --name 'Dungeon Crawl Stone Soup' PKGBUILD
-
-cd "stone_soup-${pkgver}/source"
-
-# 0.16.0 weirdness
-sed -i 's|SDL_main.h|SDL2/&|' main.cc
-
-# git tarball weirdness
-echo "$pkgver" > util/release_ver
-
-# adjust makefile to use /usr/bin, owner root:root,
-# disable setgid on executable
-
-sed -i 's|bin_prefix:= bin|bin_prefix:= usr/bin|' Makefile
-sed -i 's/INSTALL_UGRP := games:games/INSTALL_UGRP := root:root/' Makefile
-sed -i 's|MCHMOD := 2755|MCHMOD := 755|' Makefile
-
-# first build and install tiles version
-
-make DESTDIR="${pkgdir}" \
- SAVEDIR="~/.crawl/" \
- DATADIR="/usr/share/${pkgname}/data" \
- USE_UNICODE=y \
- TILES=y \
- install
-
-# rename tiles executable to avoid clashing with console crawl
-
-mv "${pkgdir}/usr/bin/crawl" "${pkgdir}/usr/bin/crawl-tiles"
-
-# then build and install console version
-
-make DESTDIR="${pkgdir}" \
- SAVEDIR="~/.crawl/" \
- DATADIR="/usr/share/${pkgname}/data" \
- USE_UNICODE=y \
- install
-
-# install crawl license
-
-install -D -m644 ../licence.txt \
-"${pkgdir}/usr/share/licenses/${pkgname}/license.txt"
-
-# install icon and .desktop file
-
-install -D -m644 dat/tiles/stone_soup_icon-32x32.png \
-"${pkgdir}/usr/share/pixmaps/${pkgname}.png"
-install -D -m644 "${srcdir}/${pkgname}.desktop" \
-"${pkgdir}/usr/share/applications/${pkgname}.desktop"
-
-}
-md5sums=('37d6514c55356c549c8e089cd027c1b8')

Copied: stone-soup/repos/community-i686/PKGBUILD (from rev 197814, 
stone-soup/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-03 09:09:12 UTC (rev 197815)
@@ -0,0 +1,74 @@
+# Maintainer: Jakob Gruber 
+
+pkgname=stone-soup
+pkgver=0.19.1
+pkgrel=1
+pkgdesc='Open-source, single-player, role-playing roguelike game of 
exploration and treasure-hunting'
+arch=('i686' 'x86_64')
+url='http://crawl.develz.org/'
+depends=('lua51' 'ncurses' 'sdl2_image' 'sqlite' 'glu' 'freetype2' 
'ttf-dejavu')
+makedepends=('bison' 'flex' 'gendesk' 'mesa')
+conflicts=('crawl' 'stone-soup-tile' 'stone-soup-git')
+license=('custom')
+install=stone-soup.install
+source=("https://crawl.develz.org/release/stone_soup-${pkgver}-nodeps.tar.xz";)
+
+# used by gendesk to create .desktop file
+_exec=('crawl-tiles')
+_name=('Dungeon Crawl Stone Soup')
+
+package() {
+cd "$srcdir"
+gendesk -n --pkgname "$pkgname" --pkgdesc "$pkgdesc" \
+--exec 'crawl-tiles' --name 'Dungeon Crawl Stone Soup' PKGBUILD
+
+cd "stone_soup-${pkgver}/source"
+
+# 0.16.0 weirdness
+sed -i 's|SDL_main.h|SDL2/&|' main.cc
+
+# git tarball weirdness
+echo "$pkgver" > util/release_ver
+
+# adjust makefile to use /usr/bin, owner root:root,
+# disable setgid on executable
+
+sed -i 's|bin_prefix:= bin|bin_prefix:= usr/bin|' Makefile
+sed -i 's/INSTALL_UGRP := games:games/INSTALL_UGRP := root:root/' Makefile
+sed -i 's|MCHMOD := 2755|MCHMOD := 755|' Makefile
+
+# first build and install tiles version
+
+make DESTDIR="${pkgdir}" \
+ SAVEDIR="~/.crawl/" \
+ DATADIR="/usr/share/${pkgname}/data" \
+ USE_UNICODE=y \
+ TILES=y \
+ install
+
+

[arch-commits] Commit in (minizip)

2016-12-03 Thread Pierre Schmitz
Date: Saturday, December 3, 2016 @ 08:53:00
  Author: pierre
Revision: 197813

Remove minizip from community

Deleted:
  minizip/


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

2016-12-03 Thread Pierre Schmitz
Date: Saturday, December 3, 2016 @ 08:49:13
  Author: pierre
Revision: 282781

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

Added:
  logrotate/repos/testing-i686/
  logrotate/repos/testing-i686/PKGBUILD
(from rev 282780, logrotate/trunk/PKGBUILD)
  logrotate/repos/testing-i686/logrotate.conf
(from rev 282780, logrotate/trunk/logrotate.conf)
  logrotate/repos/testing-i686/logrotate.service
(from rev 282780, logrotate/trunk/logrotate.service)
  logrotate/repos/testing-i686/logrotate.timer
(from rev 282780, logrotate/trunk/logrotate.timer)
  logrotate/repos/testing-i686/paths.patch
(from rev 282780, logrotate/trunk/paths.patch)
  logrotate/repos/testing-x86_64/
  logrotate/repos/testing-x86_64/PKGBUILD
(from rev 282780, logrotate/trunk/PKGBUILD)
  logrotate/repos/testing-x86_64/logrotate.conf
(from rev 282780, logrotate/trunk/logrotate.conf)
  logrotate/repos/testing-x86_64/logrotate.service
(from rev 282780, logrotate/trunk/logrotate.service)
  logrotate/repos/testing-x86_64/logrotate.timer
(from rev 282780, logrotate/trunk/logrotate.timer)
  logrotate/repos/testing-x86_64/paths.patch
(from rev 282780, logrotate/trunk/paths.patch)

--+
 testing-i686/PKGBUILD|   58 +
 testing-i686/logrotate.conf  |   38 
 testing-i686/logrotate.service   |9 +
 testing-i686/logrotate.timer |7 
 testing-i686/paths.patch |   25 +++
 testing-x86_64/PKGBUILD  |   58 +
 testing-x86_64/logrotate.conf|   38 
 testing-x86_64/logrotate.service |9 +
 testing-x86_64/logrotate.timer   |7 
 testing-x86_64/paths.patch   |   25 +++
 10 files changed, 274 insertions(+)

Copied: logrotate/repos/testing-i686/PKGBUILD (from rev 282780, 
logrotate/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-12-03 08:49:13 UTC (rev 282781)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=logrotate
+pkgver=3.11.0
+pkgrel=1
+pkgdesc="Rotates system logs automatically"
+arch=('i686' 'x86_64')
+url="https://github.com/logrotate/logrotate";
+license=('GPL')
+groups=('base')
+depends=('popt' 'gzip' 'acl')
+backup=('etc/logrotate.conf')
+source=("https://github.com/logrotate/logrotate/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.asc}
+'paths.patch'
+'logrotate.conf'
+logrotate.{timer,service})
+md5sums=('3a9280e4caeb837427a2d54518fbcdac'
+ 'SKIP'
+ 'e76526bcd6fc33c9d921e1cb1eff1ffb'
+ '94dae4d3eded2fab9ae879533d3680db'
+ '287c2ad9b074cb5478db7692f385827c'
+ '85560be5272ed68a88bb77a0a2293369')
+validpgpkeys=('992A96E075056E79CD8214F9873DB37572A37B36')
+
+build() {
+   cd "$srcdir/${pkgname}-${pkgver}"
+
+   patch -p0 -i "$srcdir/paths.patch"
+
+   ./autogen.sh
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --mandir=/usr/share/man \
+   --with-acl
+   make
+}
+
+check() {
+   cd "$srcdir/${pkgname}-${pkgver}"
+
+   make test
+}
+
+package() {
+   cd "$srcdir/${pkgname}-${pkgver}"
+
+   make DESTDIR="$pkgdir" install
+
+   install -dm755 "$pkgdir/etc/logrotate.d"
+   install -Dm644 "$srcdir/logrotate.conf" "$pkgdir/etc/logrotate.conf"
+
+   install -D -m644 ${srcdir}/logrotate.timer 
${pkgdir}/usr/lib/systemd/system/logrotate.timer
+   install -D -m644 ${srcdir}/logrotate.service 
${pkgdir}/usr/lib/systemd/system/logrotate.service
+   install -d -m755 
${pkgdir}/usr/lib/systemd/system/multi-user.target.wants
+   ln -s ../logrotate.timer 
${pkgdir}//usr/lib/systemd/system/multi-user.target.wants/logrotate.timer
+}

Copied: logrotate/repos/testing-i686/logrotate.conf (from rev 282780, 
logrotate/trunk/logrotate.conf)
===
--- testing-i686/logrotate.conf (rev 0)
+++ testing-i686/logrotate.conf 2016-12-03 08:49:13 UTC (rev 282781)
@@ -0,0 +1,38 @@
+# see "man logrotate" for details
+# rotate log files weekly
+weekly
+
+# keep 4 weeks worth of backlogs
+rotate 4
+
+# restrict maximum size of log files
+#size 20M
+
+# create new (empty) log files after rotating old ones
+create
+
+# uncomment this if you want your log files compressed
+#compress
+
+# Logs are moved into directory for rotation
+# olddir /var/log/archive
+
+# Ignore pacman saved files
+tabooext + .pacorig .pacnew .pacsave
+
+# Arch packages drop log rotation information into this directory
+include /etc/logrotate.d
+
+/var/log/wtmp {
+monthly
+create 0664 root utmp
+minsize 1M
+rotate 1
+}
+
+/var/log/btmp {
+missingok
+monthly
+create 0600 r

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

2016-12-03 Thread Pierre Schmitz
Date: Saturday, December 3, 2016 @ 08:48:58
  Author: pierre
Revision: 282780

upgpkg: logrotate 3.11.0-1

Modified:
  logrotate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 08:38:13 UTC (rev 282779)
+++ PKGBUILD2016-12-03 08:48:58 UTC (rev 282780)
@@ -2,7 +2,7 @@
 # Maintainer: Pierre Schmitz 
 
 pkgname=logrotate
-pkgver=3.10.0
+pkgver=3.11.0
 pkgrel=1
 pkgdesc="Rotates system logs automatically"
 arch=('i686' 'x86_64')
@@ -11,15 +11,17 @@
 groups=('base')
 depends=('popt' 'gzip' 'acl')
 backup=('etc/logrotate.conf')
-source=("https://github.com/logrotate/logrotate/archive/${pkgver}.tar.gz";
+source=("https://github.com/logrotate/logrotate/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.asc}
 'paths.patch'
 'logrotate.conf'
 logrotate.{timer,service})
-md5sums=('3995acb2791a8dfd81b5ffc0046d0e71'
+md5sums=('3a9280e4caeb837427a2d54518fbcdac'
+ 'SKIP'
  'e76526bcd6fc33c9d921e1cb1eff1ffb'
  '94dae4d3eded2fab9ae879533d3680db'
  '287c2ad9b074cb5478db7692f385827c'
  '85560be5272ed68a88bb77a0a2293369')
+validpgpkeys=('992A96E075056E79CD8214F9873DB37572A37B36')
 
 build() {
cd "$srcdir/${pkgname}-${pkgver}"


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

2016-12-03 Thread Pierre Schmitz
Date: Saturday, December 3, 2016 @ 08:27:30
  Author: pierre
Revision: 197804

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

Added:
  php-memcache/repos/community-staging-i686/
  php-memcache/repos/community-staging-i686/PKGBUILD
(from rev 197803, php-memcache/trunk/PKGBUILD)
  php-memcache/repos/community-staging-i686/php-memcache.install
(from rev 197803, php-memcache/trunk/php-memcache.install)
  php-memcache/repos/community-staging-x86_64/
  php-memcache/repos/community-staging-x86_64/PKGBUILD
(from rev 197803, php-memcache/trunk/PKGBUILD)
  php-memcache/repos/community-staging-x86_64/php-memcache.install
(from rev 197803, php-memcache/trunk/php-memcache.install)
Deleted:
  php-memcache/repos/staging-i686/
  php-memcache/repos/staging-x86_64/

---+
 community-staging-i686/PKGBUILD   |   73 
 community-staging-i686/php-memcache.install   |   10 +++
 community-staging-x86_64/PKGBUILD |   73 
 community-staging-x86_64/php-memcache.install |   10 +++
 4 files changed, 166 insertions(+)

Copied: php-memcache/repos/community-staging-i686/PKGBUILD (from rev 197803, 
php-memcache/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-12-03 08:27:30 UTC (rev 197804)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+
+pkgname=php-memcache
+pkgver=3.0.8
+pkgrel=5
+_commit=fdbd46bbc6f53ed6e024521895e142cbfc9b3340
+pkgdesc="Memcache module for PHP"
+arch=('i686' 'x86_64')
+url="http://pecl.php.net/package/memcache";
+license=('PHP')
+depends=('php')
+makedepends=('git')
+checkdepends=('memcached')
+backup=('etc/php/conf.d/memcache.ini')
+install=php-memcache.install
+#source=(https://pecl.php.net/get/memcache-$pkgver.tgz)
+source=("git+https://github.com/websupport-sk/pecl-memcache.git#commit=$_commit";)
+sha256sums=('SKIP')
+
+prepare() {
+  cd "$srcdir/pecl-memcache"
+
+  # Disable UDP tests
+  sed -i "s|^\(\$udpPort2\? =\) .*|\1 0;|" tests/connect.inc
+
+  # Remove flaky tests
+  #   [tests/040.phpt] memcache->increment()/decrement() with multiple keys
+  #   [tests/042.phpt] memcache->set() with multiple values
+  #   strange keys [tests/005.phpt]
+  #   ini_set('session.save_handler') [tests/036.phpt]
+  #   ini_set('memcache.session_redundancy') [tests/044.phpt]
+  #   ini_set('session.save_handler') with unix domain socket [tests/053.phpt]
+  #   session locking [tests/057.phpt]
+  rm tests/{005,036,040,042,044,053,057}.phpt
+}
+
+build() {
+  cd "$srcdir/pecl-memcache"
+
+  phpize
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "$srcdir/pecl-memcache"
+
+  sed -i "s|^\(\$domainsocket =\) .*|\1 'unix://$PWD/memcached.sock';|" \
+tests/connect.inc
+
+  memcached_pids=()
+  memcached -p 11211 -U 11211 >/dev/null& memcached_pids+=($!)
+  memcached -p 11212 -U 11212 >/dev/null& memcached_pids+=($!)
+  memcached -s "$PWD/memcached.sock" >/dev/null & memcached_pids+=($!)
+
+  local ret=0
+  make test NO_INTERACTION=1 REPORT_EXIT_STATUS=1 || ret=1
+
+  kill ${memcached_pids[@]}
+
+  return $ret
+}
+
+package() {
+  cd "$srcdir/pecl-memcache"
+
+  make INSTALL_ROOT="$pkgdir" install
+  echo ';extension=memcache.so' >memcache.ini
+  install -Dm644 memcache.ini "$pkgdir/etc/php/conf.d/memcache.ini"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: php-memcache/repos/community-staging-i686/php-memcache.install (from 
rev 197803, php-memcache/trunk/php-memcache.install)
===
--- community-staging-i686/php-memcache.install (rev 0)
+++ community-staging-i686/php-memcache.install 2016-12-03 08:27:30 UTC (rev 
197804)
@@ -0,0 +1,10 @@
+post_install() {
+  echo '
+==> PHP extension
+
+A config file was stored under /etc/php/conf.d/. In order to use this
+extension make sure to uncomment it from its config file.
+'
+}
+
+# vim:set ts=2 sw=2 et:

Copied: php-memcache/repos/community-staging-x86_64/PKGBUILD (from rev 197803, 
php-memcache/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-12-03 08:27:30 UTC (rev 197804)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+
+pkgname=php-memcache
+pkgver=3.0.8
+pkgrel=5
+_commit=fdbd46bbc6f53ed6e024521895e142cbfc9b3340
+pkgdesc="Memcache module for PHP"
+arch=('i686' 'x86_64')
+url="http://pecl.php.net/package/memcache";
+license=('PHP')
+depends=('php')
+makedepends=('git')
+checkdepends=('memcached')
+backup=('etc/php/conf.d/memcache.ini')
+install=php-memcache.install
+#source=(https://pecl.php.net/get/memcache-$pkgver.tgz)
+source=("git+https://github.com/websupport-sk/pecl-memcache.g

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

2016-12-03 Thread Pierre Schmitz
Date: Saturday, December 3, 2016 @ 08:28:05
  Author: pierre
Revision: 197805

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

Added:
  php-geoip/repos/community-staging-i686/
  php-geoip/repos/community-staging-i686/PKGBUILD
(from rev 197804, php-geoip/trunk/PKGBUILD)
  php-geoip/repos/community-staging-x86_64/
  php-geoip/repos/community-staging-x86_64/PKGBUILD
(from rev 197804, php-geoip/trunk/PKGBUILD)
Deleted:
  php-geoip/repos/staging-i686/
  php-geoip/repos/staging-x86_64/

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

Copied: php-geoip/repos/community-staging-i686/PKGBUILD (from rev 197804, 
php-geoip/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-12-03 08:28:05 UTC (rev 197805)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+
+pkgname=php-geoip
+pkgver=1.1.1
+pkgrel=2
+pkgdesc="GeoIP module for PHP"
+arch=('i686' 'x86_64')
+url="http://pecl.php.net/package/geoip";
+license=('PHP')
+depends=('php' 'geoip')
+makedepends=('subversion')
+backup=('etc/php/conf.d/geoip.ini')
+source=(https://pecl.php.net/get/geoip-$pkgver.tgz)
+sha256sums=('b2d05c03019d46135c249b5a7fa0dbd43ca5ee98aea8ed807bc7aa90ac8c0f06')
+
+build() {
+  cd "$srcdir/geoip-$pkgver"
+
+  phpize
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/geoip-$pkgver"
+
+  make INSTALL_ROOT="$pkgdir" install
+  echo ';extension=geoip.so' >geoip.ini
+  install -Dm644 geoip.ini "$pkgdir/etc/php/conf.d/geoip.ini"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: php-geoip/repos/community-staging-x86_64/PKGBUILD (from rev 197804, 
php-geoip/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-12-03 08:28:05 UTC (rev 197805)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+
+pkgname=php-geoip
+pkgver=1.1.1
+pkgrel=2
+pkgdesc="GeoIP module for PHP"
+arch=('i686' 'x86_64')
+url="http://pecl.php.net/package/geoip";
+license=('PHP')
+depends=('php' 'geoip')
+makedepends=('subversion')
+backup=('etc/php/conf.d/geoip.ini')
+source=(https://pecl.php.net/get/geoip-$pkgver.tgz)
+sha256sums=('b2d05c03019d46135c249b5a7fa0dbd43ca5ee98aea8ed807bc7aa90ac8c0f06')
+
+build() {
+  cd "$srcdir/geoip-$pkgver"
+
+  phpize
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/geoip-$pkgver"
+
+  make INSTALL_ROOT="$pkgdir" install
+  echo ';extension=geoip.so' >geoip.ini
+  install -Dm644 geoip.ini "$pkgdir/etc/php/conf.d/geoip.ini"
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-12-03 Thread Pierre Schmitz
Date: Saturday, December 3, 2016 @ 08:27:02
  Author: pierre
Revision: 197803

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

Added:
  php-memcached/repos/community-staging-i686/
  php-memcached/repos/community-staging-i686/PKGBUILD
(from rev 197802, php-memcached/trunk/PKGBUILD)
  php-memcached/repos/community-staging-x86_64/
  php-memcached/repos/community-staging-x86_64/PKGBUILD
(from rev 197802, php-memcached/trunk/PKGBUILD)
Deleted:
  php-memcached/repos/staging-i686/
  php-memcached/repos/staging-x86_64/

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

Copied: php-memcached/repos/community-staging-i686/PKGBUILD (from rev 197802, 
php-memcached/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-12-03 08:27:02 UTC (rev 197803)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+
+pkgname=php-memcached
+pkgver=2.2.0
+_commit=e573a6e8fc815f12153d2afd561fc84f74811e2f
+pkgrel=4
+pkgdesc="PHP extension for interfacing with memcached via libmemcached library"
+arch=('i686' 'x86_64')
+url="http://pecl.php.net/package/memcached";
+license=('PHP')
+depends=('php' 'libmemcached')
+makedepends=('git')
+backup=('etc/php/conf.d/memcached.ini')
+source=("git+https://github.com/php-memcached-dev/php-memcached.git#commit=${_commit}";)
+sha256sums=('SKIP')
+
+build() {
+  cd "$srcdir/$pkgname"
+
+  phpize
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname"
+
+  make INSTALL_ROOT="$pkgdir" install
+
+  install -d "$pkgdir/etc/php/conf.d"
+  echo ';extension=memcached.so' >"$pkgdir/etc/php/conf.d/memcached.ini"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: php-memcached/repos/community-staging-x86_64/PKGBUILD (from rev 197802, 
php-memcached/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-12-03 08:27:02 UTC (rev 197803)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+
+pkgname=php-memcached
+pkgver=2.2.0
+_commit=e573a6e8fc815f12153d2afd561fc84f74811e2f
+pkgrel=4
+pkgdesc="PHP extension for interfacing with memcached via libmemcached library"
+arch=('i686' 'x86_64')
+url="http://pecl.php.net/package/memcached";
+license=('PHP')
+depends=('php' 'libmemcached')
+makedepends=('git')
+backup=('etc/php/conf.d/memcached.ini')
+source=("git+https://github.com/php-memcached-dev/php-memcached.git#commit=${_commit}";)
+sha256sums=('SKIP')
+
+build() {
+  cd "$srcdir/$pkgname"
+
+  phpize
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname"
+
+  make INSTALL_ROOT="$pkgdir" install
+
+  install -d "$pkgdir/etc/php/conf.d"
+  echo ';extension=memcached.so' >"$pkgdir/etc/php/conf.d/memcached.ini"
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-12-03 Thread Pierre Schmitz
Date: Saturday, December 3, 2016 @ 08:26:14
  Author: pierre
Revision: 197802

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

Added:
  php-mongodb/repos/community-staging-i686/
  php-mongodb/repos/community-staging-i686/PKGBUILD
(from rev 197801, php-mongodb/trunk/PKGBUILD)
  php-mongodb/repos/community-staging-i686/mongodb.ini
(from rev 197801, php-mongodb/trunk/mongodb.ini)
  php-mongodb/repos/community-staging-i686/php-mongodb.install
(from rev 197801, php-mongodb/trunk/php-mongodb.install)
  php-mongodb/repos/community-staging-x86_64/
  php-mongodb/repos/community-staging-x86_64/PKGBUILD
(from rev 197801, php-mongodb/trunk/PKGBUILD)
  php-mongodb/repos/community-staging-x86_64/mongodb.ini
(from rev 197801, php-mongodb/trunk/mongodb.ini)
  php-mongodb/repos/community-staging-x86_64/php-mongodb.install
(from rev 197801, php-mongodb/trunk/php-mongodb.install)
Deleted:
  php-mongodb/repos/staging-i686/
  php-mongodb/repos/staging-x86_64/

--+
 community-staging-i686/PKGBUILD  |   37 +
 community-staging-i686/mongodb.ini   |2 +
 community-staging-i686/php-mongodb.install   |   12 
 community-staging-x86_64/PKGBUILD|   37 +
 community-staging-x86_64/mongodb.ini |2 +
 community-staging-x86_64/php-mongodb.install |   12 
 6 files changed, 102 insertions(+)

Copied: php-mongodb/repos/community-staging-i686/PKGBUILD (from rev 197801, 
php-mongodb/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-12-03 08:26:14 UTC (rev 197802)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Maintainer: Felix Yan 
+# Contributor: Martin Striz < ms AT martinstriz DOT cz >
+# Contributor: Jarek Sedlacek 
+
+pkgname=php-mongodb
+pkgver=1.2.0
+pkgrel=3
+pkgdesc="MongoDB driver for PHP"
+arch=("i686" "x86_64")
+url="http://mongodb.github.io/mongo-php-driver";
+license=("Apache")
+#depends=('php' 'libmongoc')
+depends=('php')
+makedepends=('re2c')
+backup=("etc/php/conf.d/mongodb.ini")
+install=php-mongodb.install
+source=(
+   "https://pecl.php.net/get/mongodb-$pkgver.tgz";
+   "mongodb.ini"
+)
+sha256sums=('72630b038c7b57631a1d3931bcc1cb237fe79a25498b56ad65cc536d1bb0aed4'
+'242b9ffea6bd84f813c7fc2a767eaa89f83577c5ff10ff36aecec2ca308ff72b')
+
+build() {
+   cd mongodb-$pkgver
+   phpize
+   #./configure --prefix=/usr --with-libbson --with-libmongoc
+   ./configure --prefix=/usr
+}
+
+package() {
+   cd mongodb-$pkgver
+   make INSTALL_ROOT="$pkgdir" install
+   install -Dm644 "$srcdir/mongodb.ini" 
"$pkgdir/etc/php/conf.d/mongodb.ini"
+}

Copied: php-mongodb/repos/community-staging-i686/mongodb.ini (from rev 197801, 
php-mongodb/trunk/mongodb.ini)
===
--- community-staging-i686/mongodb.ini  (rev 0)
+++ community-staging-i686/mongodb.ini  2016-12-03 08:26:14 UTC (rev 197802)
@@ -0,0 +1,2 @@
+; Tell PHP to load the MongoDB Extension on startup
+extension=mongodb.so

Copied: php-mongodb/repos/community-staging-i686/php-mongodb.install (from rev 
197801, php-mongodb/trunk/php-mongodb.install)
===
--- community-staging-i686/php-mongodb.install  (rev 0)
+++ community-staging-i686/php-mongodb.install  2016-12-03 08:26:14 UTC (rev 
197802)
@@ -0,0 +1,12 @@
+post_install() {
+  warning
+}
+
+post_upgrade() {
+  warning
+}
+
+warning() {
+  printf "WARNING:\nWhen moving from 'php-mongo' to 'php-mongodb' keep into 
mind the extension's api is not compatible\n\n"
+  return 0
+}

Copied: php-mongodb/repos/community-staging-x86_64/PKGBUILD (from rev 197801, 
php-mongodb/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-12-03 08:26:14 UTC (rev 197802)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Maintainer: Felix Yan 
+# Contributor: Martin Striz < ms AT martinstriz DOT cz >
+# Contributor: Jarek Sedlacek 
+
+pkgname=php-mongodb
+pkgver=1.2.0
+pkgrel=3
+pkgdesc="MongoDB driver for PHP"
+arch=("i686" "x86_64")
+url="http://mongodb.github.io/mongo-php-driver";
+license=("Apache")
+#depends=('php' 'libmongoc')
+depends=('php')
+makedepends=('re2c')
+backup=("etc/php/conf.d/mongodb.ini")
+install=php-mongodb.install
+source=(
+   "https://pecl.php.net/get/mongodb-$pkgver.tgz";
+   "mongodb.ini"
+)
+sha256sums=('72630b038c7b57631a1d3931bcc1cb237fe79a25498b56ad65cc536d1bb0aed4'
+'242b9ffea6bd84f813c7fc2a767eaa89f83577c5f

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

2016-12-03 Thread Pierre Schmitz
Date: Saturday, December 3, 2016 @ 08:25:29
  Author: pierre
Revision: 197801

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

Added:
  xdebug/repos/community-staging-i686/
  xdebug/repos/community-staging-i686/PKGBUILD
(from rev 197800, xdebug/trunk/PKGBUILD)
  xdebug/repos/community-staging-i686/xdebug.ini
(from rev 197800, xdebug/trunk/xdebug.ini)
  xdebug/repos/community-staging-x86_64/
  xdebug/repos/community-staging-x86_64/PKGBUILD
(from rev 197800, xdebug/trunk/PKGBUILD)
  xdebug/repos/community-staging-x86_64/xdebug.ini
(from rev 197800, xdebug/trunk/xdebug.ini)
Deleted:
  xdebug/repos/staging-i686/
  xdebug/repos/staging-x86_64/

-+
 community-staging-i686/PKGBUILD |   39 ++
 community-staging-i686/xdebug.ini   |5 
 community-staging-x86_64/PKGBUILD   |   39 ++
 community-staging-x86_64/xdebug.ini |5 
 4 files changed, 88 insertions(+)

Copied: xdebug/repos/community-staging-i686/PKGBUILD (from rev 197800, 
xdebug/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-12-03 08:25:29 UTC (rev 197801)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jonathan Wiersma 
+# Contributor: Jonathan Wiersma 
+# Contributor: sracker 
+
+pkgname=xdebug
+pkgver=2.5.0RC1
+pkgrel=1
+pkgdesc="PHP debugging extension"
+arch=('i686' 'x86_64')
+url="http://www.xdebug.org";
+license=('GPL')
+depends=('php')
+backup=('etc/php/conf.d/xdebug.ini')
+source=("https://www.xdebug.org/files/$pkgname-${pkgver,,}.tgz";
+   'xdebug.ini')
+sha256sums=('4b67bde62a32068cb48eaa5c683a390721e919f6b762d7da7ba1d72cdd01721a'
+'7c66883dc2ade69069ef84e30188b25630748aa9c8b0dd123727c00505421205')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  phpize
+  ./configure --prefix=/usr --enable-xdebug
+  make
+
+  cd "$srcdir"/$pkgname-$pkgver/debugclient
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver/debugclient
+  make DESTDIR="$pkgdir" install
+
+  cd "$srcdir"/$pkgname-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+  install -D -m 644 "$srcdir"/xdebug.ini "$pkgdir"/etc/php/conf.d/xdebug.ini
+}

Copied: xdebug/repos/community-staging-i686/xdebug.ini (from rev 197800, 
xdebug/trunk/xdebug.ini)
===
--- community-staging-i686/xdebug.ini   (rev 0)
+++ community-staging-i686/xdebug.ini   2016-12-03 08:25:29 UTC (rev 197801)
@@ -0,0 +1,5 @@
+;zend_extension=xdebug.so
+;xdebug.remote_enable=on
+;xdebug.remote_host=127.0.0.1
+;xdebug.remote_port=9000
+;xdebug.remote_handler=dbgp

Copied: xdebug/repos/community-staging-x86_64/PKGBUILD (from rev 197800, 
xdebug/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-12-03 08:25:29 UTC (rev 197801)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jonathan Wiersma 
+# Contributor: Jonathan Wiersma 
+# Contributor: sracker 
+
+pkgname=xdebug
+pkgver=2.5.0RC1
+pkgrel=1
+pkgdesc="PHP debugging extension"
+arch=('i686' 'x86_64')
+url="http://www.xdebug.org";
+license=('GPL')
+depends=('php')
+backup=('etc/php/conf.d/xdebug.ini')
+source=("https://www.xdebug.org/files/$pkgname-${pkgver,,}.tgz";
+   'xdebug.ini')
+sha256sums=('4b67bde62a32068cb48eaa5c683a390721e919f6b762d7da7ba1d72cdd01721a'
+'7c66883dc2ade69069ef84e30188b25630748aa9c8b0dd123727c00505421205')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  phpize
+  ./configure --prefix=/usr --enable-xdebug
+  make
+
+  cd "$srcdir"/$pkgname-$pkgver/debugclient
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver/debugclient
+  make DESTDIR="$pkgdir" install
+
+  cd "$srcdir"/$pkgname-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+  install -D -m 644 "$srcdir"/xdebug.ini "$pkgdir"/etc/php/conf.d/xdebug.ini
+}

Copied: xdebug/repos/community-staging-x86_64/xdebug.ini (from rev 197800, 
xdebug/trunk/xdebug.ini)
===
--- community-staging-x86_64/xdebug.ini (rev 0)
+++ community-staging-x86_64/xdebug.ini 2016-12-03 08:25:29 UTC (rev 197801)
@@ -0,0 +1,5 @@
+;zend_extension=xdebug.so
+;xdebug.remote_enable=on
+;xdebug.remote_host=127.0.0.1
+;xdebug.remote_port=9000
+;xdebug.remote_handler=dbgp


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

2016-12-03 Thread Pierre Schmitz
Date: Saturday, December 3, 2016 @ 08:24:23
  Author: pierre
Revision: 197800

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

Added:
  xdebug/repos/staging-i686/
  xdebug/repos/staging-i686/PKGBUILD
(from rev 197799, xdebug/trunk/PKGBUILD)
  xdebug/repos/staging-i686/xdebug.ini
(from rev 197799, xdebug/trunk/xdebug.ini)
  xdebug/repos/staging-x86_64/
  xdebug/repos/staging-x86_64/PKGBUILD
(from rev 197799, xdebug/trunk/PKGBUILD)
  xdebug/repos/staging-x86_64/xdebug.ini
(from rev 197799, xdebug/trunk/xdebug.ini)

---+
 staging-i686/PKGBUILD |   39 +++
 staging-i686/xdebug.ini   |5 +
 staging-x86_64/PKGBUILD   |   39 +++
 staging-x86_64/xdebug.ini |5 +
 4 files changed, 88 insertions(+)

Copied: xdebug/repos/staging-i686/PKGBUILD (from rev 197799, 
xdebug/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-12-03 08:24:23 UTC (rev 197800)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jonathan Wiersma 
+# Contributor: Jonathan Wiersma 
+# Contributor: sracker 
+
+pkgname=xdebug
+pkgver=2.5.0RC1
+pkgrel=1
+pkgdesc="PHP debugging extension"
+arch=('i686' 'x86_64')
+url="http://www.xdebug.org";
+license=('GPL')
+depends=('php')
+backup=('etc/php/conf.d/xdebug.ini')
+source=("https://www.xdebug.org/files/$pkgname-${pkgver,,}.tgz";
+   'xdebug.ini')
+sha256sums=('4b67bde62a32068cb48eaa5c683a390721e919f6b762d7da7ba1d72cdd01721a'
+'7c66883dc2ade69069ef84e30188b25630748aa9c8b0dd123727c00505421205')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  phpize
+  ./configure --prefix=/usr --enable-xdebug
+  make
+
+  cd "$srcdir"/$pkgname-$pkgver/debugclient
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver/debugclient
+  make DESTDIR="$pkgdir" install
+
+  cd "$srcdir"/$pkgname-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+  install -D -m 644 "$srcdir"/xdebug.ini "$pkgdir"/etc/php/conf.d/xdebug.ini
+}

Copied: xdebug/repos/staging-i686/xdebug.ini (from rev 197799, 
xdebug/trunk/xdebug.ini)
===
--- staging-i686/xdebug.ini (rev 0)
+++ staging-i686/xdebug.ini 2016-12-03 08:24:23 UTC (rev 197800)
@@ -0,0 +1,5 @@
+;zend_extension=xdebug.so
+;xdebug.remote_enable=on
+;xdebug.remote_host=127.0.0.1
+;xdebug.remote_port=9000
+;xdebug.remote_handler=dbgp

Copied: xdebug/repos/staging-x86_64/PKGBUILD (from rev 197799, 
xdebug/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-12-03 08:24:23 UTC (rev 197800)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jonathan Wiersma 
+# Contributor: Jonathan Wiersma 
+# Contributor: sracker 
+
+pkgname=xdebug
+pkgver=2.5.0RC1
+pkgrel=1
+pkgdesc="PHP debugging extension"
+arch=('i686' 'x86_64')
+url="http://www.xdebug.org";
+license=('GPL')
+depends=('php')
+backup=('etc/php/conf.d/xdebug.ini')
+source=("https://www.xdebug.org/files/$pkgname-${pkgver,,}.tgz";
+   'xdebug.ini')
+sha256sums=('4b67bde62a32068cb48eaa5c683a390721e919f6b762d7da7ba1d72cdd01721a'
+'7c66883dc2ade69069ef84e30188b25630748aa9c8b0dd123727c00505421205')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  phpize
+  ./configure --prefix=/usr --enable-xdebug
+  make
+
+  cd "$srcdir"/$pkgname-$pkgver/debugclient
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver/debugclient
+  make DESTDIR="$pkgdir" install
+
+  cd "$srcdir"/$pkgname-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+  install -D -m 644 "$srcdir"/xdebug.ini "$pkgdir"/etc/php/conf.d/xdebug.ini
+}

Copied: xdebug/repos/staging-x86_64/xdebug.ini (from rev 197799, 
xdebug/trunk/xdebug.ini)
===
--- staging-x86_64/xdebug.ini   (rev 0)
+++ staging-x86_64/xdebug.ini   2016-12-03 08:24:23 UTC (rev 197800)
@@ -0,0 +1,5 @@
+;zend_extension=xdebug.so
+;xdebug.remote_enable=on
+;xdebug.remote_host=127.0.0.1
+;xdebug.remote_port=9000
+;xdebug.remote_handler=dbgp


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

2016-12-03 Thread Pierre Schmitz
Date: Saturday, December 3, 2016 @ 08:24:11
  Author: pierre
Revision: 197799

upgpkg: xdebug 2.5.0RC1-1

Modified:
  xdebug/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 08:23:10 UTC (rev 197798)
+++ PKGBUILD2016-12-03 08:24:11 UTC (rev 197799)
@@ -5,7 +5,7 @@
 # Contributor: sracker 
 
 pkgname=xdebug
-pkgver=2.4.1
+pkgver=2.5.0RC1
 pkgrel=1
 pkgdesc="PHP debugging extension"
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 backup=('etc/php/conf.d/xdebug.ini')
 source=("https://www.xdebug.org/files/$pkgname-${pkgver,,}.tgz";
'xdebug.ini')
-sha256sums=('23c8786e0f5aae67b1e5035972bfff282710fb84c483887cebceb8ef5bbdf8ef'
+sha256sums=('4b67bde62a32068cb48eaa5c683a390721e919f6b762d7da7ba1d72cdd01721a'
 '7c66883dc2ade69069ef84e30188b25630748aa9c8b0dd123727c00505421205')
 
 build() {


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

2016-12-03 Thread Pierre Schmitz
Date: Saturday, December 3, 2016 @ 08:22:58
  Author: pierre
Revision: 197797

upgpkg: php-mongodb 1.2.0-3

Modified:
  php-mongodb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 08:21:20 UTC (rev 197796)
+++ PKGBUILD2016-12-03 08:22:58 UTC (rev 197797)
@@ -6,7 +6,7 @@
 
 pkgname=php-mongodb
 pkgver=1.2.0
-pkgrel=2
+pkgrel=3
 pkgdesc="MongoDB driver for PHP"
 arch=("i686" "x86_64")
 url="http://mongodb.github.io/mongo-php-driver";


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

2016-12-03 Thread Pierre Schmitz
Date: Saturday, December 3, 2016 @ 08:23:10
  Author: pierre
Revision: 197798

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

Added:
  php-mongodb/repos/staging-i686/
  php-mongodb/repos/staging-i686/PKGBUILD
(from rev 197797, php-mongodb/trunk/PKGBUILD)
  php-mongodb/repos/staging-i686/mongodb.ini
(from rev 197797, php-mongodb/trunk/mongodb.ini)
  php-mongodb/repos/staging-i686/php-mongodb.install
(from rev 197797, php-mongodb/trunk/php-mongodb.install)
  php-mongodb/repos/staging-x86_64/
  php-mongodb/repos/staging-x86_64/PKGBUILD
(from rev 197797, php-mongodb/trunk/PKGBUILD)
  php-mongodb/repos/staging-x86_64/mongodb.ini
(from rev 197797, php-mongodb/trunk/mongodb.ini)
  php-mongodb/repos/staging-x86_64/php-mongodb.install
(from rev 197797, php-mongodb/trunk/php-mongodb.install)

+
 staging-i686/PKGBUILD  |   37 +++
 staging-i686/mongodb.ini   |2 +
 staging-i686/php-mongodb.install   |   12 +++
 staging-x86_64/PKGBUILD|   37 +++
 staging-x86_64/mongodb.ini |2 +
 staging-x86_64/php-mongodb.install |   12 +++
 6 files changed, 102 insertions(+)

Copied: php-mongodb/repos/staging-i686/PKGBUILD (from rev 197797, 
php-mongodb/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-12-03 08:23:10 UTC (rev 197798)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Maintainer: Felix Yan 
+# Contributor: Martin Striz < ms AT martinstriz DOT cz >
+# Contributor: Jarek Sedlacek 
+
+pkgname=php-mongodb
+pkgver=1.2.0
+pkgrel=3
+pkgdesc="MongoDB driver for PHP"
+arch=("i686" "x86_64")
+url="http://mongodb.github.io/mongo-php-driver";
+license=("Apache")
+#depends=('php' 'libmongoc')
+depends=('php')
+makedepends=('re2c')
+backup=("etc/php/conf.d/mongodb.ini")
+install=php-mongodb.install
+source=(
+   "https://pecl.php.net/get/mongodb-$pkgver.tgz";
+   "mongodb.ini"
+)
+sha256sums=('72630b038c7b57631a1d3931bcc1cb237fe79a25498b56ad65cc536d1bb0aed4'
+'242b9ffea6bd84f813c7fc2a767eaa89f83577c5ff10ff36aecec2ca308ff72b')
+
+build() {
+   cd mongodb-$pkgver
+   phpize
+   #./configure --prefix=/usr --with-libbson --with-libmongoc
+   ./configure --prefix=/usr
+}
+
+package() {
+   cd mongodb-$pkgver
+   make INSTALL_ROOT="$pkgdir" install
+   install -Dm644 "$srcdir/mongodb.ini" 
"$pkgdir/etc/php/conf.d/mongodb.ini"
+}

Copied: php-mongodb/repos/staging-i686/mongodb.ini (from rev 197797, 
php-mongodb/trunk/mongodb.ini)
===
--- staging-i686/mongodb.ini(rev 0)
+++ staging-i686/mongodb.ini2016-12-03 08:23:10 UTC (rev 197798)
@@ -0,0 +1,2 @@
+; Tell PHP to load the MongoDB Extension on startup
+extension=mongodb.so

Copied: php-mongodb/repos/staging-i686/php-mongodb.install (from rev 197797, 
php-mongodb/trunk/php-mongodb.install)
===
--- staging-i686/php-mongodb.install(rev 0)
+++ staging-i686/php-mongodb.install2016-12-03 08:23:10 UTC (rev 197798)
@@ -0,0 +1,12 @@
+post_install() {
+  warning
+}
+
+post_upgrade() {
+  warning
+}
+
+warning() {
+  printf "WARNING:\nWhen moving from 'php-mongo' to 'php-mongodb' keep into 
mind the extension's api is not compatible\n\n"
+  return 0
+}

Copied: php-mongodb/repos/staging-x86_64/PKGBUILD (from rev 197797, 
php-mongodb/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-12-03 08:23:10 UTC (rev 197798)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Maintainer: Felix Yan 
+# Contributor: Martin Striz < ms AT martinstriz DOT cz >
+# Contributor: Jarek Sedlacek 
+
+pkgname=php-mongodb
+pkgver=1.2.0
+pkgrel=3
+pkgdesc="MongoDB driver for PHP"
+arch=("i686" "x86_64")
+url="http://mongodb.github.io/mongo-php-driver";
+license=("Apache")
+#depends=('php' 'libmongoc')
+depends=('php')
+makedepends=('re2c')
+backup=("etc/php/conf.d/mongodb.ini")
+install=php-mongodb.install
+source=(
+   "https://pecl.php.net/get/mongodb-$pkgver.tgz";
+   "mongodb.ini"
+)
+sha256sums=('72630b038c7b57631a1d3931bcc1cb237fe79a25498b56ad65cc536d1bb0aed4'
+'242b9ffea6bd84f813c7fc2a767eaa89f83577c5ff10ff36aecec2ca308ff72b')
+
+build() {
+   cd mongodb-$pkgver
+   phpize
+   #./configure --prefix=/usr --with-libbson --with-libmongoc
+   ./configure --prefix=/usr
+}
+
+package() {
+   cd mongodb-$pkgver
+   make INSTALL_ROOT="$pkgdir" install
+   install -Dm644 "$srcdir/mongodb.ini" 
"$pkgdir/et

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

2016-12-03 Thread Pierre Schmitz
Date: Saturday, December 3, 2016 @ 08:21:20
  Author: pierre
Revision: 197796

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

Added:
  php-memcached/repos/staging-i686/
  php-memcached/repos/staging-i686/PKGBUILD
(from rev 197795, php-memcached/trunk/PKGBUILD)
  php-memcached/repos/staging-x86_64/
  php-memcached/repos/staging-x86_64/PKGBUILD
(from rev 197795, php-memcached/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   35 +++
 staging-x86_64/PKGBUILD |   35 +++
 2 files changed, 70 insertions(+)

Copied: php-memcached/repos/staging-i686/PKGBUILD (from rev 197795, 
php-memcached/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-12-03 08:21:20 UTC (rev 197796)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+
+pkgname=php-memcached
+pkgver=2.2.0
+_commit=e573a6e8fc815f12153d2afd561fc84f74811e2f
+pkgrel=4
+pkgdesc="PHP extension for interfacing with memcached via libmemcached library"
+arch=('i686' 'x86_64')
+url="http://pecl.php.net/package/memcached";
+license=('PHP')
+depends=('php' 'libmemcached')
+makedepends=('git')
+backup=('etc/php/conf.d/memcached.ini')
+source=("git+https://github.com/php-memcached-dev/php-memcached.git#commit=${_commit}";)
+sha256sums=('SKIP')
+
+build() {
+  cd "$srcdir/$pkgname"
+
+  phpize
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname"
+
+  make INSTALL_ROOT="$pkgdir" install
+
+  install -d "$pkgdir/etc/php/conf.d"
+  echo ';extension=memcached.so' >"$pkgdir/etc/php/conf.d/memcached.ini"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: php-memcached/repos/staging-x86_64/PKGBUILD (from rev 197795, 
php-memcached/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-12-03 08:21:20 UTC (rev 197796)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+
+pkgname=php-memcached
+pkgver=2.2.0
+_commit=e573a6e8fc815f12153d2afd561fc84f74811e2f
+pkgrel=4
+pkgdesc="PHP extension for interfacing with memcached via libmemcached library"
+arch=('i686' 'x86_64')
+url="http://pecl.php.net/package/memcached";
+license=('PHP')
+depends=('php' 'libmemcached')
+makedepends=('git')
+backup=('etc/php/conf.d/memcached.ini')
+source=("git+https://github.com/php-memcached-dev/php-memcached.git#commit=${_commit}";)
+sha256sums=('SKIP')
+
+build() {
+  cd "$srcdir/$pkgname"
+
+  phpize
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname"
+
+  make INSTALL_ROOT="$pkgdir" install
+
+  install -d "$pkgdir/etc/php/conf.d"
+  echo ';extension=memcached.so' >"$pkgdir/etc/php/conf.d/memcached.ini"
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-12-03 Thread Pierre Schmitz
Date: Saturday, December 3, 2016 @ 08:21:09
  Author: pierre
Revision: 197795

upgpkg: php-memcached 2.2.0-4

Modified:
  php-memcached/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 08:20:09 UTC (rev 197794)
+++ PKGBUILD2016-12-03 08:21:09 UTC (rev 197795)
@@ -4,7 +4,7 @@
 pkgname=php-memcached
 pkgver=2.2.0
 _commit=e573a6e8fc815f12153d2afd561fc84f74811e2f
-pkgrel=3
+pkgrel=4
 pkgdesc="PHP extension for interfacing with memcached via libmemcached library"
 arch=('i686' 'x86_64')
 url="http://pecl.php.net/package/memcached";


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

2016-12-03 Thread Pierre Schmitz
Date: Saturday, December 3, 2016 @ 08:19:59
  Author: pierre
Revision: 197793

upgpkg: php-memcache 3.0.8-5

Modified:
  php-memcache/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 08:18:53 UTC (rev 197792)
+++ PKGBUILD2016-12-03 08:19:59 UTC (rev 197793)
@@ -3,7 +3,7 @@
 
 pkgname=php-memcache
 pkgver=3.0.8
-pkgrel=4
+pkgrel=5
 _commit=fdbd46bbc6f53ed6e024521895e142cbfc9b3340
 pkgdesc="Memcache module for PHP"
 arch=('i686' 'x86_64')
@@ -27,7 +27,12 @@
   # Remove flaky tests
   #   [tests/040.phpt] memcache->increment()/decrement() with multiple keys
   #   [tests/042.phpt] memcache->set() with multiple values
-  rm tests/{040,042}.phpt
+  #   strange keys [tests/005.phpt]
+  #   ini_set('session.save_handler') [tests/036.phpt]
+  #   ini_set('memcache.session_redundancy') [tests/044.phpt]
+  #   ini_set('session.save_handler') with unix domain socket [tests/053.phpt]
+  #   session locking [tests/057.phpt]
+  rm tests/{005,036,040,042,044,053,057}.phpt
 }
 
 build() {


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

2016-12-03 Thread Pierre Schmitz
Date: Saturday, December 3, 2016 @ 08:20:09
  Author: pierre
Revision: 197794

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

Added:
  php-memcache/repos/staging-i686/
  php-memcache/repos/staging-i686/PKGBUILD
(from rev 197793, php-memcache/trunk/PKGBUILD)
  php-memcache/repos/staging-i686/php-memcache.install
(from rev 197793, php-memcache/trunk/php-memcache.install)
  php-memcache/repos/staging-x86_64/
  php-memcache/repos/staging-x86_64/PKGBUILD
(from rev 197793, php-memcache/trunk/PKGBUILD)
  php-memcache/repos/staging-x86_64/php-memcache.install
(from rev 197793, php-memcache/trunk/php-memcache.install)

-+
 staging-i686/PKGBUILD   |   73 ++
 staging-i686/php-memcache.install   |   10 
 staging-x86_64/PKGBUILD |   73 ++
 staging-x86_64/php-memcache.install |   10 
 4 files changed, 166 insertions(+)

Copied: php-memcache/repos/staging-i686/PKGBUILD (from rev 197793, 
php-memcache/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-12-03 08:20:09 UTC (rev 197794)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+
+pkgname=php-memcache
+pkgver=3.0.8
+pkgrel=5
+_commit=fdbd46bbc6f53ed6e024521895e142cbfc9b3340
+pkgdesc="Memcache module for PHP"
+arch=('i686' 'x86_64')
+url="http://pecl.php.net/package/memcache";
+license=('PHP')
+depends=('php')
+makedepends=('git')
+checkdepends=('memcached')
+backup=('etc/php/conf.d/memcache.ini')
+install=php-memcache.install
+#source=(https://pecl.php.net/get/memcache-$pkgver.tgz)
+source=("git+https://github.com/websupport-sk/pecl-memcache.git#commit=$_commit";)
+sha256sums=('SKIP')
+
+prepare() {
+  cd "$srcdir/pecl-memcache"
+
+  # Disable UDP tests
+  sed -i "s|^\(\$udpPort2\? =\) .*|\1 0;|" tests/connect.inc
+
+  # Remove flaky tests
+  #   [tests/040.phpt] memcache->increment()/decrement() with multiple keys
+  #   [tests/042.phpt] memcache->set() with multiple values
+  #   strange keys [tests/005.phpt]
+  #   ini_set('session.save_handler') [tests/036.phpt]
+  #   ini_set('memcache.session_redundancy') [tests/044.phpt]
+  #   ini_set('session.save_handler') with unix domain socket [tests/053.phpt]
+  #   session locking [tests/057.phpt]
+  rm tests/{005,036,040,042,044,053,057}.phpt
+}
+
+build() {
+  cd "$srcdir/pecl-memcache"
+
+  phpize
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "$srcdir/pecl-memcache"
+
+  sed -i "s|^\(\$domainsocket =\) .*|\1 'unix://$PWD/memcached.sock';|" \
+tests/connect.inc
+
+  memcached_pids=()
+  memcached -p 11211 -U 11211 >/dev/null& memcached_pids+=($!)
+  memcached -p 11212 -U 11212 >/dev/null& memcached_pids+=($!)
+  memcached -s "$PWD/memcached.sock" >/dev/null & memcached_pids+=($!)
+
+  local ret=0
+  make test NO_INTERACTION=1 REPORT_EXIT_STATUS=1 || ret=1
+
+  kill ${memcached_pids[@]}
+
+  return $ret
+}
+
+package() {
+  cd "$srcdir/pecl-memcache"
+
+  make INSTALL_ROOT="$pkgdir" install
+  echo ';extension=memcache.so' >memcache.ini
+  install -Dm644 memcache.ini "$pkgdir/etc/php/conf.d/memcache.ini"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: php-memcache/repos/staging-i686/php-memcache.install (from rev 197793, 
php-memcache/trunk/php-memcache.install)
===
--- staging-i686/php-memcache.install   (rev 0)
+++ staging-i686/php-memcache.install   2016-12-03 08:20:09 UTC (rev 197794)
@@ -0,0 +1,10 @@
+post_install() {
+  echo '
+==> PHP extension
+
+A config file was stored under /etc/php/conf.d/. In order to use this
+extension make sure to uncomment it from its config file.
+'
+}
+
+# vim:set ts=2 sw=2 et:

Copied: php-memcache/repos/staging-x86_64/PKGBUILD (from rev 197793, 
php-memcache/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-12-03 08:20:09 UTC (rev 197794)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+
+pkgname=php-memcache
+pkgver=3.0.8
+pkgrel=5
+_commit=fdbd46bbc6f53ed6e024521895e142cbfc9b3340
+pkgdesc="Memcache module for PHP"
+arch=('i686' 'x86_64')
+url="http://pecl.php.net/package/memcache";
+license=('PHP')
+depends=('php')
+makedepends=('git')
+checkdepends=('memcached')
+backup=('etc/php/conf.d/memcache.ini')
+install=php-memcache.install
+#source=(https://pecl.php.net/get/memcache-$pkgver.tgz)
+source=("git+https://github.com/websupport-sk/pecl-memcache.git#commit=$_commit";)
+sha256sums=('SKIP')
+
+prepare() {
+  cd "$srcdir/pecl-memcache"
+
+  # Disable UDP tests
+  sed -i "s|^\(\$udpPort2\? =\) .*|\1 0;|" tests/connect.inc
+
+  # Remove flaky tests
+  #   [tests/040.phpt] memcache->increment()/decrement() with mult

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

2016-12-03 Thread Pierre Schmitz
Date: Saturday, December 3, 2016 @ 08:18:42
  Author: pierre
Revision: 197791

upgpkg: php-geoip 1.1.1-2

Modified:
  php-geoip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 07:36:39 UTC (rev 197790)
+++ PKGBUILD2016-12-03 08:18:42 UTC (rev 197791)
@@ -3,7 +3,7 @@
 
 pkgname=php-geoip
 pkgver=1.1.1
-pkgrel=1
+pkgrel=2
 pkgdesc="GeoIP module for PHP"
 arch=('i686' 'x86_64')
 url="http://pecl.php.net/package/geoip";


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

2016-12-03 Thread Pierre Schmitz
Date: Saturday, December 3, 2016 @ 08:18:53
  Author: pierre
Revision: 197792

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

Added:
  php-geoip/repos/staging-i686/
  php-geoip/repos/staging-i686/PKGBUILD
(from rev 197791, php-geoip/trunk/PKGBUILD)
  php-geoip/repos/staging-x86_64/
  php-geoip/repos/staging-x86_64/PKGBUILD
(from rev 197791, php-geoip/trunk/PKGBUILD)

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

Copied: php-geoip/repos/staging-i686/PKGBUILD (from rev 197791, 
php-geoip/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-12-03 08:18:53 UTC (rev 197792)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+
+pkgname=php-geoip
+pkgver=1.1.1
+pkgrel=2
+pkgdesc="GeoIP module for PHP"
+arch=('i686' 'x86_64')
+url="http://pecl.php.net/package/geoip";
+license=('PHP')
+depends=('php' 'geoip')
+makedepends=('subversion')
+backup=('etc/php/conf.d/geoip.ini')
+source=(https://pecl.php.net/get/geoip-$pkgver.tgz)
+sha256sums=('b2d05c03019d46135c249b5a7fa0dbd43ca5ee98aea8ed807bc7aa90ac8c0f06')
+
+build() {
+  cd "$srcdir/geoip-$pkgver"
+
+  phpize
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/geoip-$pkgver"
+
+  make INSTALL_ROOT="$pkgdir" install
+  echo ';extension=geoip.so' >geoip.ini
+  install -Dm644 geoip.ini "$pkgdir/etc/php/conf.d/geoip.ini"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: php-geoip/repos/staging-x86_64/PKGBUILD (from rev 197791, 
php-geoip/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-12-03 08:18:53 UTC (rev 197792)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+
+pkgname=php-geoip
+pkgver=1.1.1
+pkgrel=2
+pkgdesc="GeoIP module for PHP"
+arch=('i686' 'x86_64')
+url="http://pecl.php.net/package/geoip";
+license=('PHP')
+depends=('php' 'geoip')
+makedepends=('subversion')
+backup=('etc/php/conf.d/geoip.ini')
+source=(https://pecl.php.net/get/geoip-$pkgver.tgz)
+sha256sums=('b2d05c03019d46135c249b5a7fa0dbd43ca5ee98aea8ed807bc7aa90ac8c0f06')
+
+build() {
+  cd "$srcdir/geoip-$pkgver"
+
+  phpize
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/geoip-$pkgver"
+
+  make INSTALL_ROOT="$pkgdir" install
+  echo ';extension=geoip.so' >geoip.ini
+  install -Dm644 geoip.ini "$pkgdir/etc/php/conf.d/geoip.ini"
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-12-03 Thread Pierre Schmitz
Date: Saturday, December 3, 2016 @ 08:17:23
  Author: pierre
Revision: 282776

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

Added:
  php-apcu-bc/repos/staging-i686/
  php-apcu-bc/repos/staging-i686/PKGBUILD
(from rev 282775, php-apcu-bc/trunk/PKGBUILD)
  php-apcu-bc/repos/staging-x86_64/
  php-apcu-bc/repos/staging-x86_64/PKGBUILD
(from rev 282775, php-apcu-bc/trunk/PKGBUILD)

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

Copied: php-apcu-bc/repos/staging-i686/PKGBUILD (from rev 282775, 
php-apcu-bc/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-12-03 08:17:23 UTC (rev 282776)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=php-apcu-bc
+pkgver=1.0.3
+pkgrel=2
+arch=('i686' 'x86_64')
+pkgdesc='APCu Backwards Compatibility Module'
+url='https://pecl.php.net/package/apcu_bc'
+depends=('php-apcu')
+license=('PHP')
+source=("https://pecl.php.net/get/apcu_bc-$pkgver.tgz";)
+md5sums=('2ba61ea2cf887814e702e25ad7f1a5e1')
+
+build() {
+   cd $srcdir/apcu_bc-$pkgver
+
+   phpize
+   ./configure --prefix=/usr
+   make
+}
+
+check() {
+   cd $srcdir/apcu_bc-$pkgver
+
+   export REPORT_EXIT_STATUS=1
+   export NO_INTERACTION=1
+   export SKIP_ONLINE_TESTS=1
+   export SKIP_SLOW_TESTS=1
+
+   php -n run-tests.php -n -P -d extension=apcu.so -d 
extension=modules/apc.so
+}
+
+package() {
+   cd $srcdir/apcu_bc-$pkgver
+
+   make INSTALL_ROOT=$pkgdir install
+}

Copied: php-apcu-bc/repos/staging-x86_64/PKGBUILD (from rev 282775, 
php-apcu-bc/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-12-03 08:17:23 UTC (rev 282776)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=php-apcu-bc
+pkgver=1.0.3
+pkgrel=2
+arch=('i686' 'x86_64')
+pkgdesc='APCu Backwards Compatibility Module'
+url='https://pecl.php.net/package/apcu_bc'
+depends=('php-apcu')
+license=('PHP')
+source=("https://pecl.php.net/get/apcu_bc-$pkgver.tgz";)
+md5sums=('2ba61ea2cf887814e702e25ad7f1a5e1')
+
+build() {
+   cd $srcdir/apcu_bc-$pkgver
+
+   phpize
+   ./configure --prefix=/usr
+   make
+}
+
+check() {
+   cd $srcdir/apcu_bc-$pkgver
+
+   export REPORT_EXIT_STATUS=1
+   export NO_INTERACTION=1
+   export SKIP_ONLINE_TESTS=1
+   export SKIP_SLOW_TESTS=1
+
+   php -n run-tests.php -n -P -d extension=apcu.so -d 
extension=modules/apc.so
+}
+
+package() {
+   cd $srcdir/apcu_bc-$pkgver
+
+   make INSTALL_ROOT=$pkgdir install
+}


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

2016-12-03 Thread Pierre Schmitz
Date: Saturday, December 3, 2016 @ 08:17:12
  Author: pierre
Revision: 282775

upgpkg: php-apcu-bc 1.0.3-2

Modified:
  php-apcu-bc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 08:15:30 UTC (rev 282774)
+++ PKGBUILD2016-12-03 08:17:12 UTC (rev 282775)
@@ -3,13 +3,13 @@
 
 pkgname=php-apcu-bc
 pkgver=1.0.3
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 pkgdesc='APCu Backwards Compatibility Module'
 url='https://pecl.php.net/package/apcu_bc'
 depends=('php-apcu')
 license=('PHP')
-source=("http://pecl.php.net/get/apcu_bc-$pkgver.tgz";)
+source=("https://pecl.php.net/get/apcu_bc-$pkgver.tgz";)
 md5sums=('2ba61ea2cf887814e702e25ad7f1a5e1')
 
 build() {


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

2016-12-03 Thread Pierre Schmitz
Date: Saturday, December 3, 2016 @ 08:15:20
  Author: pierre
Revision: 282773

upgpkg: php-apcu 5.1.7-2

Modified:
  php-apcu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 08:11:39 UTC (rev 282772)
+++ PKGBUILD2016-12-03 08:15:20 UTC (rev 282773)
@@ -3,7 +3,7 @@
 
 pkgname=php-apcu
 pkgver=5.1.7
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 pkgdesc='A userland caching module for PHP'
 url='https://pecl.php.net/package/APCu'


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

2016-12-03 Thread Pierre Schmitz
Date: Saturday, December 3, 2016 @ 08:15:30
  Author: pierre
Revision: 282774

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

Added:
  php-apcu/repos/staging-i686/
  php-apcu/repos/staging-i686/PKGBUILD
(from rev 282773, php-apcu/trunk/PKGBUILD)
  php-apcu/repos/staging-i686/apcu.ini
(from rev 282773, php-apcu/trunk/apcu.ini)
  php-apcu/repos/staging-x86_64/
  php-apcu/repos/staging-x86_64/PKGBUILD
(from rev 282773, php-apcu/trunk/PKGBUILD)
  php-apcu/repos/staging-x86_64/apcu.ini
(from rev 282773, php-apcu/trunk/apcu.ini)

-+
 staging-i686/PKGBUILD   |   44 
 staging-i686/apcu.ini   |3 +++
 staging-x86_64/PKGBUILD |   44 
 staging-x86_64/apcu.ini |3 +++
 4 files changed, 94 insertions(+)

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

Copied: php-apcu/repos/staging-i686/apcu.ini (from rev 282773, 
php-apcu/trunk/apcu.ini)
===
--- staging-i686/apcu.ini   (rev 0)
+++ staging-i686/apcu.ini   2016-12-03 08:15:30 UTC (rev 282774)
@@ -0,0 +1,3 @@
+;extension=apcu.so
+; install php-apcu-bc and enable apc.so for APC compatibility
+;extension=apc.so

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

Copied: php-apcu/repos/staging-x86_64/apcu.ini (from rev 282773, 
php-apcu/trunk/apcu.ini)
===
--- staging-x86_64/apcu.ini (rev 0)
+++ staging-x86_64/apcu.ini 2016-12-03 08:15:30 UTC (rev 282774)
@@ -0,0 +1,3 @@
+;extension=apcu.so
+; install php-apcu-bc and enable apc.so for APC compatibility
+;extension=apc.so


[arch-commits] Commit in php/trunk (PKGBUILD apache.patch php-fpm.patch php.ini.patch)

2016-12-03 Thread Pierre Schmitz
Date: Saturday, December 3, 2016 @ 08:11:06
  Author: pierre
Revision: 282771

upgpkg: php 7.1.0-2

Modified:
  php/trunk/PKGBUILD
  php/trunk/apache.patch
  php/trunk/php-fpm.patch
  php/trunk/php.ini.patch

---+
 PKGBUILD  |   20 +---
 apache.patch  |2 +-
 php-fpm.patch |6 +++---
 php.ini.patch |4 ++--
 4 files changed, 15 insertions(+), 17 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-12-03 06:44:10 UTC (rev 282770)
+++ PKGBUILD2016-12-03 08:11:06 UTC (rev 282771)
@@ -21,25 +21,24 @@
  'php-sqlite'
  'php-tidy'
  'php-xsl')
-pkgver=7.0.13
+pkgver=7.1.0
 pkgrel=2
 arch=('i686' 'x86_64')
 license=('PHP')
 url='http://www.php.net'
 makedepends=('apache' 'aspell' 'c-client' 'db' 'enchant' 'gd' 'gmp' 'icu' 
'libmcrypt' 'libxslt' 'libzip' 'net-snmp'
- 'postgresql-libs' 'sqlite' 'systemd' 'tidy' 'unixodbc' 'curl' 
'libtool' 'postfix' 'freetds')
+ 'postgresql-libs' 'sqlite' 'systemd' 'tidy' 'unixodbc' 'curl' 
'libtool' 'postfix' 'freetds' 'pcre')
 checkdepends=('procps-ng')
-source=("https://www.php.net/distributions/${pkgbase}-${pkgver}.tar.xz"{,.asc}
+source=("https://php.net/distributions/${pkgbase}-${pkgver}.tar.xz"{,.asc}
 'apache.patch' 'apache.conf' 'php-fpm.patch' 'php-fpm.tmpfiles' 
'php.ini.patch')
-sha256sums=('357ba7f93975d7d836abed0852dc3ed96a988af539e87750613294cbee82f1bf'
+sha256sums=('a810b3f29c21407c24caa88f50649320d20ba6892ae1923132598b8a0ca145b6'
 'SKIP'
-'819f05d2fd5a75c96e93c863517ca77dbd021a1224dc2d8096f758fb2937df6a'
+'786e3d550c96959e6d0b813595599492d29cd93ae36fcbca29cdea32b60e373b'
 'ebc0af1ef3a6baccb013d0ccb29923895a7b22ff2d032e3bba802dc6328301ce'
-'136e197384255420c73678aef812e70aa86320f6dbefcc5a952df1a65fdd53fa'
+'3dc0b9f86d7d89bbcd011ded1faaf298d595c45e6693c7f8bccb34838a50eefd'
 '640dba0d960bfeaae9ad38d2826d3f6b5d6c175a4d3e16664eefff29141faad5'
-'d37ce253f1096df1702fe2b0272a0919e8a02cc9e05b868d5f54b506fc6ce0d3')
-validpgpkeys=('1A4E8B7277C42E53DBA9C7B9BCAA30EA9C0D5763'
-  '6E4F6AB321FDC07F2C332E3AC2BF0BC433CFC8B3')
+'78f60b1d9f3a0ef8af77208feed76e303b3a13e93b80613c1e5a729004a5343c')
+validpgpkeys=('A917B1ECDA84AEC2B568FED6F50ABC807BD5DCD0')
 
 prepare() {
cd ${srcdir}/${pkgbase}-${pkgver}
@@ -62,7 +61,6 @@
--disable-rpath \
--mandir=/usr/share/man \
--without-pear \
-   --enable-zend-signals \
"
 
local _phpextensions="\
@@ -172,7 +170,7 @@
 
 package_php() {
pkgdesc='A general-purpose scripting language that is especially suited 
to web development'
-   depends=('libxml2' 'curl' 'libzip')
+   depends=('libxml2' 'curl' 'libzip' 'pcre')
replaces=('php-ldap')
conflicts=('php-ldap')
provides=("php-ldap=${pkgver}")

Modified: apache.patch
===
--- apache.patch2016-12-03 06:44:10 UTC (rev 282770)
+++ apache.patch2016-12-03 08:11:06 UTC (rev 282771)
@@ -10,7 +10,7 @@
  fi
 --- configure.orig
 +++ configure
-@@ -6919,7 +6919,6 @@
+@@ -6920,7 +6920,6 @@
  
  fi
else

Modified: php-fpm.patch
===
--- php-fpm.patch   2016-12-03 06:44:10 UTC (rev 282770)
+++ php-fpm.patch   2016-12-03 08:11:06 UTC (rev 282771)
@@ -22,7 +22,7 @@
  
  ; Error log file
  ; If it's set to "syslog", log is sent to syslogd instead of being written
- ; in a local file.
+ ; into a local file.
  ; Note: the default prefix is @EXPANDED_LOCALSTATEDIR@
  ; Default Value: log/php-fpm.log
 -;error_log = log/php-fpm.log
@@ -63,7 +63,7 @@
  ; stderr will be redirected to /dev/null according to FastCGI specs.
 --- sapi/fpm/php-fpm.service.in.orig
 +++ sapi/fpm/php-fpm.service.in
-@@ -4,7 +4,7 @@
+@@ -8,7 +8,7 @@
  
  [Service]
  Type=@php_fpm_systemd@
@@ -71,4 +71,4 @@
 +PIDFile=/run/php-fpm/php-fpm.pid
  ExecStart=@sbindir@/php-fpm --nodaemonize --fpm-config 
@sysconfdir@/php-fpm.conf
  ExecReload=/bin/kill -USR2 $MAINPID
- 
+ PrivateTmp=true

Modified: php.ini.patch
===
--- php.ini.patch   2016-12-03 06:44:10 UTC (rev 282770)
+++ php.ini.patch   2016-12-03 08:11:06 UTC (rev 282771)
@@ -1,6 +1,6 @@
 --- php.ini-production.orig
 +++ php.ini-production
-@@ -718,7 +718,7 @@
+@@ -733,7 +733,7 @@
  
  ; Directory in which the loadable extensions (modules) reside.
  ; http://php.net/extension-dir
@@ -9,7 +9,7 @@
  ; On windows:
  ; extension_dir = "ext"
  
-@@ -868,47 +868,44 @@
+@@ -883,47 +883,44 @@
  ; If you only provide the name of the extension, PHP will look for it in its
  ; default extension directory.
  ;


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

2016-12-03 Thread Pierre Schmitz
Date: Saturday, December 3, 2016 @ 08:11:39
  Author: pierre
Revision: 282772

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

Added:
  php/repos/staging-i686/
  php/repos/staging-i686/PKGBUILD
(from rev 282771, php/trunk/PKGBUILD)
  php/repos/staging-i686/apache.conf
(from rev 282771, php/trunk/apache.conf)
  php/repos/staging-i686/apache.patch
(from rev 282771, php/trunk/apache.patch)
  php/repos/staging-i686/generate_patches
(from rev 282771, php/trunk/generate_patches)
  php/repos/staging-i686/php-fpm.install
(from rev 282771, php/trunk/php-fpm.install)
  php/repos/staging-i686/php-fpm.patch
(from rev 282771, php/trunk/php-fpm.patch)
  php/repos/staging-i686/php-fpm.tmpfiles
(from rev 282771, php/trunk/php-fpm.tmpfiles)
  php/repos/staging-i686/php.ini.patch
(from rev 282771, php/trunk/php.ini.patch)
  php/repos/staging-x86_64/
  php/repos/staging-x86_64/PKGBUILD
(from rev 282771, php/trunk/PKGBUILD)
  php/repos/staging-x86_64/apache.conf
(from rev 282771, php/trunk/apache.conf)
  php/repos/staging-x86_64/apache.patch
(from rev 282771, php/trunk/apache.patch)
  php/repos/staging-x86_64/generate_patches
(from rev 282771, php/trunk/generate_patches)
  php/repos/staging-x86_64/php-fpm.install
(from rev 282771, php/trunk/php-fpm.install)
  php/repos/staging-x86_64/php-fpm.patch
(from rev 282771, php/trunk/php-fpm.patch)
  php/repos/staging-x86_64/php-fpm.tmpfiles
(from rev 282771, php/trunk/php-fpm.tmpfiles)
  php/repos/staging-x86_64/php.ini.patch
(from rev 282771, php/trunk/php.ini.patch)

-+
 staging-i686/PKGBUILD   |  332 ++
 staging-i686/apache.conf|   13 +
 staging-i686/apache.patch   |   20 ++
 staging-i686/generate_patches   |   48 +
 staging-i686/php-fpm.install|9 +
 staging-i686/php-fpm.patch  |   74 
 staging-i686/php-fpm.tmpfiles   |1 
 staging-i686/php.ini.patch  |   97 +++
 staging-x86_64/PKGBUILD |  332 ++
 staging-x86_64/apache.conf  |   13 +
 staging-x86_64/apache.patch |   20 ++
 staging-x86_64/generate_patches |   48 +
 staging-x86_64/php-fpm.install  |9 +
 staging-x86_64/php-fpm.patch|   74 
 staging-x86_64/php-fpm.tmpfiles |1 
 staging-x86_64/php.ini.patch|   97 +++
 16 files changed, 1188 insertions(+)

Copied: php/repos/staging-i686/PKGBUILD (from rev 282771, php/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-12-03 08:11:39 UTC (rev 282772)
@@ -0,0 +1,332 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgbase=php
+pkgname=('php'
+ 'php-cgi'
+ 'php-apache'
+ 'php-fpm'
+ 'php-embed'
+ 'php-phpdbg'
+ 'php-dblib'
+ 'php-enchant'
+ 'php-gd'
+ 'php-imap'
+ 'php-intl'
+ 'php-mcrypt'
+ 'php-odbc'
+ 'php-pgsql'
+ 'php-pspell'
+ 'php-snmp'
+ 'php-sqlite'
+ 'php-tidy'
+ 'php-xsl')
+pkgver=7.1.0
+pkgrel=2
+arch=('i686' 'x86_64')
+license=('PHP')
+url='http://www.php.net'
+makedepends=('apache' 'aspell' 'c-client' 'db' 'enchant' 'gd' 'gmp' 'icu' 
'libmcrypt' 'libxslt' 'libzip' 'net-snmp'
+ 'postgresql-libs' 'sqlite' 'systemd' 'tidy' 'unixodbc' 'curl' 
'libtool' 'postfix' 'freetds' 'pcre')
+checkdepends=('procps-ng')
+source=("https://php.net/distributions/${pkgbase}-${pkgver}.tar.xz"{,.asc}
+'apache.patch' 'apache.conf' 'php-fpm.patch' 'php-fpm.tmpfiles' 
'php.ini.patch')
+sha256sums=('a810b3f29c21407c24caa88f50649320d20ba6892ae1923132598b8a0ca145b6'
+'SKIP'
+'786e3d550c96959e6d0b813595599492d29cd93ae36fcbca29cdea32b60e373b'
+'ebc0af1ef3a6baccb013d0ccb29923895a7b22ff2d032e3bba802dc6328301ce'
+'3dc0b9f86d7d89bbcd011ded1faaf298d595c45e6693c7f8bccb34838a50eefd'
+'640dba0d960bfeaae9ad38d2826d3f6b5d6c175a4d3e16664eefff29141faad5'
+'78f60b1d9f3a0ef8af77208feed76e303b3a13e93b80613c1e5a729004a5343c')
+validpgpkeys=('A917B1ECDA84AEC2B568FED6F50ABC807BD5DCD0')
+
+prepare() {
+   cd ${srcdir}/${pkgbase}-${pkgver}
+
+   patch -p0 -i ${srcdir}/apache.patch
+   patch -p0 -i ${srcdir}/php-fpm.patch
+   patch -p0 -i ${srcdir}/php.ini.patch
+}
+
+build() {
+   local _phpconfig="--srcdir=../${pkgbase}-${pkgver} \
+   --config-cache \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --sysconfdir=/etc/php \
+   --localstatedir=/var \
+   --with-layout=GNU \
+   --with-config-file-path=/etc/php \
+   --with-config-file-scan-dir=/etc/php/conf.d \
+   --disable-rpath \
+   --mandir=/usr/share/man \
+   --without-pear