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

2016-07-16 Thread Felix Yan
Date: Sunday, July 17, 2016 @ 04:58:31
  Author: felixonmars
Revision: 271951

archrelease: copy trunk to extra-any

Added:
  pylint/repos/extra-any/PKGBUILD
(from rev 271950, pylint/trunk/PKGBUILD)
Deleted:
  pylint/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-17 04:58:14 UTC (rev 271950)
+++ PKGBUILD2016-07-17 04:58:31 UTC (rev 271951)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez 
-# Maintainer: Felix Yan 
-# Contributor: Stéphane Gaudreault 
-# Contributor: Alexander Fehr 
-
-pkgbase=pylint
-pkgname=('python-pylint' 'python2-pylint')
-pkgver=1.6.1
-pkgrel=2
-pkgdesc="Analyzes Python code looking for bugs and signs of poor quality"
-arch=('any')
-url="http://pylint.org;
-license=('GPL')
-makedepends=('python2-astroid' 'python-astroid' 'python2-setuptools' 
'python-setuptools'
- 'python2-six' 'python-six' 'python-isort' 'python2-isort' 
'python-mccabe'
- 'python2-mccabe' 'python2-backports.functools_lru_cache' 
'python2-configparser' 'git')
-optdepends=('tk: Pylint GUI')
-source=("git+https://github.com/PyCQA/pylint.git#tag=pylint-$pkgver;)
-sha1sums=('SKIP')
-
-prepare() {
-  cp -a pylint{,-py2}
-
-  cd "$srcdir"/pylint/pylint
-  sed -e "s|/usr/bin/env python|/usr/bin/env python3|" -e 
"s|/usr/bin/python$|/usr/bin/python3|" -i epylint.py __main__.py 
test/input/noext test/data/ascript
-
-  cd "$srcdir"/pylint-py2/pylint
-  sed -e "s|/usr/bin/env python|/usr/bin/env python2|" -e 
"s|/usr/bin/python$|/usr/bin/python2|" -i epylint.py __main__.py 
test/input/noext test/data/ascript
-}
-
-build() {
-  cd "$srcdir"/pylint
-  python setup.py build
-
-  cd "$srcdir"/pylint-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/pylint
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -Wi -m unittest discover -s 
pylint/test/ -p *test_*.py || warning "Tests failed"
-
-  cd "$srcdir"/pylint-py2
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -Wi -m unittest discover -s 
pylint/test/ -p *test_*.py || warning "Tests failed"
-}
-
-package_python-pylint() {
-  depends=('python-astroid' 'python-setuptools' 'python-six' 'python-mccabe' 
'python-isort')
-
-  cd pylint
-
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --skip-build 
--optimize=1
-
-  install -d "$pkgdir"/usr/share/man/man1
-  install -m644 man/* "$pkgdir"/usr/share/man/man1
-}
-
-package_python2-pylint() {
-  depends=('python2-astroid' 'python2-setuptools' 'python2-six' 
'python2-mccabe' 'python2-isort'
-   'python2-backports.functools_lru_cache' 'python2-configparser')
-
-  cd pylint-py2
-
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --skip-build 
--optimize=1
-
-  install -d "$pkgdir"/usr/share/man/man1
-  install -m644 man/* "$pkgdir"/usr/share/man/man1
-
-  for _exe in epylint pylint pylint-gui pyreverse symilar; do
- mv "$pkgdir"/usr/bin/${_exe}{,2}
- mv "$pkgdir"/usr/share/man/man1/${_exe}{,2}.1
-  done
-}

Copied: pylint/repos/extra-any/PKGBUILD (from rev 271950, pylint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-07-17 04:58:31 UTC (rev 271951)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Alexander Fehr 
+
+pkgbase=pylint
+pkgname=('python-pylint' 'python2-pylint')
+pkgver=1.6.2
+pkgrel=1
+pkgdesc="Analyzes Python code looking for bugs and signs of poor quality"
+arch=('any')
+url="http://pylint.org;
+license=('GPL')
+makedepends=('python2-astroid' 'python-astroid' 'python2-setuptools' 
'python-setuptools'
+ 'python2-six' 'python-six' 'python-isort' 'python2-isort' 
'python-mccabe'
+ 'python2-mccabe' 'python2-backports.functools_lru_cache' 
'python2-configparser' 'git')
+optdepends=('tk: Pylint GUI')
+source=("git+https://github.com/PyCQA/pylint.git#tag=pylint-$pkgver;)
+sha1sums=('SKIP')
+
+prepare() {
+  cp -a pylint{,-py2}
+
+  cd "$srcdir"/pylint/pylint
+  sed -e "s|/usr/bin/env python|/usr/bin/env python3|" -e 
"s|/usr/bin/python$|/usr/bin/python3|" -i epylint.py __main__.py 
test/input/noext test/data/ascript
+
+  cd "$srcdir"/pylint-py2/pylint
+  sed -e "s|/usr/bin/env python|/usr/bin/env python2|" -e 
"s|/usr/bin/python$|/usr/bin/python2|" -i epylint.py __main__.py 
test/input/noext test/data/ascript
+}
+
+build() {
+  cd "$srcdir"/pylint
+  python setup.py build
+
+  cd "$srcdir"/pylint-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/pylint
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -Wi -m unittest discover -s 
pylint/test/ -p 

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

2016-07-16 Thread Felix Yan
Date: Sunday, July 17, 2016 @ 04:58:14
  Author: felixonmars
Revision: 271950

upgpkg: pylint 1.6.2-1

Modified:
  pylint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-16 15:43:10 UTC (rev 271949)
+++ PKGBUILD2016-07-17 04:58:14 UTC (rev 271950)
@@ -6,8 +6,8 @@
 
 pkgbase=pylint
 pkgname=('python-pylint' 'python2-pylint')
-pkgver=1.6.1
-pkgrel=2
+pkgver=1.6.2
+pkgrel=1
 pkgdesc="Analyzes Python code looking for bugs and signs of poor quality"
 arch=('any')
 url="http://pylint.org;


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

2016-07-16 Thread Felix Yan
Date: Sunday, July 17, 2016 @ 04:03:14
  Author: felixonmars
Revision: 183013

upgpkg: haskell-dav 1.3.1-1

rebuild with aeson-compat-0.3.5.0, authenticate-1.3.3.2, chunked-data-0.3.0, 
conduit-combinators-1.0.4, conduit-extra-1.1.13.2, http-client-0.5.0, 
http-client-tls-0.3.0, http-conduit-2.2.0, monad-logger-0.3.19, 
mono-traversable-1.0.0, wai-extra-3.0.15.3, wai-logger-2.3.0, warp-3.2.7

Modified:
  haskell-dav/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-17 02:57:20 UTC (rev 183012)
+++ PKGBUILD2016-07-17 04:03:14 UTC (rev 183013)
@@ -4,24 +4,20 @@
 
 _hkgname=DAV
 pkgname=haskell-dav
-pkgver=1.2
-pkgrel=59
+pkgver=1.3.1
+pkgrel=1
 pkgdesc="RFC 4918 WebDAV support"
 url="http://floss.scru.org/hDAV;
 license=("GPL3")
 arch=('i686' 'x86_64')
 depends=("ghc=8.0.1" "haskell-case-insensitive" "haskell-data-default" 
"haskell-exceptions"
- "haskell-http-client" "haskell-http-client-tls" "haskell-http-types" 
"haskell-lens"
- "haskell-mtl" "haskell-network" "haskell-network-uri" 
"haskell-optparse-applicative"
- "haskell-transformers-base" "haskell-transformers-compat" 
"haskell-utf8-string"
- "haskell-xml-conduit" "haskell-xml-hamlet")
+ "haskell-haskeline" "haskell-http-client" "haskell-http-client-tls" 
"haskell-http-types"
+ "haskell-lens" "haskell-mtl" "haskell-network" "haskell-network-uri"
+ "haskell-optparse-applicative" "haskell-transformers-base" 
"haskell-transformers-compat"
+ "haskell-utf8-string" "haskell-xml-conduit" "haskell-xml-hamlet")
 
source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha256sums=('1a07c8ef17cd4207c6f889e7eb5c45d9f025374f2cdacc1e34e6d71fe103b746')
+sha256sums=('5c80faa58f8bbfb4bbdf7f3db6f23a3a4d26a199831ceb27dd5f69fef21bc009')
 
-prepare() {
-sed -i '/mtl-compat/d' ${_hkgname}-${pkgver}/${_hkgname}.cabal
-}
-
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"
 
@@ -28,7 +24,7 @@
 runhaskell Setup configure -O --enable-library-profiling --enable-shared \
 --prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
 --libsubdir=\$compiler/site-local/\$pkgid \
--fnetwork-uri
+-fnetwork-uri -f-mtl-compat
 runhaskell Setup build
 runhaskell Setup haddock --hoogle --html
 runhaskell Setup register --gen-script


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

2016-07-16 Thread Felix Yan
Date: Sunday, July 17, 2016 @ 04:03:38
  Author: felixonmars
Revision: 183014

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

Added:
  haskell-dav/repos/community-staging-i686/
  haskell-dav/repos/community-staging-i686/PKGBUILD
(from rev 183013, haskell-dav/trunk/PKGBUILD)
  haskell-dav/repos/community-staging-x86_64/
  haskell-dav/repos/community-staging-x86_64/PKGBUILD
(from rev 183013, haskell-dav/trunk/PKGBUILD)

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

Copied: haskell-dav/repos/community-staging-i686/PKGBUILD (from rev 183013, 
haskell-dav/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-07-17 04:03:38 UTC (rev 183014)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=DAV
+pkgname=haskell-dav
+pkgver=1.3.1
+pkgrel=1
+pkgdesc="RFC 4918 WebDAV support"
+url="http://floss.scru.org/hDAV;
+license=("GPL3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-case-insensitive" "haskell-data-default" 
"haskell-exceptions"
+ "haskell-haskeline" "haskell-http-client" "haskell-http-client-tls" 
"haskell-http-types"
+ "haskell-lens" "haskell-mtl" "haskell-network" "haskell-network-uri"
+ "haskell-optparse-applicative" "haskell-transformers-base" 
"haskell-transformers-compat"
+ "haskell-utf8-string" "haskell-xml-conduit" "haskell-xml-hamlet")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('5c80faa58f8bbfb4bbdf7f3db6f23a3a4d26a199831ceb27dd5f69fef21bc009')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri -f-mtl-compat
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-dav/repos/community-staging-x86_64/PKGBUILD (from rev 183013, 
haskell-dav/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-07-17 04:03:38 UTC (rev 183014)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=DAV
+pkgname=haskell-dav
+pkgver=1.3.1
+pkgrel=1
+pkgdesc="RFC 4918 WebDAV support"
+url="http://floss.scru.org/hDAV;
+license=("GPL3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-case-insensitive" "haskell-data-default" 
"haskell-exceptions"
+ "haskell-haskeline" "haskell-http-client" "haskell-http-client-tls" 
"haskell-http-types"
+ "haskell-lens" "haskell-mtl" "haskell-network" "haskell-network-uri"
+ "haskell-optparse-applicative" "haskell-transformers-base" 
"haskell-transformers-compat"
+ "haskell-utf8-string" "haskell-xml-conduit" "haskell-xml-hamlet")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('5c80faa58f8bbfb4bbdf7f3db6f23a3a4d26a199831ceb27dd5f69fef21bc009')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri -f-mtl-compat
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e 

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

2016-07-16 Thread Felix Yan
Date: Sunday, July 17, 2016 @ 02:57:20
  Author: felixonmars
Revision: 183012

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

Added:
  python-tornado/repos/community-i686/0001-use_system_ca_certificates.patch
(from rev 183011, 
python-tornado/trunk/0001-use_system_ca_certificates.patch)
  python-tornado/repos/community-i686/PKGBUILD
(from rev 183011, python-tornado/trunk/PKGBUILD)
  python-tornado/repos/community-x86_64/0001-use_system_ca_certificates.patch
(from rev 183011, 
python-tornado/trunk/0001-use_system_ca_certificates.patch)
  python-tornado/repos/community-x86_64/PKGBUILD
(from rev 183011, python-tornado/trunk/PKGBUILD)
Deleted:
  python-tornado/repos/community-i686/0001-use_system_ca_certificates.patch
  
python-tornado/repos/community-i686/0002-get-rid-of-backports-ssl-match-hostname.patch
  python-tornado/repos/community-i686/0003-support-monotonic.patch
  python-tornado/repos/community-i686/PKGBUILD
  python-tornado/repos/community-x86_64/0001-use_system_ca_certificates.patch
  
python-tornado/repos/community-x86_64/0002-get-rid-of-backports-ssl-match-hostname.patch
  python-tornado/repos/community-x86_64/0003-support-monotonic.patch
  python-tornado/repos/community-x86_64/PKGBUILD

-+
 /0001-use_system_ca_certificates.patch  |   26 +
 /PKGBUILD   |  184 
++
 community-i686/0001-use_system_ca_certificates.patch|   36 -
 community-i686/0002-get-rid-of-backports-ssl-match-hostname.patch   |   23 -
 community-i686/0003-support-monotonic.patch |   52 --
 community-i686/PKGBUILD |   90 
 community-x86_64/0001-use_system_ca_certificates.patch  |   36 -
 community-x86_64/0002-get-rid-of-backports-ssl-match-hostname.patch |   23 -
 community-x86_64/0003-support-monotonic.patch   |   52 --
 community-x86_64/PKGBUILD   |   90 
 10 files changed, 210 insertions(+), 402 deletions(-)

Deleted: community-i686/0001-use_system_ca_certificates.patch
===
--- community-i686/0001-use_system_ca_certificates.patch2016-07-17 
02:56:52 UTC (rev 183011)
+++ community-i686/0001-use_system_ca_certificates.patch2016-07-17 
02:57:20 UTC (rev 183012)
@@ -1,36 +0,0 @@
-diff --git a/setup.py b/setup.py
-index f09169f..d42c486 100644
 a/setup.py
-+++ b/setup.py
-@@ -120,7 +120,7 @@ if (platform.python_implementation() == 'CPython' and
- # Certifi is also optional on 2.7.9+, although making our dependencies
- # conditional on micro version numbers seems like a bad idea
- # until we have more declarative metadata.
--install_requires.append('certifi')
-+pass
- if sys.version_info < (3, 5):
- install_requires.append('backports_abc>=0.4')
- kwargs['install_requires'] = install_requires
-diff --git a/tornado/simple_httpclient.py b/tornado/simple_httpclient.py
-index f0f73fa..ffe3e40 100644
 a/tornado/simple_httpclient.py
-+++ b/tornado/simple_httpclient.py
-@@ -33,17 +33,9 @@ except ImportError:
- # ssl is not available on Google App Engine.
- ssl = None
- 
--try:
--import certifi
--except ImportError:
--certifi = None
--
- 
- def _default_ca_certs():
--if certifi is None:
--raise Exception("The 'certifi' package is required to use https "
--"in simple_httpclient")
--return certifi.where()
-+return "/etc/ssl/certs/ca-certificates.crt"
- 
- 
- class SimpleAsyncHTTPClient(AsyncHTTPClient):

Copied: 
python-tornado/repos/community-i686/0001-use_system_ca_certificates.patch (from 
rev 183011, python-tornado/trunk/0001-use_system_ca_certificates.patch)
===
--- community-i686/0001-use_system_ca_certificates.patch
(rev 0)
+++ community-i686/0001-use_system_ca_certificates.patch2016-07-17 
02:57:20 UTC (rev 183012)
@@ -0,0 +1,13 @@
+diff --git a/setup.py b/setup.py
+index f09169f..d42c486 100644
+--- a/setup.py
 b/setup.py
+@@ -120,7 +120,7 @@ if (platform.python_implementation() == 'CPython' and
+ # Certifi is also optional on 2.7.9+, although making our dependencies
+ # conditional on micro version numbers seems like a bad idea
+ # until we have more declarative metadata.
+-install_requires.append('certifi')
++pass
+ if sys.version_info < (3, 5):
+ install_requires.append('backports_abc>=0.4')
+ kwargs['install_requires'] = install_requires
\ No newline at end of file

Deleted: community-i686/0002-get-rid-of-backports-ssl-match-hostname.patch
===
--- 

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

2016-07-16 Thread Felix Yan
Date: Sunday, July 17, 2016 @ 02:56:52
  Author: felixonmars
Revision: 183011

upgpkg: python-tornado 4.4.0-1

Modified:
  python-tornado/trunk/0001-use_system_ca_certificates.patch
  python-tornado/trunk/PKGBUILD
Deleted:
  python-tornado/trunk/0002-get-rid-of-backports-ssl-match-hostname.patch
  python-tornado/trunk/0003-support-monotonic.patch

+
 0001-use_system_ca_certificates.patch  |   25 -
 0002-get-rid-of-backports-ssl-match-hostname.patch |   23 
 0003-support-monotonic.patch   |   52 ---
 PKGBUILD   |   12 +---
 4 files changed, 4 insertions(+), 108 deletions(-)

Modified: 0001-use_system_ca_certificates.patch
===
--- 0001-use_system_ca_certificates.patch   2016-07-17 02:54:11 UTC (rev 
183010)
+++ 0001-use_system_ca_certificates.patch   2016-07-17 02:56:52 UTC (rev 
183011)
@@ -10,27 +10,4 @@
 +pass
  if sys.version_info < (3, 5):
  install_requires.append('backports_abc>=0.4')
- kwargs['install_requires'] = install_requires
-diff --git a/tornado/simple_httpclient.py b/tornado/simple_httpclient.py
-index f0f73fa..ffe3e40 100644
 a/tornado/simple_httpclient.py
-+++ b/tornado/simple_httpclient.py
-@@ -33,17 +33,9 @@ except ImportError:
- # ssl is not available on Google App Engine.
- ssl = None
- 
--try:
--import certifi
--except ImportError:
--certifi = None
--
- 
- def _default_ca_certs():
--if certifi is None:
--raise Exception("The 'certifi' package is required to use https "
--"in simple_httpclient")
--return certifi.where()
-+return "/etc/ssl/certs/ca-certificates.crt"
- 
- 
- class SimpleAsyncHTTPClient(AsyncHTTPClient):
+ kwargs['install_requires'] = install_requires
\ No newline at end of file

Deleted: 0002-get-rid-of-backports-ssl-match-hostname.patch
===
--- 0002-get-rid-of-backports-ssl-match-hostname.patch  2016-07-17 02:54:11 UTC 
(rev 183010)
+++ 0002-get-rid-of-backports-ssl-match-hostname.patch  2016-07-17 02:56:52 UTC 
(rev 183011)
@@ -1,23 +0,0 @@
-From f8f2ffca1928aeca2fa9771093436dba49baa538 Mon Sep 17 00:00:00 2001
-From: Felix Yan 
-Date: Fri, 12 Dec 2014 23:10:15 +0800
-Subject: [PATCH] Don't depend on backports.ssl-match-hostname with python
- >=2.7.9, <3.0
-

- setup.py   | 2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/setup.py b/setup.py
-index f09169f..f795807 100644
 a/setup.py
-+++ b/setup.py
-@@ -121,7 +121,7 @@ def build_extension(self, ext):
- if sys.version_info < (2, 7):
- # Only needed indirectly, for singledispatch.
- install_requires.append('ordereddict')
--if sys.version_info < (3, 2):
-+if sys.version_info < (2, 7, 9) or (3, 0) <= sys.version_info < (3, 2):
- install_requires.append('backports.ssl_match_hostname')
- if sys.version_info < (3, 4):
- install_requires.append('singledispatch')
\ No newline at end of file

Deleted: 0003-support-monotonic.patch
===
--- 0003-support-monotonic.patch2016-07-17 02:54:11 UTC (rev 183010)
+++ 0003-support-monotonic.patch2016-07-17 02:56:52 UTC (rev 183011)
@@ -1,52 +0,0 @@
-commit 7861716d2315606b03c4126505d6b158640218aa
-Author: Felix Yan 
-Date:   Sat Nov 7 13:53:09 2015 +0800
-
-Add monotonic as an alternative to Monotime
-
-diff --git a/docs/index.rst b/docs/index.rst
-index e4a4d80..14f9af6 100644
 a/docs/index.rst
-+++ b/docs/index.rst
-@@ -100,6 +100,8 @@ the following optional packages may be useful:
- * `Monotime `_ adds support for
-   a monotonic clock, which improves reliability in environments
-   where clock adjustments are frequent.  No longer needed in Python 3.3.
-+* `monotonic `_ adds support for
-+  a monotonic clock. Alternative to Monotime.  No longer needed in Python 3.3.
- 
- **Platforms**: Tornado should run on any Unix-like platform, although
- for the best performance and scalability only Linux (with ``epoll``)
-diff --git a/tornado/platform/auto.py b/tornado/platform/auto.py
-index fc40c9d..449b634 100644
 a/tornado/platform/auto.py
-+++ b/tornado/platform/auto.py
-@@ -47,8 +47,13 @@ try:
- except ImportError:
- pass
- try:
--from time import monotonic as monotonic_time
-+# monotonic can provide a monotonic function in versions of python before
-+# 3.3, too.
-+from monotonic import monotonic as monotonic_time
- except ImportError:
--monotonic_time = None
-+try:
-+from time import monotonic as monotonic_time
-+except ImportError:
-+monotonic_time = None
- 
- 

[arch-commits] Commit in diff-so-fancy/repos/community-any (6 files)

2016-07-16 Thread Felix Yan
Date: Sunday, July 17, 2016 @ 02:54:11
  Author: felixonmars
Revision: 183010

archrelease: copy trunk to community-any

Added:
  diff-so-fancy/repos/community-any/PKGBUILD
(from rev 183009, diff-so-fancy/trunk/PKGBUILD)
  diff-so-fancy/repos/community-any/diff-so-fancy.install
(from rev 183009, diff-so-fancy/trunk/diff-so-fancy.install)
  diff-so-fancy/repos/community-any/system-diff_highlight.patch
(from rev 183009, diff-so-fancy/trunk/system-diff_highlight.patch)
Deleted:
  diff-so-fancy/repos/community-any/PKGBUILD
  diff-so-fancy/repos/community-any/diff-so-fancy.install
  diff-so-fancy/repos/community-any/system-diff_highlight.patch

-+
 PKGBUILD|   94 +-
 diff-so-fancy.install   |6 +-
 system-diff_highlight.patch |   44 +--
 3 files changed, 72 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-17 02:53:49 UTC (rev 183009)
+++ PKGBUILD2016-07-17 02:54:11 UTC (rev 183010)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: icasdri 
-
-pkgname=diff-so-fancy
-pkgver=0.10.0
-pkgrel=1
-pkgdesc="Good-looking diffs with diff-highlight and more"
-arch=('any')
-url="https://github.com/so-fancy/diff-so-fancy;
-license=('MIT')
-install="$pkgname.install"
-depends=('git')
-checkdepends=('bash-bats')
-source=("git+https://github.com/so-fancy/diff-so-fancy.git#tag=v$pkgver;
-"git+https://github.com/ztombol/bats-support.git;
-"git+https://github.com/ztombol/bats-assert.git;
-system-diff_highlight.patch)
-sha384sums=('SKIP'
-'SKIP'
-'SKIP'
-
'9ec860b54a91f4852d9426e7e471de918132c29e846772cc3d65b33ff5be78b95875ba994f96882e0ce9f5c6dccac998')
-
-prepare() {
-  cd "$srcdir"/$pkgname
-  git config submodule."test/test_helper/bats-support".url 
"$srcdir"/bats-support
-  git config submodule."test/test_helper/bats-assert".url "$srcdir"/bats-assert
-  git submodule update --init
-
-  patch -p1 -i ../system-diff_highlight.patch
-  rm -r third_party
-  rm test/diff-highlight.bats
-}
-
-check() {
-  cd "$srcdir"/$pkgname
-  bats test/*.bats
-}
-
-package() {
-  cd "$srcdir"/$pkgname
-
-  sed -i 
's|$(get_script_dir)/lib/diff-so-fancy.pl|/usr/share/diff-so-fancy/diff-so-fancy.pl|'
 diff-so-fancy
-  
-  install -Dm755 'diff-so-fancy' "$pkgdir"/usr/bin/diff-so-fancy
-  install -Dm755 'lib/diff-so-fancy.pl' 
"$pkgdir"/usr/share/diff-so-fancy/diff-so-fancy.pl
-}

Copied: diff-so-fancy/repos/community-any/PKGBUILD (from rev 183009, 
diff-so-fancy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-07-17 02:54:11 UTC (rev 183010)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: icasdri 
+
+pkgname=diff-so-fancy
+pkgver=0.10.1
+pkgrel=1
+pkgdesc="Good-looking diffs with diff-highlight and more"
+arch=('any')
+url="https://github.com/so-fancy/diff-so-fancy;
+license=('MIT')
+install="$pkgname.install"
+depends=('git')
+checkdepends=('bash-bats')
+source=("git+https://github.com/so-fancy/diff-so-fancy.git#tag=v$pkgver;
+"git+https://github.com/ztombol/bats-support.git;
+"git+https://github.com/ztombol/bats-assert.git;
+system-diff_highlight.patch)
+sha384sums=('SKIP'
+'SKIP'
+'SKIP'
+
'9ec860b54a91f4852d9426e7e471de918132c29e846772cc3d65b33ff5be78b95875ba994f96882e0ce9f5c6dccac998')
+
+prepare() {
+  cd "$srcdir"/$pkgname
+  git config submodule."test/test_helper/bats-support".url 
"$srcdir"/bats-support
+  git config submodule."test/test_helper/bats-assert".url "$srcdir"/bats-assert
+  git submodule update --init
+
+  patch -p1 -i ../system-diff_highlight.patch
+  rm -r third_party
+  rm test/diff-highlight.bats
+}
+
+check() {
+  cd "$srcdir"/$pkgname
+  bats test/*.bats
+}
+
+package() {
+  cd "$srcdir"/$pkgname
+
+  sed -i 
's|$(get_script_dir)/lib/diff-so-fancy.pl|/usr/share/diff-so-fancy/diff-so-fancy.pl|'
 diff-so-fancy
+  
+  install -Dm755 'diff-so-fancy' "$pkgdir"/usr/bin/diff-so-fancy
+  install -Dm755 'lib/diff-so-fancy.pl' 
"$pkgdir"/usr/share/diff-so-fancy/diff-so-fancy.pl
+}

Deleted: diff-so-fancy.install
===
--- diff-so-fancy.install   2016-07-17 02:53:49 UTC (rev 183009)
+++ diff-so-fancy.install   2016-07-17 02:54:11 UTC (rev 183010)
@@ -1,3 +0,0 @@
-post_install() {
-echo "Refer to https://github.com/so-fancy/diff-so-fancy#usage for usage"
-}

Copied: diff-so-fancy/repos/community-any/diff-so-fancy.install (from rev 
183009, diff-so-fancy/trunk/diff-so-fancy.install)
===
--- diff-so-fancy.install   (rev 0)
+++ 

[arch-commits] Commit in diff-so-fancy/trunk (PKGBUILD)

2016-07-16 Thread Felix Yan
Date: Sunday, July 17, 2016 @ 02:53:49
  Author: felixonmars
Revision: 183009

upgpkg: diff-so-fancy 0.10.1-1

Modified:
  diff-so-fancy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-17 02:23:23 UTC (rev 183008)
+++ PKGBUILD2016-07-17 02:53:49 UTC (rev 183009)
@@ -3,7 +3,7 @@
 # Contributor: icasdri 
 
 pkgname=diff-so-fancy
-pkgver=0.10.0
+pkgver=0.10.1
 pkgrel=1
 pkgdesc="Good-looking diffs with diff-highlight and more"
 arch=('any')


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

2016-07-16 Thread Felix Yan
Date: Sunday, July 17, 2016 @ 02:23:23
  Author: felixonmars
Revision: 183008

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

Added:
  hindent/repos/community-i686/PKGBUILD
(from rev 183007, hindent/trunk/PKGBUILD)
  hindent/repos/community-x86_64/PKGBUILD
(from rev 183007, hindent/trunk/PKGBUILD)
Deleted:
  hindent/repos/community-i686/PKGBUILD
  hindent/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-07-17 02:22:56 UTC (rev 183007)
+++ community-i686/PKGBUILD 2016-07-17 02:23:23 UTC (rev 183008)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-pkgname=hindent
-pkgver=4.6.3
-pkgrel=9
-pkgdesc="Extensible Haskell pretty printer"
-url="http://www.github.com/chrisdone/hindent;
-license=("custom:BSD3")
-arch=('i686' 'x86_64')
-depends=('gmp' 'libffi')
-makedepends=("ghc=8.0.1" "haskell-data-default" "haskell-descriptive" 
"haskell-src-exts"
- "haskell-monad-loops" "haskell-mtl" "haskell-text")
-source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('6b8d9d4e0c6ea04115bb555964348350c7cea5e05e66aafa1d624e75c6d5bf8e')
-
-build() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-
-runhaskell Setup configure -O --prefix=/usr \
---docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname"
-runhaskell Setup build
-}
-
-package() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-runhaskell Setup copy --destdir="${pkgdir}"
-rm -r "$pkgdir"/usr/{lib,share/doc}
-
-install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
-}

Copied: hindent/repos/community-i686/PKGBUILD (from rev 183007, 
hindent/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-07-17 02:23:23 UTC (rev 183008)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hindent
+pkgver=4.6.4
+pkgrel=1
+pkgdesc="Extensible Haskell pretty printer"
+url="http://www.github.com/chrisdone/hindent;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi')
+makedepends=("ghc=8.0.1" "haskell-descriptive" "haskell-src-exts" 
"haskell-monad-loops"
+ "haskell-mtl" "haskell-text")
+source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('26fc1498705b8a64b03eb5b699ba6229955273d91a49a01c3c2b58436c8e4dcf')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-07-17 02:22:56 UTC (rev 183007)
+++ community-x86_64/PKGBUILD   2016-07-17 02:23:23 UTC (rev 183008)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-pkgname=hindent
-pkgver=4.6.3
-pkgrel=9
-pkgdesc="Extensible Haskell pretty printer"
-url="http://www.github.com/chrisdone/hindent;
-license=("custom:BSD3")
-arch=('i686' 'x86_64')
-depends=('gmp' 'libffi')
-makedepends=("ghc=8.0.1" "haskell-data-default" "haskell-descriptive" 
"haskell-src-exts"
- "haskell-monad-loops" "haskell-mtl" "haskell-text")
-source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('6b8d9d4e0c6ea04115bb555964348350c7cea5e05e66aafa1d624e75c6d5bf8e')
-
-build() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-
-runhaskell Setup configure -O --prefix=/usr \
---docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname"
-runhaskell Setup build
-}
-
-package() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-runhaskell Setup copy --destdir="${pkgdir}"
-rm -r "$pkgdir"/usr/{lib,share/doc}
-
-install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-rm -f 

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

2016-07-16 Thread Felix Yan
Date: Sunday, July 17, 2016 @ 02:22:56
  Author: felixonmars
Revision: 183007

upgpkg: hindent 4.6.4-1

Modified:
  hindent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-16 21:11:48 UTC (rev 183006)
+++ PKGBUILD2016-07-17 02:22:56 UTC (rev 183007)
@@ -3,17 +3,17 @@
 # Contributor: Arch Haskell Team 
 
 pkgname=hindent
-pkgver=4.6.3
-pkgrel=9
+pkgver=4.6.4
+pkgrel=1
 pkgdesc="Extensible Haskell pretty printer"
 url="http://www.github.com/chrisdone/hindent;
 license=("custom:BSD3")
 arch=('i686' 'x86_64')
 depends=('gmp' 'libffi')
-makedepends=("ghc=8.0.1" "haskell-data-default" "haskell-descriptive" 
"haskell-src-exts"
- "haskell-monad-loops" "haskell-mtl" "haskell-text")
+makedepends=("ghc=8.0.1" "haskell-descriptive" "haskell-src-exts" 
"haskell-monad-loops"
+ "haskell-mtl" "haskell-text")
 
source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('6b8d9d4e0c6ea04115bb555964348350c7cea5e05e66aafa1d624e75c6d5bf8e')
+sha256sums=('26fc1498705b8a64b03eb5b699ba6229955273d91a49a01c3c2b58436c8e4dcf')
 
 build() {
 cd "${srcdir}/${pkgname}-${pkgver}"


[arch-commits] Commit in sagemath/repos (62 files)

2016-07-16 Thread Antonio Rojas
Date: Saturday, July 16, 2016 @ 21:11:48
  Author: arojas
Revision: 183006

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

Added:
  sagemath/repos/community-i686/PKGBUILD
(from rev 183005, sagemath/trunk/PKGBUILD)
  sagemath/repos/community-i686/anal.h
(from rev 183005, sagemath/trunk/anal.h)
  sagemath/repos/community-i686/clean.patch
(from rev 183005, sagemath/trunk/clean.patch)
  sagemath/repos/community-i686/cython-sys-path.patch
(from rev 183005, sagemath/trunk/cython-sys-path.patch)
  sagemath/repos/community-i686/disable-fes.patch
(from rev 183005, sagemath/trunk/disable-fes.patch)
  sagemath/repos/community-i686/ecm-7.patch
(from rev 183005, sagemath/trunk/ecm-7.patch)
  sagemath/repos/community-i686/env.patch
(from rev 183005, sagemath/trunk/env.patch)
  sagemath/repos/community-i686/is-package-installed.patch
(from rev 183005, sagemath/trunk/is-package-installed.patch)
  sagemath/repos/community-i686/jupyter-path.patch
(from rev 183005, sagemath/trunk/jupyter-path.patch)
  sagemath/repos/community-i686/linbox-1.4.patch
(from rev 183005, sagemath/trunk/linbox-1.4.patch)
  sagemath/repos/community-i686/package.patch
(from rev 183005, sagemath/trunk/package.patch)
  sagemath/repos/community-i686/paths.patch
(from rev 183005, sagemath/trunk/paths.patch)
  sagemath/repos/community-i686/python-2.7.11.patch
(from rev 183005, sagemath/trunk/python-2.7.11.patch)
  sagemath/repos/community-i686/sagemath-ipython5.patch
(from rev 183005, sagemath/trunk/sagemath-ipython5.patch)
  sagemath/repos/community-i686/skip-check.patch
(from rev 183005, sagemath/trunk/skip-check.patch)
  sagemath/repos/community-i686/test-optional.patch
(from rev 183005, sagemath/trunk/test-optional.patch)
  sagemath/repos/community-x86_64/PKGBUILD
(from rev 183005, sagemath/trunk/PKGBUILD)
  sagemath/repos/community-x86_64/anal.h
(from rev 183005, sagemath/trunk/anal.h)
  sagemath/repos/community-x86_64/clean.patch
(from rev 183005, sagemath/trunk/clean.patch)
  sagemath/repos/community-x86_64/cython-sys-path.patch
(from rev 183005, sagemath/trunk/cython-sys-path.patch)
  sagemath/repos/community-x86_64/disable-fes.patch
(from rev 183005, sagemath/trunk/disable-fes.patch)
  sagemath/repos/community-x86_64/ecm-7.patch
(from rev 183005, sagemath/trunk/ecm-7.patch)
  sagemath/repos/community-x86_64/env.patch
(from rev 183005, sagemath/trunk/env.patch)
  sagemath/repos/community-x86_64/is-package-installed.patch
(from rev 183005, sagemath/trunk/is-package-installed.patch)
  sagemath/repos/community-x86_64/jupyter-path.patch
(from rev 183005, sagemath/trunk/jupyter-path.patch)
  sagemath/repos/community-x86_64/linbox-1.4.patch
(from rev 183005, sagemath/trunk/linbox-1.4.patch)
  sagemath/repos/community-x86_64/package.patch
(from rev 183005, sagemath/trunk/package.patch)
  sagemath/repos/community-x86_64/paths.patch
(from rev 183005, sagemath/trunk/paths.patch)
  sagemath/repos/community-x86_64/python-2.7.11.patch
(from rev 183005, sagemath/trunk/python-2.7.11.patch)
  sagemath/repos/community-x86_64/sagemath-ipython5.patch
(from rev 183005, sagemath/trunk/sagemath-ipython5.patch)
  sagemath/repos/community-x86_64/skip-check.patch
(from rev 183005, sagemath/trunk/skip-check.patch)
  sagemath/repos/community-x86_64/test-optional.patch
(from rev 183005, sagemath/trunk/test-optional.patch)
Deleted:
  sagemath/repos/community-i686/PKGBUILD
  sagemath/repos/community-i686/anal.h
  sagemath/repos/community-i686/clean.patch
  sagemath/repos/community-i686/cython-sys-path.patch
  sagemath/repos/community-i686/disable-fes.patch
  sagemath/repos/community-i686/ecm-7.patch
  sagemath/repos/community-i686/env.patch
  sagemath/repos/community-i686/is-package-installed.patch
  sagemath/repos/community-i686/jupyter-path.patch
  sagemath/repos/community-i686/linbox-1.4.patch
  sagemath/repos/community-i686/package.patch
  sagemath/repos/community-i686/paths.patch
  sagemath/repos/community-i686/python-2.7.11.patch
  sagemath/repos/community-i686/skip-check.patch
  sagemath/repos/community-i686/test-optional.patch
  sagemath/repos/community-x86_64/PKGBUILD
  sagemath/repos/community-x86_64/anal.h
  sagemath/repos/community-x86_64/clean.patch
  sagemath/repos/community-x86_64/cython-sys-path.patch
  sagemath/repos/community-x86_64/disable-fes.patch
  sagemath/repos/community-x86_64/ecm-7.patch
  sagemath/repos/community-x86_64/env.patch
  sagemath/repos/community-x86_64/is-package-installed.patch
  sagemath/repos/community-x86_64/jupyter-path.patch
  sagemath/repos/community-x86_64/linbox-1.4.patch
  sagemath/repos/community-x86_64/package.patch
  sagemath/repos/community-x86_64/paths.patch
  sagemath/repos/community-x86_64/python-2.7.11.patch
  sagemath/repos/community-x86_64/skip-check.patch
  sagemath/repos/community-x86_64/test-optional.patch

-+
 /PKGBUILD  

[arch-commits] Commit in sagemath/trunk (PKGBUILD sagemath-ipython5.patch)

2016-07-16 Thread Antonio Rojas
Date: Saturday, July 16, 2016 @ 21:09:23
  Author: arojas
Revision: 183005

Port to ipython 5.0

Added:
  sagemath/trunk/sagemath-ipython5.patch
Modified:
  sagemath/trunk/PKGBUILD

-+
 PKGBUILD|9 ++-
 sagemath-ipython5.patch |  120 ++
 2 files changed, 126 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-07-16 16:16:26 UTC (rev 183004)
+++ PKGBUILD2016-07-16 21:09:23 UTC (rev 183005)
@@ -9,7 +9,7 @@
 
 pkgname=sagemath
 pkgver=7.2
-pkgrel=6
+pkgrel=7
 pkgdesc="Open Source Mathematics Software, free alternative to Magma, Maple, 
Mathematica, and Matlab"
 arch=(i686 x86_64)
 url="http://www.sagemath.org;
@@ -35,7 +35,7 @@
 provides=(sage-mathematics)
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/sagemath/sage/archive/$pkgver.tar.gz;
 anal.h env.patch paths.patch clean.patch skip-check.patch 
cython-sys-path.patch is-package-installed.patch package.patch
-disable-fes.patch jupyter-path.patch test-optional.patch 
python-2.7.11.patch linbox-1.4.patch ecm-7.patch)
+disable-fes.patch jupyter-path.patch test-optional.patch 
python-2.7.11.patch linbox-1.4.patch ecm-7.patch sagemath-ipython5.patch)
 md5sums=('2afeb8f75a33107fef5d509698c0eabc'
  'a906a180d198186a39820b0a2f9a9c63'
  'f6c62f0ccc168c5e6e3dd9d6f73f6389'
@@ -50,7 +50,8 @@
  'cdcabd475b80afe0534a5621e972736e'
  'ef927896f2071b442b1d07d7e69f5f3a'
  '9f1cef3e477bafebe2ad301db56db8a2'
- '0c9a57d35de80c2cd418ebec912efbbb')
+ '0c9a57d35de80c2cd418ebec912efbbb'
+ '55e75afd249048a8718c4377c22afa52')
 
 prepare(){
   cd sage-$pkgver
@@ -92,6 +93,8 @@
   patch -p0 -i ../disable-fes.patch
 # port to new givaro/fflas-ffpack/linbox http://trac.sagemath.org/ticket/17635
   patch -p1 -i ../linbox-1.4.patch
+# port to ipython 5.0 https://trac.sagemath.org/ticket/21006
+  patch -p1 -i ../sagemath-ipython5.patch
 # replace is_package_installed usage http://trac.sagemath.org/ticket/20377
   patch -p1 -i ../is-package-installed.patch
 

Added: sagemath-ipython5.patch
===
--- sagemath-ipython5.patch (rev 0)
+++ sagemath-ipython5.patch 2016-07-16 21:09:23 UTC (rev 183005)
@@ -0,0 +1,120 @@
+diff --git a/src/sage/repl/interpreter.py b/src/sage/repl/interpreter.py
+index ef8724d..6896985 100644
+--- a/src/sage/repl/interpreter.py
 b/src/sage/repl/interpreter.py
+@@ -103,6 +103,7 @@ import os
+ import re
+ import sys
+ from sage.repl.preparse import preparse
++from sage.repl.prompts import SagePrompts, InterfacePrompts
+ 
+ from traitlets.config.loader import Config
+ from traitlets import Bool, Type
+@@ -371,11 +372,6 @@ class SageTestShell(SageShellOverride, 
TerminalInteractiveShell):
+ ###
+ 
+ DEFAULT_SAGE_CONFIG = Config(
+-PromptManager = Config(
+-in_template = 'sage: ',
+-in2_template = ': ',
+-justify = False,
+-out_template = ''),
+ TerminalIPythonApp = Config(
+ display_banner = False,
+ verbose_crash = True,
+@@ -383,6 +379,7 @@ DEFAULT_SAGE_CONFIG = Config(
+ shell_class = SageTerminalInteractiveShell,
+ ),
+ InteractiveShell = Config(
++prompts_class = SagePrompts,
+ ast_node_interactivity = 'all',
+ colors = 'LightBG' if sys.stdout.isatty() else 'NoColor',
+ confirm_exit = False,
+@@ -616,13 +613,11 @@ def interface_shell_embed(interface):
+ cfg = copy.deepcopy(get_ipython().config)
+ except NameError:
+ cfg = copy.deepcopy(DEFAULT_SAGE_CONFIG)
+-cfg.PromptManager['in_template'] = interface.name() + ': '
+-cfg.PromptManager['in2_template'] = len(interface.name())*'.' + ': '
+-
+ ipshell = InteractiveShellEmbed(config=cfg,
+ banner1='\n  --> Switching to %s 
<--\n\n'%interface,
+ exit_msg = '\n  --> Exiting back to Sage 
<--\n')
+ ipshell.interface = interface
++ipshell.prompts = InterfacePrompts(interface.name())
+ 
+ while ipshell.prefilter_manager.transformers:
+ ipshell.prefilter_manager.transformers.pop()
+diff --git a/src/sage/repl/prompts.py b/src/sage/repl/prompts.py
+new file mode 100644
+index 000..69f8cdd
+--- /dev/null
 b/src/sage/repl/prompts.py
+@@ -0,0 +1,67 @@
++r"""
++Sage Commandline Prompts
++"""
++
++#*
++#   Copyright (C) 2016 Volker Braun 
++#
++# This program is free software: you can redistribute it and/or modify
++# it under the terms of the GNU General Public License as published by
++# the Free Software Foundation, either version 2 of the License, or
++# (at 

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

2016-07-16 Thread Felix Yan
Date: Saturday, July 16, 2016 @ 16:16:26
  Author: felixonmars
Revision: 183004

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

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

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

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

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

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

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

2016-07-16 Thread Felix Yan
Date: Saturday, July 16, 2016 @ 16:15:58
  Author: felixonmars
Revision: 183003

upgpkg: aria2 1.25.0-1

Modified:
  aria2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-16 15:53:06 UTC (rev 183002)
+++ PKGBUILD2016-07-16 16:15:58 UTC (rev 183003)
@@ -7,7 +7,7 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=aria2
-pkgver=1.24.0
+pkgver=1.25.0
 pkgrel=1
 pkgdesc='Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink'
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 depends=('gnutls' 'libxml2' 'sqlite' 'c-ares' 'ca-certificates' 'libssh2')
 checkdepends=('cppunit')
 
source=("https://github.com/tatsuhiro-t/aria2/releases/download/release-$pkgver/aria2-$pkgver.tar.xz;)
-sha256sums=('35a496d2704ffb07e0b0dcac16c6d9b2854327967f984218517403d187f7bf37')
+sha256sums=('ff89eb4c76cfc816a6f5abc7dfd416cc3f339e7d02c761f822fa965a18cf0d35')
 
 build() {
   cd $pkgname-$pkgver


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

2016-07-16 Thread Felix Yan
Date: Saturday, July 16, 2016 @ 15:53:06
  Author: felixonmars
Revision: 183002

archrelease: copy trunk to community-any

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

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

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

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


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

2016-07-16 Thread Felix Yan
Date: Saturday, July 16, 2016 @ 15:52:41
  Author: felixonmars
Revision: 183001

upgpkg: eslint 3.1.0-1

Modified:
  eslint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-16 15:42:47 UTC (rev 183000)
+++ PKGBUILD2016-07-16 15:52:41 UTC (rev 183001)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=eslint
-pkgver=3.0.1
+pkgver=3.1.0
 pkgrel=1
 pkgdesc='An AST-based pattern checker for JavaScript'
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('npm')
 source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-md5sums=('a65d69d0dac1ed1ca143287e2dd0aece')
+md5sums=('f014075818a8838eca0e4fbee0e0405e')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2016-07-16 Thread Jan Steffens
Date: Saturday, July 16, 2016 @ 15:43:10
  Author: heftig
Revision: 271949

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-07-16 15:41:30 UTC (rev 271948)
+++ extra-i686/PKGBUILD 2016-07-16 15:43:10 UTC (rev 271949)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: DrZaius 
-# Contributor: pumbur
-
-pkgname=opus
-pkgver=1.1.3
-pkgrel=1
-pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
-arch=(i686 x86_64)
-url="http://www.opus-codec.org/;
-license=(BSD)
-depends=(glibc)
-source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('32bbb6b557fe1b6066adc0ae1f08b629')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --enable-custom-modes --disable-static \
---enable-intrinsics --enable-rtcd --enable-ambisonics
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: opus/repos/extra-i686/PKGBUILD (from rev 271948, opus/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-07-16 15:43:10 UTC (rev 271949)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: DrZaius 
+# Contributor: pumbur
+
+pkgname=opus
+pkgver=1.1.3
+pkgrel=2
+pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
+arch=(i686 x86_64)
+url="http://www.opus-codec.org/;
+license=(BSD)
+depends=(glibc)
+makedepends=(doxygen)
+source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
+sha256sums=('58b6fe802e7e30182e95d0cde890c0ace40b6f125cffc50635f0ad2eef69b633')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --enable-custom-modes --disable-static \
+--enable-intrinsics --enable-rtcd --enable-ambisonics
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-07-16 15:41:30 UTC (rev 271948)
+++ extra-x86_64/PKGBUILD   2016-07-16 15:43:10 UTC (rev 271949)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: DrZaius 
-# Contributor: pumbur
-
-pkgname=opus
-pkgver=1.1.3
-pkgrel=1
-pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
-arch=(i686 x86_64)
-url="http://www.opus-codec.org/;
-license=(BSD)
-depends=(glibc)
-source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('32bbb6b557fe1b6066adc0ae1f08b629')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --enable-custom-modes --disable-static \
---enable-intrinsics --enable-rtcd --enable-ambisonics
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: opus/repos/extra-x86_64/PKGBUILD (from rev 271948, opus/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-07-16 15:43:10 UTC (rev 271949)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: DrZaius 
+# Contributor: pumbur
+
+pkgname=opus
+pkgver=1.1.3
+pkgrel=2
+pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
+arch=(i686 x86_64)
+url="http://www.opus-codec.org/;
+license=(BSD)
+depends=(glibc)

[arch-commits] Commit in lib32-opus/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2016-07-16 Thread Jan Steffens
Date: Saturday, July 16, 2016 @ 15:42:47
  Author: heftig
Revision: 183000

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-opus/repos/multilib-x86_64/PKGBUILD
(from rev 182999, lib32-opus/trunk/PKGBUILD)
Deleted:
  lib32-opus/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-16 15:42:10 UTC (rev 182999)
+++ PKGBUILD2016-07-16 15:42:47 UTC (rev 183000)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: farwayer 
-
-_pkgbase=opus
-pkgname=lib32-$_pkgbase
-pkgver=1.1.2
-pkgrel=1
-pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
-arch=('x86_64')
-url="http://www.opus-codec.org/;
-license=('custom')
-depends=('lib32-glibc' 'opus')
-makedepends=('gcc-multilib')
-options=('!libtool')
-source=("http://downloads.xiph.org/releases/${_pkgbase}/${_pkgbase}-${pkgver}.tar.gz;)
-sha256sums=('0e290078e31211baa7b5886bcc8ab6bc048b9fc83882532da4a1a45e58e907fd')
-
-build() {
-  export CC='gcc -m32'
-  export CXX='g++ -m32'
-  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
-  
-  cd ${_pkgbase}-${pkgver}
-  ./configure --prefix=/usr --enable-custom-modes --libdir=/usr/lib32
-  make
-}
-
-package() {
-  cd ${_pkgbase}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/usr/{include,share}
-  install -D COPYING "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: lib32-opus/repos/multilib-x86_64/PKGBUILD (from rev 182999, 
lib32-opus/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-07-16 15:42:47 UTC (rev 183000)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: farwayer 
+
+_pkgbase=opus
+pkgname=lib32-$_pkgbase
+pkgver=1.1.3
+pkgrel=2
+pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
+arch=('x86_64')
+url="http://www.opus-codec.org/;
+license=('BSD')
+depends=('lib32-glibc' 'opus')
+makedepends=('gcc-multilib')
+source=("http://downloads.xiph.org/releases/${_pkgbase}/${_pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('58b6fe802e7e30182e95d0cde890c0ace40b6f125cffc50635f0ad2eef69b633')
+
+build() {
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+  
+  cd ${_pkgbase}-${pkgver}
+  ./configure --prefix=/usr --enable-custom-modes --disable-static \
+--enable-intrinsics --enable-rtcd --enable-ambisonics --libdir=/usr/lib32
+  make
+}
+
+check() {
+  cd ${_pkgbase}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${_pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{include,share}
+  install -d "${pkgdir}"/usr/share/licenses
+  ln -s ${_pkgbase} "${pkgdir}"/usr/share/licenses/$pkgname
+}


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

2016-07-16 Thread Jan Steffens
Date: Saturday, July 16, 2016 @ 15:42:10
  Author: heftig
Revision: 182999

1.1.3-2

Modified:
  lib32-opus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-16 12:41:59 UTC (rev 182998)
+++ PKGBUILD2016-07-16 15:42:10 UTC (rev 182999)
@@ -4,17 +4,16 @@
 
 _pkgbase=opus
 pkgname=lib32-$_pkgbase
-pkgver=1.1.2
-pkgrel=1
+pkgver=1.1.3
+pkgrel=2
 pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
 arch=('x86_64')
 url="http://www.opus-codec.org/;
-license=('custom')
+license=('BSD')
 depends=('lib32-glibc' 'opus')
 makedepends=('gcc-multilib')
-options=('!libtool')
 
source=("http://downloads.xiph.org/releases/${_pkgbase}/${_pkgbase}-${pkgver}.tar.gz;)
-sha256sums=('0e290078e31211baa7b5886bcc8ab6bc048b9fc83882532da4a1a45e58e907fd')
+sha256sums=('58b6fe802e7e30182e95d0cde890c0ace40b6f125cffc50635f0ad2eef69b633')
 
 build() {
   export CC='gcc -m32'
@@ -22,13 +21,20 @@
   export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
   
   cd ${_pkgbase}-${pkgver}
-  ./configure --prefix=/usr --enable-custom-modes --libdir=/usr/lib32
+  ./configure --prefix=/usr --enable-custom-modes --disable-static \
+--enable-intrinsics --enable-rtcd --enable-ambisonics --libdir=/usr/lib32
   make
 }
 
+check() {
+  cd ${_pkgbase}-${pkgver}
+  make check
+}
+
 package() {
   cd ${_pkgbase}-${pkgver}
   make DESTDIR="${pkgdir}" install
   rm -rf "${pkgdir}"/usr/{include,share}
-  install -D COPYING "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
+  install -d "${pkgdir}"/usr/share/licenses
+  ln -s ${_pkgbase} "${pkgdir}"/usr/share/licenses/$pkgname
 }


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

2016-07-16 Thread Jan Steffens
Date: Saturday, July 16, 2016 @ 15:41:30
  Author: heftig
Revision: 271948

1.1.3-2

Modified:
  opus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-16 15:38:18 UTC (rev 271947)
+++ PKGBUILD2016-07-16 15:41:30 UTC (rev 271948)
@@ -6,12 +6,13 @@
 
 pkgname=opus
 pkgver=1.1.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
 arch=(i686 x86_64)
 url="http://www.opus-codec.org/;
 license=(BSD)
 depends=(glibc)
+makedepends=(doxygen)
 source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
 sha256sums=('58b6fe802e7e30182e95d0cde890c0ace40b6f125cffc50635f0ad2eef69b633')
 


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

2016-07-16 Thread Jan Steffens
Date: Saturday, July 16, 2016 @ 15:38:18
  Author: heftig
Revision: 271947

use sha256sums

Modified:
  opus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-16 15:33:55 UTC (rev 271946)
+++ PKGBUILD2016-07-16 15:38:18 UTC (rev 271947)
@@ -13,7 +13,7 @@
 license=(BSD)
 depends=(glibc)
 source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('32bbb6b557fe1b6066adc0ae1f08b629')
+sha256sums=('58b6fe802e7e30182e95d0cde890c0ace40b6f125cffc50635f0ad2eef69b633')
 
 build() {
   cd $pkgname-$pkgver


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

2016-07-16 Thread Jan Steffens
Date: Saturday, July 16, 2016 @ 15:33:55
  Author: heftig
Revision: 271946

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-07-16 15:33:12 UTC (rev 271945)
+++ extra-i686/PKGBUILD 2016-07-16 15:33:55 UTC (rev 271946)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: DrZaius 
-# Contributor: pumbur
-
-pkgname=opus
-pkgver=1.1.2
-pkgrel=1
-pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
-arch=(i686 x86_64)
-url="http://www.opus-codec.org/;
-license=(BSD)
-depends=(glibc)
-source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('1f08a661bc72930187893a07f3741a91')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --enable-custom-modes --disable-static \
---enable-intrinsics --enable-rtcd
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: opus/repos/extra-i686/PKGBUILD (from rev 271945, opus/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-07-16 15:33:55 UTC (rev 271946)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: DrZaius 
+# Contributor: pumbur
+
+pkgname=opus
+pkgver=1.1.3
+pkgrel=1
+pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
+arch=(i686 x86_64)
+url="http://www.opus-codec.org/;
+license=(BSD)
+depends=(glibc)
+source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('32bbb6b557fe1b6066adc0ae1f08b629')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --enable-custom-modes --disable-static \
+--enable-intrinsics --enable-rtcd --enable-ambisonics
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-07-16 15:33:12 UTC (rev 271945)
+++ extra-x86_64/PKGBUILD   2016-07-16 15:33:55 UTC (rev 271946)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: DrZaius 
-# Contributor: pumbur
-
-pkgname=opus
-pkgver=1.1.2
-pkgrel=1
-pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
-arch=(i686 x86_64)
-url="http://www.opus-codec.org/;
-license=(BSD)
-depends=(glibc)
-source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('1f08a661bc72930187893a07f3741a91')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --enable-custom-modes --disable-static \
---enable-intrinsics --enable-rtcd
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: opus/repos/extra-x86_64/PKGBUILD (from rev 271945, opus/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-07-16 15:33:55 UTC (rev 271946)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: DrZaius 
+# Contributor: pumbur
+
+pkgname=opus
+pkgver=1.1.3
+pkgrel=1
+pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
+arch=(i686 x86_64)
+url="http://www.opus-codec.org/;
+license=(BSD)
+depends=(glibc)
+source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)

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

2016-07-16 Thread Jan Steffens
Date: Saturday, July 16, 2016 @ 15:33:12
  Author: heftig
Revision: 271945

1.1.3-1

Modified:
  opus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-16 13:06:14 UTC (rev 271944)
+++ PKGBUILD2016-07-16 15:33:12 UTC (rev 271945)
@@ -5,7 +5,7 @@
 # Contributor: pumbur
 
 pkgname=opus
-pkgver=1.1.2
+pkgver=1.1.3
 pkgrel=1
 pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
 arch=(i686 x86_64)
@@ -13,12 +13,12 @@
 license=(BSD)
 depends=(glibc)
 source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('1f08a661bc72930187893a07f3741a91')
+md5sums=('32bbb6b557fe1b6066adc0ae1f08b629')
 
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr --enable-custom-modes --disable-static \
---enable-intrinsics --enable-rtcd
+--enable-intrinsics --enable-rtcd --enable-ambisonics
   make
 }
 


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

2016-07-16 Thread Evangelos Foutras
Date: Saturday, July 16, 2016 @ 13:06:14
  Author: foutrelis
Revision: 271944

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

Added:
  p7zip/repos/extra-i686/PKGBUILD
(from rev 271943, p7zip/trunk/PKGBUILD)
  p7zip/repos/extra-i686/p7zip.install
(from rev 271943, p7zip/trunk/p7zip.install)
  p7zip/repos/extra-x86_64/PKGBUILD
(from rev 271943, p7zip/trunk/PKGBUILD)
  p7zip/repos/extra-x86_64/p7zip.install
(from rev 271943, p7zip/trunk/p7zip.install)
Deleted:
  p7zip/repos/extra-i686/CVE-2016-2334.patch
  p7zip/repos/extra-i686/CVE-2016-2335.patch
  p7zip/repos/extra-i686/PKGBUILD
  p7zip/repos/extra-i686/p7zip.install
  p7zip/repos/extra-x86_64/CVE-2016-2334.patch
  p7zip/repos/extra-x86_64/CVE-2016-2335.patch
  p7zip/repos/extra-x86_64/PKGBUILD
  p7zip/repos/extra-x86_64/p7zip.install

--+
 /PKGBUILD|  104 +
 /p7zip.install   |   18 ++
 extra-i686/CVE-2016-2334.patch   |   24 
 extra-i686/CVE-2016-2335.patch   |   17 --
 extra-i686/PKGBUILD  |   60 -
 extra-i686/p7zip.install |9 ---
 extra-x86_64/CVE-2016-2334.patch |   24 
 extra-x86_64/CVE-2016-2335.patch |   17 --
 extra-x86_64/PKGBUILD|   60 -
 extra-x86_64/p7zip.install   |9 ---
 10 files changed, 122 insertions(+), 220 deletions(-)

Deleted: extra-i686/CVE-2016-2334.patch
===
--- extra-i686/CVE-2016-2334.patch  2016-07-16 13:04:22 UTC (rev 271943)
+++ extra-i686/CVE-2016-2334.patch  2016-07-16 13:06:14 UTC (rev 271944)
@@ -1,24 +0,0 @@
-Index: p7zip_15.14.1/CPP/7zip/Archive/HfsHandler.cpp
-===
 p7zip_15.14.1.orig/CPP/7zip/Archive/HfsHandler.cpp
-+++ p7zip_15.14.1/CPP/7zip/Archive/HfsHandler.cpp
-@@ -987,7 +987,9 @@ HRESULT CDatabase::LoadCatalog(const CFo
-   item.GroupID = Get32(r + 0x24);
-   item.AdminFlags = r[0x28];
-   item.OwnerFlags = r[0x29];
-+  */
-   item.FileMode = Get16(r + 0x2A);
-+  /*
-   item.special.iNodeNum = Get16(r + 0x2C); // or .linkCount
-   item.FileType = Get32(r + 0x30);
-   item.FileCreator = Get32(r + 0x34);
-@@ -1572,6 +1574,9 @@ HRESULT CHandler::ExtractZlibFile(
- 
- UInt32 size = GetUi32(tableBuf + i * 8 + 4);
- 
-+if (size > buf.Size() || size > kCompressionBlockSize + 1)
-+return S_FALSE;
-+
- RINOK(ReadStream_FALSE(inStream, buf, size));
- 
- if ((buf[0] & 0xF) == 0xF)

Deleted: extra-i686/CVE-2016-2335.patch
===
--- extra-i686/CVE-2016-2335.patch  2016-07-16 13:04:22 UTC (rev 271943)
+++ extra-i686/CVE-2016-2335.patch  2016-07-16 13:06:14 UTC (rev 271944)
@@ -1,17 +0,0 @@
-Index: p7zip_15.14.1/CPP/7zip/Archive/Udf/UdfIn.cpp
-===
 p7zip_15.14.1.orig/CPP/7zip/Archive/Udf/UdfIn.cpp
-+++ p7zip_15.14.1/CPP/7zip/Archive/Udf/UdfIn.cpp
-@@ -389,7 +389,11 @@ HRESULT CInArchive::ReadFileItem(int vol
- return S_FALSE;
-   CFile  = Files.Back();
-   const CLogVol  = LogVols[volIndex];
--  CPartition  = 
Partitions[vol.PartitionMaps[lad.Location.PartitionRef].PartitionIndex];
-+  unsigned partitionRef = lad.Location.PartitionRef;
-+
-+  if (partitionRef >= vol.PartitionMaps.Size())
-+  return S_FALSE;
-+  CPartition  = 
Partitions[vol.PartitionMaps[partitionRef].PartitionIndex];
- 
-   UInt32 key = lad.Location.Pos;
-   UInt32 value;

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-07-16 13:04:22 UTC (rev 271943)
+++ extra-i686/PKGBUILD 2016-07-16 13:06:14 UTC (rev 271944)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: Gaetan Bisson 
-# Contributor: Thayer Williams 
-# Contributor: Hugo Doria 
-# Contributor: TuxSpirit  2007/11/17 21:22:36 UTC
-# Contributor: Daniel J Griffiths 
-
-pkgname=p7zip
-pkgver=15.14.1
-pkgrel=2
-pkgdesc="Command-line file archiver with high compression ratio"
-arch=('i686' 'x86_64')
-url="http://p7zip.sourceforge.net/;
-license=('LGPL' 'custom:unRAR')
-depends=('gcc-libs' 'sh')
-makedepends_i686=('nasm')
-makedepends_x86_64=('yasm')
-install=$pkgname.install
-source=(https://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/${pkgname}_${pkgver}_src_all.tar.bz2
-CVE-2016-2334.patch
-CVE-2016-2335.patch)
-sha256sums=('699db4da3621904113e040703220abb1148dfef477b55305e2f14a4f1f8f25d4'
-'632cae14095e065cb550b0f16faf39d8f822d0a8bb5b605e903f3bc7657a4ee5'
-'368870f92c658e8add261695923470855a969c0d7ecafd880ec7144ac245adbf')
-
-prepare() 

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

2016-07-16 Thread Evangelos Foutras
Date: Saturday, July 16, 2016 @ 13:04:22
  Author: foutrelis
Revision: 271943

upgpkg: p7zip 16.02-1

New upstream release.

Modified:
  p7zip/trunk/PKGBUILD
Deleted:
  p7zip/trunk/CVE-2016-2334.patch
  p7zip/trunk/CVE-2016-2335.patch

-+
 CVE-2016-2334.patch |   24 
 CVE-2016-2335.patch |   17 -
 PKGBUILD|   16 
 3 files changed, 4 insertions(+), 53 deletions(-)

Deleted: CVE-2016-2334.patch
===
--- CVE-2016-2334.patch 2016-07-16 12:39:18 UTC (rev 271942)
+++ CVE-2016-2334.patch 2016-07-16 13:04:22 UTC (rev 271943)
@@ -1,24 +0,0 @@
-Index: p7zip_15.14.1/CPP/7zip/Archive/HfsHandler.cpp
-===
 p7zip_15.14.1.orig/CPP/7zip/Archive/HfsHandler.cpp
-+++ p7zip_15.14.1/CPP/7zip/Archive/HfsHandler.cpp
-@@ -987,7 +987,9 @@ HRESULT CDatabase::LoadCatalog(const CFo
-   item.GroupID = Get32(r + 0x24);
-   item.AdminFlags = r[0x28];
-   item.OwnerFlags = r[0x29];
-+  */
-   item.FileMode = Get16(r + 0x2A);
-+  /*
-   item.special.iNodeNum = Get16(r + 0x2C); // or .linkCount
-   item.FileType = Get32(r + 0x30);
-   item.FileCreator = Get32(r + 0x34);
-@@ -1572,6 +1574,9 @@ HRESULT CHandler::ExtractZlibFile(
- 
- UInt32 size = GetUi32(tableBuf + i * 8 + 4);
- 
-+if (size > buf.Size() || size > kCompressionBlockSize + 1)
-+return S_FALSE;
-+
- RINOK(ReadStream_FALSE(inStream, buf, size));
- 
- if ((buf[0] & 0xF) == 0xF)

Deleted: CVE-2016-2335.patch
===
--- CVE-2016-2335.patch 2016-07-16 12:39:18 UTC (rev 271942)
+++ CVE-2016-2335.patch 2016-07-16 13:04:22 UTC (rev 271943)
@@ -1,17 +0,0 @@
-Index: p7zip_15.14.1/CPP/7zip/Archive/Udf/UdfIn.cpp
-===
 p7zip_15.14.1.orig/CPP/7zip/Archive/Udf/UdfIn.cpp
-+++ p7zip_15.14.1/CPP/7zip/Archive/Udf/UdfIn.cpp
-@@ -389,7 +389,11 @@ HRESULT CInArchive::ReadFileItem(int vol
- return S_FALSE;
-   CFile  = Files.Back();
-   const CLogVol  = LogVols[volIndex];
--  CPartition  = 
Partitions[vol.PartitionMaps[lad.Location.PartitionRef].PartitionIndex];
-+  unsigned partitionRef = lad.Location.PartitionRef;
-+
-+  if (partitionRef >= vol.PartitionMaps.Size())
-+  return S_FALSE;
-+  CPartition  = 
Partitions[vol.PartitionMaps[partitionRef].PartitionIndex];
- 
-   UInt32 key = lad.Location.Pos;
-   UInt32 value;

Modified: PKGBUILD
===
--- PKGBUILD2016-07-16 12:39:18 UTC (rev 271942)
+++ PKGBUILD2016-07-16 13:04:22 UTC (rev 271943)
@@ -7,8 +7,8 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=p7zip
-pkgver=15.14.1
-pkgrel=2
+pkgver=16.02
+pkgrel=1
 pkgdesc="Command-line file archiver with high compression ratio"
 arch=('i686' 'x86_64')
 url="http://p7zip.sourceforge.net/;
@@ -17,12 +17,8 @@
 makedepends_i686=('nasm')
 makedepends_x86_64=('yasm')
 install=$pkgname.install
-source=(https://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/${pkgname}_${pkgver}_src_all.tar.bz2
-CVE-2016-2334.patch
-CVE-2016-2335.patch)
-sha256sums=('699db4da3621904113e040703220abb1148dfef477b55305e2f14a4f1f8f25d4'
-'632cae14095e065cb550b0f16faf39d8f822d0a8bb5b605e903f3bc7657a4ee5'
-'368870f92c658e8add261695923470855a969c0d7ecafd880ec7144ac245adbf')
+source=(https://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/${pkgname}_${pkgver}_src_all.tar.bz2)
+sha256sums=('5eb20ac0e2944f6cb9c2d51dd6c4518941c185347d4089ea89087ffdd6e2341f')
 
 prepare() {
   cd "$srcdir/${pkgname}_$pkgver"
@@ -32,10 +28,6 @@
   else
 cp makefile.linux_x86_asm_gcc_4.X makefile.machine
   fi
-
-  # https://sourceforge.net/p/p7zip/discussion/383043/thread/9d0fb86b/
-  patch -Np1 -i ../CVE-2016-2334.patch
-  patch -Np1 -i ../CVE-2016-2335.patch
 }
 
 build() {


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

2016-07-16 Thread Evangelos Foutras
Date: Saturday, July 16, 2016 @ 12:41:59
  Author: foutrelis
Revision: 182998

archrelease: copy trunk to community-any

Added:
  cloc/repos/community-any/PKGBUILD
(from rev 182997, cloc/trunk/PKGBUILD)
Deleted:
  cloc/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-16 12:40:45 UTC (rev 182997)
+++ PKGBUILD2016-07-16 12:41:59 UTC (rev 182998)
@@ -1,21 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: Diogo Ferreira 
-
-pkgname=cloc
-pkgver=1.66
-pkgrel=1
-pkgdesc="Count lines of code"
-arch=('any')
-url="https://github.com/AlDanial/cloc;
-license=('GPL')
-depends=('perl' 'perl-algorithm-diff' 'perl-regexp-common')
-source=(https://github.com/AlDanial/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('3a8a6d090e6adda9c842583eb49847d6469c65fcf8b2ccefd8e4b18dbb29524e')
-
-package() {
-  cd $pkgname-$pkgver/Unix
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: cloc/repos/community-any/PKGBUILD (from rev 182997, cloc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-07-16 12:41:59 UTC (rev 182998)
@@ -0,0 +1,21 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Diogo Ferreira 
+
+pkgname=cloc
+pkgver=1.70
+pkgrel=1
+pkgdesc="Count lines of code"
+arch=('any')
+url="https://github.com/AlDanial/cloc;
+license=('GPL')
+depends=('perl' 'perl-algorithm-diff' 'perl-regexp-common')
+source=(https://github.com/AlDanial/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('5b574bac85b0ff4c48d7c3fe32578703b5fb796689de692b903ee43349671615')
+
+package() {
+  cd $pkgname-$pkgver/Unix
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-07-16 Thread Evangelos Foutras
Date: Saturday, July 16, 2016 @ 12:40:45
  Author: foutrelis
Revision: 182997

upgpkg: cloc 1.70-1

New upstream release.

Modified:
  cloc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-16 10:32:48 UTC (rev 182996)
+++ PKGBUILD2016-07-16 12:40:45 UTC (rev 182997)
@@ -3,7 +3,7 @@
 # Contributor: Diogo Ferreira 
 
 pkgname=cloc
-pkgver=1.66
+pkgver=1.70
 pkgrel=1
 pkgdesc="Count lines of code"
 arch=('any')
@@ -11,7 +11,7 @@
 license=('GPL')
 depends=('perl' 'perl-algorithm-diff' 'perl-regexp-common')
 
source=(https://github.com/AlDanial/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('3a8a6d090e6adda9c842583eb49847d6469c65fcf8b2ccefd8e4b18dbb29524e')
+sha256sums=('5b574bac85b0ff4c48d7c3fe32578703b5fb796689de692b903ee43349671615')
 
 package() {
   cd $pkgname-$pkgver/Unix


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

2016-07-16 Thread Christian Hesse
Date: Saturday, July 16, 2016 @ 12:05:28
  Author: eworm
Revision: 271940

upgpkg: fakeroot 1.21-1

new upstream release

Modified:
  fakeroot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-16 11:41:48 UTC (rev 271939)
+++ PKGBUILD2016-07-16 12:05:28 UTC (rev 271940)
@@ -4,7 +4,7 @@
 # Contributor: Jochem Kossen 
 
 pkgname=fakeroot
-pkgver=1.20.2
+pkgver=1.21
 pkgrel=1
 pkgdesc='Tool for simulating superuser privileges'
 arch=('i686' 'x86_64')
@@ -13,12 +13,14 @@
 groups=('base-devel')
 install=fakeroot.install
 depends=('glibc' 'filesystem' 'sed' 'util-linux' 'sh')
-source=(http://ftp.debian.org/debian/pool/main/f/$pkgname/${pkgname}_${pkgver}.orig.tar.bz2)
-md5sums=('a4b4564a75024aa96c86e4d1017ac786')
+makedepends=('po4a')
+source=(http://ftp.debian.org/debian/pool/main/f/$pkgname/${pkgname}_${pkgver}.orig.tar.gz)
+md5sums=('be5c9a0e516869fca4a6758105968e5a')
 
 build() {
   cd $pkgname-$pkgver
 
+  ./bootstrap
   ./configure --prefix=/usr \
 --libdir=/usr/lib/libfakeroot \
 --disable-static \
@@ -25,6 +27,9 @@
 --with-ipc=sysv
 
   make
+
+  cd doc
+  po4a -k 0 --rm-backups --variable "srcdir=../doc/" po4a/po4a.cfg
 }
 
 package() {


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

2016-07-16 Thread Christian Hesse
Date: Saturday, July 16, 2016 @ 12:05:33
  Author: eworm
Revision: 271941

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

Added:
  fakeroot/repos/testing-i686/
  fakeroot/repos/testing-i686/PKGBUILD
(from rev 271940, fakeroot/trunk/PKGBUILD)
  fakeroot/repos/testing-i686/fakeroot.install
(from rev 271940, fakeroot/trunk/fakeroot.install)
  fakeroot/repos/testing-x86_64/
  fakeroot/repos/testing-x86_64/PKGBUILD
(from rev 271940, fakeroot/trunk/PKGBUILD)
  fakeroot/repos/testing-x86_64/fakeroot.install
(from rev 271940, fakeroot/trunk/fakeroot.install)

-+
 testing-i686/PKGBUILD   |   44 ++
 testing-i686/fakeroot.install   |   14 
 testing-x86_64/PKGBUILD |   44 ++
 testing-x86_64/fakeroot.install |   14 
 4 files changed, 116 insertions(+)

Copied: fakeroot/repos/testing-i686/PKGBUILD (from rev 271940, 
fakeroot/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-07-16 12:05:33 UTC (rev 271941)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Jochem Kossen 
+
+pkgname=fakeroot
+pkgver=1.21
+pkgrel=1
+pkgdesc='Tool for simulating superuser privileges'
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://packages.debian.org/fakeroot;
+groups=('base-devel')
+install=fakeroot.install
+depends=('glibc' 'filesystem' 'sed' 'util-linux' 'sh')
+makedepends=('po4a')
+source=(http://ftp.debian.org/debian/pool/main/f/$pkgname/${pkgname}_${pkgver}.orig.tar.gz)
+md5sums=('be5c9a0e516869fca4a6758105968e5a')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./bootstrap
+  ./configure --prefix=/usr \
+--libdir=/usr/lib/libfakeroot \
+--disable-static \
+--with-ipc=sysv
+
+  make
+
+  cd doc
+  po4a -k 0 --rm-backups --variable "srcdir=../doc/" po4a/po4a.cfg
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  install -dm755 "$pkgdir"/etc/ld.so.conf.d/
+  echo '/usr/lib/libfakeroot' > "$pkgdir"/etc/ld.so.conf.d/fakeroot.conf
+
+  # install README for sysv/tcp usage
+  install -Dm644 README "$pkgdir"/usr/share/doc/$pkgname/README
+}

Copied: fakeroot/repos/testing-i686/fakeroot.install (from rev 271940, 
fakeroot/trunk/fakeroot.install)
===
--- testing-i686/fakeroot.install   (rev 0)
+++ testing-i686/fakeroot.install   2016-07-16 12:05:33 UTC (rev 271941)
@@ -0,0 +1,14 @@
+post_install() {
+  usr/bin/ldconfig -r .
+}
+
+post_upgrade() {
+  if [ "$(vercmp $2 1.14.4-2)" -lt 0 ]; then
+sed -i -e '/\/usr\/lib\/libfakeroot/d' etc/ld.so.conf
+  fi
+  usr/bin/ldconfig -r .
+}
+
+pre_remove() {
+  usr/bin/ldconfig -r .
+}

Copied: fakeroot/repos/testing-x86_64/PKGBUILD (from rev 271940, 
fakeroot/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-07-16 12:05:33 UTC (rev 271941)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Jochem Kossen 
+
+pkgname=fakeroot
+pkgver=1.21
+pkgrel=1
+pkgdesc='Tool for simulating superuser privileges'
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://packages.debian.org/fakeroot;
+groups=('base-devel')
+install=fakeroot.install
+depends=('glibc' 'filesystem' 'sed' 'util-linux' 'sh')
+makedepends=('po4a')
+source=(http://ftp.debian.org/debian/pool/main/f/$pkgname/${pkgname}_${pkgver}.orig.tar.gz)
+md5sums=('be5c9a0e516869fca4a6758105968e5a')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./bootstrap
+  ./configure --prefix=/usr \
+--libdir=/usr/lib/libfakeroot \
+--disable-static \
+--with-ipc=sysv
+
+  make
+
+  cd doc
+  po4a -k 0 --rm-backups --variable "srcdir=../doc/" po4a/po4a.cfg
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  install -dm755 "$pkgdir"/etc/ld.so.conf.d/
+  echo '/usr/lib/libfakeroot' > "$pkgdir"/etc/ld.so.conf.d/fakeroot.conf
+
+  # install README for sysv/tcp usage
+  install -Dm644 README "$pkgdir"/usr/share/doc/$pkgname/README
+}

Copied: fakeroot/repos/testing-x86_64/fakeroot.install (from rev 271940, 
fakeroot/trunk/fakeroot.install)
===
--- testing-x86_64/fakeroot.install (rev 0)
+++ testing-x86_64/fakeroot.install 2016-07-16 12:05:33 UTC (rev 271941)
@@ -0,0 +1,14 @@
+post_install() {
+  usr/bin/ldconfig -r .
+}
+
+post_upgrade() {
+  if [ "$(vercmp $2 1.14.4-2)" -lt 0 ]; then
+sed -i -e '/\/usr\/lib\/libfakeroot/d' 

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

2016-07-16 Thread Kyle Keen
Date: Saturday, July 16, 2016 @ 10:32:48
  Author: kkeen
Revision: 182996

archrelease: copy trunk to community-any

Added:
  ipython/repos/community-any/PKGBUILD
(from rev 182995, ipython/trunk/PKGBUILD)
Deleted:
  ipython/repos/community-any/PKGBUILD

--+
 PKGBUILD |  306 ++---
 1 file changed, 153 insertions(+), 153 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-16 10:26:19 UTC (rev 182995)
+++ PKGBUILD2016-07-16 10:32:48 UTC (rev 182996)
@@ -1,153 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: PepeSmith
-# Contributor: Aron Asor 
-# Contributor: Chris Brannon 
-# Contributor : Douglas Soares de Andrade 
-
-pkgbase=ipython
-pkgname=(ipython ipython2)
-pkgver=5.0.0
-pkgrel=1
-pkgdesc="An enhanced Interactive Python shell."
-arch=('any')
-url="http://ipython.org;
-license=('BSD')
-depends=('python' 'python-decorator' 'python-pexpect' 'sqlite'
- 'python-setuptools' 'python-path' 'python-prompt_toolkit')
-makedepends=('python-setuptools' 'python2-setuptools')
-optdepends=("python-nose: for IPython's test suite")
-
-# some of these will update rapidly, others never
-# so _vars will be phased in as new updates are released
-_traitv=4.2.2
-_psharev=0.7.3
-
-source=("ipython-$pkgver.tgz::https://github.com/ipython/ipython/archive/$pkgver.tar.gz;
-
"https://files.pythonhosted.org/packages/source/t/traitlets/traitlets-$_traitv.tar.gz;
-
"https://pypi.python.org/packages/source/i/ipython_genutils/ipython_genutils-0.1.0.tar.gz;
-
"https://files.pythonhosted.org/packages/source/p/pickleshare/pickleshare-$_psharev.tar.gz;
-
"https://pypi.python.org/packages/source/s/simplegeneric/simplegeneric-0.8.1.zip;
-
"http://www.packal.org/sites/default/files/public/styles/icon_large/public/workflow-files/nkeimipynbworkflow/icon/icon.png;)
-md5sums=('7fc325d5872815e9efac229ffdd12037'
- 'd0725f9818bd9e112a6531da26d433b8'
- '9a8afbe0978adbcbfcb3b35b2d015a56'
- '0ccdd8e65737a92eec47888dae61ff95'
- 'f9c1fab00fd981be588fc32759f474e3'
- '2901d65f1b1fe354e72850085cd1c072')
-
-# With 4.0 many previously bundled external libraries are no longer bundled
-# Most are written/maintained/used only by the ipython project
-# Since there are so many and they are so small, they get re-bundled here
-# Break them out if any non-ipython package ends up needing these
-
-# traitlets (depends on python-decorator)
-# ipython_genutils
-# "Pretend this doesn’t exist. Nobody should use it."
-# "Vestigial IPython utilities: DO NOT USE"
-# (still required for now though, but drop at first chance)
-# pickleshare (depends on path.py)
-# simplegeneric (so old that it only comes in .zip and still refers to the 
cheeseshop)
-# shutil_get_terminal_size ?
-
-# confirm that an update does not break sage?
-
-prepare() {
-  cd "$srcdir"
-  cp -r ipython-$pkgveripython2-$pkgver
-  cp -r ipython_genutils-0.1.0 ipython2_genutils-0.1.0
-  cp -r pickleshare-$_psharev  python2-pickleshare-$_psharev
-  cp -r traitlets-$_traitv python2-traitlets-$_traitv
-  cp -r simplegeneric-0.8.1python2-simplegeneric-0.8.1
-
-  # python 3.5 does not need a 3.3 backport hack
-  cd "$srcdir/ipython-$pkgver"
-  sed -i 's|backports.shutil_get_terminal_size|shutil|' 
IPython/utils/terminal.py
-}
-
-build() {
-  cd "$srcdir"
-}
-
-package_ipython() {
-  cd "$srcdir/ipython-$pkgver"
-
-  # see https://github.com/ipython/ipython/issues/2057
-  #export LC_ALL=en_US.UTF-8
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  # TEMPORARY!
-  cd "$srcdir/ipython_genutils-0.1.0"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/pickleshare-$_psharev"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/traitlets-$_traitv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/simplegeneric-0.8.1"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/ipython-$pkgver"
-  install -Dm644 docs/source/about/license_and_copyright.rst 
"$pkgdir/usr/share/licenses/ipython/LICENSE"
-
-  cd "$srcdir/ipython-$pkgver/examples/IPython Kernel/"
-  # FS#45120
-  sed -i 's/gnome-netstatus-idle/ipython/' *.desktop
-  install -Dm644 ipython.desktop 
"$pkgdir/usr/share/applications/ipython.desktop"
-  #install -Dm644 ipython-qtconsole.desktop 
"$pkgdir/usr/share/applications/ipython-qtconsole.desktop"
-  # FS#47046
-  install -Dm644 "$srcdir/icon.png" "$pkgdir/usr/share/pixmaps/ipython.png"
-
-  #cd $srcdir/ipython-$pkgver/IPython/qt/console/resources/icon/
-  #install -Dm644 IPythonConsole.svg 
"$pkgdir/usr/share/icons/hicolor/scalable/apps/ipython.svg"
-}
-
-package_ipython2() {
-  pkgdesc="An enhanced Interactive Python2 

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

2016-07-16 Thread Kyle Keen
Date: Saturday, July 16, 2016 @ 10:26:19
  Author: kkeen
Revision: 182995

upgpkg: ipython 5.0.0-2 FS#50062

Modified:
  ipython/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-16 09:51:27 UTC (rev 182994)
+++ PKGBUILD2016-07-16 10:26:19 UTC (rev 182995)
@@ -8,7 +8,7 @@
 pkgbase=ipython
 pkgname=(ipython ipython2)
 pkgver=5.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc="An enhanced Interactive Python shell."
 arch=('any')
 url="http://ipython.org;
@@ -108,7 +108,7 @@
   pkgdesc="An enhanced Interactive Python2 shell."
   depends=('python2' 'python2-decorator' 'python2-pexpect' 'sqlite'
 'python2-setuptools' 'python2-path' 'python2-pathlib'
-'python2-backports.shutil_get_terminal_size' 'python-prompt_toolkit')
+'python2-backports.shutil_get_terminal_size' 'python2-prompt_toolkit')
   optdepends=("wxpython: needed for ipython2 --gui=wx"
   "python2-nose: for IPython's test suite")
   # "wxpython: needed for ipython2 --gui=wx"   does this still work?


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

2016-07-16 Thread Jelle van der Waa
Date: Saturday, July 16, 2016 @ 09:51:02
  Author: jelle
Revision: 182991

Add tests, remove unrequired LANG

Modified:
  python-webencodings/trunk/PKGBUILD(contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-16 09:47:28 UTC (rev 182990)
+++ PKGBUILD2016-07-16 09:51:02 UTC (rev 182991)
@@ -6,9 +6,10 @@
 pkgver=0.5
 pkgrel=1
 arch=('any')
-url="https://github.com/SimonSapin/python-webencodings;
+url="https://github.com/gsnedders/python-webencodings;
 license=('BSD')
 makedepends=('python2' 'python' 'python-setuptools' 'python2-setuptools')
+checkdepends=('python-nose' 'python2-nose')
 
source=(https://github.com/gsnedders/python-webencodings/archive/v$pkgver.tar.gz)
 md5sums=('380cd5f79cd65620bd5b852528dce3a6')
 
@@ -17,7 +18,7 @@
 depends=('python')
 cd ${srcdir}/${pkgbase}-${pkgver}
 
-LANG="en_US.UTF-8" python3 setup.py install --root=${pkgdir}
+python3 setup.py install --root=${pkgdir}
 }
 
 package_python2-webencodings() {
@@ -27,3 +28,11 @@
 
 python2 setup.py install --root=${pkgdir}
 }
+
+check() {
+cd ${srcdir}/${pkgbase}-${pkgver}/webencodings
+
+nosetests tests.py
+
+nosetests2 tests.py
+}


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


[arch-commits] Commit in mps-youtube/repos (3 files)

2016-07-16 Thread Johannes Löthberg
Date: Saturday, July 16, 2016 @ 09:51:06
  Author: demize
Revision: 182993

archrelease: copy trunk to community-testing-any

Added:
  mps-youtube/repos/community-testing-any/
  mps-youtube/repos/community-testing-any/PKGBUILD
(from rev 182992, mps-youtube/trunk/PKGBUILD)
  mps-youtube/repos/community-testing-any/mps-youtube.install
(from rev 182992, mps-youtube/trunk/mps-youtube.install)

-+
 PKGBUILD|   28 
 mps-youtube.install |7 +++
 2 files changed, 35 insertions(+)

Copied: mps-youtube/repos/community-testing-any/PKGBUILD (from rev 182992, 
mps-youtube/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2016-07-16 09:51:06 UTC (rev 182993)
@@ -0,0 +1,28 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=mps-youtube
+pkgver=0.2.7.1
+pkgrel=1
+
+pkgdesc="Terminal based YouTube jukebox with playlist management"
+url='https://github.com/np1/mps-youtube'
+arch=('any')
+license=('GPL3')
+
+depends=('python' 'python-setuptools' 'python-pafy')
+optdepends=('mpv: Alternative to mplayer for playback'
+'mplayer: Alternative to mpv for playback'
+'ffmpeg: for transcoding downloaded content'
+'python-pyperclip: for copying content to the clipboard')
+
+install=mps-youtube.install
+
+source=("mps-youtube-$pkgver.tar.gz::https://github.com/np1/mps-youtube/archive/v$pkgver.tar.gz;)
+
+sha256sums=('917958ab02f8dace9c84974f510bd8838f905814c1a05a91fb1a38d37d19f0e8')
+
+package() {
+   cd mps-youtube-"$pkgver"
+
+   python setup.py install --root="$pkgdir" --optimize=1
+}

Copied: mps-youtube/repos/community-testing-any/mps-youtube.install (from rev 
182992, mps-youtube/trunk/mps-youtube.install)
===
--- community-testing-any/mps-youtube.install   (rev 0)
+++ community-testing-any/mps-youtube.install   2016-07-16 09:51:06 UTC (rev 
182993)
@@ -0,0 +1,7 @@
+post_install () {
+   printf '==> Make sure to have either mpv or mplayer installed for 
playback.\n'
+}
+
+post_upgrade () {
+   post_install $1
+}


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

2016-07-16 Thread Jelle van der Waa
Date: Saturday, July 16, 2016 @ 09:51:27
  Author: jelle
Revision: 182994

archrelease: copy trunk to community-any

Added:
  python-webencodings/repos/community-any/
  python-webencodings/repos/community-any/PKGBUILD
(from rev 182993, python-webencodings/trunk/PKGBUILD)

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

Copied: python-webencodings/repos/community-any/PKGBUILD (from rev 182993, 
python-webencodings/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-07-16 09:51:27 UTC (rev 182994)
@@ -0,0 +1,38 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Jelle van der Waa 
+
+pkgbase=python-webencodings
+pkgname=('python2-webencodings' 'python-webencodings')
+pkgver=0.5
+pkgrel=1
+arch=('any')
+url="https://github.com/gsnedders/python-webencodings;
+license=('BSD')
+makedepends=('python2' 'python' 'python-setuptools' 'python2-setuptools')
+checkdepends=('python-nose' 'python2-nose')
+source=(https://github.com/gsnedders/python-webencodings/archive/v$pkgver.tar.gz)
+md5sums=('380cd5f79cd65620bd5b852528dce3a6')
+
+package_python-webencodings() {
+pkgdesc="This is a Python implementation of the WHATWG Encoding standard."
+depends=('python')
+cd ${srcdir}/${pkgbase}-${pkgver}
+
+python3 setup.py install --root=${pkgdir}
+}
+
+package_python2-webencodings() {
+pkgdesc="This is a Python implementation of the WHATWG Encoding standard."
+depends=('python2')
+cd ${srcdir}/${pkgbase}-${pkgver}
+
+python2 setup.py install --root=${pkgdir}
+}
+
+check() {
+cd ${srcdir}/${pkgbase}-${pkgver}/webencodings
+
+nosetests tests.py
+
+nosetests2 tests.py
+}


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

2016-07-16 Thread Johannes Löthberg
Date: Saturday, July 16, 2016 @ 09:47:18
  Author: demize
Revision: 182989

upgpkg: python-sphinx 1.4.5-1

Modified:
  python-sphinx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-16 09:45:55 UTC (rev 182988)
+++ PKGBUILD2016-07-16 09:47:18 UTC (rev 182989)
@@ -6,7 +6,7 @@
 
 pkgbase=python-sphinx
 pkgname=('python-sphinx' 'python2-sphinx')
-pkgver=1.4.4
+pkgver=1.4.5
 pkgrel=1
 
 arch=('any')
@@ -41,7 +41,7 @@
 
source=("https://files.pythonhosted.org/packages/source/S/Sphinx/Sphinx-$pkgver.tar.gz"{,.asc})
 
 validpgpkeys=('8A11B79A5D0D749A66F0A030102C2C17498D6B9E')
-md5sums=('64ce2ec08d37ed56313a98232cbe2aee'
+md5sums=('5c2cd2dac45dfa6123d067e32a89e89a'
  'SKIP')
 
 prepare() {


[arch-commits] Commit in (4 files)

2016-07-16 Thread Jelle van der Waa
Date: Saturday, July 16, 2016 @ 09:45:55
  Author: jelle
Revision: 182988

Initial commit

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

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

Added: python-webencodings/trunk/PKGBUILD
===
--- python-webencodings/trunk/PKGBUILD  (rev 0)
+++ python-webencodings/trunk/PKGBUILD  2016-07-16 09:45:55 UTC (rev 182988)
@@ -0,0 +1,29 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Jelle van der Waa 
+
+pkgbase=python-webencodings
+pkgname=('python2-webencodings' 'python-webencodings')
+pkgver=0.5
+pkgrel=1
+arch=('any')
+url="https://github.com/SimonSapin/python-webencodings;
+license=('BSD')
+makedepends=('python2' 'python' 'python-setuptools' 'python2-setuptools')
+source=(https://github.com/gsnedders/python-webencodings/archive/v$pkgver.tar.gz)
+md5sums=('380cd5f79cd65620bd5b852528dce3a6')
+
+package_python-webencodings() {
+pkgdesc="This is a Python implementation of the WHATWG Encoding standard."
+depends=('python')
+cd ${srcdir}/${pkgbase}-${pkgver}
+
+LANG="en_US.UTF-8" python3 setup.py install --root=${pkgdir}
+}
+
+package_python2-webencodings() {
+pkgdesc="This is a Python implementation of the WHATWG Encoding standard."
+depends=('python2')
+cd ${srcdir}/${pkgbase}-${pkgver}
+
+python2 setup.py install --root=${pkgdir}
+}


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

2016-07-16 Thread Jelle van der Waa
Date: Saturday, July 16, 2016 @ 09:38:27
  Author: jelle
Revision: 182987

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-07-16 09:38:15 UTC (rev 182986)
+++ community-i686/PKGBUILD 2016-07-16 09:38:27 UTC (rev 182987)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-pkgbase=python-psutil
-pkgname=('python-psutil' 'python2-psutil')
-pkgver=4.2.0
-pkgrel=1
-arch=('i686' 'x86_64')
-url='https://github.com/giampaolo/psutil'
-license=('custom: BSD')
-makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
-checkdepends=('net-tools' 'procps-ng' 'python2-nose')
-source=("https://github.com/giampaolo/psutil/archive/release-$pkgver.tar.gz;)
-md5sums=('33571543baf17f5c09c9bcdc4cf11b41')
-
-build() {
-  cd psutil-release-$pkgver
-
-  msg2 python
-  python setup.py build --build-lib=build/python
-
-  msg2 python2
-  python2 setup.py build --build-lib=build/python2
-  find build/python2 -type f -exec \
-sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
-}
-
-check() {
-  cd psutil-release-$pkgver
-
-  msg2 python
-  export PYTHONPATH="$PWD/build/python"
-  # FIXME: requires 
https://github.com/giampaolo/psutil/issues/538#issuecomment-68549637 to be 
resolved.
-  #python tests/test_psutil.py
-
-  msg2 python2
-  export PYTHONPATH="$PWD/build/python2"
-  #nosetests2 tests/
-}
-
-package_python-psutil() {
-  pkgdesc='A cross-platform process and system utilities module for Python'
-  depends=('glibc' 'python')
-
-  cd psutil-release-$pkgver
-  python setup.py build --build-lib=build/python \
-  install --root="$pkgdir" --optimize=1
-  install -D -m 644 LICENSE "$pkgdir/"usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-psutil() {
-  pkgdesc='A cross-platform process and system utilities module for Python2'
-  depends=('glibc' 'python2')
-
-  cd psutil-release-$pkgver
-  python2 setup.py build --build-lib=build/python2 \
-   install --root="$pkgdir" --optimize=1
-  install -D -m 644 LICENSE "$pkgdir/"usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-psutil/repos/community-i686/PKGBUILD (from rev 182986, 
python-psutil/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-07-16 09:38:27 UTC (rev 182987)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+pkgbase=python-psutil
+pkgname=('python-psutil' 'python2-psutil')
+pkgver=4.3.0
+pkgrel=1
+arch=('i686' 'x86_64')
+url='https://github.com/giampaolo/psutil'
+license=('custom: BSD')
+makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
+checkdepends=('net-tools' 'procps-ng' 'python2-nose')
+source=("https://github.com/giampaolo/psutil/archive/release-$pkgver.tar.gz;)
+md5sums=('da4c7183ff42a6997b8a743305463d10')
+
+build() {
+  cd psutil-release-$pkgver
+
+  msg2 python
+  python setup.py build --build-lib=build/python
+
+  msg2 python2
+  python2 setup.py build --build-lib=build/python2
+  find build/python2 -type f -exec \
+sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
+}
+
+check() {
+  cd psutil-release-$pkgver
+
+  msg2 python
+  export PYTHONPATH="$PWD/build/python"
+  # FIXME: requires 
https://github.com/giampaolo/psutil/issues/538#issuecomment-68549637 to be 
resolved.
+  #python psutil/tests/runner.py
+
+
+  msg2 python2
+  export PYTHONPATH="$PWD/build/python2"
+  #python2 psutil/tests/runner.py
+}
+
+package_python-psutil() {
+  pkgdesc='A cross-platform process and system utilities module for Python'
+  depends=('glibc' 'python')
+
+  cd psutil-release-$pkgver
+  python setup.py build --build-lib=build/python \
+  install --root="$pkgdir" --optimize=1
+  install -D -m 644 LICENSE "$pkgdir/"usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-psutil() {
+  pkgdesc='A cross-platform process and system utilities module for Python2'
+  depends=('glibc' 'python2')
+
+  cd psutil-release-$pkgver
+  python2 setup.py build --build-lib=build/python2 \
+   install --root="$pkgdir" --optimize=1
+  install -D -m 644 LICENSE "$pkgdir/"usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set 

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

2016-07-16 Thread Jelle van der Waa
Date: Saturday, July 16, 2016 @ 09:38:15
  Author: jelle
Revision: 182986

upgpkg: python-psutil 4.3.0-1

Modified:
  python-psutil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-16 08:50:17 UTC (rev 182985)
+++ PKGBUILD2016-07-16 09:38:15 UTC (rev 182986)
@@ -3,7 +3,7 @@
 
 pkgbase=python-psutil
 pkgname=('python-psutil' 'python2-psutil')
-pkgver=4.2.0
+pkgver=4.3.0
 pkgrel=1
 arch=('i686' 'x86_64')
 url='https://github.com/giampaolo/psutil'
@@ -11,7 +11,7 @@
 makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
 checkdepends=('net-tools' 'procps-ng' 'python2-nose')
 source=("https://github.com/giampaolo/psutil/archive/release-$pkgver.tar.gz;)
-md5sums=('33571543baf17f5c09c9bcdc4cf11b41')
+md5sums=('da4c7183ff42a6997b8a743305463d10')
 
 build() {
   cd psutil-release-$pkgver
@@ -31,11 +31,12 @@
   msg2 python
   export PYTHONPATH="$PWD/build/python"
   # FIXME: requires 
https://github.com/giampaolo/psutil/issues/538#issuecomment-68549637 to be 
resolved.
-  #python tests/test_psutil.py
+  #python psutil/tests/runner.py
 
+
   msg2 python2
   export PYTHONPATH="$PWD/build/python2"
-  #nosetests2 tests/
+  #python2 psutil/tests/runner.py
 }
 
 package_python-psutil() {


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

2016-07-16 Thread Jelle van der Waa
Date: Saturday, July 16, 2016 @ 08:50:10
  Author: jelle
Revision: 182984

upgpkg: python-pytz 2016.6.1-1

Modified:
  python-pytz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-16 04:12:34 UTC (rev 182983)
+++ PKGBUILD2016-07-16 08:50:10 UTC (rev 182984)
@@ -4,15 +4,15 @@
 # Contributor: William Rea 
 
 pkgname=('python-pytz' 'python2-pytz')
-pkgver=2016.4
+pkgver=2016.6.1
 pkgrel=1
 arch=('any')
 url="http://pypi.python.org/pypi/pytz;
 license=("MIT")
 makedepends=('python' 'python2')
-source=(https://pypi.python.org/packages/ad/30/5ab2298c902ac92fdf649cc07d1b7d491a241c5cac8be84dd84464db7d8b/pytz-2016.4.tar.gz{,.asc})
+source=(https://pypi.python.org/packages/5d/8e/6635d8f3f9f48c03bb925fab543383089858271f9cfd1216b83247e8df94/pytz-2016.6.1.tar.gz{,.asc})
 validpgpkeys=('C7ECC365AB6F255E1EB9BA1701FA998FBAC6374A')
-md5sums=('a3316cf3842ed0375ba5931914239d97'
+md5sums=('b6c28a3b968bc1d8badfb61b93874e03'
  'SKIP')
 
 build(){


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

2016-07-16 Thread Jelle van der Waa
Date: Saturday, July 16, 2016 @ 08:50:17
  Author: jelle
Revision: 182985

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-16 08:50:10 UTC (rev 182984)
+++ PKGBUILD2016-07-16 08:50:17 UTC (rev 182985)
@@ -1,58 +0,0 @@
-# Maintainer: Stefan Husmann 
-# Maintainer: Jelle van der Waa 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: William Rea 
-
-pkgname=('python-pytz' 'python2-pytz')
-pkgver=2016.4
-pkgrel=1
-arch=('any')
-url="http://pypi.python.org/pypi/pytz;
-license=("MIT")
-makedepends=('python' 'python2')
-source=(https://pypi.python.org/packages/ad/30/5ab2298c902ac92fdf649cc07d1b7d491a241c5cac8be84dd84464db7d8b/pytz-2016.4.tar.gz{,.asc})
-validpgpkeys=('C7ECC365AB6F255E1EB9BA1701FA998FBAC6374A')
-md5sums=('a3316cf3842ed0375ba5931914239d97'
- 'SKIP')
-
-build(){
-cd $srcdir
-cp -rf pytz-$pkgver pytz2-$pkgver
-}
-
-check(){
-cd $srcdir/pytz-$pkgver/pytz/tests
-
-python3 test_tzinfo.py
-
-python2 test_tzinfo.py
-}
-
-package_python-pytz(){
-depends=('python')
-pkgdesc="Cross platform time zone library for Python"
-
-cd $srcdir/pytz-$pkgver
-
-# Fix locale https://github.com/ipython/ipython/issues/2057
-export LC_ALL=en_US.UTF-8
-
-python3 setup.py install --root=$pkgdir/
-
-install -D LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-
-package_python2-pytz(){
-depends=('python2')
-pkgdesc="Cross platform time zone library for Python"
-
-cd $srcdir/pytz2-$pkgver
-
-# python 2 fix
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' pytz/tzfile.py
-
-python2 setup.py install --root="$pkgdir/"
-
-install -D LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-pytz/repos/community-any/PKGBUILD (from rev 182984, 
python-pytz/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-07-16 08:50:17 UTC (rev 182985)
@@ -0,0 +1,58 @@
+# Maintainer: Stefan Husmann 
+# Maintainer: Jelle van der Waa 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: William Rea 
+
+pkgname=('python-pytz' 'python2-pytz')
+pkgver=2016.6.1
+pkgrel=1
+arch=('any')
+url="http://pypi.python.org/pypi/pytz;
+license=("MIT")
+makedepends=('python' 'python2')
+source=(https://pypi.python.org/packages/5d/8e/6635d8f3f9f48c03bb925fab543383089858271f9cfd1216b83247e8df94/pytz-2016.6.1.tar.gz{,.asc})
+validpgpkeys=('C7ECC365AB6F255E1EB9BA1701FA998FBAC6374A')
+md5sums=('b6c28a3b968bc1d8badfb61b93874e03'
+ 'SKIP')
+
+build(){
+cd $srcdir
+cp -rf pytz-$pkgver pytz2-$pkgver
+}
+
+check(){
+cd $srcdir/pytz-$pkgver/pytz/tests
+
+python3 test_tzinfo.py
+
+python2 test_tzinfo.py
+}
+
+package_python-pytz(){
+depends=('python')
+pkgdesc="Cross platform time zone library for Python"
+
+cd $srcdir/pytz-$pkgver
+
+# Fix locale https://github.com/ipython/ipython/issues/2057
+export LC_ALL=en_US.UTF-8
+
+python3 setup.py install --root=$pkgdir/
+
+install -D LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+
+package_python2-pytz(){
+depends=('python2')
+pkgdesc="Cross platform time zone library for Python"
+
+cd $srcdir/pytz2-$pkgver
+
+# python 2 fix
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' pytz/tzfile.py
+
+python2 setup.py install --root="$pkgdir/"
+
+install -D LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2016-07-16 Thread Antonio Rojas
Date: Saturday, July 16, 2016 @ 06:46:27
  Author: arojas
Revision: 271938

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

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

---+
 /PKGBUILD |   74 
 extra-i686/PKGBUILD   |   29 --
 extra-x86_64/PKGBUILD |   29 --
 3 files changed, 74 insertions(+), 58 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-07-16 06:45:19 UTC (rev 271937)
+++ extra-i686/PKGBUILD 2016-07-16 06:46:27 UTC (rev 271938)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=libqalculate
-pkgver=0.9.8
-pkgrel=1
-pkgdesc="Multi-purpose desktop calculator"
-arch=('i686' 'x86_64')
-url="http://qalculate.sourceforge.net/;
-license=('GPL')
-depends=('libxml2' 'cln' 'glib2')
-makedepends=('perl-xml-parser' 'intltool')
-optdepends=('gnuplot: for plotting support' 
-'wget: for retrieval of exchange rates (not needed if you use one 
of the GUI)'
-'gnome-vfs: for retrieval of exchange rates (not needed if you use 
one of the GUI)')
-options=('!makeflags')
-source=(http://downloads.sourceforge.net/sourceforge/qalculate/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('d9023ae524aebf8e8b90e4e0cb76e04b77f60fd4')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: libqalculate/repos/extra-i686/PKGBUILD (from rev 271937, 
libqalculate/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-07-16 06:46:27 UTC (rev 271938)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=libqalculate
+pkgver=0.9.8
+pkgrel=2
+pkgdesc="Multi-purpose desktop calculator"
+arch=('i686' 'x86_64')
+url="http://qalculate.sourceforge.net/;
+license=('GPL')
+depends=('libxml2' 'cln' 'glib2')
+makedepends=('perl-xml-parser' 'intltool')
+optdepends=('gnuplot: for plotting support' 
+'wget: for retrieval of exchange rates (not needed if you use one 
of the GUI)'
+'gnome-vfs: for retrieval of exchange rates (not needed if you use 
one of the GUI)')
+options=('!makeflags')
+source=(http://downloads.sourceforge.net/sourceforge/qalculate/${pkgname}-${pkgver}.tar.gz
+
libqalculate-fix-crash.patch::"https://github.com/Qalculate/libqalculate/commit/eade7b72.patch;)
+sha1sums=('d9023ae524aebf8e8b90e4e0cb76e04b77f60fd4'
+  '5d35a6b431e417d6334ed717be2eac2fa8e85750')
+
+prepare() {
+  cd $pkgname-$pkgver
+# Fix segfault when locale missing
+  patch -p1 -i ../libqalculate-fix-crash.patch
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-07-16 06:45:19 UTC (rev 271937)
+++ extra-x86_64/PKGBUILD   2016-07-16 06:46:27 UTC (rev 271938)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=libqalculate
-pkgver=0.9.8
-pkgrel=1
-pkgdesc="Multi-purpose desktop calculator"
-arch=('i686' 'x86_64')
-url="http://qalculate.sourceforge.net/;
-license=('GPL')
-depends=('libxml2' 'cln' 'glib2')
-makedepends=('perl-xml-parser' 'intltool')
-optdepends=('gnuplot: for plotting support' 
-'wget: for retrieval of exchange rates (not needed if you use one 
of the GUI)'
-'gnome-vfs: for retrieval of exchange rates (not needed if you use 
one of the GUI)')
-options=('!makeflags')
-source=(http://downloads.sourceforge.net/sourceforge/qalculate/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('d9023ae524aebf8e8b90e4e0cb76e04b77f60fd4')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: libqalculate/repos/extra-x86_64/PKGBUILD (from rev 271937, 
libqalculate/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-07-16 06:46:27 UTC (rev 271938)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=libqalculate
+pkgver=0.9.8
+pkgrel=2
+pkgdesc="Multi-purpose desktop calculator"
+arch=('i686' 'x86_64')
+url="http://qalculate.sourceforge.net/;
+license=('GPL')
+depends=('libxml2' 'cln' 'glib2')

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

2016-07-16 Thread Antonio Rojas
Date: Saturday, July 16, 2016 @ 06:45:19
  Author: arojas
Revision: 271937

Fix segfault (should fix FS#50051)

Modified:
  libqalculate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-16 06:23:02 UTC (rev 271936)
+++ PKGBUILD2016-07-16 06:45:19 UTC (rev 271937)
@@ -3,7 +3,7 @@
 
 pkgname=libqalculate
 pkgver=0.9.8
-pkgrel=1
+pkgrel=2
 pkgdesc="Multi-purpose desktop calculator"
 arch=('i686' 'x86_64')
 url="http://qalculate.sourceforge.net/;
@@ -14,9 +14,17 @@
 'wget: for retrieval of exchange rates (not needed if you use one 
of the GUI)'
 'gnome-vfs: for retrieval of exchange rates (not needed if you use 
one of the GUI)')
 options=('!makeflags')
-source=(http://downloads.sourceforge.net/sourceforge/qalculate/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('d9023ae524aebf8e8b90e4e0cb76e04b77f60fd4')
+source=(http://downloads.sourceforge.net/sourceforge/qalculate/${pkgname}-${pkgver}.tar.gz
+
libqalculate-fix-crash.patch::"https://github.com/Qalculate/libqalculate/commit/eade7b72.patch;)
+sha1sums=('d9023ae524aebf8e8b90e4e0cb76e04b77f60fd4'
+  '5d35a6b431e417d6334ed717be2eac2fa8e85750')
 
+prepare() {
+  cd $pkgname-$pkgver
+# Fix segfault when locale missing
+  patch -p1 -i ../libqalculate-fix-crash.patch
+}
+
 build() {
   cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr


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

2016-07-16 Thread Tobias Powalowski
Date: Saturday, July 16, 2016 @ 06:22:52
  Author: tpowa
Revision: 271935

upgpkg: tdb 1.3.9-1

bump to latest version

Modified:
  tdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-16 06:20:49 UTC (rev 271934)
+++ PKGBUILD2016-07-16 06:22:52 UTC (rev 271935)
@@ -4,7 +4,7 @@
 # Contributor: Tom Newsom 
 
 pkgname=tdb
-pkgver=1.3.8
+pkgver=1.3.9
 pkgrel=1
 pkgdesc="A Trivial Database similar to GDBM but allows simultaneous commits"
 arch=(i686 x86_64)
@@ -34,5 +34,5 @@
export PYTHON=/usr/bin/python2
make DESTDIR=$pkgdir/ install
 }
-md5sums=('fa4c9e2f59fcf41441285bca5f5ab481'
+md5sums=('20c980778114543656e0770249d13735'
  'SKIP')


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

2016-07-16 Thread Tobias Powalowski
Date: Saturday, July 16, 2016 @ 06:23:02
  Author: tpowa
Revision: 271936

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

Added:
  tdb/repos/extra-i686/0001-tdb-include-include-stdbool.h-in-tdb.h.patch
(from rev 271935, 
tdb/trunk/0001-tdb-include-include-stdbool.h-in-tdb.h.patch)
  tdb/repos/extra-i686/PKGBUILD
(from rev 271935, tdb/trunk/PKGBUILD)
  tdb/repos/extra-x86_64/0001-tdb-include-include-stdbool.h-in-tdb.h.patch
(from rev 271935, 
tdb/trunk/0001-tdb-include-include-stdbool.h-in-tdb.h.patch)
  tdb/repos/extra-x86_64/PKGBUILD
(from rev 271935, tdb/trunk/PKGBUILD)
Deleted:
  tdb/repos/extra-i686/0001-tdb-include-include-stdbool.h-in-tdb.h.patch
  tdb/repos/extra-i686/PKGBUILD
  tdb/repos/extra-x86_64/0001-tdb-include-include-stdbool.h-in-tdb.h.patch
  tdb/repos/extra-x86_64/PKGBUILD

+
 /0001-tdb-include-include-stdbool.h-in-tdb.h.patch |   54 +++
 /PKGBUILD  |   76 
++
 extra-i686/0001-tdb-include-include-stdbool.h-in-tdb.h.patch   |   27 ---
 extra-i686/PKGBUILD|   38 -
 extra-x86_64/0001-tdb-include-include-stdbool.h-in-tdb.h.patch |   27 ---
 extra-x86_64/PKGBUILD  |   38 -
 6 files changed, 130 insertions(+), 130 deletions(-)

Deleted: extra-i686/0001-tdb-include-include-stdbool.h-in-tdb.h.patch
===
--- extra-i686/0001-tdb-include-include-stdbool.h-in-tdb.h.patch
2016-07-16 06:22:52 UTC (rev 271935)
+++ extra-i686/0001-tdb-include-include-stdbool.h-in-tdb.h.patch
2016-07-16 06:23:02 UTC (rev 271936)
@@ -1,27 +0,0 @@
-From 4e14a437963ba54987cd58b4e0705d9a6d8aea6f Mon Sep 17 00:00:00 2001
-From: Adam Williamson 
-Date: Fri, 23 May 2014 10:08:14 -0700
-Subject: [PATCH] tdb/include: include stdbool.h in tdb.h
-
-Commit db5bda56bf08 (tdb: add TDB_MUTEX_LOCKING support) adds a bool, but does
-not include stdbool.h. This causes any build including tdb.h to fail, at least
-for me with GCC 4.9.0.

- lib/tdb/include/tdb.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/include/tdb.h b/include/tdb.h
-index 5ea5e60..03e429c 100644
 a/include/tdb.h
-+++ b/include/tdb.h
-@@ -31,6 +31,7 @@ extern "C" {
- #endif
- 
- #include 
-+#include 
- 
- /**
-  * @defgroup tdb The tdb API
--- 
-1.9.3
-

Copied: tdb/repos/extra-i686/0001-tdb-include-include-stdbool.h-in-tdb.h.patch 
(from rev 271935, tdb/trunk/0001-tdb-include-include-stdbool.h-in-tdb.h.patch)
===
--- extra-i686/0001-tdb-include-include-stdbool.h-in-tdb.h.patch
(rev 0)
+++ extra-i686/0001-tdb-include-include-stdbool.h-in-tdb.h.patch
2016-07-16 06:23:02 UTC (rev 271936)
@@ -0,0 +1,27 @@
+From 4e14a437963ba54987cd58b4e0705d9a6d8aea6f Mon Sep 17 00:00:00 2001
+From: Adam Williamson 
+Date: Fri, 23 May 2014 10:08:14 -0700
+Subject: [PATCH] tdb/include: include stdbool.h in tdb.h
+
+Commit db5bda56bf08 (tdb: add TDB_MUTEX_LOCKING support) adds a bool, but does
+not include stdbool.h. This causes any build including tdb.h to fail, at least
+for me with GCC 4.9.0.
+---
+ lib/tdb/include/tdb.h | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/include/tdb.h b/include/tdb.h
+index 5ea5e60..03e429c 100644
+--- a/include/tdb.h
 b/include/tdb.h
+@@ -31,6 +31,7 @@ extern "C" {
+ #endif
+ 
+ #include 
++#include 
+ 
+ /**
+  * @defgroup tdb The tdb API
+-- 
+1.9.3
+

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-07-16 06:22:52 UTC (rev 271935)
+++ extra-i686/PKGBUILD 2016-07-16 06:23:02 UTC (rev 271936)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-# Contributor: eric 
-# Contributor: Tom Newsom 
-
-pkgname=tdb
-pkgver=1.3.8
-pkgrel=1
-pkgdesc="A Trivial Database similar to GDBM but allows simultaneous commits"
-arch=(i686 x86_64)
-license=('GPL3')
-url="http://tdb.samba.org/;
-makedepends=('python2' 'libxslt' 'docbook-xsl')
-optdepends=('python2: for python bindings')
-source=(http://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.gz
-http://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.asc)
-validpgpkeys=('9147A339719518EE9011BCB54793916113084025') #Samba Library 
Distribution Key  
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   sed -i -e 's#python#python2#g' buildtools/bin/waf
-   #sed -i 's#python2\.6\([^ ]*\)#python2.7\1 python2.6\1#' configure
-   # Use system docbook.xsl
-   
#_manstyle="/usr/share/xml/docbook/xsl-stylesheets-1.76.1/manpages/docbook.xsl"
-   #sed -i "s#http.*xsl#$_manstyle#" tdb.mk
-   export PYTHON=/usr/bin/python2
-   ./configure --prefix=/usr \
- 

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

2016-07-16 Thread Tobias Powalowski
Date: Saturday, July 16, 2016 @ 06:20:40
  Author: tpowa
Revision: 271933

upgpkg: spice 0.12.8-1

bump to latest version

Modified:
  spice/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-16 06:17:51 UTC (rev 271932)
+++ PKGBUILD2016-07-16 06:20:40 UTC (rev 271933)
@@ -3,7 +3,7 @@
 # Maintainer: Patryk Kowalczyk < patryk at kowalczyk dot ws>
 
 pkgname=spice
-pkgver=0.12.7
+pkgver=0.12.8
 pkgrel=1
 pkgdesc="SPICE client and server"
 arch=('i686' 'x86_64')
@@ -23,4 +23,4 @@
   cd "$srcdir/$pkgname-$pkgver"
   make DESTDIR="$pkgdir/" install
 }
-md5sums=('28d4294e6d055de3b6ce5b8f2b7ca03b')
+md5sums=('376853d11b9921aa34a06c4dbef81874')


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

2016-07-16 Thread Tobias Powalowski
Date: Saturday, July 16, 2016 @ 06:20:49
  Author: tpowa
Revision: 271934

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

Added:
  spice/repos/extra-i686/CVE-2013-4282.patch
(from rev 271933, spice/trunk/CVE-2013-4282.patch)
  spice/repos/extra-i686/PKGBUILD
(from rev 271933, spice/trunk/PKGBUILD)
  spice/repos/extra-x86_64/CVE-2013-4282.patch
(from rev 271933, spice/trunk/CVE-2013-4282.patch)
  spice/repos/extra-x86_64/PKGBUILD
(from rev 271933, spice/trunk/PKGBUILD)
Deleted:
  spice/repos/extra-i686/CVE-2013-4282.patch
  spice/repos/extra-i686/PKGBUILD
  spice/repos/extra-x86_64/CVE-2013-4282.patch
  spice/repos/extra-x86_64/PKGBUILD

--+
 /CVE-2013-4282.patch |  208 +
 /PKGBUILD|   52 +
 extra-i686/CVE-2013-4282.patch   |  104 --
 extra-i686/PKGBUILD  |   26 
 extra-x86_64/CVE-2013-4282.patch |  104 --
 extra-x86_64/PKGBUILD|   26 
 6 files changed, 260 insertions(+), 260 deletions(-)

Deleted: extra-i686/CVE-2013-4282.patch
===
--- extra-i686/CVE-2013-4282.patch  2016-07-16 06:20:40 UTC (rev 271933)
+++ extra-i686/CVE-2013-4282.patch  2016-07-16 06:20:49 UTC (rev 271934)
@@ -1,104 +0,0 @@
-From 8af619009660b24e0b41ad26b30289eea288fcc2 Mon Sep 17 00:00:00 2001
-From: Christophe Fergeau 
-Date: Fri, 23 Aug 2013 09:29:44 +
-Subject: Fix buffer overflow when decrypting client SPICE ticket
-
-reds_handle_ticket uses a fixed size 'password' buffer for the decrypted
-password whose size is SPICE_MAX_PASSWORD_LENGTH. However,
-RSA_private_decrypt which we call for the decryption expects the
-destination buffer to be at least RSA_size(link->tiTicketing.rsa)
-bytes long. On my spice-server build, SPICE_MAX_PASSWORD_LENGTH
-is 60 while RSA_size() is 128, so we end up overflowing 'password'
-when using long passwords (this was reproduced using the string:
-'fullscreen=1proxy=#enter proxy here; e.g spice_proxy = http://[proxy]:[port]'
-as a password).
-
-When the overflow occurs, QEMU dies with:
-*** stack smashing detected ***: qemu-system-x86_64 terminated
-
-This commit ensures we use a corectly sized 'password' buffer,
-and that it's correctly nul-terminated so that we can use strcmp
-instead of strncmp. To keep using strncmp, we'd need to figure out
-which one of 'password' and 'taTicket.password' is the smaller buffer,
-and use that size.
-
-This fixes rhbz#999839

-diff --git a/server/reds.c b/server/reds.c
-index 892d247..2a0002b 100644
 a/server/reds.c
-+++ b/server/reds.c
-@@ -1926,39 +1926,59 @@ static void reds_handle_link(RedLinkInfo *link)
- static void reds_handle_ticket(void *opaque)
- {
- RedLinkInfo *link = (RedLinkInfo *)opaque;
--char password[SPICE_MAX_PASSWORD_LENGTH];
-+char *password;
- time_t ltime;
-+int password_size;
- 
- //todo: use monotonic time
- time();
--RSA_private_decrypt(link->tiTicketing.rsa_size,
--link->tiTicketing.encrypted_ticket.encrypted_data,
--(unsigned char *)password, link->tiTicketing.rsa, 
RSA_PKCS1_OAEP_PADDING);
-+if (RSA_size(link->tiTicketing.rsa) < SPICE_MAX_PASSWORD_LENGTH) {
-+spice_warning("RSA modulus size is smaller than 
SPICE_MAX_PASSWORD_LENGTH (%d < %d), "
-+  "SPICE ticket sent from client may be truncated",
-+  RSA_size(link->tiTicketing.rsa), 
SPICE_MAX_PASSWORD_LENGTH);
-+}
-+
-+password = g_malloc0(RSA_size(link->tiTicketing.rsa) + 1);
-+password_size = RSA_private_decrypt(link->tiTicketing.rsa_size,
-+
link->tiTicketing.encrypted_ticket.encrypted_data,
-+(unsigned char *)password,
-+link->tiTicketing.rsa,
-+RSA_PKCS1_OAEP_PADDING);
-+if (password_size == -1) {
-+spice_warning("failed to decrypt RSA encrypted password: %s",
-+  ERR_error_string(ERR_get_error(), NULL));
-+goto error;
-+}
-+password[password_size] = '\0';
- 
- if (ticketing_enabled && !link->skip_auth) {
- int expired =  taTicket.expiration_time < ltime;
- 
- if (strlen(taTicket.password) == 0) {
--reds_send_link_result(link, SPICE_LINK_ERR_PERMISSION_DENIED);
- spice_warning("Ticketing is enabled, but no password is set. "
--"please set a ticket first");
--reds_link_free(link);
--return;
-+  "please set a ticket first");
-+goto error;
- }
- 
--if (expired || strncmp(password, taTicket.password, 
SPICE_MAX_PASSWORD_LENGTH) != 0) {
-+if (expired || strcmp(password, taTicket.password) != 

[arch-commits] Commit in wireless-regdb/repos (7 files)

2016-07-16 Thread Tobias Powalowski
Date: Saturday, July 16, 2016 @ 06:17:51
  Author: tpowa
Revision: 271932

db-move: moved wireless-regdb from [testing] to [core] (any)

Added:
  wireless-regdb/repos/core-any/PKGBUILD
(from rev 271931, wireless-regdb/repos/testing-any/PKGBUILD)
  wireless-regdb/repos/core-any/crda.conf.d
(from rev 271931, wireless-regdb/repos/testing-any/crda.conf.d)
  wireless-regdb/repos/core-any/wireless-regdb.install
(from rev 271931, wireless-regdb/repos/testing-any/wireless-regdb.install)
Deleted:
  wireless-regdb/repos/core-any/PKGBUILD
  wireless-regdb/repos/core-any/crda.conf.d
  wireless-regdb/repos/core-any/wireless-regdb.install
  wireless-regdb/repos/testing-any/

-+
 /PKGBUILD   |   47 ++
 /crda.conf.d|4 +++
 /wireless-regdb.install |   13 ++
 core-any/PKGBUILD   |   47 --
 core-any/crda.conf.d|4 ---
 core-any/wireless-regdb.install |   13 --
 6 files changed, 64 insertions(+), 64 deletions(-)

Deleted: core-any/PKGBUILD
===
--- core-any/PKGBUILD   2016-07-16 06:13:51 UTC (rev 271931)
+++ core-any/PKGBUILD   2016-07-16 06:17:51 UTC (rev 271932)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Thomas Bächler 
-
-pkgname=wireless-regdb
-pkgver=2015.07.20
-pkgrel=1
-pkgdesc="Central Regulatory Domain Database"
-arch=('any')
-url="http://wireless.kernel.org/en/developers/Regulatory;
-backup=(etc/conf.d/wireless-regdom)
-license=('custom')
-depends=('sh')
-makedepends=('crda')
-source=(https://www.kernel.org/pub/software/network/wireless-regdb/${pkgname}-${pkgver}.tar.{xz,sign}
-crda.conf.d)
-sha256sums=('edac88b58f23f0a7d73aa2b21520d04019f30e3e604b0a60ca0a6af16044bdf2'
-'SKIP'
-'192428fd959806705356107bffc97b8b379854e79bd013c4ee140e5202326e2b')
-validpgpkeys=('2ABCA7498D83E1D32D51D3B5AB4800A62DB9F73A') #Seth Forshee 

-
-package() {
-  # Install and verify regulatory.bin file
-  msg "Installing and verifying the regulatory.bin file ..."
-  install -D -m644 "${srcdir}"/${pkgname}-${pkgver}/regulatory.bin 
"${pkgdir}"/usr/lib/crda/regulatory.bin
-  # This creates a depend/makedepend loop:
-  # crda depends on wireless-regdb (but strictly doesn't makedepend on it)
-  # wireless-regdb makedepends on crda
-  if /usr/bin/regdbdump "${pkgdir}"/usr/lib/crda/regulatory.bin > /dev/null; 
then
-msg "Regulatory database verification was succesful."
-  else
-error "Regulatory database verification failed."
-return 1
-  fi
-  install -D -m644 "${srcdir}"/${pkgname}-${pkgver}/sforshee.key.pub.pem 
"${pkgdir}"/usr/lib/crda/pubkeys/sforshee.key.pub.pem
-  install -D -m644 "${srcdir}"/${pkgname}-${pkgver}/LICENSE 
"${pkgdir}"/usr/share/licenses/wireless-regdb/LICENSE
-  install -D -m644 "${srcdir}"/${pkgname}-${pkgver}/regulatory.bin.5 
"${pkgdir}"/usr/share/man/man5/regulatory.bin.5
-
-  msg "Installing /etc/conf.d/wireless-regdom ..."
-  install -D -m644 "${srcdir}"/crda.conf.d 
"${pkgdir}"/etc/conf.d/wireless-regdom
-  for dom in $(grep ^country "${srcdir}"/${pkgname}-${pkgver}/db.txt | cut -d' 
' -f2 | sed 's|:||g'); do
-echo "#WIRELESS_REGDOM=\"${dom}\"" >> 
"${pkgdir}"/etc/conf.d/wireless-regdom.tmp
-  done
-  sort -u "${pkgdir}"/etc/conf.d/wireless-regdom.tmp >> 
"${pkgdir}"/etc/conf.d/wireless-regdom
-  rm "${pkgdir}"/etc/conf.d/wireless-regdom.tmp
-
-  install -D -m644 "${srcdir}"/${pkgname}-${pkgver}/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: wireless-regdb/repos/core-any/PKGBUILD (from rev 271931, 
wireless-regdb/repos/testing-any/PKGBUILD)
===
--- core-any/PKGBUILD   (rev 0)
+++ core-any/PKGBUILD   2016-07-16 06:17:51 UTC (rev 271932)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Thomas Bächler 
+
+pkgname=wireless-regdb
+pkgver=2016.05.02
+pkgrel=1
+pkgdesc="Central Regulatory Domain Database"
+arch=('any')
+url="http://wireless.kernel.org/en/developers/Regulatory;
+backup=(etc/conf.d/wireless-regdom)
+license=('custom')
+depends=('sh')
+makedepends=('crda')
+source=(https://www.kernel.org/pub/software/network/wireless-regdb/${pkgname}-${pkgver}.tar.{xz,sign}
+crda.conf.d)
+sha256sums=('c9674c988a944105148091b74c05c6fa6bd9611b9bbab6b81abfb5e5387bc61e'
+'SKIP'
+'192428fd959806705356107bffc97b8b379854e79bd013c4ee140e5202326e2b')
+validpgpkeys=('2ABCA7498D83E1D32D51D3B5AB4800A62DB9F73A') #Seth Forshee 

+
+package() {
+  # Install and verify regulatory.bin file
+  msg "Installing and verifying the regulatory.bin file ..."
+  install -D -m644 "${srcdir}"/${pkgname}-${pkgver}/regulatory.bin 
"${pkgdir}"/usr/lib/crda/regulatory.bin
+  # This creates a depend/makedepend 

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

2016-07-16 Thread Tobias Powalowski
Date: Saturday, July 16, 2016 @ 06:13:23
  Author: tpowa
Revision: 271929

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

Added:
  pam/repos/core-i686/PKGBUILD
(from rev 271928, pam/repos/testing-i686/PKGBUILD)
  pam/repos/core-i686/other
(from rev 271928, pam/repos/testing-i686/other)
  pam/repos/core-i686/pam_unix2-glibc216.patch
(from rev 271928, pam/repos/testing-i686/pam_unix2-glibc216.patch)
  pam/repos/core-x86_64/PKGBUILD
(from rev 271928, pam/repos/testing-x86_64/PKGBUILD)
  pam/repos/core-x86_64/other
(from rev 271928, pam/repos/testing-x86_64/other)
  pam/repos/core-x86_64/pam_unix2-glibc216.patch
(from rev 271928, pam/repos/testing-x86_64/pam_unix2-glibc216.patch)
Deleted:
  pam/repos/core-i686/PKGBUILD
  pam/repos/core-i686/other
  pam/repos/core-i686/pam_unix2-glibc216.patch
  pam/repos/core-x86_64/PKGBUILD
  pam/repos/core-x86_64/other
  pam/repos/core-x86_64/pam_unix2-glibc216.patch
  pam/repos/testing-i686/
  pam/repos/testing-x86_64/

--+
 /PKGBUILD|  136 +
 /other   |   10 ++
 /pam_unix2-glibc216.patch|   40 +
 core-i686/PKGBUILD   |   68 
 core-i686/other  |5 -
 core-i686/pam_unix2-glibc216.patch   |   20 
 core-x86_64/PKGBUILD |   68 
 core-x86_64/other|5 -
 core-x86_64/pam_unix2-glibc216.patch |   20 
 9 files changed, 186 insertions(+), 186 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2016-07-16 06:13:12 UTC (rev 271928)
+++ core-i686/PKGBUILD  2016-07-16 06:13:23 UTC (rev 271929)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-# Contributor: judd 
-
-pkgname=pam
-pkgver=1.2.1
-pkgrel=3
-pkgdesc="PAM (Pluggable Authentication Modules) library"
-arch=('i686' 'x86_64')
-license=('GPL2')
-url="http://linux-pam.org;
-depends=('glibc' 'cracklib' 'libtirpc' 'pambase')
-makedepends=('flex' 'w3m' 'docbook-xml>=4.4' 'docbook-xsl')
-backup=(etc/security/{access.conf,group.conf,limits.conf,namespace.conf,namespace.init,pam_env.conf,time.conf}
 etc/default/passwd etc/environment)
-source=(http://linux-pam.org/library/Linux-PAM-$pkgver.tar.bz2
-https://sources.archlinux.org/other/pam_unix2/pam_unix2-2.9.1.tar.bz2
-pam_unix2-glibc216.patch)
-md5sums=('9dc53067556d2dd567808fd509519dd6'
- 'da6a46e5f8cd3eaa7cbc4fc3a7e2b555'
- 'dac109f68e04a4df37575fda6001ea17')
-
-options=('!emptydirs')
-
-prepare () {
-  cd $srcdir/Linux-PAM-$pkgver
-
-  # fix pam_unix2 building
-  cd $srcdir/pam_unix2-2.9.1
-  patch -Np1 -i "${srcdir}/pam_unix2-glibc216.patch"
-}
-
-build() {
-  cd $srcdir/Linux-PAM-$pkgver
-  ./configure --libdir=/usr/lib --sbindir=/usr/bin --disable-db
-  make
-
-  cd $srcdir/pam_unix2-2.9.1
-  # modify flags to build against the pam compiled here, not a system lib.
-  ./configure \
-  CFLAGS="$CFLAGS -I$srcdir/Linux-PAM-$pkgver/libpam/include/" \
-  LDFLAGS="$LDFLAGS -L$srcdir/Linux-PAM-$pkgver/libpam/.libs/" \
-  --libdir=/usr/lib \
-  --sbindir=/usr/bin
-  make
-}
-
-package() {
-  cd $srcdir/Linux-PAM-$pkgver
-  make DESTDIR=$pkgdir SCONFIGDIR=/etc/security install
-
-  # build pam_unix2 module
-  # source ftp://ftp.suse.com/pub/people/kukuk/pam/pam_unix2
-  cd $srcdir/pam_unix2-2.9.1
-  make DESTDIR=$pkgdir install
-
-  # fix some missing symlinks from old pam for compatibility
-  cd $pkgdir/usr/lib/security
-  ln -s pam_unix.so pam_unix_acct.so
-  ln -s pam_unix.so pam_unix_auth.so
-  ln -s pam_unix.so pam_unix_passwd.so
-  ln -s pam_unix.so pam_unix_session.so
-
-  # set unix_chkpwd uid
-  chmod +s $pkgdir/usr/bin/unix_chkpwd
-  # remove doc which is not used anymore
-  # FS #40749
-  rm $pkgdir/usr/share/doc/Linux-PAM/sag-pam_userdb.html
-}

Copied: pam/repos/core-i686/PKGBUILD (from rev 271928, 
pam/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2016-07-16 06:13:23 UTC (rev 271929)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+# Contributor: judd 
+
+pkgname=pam
+pkgver=1.3.0
+pkgrel=1
+pkgdesc="PAM (Pluggable Authentication Modules) library"
+arch=('i686' 'x86_64')
+license=('GPL2')
+url="http://linux-pam.org;
+depends=('glibc' 'cracklib' 'libtirpc' 'pambase')
+makedepends=('flex' 'w3m' 'docbook-xml>=4.4' 'docbook-xsl')
+backup=(etc/security/{access.conf,group.conf,limits.conf,namespace.conf,namespace.init,pam_env.conf,time.conf}
 etc/default/passwd etc/environment)
+source=(http://linux-pam.org/library/Linux-PAM-$pkgver.tar.bz2
+https://sources.archlinux.org/other/pam_unix2/pam_unix2-2.9.1.tar.bz2
+

[arch-commits] Commit in hwids/repos (core-any/PKGBUILD core-any/PKGBUILD testing-any)

2016-07-16 Thread Tobias Powalowski
Date: Saturday, July 16, 2016 @ 06:13:51
  Author: tpowa
Revision: 271931

db-move: moved hwids from [testing] to [core] (any)

Added:
  hwids/repos/core-any/PKGBUILD
(from rev 271930, hwids/repos/testing-any/PKGBUILD)
Deleted:
  hwids/repos/core-any/PKGBUILD
  hwids/repos/testing-any/

---+
 /PKGBUILD |   20 
 core-any/PKGBUILD |   20 
 2 files changed, 20 insertions(+), 20 deletions(-)

Deleted: core-any/PKGBUILD
===
--- core-any/PKGBUILD   2016-07-16 06:13:32 UTC (rev 271930)
+++ core-any/PKGBUILD   2016-07-16 06:13:51 UTC (rev 271931)
@@ -1,20 +0,0 @@
-# $Id$
-# Maintainer: Tom Gundersen 
-pkgname=hwids
-pkgver=20160306
-pkgrel=1
-pkgdesc="hardware identification databases"
-makedepends=('git')
-url=https://github.com/gentoo/hwids
-license=('GPL2')
-arch=('any')
-source=("git://github.com/gentoo/hwids.git#tag=${pkgname}-${pkgver}")
-
-package() {
-  cd hwids
-
-  for ids in pci.ids usb.ids; do
-install -Dm644 "$ids" "${pkgdir}/usr/share/hwdata/${ids}"
-  done
-}
-md5sums=('SKIP')

Copied: hwids/repos/core-any/PKGBUILD (from rev 271930, 
hwids/repos/testing-any/PKGBUILD)
===
--- core-any/PKGBUILD   (rev 0)
+++ core-any/PKGBUILD   2016-07-16 06:13:51 UTC (rev 271931)
@@ -0,0 +1,20 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+pkgname=hwids
+pkgver=20160421
+pkgrel=1
+pkgdesc="hardware identification databases"
+makedepends=('git')
+url=https://github.com/gentoo/hwids
+license=('GPL2')
+arch=('any')
+source=("git://github.com/gentoo/hwids.git#tag=${pkgname}-${pkgver}")
+
+package() {
+  cd hwids
+
+  for ids in pci.ids usb.ids; do
+install -Dm644 "$ids" "${pkgdir}/usr/share/hwdata/${ids}"
+  done
+}
+md5sums=('SKIP')


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

2016-07-16 Thread Tobias Powalowski
Date: Saturday, July 16, 2016 @ 06:13:12
  Author: tpowa
Revision: 271928

db-move: moved kexec-tools from [testing] to [extra] (i686, x86_64)

Added:
  kexec-tools/repos/extra-i686/PKGBUILD
(from rev 271927, kexec-tools/repos/testing-i686/PKGBUILD)
  kexec-tools/repos/extra-i686/kexec
(from rev 271927, kexec-tools/repos/testing-i686/kexec)
  kexec-tools/repos/extra-i686/kexec-vesafb.diff
(from rev 271927, kexec-tools/repos/testing-i686/kexec-vesafb.diff)
  kexec-tools/repos/extra-i686/kexec.conf.d
(from rev 271927, kexec-tools/repos/testing-i686/kexec.conf.d)
  kexec-tools/repos/extra-x86_64/PKGBUILD
(from rev 271927, kexec-tools/repos/testing-x86_64/PKGBUILD)
  kexec-tools/repos/extra-x86_64/kexec
(from rev 271927, kexec-tools/repos/testing-x86_64/kexec)
  kexec-tools/repos/extra-x86_64/kexec-vesafb.diff
(from rev 271927, kexec-tools/repos/testing-x86_64/kexec-vesafb.diff)
  kexec-tools/repos/extra-x86_64/kexec.conf.d
(from rev 271927, kexec-tools/repos/testing-x86_64/kexec.conf.d)
Deleted:
  kexec-tools/repos/extra-i686/PKGBUILD
  kexec-tools/repos/extra-i686/kexec
  kexec-tools/repos/extra-i686/kexec-vesafb.diff
  kexec-tools/repos/extra-i686/kexec.conf.d
  kexec-tools/repos/extra-x86_64/PKGBUILD
  kexec-tools/repos/extra-x86_64/kexec
  kexec-tools/repos/extra-x86_64/kexec-vesafb.diff
  kexec-tools/repos/extra-x86_64/kexec.conf.d
  kexec-tools/repos/testing-i686/
  kexec-tools/repos/testing-x86_64/

+
 /PKGBUILD  |   58 ++
 /kexec |   90 ++
 /kexec-vesafb.diff |  156 +++
 /kexec.conf.d  |   32 
 extra-i686/PKGBUILD|   29 ---
 extra-i686/kexec   |   45 ---
 extra-i686/kexec-vesafb.diff   |   78 ---
 extra-i686/kexec.conf.d|   16 
 extra-x86_64/PKGBUILD  |   29 ---
 extra-x86_64/kexec |   45 ---
 extra-x86_64/kexec-vesafb.diff |   78 ---
 extra-x86_64/kexec.conf.d  |   16 
 12 files changed, 336 insertions(+), 336 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-07-16 06:12:02 UTC (rev 271927)
+++ extra-i686/PKGBUILD 2016-07-16 06:13:12 UTC (rev 271928)
@@ -1,29 +0,0 @@
-# $Id$
-# Contributor: Camille Moncelier , simo 
-# Maintainer: Tobias Powalowski 
-
-pkgname=kexec-tools
-pkgver=2.0.10
-pkgrel=1
-pkgdesc="Load another kernel from the currently executing Linux kernel"
-arch=('i686' 'x86_64')
-url="http://kernel.org/pub/linux/utils/kernel/kexec/;
-source=("git://git.kernel.org/pub/scm/utils/kernel/kexec/kexec-tools.git#tag=v${pkgver}")
-makedepends=('git')
-depends=('gawk' 'zlib' 'xz')
-license=('GPL2')
-
-build() {
-  cd $srcdir/$pkgname
-  ./bootstrap
-  ./configure --prefix=/usr --sbindir=/usr/bin --without-lzma
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname
-  make DESTDIR=$pkgdir install
-  install -D -m644 kexec/kexec.8 $pkgdir/usr/share/man/man8/kexec.8
-}
-
-md5sums=('SKIP')

Copied: kexec-tools/repos/extra-i686/PKGBUILD (from rev 271927, 
kexec-tools/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-07-16 06:13:12 UTC (rev 271928)
@@ -0,0 +1,29 @@
+# $Id$
+# Contributor: Camille Moncelier , simo 
+# Maintainer: Tobias Powalowski 
+
+pkgname=kexec-tools
+pkgver=2.0.12
+pkgrel=1
+pkgdesc="Load another kernel from the currently executing Linux kernel"
+arch=('i686' 'x86_64')
+url="http://kernel.org/pub/linux/utils/kernel/kexec/;
+source=("git://git.kernel.org/pub/scm/utils/kernel/kexec/kexec-tools.git#tag=v${pkgver}")
+makedepends=('git')
+depends=('gawk' 'zlib' 'xz')
+license=('GPL2')
+
+build() {
+  cd $srcdir/$pkgname
+  ./bootstrap
+  ./configure --prefix=/usr --sbindir=/usr/bin --without-lzma
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname
+  make DESTDIR=$pkgdir install
+  install -D -m644 kexec/kexec.8 $pkgdir/usr/share/man/man8/kexec.8
+}
+
+md5sums=('SKIP')

Deleted: extra-i686/kexec
===
--- extra-i686/kexec2016-07-16 06:12:02 UTC (rev 271927)
+++ extra-i686/kexec2016-07-16 06:13:12 UTC (rev 271928)
@@ -1,45 +0,0 @@
-#!/bin/bash
-
-[ -f /etc/conf.d/kexec ] && . /etc/conf.d/kexec
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-case "$1" in
-  start)
-  stat_busy "Enabling kexec on reboot"
-  add_daemon kexec
-  stat_done
-  ;;
-  
-  stop|load)
-if [ "$RUNLEVEL" = "6" -o "$1" = "load" ]; then
-  stat_busy "Loading kexec kernel"
-  [ -f "$KPATH" ] || stat_fail
-  [ -f "$INITRD" ] && _INITRD="--initrd=$INITRD"
-  /sbin/kexec 

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

2016-07-16 Thread Tobias Powalowski
Date: Saturday, July 16, 2016 @ 06:13:32
  Author: tpowa
Revision: 271930

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

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

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

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2016-07-16 06:13:23 UTC (rev 271929)
+++ core-i686/PKGBUILD  2016-07-16 06:13:32 UTC (rev 271930)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Contributor: judd 
-
-pkgname=reiserfsprogs
-pkgver=3.6.24
-pkgrel=1
-pkgdesc="Reiserfs utilities"
-arch=('i686' 'x86_64')
-url="http://www.kernel.org/;
-license=('GPL')
-groups=('base')
-depends=('util-linux')
-source=("http://ftp.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v${pkgver}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('66787380fb418ff7d88a23e47cda7af6')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  CFLAGS+=' -fgnu89-inline'
-  ./configure --prefix=/usr --sbindir=/usr/bin
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make check
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: reiserfsprogs/repos/core-i686/PKGBUILD (from rev 271929, 
reiserfsprogs/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2016-07-16 06:13:32 UTC (rev 271930)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: judd 
+
+pkgname=reiserfsprogs
+pkgver=3.6.25
+pkgrel=1
+pkgdesc="Reiserfs utilities"
+arch=('i686' 'x86_64')
+url="http://www.kernel.org/;
+license=('GPL')
+groups=('base')
+depends=('util-linux')
+source=("http://ftp.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('027a598b055dccb8da3aea1378a19f3c')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  CFLAGS+=' -fgnu89-inline'
+  ./configure --prefix=/usr --sbindir=/usr/bin
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2016-07-16 06:13:23 UTC (rev 271929)
+++ core-x86_64/PKGBUILD2016-07-16 06:13:32 UTC (rev 271930)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Contributor: judd 
-
-pkgname=reiserfsprogs
-pkgver=3.6.24
-pkgrel=1
-pkgdesc="Reiserfs utilities"
-arch=('i686' 'x86_64')
-url="http://www.kernel.org/;
-license=('GPL')
-groups=('base')
-depends=('util-linux')
-source=("http://ftp.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v${pkgver}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('66787380fb418ff7d88a23e47cda7af6')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  CFLAGS+=' -fgnu89-inline'
-  ./configure --prefix=/usr --sbindir=/usr/bin
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make check
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: reiserfsprogs/repos/core-x86_64/PKGBUILD (from rev 271929, 
reiserfsprogs/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2016-07-16 06:13:32 UTC (rev 271930)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: judd 
+
+pkgname=reiserfsprogs
+pkgver=3.6.25
+pkgrel=1
+pkgdesc="Reiserfs utilities"
+arch=('i686' 'x86_64')
+url="http://www.kernel.org/;
+license=('GPL')
+groups=('base')
+depends=('util-linux')
+source=("http://ftp.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('027a598b055dccb8da3aea1378a19f3c')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  CFLAGS+=' -fgnu89-inline'
+  ./configure --prefix=/usr --sbindir=/usr/bin
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}


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

2016-07-16 Thread Tobias Powalowski
Date: Saturday, July 16, 2016 @ 06:12:02
  Author: tpowa
Revision: 271927

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

Added:
  gettext/repos/core-i686/PKGBUILD
(from rev 271926, gettext/repos/testing-i686/PKGBUILD)
  gettext/repos/core-x86_64/PKGBUILD
(from rev 271926, gettext/repos/testing-x86_64/PKGBUILD)
Deleted:
  gettext/repos/core-i686/PKGBUILD
  gettext/repos/core-i686/gettext.install
  gettext/repos/core-x86_64/PKGBUILD
  gettext/repos/core-x86_64/gettext.install
  gettext/repos/testing-i686/
  gettext/repos/testing-x86_64/

-+
 /PKGBUILD   |   68 ++
 core-i686/PKGBUILD  |   35 -
 core-i686/gettext.install   |   22 -
 core-x86_64/PKGBUILD|   35 -
 core-x86_64/gettext.install |   22 -
 5 files changed, 68 insertions(+), 114 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2016-07-16 06:11:37 UTC (rev 271926)
+++ core-i686/PKGBUILD  2016-07-16 06:12:02 UTC (rev 271927)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer:
-
-pkgname=gettext
-pkgver=0.19.7
-pkgrel=1
-pkgdesc="GNU internationalization library"
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/gettext/;
-license=('GPL')
-groups=('base' 'base-devel')
-depends=('gcc-libs' 'acl' 'sh' 'glib2' 'libunistring')
-optdepends=('git: for autopoint infrastructure updates')
-options=(!docs)
-install=gettext.install
-source=(ftp://ftp.gnu.org/pub/gnu/gettext/${pkgname}-${pkgver}.tar.gz{,.sig})
-validpgpkeys=('462225C3B46F34879FC8496CD605848ED7E69871') # Daiki Ueno
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make -j1 -k check
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}
-md5sums=('87c4ab267c4dce8a75db5d057bb3c92f'
- 'SKIP')

Copied: gettext/repos/core-i686/PKGBUILD (from rev 271926, 
gettext/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2016-07-16 06:12:02 UTC (rev 271927)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer:
+
+pkgname=gettext
+pkgver=0.19.8.1
+pkgrel=2
+pkgdesc="GNU internationalization library"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/gettext/;
+license=('GPL')
+groups=('base' 'base-devel')
+depends=('gcc-libs' 'acl' 'sh' 'glib2' 'libunistring')
+optdepends=('git: for autopoint infrastructure updates')
+options=(!docs)
+source=(ftp://ftp.gnu.org/pub/gnu/gettext/${pkgname}-${pkgver}.tar.gz{,.sig})
+validpgpkeys=('462225C3B46F34879FC8496CD605848ED7E69871') # Daiki Ueno
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make -j1 -k check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}
+md5sums=('97e034cf8ce5ba73a28ff6c3c0638092'
+ 'SKIP')

Deleted: core-i686/gettext.install
===
--- core-i686/gettext.install   2016-07-16 06:11:37 UTC (rev 271926)
+++ core-i686/gettext.install   2016-07-16 06:12:02 UTC (rev 271927)
@@ -1,22 +0,0 @@
-infodir=/usr/share/info
-filelist=(gettext.info.gz autosprintf.info.gz)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info $infodir/$file $infodir/dir 2> /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info --delete $infodir/$file $infodir/dir 2> /dev/null
-  done
-}
-
-# vim:set ts=2 sw=2 et:

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2016-07-16 06:11:37 UTC (rev 271926)
+++ core-x86_64/PKGBUILD2016-07-16 06:12:02 UTC (rev 271927)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer:
-
-pkgname=gettext
-pkgver=0.19.7
-pkgrel=1
-pkgdesc="GNU internationalization library"
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/gettext/;
-license=('GPL')
-groups=('base' 'base-devel')
-depends=('gcc-libs' 'acl' 'sh' 'glib2' 'libunistring')
-optdepends=('git: for autopoint infrastructure updates')
-options=(!docs)
-install=gettext.install
-source=(ftp://ftp.gnu.org/pub/gnu/gettext/${pkgname}-${pkgver}.tar.gz{,.sig})
-validpgpkeys=('462225C3B46F34879FC8496CD605848ED7E69871') # Daiki Ueno
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make -j1 -k check
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

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

2016-07-16 Thread Tobias Powalowski
Date: Saturday, July 16, 2016 @ 06:11:37
  Author: tpowa
Revision: 271926

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

Added:
  efivar/repos/testing-i686/
  efivar/repos/testing-i686/PKGBUILD
(from rev 271925, efivar/trunk/PKGBUILD)
  efivar/repos/testing-x86_64/
  efivar/repos/testing-x86_64/PKGBUILD
(from rev 271925, efivar/trunk/PKGBUILD)

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

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

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


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

2016-07-16 Thread Tobias Powalowski
Date: Saturday, July 16, 2016 @ 06:11:25
  Author: tpowa
Revision: 271925

upgpkg: efivar 0.24-1

bump to latest version

Modified:
  efivar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-16 04:39:17 UTC (rev 271924)
+++ PKGBUILD2016-07-16 06:11:25 UTC (rev 271925)
@@ -4,7 +4,7 @@
 
 pkgname="efivar"
 pkgdesc="Tools and library to manipulate EFI variables"
-pkgver=0.23.37.g8740389
+pkgver=0.24
 pkgrel=1
 arch=('x86_64' 'i686')
 url="https://github.com/rhinstaller/efivar;
@@ -14,8 +14,8 @@
 conflicts=('libefivar')
 provides=("libefivar=${pkgver}")
 options=('strip' 'zipman' 'docs')
-#source=("efivar::git+https://github.com/rhinstaller/efivar.git#tag=${pkgver};)
-source=("efivar::git+https://github.com/rhinstaller/efivar.git#commit=8740389dded9202167007508670daefd33a7985f;)
+source=("efivar::git+https://github.com/rhinstaller/efivar.git#tag=${pkgver};)
+#source=("efivar::git+https://github.com/rhinstaller/efivar.git#commit=8740389dded9202167007508670daefd33a7985f;)
 sha1sums=('SKIP')
 
 pkgver() {