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

2016-02-25 Thread Felix Yan
Date: Friday, February 26, 2016 @ 08:54:25
  Author: fyan
Revision: 163479

fix testr as it doesn't run python2 without setting $PYTHON

Modified:
  python-oslotest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 07:02:51 UTC (rev 163478)
+++ PKGBUILD2016-02-26 07:54:25 UTC (rev 163479)
@@ -36,7 +36,7 @@
   python setup.py testr
 
   cd "$srcdir"/oslotest-py2
-  python2 setup.py testr
+  PYTHON=python2 python2 setup.py testr
 }
 
 package_python-oslotest() {


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

2016-02-25 Thread Felix Yan
Date: Friday, February 26, 2016 @ 08:02:51
  Author: fyan
Revision: 163478

fix testr as it doesn't run python2 without setting $PYTHON

Modified:
  python-oslo-i18n/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 07:00:05 UTC (rev 163477)
+++ PKGBUILD2016-02-26 07:02:51 UTC (rev 163478)
@@ -35,7 +35,7 @@
   python setup.py testr
 
   cd "$srcdir"/oslo.i18n-py2
-  python2 setup.py testr
+  PYTHON=python2 python2 setup.py testr
 }
 
 package_python-oslo-i18n() {


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

2016-02-25 Thread Felix Yan
Date: Friday, February 26, 2016 @ 08:00:05
  Author: fyan
Revision: 163477

fix testr as it doesn't run python2 without setting $PYTHON

Modified:
  python-requests-mock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 06:57:21 UTC (rev 163476)
+++ PKGBUILD2016-02-26 07:00:05 UTC (rev 163477)
@@ -32,7 +32,7 @@
   python setup.py testr
 
   cd "$srcdir/requests-mock-py2"
-  python2 setup.py testr
+  PYTHON=python2 python2 setup.py testr
 }
 
 package_python-requests-mock() {


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

2016-02-25 Thread Felix Yan
Date: Friday, February 26, 2016 @ 07:57:21
  Author: fyan
Revision: 163476

fix testr as it doesn't run python2 without setting $PYTHON

Modified:
  python-mox3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 06:56:40 UTC (rev 163475)
+++ PKGBUILD2016-02-26 06:57:21 UTC (rev 163476)
@@ -32,7 +32,7 @@
   python setup.py testr
 
   cd "$srcdir"/mox3-py2
-  python2 setup.py testr
+  PYTHON=python2 python2 setup.py testr
 }
 
 package_python-mox3() {


[arch-commits] Commit in (4 files)

2016-02-25 Thread Felix Yan
Date: Friday, February 26, 2016 @ 07:56:21
  Author: fyan
Revision: 163474

addpkg: python-oslo-utils 3.7.0-1

Added:
  python-oslo-utils/
  python-oslo-utils/repos/
  python-oslo-utils/trunk/
  python-oslo-utils/trunk/PKGBUILD

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

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


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


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

2016-02-25 Thread Felix Yan
Date: Friday, February 26, 2016 @ 07:56:40
  Author: fyan
Revision: 163475

archrelease: copy trunk to community-any

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

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

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


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

2016-02-25 Thread Felix Yan
Date: Friday, February 26, 2016 @ 07:55:22
  Author: fyan
Revision: 163473

fix testr as it doesn't run python2 without setting $PYTHON

Modified:
  python-positional/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 06:43:54 UTC (rev 163472)
+++ PKGBUILD2016-02-26 06:55:22 UTC (rev 163473)
@@ -32,7 +32,7 @@
   python setup.py testr
 
   cd "$srcdir"/positional-py2
-  python2 setup.py testr
+  PYTHON=python2 python2 setup.py testr
 }
 
 package_python-positional() {


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

2016-02-25 Thread Felix Yan
Date: Friday, February 26, 2016 @ 07:43:22
  Author: fyan
Revision: 163471

upgpkg: python-netifaces 0.10.4-2

add a python 3 counterpart

Modified:
  python-netifaces/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 06:40:14 UTC (rev 163470)
+++ PKGBUILD2016-02-26 06:43:22 UTC (rev 163471)
@@ -3,20 +3,36 @@
 # Contributor: Gergely Imreh 
 # Contributor: Ghost of Kendo 
 
-pkgname=python2-netifaces
+pkgbase=python-netifaces
+pkgname=(python-netifaces python2-netifaces)
 pkgver=0.10.4
-pkgrel=1
+pkgrel=2
 pkgdesc="Portable module to access network interface information in Python"
 arch=('i686' 'x86_64')
 url="http://alastairs-place.net/netifaces/;
 license=('MIT')
-depends=('python2')
-makedepends=('python2-distribute')
+makedepends=('python-setuptools' 'python2-setuptools')
 
source=("https://pypi.python.org/packages/source/n/netifaces/netifaces-${pkgver}.tar.gz;)
 md5sums=('36da76e2cfadd24cc7510c2c0012eb1e')
 
-package() {
+prepare() {
+  cp -a "${srcdir}/netifaces-${pkgver}"{,-py2}
+}
+
+package_python-netifaces() {
+  depends=('python')
+
   cd "${srcdir}/netifaces-${pkgver}"
+  python setup.py install --root "${pkgdir}"
+
+  # Install license, that is inside the readme file
+  install -Dm644 README.rst "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-netifaces() {
+  depends=('python2')
+
+  cd "${srcdir}/netifaces-${pkgver}-py2"
   python2 setup.py install --root "${pkgdir}"
 
   # Install license, that is inside the readme file


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

2016-02-25 Thread Felix Yan
Date: Friday, February 26, 2016 @ 07:43:54
  Author: fyan
Revision: 163472

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-26 06:43:22 UTC (rev 163471)
+++ community-i686/PKGBUILD 2016-02-26 06:43:54 UTC (rev 163472)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Gergely Imreh 
-# Contributor: Ghost of Kendo 
-
-pkgname=python2-netifaces
-pkgver=0.10.4
-pkgrel=1
-pkgdesc="Portable module to access network interface information in Python"
-arch=('i686' 'x86_64')
-url="http://alastairs-place.net/netifaces/;
-license=('MIT')
-depends=('python2')
-makedepends=('python2-distribute')
-source=("https://pypi.python.org/packages/source/n/netifaces/netifaces-${pkgver}.tar.gz;)
-md5sums=('36da76e2cfadd24cc7510c2c0012eb1e')
-
-package() {
-  cd "${srcdir}/netifaces-${pkgver}"
-  python2 setup.py install --root "${pkgdir}"
-
-  # Install license, that is inside the readme file
-  install -Dm644 README.rst "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: python-netifaces/repos/community-i686/PKGBUILD (from rev 163471, 
python-netifaces/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-26 06:43:54 UTC (rev 163472)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Gergely Imreh 
+# Contributor: Ghost of Kendo 
+
+pkgbase=python-netifaces
+pkgname=(python-netifaces python2-netifaces)
+pkgver=0.10.4
+pkgrel=2
+pkgdesc="Portable module to access network interface information in Python"
+arch=('i686' 'x86_64')
+url="http://alastairs-place.net/netifaces/;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("https://pypi.python.org/packages/source/n/netifaces/netifaces-${pkgver}.tar.gz;)
+md5sums=('36da76e2cfadd24cc7510c2c0012eb1e')
+
+prepare() {
+  cp -a "${srcdir}/netifaces-${pkgver}"{,-py2}
+}
+
+package_python-netifaces() {
+  depends=('python')
+
+  cd "${srcdir}/netifaces-${pkgver}"
+  python setup.py install --root "${pkgdir}"
+
+  # Install license, that is inside the readme file
+  install -Dm644 README.rst "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-netifaces() {
+  depends=('python2')
+
+  cd "${srcdir}/netifaces-${pkgver}-py2"
+  python2 setup.py install --root "${pkgdir}"
+
+  # Install license, that is inside the readme file
+  install -Dm644 README.rst "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-26 06:43:22 UTC (rev 163471)
+++ community-x86_64/PKGBUILD   2016-02-26 06:43:54 UTC (rev 163472)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Gergely Imreh 
-# Contributor: Ghost of Kendo 
-
-pkgname=python2-netifaces
-pkgver=0.10.4
-pkgrel=1
-pkgdesc="Portable module to access network interface information in Python"
-arch=('i686' 'x86_64')
-url="http://alastairs-place.net/netifaces/;
-license=('MIT')
-depends=('python2')
-makedepends=('python2-distribute')
-source=("https://pypi.python.org/packages/source/n/netifaces/netifaces-${pkgver}.tar.gz;)
-md5sums=('36da76e2cfadd24cc7510c2c0012eb1e')
-
-package() {
-  cd "${srcdir}/netifaces-${pkgver}"
-  python2 setup.py install --root "${pkgdir}"
-
-  # Install license, that is inside the readme file
-  install -Dm644 README.rst "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: python-netifaces/repos/community-x86_64/PKGBUILD (from rev 163471, 
python-netifaces/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-26 06:43:54 UTC (rev 163472)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Gergely Imreh 
+# Contributor: Ghost of Kendo 
+
+pkgbase=python-netifaces
+pkgname=(python-netifaces python2-netifaces)
+pkgver=0.10.4
+pkgrel=2

[arch-commits] Commit in (python-netifaces python2-netifaces)

2016-02-25 Thread Felix Yan
Date: Friday, February 26, 2016 @ 07:40:14
  Author: fyan
Revision: 163470

move pkgbase for python-netifaces

Added:
  python-netifaces/
Deleted:
  python2-netifaces/


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

2016-02-25 Thread Felix Yan
Date: Friday, February 26, 2016 @ 07:33:12
  Author: fyan
Revision: 163468

fix a typo

Modified:
  python-oslotest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 06:32:22 UTC (rev 163467)
+++ PKGBUILD2016-02-26 06:33:12 UTC (rev 163468)
@@ -31,7 +31,7 @@
   python2 setup.py build
 }
 
-build() {
+check() {
   cd "$srcdir"/oslotest
   python setup.py testr
 


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

2016-02-25 Thread Felix Yan
Date: Friday, February 26, 2016 @ 07:33:38
  Author: fyan
Revision: 163469

archrelease: copy trunk to community-any

Added:
  python-oslo-i18n/repos/community-any/
  python-oslo-i18n/repos/community-any/PKGBUILD
(from rev 163468, python-oslo-i18n/trunk/PKGBUILD)

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

Copied: python-oslo-i18n/repos/community-any/PKGBUILD (from rev 163468, 
python-oslo-i18n/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-02-26 06:33:38 UTC (rev 163469)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-oslo-i18n
+pkgname=(python-oslo-i18n python2-oslo-i18n)
+pkgver=3.4.0
+pkgrel=1
+pkgdesc="Oslo i18n library"
+arch=('any')
+url="https://pypi.python.org/pypi/oslo.i18n/$pkgver;
+license=('Apache')
+makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr'
+ 'python-babel' 'python2-babel')
+checkdepends=('python-mock' 'python2-mock' 'python-oslotest' 'python2-oslotest'
+  'python-oslo-config' 'python2-oslo-config')
+options=('!emptydirs')
+source=("git+https://git.openstack.org/openstack/oslo.i18n#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a oslo.i18n{,-py2}
+}
+
+build() {
+  cd "$srcdir"/oslo.i18n
+  python setup.py build
+
+  cd "$srcdir"/oslo.i18n-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/oslo.i18n
+  python setup.py testr
+
+  cd "$srcdir"/oslo.i18n-py2
+  python2 setup.py testr
+}
+
+package_python-oslo-i18n() {
+  depends=('python-six' 'python-pbr' 'python-babel')
+
+  cd "$srcdir"/oslo.i18n
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-oslo-i18n() {
+  depends=('python2-six' 'python2-pbr' 'python2-babel')
+
+  cd "$srcdir"/oslo.i18n-py2
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2016-02-25 Thread Felix Yan
Date: Friday, February 26, 2016 @ 07:32:22
  Author: fyan
Revision: 163467

addpkg: python-oslo-i18n 3.4.0-1

Added:
  python-oslo-i18n/
  python-oslo-i18n/repos/
  python-oslo-i18n/trunk/
  python-oslo-i18n/trunk/PKGBUILD

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

Added: python-oslo-i18n/trunk/PKGBUILD
===
--- python-oslo-i18n/trunk/PKGBUILD (rev 0)
+++ python-oslo-i18n/trunk/PKGBUILD 2016-02-26 06:32:22 UTC (rev 163467)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-oslo-i18n
+pkgname=(python-oslo-i18n python2-oslo-i18n)
+pkgver=3.4.0
+pkgrel=1
+pkgdesc="Oslo i18n library"
+arch=('any')
+url="https://pypi.python.org/pypi/oslo.i18n/$pkgver;
+license=('Apache')
+makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr'
+ 'python-babel' 'python2-babel')
+checkdepends=('python-mock' 'python2-mock' 'python-oslotest' 'python2-oslotest'
+  'python-oslo-config' 'python2-oslo-config')
+options=('!emptydirs')
+source=("git+https://git.openstack.org/openstack/oslo.i18n#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a oslo.i18n{,-py2}
+}
+
+build() {
+  cd "$srcdir"/oslo.i18n
+  python setup.py build
+
+  cd "$srcdir"/oslo.i18n-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/oslo.i18n
+  python setup.py testr
+
+  cd "$srcdir"/oslo.i18n-py2
+  python2 setup.py testr
+}
+
+package_python-oslo-i18n() {
+  depends=('python-six' 'python-pbr' 'python-babel')
+
+  cd "$srcdir"/oslo.i18n
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-oslo-i18n() {
+  depends=('python2-six' 'python2-pbr' 'python2-babel')
+
+  cd "$srcdir"/oslo.i18n-py2
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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


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

2016-02-25 Thread Felix Yan
Date: Friday, February 26, 2016 @ 07:15:49
  Author: fyan
Revision: 163466

archrelease: copy trunk to community-any

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

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

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


[arch-commits] Commit in (4 files)

2016-02-25 Thread Felix Yan
Date: Friday, February 26, 2016 @ 07:11:58
  Author: fyan
Revision: 163465

addpkg: python-oslotest 2.3.0-1

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

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

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


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


[arch-commits] Commit in (4 files)

2016-02-25 Thread Felix Yan
Date: Friday, February 26, 2016 @ 06:55:48
  Author: fyan
Revision: 163463

addpkg: python-requestsexceptions 1.1.3-1

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

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

Added: python-requestsexceptions/trunk/PKGBUILD
===
--- python-requestsexceptions/trunk/PKGBUILD(rev 0)
+++ python-requestsexceptions/trunk/PKGBUILD2016-02-26 05:55:48 UTC (rev 
163463)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-requestsexceptions
+pkgname=(python-requestsexceptions python2-requestsexceptions)
+pkgver=1.1.3
+pkgrel=1
+pkgdesc="Import exceptions from potentially bundled packages in requests."
+arch=('any')
+url="https://github.com/openstack-infra/requestsexceptions;
+license=('Apache')
+makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr'
+ 'python-requests' 'python2-requests')
+source=("git+https://github.com/openstack-infra/requestsexceptions.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a requestsexceptions{,-py2}
+}
+
+build() {
+  cd "$srcdir"/requestsexceptions
+  python setup.py build
+
+  cd "$srcdir"/requestsexceptions-py2
+  python2 setup.py build
+}
+
+package_python-requestsexceptions() {
+  depends=('python-pbr' 'python-requests')
+
+  cd "$srcdir"/requestsexceptions
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-requestsexceptions() {
+  depends=('python2-pbr' 'python2-requests')
+
+  cd "$srcdir"/requestsexceptions-py2
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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


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

2016-02-25 Thread Felix Yan
Date: Friday, February 26, 2016 @ 06:56:17
  Author: fyan
Revision: 163464

archrelease: copy trunk to community-any

Added:
  python-requestsexceptions/repos/community-any/
  python-requestsexceptions/repos/community-any/PKGBUILD
(from rev 163463, python-requestsexceptions/trunk/PKGBUILD)

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

Copied: python-requestsexceptions/repos/community-any/PKGBUILD (from rev 
163463, python-requestsexceptions/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-02-26 05:56:17 UTC (rev 163464)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-requestsexceptions
+pkgname=(python-requestsexceptions python2-requestsexceptions)
+pkgver=1.1.3
+pkgrel=1
+pkgdesc="Import exceptions from potentially bundled packages in requests."
+arch=('any')
+url="https://github.com/openstack-infra/requestsexceptions;
+license=('Apache')
+makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr'
+ 'python-requests' 'python2-requests')
+source=("git+https://github.com/openstack-infra/requestsexceptions.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a requestsexceptions{,-py2}
+}
+
+build() {
+  cd "$srcdir"/requestsexceptions
+  python setup.py build
+
+  cd "$srcdir"/requestsexceptions-py2
+  python2 setup.py build
+}
+
+package_python-requestsexceptions() {
+  depends=('python-pbr' 'python-requests')
+
+  cd "$srcdir"/requestsexceptions
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-requestsexceptions() {
+  depends=('python2-pbr' 'python2-requests')
+
+  cd "$srcdir"/requestsexceptions-py2
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-02-25 Thread Felix Yan
Date: Friday, February 26, 2016 @ 06:29:00
  Author: fyan
Revision: 163462

archrelease: copy trunk to community-any

Added:
  python-positional/repos/community-any/
  python-positional/repos/community-any/PKGBUILD
(from rev 163461, python-positional/trunk/PKGBUILD)

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

Copied: python-positional/repos/community-any/PKGBUILD (from rev 163461, 
python-positional/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-02-26 05:29:00 UTC (rev 163462)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-positional
+pkgname=(python-positional python2-positional)
+pkgver=1.0.1
+pkgrel=1
+pkgdesc="Library to enforce positional or key-word arguments"
+arch=('any')
+url="https://github.com/morganfainberg/positional;
+license=('Apache')
+makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr')
+checkdepends=('python-testrepository' 'python2-testrepository')
+source=("git+https://github.com/morganfainberg/positional.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a positional{,-py2}
+}
+
+build() {
+  cd "$srcdir"/positional
+  python setup.py build
+
+  cd "$srcdir"/positional-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/positional
+  python setup.py testr
+
+  cd "$srcdir"/positional-py2
+  python2 setup.py testr
+}
+
+package_python-positional() {
+  depends=('python-pbr')
+
+  cd "$srcdir"/positional
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-positional() {
+  depends=('python2-pbr')
+
+  cd "$srcdir"/positional-py2
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-02-25 Thread Felix Yan
Date: Friday, February 26, 2016 @ 06:28:32
  Author: fyan
Revision: 163460

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

Added:
  deepin-wm/repos/community-i686/PKGBUILD
(from rev 163459, deepin-wm/trunk/PKGBUILD)
  deepin-wm/repos/community-i686/deepin-wm.install
(from rev 163459, deepin-wm/trunk/deepin-wm.install)
  deepin-wm/repos/community-x86_64/PKGBUILD
(from rev 163459, deepin-wm/trunk/PKGBUILD)
  deepin-wm/repos/community-x86_64/deepin-wm.install
(from rev 163459, deepin-wm/trunk/deepin-wm.install)
Deleted:
  deepin-wm/repos/community-i686/PKGBUILD
  deepin-wm/repos/community-i686/deepin-wm.install
  deepin-wm/repos/community-x86_64/PKGBUILD
  deepin-wm/repos/community-x86_64/deepin-wm.install

+
 /PKGBUILD  |   70 +++
 /deepin-wm.install |   24 
 community-i686/PKGBUILD|   35 -
 community-i686/deepin-wm.install   |   12 --
 community-x86_64/PKGBUILD  |   35 -
 community-x86_64/deepin-wm.install |   12 --
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-26 05:27:59 UTC (rev 163459)
+++ community-i686/PKGBUILD 2016-02-26 05:28:32 UTC (rev 163460)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-wm
-pkgver=1.0.3
-pkgrel=1
-pkgdesc='Deepin Window Manager'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/deepin-wm;
-license=('GPL3')
-depends=('bamf' 'clutter-gtk' 'deepin-desktop-schemas'
- 'deepin-mutter' 'gnome-desktop' 'libgee')
-makedepends=('gnome-common' 'intltool' 'vala' 'git')
-install='deepin-wm.install'
-source=("git+https://cr.deepin.io/deepin-wm.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-prepare() {
-  cd "${pkgname}"
-  export CFLAGS="$CFLAGS -DWNCK_I_KNOW_THIS_IS_UNSTABLE"
-}
-
-build() {
-  cd "${pkgname}"
-  ./autogen.sh \
---prefix='/usr' \
---disable-schemas-compile
-}
-
-package() {
-  cd "${pkgname}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: deepin-wm/repos/community-i686/PKGBUILD (from rev 163459, 
deepin-wm/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-26 05:28:32 UTC (rev 163460)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-wm
+pkgver=1.0.4
+pkgrel=1
+pkgdesc='Deepin Window Manager'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/deepin-wm;
+license=('GPL3')
+depends=('bamf' 'clutter-gtk' 'deepin-desktop-schemas'
+ 'deepin-mutter' 'gnome-desktop' 'libgee')
+makedepends=('gnome-common' 'intltool' 'vala' 'git')
+install='deepin-wm.install'
+source=("git+https://cr.deepin.io/deepin-wm.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  cd "${pkgname}"
+  export CFLAGS="$CFLAGS -DWNCK_I_KNOW_THIS_IS_UNSTABLE"
+}
+
+build() {
+  cd "${pkgname}"
+  ./autogen.sh \
+--prefix='/usr' \
+--disable-schemas-compile
+}
+
+package() {
+  cd "${pkgname}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-i686/deepin-wm.install
===
--- community-i686/deepin-wm.install2016-02-26 05:27:59 UTC (rev 163459)
+++ community-i686/deepin-wm.install2016-02-26 05:28:32 UTC (rev 163460)
@@ -1,12 +0,0 @@
-post_install() {
-  glib-compile-schemas /usr/share/glib-2.0/schemas
-  gtk-update-icon-cache -ftq /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: deepin-wm/repos/community-i686/deepin-wm.install (from rev 163459, 
deepin-wm/trunk/deepin-wm.install)
===
--- community-i686/deepin-wm.install(rev 0)
+++ community-i686/deepin-wm.install2016-02-26 05:28:32 UTC (rev 163460)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -ftq /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-26 05:27:59 UTC (rev 163459)
+++ community-x86_64/PKGBUILD   2016-02-26 05:28:32 UTC (rev 163460)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-wm
-pkgver=1.0.3
-pkgrel=1
-pkgdesc='Deepin 

[arch-commits] Commit in (4 files)

2016-02-25 Thread Felix Yan
Date: Friday, February 26, 2016 @ 06:28:37
  Author: fyan
Revision: 163461

addpkg: python-positional 1.0.1-1

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

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

Added: python-positional/trunk/PKGBUILD
===
--- python-positional/trunk/PKGBUILD(rev 0)
+++ python-positional/trunk/PKGBUILD2016-02-26 05:28:37 UTC (rev 163461)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-positional
+pkgname=(python-positional python2-positional)
+pkgver=1.0.1
+pkgrel=1
+pkgdesc="Library to enforce positional or key-word arguments"
+arch=('any')
+url="https://github.com/morganfainberg/positional;
+license=('Apache')
+makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr')
+checkdepends=('python-testrepository' 'python2-testrepository')
+source=("git+https://github.com/morganfainberg/positional.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a positional{,-py2}
+}
+
+build() {
+  cd "$srcdir"/positional
+  python setup.py build
+
+  cd "$srcdir"/positional-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/positional
+  python setup.py testr
+
+  cd "$srcdir"/positional-py2
+  python2 setup.py testr
+}
+
+package_python-positional() {
+  depends=('python-pbr')
+
+  cd "$srcdir"/positional
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-positional() {
+  depends=('python2-pbr')
+
+  cd "$srcdir"/positional-py2
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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


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

2016-02-25 Thread Felix Yan
Date: Friday, February 26, 2016 @ 06:27:59
  Author: fyan
Revision: 163459

upgpkg: deepin-wm 1.0.4-1

Modified:
  deepin-wm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 05:25:04 UTC (rev 163458)
+++ PKGBUILD2016-02-26 05:27:59 UTC (rev 163459)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-wm
-pkgver=1.0.3
+pkgver=1.0.4
 pkgrel=1
 pkgdesc='Deepin Window Manager'
 arch=('i686' 'x86_64')


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

2016-02-25 Thread Felix Yan
Date: Friday, February 26, 2016 @ 06:25:04
  Author: fyan
Revision: 163458

archrelease: copy trunk to community-any

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

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

Deleted: LICENSE
===
--- LICENSE 2016-02-26 05:24:21 UTC (rev 163457)
+++ LICENSE 2016-02-26 05:25:04 UTC (rev 163458)
@@ -1,23 +0,0 @@
-The MIT License
-
-Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
-
-

Copied: jenkins/repos/community-any/LICENSE (from rev 163457, 
jenkins/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2016-02-26 05:25:04 UTC (rev 163458)
@@ -0,0 +1,23 @@
+The MIT License
+
+Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-26 05:24:21 UTC (rev 163457)
+++ PKGBUILD2016-02-26 05:25:04 UTC (rev 163458)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Alexander Rødseth 
-# Contributor: Marcel Huber 
-# Contributor: Illarion Kovalchuk 
-
-pkgname=jenkins
-pkgver=1.649
-pkgrel=1
-pkgdesc='Extendable continuous integration server (latest)'
-arch=('any')
-url='http://jenkins-ci.org/'
-license=('MIT')
-depends=('java-runtime' 'ttf-dejavu' 'libcups')
-provides=('jenkins-ci')
-conflicts=('jenkins-ci')
-replaces=('jenkins-ci')

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

2016-02-25 Thread Felix Yan
Date: Friday, February 26, 2016 @ 06:24:21
  Author: fyan
Revision: 163457

upgpkg: jenkins 1.650-1

Modified:
  jenkins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 05:15:54 UTC (rev 163456)
+++ PKGBUILD2016-02-26 05:24:21 UTC (rev 163457)
@@ -5,7 +5,7 @@
 # Contributor: Illarion Kovalchuk 
 
 pkgname=jenkins
-pkgver=1.649
+pkgver=1.650
 pkgrel=1
 pkgdesc='Extendable continuous integration server (latest)'
 arch=('any')
@@ -25,7 +25,7 @@
 'jenkins.tmpfiles'
 'jenkins.sysusers'
 'LICENSE')
-sha512sums=('5480692cdb2efd94ea6c6f5f56909f69b2b0be7d794dd7e8860a2e31a650992aa63ffbdc67686dfd7cb484d07766227151dc40b8729340d5a07daa461216b57c'
+sha512sums=('cedcd11b877bfd5c10cc3a08ea2666090da02fb655d3e7d532da24458ee175468bed38e5ff74ecf7524dcaf857c103652259d9ab0d36af8bdc1f866e85bf477a'
 
'3a8421cef3953d899c150609f959cf5d5dd6d08d079a5e0f48bfece4f3c80491722b9e90ef841fddb87401c226b8338297c5c4e83e55a33ef8d6e387de3048d0'
 
'a336b006d3711abb75b49a2e12c09ee61cf3275a2cdbbd3676480e2f6ca8ba0fb4b9c08f3f9da193252c4fca827e9a1d5eaad847d0a889445693427ae1571fe7'
 
'a845a7147be54affc586dfce9a188ec24c92e673e88dec0b62da386d2e597de6ecda103429008562abd897f179a52c37cf2188ebc65b8c636efd07d707e18f90'


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

2016-02-25 Thread Felix Yan
Date: Friday, February 26, 2016 @ 06:15:54
  Author: fyan
Revision: 163456

archrelease: copy trunk to community-any

Added:
  npm/repos/community-any/PKGBUILD
(from rev 163455, npm/trunk/PKGBUILD)
Deleted:
  npm/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-26 05:15:33 UTC (rev 163455)
+++ PKGBUILD2016-02-26 05:15:54 UTC (rev 163456)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=npm
-pkgver=3.7.3
-pkgrel=1
-pkgdesc='A package manager for javascript'
-arch=('any')
-url='https://www.npmjs.com/'
-license=('custom:Artistic')
-depends=('nodejs' 'semver')
-provides=('nodejs-node-gyp')
-makedepends=('git' 'procps-ng')
-optdepends=('python2: for node-gyp')
-options=('!emptydirs')
-source=("git+https://github.com/npm/npm.git#tag=v$pkgver;)
-md5sums=('SKIP')
-
-build() {
-  cd npm
-  make
-}
-
-package() {
-  cd npm
-  make NPMOPTS="--prefix=\"$pkgdir/usr\"" install
-
-  # Why 777? :/
-  chmod -R u=rwX,go=rX "$pkgdir"
-  
-  # Fix files owned by nobody:
-  chown -R root "$pkgdir/usr/lib/node_modules" 
-
-  # Fix wrong symlinks
-  for _dir in man1 man5 man7; do
-rm -f "$pkgdir"/usr/share/man/$_dir/*
-cd "$pkgdir"/usr/lib/node_modules/npm/man/$_dir
-for _file in *; do
-  ln -s /usr/lib/node_modules/npm/man/$_dir/$_file 
"$pkgdir"/usr/share/man/$_dir/
-done
-  done
-  
-  # Provide node-gyp executable
-  cp "$pkgdir"/usr/lib/node_modules/npm/bin/node-gyp-bin/node-gyp 
"$pkgdir"/usr/bin/node-gyp
-  sed -i 's|"`dirname "$0"`/../../|"`dirname "$0"`/../lib/node_modules/npm/|' 
"$pkgdir"/usr/bin/node-gyp
-
-  # Experimental dedup
-  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
-  for dep in semver; do
-rm -r $dep;
-node "$srcdir"/npm/cli.js link $dep;
-  done
-  
-  install -Dm644 "$srcdir/npm/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: npm/repos/community-any/PKGBUILD (from rev 163455, npm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-26 05:15:54 UTC (rev 163456)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=npm
+pkgver=3.7.5
+pkgrel=1
+pkgdesc='A package manager for javascript'
+arch=('any')
+url='https://www.npmjs.com/'
+license=('custom:Artistic')
+depends=('nodejs' 'semver')
+provides=('nodejs-node-gyp')
+makedepends=('git' 'procps-ng')
+optdepends=('python2: for node-gyp')
+options=('!emptydirs')
+source=("git+https://github.com/npm/npm.git#tag=v$pkgver;)
+md5sums=('SKIP')
+
+build() {
+  cd npm
+  make
+}
+
+package() {
+  cd npm
+  make NPMOPTS="--prefix=\"$pkgdir/usr\"" install
+
+  # Why 777? :/
+  chmod -R u=rwX,go=rX "$pkgdir"
+  
+  # Fix files owned by nobody:
+  chown -R root "$pkgdir/usr/lib/node_modules" 
+
+  # Fix wrong symlinks
+  for _dir in man1 man5 man7; do
+rm -f "$pkgdir"/usr/share/man/$_dir/*
+cd "$pkgdir"/usr/lib/node_modules/npm/man/$_dir
+for _file in *; do
+  ln -s /usr/lib/node_modules/npm/man/$_dir/$_file 
"$pkgdir"/usr/share/man/$_dir/
+done
+  done
+  
+  # Provide node-gyp executable
+  cp "$pkgdir"/usr/lib/node_modules/npm/bin/node-gyp-bin/node-gyp 
"$pkgdir"/usr/bin/node-gyp
+  sed -i 's|"`dirname "$0"`/../../|"`dirname "$0"`/../lib/node_modules/npm/|' 
"$pkgdir"/usr/bin/node-gyp
+
+  # Experimental dedup
+  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
+  for dep in semver; do
+rm -r $dep;
+node "$srcdir"/npm/cli.js link $dep;
+  done
+  
+  install -Dm644 "$srcdir/npm/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2016-02-25 Thread Felix Yan
Date: Friday, February 26, 2016 @ 06:15:33
  Author: fyan
Revision: 163455

upgpkg: npm 3.7.5-1

Modified:
  npm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 05:09:20 UTC (rev 163454)
+++ PKGBUILD2016-02-26 05:15:33 UTC (rev 163455)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=npm
-pkgver=3.7.3
+pkgver=3.7.5
 pkgrel=1
 pkgdesc='A package manager for javascript'
 arch=('any')


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

2016-02-25 Thread Allan McRae
Date: Friday, February 26, 2016 @ 06:12:59
  Author: allan
Revision: 260255

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

Added:
  pacman/repos/testing-i686/0001-libmakepkg-fix-is_array-function.patch
(from rev 260254, pacman/trunk/0001-libmakepkg-fix-is_array-function.patch)
  pacman/repos/testing-i686/PKGBUILD
(from rev 260254, pacman/trunk/PKGBUILD)
  pacman/repos/testing-i686/makepkg.conf
(from rev 260254, pacman/trunk/makepkg.conf)
  pacman/repos/testing-i686/pacman.conf.i686
(from rev 260254, pacman/trunk/pacman.conf.i686)
  pacman/repos/testing-i686/pacman.conf.x86_64
(from rev 260254, pacman/trunk/pacman.conf.x86_64)
  pacman/repos/testing-x86_64/0001-libmakepkg-fix-is_array-function.patch
(from rev 260254, pacman/trunk/0001-libmakepkg-fix-is_array-function.patch)
  pacman/repos/testing-x86_64/PKGBUILD
(from rev 260254, pacman/trunk/PKGBUILD)
  pacman/repos/testing-x86_64/makepkg.conf
(from rev 260254, pacman/trunk/makepkg.conf)
  pacman/repos/testing-x86_64/pacman.conf.i686
(from rev 260254, pacman/trunk/pacman.conf.i686)
  pacman/repos/testing-x86_64/pacman.conf.x86_64
(from rev 260254, pacman/trunk/pacman.conf.x86_64)
Deleted:
  pacman/repos/testing-i686/PKGBUILD
  pacman/repos/testing-i686/makepkg.conf
  pacman/repos/testing-i686/pacman.conf.i686
  pacman/repos/testing-i686/pacman.conf.x86_64
  pacman/repos/testing-x86_64/PKGBUILD
  pacman/repos/testing-x86_64/makepkg.conf
  pacman/repos/testing-x86_64/pacman.conf.i686
  pacman/repos/testing-x86_64/pacman.conf.x86_64

+
 /PKGBUILD  |  196 +++
 /makepkg.conf  |  294 +++
 /pacman.conf.i686  |  182 ++
 /pacman.conf.x86_64|  200 +++
 testing-i686/0001-libmakepkg-fix-is_array-function.patch   |   32 +
 testing-i686/PKGBUILD  |   90 ---
 testing-i686/makepkg.conf  |  147 -
 testing-i686/pacman.conf.i686  |   91 ---
 testing-i686/pacman.conf.x86_64|  100 ---
 testing-x86_64/0001-libmakepkg-fix-is_array-function.patch |   32 +
 testing-x86_64/PKGBUILD|   90 ---
 testing-x86_64/makepkg.conf|  147 -
 testing-x86_64/pacman.conf.i686|   91 ---
 testing-x86_64/pacman.conf.x86_64  |  100 ---
 14 files changed, 936 insertions(+), 856 deletions(-)

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


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

2016-02-25 Thread Allan McRae
Date: Friday, February 26, 2016 @ 06:11:10
  Author: allan
Revision: 260254

upgpkg: pacman 5.0.1-2

libmakepkg bug fix

Added:
  pacman/trunk/0001-libmakepkg-fix-is_array-function.patch
Modified:
  pacman/trunk/PKGBUILD

-+
 0001-libmakepkg-fix-is_array-function.patch |   32 ++
 PKGBUILD|   10 +++-
 2 files changed, 41 insertions(+), 1 deletion(-)

Added: 0001-libmakepkg-fix-is_array-function.patch
===
--- 0001-libmakepkg-fix-is_array-function.patch (rev 0)
+++ 0001-libmakepkg-fix-is_array-function.patch 2016-02-26 05:11:10 UTC (rev 
260254)
@@ -0,0 +1,32 @@
+From 2822a45fa91b430c99b4b8bd3531ee745ada1ab7 Mon Sep 17 00:00:00 2001
+From: Allan McRae 
+Date: Fri, 26 Feb 2016 15:01:11 +1000
+Subject: [PATCH] libmakepkg: fix is_array function
+
+This happened to work for the majority of cases because the only calling
+function used a variable named "i" that was related to the variable being
+passed to the function.
+
+Fixes FS#48340.
+
+Signed-off-by: Allan McRae 
+---
+ scripts/libmakepkg/util/util.sh | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/scripts/libmakepkg/util/util.sh b/scripts/libmakepkg/util/util.sh
+index 675e75d..f9f1c20 100644
+--- a/scripts/libmakepkg/util/util.sh
 b/scripts/libmakepkg/util/util.sh
+@@ -46,7 +46,7 @@ is_array() {
+   local shellopts=$(shopt -p)
+   shopt -s extglob
+ 
+-  if [[ $(declare -p "$i") == declare\ -*([[:alnum:]])a*([[:alnum:]])\ * 
]]; then
++  if [[ $(declare -p "$v") == declare\ -*([[:alnum:]])a*([[:alnum:]])\ * 
]]; then
+   ret=0
+   fi
+ 
+-- 
+2.7.1
+

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 02:19:35 UTC (rev 260253)
+++ PKGBUILD2016-02-26 05:11:10 UTC (rev 260254)
@@ -5,7 +5,7 @@
 
 pkgname=pacman
 pkgver=5.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A library-based package manager with dependency support"
 arch=('i686' 'x86_64')
 url="http://www.archlinux.org/pacman/;
@@ -21,11 +21,13 @@
 backup=(etc/pacman.conf etc/makepkg.conf)
 options=('strip' 'debug')
 
source=(https://sources.archlinux.org/other/pacman/$pkgname-$pkgver.tar.gz{,.sig}
+0001-libmakepkg-fix-is_array-function.patch
 pacman.conf.i686
 pacman.conf.x86_64
 makepkg.conf)
 md5sums=('377a2664d6007d72d6d8a126add83bcf'
  'SKIP'
+ '55732144f1048f714f1f93203e9b7728'
  'bdb40c76225c2fd8874bd34b6a3f6ad7'
  'c511ee4c7a86a37e8841440ede89300d'
  'f5b59fe5f016eebd9590318530bbd996')
@@ -32,6 +34,12 @@
 validpgpkeys=('6645B0A8C7005E78DB1D7864F99FFE0FEAE999BD')  # Allan McRae 

 
 
+prepare() {
+  cd "$pkgname-$pkgver"
+  
+  patch -p1 -i $srcdir/0001-libmakepkg-fix-is_array-function.patch
+}
+
 build() {
   cd "$pkgname-$pkgver"
 


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

2016-02-25 Thread Felix Yan
Date: Friday, February 26, 2016 @ 06:09:20
  Author: fyan
Revision: 163454

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

Added:
  deepin-session-ui/repos/community-i686/PKGBUILD
(from rev 163453, deepin-session-ui/trunk/PKGBUILD)
  deepin-session-ui/repos/community-x86_64/PKGBUILD
(from rev 163453, deepin-session-ui/trunk/PKGBUILD)
Deleted:
  deepin-session-ui/repos/community-i686/PKGBUILD
  deepin-session-ui/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-26 05:08:05 UTC (rev 163453)
+++ community-i686/PKGBUILD 2016-02-26 05:09:20 UTC (rev 163454)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-session-ui
-pkgver=3.0.7
-pkgrel=1
-pkgdesc='Deepin desktop-environment - Session UI module'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-session-ui;
-license=('GPL3')
-groups=('deepin')
-depends=('gsettings-qt' 'libdui' 'liblightdm-qt5' 'qt5-svg' 'deepin-daemon'
- 'deepin-control-center' 'startdde' 'gtk2')
-makedepends=('git' 'qt5-tools')
-provides=('lightdm-deepin-greeter')
-conflicts=('dde-workspace' 'dde-session-ui')
-replaces=('dde-workspace' 'dde-session-ui')
-source=("git+https://cr.deepin.io/dde/dde-session-ui.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd "dde-session-ui"
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd "dde-session-ui"
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-session-ui/repos/community-i686/PKGBUILD (from rev 163453, 
deepin-session-ui/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-26 05:09:20 UTC (rev 163454)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-session-ui
+pkgver=3.0.8
+pkgrel=1
+pkgdesc='Deepin desktop-environment - Session UI module'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-session-ui;
+license=('GPL3')
+groups=('deepin')
+depends=('gsettings-qt' 'libdui' 'liblightdm-qt5' 'qt5-svg' 'deepin-daemon'
+ 'deepin-control-center' 'startdde' 'gtk2')
+makedepends=('git' 'qt5-tools')
+provides=('lightdm-deepin-greeter')
+conflicts=('dde-workspace' 'dde-session-ui')
+replaces=('dde-workspace' 'dde-session-ui')
+source=("git+https://cr.deepin.io/dde/dde-session-ui.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd "dde-session-ui"
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd "dde-session-ui"
+  make INSTALL_ROOT="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-26 05:08:05 UTC (rev 163453)
+++ community-x86_64/PKGBUILD   2016-02-26 05:09:20 UTC (rev 163454)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-session-ui
-pkgver=3.0.7
-pkgrel=1
-pkgdesc='Deepin desktop-environment - Session UI module'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-session-ui;
-license=('GPL3')
-groups=('deepin')
-depends=('gsettings-qt' 'libdui' 'liblightdm-qt5' 'qt5-svg' 'deepin-daemon'
- 'deepin-control-center' 'startdde' 'gtk2')
-makedepends=('git' 'qt5-tools')
-provides=('lightdm-deepin-greeter')
-conflicts=('dde-workspace' 'dde-session-ui')
-replaces=('dde-workspace' 'dde-session-ui')
-source=("git+https://cr.deepin.io/dde/dde-session-ui.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd "dde-session-ui"
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd "dde-session-ui"
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-session-ui/repos/community-x86_64/PKGBUILD (from rev 163453, 
deepin-session-ui/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-26 05:09:20 UTC (rev 163454)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-session-ui
+pkgver=3.0.8
+pkgrel=1
+pkgdesc='Deepin desktop-environment - Session UI module'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-session-ui;

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

2016-02-25 Thread Felix Yan
Date: Friday, February 26, 2016 @ 06:08:05
  Author: fyan
Revision: 163453

upgpkg: deepin-session-ui 3.0.8-1

Modified:
  deepin-session-ui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-26 04:41:51 UTC (rev 163452)
+++ PKGBUILD2016-02-26 05:08:05 UTC (rev 163453)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-session-ui
-pkgver=3.0.7
+pkgver=3.0.8
 pkgrel=1
 pkgdesc='Deepin desktop-environment - Session UI module'
 arch=('i686' 'x86_64')


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

2016-02-25 Thread Balló György
Date: Friday, February 26, 2016 @ 05:41:43
  Author: bgyorgy
Revision: 163451

upgpkg: gnome-main-menu 1.8.0-3

Add missing dependency on mate-system-monitor (gnome-main-menu uses it's 
GSettings schemas)

Modified:
  gnome-main-menu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 20:44:08 UTC (rev 163450)
+++ PKGBUILD2016-02-26 04:41:43 UTC (rev 163451)
@@ -3,12 +3,12 @@
 
 pkgname=gnome-main-menu
 pkgver=1.8.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A mate-panel applet similar to the traditional main-menu, but with a 
few additions."
 url="http://mate-desktop.org;
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('caja' 'libunique' 'mate-control-center' 'mate-desktop' 'mate-panel')
+depends=('caja' 'libunique' 'mate-control-center' 'mate-desktop' 'mate-panel' 
'mate-system-monitor')
 makedepends=('mate-common' 'yelp-tools')
 optdepends=('yelp: for reading help documents')
 source=("http://pub.mate-desktop.org/releases/1.8/${pkgname}-${pkgver}.tar.xz;)


[arch-commits] Commit in gnome-main-menu/repos (8 files)

2016-02-25 Thread Balló György
Date: Friday, February 26, 2016 @ 05:41:51
  Author: bgyorgy
Revision: 163452

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

Added:
  gnome-main-menu/repos/community-i686/PKGBUILD
(from rev 163451, gnome-main-menu/trunk/PKGBUILD)
  gnome-main-menu/repos/community-i686/gnome-main-menu.install
(from rev 163451, gnome-main-menu/trunk/gnome-main-menu.install)
  gnome-main-menu/repos/community-x86_64/PKGBUILD
(from rev 163451, gnome-main-menu/trunk/PKGBUILD)
  gnome-main-menu/repos/community-x86_64/gnome-main-menu.install
(from rev 163451, gnome-main-menu/trunk/gnome-main-menu.install)
Deleted:
  gnome-main-menu/repos/community-i686/PKGBUILD
  gnome-main-menu/repos/community-i686/gnome-main-menu.install
  gnome-main-menu/repos/community-x86_64/PKGBUILD
  gnome-main-menu/repos/community-x86_64/gnome-main-menu.install

--+
 /PKGBUILD|   92 +
 /gnome-main-menu.install |   26 
 community-i686/PKGBUILD  |   46 --
 community-i686/gnome-main-menu.install   |   13 
 community-x86_64/PKGBUILD|   46 --
 community-x86_64/gnome-main-menu.install |   13 
 6 files changed, 118 insertions(+), 118 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-26 04:41:43 UTC (rev 163451)
+++ community-i686/PKGBUILD 2016-02-26 04:41:51 UTC (rev 163452)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress 
-
-pkgname=gnome-main-menu
-pkgver=1.8.0
-pkgrel=2
-pkgdesc="A mate-panel applet similar to the traditional main-menu, but with a 
few additions."
-url="http://mate-desktop.org;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('caja' 'libunique' 'mate-control-center' 'mate-desktop' 'mate-panel')
-makedepends=('mate-common' 'yelp-tools')
-optdepends=('yelp: for reading help documents')
-source=("http://pub.mate-desktop.org/releases/1.8/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('287e904506ae2796e84b556f76e3b12274c1c89f')
-install=${pkgname}.install
-
-prepare() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-
-# Replace libslab with libmate-slab
-sed -i 's|libslab|mate-slab|' configure.ac
-sed -i 's|libslab/slab.h|libmate-slab/slab.h|' */src/*
-
-# Update disable-log-out key location
-sed -i 's|org.mate.panel|org.mate.lockdown|' main-menu/src/main-menu-ui.c
-
-autoreconf -fi
-}
-
-build() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${pkgname} \
---sysconfdir=/etc \
---localstatedir=/var \
---enable-caja-extension \
---disable-static
-make
-}
-
-package() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-make DESTDIR="${pkgdir}" install
-}

Copied: gnome-main-menu/repos/community-i686/PKGBUILD (from rev 163451, 
gnome-main-menu/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-26 04:41:51 UTC (rev 163452)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+
+pkgname=gnome-main-menu
+pkgver=1.8.0
+pkgrel=3
+pkgdesc="A mate-panel applet similar to the traditional main-menu, but with a 
few additions."
+url="http://mate-desktop.org;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('caja' 'libunique' 'mate-control-center' 'mate-desktop' 'mate-panel' 
'mate-system-monitor')
+makedepends=('mate-common' 'yelp-tools')
+optdepends=('yelp: for reading help documents')
+source=("http://pub.mate-desktop.org/releases/1.8/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('287e904506ae2796e84b556f76e3b12274c1c89f')
+install=${pkgname}.install
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+# Replace libslab with libmate-slab
+sed -i 's|libslab|mate-slab|' configure.ac
+sed -i 's|libslab/slab.h|libmate-slab/slab.h|' */src/*
+
+# Update disable-log-out key location
+sed -i 's|org.mate.panel|org.mate.lockdown|' main-menu/src/main-menu-ui.c
+
+autoreconf -fi
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${pkgname} \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--enable-caja-extension \
+--disable-static
+make
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}

Deleted: community-i686/gnome-main-menu.install
===
--- community-i686/gnome-main-menu.install  2016-02-26 04:41:43 UTC (rev 
163451)
+++ community-i686/gnome-main-menu.install  2016-02-26 04:41:51 UTC (rev 
163452)
@@ -1,13 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas/

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

2016-02-25 Thread Gaetan Bisson
Date: Friday, February 26, 2016 @ 03:19:35
  Author: bisson
Revision: 260253

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

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

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

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

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

2016-02-25 Thread Gaetan Bisson
Date: Friday, February 26, 2016 @ 03:18:30
  Author: bisson
Revision: 260252

upstream update

Modified:
  postfix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 16:51:26 UTC (rev 260251)
+++ PKGBUILD2016-02-26 02:18:30 UTC (rev 260252)
@@ -4,7 +4,7 @@
 # Maintainer: Gaetan Bisson 
 
 pkgname=postfix
-pkgver=3.0.4
+pkgver=3.1.0
 pkgrel=1
 url='http://www.postfix.org/'
 pkgdesc='Fast, easy to administer, secure mail server'
@@ -15,7 +15,7 @@
 
source=("ftp://ftp.porcupine.org/mirrors/postfix-release/official/${pkgname}-${pkgver}.tar.gz;
 'aliases.patch'
 'service')
-sha1sums=('c9465b42e853453a959fb03f02a1caf9e3276ad7'
+sha1sums=('a79409958c0327dc605473d2522483219464cbd2'
   '5fc3de6c7df1e5851a0a379e825148868808318b'
   'dd12885d367bebaf0fc9d2e9823a7f82086b6ee9')
 


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

2016-02-25 Thread Kyle Keen
Date: Thursday, February 25, 2016 @ 21:44:08
  Author: kkeen
Revision: 163450

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  266 ++---
 1 file changed, 133 insertions(+), 133 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-25 20:43:52 UTC (rev 163449)
+++ PKGBUILD2016-02-25 20:44:08 UTC (rev 163450)
@@ -1,133 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-
-pkgbase=jupyter
-pkgname=(jupyter ipython2-notebook)
-pkgver=4.0.6
-pkgrel=5
-pkgdesc="A language-agnostic web-based interactive shell/notebook server."
-arch=('any')
-url="http://jupyter.org/;
-license=('BSD')
-depends=('ipython' 'jupyter-notebook' 'python-setuptools'
- 'python-jinja' 'python-pyzmq' 'python-tornado' 'python-jsonschema'
- 'python-terminado' 'python-mistune' 'python-pygments')
-makedepends=('python-setuptools' 'python2-setuptools' 'npm' 'git')
-optdepends=('pandoc: notebook conversion'
-'qt5-svg: jupyter-qtconsole'
-'python-pyqt5: jupyter-qtconsole'
-'python-sip: jupyter-qtconsole')
-
-# todo: figure out which deps left with jupyter-notebook
-
-# rebundle all the parts that were split out
-_ipykv=4.2.2  # ipykernel
-_ipywv=4.1.1  # ipywidgets
-_jnbcv=4.1.0  # notebook convert
-_jnbfv=4.0.1  # notebook format
-_jconv=4.1.0  # jupyter console
-_jcliv=4.1.1  # jupyter client
-_qtcv=4.1.1   # qtconsole
-
-source=("jupyter_core.tgz::https://github.com/jupyter/jupyter_core/archive/$pkgver.tar.gz;
-
"ipykernel.tgz::https://github.com/ipython/ipykernel/archive/$_ipykv.tar.gz;
-
"ipywidgets.tgz::https://github.com/ipython/ipywidgets/archive/$_ipywv.tar.gz;
-
"nbconvert.tgz::https://github.com/jupyter/nbconvert/archive/$_jnbcv.tar.gz;
-
"nbformat.tgz::https://github.com/jupyter/nbformat/archive/$_jnbfv.tar.gz;
-
"jupyter_console.tgz::https://github.com/jupyter/jupyter_console/archive/$_jconv.tar.gz;
-
"jupyter_client.tgz::https://github.com/jupyter/jupyter_client/archive/$_jcliv.tar.gz;
-
"qtconsole.tgz::https://github.com/jupyter/qtconsole/archive/$_qtcv.tar.gz;)
-md5sums=('50a73c3a4a8ed047a3674d2b5274cc3b'
- '4ac8ae11f1eef4920bf4a5383e13ab50'
- '099e9b76c52839dc33604aad7a2f1a42'
- '06655576713ba1ff7cece2b92760c187'
- 'ab7172e517c9d561c0c01eef5631b4c8'
- '9c655076262760bdbeeada9d7f586237'
- '8436e4a3266a442f576cdfef39dc0e19'
- '09edb4932e59a07f26ff1fd492c9f740')
-
-# qtconsole deps?
-# python-pyqt5 python-sip python-pygments python-pyzmq
-
-prepare() {
-  cd "$srcdir"
-  cp -r jupyter_core-$pkgver python2-jupyter_core-$pkgver
-  cp -r jupyter_client-$_jcliv python2-jupyter_client-$_jcliv
-  cp -r ipykernel-$_ipykvpython2-ipykernel-$_ipykv
-  cp -r qtconsole-$_qtcv python2-qtconsole-$_qtcv
-}
-
-build() {
-  cd "$srcdir/ipywidgets-$_ipywv"
-  # needs node, downloads a lot of stuff
-  python3 setup.py build
-}
-
-package_jupyter() {
-  cd "$srcdir/jupyter_core-$pkgver"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/ipykernel-$_ipykv"
-  # this is in the ipython package
-  #python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/ipywidgets-$_ipywv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/nbconvert-$_jnbcv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/nbformat-$_jnbfv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/jupyter_console-$_jconv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/jupyter_client-$_jcliv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd "$srcdir/qtconsole-$_qtcv"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-  cd examples
-  # FS#47046 fix .desktop icon
-  sed -i 
's|^Icon=.*$|Icon=/usr/lib/python3.5/site-packages/qtconsole/resources/icon/JupyterConsole.svg|'
 \
-jupyter-qtconsole.desktop
-  install -Dm644 jupyter-qtconsole.desktop \
-"$pkgdir/usr/share/applications/jupyter-qtconsole.desktop"
-
-  cd "$srcdir"
-  install -Dm644 "jupyter_core-$pkgver/COPYING.md" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_ipython2-notebook() {
-  pkgdesc="An enhanced Interactive Python2 shell."
-  depends=('ipython2' 'jupyter' 'python2-pyzmq')
-  optdepends=('python2-pyqt5: jupyter-qtconsole-py2'
-  'qt5-svg: jupyter-qtconsole-py2'
-  'python2-sip: jupyter-qtconsole-py2')
-
-  cd "$srcdir/python2-ipykernel-$_ipykv"
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-
-  cd 

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

2016-02-25 Thread Kyle Keen
Date: Thursday, February 25, 2016 @ 21:43:52
  Author: kkeen
Revision: 163449

upgpkg: jupyter 4.0.6-6

Modified:
  jupyter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 20:35:27 UTC (rev 163448)
+++ PKGBUILD2016-02-25 20:43:52 UTC (rev 163449)
@@ -4,14 +4,14 @@
 pkgbase=jupyter
 pkgname=(jupyter ipython2-notebook)
 pkgver=4.0.6
-pkgrel=5
+pkgrel=6
 pkgdesc="A language-agnostic web-based interactive shell/notebook server."
 arch=('any')
 url="http://jupyter.org/;
 license=('BSD')
-depends=('ipython' 'jupyter-notebook' 'python-setuptools'
- 'python-jinja' 'python-pyzmq' 'python-tornado' 'python-jsonschema'
- 'python-terminado' 'python-mistune' 'python-pygments')
+depends=('ipython' 'python-setuptools'
+ 'python-jinja' 'python-pyzmq' 'python-jsonschema'
+ 'python-mistune' 'python-pygments')
 makedepends=('python-setuptools' 'python2-setuptools' 'npm' 'git')
 optdepends=('pandoc: notebook conversion'
 'qt5-svg: jupyter-qtconsole'
@@ -21,7 +21,7 @@
 # todo: figure out which deps left with jupyter-notebook
 
 # rebundle all the parts that were split out
-_ipykv=4.2.2  # ipykernel
+_ipykv=4.3.0  # ipykernel
 _ipywv=4.1.1  # ipywidgets
 _jnbcv=4.1.0  # notebook convert
 _jnbfv=4.0.1  # notebook format
@@ -29,16 +29,16 @@
 _jcliv=4.1.1  # jupyter client
 _qtcv=4.1.1   # qtconsole
 
-source=("jupyter_core.tgz::https://github.com/jupyter/jupyter_core/archive/$pkgver.tar.gz;
-
"ipykernel.tgz::https://github.com/ipython/ipykernel/archive/$_ipykv.tar.gz;
-
"ipywidgets.tgz::https://github.com/ipython/ipywidgets/archive/$_ipywv.tar.gz;
-
"nbconvert.tgz::https://github.com/jupyter/nbconvert/archive/$_jnbcv.tar.gz;
-
"nbformat.tgz::https://github.com/jupyter/nbformat/archive/$_jnbfv.tar.gz;
-
"jupyter_console.tgz::https://github.com/jupyter/jupyter_console/archive/$_jconv.tar.gz;
-
"jupyter_client.tgz::https://github.com/jupyter/jupyter_client/archive/$_jcliv.tar.gz;
-
"qtconsole.tgz::https://github.com/jupyter/qtconsole/archive/$_qtcv.tar.gz;)
+source=("jupyter_core-$pkgver.tgz::https://github.com/jupyter/jupyter_core/archive/$pkgver.tar.gz;
+
"ipykernel-$_ipykv.tgz::https://github.com/ipython/ipykernel/archive/$_ipykv.tar.gz;
+
"ipywidgets-$_ipywv.tgz::https://github.com/ipython/ipywidgets/archive/$_ipywv.tar.gz;
+
"nbconvert-$_jnbcv.tgz::https://github.com/jupyter/nbconvert/archive/$_jnbcv.tar.gz;
+
"nbformat-$_jnbfv.tgz::https://github.com/jupyter/nbformat/archive/$_jnbfv.tar.gz;
+
"jupyter_console-$_jconv.tgz::https://github.com/jupyter/jupyter_console/archive/$_jconv.tar.gz;
+
"jupyter_client-$_jcliv.tgz::https://github.com/jupyter/jupyter_client/archive/$_jcliv.tar.gz;
+
"qtconsole-$_qtcv.tgz::https://github.com/jupyter/qtconsole/archive/$_qtcv.tar.gz;)
 md5sums=('50a73c3a4a8ed047a3674d2b5274cc3b'
- '4ac8ae11f1eef4920bf4a5383e13ab50'
+ '5961164fe908faf798232a265ed48c73'
  '099e9b76c52839dc33604aad7a2f1a42'
  '06655576713ba1ff7cece2b92760c187'
  'ab7172e517c9d561c0c01eef5631b4c8'
@@ -101,7 +101,7 @@
 
 package_ipython2-notebook() {
   pkgdesc="An enhanced Interactive Python2 shell."
-  depends=('ipython2' 'jupyter' 'python2-pyzmq')
+  depends=('ipython2' 'python2-pyzmq')
   optdepends=('python2-pyqt5: jupyter-qtconsole-py2'
   'qt5-svg: jupyter-qtconsole-py2'
   'python2-sip: jupyter-qtconsole-py2')


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

2016-02-25 Thread Kyle Keen
Date: Thursday, February 25, 2016 @ 21:35:16
  Author: kkeen
Revision: 163447

upgpkg: jupyter-notebook 4.1.0-2  FS#48219

Modified:
  jupyter-notebook/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 20:21:10 UTC (rev 163446)
+++ PKGBUILD2016-02-25 20:35:16 UTC (rev 163447)
@@ -3,12 +3,12 @@
 
 pkgname=jupyter-notebook
 pkgver=4.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc="The language-agnostic HTML notebook application for Project Jupyter"
 arch=('any')
 url="https://github.com/jupyter/notebook;
 license=('BSD')
-depends=('python-setuptools' 'python-jinja' 'python-tornado' 
'python-terminado')
+depends=('jupyter' 'python-setuptools' 'python-jinja' 'python-tornado' 
'python-terminado')
 makedepends=('python-setuptools' 'npm' 'git')
 optdepends=('mathjax: latex equation rendering'
 'pandoc: notebook export')


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

2016-02-25 Thread Kyle Keen
Date: Thursday, February 25, 2016 @ 21:35:27
  Author: kkeen
Revision: 163448

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-25 20:35:16 UTC (rev 163447)
+++ PKGBUILD2016-02-25 20:35:27 UTC (rev 163448)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-
-pkgname=jupyter-notebook
-pkgver=4.1.0
-pkgrel=1
-pkgdesc="The language-agnostic HTML notebook application for Project Jupyter"
-arch=('any')
-url="https://github.com/jupyter/notebook;
-license=('BSD')
-depends=('python-setuptools' 'python-jinja' 'python-tornado' 
'python-terminado')
-makedepends=('python-setuptools' 'npm' 'git')
-optdepends=('mathjax: latex equation rendering'
-'pandoc: notebook export')
-md5sums=('763ab54b3fc69f6225b9659b6994e756')
-
-# depends are going to be a little weird
-# removed: ipython python-pyzmq python-jsonschema python-mistune 
python-pygments
-
-source=("https://github.com/jupyter/notebook/archive/$pkgver.tar.gz;)
-
-build() {
-  cd "$srcdir/notebook-$pkgver"
-
-  # FS45999 disable bundled mathjax
-  sed -i 's/^.*MathJax.*$//' bower.json 
-  #sed -i '/Trim mathjax/,/^static_data.append/d' setupbase.py
-  sed -i 's/mj(/#mj(/' setupbase.py
-
-  # needs node, downloads a lot of stuff
-  python3 setup.py build
-}
-
-package() {
-  cd "$srcdir/notebook-$pkgver"
-
-  # needs node
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-  # FS45999 use system mathjax
-  ln -s /usr/share/mathjax \
-  "$pkgdir/usr/lib/python3.5/site-packages/notebook/static/components/MathJax"
-
-  install -Dm644 COPYING.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-

Copied: jupyter-notebook/repos/community-any/PKGBUILD (from rev 163447, 
jupyter-notebook/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-25 20:35:27 UTC (rev 163448)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Kyle Keen 
+
+pkgname=jupyter-notebook
+pkgver=4.1.0
+pkgrel=2
+pkgdesc="The language-agnostic HTML notebook application for Project Jupyter"
+arch=('any')
+url="https://github.com/jupyter/notebook;
+license=('BSD')
+depends=('jupyter' 'python-setuptools' 'python-jinja' 'python-tornado' 
'python-terminado')
+makedepends=('python-setuptools' 'npm' 'git')
+optdepends=('mathjax: latex equation rendering'
+'pandoc: notebook export')
+md5sums=('763ab54b3fc69f6225b9659b6994e756')
+
+# depends are going to be a little weird
+# removed: ipython python-pyzmq python-jsonschema python-mistune 
python-pygments
+
+source=("https://github.com/jupyter/notebook/archive/$pkgver.tar.gz;)
+
+build() {
+  cd "$srcdir/notebook-$pkgver"
+
+  # FS45999 disable bundled mathjax
+  sed -i 's/^.*MathJax.*$//' bower.json 
+  #sed -i '/Trim mathjax/,/^static_data.append/d' setupbase.py
+  sed -i 's/mj(/#mj(/' setupbase.py
+
+  # needs node, downloads a lot of stuff
+  python3 setup.py build
+}
+
+package() {
+  cd "$srcdir/notebook-$pkgver"
+
+  # needs node
+  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
+  # FS45999 use system mathjax
+  ln -s /usr/share/mathjax \
+  "$pkgdir/usr/lib/python3.5/site-packages/notebook/static/components/MathJax"
+
+  install -Dm644 COPYING.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+


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

2016-02-25 Thread Kyle Keen
Date: Thursday, February 25, 2016 @ 21:20:55
  Author: kkeen
Revision: 163445

upgpkg: ipython 4.1.1-2

Modified:
  ipython/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 20:05:38 UTC (rev 163444)
+++ PKGBUILD2016-02-25 20:20:55 UTC (rev 163445)
@@ -8,7 +8,7 @@
 pkgbase=ipython
 pkgname=(ipython ipython2)
 pkgver=4.1.1
-pkgrel=1
+pkgrel=2
 pkgdesc="An enhanced Interactive Python shell."
 arch=('any')
 url="http://ipython.org;
@@ -20,7 +20,7 @@
 
 # some of these will update rapidly, others never
 # so _vars will be phased in as new updates are released
-_ipykv=4.2.2
+_ipykv=4.3.0
 _traitv=4.1.0
 
 
source=("https://pypi.python.org/packages/source/i/ipython/$pkgbase-$pkgver.tar.gz;
@@ -31,7 +31,7 @@
 
"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=('3da622447b3b7ca7d41c868c80bb8b0e'
- 'e920441d231e6b659622033849fb3218'
+ '667b72ede386fcc767108902365cb95a'
  '2ebf5e11a19f82f25395b4a793097080'
  '9a8afbe0978adbcbfcb3b35b2d015a56'
  '25337740507cb855ad58bfcf60f7710e'


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

2016-02-25 Thread Kyle Keen
Date: Thursday, February 25, 2016 @ 21:21:10
  Author: kkeen
Revision: 163446

archrelease: copy trunk to community-any

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

-+
 PKGBUILD|  308 +++---
 ipython.install |   24 ++--
 2 files changed, 166 insertions(+), 166 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-25 20:20:55 UTC (rev 163445)
+++ PKGBUILD2016-02-25 20:21:10 UTC (rev 163446)
@@ -1,154 +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=4.1.1
-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')
-makedepends=('python-setuptools' 'python2-setuptools')
-optdepends=("python-nose: for IPython's test suite")
-install=ipython.install
-
-# some of these will update rapidly, others never
-# so _vars will be phased in as new updates are released
-_ipykv=4.2.2
-_traitv=4.1.0
-
-source=("https://pypi.python.org/packages/source/i/ipython/$pkgbase-$pkgver.tar.gz;
-
"https://pypi.python.org/packages/source/i/ipykernel/ipykernel-$_ipykv.tar.gz;
-
"https://pypi.python.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://pypi.python.org/packages/source/p/pickleshare/pickleshare-0.5.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=('3da622447b3b7ca7d41c868c80bb8b0e'
- 'e920441d231e6b659622033849fb3218'
- '2ebf5e11a19f82f25395b4a793097080'
- '9a8afbe0978adbcbfcb3b35b2d015a56'
- '25337740507cb855ad58bfcf60f7710e'
- 'f9c1fab00fd981be588fc32759f474e3'
- '2901d65f1b1fe354e72850085cd1c072')
-
-# With 4.0 many previously bundled external libraries are no longer bundled
-# 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)
-
-# confirm that an update does not break sage?
-
-prepare() {
-  cd "$srcdir"
-  cp -r ipython-$pkgveripython2-$pkgver
-  cp -r ipykernel-$_ipykv  python2-ipykernel-$_ipykv
-  cp -r ipython_genutils-0.1.0 ipython2_genutils-0.1.0
-  cp -r pickleshare-0.5python2-pickleshare-0.5
-  cp -r traitlets-$_traitv python2-traitlets-$_traitv
-  cp -r simplegeneric-0.8.1python2-simplegeneric-0.8.1
-}
-
-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-0.5"
-  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/ipykernel-$_ipykv"
-  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 

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

2016-02-25 Thread Jonathan Steel
Date: Thursday, February 25, 2016 @ 21:05:38
  Author: jsteel
Revision: 163444

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

Added:
  monitoring-plugins/repos/community-i686/PKGBUILD
(from rev 163443, monitoring-plugins/trunk/PKGBUILD)
  monitoring-plugins/repos/community-x86_64/PKGBUILD
(from rev 163443, monitoring-plugins/trunk/PKGBUILD)
Deleted:
  monitoring-plugins/repos/community-i686/PKGBUILD
  monitoring-plugins/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-25 20:05:01 UTC (rev 163443)
+++ community-i686/PKGBUILD 2016-02-25 20:05:38 UTC (rev 163444)
@@ -1,44 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Idares 
-
-pkgname=monitoring-plugins
-pkgver=2.1.2
-pkgrel=1
-pkgdesc="Plugins for Icinga, Naemon, Nagios, Shinken, Sensu and other 
monitoring applications"
-arch=('i686' 'x86_64')
-url="http://www.monitoring-plugins.org;
-license=('GPL3')
-makedepends=('net-snmp' 'postgresql-libs' 'libdbi' 'libmariadbclient'
-  'procps-ng' 'iputils' 'fping' 'dnsutils' 'rpcbind' 'smbclient' 'openssh'
-  'inetutils' 'postfix' 'perl-net-snmp')
-optdepends=('net-snmp: for SNMP checking'
-  'postgresql-libs: for check_pgsql'
-  'libmariadbclient: for check_mysql_query and check_mysql'
-  'libdbi: for check_dbi'
-  'libldap: for check_ldap')
-provides=('nagios-plugins')
-conflicts=('nagios-plugins')
-replaces=('nagios-plugins')
-source=(https://www.monitoring-plugins.org/download/$pkgname-$pkgver.tar.gz)
-md5sums=('4a210f7db012571ea58e214cef74f612')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --libexecdir=/usr/lib/monitoring-plugins
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 LEGAL "$pkgdir"/usr/share/licenses/$pkgname/LEGAL
-
-  for i in ABOUT-NLS ACKNOWLEDGEMENTS AUTHORS CODING ChangeLog \
-FAQ NEWS README REQUIREMENTS SUPPORT THANKS; do
-install -Dm644 $i "$pkgdir"/usr/share/doc/$pkgname/$i
-  done
-}

Copied: monitoring-plugins/repos/community-i686/PKGBUILD (from rev 163443, 
monitoring-plugins/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-25 20:05:38 UTC (rev 163444)
@@ -0,0 +1,46 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Idares 
+
+pkgname=monitoring-plugins
+pkgver=2.1.2
+pkgrel=2
+pkgdesc="Plugins for Icinga, Naemon, Nagios, Shinken, Sensu and other 
monitoring applications"
+arch=('i686' 'x86_64')
+url="http://www.monitoring-plugins.org;
+license=('GPL3')
+makedepends=('net-snmp' 'postgresql-libs' 'libdbi' 'libmariadbclient'
+  'procps-ng' 'iputils' 'fping' 'dnsutils' 'rpcbind' 'smbclient' 'openssh'
+  'inetutils' 'postfix' 'perl-net-snmp')
+optdepends=('net-snmp: for SNMP checking'
+  'postgresql-libs: for check_pgsql'
+  'libmariadbclient: for check_mysql_query and check_mysql'
+  'libdbi: for check_dbi'
+  'libldap: for check_ldap')
+provides=('nagios-plugins')
+conflicts=('nagios-plugins')
+replaces=('nagios-plugins')
+source=(https://www.monitoring-plugins.org/download/$pkgname-$pkgver.tar.gz)
+md5sums=('4a210f7db012571ea58e214cef74f612')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --libexecdir=/usr/lib/monitoring-plugins \
+--with-ping-command='/usr/bin/ping -4 -n -U -w %d -c %d %s' \
+--with-ping6-command='/usr/bin/ping -6 -n -U -w %d -c %d %s'
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 LEGAL "$pkgdir"/usr/share/licenses/$pkgname/LEGAL
+
+  for i in ABOUT-NLS ACKNOWLEDGEMENTS AUTHORS CODING ChangeLog \
+FAQ NEWS README REQUIREMENTS SUPPORT THANKS; do
+install -Dm644 $i "$pkgdir"/usr/share/doc/$pkgname/$i
+  done
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-25 20:05:01 UTC (rev 163443)
+++ community-x86_64/PKGBUILD   2016-02-25 20:05:38 UTC (rev 163444)
@@ -1,44 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Idares 
-
-pkgname=monitoring-plugins
-pkgver=2.1.2
-pkgrel=1
-pkgdesc="Plugins for Icinga, Naemon, Nagios, Shinken, Sensu and other 
monitoring applications"
-arch=('i686' 'x86_64')
-url="http://www.monitoring-plugins.org;
-license=('GPL3')
-makedepends=('net-snmp' 'postgresql-libs' 'libdbi' 'libmariadbclient'
-  'procps-ng' 'iputils' 'fping' 'dnsutils' 'rpcbind' 'smbclient' 'openssh'
-  'inetutils' 'postfix' 'perl-net-snmp')
-optdepends=('net-snmp: for SNMP checking'
-  'postgresql-libs: for check_pgsql'
-  

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

2016-02-25 Thread Jonathan Steel
Date: Thursday, February 25, 2016 @ 21:05:01
  Author: jsteel
Revision: 163443

upgpkg: monitoring-plugins 2.1.2-2

FS#48338

Modified:
  monitoring-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 19:25:01 UTC (rev 163442)
+++ PKGBUILD2016-02-25 20:05:01 UTC (rev 163443)
@@ -3,7 +3,7 @@
 
 pkgname=monitoring-plugins
 pkgver=2.1.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Plugins for Icinga, Naemon, Nagios, Shinken, Sensu and other 
monitoring applications"
 arch=('i686' 'x86_64')
 url="http://www.monitoring-plugins.org;
@@ -25,7 +25,9 @@
 build() {
   cd $pkgname-$pkgver
 
-  ./configure --prefix=/usr --libexecdir=/usr/lib/monitoring-plugins
+  ./configure --prefix=/usr --libexecdir=/usr/lib/monitoring-plugins \
+--with-ping-command='/usr/bin/ping -4 -n -U -w %d -c %d %s' \
+--with-ping6-command='/usr/bin/ping -6 -n -U -w %d -c %d %s'
 
   make
 }


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

2016-02-25 Thread Kyle Keen
Date: Thursday, February 25, 2016 @ 19:36:51
  Author: kkeen
Revision: 163441

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-25 18:36:32 UTC (rev 163440)
+++ community-i686/PKGBUILD 2016-02-25 18:36:51 UTC (rev 163441)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Kevin Piche 
-# Contributor: Roberto Carvajal 
-
-pkgname=multitail
-pkgver=6.4.1
-pkgrel=2
-pkgdesc="Lets you view one or multiple files like the original tail program"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://www.vanheusden.com/multitail;
-depends=('ncurses')
-backup=('etc/multitail.conf')
-source=("http://www.vanheusden.com/multitail/${pkgname}-${pkgver}.tgz;)
-md5sums=('e82a32f090d61665524b1e866d7d57ca')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  sed -i 's|ncursesw/panel.h|panel.h|' mt.h
-  sed -i 's|ncursesw/ncurses.h|ncurses.h|' mt.h
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  install -D -m 755 multitail  "$pkgdir/usr/bin/multitail"
-  install -D -m 644 multitail.1"$pkgdir/usr/share/man/man1/multitail.1"
-  install -D -m 644 multitail.conf "$pkgdir/etc/multitail.conf"
-}
-# vim: ts=2 sw=2 et ft=sh

Copied: multitail/repos/community-i686/PKGBUILD (from rev 163440, 
multitail/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-25 18:36:51 UTC (rev 163441)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Kevin Piche 
+# Contributor: Roberto Carvajal 
+
+pkgname=multitail
+pkgver=6.4.2
+pkgrel=1
+pkgdesc="Lets you view one or multiple files like the original tail program"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.vanheusden.com/multitail;
+depends=('ncurses')
+backup=('etc/multitail.conf')
+source=("http://www.vanheusden.com/multitail/${pkgname}-${pkgver}.tgz;)
+md5sums=('e82a32f090d61665524b1e866d7d57ca')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  sed -i 's|ncursesw/panel.h|panel.h|' mt.h
+  sed -i 's|ncursesw/ncurses.h|ncurses.h|' mt.h
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  install -D -m 755 multitail  "$pkgdir/usr/bin/multitail"
+  install -D -m 644 multitail.1"$pkgdir/usr/share/man/man1/multitail.1"
+  install -D -m 644 multitail.conf "$pkgdir/etc/multitail.conf"
+}
+# vim: ts=2 sw=2 et ft=sh
+md5sums=('a0959f7b2385061080712afd8ae6e33d')

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-25 18:36:32 UTC (rev 163440)
+++ community-x86_64/PKGBUILD   2016-02-25 18:36:51 UTC (rev 163441)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Kevin Piche 
-# Contributor: Roberto Carvajal 
-
-pkgname=multitail
-pkgver=6.4.1
-pkgrel=2
-pkgdesc="Lets you view one or multiple files like the original tail program"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://www.vanheusden.com/multitail;
-depends=('ncurses')
-backup=('etc/multitail.conf')
-source=("http://www.vanheusden.com/multitail/${pkgname}-${pkgver}.tgz;)
-md5sums=('e82a32f090d61665524b1e866d7d57ca')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  sed -i 's|ncursesw/panel.h|panel.h|' mt.h
-  sed -i 's|ncursesw/ncurses.h|ncurses.h|' mt.h
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  install -D -m 755 multitail  "$pkgdir/usr/bin/multitail"
-  install -D -m 644 multitail.1"$pkgdir/usr/share/man/man1/multitail.1"
-  install -D -m 644 multitail.conf "$pkgdir/etc/multitail.conf"
-}
-# vim: ts=2 sw=2 et ft=sh

Copied: multitail/repos/community-x86_64/PKGBUILD (from rev 163440, 
multitail/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-25 18:36:51 UTC (rev 163441)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Kevin Piche 
+# Contributor: Roberto Carvajal 
+
+pkgname=multitail

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

2016-02-25 Thread Kyle Keen
Date: Thursday, February 25, 2016 @ 19:36:32
  Author: kkeen
Revision: 163440

upgpkg: multitail 6.4.2-1

Modified:
  multitail/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 18:35:36 UTC (rev 163439)
+++ PKGBUILD2016-02-25 18:36:32 UTC (rev 163440)
@@ -4,8 +4,8 @@
 # Contributor: Roberto Carvajal 
 
 pkgname=multitail
-pkgver=6.4.1
-pkgrel=2
+pkgver=6.4.2
+pkgrel=1
 pkgdesc="Lets you view one or multiple files like the original tail program"
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -29,3 +29,4 @@
   install -D -m 644 multitail.conf "$pkgdir/etc/multitail.conf"
 }
 # vim: ts=2 sw=2 et ft=sh
+md5sums=('a0959f7b2385061080712afd8ae6e33d')


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

2016-02-25 Thread Florian Pritz
Date: Thursday, February 25, 2016 @ 19:35:31
  Author: bluewind
Revision: 163438

upgpkg: siege 3.1.4-1

upstream update

Modified:
  siege/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 18:04:12 UTC (rev 163437)
+++ PKGBUILD2016-02-25 18:35:31 UTC (rev 163438)
@@ -3,7 +3,7 @@
 # Contributor: Sven Kauber 
 
 pkgname=siege
-pkgver=3.1.1
+pkgver=3.1.4
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -28,4 +28,4 @@
   sed -i 's/^# file =$/file = \/etc\/urls.txt/' "$pkgdir/etc/siegerc"
 }
 
-md5sums=('800b34cf0dbeda177196583588a2e731')
+md5sums=('a893b92a453e1c1d596314aa951981f4')


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

2016-02-25 Thread Florian Pritz
Date: Thursday, February 25, 2016 @ 19:35:36
  Author: bluewind
Revision: 163439

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-25 18:35:31 UTC (rev 163438)
+++ community-i686/PKGBUILD 2016-02-25 18:35:36 UTC (rev 163439)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz 
-# Contributor: Sven Kauber 
-
-pkgname=siege
-pkgver=3.1.1
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL')
-pkgdesc="An http regression testing and benchmarking utility"
-url="http://www.joedog.org/JoeDog/Siege;
-depends=('openssl')
-source=("http://download.joedog.org/siege/siege-${pkgver}.tar.gz;)
-backup=(etc/siegerc etc/urls.txt)
-
-build() {
-  cd "${srcdir}/$pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd "${srcdir}/$pkgname-$pkgver"
-
-  install -d -m755 "$pkgdir/etc"
-  install -d -m755 "$pkgdir/usr/share"
-  make DESTDIR="$pkgdir" install
-  sed -i 's/^# file =$/file = \/etc\/urls.txt/' "$pkgdir/etc/siegerc"
-}
-
-md5sums=('800b34cf0dbeda177196583588a2e731')

Copied: siege/repos/community-i686/PKGBUILD (from rev 163438, 
siege/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-25 18:35:36 UTC (rev 163439)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Florian Pritz 
+# Contributor: Sven Kauber 
+
+pkgname=siege
+pkgver=3.1.4
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('GPL')
+pkgdesc="An http regression testing and benchmarking utility"
+url="http://www.joedog.org/JoeDog/Siege;
+depends=('openssl')
+source=("http://download.joedog.org/siege/siege-${pkgver}.tar.gz;)
+backup=(etc/siegerc etc/urls.txt)
+
+build() {
+  cd "${srcdir}/$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd "${srcdir}/$pkgname-$pkgver"
+
+  install -d -m755 "$pkgdir/etc"
+  install -d -m755 "$pkgdir/usr/share"
+  make DESTDIR="$pkgdir" install
+  sed -i 's/^# file =$/file = \/etc\/urls.txt/' "$pkgdir/etc/siegerc"
+}
+
+md5sums=('a893b92a453e1c1d596314aa951981f4')

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-25 18:35:31 UTC (rev 163438)
+++ community-x86_64/PKGBUILD   2016-02-25 18:35:36 UTC (rev 163439)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz 
-# Contributor: Sven Kauber 
-
-pkgname=siege
-pkgver=3.1.1
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL')
-pkgdesc="An http regression testing and benchmarking utility"
-url="http://www.joedog.org/JoeDog/Siege;
-depends=('openssl')
-source=("http://download.joedog.org/siege/siege-${pkgver}.tar.gz;)
-backup=(etc/siegerc etc/urls.txt)
-
-build() {
-  cd "${srcdir}/$pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd "${srcdir}/$pkgname-$pkgver"
-
-  install -d -m755 "$pkgdir/etc"
-  install -d -m755 "$pkgdir/usr/share"
-  make DESTDIR="$pkgdir" install
-  sed -i 's/^# file =$/file = \/etc\/urls.txt/' "$pkgdir/etc/siegerc"
-}
-
-md5sums=('800b34cf0dbeda177196583588a2e731')

Copied: siege/repos/community-x86_64/PKGBUILD (from rev 163438, 
siege/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-25 18:35:36 UTC (rev 163439)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Florian Pritz 
+# Contributor: Sven Kauber 
+
+pkgname=siege
+pkgver=3.1.4
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('GPL')
+pkgdesc="An http regression testing and benchmarking utility"
+url="http://www.joedog.org/JoeDog/Siege;
+depends=('openssl')
+source=("http://download.joedog.org/siege/siege-${pkgver}.tar.gz;)
+backup=(etc/siegerc etc/urls.txt)
+
+build() {
+  cd "${srcdir}/$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd "${srcdir}/$pkgname-$pkgver"
+
+  install -d -m755 "$pkgdir/etc"
+  install -d -m755 "$pkgdir/usr/share"
+  make DESTDIR="$pkgdir" install
+  sed -i 's/^# file 

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

2016-02-25 Thread Anatol Pomozov
Date: Thursday, February 25, 2016 @ 19:04:12
  Author: anatolik
Revision: 163437

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

Added:
  avr-gcc/repos/community-testing-i686/
  avr-gcc/repos/community-testing-i686/PKGBUILD
(from rev 163436, avr-gcc/trunk/PKGBUILD)
  avr-gcc/repos/community-testing-i686/fix_instructions_out_of_range.patch
(from rev 163436, avr-gcc/trunk/fix_instructions_out_of_range.patch)
  avr-gcc/repos/community-testing-x86_64/
  avr-gcc/repos/community-testing-x86_64/PKGBUILD
(from rev 163436, avr-gcc/trunk/PKGBUILD)
  avr-gcc/repos/community-testing-x86_64/fix_instructions_out_of_range.patch
(from rev 163436, avr-gcc/trunk/fix_instructions_out_of_range.patch)

--+
 community-testing-i686/PKGBUILD  |  112 ++
 community-testing-i686/fix_instructions_out_of_range.patch   |   80 +++
 community-testing-x86_64/PKGBUILD|  112 ++
 community-testing-x86_64/fix_instructions_out_of_range.patch |   80 +++
 4 files changed, 384 insertions(+)

Copied: avr-gcc/repos/community-testing-i686/PKGBUILD (from rev 163436, 
avr-gcc/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-02-25 18:04:12 UTC (rev 163437)
@@ -0,0 +1,112 @@
+# $Id$
+# Maintainer: schuay 
+# Contributor: Brad Fanella 
+# Contributor: Corrado Primier 
+# Contributor: danst0 
+
+# Build order: avr-binutils -> avr-gcc -> avr-libc
+
+pkgname=avr-gcc
+pkgver=5.3.0
+pkgrel=2
+_snapshot=5-20160223
+_islver=0.15
+pkgdesc='The GNU AVR Compiler Collection'
+arch=(i686 x86_64)
+license=(GPL LGPL FDL custom)
+url='http://gcc.gnu.org/'
+depends=(avr-binutils gcc-libs libmpc)
+optdepends=('avr-libc: Standard C library for Atmel AVR development')
+options=(!emptydirs !strip)
+source=(#ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2
+
ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2
+http://isl.gforge.inria.fr/isl-${_islver}.tar.bz2
+fix_instructions_out_of_range.patch
+   )
+sha1sums=('13b7c4de9da654ef968e658c77e32b265aa4eb5b'
+  '1e30e09a5fc2c9e1aa4bdb8c9c21fdff20a7cd12'
+  'e1f8295d2c0507cf798a641877fdce7a69681739')
+
+if [ -n "${_snapshot}" ]; then
+  _basedir=gcc-${_snapshot}
+else
+  _basedir=gcc-${pkgver}
+fi
+
+prepare() {
+  cd $_basedir
+  patch -p1 < ../fix_instructions_out_of_range.patch
+}
+
+build() {
+cd ${srcdir}/${_basedir} 
+
+# link isl for in-tree build
+ln -s ../isl-${_islver} isl
+
+# https://bugs.archlinux.org/task/34629
+# hack! - some configure tests for header files using "$CPP $CPPFLAGS"
+sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" {libiberty,gcc}/configure
+
+echo ${pkgver} > gcc/BASE-VER
+
+cd ${srcdir}
+mkdir gcc-build && cd gcc-build
+
+export CFLAGS_FOR_TARGET='-O2 -pipe'
+export CXXFLAGS_FOR_TARGET='-O2 -pipe'
+
+# --disable-linker-build-id: https://bugs.archlinux.org/task/34902
+${srcdir}/${_basedir}/configure \
+--disable-install-libiberty \
+--disable-libssp \
+--disable-libstdcxx-pch \
+--disable-libunwind-exceptions \
+--disable-linker-build-id \
+--disable-nls \
+--disable-werror \
+--enable-__cxa_atexit \
+--enable-checking=release \
+--enable-clocale=gnu \
+--enable-gnu-unique-object \
+--enable-gold \
+--enable-languages=c,c++ \
+--enable-ld=default \
+--enable-lto \
+--enable-plugin \
+--enable-shared \
+--infodir=/usr/share/info \
+--libdir=/usr/lib \
+--libexecdir=/usr/lib \
+--mandir=/usr/share/man \
+--prefix=/usr \
+--target=avr \
+--with-as=/usr/bin/avr-as \
+--with-gnu-as \
+--with-gnu-ld \
+--with-ld=/usr/bin/avr-ld \
+--with-plugin-ld=ld.gold \
+--with-system-zlib \
+--with-isl \
+--enable-gnu-indirect-function
+
+make
+}
+
+package() {
+cd ${srcdir}/gcc-build
+
+make -j1 DESTDIR=${pkgdir} install
+
+# Strip debug symbols from libraries; without this, the package size 
balloons to ~500MB.
+find ${pkgdir}/usr/lib -type f -name "*.a" \
+-exec /usr/bin/avr-strip --strip-debug '{}' \;
+
+# Install Runtime Library Exception
+install -Dm644 ${srcdir}/${_basedir}/COPYING.RUNTIME \
+

[arch-commits] Commit in avr-gcc/trunk (PKGBUILD fix_instructions_out_of_range.patch)

2016-02-25 Thread Anatol Pomozov
Date: Thursday, February 25, 2016 @ 19:03:40
  Author: anatolik
Revision: 163436

FS#47959 Pull upstream patch that fixes 'invalid asm code' issue

Added:
  avr-gcc/trunk/fix_instructions_out_of_range.patch
Modified:
  avr-gcc/trunk/PKGBUILD

-+
 PKGBUILD|   19 +---
 fix_instructions_out_of_range.patch |   80 ++
 2 files changed, 93 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 17:01:43 UTC (rev 163435)
+++ PKGBUILD2016-02-25 18:03:40 UTC (rev 163436)
@@ -8,8 +8,8 @@
 
 pkgname=avr-gcc
 pkgver=5.3.0
-pkgrel=1
-#_snapshot=5-20150519
+pkgrel=2
+_snapshot=5-20160223
 _islver=0.15
 pkgdesc='The GNU AVR Compiler Collection'
 arch=(i686 x86_64)
@@ -18,12 +18,14 @@
 depends=(avr-binutils gcc-libs libmpc)
 optdepends=('avr-libc: Standard C library for Atmel AVR development')
 options=(!emptydirs !strip)
-source=(ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2
-
#ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2
+source=(#ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2
+
ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2
 http://isl.gforge.inria.fr/isl-${_islver}.tar.bz2
+fix_instructions_out_of_range.patch
)
-sha1sums=('0612270b103941da08376df4d0ef4e5662a2e9eb'
-  '1e30e09a5fc2c9e1aa4bdb8c9c21fdff20a7cd12')
+sha1sums=('13b7c4de9da654ef968e658c77e32b265aa4eb5b'
+  '1e30e09a5fc2c9e1aa4bdb8c9c21fdff20a7cd12'
+  'e1f8295d2c0507cf798a641877fdce7a69681739')
 
 if [ -n "${_snapshot}" ]; then
   _basedir=gcc-${_snapshot}
@@ -31,6 +33,11 @@
   _basedir=gcc-${pkgver}
 fi
 
+prepare() {
+  cd $_basedir
+  patch -p1 < ../fix_instructions_out_of_range.patch
+}
+
 build() {
 cd ${srcdir}/${_basedir} 
 

Added: fix_instructions_out_of_range.patch
===
--- fix_instructions_out_of_range.patch (rev 0)
+++ fix_instructions_out_of_range.patch 2016-02-25 18:03:40 UTC (rev 163436)
@@ -0,0 +1,80 @@
+commit 8c1cab24c7ef8ec53c374bcfe2286250155f1db3
+Author: denisc 
+Date:   Wed Oct 28 17:35:27 2015 +
+
+gcc/ChangeLog
+
+   PR target/67839
+   * config/avr/predicates.md (low_io_address_operand): Don't
+   consider MODE when computing upper bound.
+   (io_address_operand): Likewise.
+
+gcc/testsuite/ChangeLog
+
+   PR target/67839
+   * gcc.target/avr/pr67839.c: New test.
+
+
+
+git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@229495 
138bc75d-0d04-0410-961f-82ee72b054a4
+
+ 2015-10-28  Jan Hubicka  
+ 
+   * fold-const.c (operand_equal_p): Do not verify that types are
+diff --git a/gcc/config/avr/predicates.md b/gcc/config/avr/predicates.md
+index 2d12bc6..622bc0b 100644
+--- a/gcc/config/avr/predicates.md
 b/gcc/config/avr/predicates.md
+@@ -46,7 +46,7 @@
+ (define_special_predicate "low_io_address_operand"
+   (ior (and (match_code "const_int")
+   (match_test "IN_RANGE (INTVAL (op) - avr_arch->sfr_offset,
+- 0, 0x20 - GET_MODE_SIZE (mode))"))
++ 0, 0x1F)"))
+(and (match_code "symbol_ref")
+   (match_test "SYMBOL_REF_FLAGS (op) & SYMBOL_FLAG_IO_LOW"
+ 
+@@ -60,7 +60,7 @@
+ (define_special_predicate "io_address_operand"
+   (ior (and (match_code "const_int")
+   (match_test "IN_RANGE (INTVAL (op) - avr_arch->sfr_offset,
+- 0, 0x40 - GET_MODE_SIZE (mode))"))
++ 0, 0x3F)"))
+(and (match_code "symbol_ref")
+   (match_test "SYMBOL_REF_FLAGS (op) & SYMBOL_FLAG_IO"
+ 
+diff --git a/gcc/testsuite/gcc.target/avr/pr67839.c 
b/gcc/testsuite/gcc.target/avr/pr67839.c
+new file mode 100644
+index 000..604ab4b
+--- /dev/null
 b/gcc/testsuite/gcc.target/avr/pr67839.c
+@@ -0,0 +1,29 @@
++/* { dg-do compile } */
++/* { dg-options "-Os" } */
++/* { dg-final { scan-assembler "sbi 0x1f,0" } } */
++/* { dg-final { scan-assembler "cbi 0x1f,0" } } */
++/* { dg-final { scan-assembler-not "sbi 0x20,0" } } */
++/* { dg-final { scan-assembler-not "cbi 0x20,0" } } */
++/* { dg-final { scan-assembler "in r\\d+,__SREG__" } } */
++/* { dg-final { scan-assembler "out __SREG__,r\\d+" } } */
++/* { dg-final { scan-assembler-not "in r\\d+,0x40" } } */
++/* { dg-final { scan-assembler-not "out 0x40, r\\d+" } } */
++
++/* This testcase verifies that SBI/CBI/SBIS/SBIC
++   and IN/OUT instructions are not generated for
++   an IO addresses outside the valid range.
++*/
++#define IO_ADDR(x) (*((volatile char *)x + __AVR_SFR_OFFSET__))
++int main ()
++{
++  IO_ADDR(0x1f) |= 1;
++  IO_ADDR(0x1f) &= 0xFE;
++
++  

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

2016-02-25 Thread Antonio Rojas
Date: Thursday, February 25, 2016 @ 18:01:43
  Author: arojas
Revision: 163435

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-25 17:01:07 UTC (rev 163434)
+++ community-i686/PKGBUILD 2016-02-25 17:01:43 UTC (rev 163435)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Evert Vorster (evors...@gmail.com)
-# Contributor: Martin Sandsmark 
-
-pkgname=movit
-pkgver=1.3.0
-pkgrel=1
-pkgdesc="The modern video toolkit"
-arch=(i686 x86_64)
-url="http://movit.sesse.net/;
-license=(GPL)
-depends=(fftw libepoxy)
-makedepends=(eigen gtest sdl2)
-source=("https://movit.sesse.net/$pkgname-$pkgver.tar.gz;)
-md5sums=('c93e7c47902c06f4b6751842bc9bc708')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: movit/repos/community-i686/PKGBUILD (from rev 163434, 
movit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-25 17:01:43 UTC (rev 163435)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer:
+# Contributor: Evert Vorster (evors...@gmail.com)
+# Contributor: Martin Sandsmark 
+
+pkgname=movit
+pkgver=1.3.2
+pkgrel=1
+pkgdesc="The modern video toolkit"
+arch=(i686 x86_64)
+url="http://movit.sesse.net/;
+license=(GPL)
+depends=(fftw libepoxy)
+makedepends=(eigen gtest sdl2)
+source=("https://movit.sesse.net/$pkgname-$pkgver.tar.gz;)
+md5sums=('dadc7e1695ac784a0233df6b2a1a2b8b')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-25 17:01:07 UTC (rev 163434)
+++ community-x86_64/PKGBUILD   2016-02-25 17:01:43 UTC (rev 163435)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Evert Vorster (evors...@gmail.com)
-# Contributor: Martin Sandsmark 
-
-pkgname=movit
-pkgver=1.3.0
-pkgrel=1
-pkgdesc="The modern video toolkit"
-arch=(i686 x86_64)
-url="http://movit.sesse.net/;
-license=(GPL)
-depends=(fftw libepoxy)
-makedepends=(eigen gtest sdl2)
-source=("https://movit.sesse.net/$pkgname-$pkgver.tar.gz;)
-md5sums=('c93e7c47902c06f4b6751842bc9bc708')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: movit/repos/community-x86_64/PKGBUILD (from rev 163434, 
movit/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-25 17:01:43 UTC (rev 163435)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer:
+# Contributor: Evert Vorster (evors...@gmail.com)
+# Contributor: Martin Sandsmark 
+
+pkgname=movit
+pkgver=1.3.2
+pkgrel=1
+pkgdesc="The modern video toolkit"
+arch=(i686 x86_64)
+url="http://movit.sesse.net/;
+license=(GPL)
+depends=(fftw libepoxy)
+makedepends=(eigen gtest sdl2)
+source=("https://movit.sesse.net/$pkgname-$pkgver.tar.gz;)
+md5sums=('dadc7e1695ac784a0233df6b2a1a2b8b')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2016-02-25 Thread Antonio Rojas
Date: Thursday, February 25, 2016 @ 18:01:07
  Author: arojas
Revision: 163434

Update to 1.3.2

Modified:
  movit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 16:37:53 UTC (rev 163433)
+++ PKGBUILD2016-02-25 17:01:07 UTC (rev 163434)
@@ -4,7 +4,7 @@
 # Contributor: Martin Sandsmark 
 
 pkgname=movit
-pkgver=1.3.0
+pkgver=1.3.2
 pkgrel=1
 pkgdesc="The modern video toolkit"
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 depends=(fftw libepoxy)
 makedepends=(eigen gtest sdl2)
 source=("https://movit.sesse.net/$pkgname-$pkgver.tar.gz;)
-md5sums=('c93e7c47902c06f4b6751842bc9bc708')
+md5sums=('dadc7e1695ac784a0233df6b2a1a2b8b')
 
 build() {
   cd $pkgname-$pkgver


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

2016-02-25 Thread Anatol Pomozov
Date: Thursday, February 25, 2016 @ 17:51:26
  Author: anatolik
Revision: 260251

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

Added:
  nghttp2/repos/testing-i686/
  nghttp2/repos/testing-i686/PKGBUILD
(from rev 260250, nghttp2/trunk/PKGBUILD)
  nghttp2/repos/testing-x86_64/
  nghttp2/repos/testing-x86_64/PKGBUILD
(from rev 260250, nghttp2/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   45 +
 testing-x86_64/PKGBUILD |   45 +
 2 files changed, 90 insertions(+)

Copied: nghttp2/repos/testing-i686/PKGBUILD (from rev 260250, 
nghttp2/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-02-25 16:51:26 UTC (rev 260251)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+# Contributor: Zhuoyun Wei 
+
+pkgname=nghttp2
+pkgver=1.8.0
+pkgrel=1
+pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
+arch=(i686 x86_64)
+url='https://nghttp2.org/'
+license=(MIT)
+depends=(openssl libev zlib libxml2 jansson jemalloc)
+source=(nghttp2-$pkgver.zip::https://github.com/tatsuhiro-t/nghttp2/archive/v$pkgver.zip)
+backup=(
+  etc/nghttpx/nghttpx.conf
+  etc/logrotate.d/nghttpx
+)
+sha256sums=('04ab9e9a39629f860244cd6f3453a5d7166b9f3555ea730ce1193a05ef8af99f')
+
+build() {
+  cd nghttp2-$pkgver
+
+  autoreconf -i
+  ./configure \
+--prefix=/usr \
+--with-spdylay=no \
+--disable-examples \
+--disable-python-bindings
+  make
+}
+
+check() {
+  cd nghttp2-$pkgver
+  make check
+}
+
+package() {
+  cd nghttp2-$pkgver
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 contrib/nghttpx.service 
"$pkgdir/usr/lib/systemd/system/nghttpx.service"
+  install -Dm644 contrib/nghttpx-logrotate "$pkgdir/etc/logrotate.d/nghttpx"
+  install -Dm644 nghttpx.conf.sample "$pkgdir/etc/nghttpx/nghttpx.conf"
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/nghttp2/COPYING"
+}

Copied: nghttp2/repos/testing-x86_64/PKGBUILD (from rev 260250, 
nghttp2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-02-25 16:51:26 UTC (rev 260251)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+# Contributor: Zhuoyun Wei 
+
+pkgname=nghttp2
+pkgver=1.8.0
+pkgrel=1
+pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
+arch=(i686 x86_64)
+url='https://nghttp2.org/'
+license=(MIT)
+depends=(openssl libev zlib libxml2 jansson jemalloc)
+source=(nghttp2-$pkgver.zip::https://github.com/tatsuhiro-t/nghttp2/archive/v$pkgver.zip)
+backup=(
+  etc/nghttpx/nghttpx.conf
+  etc/logrotate.d/nghttpx
+)
+sha256sums=('04ab9e9a39629f860244cd6f3453a5d7166b9f3555ea730ce1193a05ef8af99f')
+
+build() {
+  cd nghttp2-$pkgver
+
+  autoreconf -i
+  ./configure \
+--prefix=/usr \
+--with-spdylay=no \
+--disable-examples \
+--disable-python-bindings
+  make
+}
+
+check() {
+  cd nghttp2-$pkgver
+  make check
+}
+
+package() {
+  cd nghttp2-$pkgver
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 contrib/nghttpx.service 
"$pkgdir/usr/lib/systemd/system/nghttpx.service"
+  install -Dm644 contrib/nghttpx-logrotate "$pkgdir/etc/logrotate.d/nghttpx"
+  install -Dm644 nghttpx.conf.sample "$pkgdir/etc/nghttpx/nghttpx.conf"
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/nghttp2/COPYING"
+}


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

2016-02-25 Thread Anatol Pomozov
Date: Thursday, February 25, 2016 @ 17:50:49
  Author: anatolik
Revision: 260250

upgpkg: nghttp2 1.8.0-1

Modified:
  nghttp2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 12:58:21 UTC (rev 260249)
+++ PKGBUILD2016-02-25 16:50:49 UTC (rev 260250)
@@ -3,7 +3,7 @@
 # Contributor: Zhuoyun Wei 
 
 pkgname=nghttp2
-pkgver=1.7.1
+pkgver=1.8.0
 pkgrel=1
 pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
   etc/nghttpx/nghttpx.conf
   etc/logrotate.d/nghttpx
 )
-sha256sums=('0bd8018433978d135d5e469234fda412ce6a469fdbb6cd8afee46840dc1ca3e5')
+sha256sums=('04ab9e9a39629f860244cd6f3453a5d7166b9f3555ea730ce1193a05ef8af99f')
 
 build() {
   cd nghttp2-$pkgver


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

2016-02-25 Thread Felix Yan
Date: Thursday, February 25, 2016 @ 17:37:53
  Author: fyan
Revision: 163433

archrelease: copy trunk to community-testing-any

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

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

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

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

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

2016-02-25 Thread Felix Yan
Date: Thursday, February 25, 2016 @ 17:37:25
  Author: fyan
Revision: 163431

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-25 16:37:01 UTC (rev 163430)
+++ community-i686/PKGBUILD 2016-02-25 16:37:25 UTC (rev 163431)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-launcher
-pkgver=3.0.5
-pkgrel=1
-pkgdesc='Deepin desktop-environment - Launcher module'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-launcher;
-license=('GPL3')
-depends=('gtk2' 'gsettings-qt' 'qt5-svg' 'qt5-x11extras' 'deepin-file-manager'
- 'startdde' 'deepin-menu' 'deepin-daemon')
-makedepends=('git' 'qt5-tools')
-conflicts=('dde-launcher')
-replaces=('dde-launcher')
-groups=('deepin')
-source=("git+https://cr.deepin.io/dde/dde-launcher.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build(){
-  cd dde-launcher
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-launcher
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-launcher/repos/community-i686/PKGBUILD (from rev 163430, 
deepin-launcher/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-25 16:37:25 UTC (rev 163431)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-launcher
+pkgver=3.0.6
+pkgrel=1
+pkgdesc='Deepin desktop-environment - Launcher module'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-launcher;
+license=('GPL3')
+depends=('gtk2' 'gsettings-qt' 'qt5-svg' 'qt5-x11extras' 'deepin-file-manager'
+ 'startdde' 'deepin-menu' 'deepin-daemon')
+makedepends=('git' 'qt5-tools')
+conflicts=('dde-launcher')
+replaces=('dde-launcher')
+groups=('deepin')
+source=("git+https://cr.deepin.io/dde/dde-launcher.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build(){
+  cd dde-launcher
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-launcher
+  make INSTALL_ROOT="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-25 16:37:01 UTC (rev 163430)
+++ community-x86_64/PKGBUILD   2016-02-25 16:37:25 UTC (rev 163431)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-launcher
-pkgver=3.0.5
-pkgrel=1
-pkgdesc='Deepin desktop-environment - Launcher module'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-launcher;
-license=('GPL3')
-depends=('gtk2' 'gsettings-qt' 'qt5-svg' 'qt5-x11extras' 'deepin-file-manager'
- 'startdde' 'deepin-menu' 'deepin-daemon')
-makedepends=('git' 'qt5-tools')
-conflicts=('dde-launcher')
-replaces=('dde-launcher')
-groups=('deepin')
-source=("git+https://cr.deepin.io/dde/dde-launcher.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build(){
-  cd dde-launcher
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-launcher
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-launcher/repos/community-x86_64/PKGBUILD (from rev 163430, 
deepin-launcher/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-25 16:37:25 UTC (rev 163431)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-launcher
+pkgver=3.0.6
+pkgrel=1
+pkgdesc='Deepin desktop-environment - Launcher module'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-launcher;
+license=('GPL3')
+depends=('gtk2' 'gsettings-qt' 'qt5-svg' 'qt5-x11extras' 'deepin-file-manager'
+ 'startdde' 'deepin-menu' 'deepin-daemon')
+makedepends=('git' 'qt5-tools')
+conflicts=('dde-launcher')
+replaces=('dde-launcher')
+groups=('deepin')

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

2016-02-25 Thread Felix Yan
Date: Thursday, February 25, 2016 @ 17:37:38
  Author: fyan
Revision: 163432

upgpkg: python-hypothesis 3.0.5-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 16:37:25 UTC (rev 163431)
+++ PKGBUILD2016-02-25 16:37:38 UTC (rev 163432)
@@ -3,7 +3,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.0.3
+pkgver=3.0.5
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')


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

2016-02-25 Thread Felix Yan
Date: Thursday, February 25, 2016 @ 17:37:01
  Author: fyan
Revision: 163430

upgpkg: deepin-launcher 3.0.6-1

Modified:
  deepin-launcher/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 16:09:20 UTC (rev 163429)
+++ PKGBUILD2016-02-25 16:37:01 UTC (rev 163430)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-launcher
-pkgver=3.0.5
+pkgver=3.0.6
 pkgrel=1
 pkgdesc='Deepin desktop-environment - Launcher module'
 arch=('i686' 'x86_64')


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

2016-02-25 Thread Felix Yan
Date: Thursday, February 25, 2016 @ 17:09:20
  Author: fyan
Revision: 163429

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

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

+
 /PKGBUILD  |   64 +++
 /deepin-control-center.install |   22 +++
 community-i686/PKGBUILD|   32 ---
 community-i686/deepin-control-center.install   |   11 ---
 community-x86_64/PKGBUILD  |   32 ---
 community-x86_64/deepin-control-center.install |   11 ---
 6 files changed, 86 insertions(+), 86 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-25 16:08:54 UTC (rev 163428)
+++ community-i686/PKGBUILD 2016-02-25 16:09:20 UTC (rev 163429)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-control-center
-pkgver=3.0.8
-pkgrel=1
-pkgdesc='New control center for linux deepin'
-arch=('i686' 'x86_64')
-url="http://github.com/linuxdeepin/dde-control-center;
-license=('GPL3')
-depends=('desktop-file-utils' 'libdui' 'gtk2' 'deepin-account-faces' 
'deepin-api'
- 'deepin-daemon' 'deepin-dbus-factory' 'startdde')
-makedepends=('deepin-dock' 'qt5-tools' 'git')
-conflicts=('dde-control-center' 'dde-dock-applets')
-replaces=('dde-control-center' 'dde-dock-applets')
-groups=('deepin')
-install="${pkgname}.install"
-source=("git+https://cr.deepin.io/dde/dde-control-center.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd dde-control-center
-  qmake-qt5 PREFIX=/usr WITH_MODULE_GRUB=NO WITH_MODULE_REMOTE_ASSIST=NO
-  make
-}
-
-package() {
-  cd dde-control-center
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-control-center/repos/community-i686/PKGBUILD (from rev 163428, 
deepin-control-center/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-25 16:09:20 UTC (rev 163429)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-control-center
+pkgver=3.0.9
+pkgrel=1
+pkgdesc='New control center for linux deepin'
+arch=('i686' 'x86_64')
+url="http://github.com/linuxdeepin/dde-control-center;
+license=('GPL3')
+depends=('desktop-file-utils' 'libdui' 'gtk2' 'deepin-account-faces' 
'deepin-api'
+ 'deepin-daemon' 'deepin-dbus-factory' 'startdde')
+makedepends=('deepin-dock' 'qt5-tools' 'git')
+conflicts=('dde-control-center' 'dde-dock-applets')
+replaces=('dde-control-center' 'dde-dock-applets')
+groups=('deepin')
+install="${pkgname}.install"
+source=("git+https://cr.deepin.io/dde/dde-control-center.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd dde-control-center
+  qmake-qt5 PREFIX=/usr WITH_MODULE_GRUB=NO WITH_MODULE_REMOTE_ASSIST=NO
+  make
+}
+
+package() {
+  cd dde-control-center
+  make INSTALL_ROOT="${pkgdir}" install
+}

Deleted: community-i686/deepin-control-center.install
===
--- community-i686/deepin-control-center.install2016-02-25 16:08:54 UTC 
(rev 163428)
+++ community-i686/deepin-control-center.install2016-02-25 16:09:20 UTC 
(rev 163429)
@@ -1,11 +0,0 @@
-post_install() {
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install "$1"
-}
-
-post_remove() {
-  post_install "$1"
-}

Copied: 
deepin-control-center/repos/community-i686/deepin-control-center.install (from 
rev 163428, deepin-control-center/trunk/deepin-control-center.install)
===
--- community-i686/deepin-control-center.install
(rev 0)
+++ community-i686/deepin-control-center.install2016-02-25 16:09:20 UTC 
(rev 163429)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+

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

2016-02-25 Thread Felix Yan
Date: Thursday, February 25, 2016 @ 17:08:54
  Author: fyan
Revision: 163428

upgpkg: deepin-control-center 3.0.9-1

Modified:
  deepin-control-center/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 16:07:15 UTC (rev 163427)
+++ PKGBUILD2016-02-25 16:08:54 UTC (rev 163428)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-control-center
-pkgver=3.0.8
+pkgver=3.0.9
 pkgrel=1
 pkgdesc='New control center for linux deepin'
 arch=('i686' 'x86_64')


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

2016-02-25 Thread Felix Yan
Date: Thursday, February 25, 2016 @ 17:07:15
  Author: fyan
Revision: 163427

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-25 16:06:50 UTC (rev 163426)
+++ community-i686/PKGBUILD 2016-02-25 16:07:15 UTC (rev 163427)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-dock
-pkgver=3.0.4
-pkgrel=1
-pkgdesc='Deepin desktop-environment - dock module'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-dock;
-license=('GPL3')
-depends=('gtk2' 'libdui' 'qt5-svg' 'deepin-menu' 'deepin-file-manager' 
'deepin-daemon')
-makedepends=('git' 'qt5-tools')
-conflicts=('dde-dock')
-replaces=('dde-dock')
-groups=('deepin')
-source=("git+https://cr.deepin.io/dde/dde-dock.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd dde-dock
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-dock
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-dock/repos/community-i686/PKGBUILD (from rev 163426, 
deepin-dock/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-25 16:07:15 UTC (rev 163427)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-dock
+pkgver=3.0.6
+pkgrel=1
+pkgdesc='Deepin desktop-environment - dock module'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-dock;
+license=('GPL3')
+depends=('gtk2' 'libdui' 'qt5-svg' 'deepin-menu' 'deepin-file-manager' 
'deepin-daemon')
+makedepends=('git' 'qt5-tools')
+conflicts=('dde-dock')
+replaces=('dde-dock')
+groups=('deepin')
+source=("git+https://cr.deepin.io/dde/dde-dock.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd dde-dock
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-dock
+  make INSTALL_ROOT="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-25 16:06:50 UTC (rev 163426)
+++ community-x86_64/PKGBUILD   2016-02-25 16:07:15 UTC (rev 163427)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-dock
-pkgver=3.0.4
-pkgrel=1
-pkgdesc='Deepin desktop-environment - dock module'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-dock;
-license=('GPL3')
-depends=('gtk2' 'libdui' 'qt5-svg' 'deepin-menu' 'deepin-file-manager' 
'deepin-daemon')
-makedepends=('git' 'qt5-tools')
-conflicts=('dde-dock')
-replaces=('dde-dock')
-groups=('deepin')
-source=("git+https://cr.deepin.io/dde/dde-dock.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd dde-dock
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-dock
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: deepin-dock/repos/community-x86_64/PKGBUILD (from rev 163426, 
deepin-dock/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-25 16:07:15 UTC (rev 163427)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-dock
+pkgver=3.0.6
+pkgrel=1
+pkgdesc='Deepin desktop-environment - dock module'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-dock;
+license=('GPL3')
+depends=('gtk2' 'libdui' 'qt5-svg' 'deepin-menu' 'deepin-file-manager' 
'deepin-daemon')
+makedepends=('git' 'qt5-tools')
+conflicts=('dde-dock')
+replaces=('dde-dock')
+groups=('deepin')
+source=("git+https://cr.deepin.io/dde/dde-dock.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd dde-dock
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-dock
+  make INSTALL_ROOT="${pkgdir}" install
+}


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

2016-02-25 Thread Felix Yan
Date: Thursday, February 25, 2016 @ 17:06:50
  Author: fyan
Revision: 163426

upgpkg: deepin-dock 3.0.6-1

Modified:
  deepin-dock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 15:44:26 UTC (rev 163425)
+++ PKGBUILD2016-02-25 16:06:50 UTC (rev 163426)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-dock
-pkgver=3.0.4
+pkgver=3.0.6
 pkgrel=1
 pkgdesc='Deepin desktop-environment - dock module'
 arch=('i686' 'x86_64')


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

2016-02-25 Thread Felix Yan
Date: Thursday, February 25, 2016 @ 16:44:26
  Author: fyan
Revision: 163425

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-25 15:43:24 UTC (rev 163424)
+++ community-i686/PKGBUILD 2016-02-25 15:44:26 UTC (rev 163425)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Michael Hansen 
-
-pkgname=keybase
-pkgdesc='CLI tool for GPG with keybase.io'
-pkgver=1.0.13.0
-_realver=1.0.13-0
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://keybase.io/'
-license=('BSD')
-depends=('gnupg')
-makedepends=('go' 'git' 'mercurial')
-source=("git+https://github.com/keybase/client.git#tag=v$_realver;)
-sha256sums=('SKIP')
-
-prepare() {
-  cd client
-  mkdir -p .gopath/src/github.com/keybase
-  ln -sf "$PWD" .gopath/src/github.com/keybase/client
-  export GOPATH="$PWD/.gopath"
-  export GO15VENDOREXPERIMENT=1
-}
-
-build() {
-  cd client/go/keybase
-  go build -a -tags production github.com/keybase/client/go/keybase # 
-gccgoflags "$CFLAGS $LDFLAGS"
-}
-
-package() {
-  cd client
-  install -Dm755 go/keybase/keybase "$pkgdir"/usr/bin/keybase
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: keybase/repos/community-i686/PKGBUILD (from rev 163424, 
keybase/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-25 15:44:26 UTC (rev 163425)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Michael Hansen 
+
+pkgname=keybase
+pkgdesc='CLI tool for GPG with keybase.io'
+pkgver=1.0.14.0
+_realver=1.0.14-0
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://keybase.io/'
+license=('BSD')
+depends=('gnupg')
+makedepends=('go' 'git' 'mercurial')
+source=("git+https://github.com/keybase/client.git#tag=v$_realver;)
+sha256sums=('SKIP')
+
+prepare() {
+  cd client
+  mkdir -p .gopath/src/github.com/keybase
+  ln -sf "$PWD" .gopath/src/github.com/keybase/client
+  export GOPATH="$PWD/.gopath"
+  export GO15VENDOREXPERIMENT=1
+}
+
+build() {
+  cd client/go/keybase
+  go build -a -tags production github.com/keybase/client/go/keybase # 
-gccgoflags "$CFLAGS $LDFLAGS"
+}
+
+package() {
+  cd client
+  install -Dm755 go/keybase/keybase "$pkgdir"/usr/bin/keybase
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-25 15:43:24 UTC (rev 163424)
+++ community-x86_64/PKGBUILD   2016-02-25 15:44:26 UTC (rev 163425)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Michael Hansen 
-
-pkgname=keybase
-pkgdesc='CLI tool for GPG with keybase.io'
-pkgver=1.0.13.0
-_realver=1.0.13-0
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://keybase.io/'
-license=('BSD')
-depends=('gnupg')
-makedepends=('go' 'git' 'mercurial')
-source=("git+https://github.com/keybase/client.git#tag=v$_realver;)
-sha256sums=('SKIP')
-
-prepare() {
-  cd client
-  mkdir -p .gopath/src/github.com/keybase
-  ln -sf "$PWD" .gopath/src/github.com/keybase/client
-  export GOPATH="$PWD/.gopath"
-  export GO15VENDOREXPERIMENT=1
-}
-
-build() {
-  cd client/go/keybase
-  go build -a -tags production github.com/keybase/client/go/keybase # 
-gccgoflags "$CFLAGS $LDFLAGS"
-}
-
-package() {
-  cd client
-  install -Dm755 go/keybase/keybase "$pkgdir"/usr/bin/keybase
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: keybase/repos/community-x86_64/PKGBUILD (from rev 163424, 
keybase/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-25 15:44:26 UTC (rev 163425)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Michael Hansen 
+
+pkgname=keybase
+pkgdesc='CLI tool for GPG with keybase.io'
+pkgver=1.0.14.0
+_realver=1.0.14-0
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://keybase.io/'
+license=('BSD')
+depends=('gnupg')
+makedepends=('go' 'git' 'mercurial')
+source=("git+https://github.com/keybase/client.git#tag=v$_realver;)
+sha256sums=('SKIP')
+

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

2016-02-25 Thread Felix Yan
Date: Thursday, February 25, 2016 @ 16:43:24
  Author: fyan
Revision: 163424

upgpkg: keybase 1.0.14.0-1

Modified:
  keybase/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 15:40:34 UTC (rev 163423)
+++ PKGBUILD2016-02-25 15:43:24 UTC (rev 163424)
@@ -4,8 +4,8 @@
 
 pkgname=keybase
 pkgdesc='CLI tool for GPG with keybase.io'
-pkgver=1.0.13.0
-_realver=1.0.13-0
+pkgver=1.0.14.0
+_realver=1.0.14-0
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://keybase.io/'


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

2016-02-25 Thread Felix Yan
Date: Thursday, February 25, 2016 @ 16:40:09
  Author: fyan
Revision: 163422

upgpkg: btfs 2.8-1

Modified:
  btfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 15:40:04 UTC (rev 163421)
+++ PKGBUILD2016-02-25 15:40:09 UTC (rev 163422)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=btfs
-pkgver=2.7
+pkgver=2.8
 pkgrel=1
 pkgdesc="A bittorrent filesystem based on FUSE"
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 
 prepare() {
   cd "$srcdir/$pkgname"
-  sed -i 's|#!/usr/bin/python$|#!/usr/bin/python2|' scripts/btplay
+  sed -i 's|#!/usr/bin/env python$|#!/usr/bin/env python2|' scripts/btplay
 }
 
 build() {


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

2016-02-25 Thread Felix Yan
Date: Thursday, February 25, 2016 @ 16:40:34
  Author: fyan
Revision: 163423

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-25 15:40:09 UTC (rev 163422)
+++ community-i686/PKGBUILD 2016-02-25 15:40:34 UTC (rev 163423)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=btfs
-pkgver=2.7
-pkgrel=1
-pkgdesc="A bittorrent filesystem based on FUSE"
-arch=('i686' 'x86_64')
-url="https://github.com/johang/btfs;
-license=('GPL')
-depends=('fuse' 'libtorrent-rasterbar' 'curl')
-makedepends=('git' 'boost')
-optdepends=('python2: for btplay')
-source=("git://github.com/johang/btfs.git#tag=v$pkgver")
-md5sums=('SKIP')
-
-prepare() {
-  cd "$srcdir/$pkgname"
-  sed -i 's|#!/usr/bin/python$|#!/usr/bin/python2|' scripts/btplay
-}
-
-build() {
-  cd "$srcdir/$pkgname"
-  autoreconf -i
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname"
-  make DESTDIR="$pkgdir" install
-}

Copied: btfs/repos/community-i686/PKGBUILD (from rev 163422, 
btfs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-25 15:40:34 UTC (rev 163423)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=btfs
+pkgver=2.8
+pkgrel=1
+pkgdesc="A bittorrent filesystem based on FUSE"
+arch=('i686' 'x86_64')
+url="https://github.com/johang/btfs;
+license=('GPL')
+depends=('fuse' 'libtorrent-rasterbar' 'curl')
+makedepends=('git' 'boost')
+optdepends=('python2: for btplay')
+source=("git://github.com/johang/btfs.git#tag=v$pkgver")
+md5sums=('SKIP')
+
+prepare() {
+  cd "$srcdir/$pkgname"
+  sed -i 's|#!/usr/bin/env python$|#!/usr/bin/env python2|' scripts/btplay
+}
+
+build() {
+  cd "$srcdir/$pkgname"
+  autoreconf -i
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname"
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-25 15:40:09 UTC (rev 163422)
+++ community-x86_64/PKGBUILD   2016-02-25 15:40:34 UTC (rev 163423)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=btfs
-pkgver=2.7
-pkgrel=1
-pkgdesc="A bittorrent filesystem based on FUSE"
-arch=('i686' 'x86_64')
-url="https://github.com/johang/btfs;
-license=('GPL')
-depends=('fuse' 'libtorrent-rasterbar' 'curl')
-makedepends=('git' 'boost')
-optdepends=('python2: for btplay')
-source=("git://github.com/johang/btfs.git#tag=v$pkgver")
-md5sums=('SKIP')
-
-prepare() {
-  cd "$srcdir/$pkgname"
-  sed -i 's|#!/usr/bin/python$|#!/usr/bin/python2|' scripts/btplay
-}
-
-build() {
-  cd "$srcdir/$pkgname"
-  autoreconf -i
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname"
-  make DESTDIR="$pkgdir" install
-}

Copied: btfs/repos/community-x86_64/PKGBUILD (from rev 163422, 
btfs/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-25 15:40:34 UTC (rev 163423)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=btfs
+pkgver=2.8
+pkgrel=1
+pkgdesc="A bittorrent filesystem based on FUSE"
+arch=('i686' 'x86_64')
+url="https://github.com/johang/btfs;
+license=('GPL')
+depends=('fuse' 'libtorrent-rasterbar' 'curl')
+makedepends=('git' 'boost')
+optdepends=('python2: for btplay')
+source=("git://github.com/johang/btfs.git#tag=v$pkgver")
+md5sums=('SKIP')
+
+prepare() {
+  cd "$srcdir/$pkgname"
+  sed -i 's|#!/usr/bin/env python$|#!/usr/bin/env python2|' scripts/btplay
+}
+
+build() {
+  cd "$srcdir/$pkgname"
+  autoreconf -i
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname"
+  make DESTDIR="$pkgdir" install
+}


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

2016-02-25 Thread Felix Yan
Date: Thursday, February 25, 2016 @ 16:40:04
  Author: fyan
Revision: 163421

archrelease: copy trunk to community-any

Added:
  diff-so-fancy/repos/community-any/PKGBUILD
(from rev 163420, diff-so-fancy/trunk/PKGBUILD)
  diff-so-fancy/repos/community-any/diff-so-fancy.install
(from rev 163420, diff-so-fancy/trunk/diff-so-fancy.install)
  diff-so-fancy/repos/community-any/system-diff_highlight.patch
(from rev 163420, 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|   84 +-
 diff-so-fancy.install   |6 +--
 system-diff_highlight.patch |   44 +++---
 3 files changed, 68 insertions(+), 66 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-25 15:39:46 UTC (rev 163420)
+++ PKGBUILD2016-02-25 15:40:04 UTC (rev 163421)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: icasdri 
-
-pkgname=diff-so-fancy
-pkgver=0.4.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-core.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-core".url "${srcdir}"/bats-core
-  git config submodule."test/test_helper/bats-assert".url 
"${srcdir}"/bats-assert
-  git submodule update --init
-
-  patch -p1 -i ../system-diff_highlight.patch
-}
-
-check() {
-  cd "${srcdir}/${pkgname}"
-  bats test/*.bats
-}
-
-package() {
-  cd "${srcdir}/${pkgname}"
-  install -Dm755 'diff-so-fancy' "${pkgdir}/usr/bin/diff-so-fancy"
-}

Copied: diff-so-fancy/repos/community-any/PKGBUILD (from rev 163420, 
diff-so-fancy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-25 15:40:04 UTC (rev 163421)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: icasdri 
+
+pkgname=diff-so-fancy
+pkgver=0.5.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-core.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-core".url "${srcdir}"/bats-core
+  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}"
+  install -Dm755 'diff-so-fancy' "${pkgdir}/usr/bin/diff-so-fancy"
+}

Deleted: diff-so-fancy.install
===
--- diff-so-fancy.install   2016-02-25 15:39:46 UTC (rev 163420)
+++ diff-so-fancy.install   2016-02-25 15:40:04 UTC (rev 163421)
@@ -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 
163420, diff-so-fancy/trunk/diff-so-fancy.install)
===
--- diff-so-fancy.install   (rev 0)
+++ diff-so-fancy.install   2016-02-25 15:40:04 UTC (rev 163421)
@@ -0,0 +1,3 @@
+post_install() {
+echo "Refer to https://github.com/so-fancy/diff-so-fancy#usage for usage"
+}

Deleted: system-diff_highlight.patch
===
--- system-diff_highlight.patch 2016-02-25 15:39:46 UTC (rev 163420)
+++ system-diff_highlight.patch 2016-02-25 15:40:04 UTC (rev 163421)
@@ -1,22 +0,0 @@
-From 

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

2016-02-25 Thread Felix Yan
Date: Thursday, February 25, 2016 @ 16:39:46
  Author: fyan
Revision: 163420

upgpkg: diff-so-fancy 0.5.0-1

Modified:
  diff-so-fancy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 15:17:35 UTC (rev 163419)
+++ PKGBUILD2016-02-25 15:39:46 UTC (rev 163420)
@@ -3,7 +3,7 @@
 # Contributor: icasdri 
 
 pkgname=diff-so-fancy
-pkgver=0.4.1
+pkgver=0.5.0
 pkgrel=1
 pkgdesc="Good-looking diffs with diff-highlight and more"
 arch=('any')
@@ -28,6 +28,8 @@
   git submodule update --init
 
   patch -p1 -i ../system-diff_highlight.patch
+  rm -r third_party
+  rm test/diff-highlight.bats
 }
 
 check() {


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

2016-02-25 Thread Sergej Pupykin
Date: Thursday, February 25, 2016 @ 16:17:18
  Author: spupykin
Revision: 163418

upgpkg: tvtime 1.0.9-1

upd

Modified:
  tvtime/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 14:40:03 UTC (rev 163417)
+++ PKGBUILD2016-02-25 15:17:18 UTC (rev 163418)
@@ -3,8 +3,8 @@
 # Maintainer:thefatprecious 
 
 pkgname=tvtime
-pkgver=1.0.8
-pkgrel=2
+pkgver=1.0.9
+pkgrel=1
 pkgdesc="A high quality television application for use with video capture 
cards"
 arch=('i686' 'x86_64')
 url='http://linuxtv.org/'
@@ -11,23 +11,23 @@
 license=('GPL' 'LGPL')
 depends=('gcc-libs' 'libpng' 'libxml2' 'freetype2' 'libxtst' 'libxinerama' 
'libxv'
 'libsm' 'libxxf86vm' 'alsa-lib')
-makedepends=('libxt' 'v4l-utils' 'git')
-source=("git://linuxtv.org/tvtime.git#tag=v$pkgver")
-md5sums=('SKIP')
+makedepends=('libxt' 'v4l-utils')
+source=("http://linuxtv.org/downloads/tvtime/tvtime-$pkgver.tar.gz;)
+md5sums=('2d115bcf84a1e43b1c6ceb1123493739')
 
 prepare() {
-  cd $srcdir/$pkgname
+  cd $srcdir/$pkgname-$pkgver
   echo "StartupWMClass=tvtime" >>docs/tvtime.desktop
 }
 
 build() {
-  cd $srcdir/$pkgname
-  ./autogen.sh --prefix=/usr --mandir=/usr/share/man --localstatedir=/var 
--sysconfdir=/etc
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --mandir=/usr/share/man --localstatedir=/var 
--sysconfdir=/etc
   make
 }
 
 package() {
-  cd $srcdir/$pkgname
+  cd $srcdir/$pkgname-$pkgver
   make DESTDIR=$pkgdir install
   install -D -m644 docs/html/default.tvtime.xml 
$pkgdir/usr/share/tvtime/default.tvtime.xml
 }


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

2016-02-25 Thread Sergej Pupykin
Date: Thursday, February 25, 2016 @ 16:17:35
  Author: spupykin
Revision: 163419

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

Added:
  tvtime/repos/community-i686/PKGBUILD
(from rev 163418, tvtime/trunk/PKGBUILD)
  tvtime/repos/community-x86_64/PKGBUILD
(from rev 163418, tvtime/trunk/PKGBUILD)
Deleted:
  tvtime/repos/community-i686/PKGBUILD
  tvtime/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-02-25 15:17:18 UTC (rev 163418)
+++ community-i686/PKGBUILD 2016-02-25 15:17:35 UTC (rev 163419)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer:thefatprecious 
-
-pkgname=tvtime
-pkgver=1.0.8
-pkgrel=2
-pkgdesc="A high quality television application for use with video capture 
cards"
-arch=('i686' 'x86_64')
-url='http://linuxtv.org/'
-license=('GPL' 'LGPL')
-depends=('gcc-libs' 'libpng' 'libxml2' 'freetype2' 'libxtst' 'libxinerama' 
'libxv'
-'libsm' 'libxxf86vm' 'alsa-lib')
-makedepends=('libxt' 'v4l-utils' 'git')
-source=("git://linuxtv.org/tvtime.git#tag=v$pkgver")
-md5sums=('SKIP')
-
-prepare() {
-  cd $srcdir/$pkgname
-  echo "StartupWMClass=tvtime" >>docs/tvtime.desktop
-}
-
-build() {
-  cd $srcdir/$pkgname
-  ./autogen.sh --prefix=/usr --mandir=/usr/share/man --localstatedir=/var 
--sysconfdir=/etc
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname
-  make DESTDIR=$pkgdir install
-  install -D -m644 docs/html/default.tvtime.xml 
$pkgdir/usr/share/tvtime/default.tvtime.xml
-}

Copied: tvtime/repos/community-i686/PKGBUILD (from rev 163418, 
tvtime/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-25 15:17:35 UTC (rev 163419)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer:thefatprecious 
+
+pkgname=tvtime
+pkgver=1.0.9
+pkgrel=1
+pkgdesc="A high quality television application for use with video capture 
cards"
+arch=('i686' 'x86_64')
+url='http://linuxtv.org/'
+license=('GPL' 'LGPL')
+depends=('gcc-libs' 'libpng' 'libxml2' 'freetype2' 'libxtst' 'libxinerama' 
'libxv'
+'libsm' 'libxxf86vm' 'alsa-lib')
+makedepends=('libxt' 'v4l-utils')
+source=("http://linuxtv.org/downloads/tvtime/tvtime-$pkgver.tar.gz;)
+md5sums=('2d115bcf84a1e43b1c6ceb1123493739')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  echo "StartupWMClass=tvtime" >>docs/tvtime.desktop
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --mandir=/usr/share/man --localstatedir=/var 
--sysconfdir=/etc
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -D -m644 docs/html/default.tvtime.xml 
$pkgdir/usr/share/tvtime/default.tvtime.xml
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-25 15:17:18 UTC (rev 163418)
+++ community-x86_64/PKGBUILD   2016-02-25 15:17:35 UTC (rev 163419)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer:thefatprecious 
-
-pkgname=tvtime
-pkgver=1.0.8
-pkgrel=2
-pkgdesc="A high quality television application for use with video capture 
cards"
-arch=('i686' 'x86_64')
-url='http://linuxtv.org/'
-license=('GPL' 'LGPL')
-depends=('gcc-libs' 'libpng' 'libxml2' 'freetype2' 'libxtst' 'libxinerama' 
'libxv'
-'libsm' 'libxxf86vm' 'alsa-lib')
-makedepends=('libxt' 'v4l-utils' 'git')
-source=("git://linuxtv.org/tvtime.git#tag=v$pkgver")
-md5sums=('SKIP')
-
-prepare() {
-  cd $srcdir/$pkgname
-  echo "StartupWMClass=tvtime" >>docs/tvtime.desktop
-}
-
-build() {
-  cd $srcdir/$pkgname
-  ./autogen.sh --prefix=/usr --mandir=/usr/share/man --localstatedir=/var 
--sysconfdir=/etc
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname
-  make DESTDIR=$pkgdir install
-  install -D -m644 docs/html/default.tvtime.xml 
$pkgdir/usr/share/tvtime/default.tvtime.xml
-}

Copied: tvtime/repos/community-x86_64/PKGBUILD (from rev 163418, 
tvtime/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-25 15:17:35 UTC (rev 163419)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer:thefatprecious 
+
+pkgname=tvtime
+pkgver=1.0.9
+pkgrel=1
+pkgdesc="A high quality television application for use with video capture 
cards"
+arch=('i686' 

[arch-commits] Commit in mingw-w64-winpthreads/trunk (PKGBUILD)

2016-02-25 Thread Sergej Pupykin
Date: Thursday, February 25, 2016 @ 15:39:34
  Author: spupykin
Revision: 163414

upgpkg: mingw-w64-winpthreads 4.0.5-1

upd

Modified:
  mingw-w64-winpthreads/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 14:39:25 UTC (rev 163413)
+++ PKGBUILD2016-02-25 14:39:34 UTC (rev 163414)
@@ -5,7 +5,7 @@
 _targets="i686-w64-mingw32 x86_64-w64-mingw32"
 
 pkgname=mingw-w64-winpthreads
-pkgver=4.0.4
+pkgver=4.0.5
 _pkgver=${pkgver/rc/-rc}
 pkgrel=1
 pkgdesc='MinGW-w64 winpthreads library'
@@ -19,7 +19,7 @@
 replaces=('mingw-w64-headers-bootstrap')
 options=('!strip' '!buildflags' 'staticlibs' '!emptydirs')
 
source=(http://sourceforge.net/projects/mingw-w64/files/mingw-w64/mingw-w64-release/mingw-w64-v${_pkgver}.tar.bz2)
-md5sums=('d54e353670e17b54f1ac86df3bb33e31')
+md5sums=('d99ef0bd7323dc0351aff2294c12ffd1')
 
 build() {
   for _target in ${_targets}; do


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

2016-02-25 Thread Sergej Pupykin
Date: Thursday, February 25, 2016 @ 15:40:03
  Author: spupykin
Revision: 163417

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-25 14:39:47 UTC (rev 163416)
+++ community-i686/PKGBUILD 2016-02-25 14:40:03 UTC (rev 163417)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: JJDaNiMoTh 
-
-pkgname=qmc2
-pkgver=0.60
-pkgrel=1
-pkgdesc="Qt 4 based UNIX MAME frontend supporting SDLMAME"
-url="http://qmc2.batcom-it.net/;
-license=("GPL")
-arch=('i686' 'x86_64')
-depends=('qtwebkit' 'phonon' 'sdl')
-makedepends=('rsync' 'mesa')
-source=("http://downloads.sourceforge.net/project/qmc2/qmc2/$pkgver/qmc2-$pkgver.tar.bz2;)
-md5sums=('11c29e775a3d043c731ea2d3e99d9cd7')
-
-build() {
-  cd "$srcdir/$pkgname"
-  export CTIME=0
-  make PREFIX=/usr DATADIR=/usr/share SYSCONFDIR=/etc QTDIR=/usr 
QMAKE=qmake-qt4
-}
-
-package() {
-  cd "$srcdir/$pkgname"
-  make PREFIX=/usr DATADIR=/usr/share SYSCONFDIR=/etc QTDIR=/usr 
QMAKE=qmake-qt4 DESTDIR=$pkgdir install
-  install -d $pkgdir/usr/share/{applications,pixmaps}
-  install -D -m644 "$srcdir/qmc2/data/img/mame.png" "$pkgdir/usr/share/pixmaps"
-}

Copied: qmc2/repos/community-i686/PKGBUILD (from rev 163416, 
qmc2/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-25 14:40:03 UTC (rev 163417)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: JJDaNiMoTh 
+
+pkgname=qmc2
+pkgver=0.61
+pkgrel=1
+pkgdesc="Qt 4 based UNIX MAME frontend supporting SDLMAME"
+url="http://qmc2.batcom-it.net/;
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('qtwebkit' 'phonon' 'sdl')
+makedepends=('rsync' 'mesa')
+source=("http://downloads.sourceforge.net/project/qmc2/qmc2/$pkgver/qmc2-$pkgver.tar.bz2;)
+md5sums=('4c1481654c4770d3bef01e6b37117d77')
+
+build() {
+  cd "$srcdir/$pkgname"
+  export CTIME=0
+  make PREFIX=/usr DATADIR=/usr/share SYSCONFDIR=/etc QTDIR=/usr 
QMAKE=qmake-qt4
+}
+
+package() {
+  cd "$srcdir/$pkgname"
+  make PREFIX=/usr DATADIR=/usr/share SYSCONFDIR=/etc QTDIR=/usr 
QMAKE=qmake-qt4 DESTDIR=$pkgdir install
+  install -d $pkgdir/usr/share/{applications,pixmaps}
+  install -D -m644 "$srcdir/qmc2/data/img/mame.png" "$pkgdir/usr/share/pixmaps"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-25 14:39:47 UTC (rev 163416)
+++ community-x86_64/PKGBUILD   2016-02-25 14:40:03 UTC (rev 163417)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: JJDaNiMoTh 
-
-pkgname=qmc2
-pkgver=0.60
-pkgrel=1
-pkgdesc="Qt 4 based UNIX MAME frontend supporting SDLMAME"
-url="http://qmc2.batcom-it.net/;
-license=("GPL")
-arch=('i686' 'x86_64')
-depends=('qtwebkit' 'phonon' 'sdl')
-makedepends=('rsync' 'mesa')
-source=("http://downloads.sourceforge.net/project/qmc2/qmc2/$pkgver/qmc2-$pkgver.tar.bz2;)
-md5sums=('11c29e775a3d043c731ea2d3e99d9cd7')
-
-build() {
-  cd "$srcdir/$pkgname"
-  export CTIME=0
-  make PREFIX=/usr DATADIR=/usr/share SYSCONFDIR=/etc QTDIR=/usr 
QMAKE=qmake-qt4
-}
-
-package() {
-  cd "$srcdir/$pkgname"
-  make PREFIX=/usr DATADIR=/usr/share SYSCONFDIR=/etc QTDIR=/usr 
QMAKE=qmake-qt4 DESTDIR=$pkgdir install
-  install -d $pkgdir/usr/share/{applications,pixmaps}
-  install -D -m644 "$srcdir/qmc2/data/img/mame.png" "$pkgdir/usr/share/pixmaps"
-}

Copied: qmc2/repos/community-x86_64/PKGBUILD (from rev 163416, 
qmc2/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-25 14:40:03 UTC (rev 163417)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: JJDaNiMoTh 
+
+pkgname=qmc2
+pkgver=0.61
+pkgrel=1
+pkgdesc="Qt 4 based UNIX MAME frontend supporting SDLMAME"
+url="http://qmc2.batcom-it.net/;
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('qtwebkit' 'phonon' 'sdl')
+makedepends=('rsync' 'mesa')

[arch-commits] Commit in mingw-w64-winpthreads/repos/community-any (PKGBUILD PKGBUILD)

2016-02-25 Thread Sergej Pupykin
Date: Thursday, February 25, 2016 @ 15:39:43
  Author: spupykin
Revision: 163415

archrelease: copy trunk to community-any

Added:
  mingw-w64-winpthreads/repos/community-any/PKGBUILD
(from rev 163414, mingw-w64-winpthreads/trunk/PKGBUILD)
Deleted:
  mingw-w64-winpthreads/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-25 14:39:34 UTC (rev 163414)
+++ PKGBUILD2016-02-25 14:39:43 UTC (rev 163415)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: rubenvb vanboxem  ruben  gmail  com
-
-_targets="i686-w64-mingw32 x86_64-w64-mingw32"
-
-pkgname=mingw-w64-winpthreads
-pkgver=4.0.4
-_pkgver=${pkgver/rc/-rc}
-pkgrel=1
-pkgdesc='MinGW-w64 winpthreads library'
-arch=('any')
-url='http://mingw-w64.sourceforge.net'
-license=('custom')
-groups=('mingw-w64-toolchain' 'mingw-w64')
-makedepends=('mingw-w64-gcc' 'mingw-w64-binutils' 'mingw-w64-crt')
-provides=('mingw-w64-headers-bootstrap')
-conflicts=('mingw-w64-headers-bootstrap')
-replaces=('mingw-w64-headers-bootstrap')
-options=('!strip' '!buildflags' 'staticlibs' '!emptydirs')
-source=(http://sourceforge.net/projects/mingw-w64/files/mingw-w64/mingw-w64-release/mingw-w64-v${_pkgver}.tar.bz2)
-md5sums=('d54e353670e17b54f1ac86df3bb33e31')
-
-build() {
-  for _target in ${_targets}; do
-msg "Building ${_target} winpthreads..."
-mkdir -p ${srcdir}/winpthreads-build-${_target} && cd 
${srcdir}/winpthreads-build-${_target}
-${srcdir}/mingw-w64-v${_pkgver}/mingw-w64-libraries/winpthreads/configure 
--prefix=/usr/${_target} \
---host=${_target} --enable-static --enable-shared
-make
-  done
-}
-
-package() {
-  for _target in ${_targets}; do
-cd ${srcdir}/winpthreads-build-${_target}
-make DESTDIR=${pkgdir} install
-${_target}-strip --strip-unneeded "$pkgdir"/usr/${_target}/bin/*.dll
-  done
-}
\ No newline at end of file

Copied: mingw-w64-winpthreads/repos/community-any/PKGBUILD (from rev 163414, 
mingw-w64-winpthreads/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-25 14:39:43 UTC (rev 163415)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: rubenvb vanboxem  ruben  gmail  com
+
+_targets="i686-w64-mingw32 x86_64-w64-mingw32"
+
+pkgname=mingw-w64-winpthreads
+pkgver=4.0.5
+_pkgver=${pkgver/rc/-rc}
+pkgrel=1
+pkgdesc='MinGW-w64 winpthreads library'
+arch=('any')
+url='http://mingw-w64.sourceforge.net'
+license=('custom')
+groups=('mingw-w64-toolchain' 'mingw-w64')
+makedepends=('mingw-w64-gcc' 'mingw-w64-binutils' 'mingw-w64-crt')
+provides=('mingw-w64-headers-bootstrap')
+conflicts=('mingw-w64-headers-bootstrap')
+replaces=('mingw-w64-headers-bootstrap')
+options=('!strip' '!buildflags' 'staticlibs' '!emptydirs')
+source=(http://sourceforge.net/projects/mingw-w64/files/mingw-w64/mingw-w64-release/mingw-w64-v${_pkgver}.tar.bz2)
+md5sums=('d99ef0bd7323dc0351aff2294c12ffd1')
+
+build() {
+  for _target in ${_targets}; do
+msg "Building ${_target} winpthreads..."
+mkdir -p ${srcdir}/winpthreads-build-${_target} && cd 
${srcdir}/winpthreads-build-${_target}
+${srcdir}/mingw-w64-v${_pkgver}/mingw-w64-libraries/winpthreads/configure 
--prefix=/usr/${_target} \
+--host=${_target} --enable-static --enable-shared
+make
+  done
+}
+
+package() {
+  for _target in ${_targets}; do
+cd ${srcdir}/winpthreads-build-${_target}
+make DESTDIR=${pkgdir} install
+${_target}-strip --strip-unneeded "$pkgdir"/usr/${_target}/bin/*.dll
+  done
+}
\ No newline at end of file


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

2016-02-25 Thread Sergej Pupykin
Date: Thursday, February 25, 2016 @ 15:39:47
  Author: spupykin
Revision: 163416

upgpkg: qmc2 0.61-1

upd

Modified:
  qmc2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 14:39:43 UTC (rev 163415)
+++ PKGBUILD2016-02-25 14:39:47 UTC (rev 163416)
@@ -3,7 +3,7 @@
 # Contributor: JJDaNiMoTh 
 
 pkgname=qmc2
-pkgver=0.60
+pkgver=0.61
 pkgrel=1
 pkgdesc="Qt 4 based UNIX MAME frontend supporting SDLMAME"
 url="http://qmc2.batcom-it.net/;
@@ -12,7 +12,7 @@
 depends=('qtwebkit' 'phonon' 'sdl')
 makedepends=('rsync' 'mesa')
 
source=("http://downloads.sourceforge.net/project/qmc2/qmc2/$pkgver/qmc2-$pkgver.tar.bz2;)
-md5sums=('11c29e775a3d043c731ea2d3e99d9cd7')
+md5sums=('4c1481654c4770d3bef01e6b37117d77')
 
 build() {
   cd "$srcdir/$pkgname"


[arch-commits] Commit in mingw-w64-headers/repos/community-any (PKGBUILD PKGBUILD)

2016-02-25 Thread Sergej Pupykin
Date: Thursday, February 25, 2016 @ 15:39:25
  Author: spupykin
Revision: 163413

archrelease: copy trunk to community-any

Added:
  mingw-w64-headers/repos/community-any/PKGBUILD
(from rev 163412, mingw-w64-headers/trunk/PKGBUILD)
Deleted:
  mingw-w64-headers/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-25 14:39:16 UTC (rev 163412)
+++ PKGBUILD2016-02-25 14:39:25 UTC (rev 163413)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: rubenvb vanboxem  ruben  gmail  com
-
-_targets="i686-w64-mingw32 x86_64-w64-mingw32"
-
-pkgname='mingw-w64-headers'
-pkgver=4.0.4
-_pkgver=${pkgver/rc/-rc}
-pkgrel=1
-pkgdesc="MinGW-w64 headers for Windows"
-arch=('any')
-url="http://mingw-w64.sourceforge.net;
-license=('custom')
-groups=('mingw-w64-toolchain' 'mingw-w64')
-options=('!strip' '!libtool' '!emptydirs')
-source=(http://sourceforge.net/projects/mingw-w64/files/mingw-w64/mingw-w64-release/mingw-w64-v${_pkgver}.tar.bz2)
-md5sums=('d54e353670e17b54f1ac86df3bb33e31')
-
-build() {
-  for _target in ${_targets}; do
-msg "Configuring ${_target} headers"
-mkdir -p ${srcdir}/headers-${_target} && cd ${srcdir}/headers-${_target}
-${srcdir}/mingw-w64-v${_pkgver}/mingw-w64-headers/configure 
--prefix=/usr/${_target} --enable-sdk=all --enable-secure-api --host=${_target}
-  done
-}
-
-package() {
-  for _target in ${_targets}; do
-msg "Installing ${_target} headers"
-cd ${srcdir}/headers-${_target}
-make DESTDIR=${pkgdir} install
-rm ${pkgdir}/usr/${_target}/include/pthread_signal.h
-rm ${pkgdir}/usr/${_target}/include/pthread_time.h
-rm ${pkgdir}/usr/${_target}/include/pthread_unistd.h
-  done
-
-  msg "Installing MinGW-w64 licenses"
-  install -Dm644 
${srcdir}/mingw-w64-v${_pkgver}/COPYING.MinGW-w64/COPYING.MinGW-w64.txt 
${pkgdir}/usr/share/licenses/${pkgname}/COPYING.MinGW-w64.txt
-  install -Dm644 
${srcdir}/mingw-w64-v${_pkgver}/COPYING.MinGW-w64-runtime/COPYING.MinGW-w64-runtime.txt
 ${pkgdir}/usr/share/licenses/${pkgname}/COPYING.MinGW-w64-runtime.txt
-  install -Dm644 
${srcdir}/mingw-w64-v${_pkgver}/mingw-w64-headers/ddk/readme.txt 
${pkgdir}/usr/share/licenses/${pkgname}/ddk-readme.txt
-  install -Dm644 
${srcdir}/mingw-w64-v${_pkgver}/mingw-w64-headers/direct-x/COPYING.LIB 
${pkgdir}/usr/share/licenses/${pkgname}/direct-x-COPYING.LIB
-  install -Dm644 
${srcdir}/mingw-w64-v${_pkgver}/mingw-w64-headers/direct-x/readme.txt 
${pkgdir}/usr/share/licenses/${pkgname}/direct-x-readme.txt
-}

Copied: mingw-w64-headers/repos/community-any/PKGBUILD (from rev 163412, 
mingw-w64-headers/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-25 14:39:25 UTC (rev 163413)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: rubenvb vanboxem  ruben  gmail  com
+
+_targets="i686-w64-mingw32 x86_64-w64-mingw32"
+
+pkgname='mingw-w64-headers'
+pkgver=4.0.5
+_pkgver=${pkgver/rc/-rc}
+pkgrel=1
+pkgdesc="MinGW-w64 headers for Windows"
+arch=('any')
+url="http://mingw-w64.sourceforge.net;
+license=('custom')
+groups=('mingw-w64-toolchain' 'mingw-w64')
+options=('!strip' '!libtool' '!emptydirs')
+source=(http://sourceforge.net/projects/mingw-w64/files/mingw-w64/mingw-w64-release/mingw-w64-v${_pkgver}.tar.bz2)
+md5sums=('d99ef0bd7323dc0351aff2294c12ffd1')
+
+build() {
+  for _target in ${_targets}; do
+msg "Configuring ${_target} headers"
+mkdir -p ${srcdir}/headers-${_target} && cd ${srcdir}/headers-${_target}
+${srcdir}/mingw-w64-v${_pkgver}/mingw-w64-headers/configure 
--prefix=/usr/${_target} --enable-sdk=all --enable-secure-api --host=${_target}
+  done
+}
+
+package() {
+  for _target in ${_targets}; do
+msg "Installing ${_target} headers"
+cd ${srcdir}/headers-${_target}
+make DESTDIR=${pkgdir} install
+rm ${pkgdir}/usr/${_target}/include/pthread_signal.h
+rm ${pkgdir}/usr/${_target}/include/pthread_time.h
+rm ${pkgdir}/usr/${_target}/include/pthread_unistd.h
+  done
+
+  msg "Installing MinGW-w64 licenses"
+  install -Dm644 
${srcdir}/mingw-w64-v${_pkgver}/COPYING.MinGW-w64/COPYING.MinGW-w64.txt 
${pkgdir}/usr/share/licenses/${pkgname}/COPYING.MinGW-w64.txt
+  install -Dm644 
${srcdir}/mingw-w64-v${_pkgver}/COPYING.MinGW-w64-runtime/COPYING.MinGW-w64-runtime.txt
 ${pkgdir}/usr/share/licenses/${pkgname}/COPYING.MinGW-w64-runtime.txt
+  install -Dm644 
${srcdir}/mingw-w64-v${_pkgver}/mingw-w64-headers/ddk/readme.txt 
${pkgdir}/usr/share/licenses/${pkgname}/ddk-readme.txt
+  install -Dm644 
${srcdir}/mingw-w64-v${_pkgver}/mingw-w64-headers/direct-x/COPYING.LIB 
${pkgdir}/usr/share/licenses/${pkgname}/direct-x-COPYING.LIB
+  install 

[arch-commits] Commit in mingw-w64-headers/trunk (PKGBUILD)

2016-02-25 Thread Sergej Pupykin
Date: Thursday, February 25, 2016 @ 15:39:16
  Author: spupykin
Revision: 163412

upgpkg: mingw-w64-headers 4.0.5-1

upd

Modified:
  mingw-w64-headers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 14:39:11 UTC (rev 163411)
+++ PKGBUILD2016-02-25 14:39:16 UTC (rev 163412)
@@ -5,7 +5,7 @@
 _targets="i686-w64-mingw32 x86_64-w64-mingw32"
 
 pkgname='mingw-w64-headers'
-pkgver=4.0.4
+pkgver=4.0.5
 _pkgver=${pkgver/rc/-rc}
 pkgrel=1
 pkgdesc="MinGW-w64 headers for Windows"
@@ -15,7 +15,7 @@
 groups=('mingw-w64-toolchain' 'mingw-w64')
 options=('!strip' '!libtool' '!emptydirs')
 
source=(http://sourceforge.net/projects/mingw-w64/files/mingw-w64/mingw-w64-release/mingw-w64-v${_pkgver}.tar.bz2)
-md5sums=('d54e353670e17b54f1ac86df3bb33e31')
+md5sums=('d99ef0bd7323dc0351aff2294c12ffd1')
 
 build() {
   for _target in ${_targets}; do


[arch-commits] Commit in mingw-w64-crt/trunk (PKGBUILD)

2016-02-25 Thread Sergej Pupykin
Date: Thursday, February 25, 2016 @ 15:39:01
  Author: spupykin
Revision: 163410

upgpkg: mingw-w64-crt 4.0.5-1

upd

Modified:
  mingw-w64-crt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 14:38:51 UTC (rev 163409)
+++ PKGBUILD2016-02-25 14:39:01 UTC (rev 163410)
@@ -5,7 +5,7 @@
 _targets="i686-w64-mingw32 x86_64-w64-mingw32"
 
 pkgname=mingw-w64-crt
-pkgver=4.0.4
+pkgver=4.0.5
 _pkgver=${pkgver/rc/-rc}
 pkgrel=1
 pkgdesc='MinGW-w64 CRT for Windows'
@@ -16,7 +16,7 @@
 makedepends=('mingw-w64-gcc' 'mingw-w64-binutils' 'mingw-w64-headers')
 options=('!strip' '!buildflags' 'staticlibs' '!emptydirs')
 
source=(http://sourceforge.net/projects/mingw-w64/files/mingw-w64/mingw-w64-release/mingw-w64-v${_pkgver}.tar.bz2)
-md5sums=('d54e353670e17b54f1ac86df3bb33e31')
+md5sums=('d99ef0bd7323dc0351aff2294c12ffd1')
 
 prepare() {
   cd ${srcdir}/mingw-w64-v${_pkgver}/mingw-w64-crt


[arch-commits] Commit in mingw-w64-crt/repos/community-any (PKGBUILD PKGBUILD)

2016-02-25 Thread Sergej Pupykin
Date: Thursday, February 25, 2016 @ 15:39:11
  Author: spupykin
Revision: 163411

archrelease: copy trunk to community-any

Added:
  mingw-w64-crt/repos/community-any/PKGBUILD
(from rev 163410, mingw-w64-crt/trunk/PKGBUILD)
Deleted:
  mingw-w64-crt/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-25 14:39:01 UTC (rev 163410)
+++ PKGBUILD2016-02-25 14:39:11 UTC (rev 163411)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: rubenvb vanboxem  ruben  gmail  com
-
-_targets="i686-w64-mingw32 x86_64-w64-mingw32"
-
-pkgname=mingw-w64-crt
-pkgver=4.0.4
-_pkgver=${pkgver/rc/-rc}
-pkgrel=1
-pkgdesc='MinGW-w64 CRT for Windows'
-arch=('any')
-url='http://mingw-w64.sourceforge.net'
-license=('custom')
-groups=('mingw-w64-toolchain' 'mingw-w64')
-makedepends=('mingw-w64-gcc' 'mingw-w64-binutils' 'mingw-w64-headers')
-options=('!strip' '!buildflags' 'staticlibs' '!emptydirs')
-source=(http://sourceforge.net/projects/mingw-w64/files/mingw-w64/mingw-w64-release/mingw-w64-v${_pkgver}.tar.bz2)
-md5sums=('d54e353670e17b54f1ac86df3bb33e31')
-
-prepare() {
-  cd ${srcdir}/mingw-w64-v${_pkgver}/mingw-w64-crt
-  aclocal
-  automake
-}
-
-build() {
-  cd ${srcdir}
-  for _target in ${_targets}; do
-msg "Building ${_target} CRT"
-if [ ${_target} == "i686-w64-mingw32" ]; then
-_crt_configure_args="--disable-lib64 --enable-lib32"
-elif [ ${_target} == "x86_64-w64-mingw32" ]; then
-_crt_configure_args="--disable-lib32 --enable-lib64"
-fi
-mkdir -p ${srcdir}/crt-${_target} && cd ${srcdir}/crt-${_target}
-${srcdir}/mingw-w64-v${_pkgver}/mingw-w64-crt/configure 
--prefix=/usr/${_target} \
---host=${_target} --enable-wildcard \
-${_crt_configure_args}
-make
-  done
-}
-
-package() {
-  for _target in ${_targets}; do
-msg "Installing ${_target} crt"
-cd ${srcdir}/crt-${_target}
-make DESTDIR=${pkgdir} install
-  done
-}

Copied: mingw-w64-crt/repos/community-any/PKGBUILD (from rev 163410, 
mingw-w64-crt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-25 14:39:11 UTC (rev 163411)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: rubenvb vanboxem  ruben  gmail  com
+
+_targets="i686-w64-mingw32 x86_64-w64-mingw32"
+
+pkgname=mingw-w64-crt
+pkgver=4.0.5
+_pkgver=${pkgver/rc/-rc}
+pkgrel=1
+pkgdesc='MinGW-w64 CRT for Windows'
+arch=('any')
+url='http://mingw-w64.sourceforge.net'
+license=('custom')
+groups=('mingw-w64-toolchain' 'mingw-w64')
+makedepends=('mingw-w64-gcc' 'mingw-w64-binutils' 'mingw-w64-headers')
+options=('!strip' '!buildflags' 'staticlibs' '!emptydirs')
+source=(http://sourceforge.net/projects/mingw-w64/files/mingw-w64/mingw-w64-release/mingw-w64-v${_pkgver}.tar.bz2)
+md5sums=('d99ef0bd7323dc0351aff2294c12ffd1')
+
+prepare() {
+  cd ${srcdir}/mingw-w64-v${_pkgver}/mingw-w64-crt
+  aclocal
+  automake
+}
+
+build() {
+  cd ${srcdir}
+  for _target in ${_targets}; do
+msg "Building ${_target} CRT"
+if [ ${_target} == "i686-w64-mingw32" ]; then
+_crt_configure_args="--disable-lib64 --enable-lib32"
+elif [ ${_target} == "x86_64-w64-mingw32" ]; then
+_crt_configure_args="--disable-lib32 --enable-lib64"
+fi
+mkdir -p ${srcdir}/crt-${_target} && cd ${srcdir}/crt-${_target}
+${srcdir}/mingw-w64-v${_pkgver}/mingw-w64-crt/configure 
--prefix=/usr/${_target} \
+--host=${_target} --enable-wildcard \
+${_crt_configure_args}
+make
+  done
+}
+
+package() {
+  for _target in ${_targets}; do
+msg "Installing ${_target} crt"
+cd ${srcdir}/crt-${_target}
+make DESTDIR=${pkgdir} install
+  done
+}


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

2016-02-25 Thread Sergej Pupykin
Date: Thursday, February 25, 2016 @ 15:38:51
  Author: spupykin
Revision: 163409

archrelease: copy trunk to community-any

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

+
 PKGBUILD   |   92 +++
 drupal.install |   14 
 2 files changed, 53 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-25 14:38:42 UTC (rev 163408)
+++ PKGBUILD2016-02-25 14:38:51 UTC (rev 163409)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Corrado Primier 
-
-pkgname=drupal
-pkgver=8.0.3
-pkgrel=1
-pkgdesc="A PHP-based content management platform"
-arch=('any')
-url="http://www.drupal.org/;
-license=('GPL')
-depends=('php' 'php-gd')
-install='drupal.install'
-backup=('etc/webapps/drupal/.htaccess')
-options=(!strip)
-source=(http://www.drupal.org/files/projects/$pkgname-$pkgver.tar.gz)
-md5sums=('7d5f5278a870b8f4a29cda4fe915d619')
-
-package() {
-  _instdir=$pkgdir/usr/share/webapps/drupal
-  mkdir -p ${_instdir}
-  cd ${_instdir}
-  cp -r $srcdir/$pkgname-$pkgver/{*,.htaccess} ${_instdir}
-
-  # move .htaccess
-  mkdir -p $pkgdir/etc/webapps/drupal
-  sed -i '1,1iRequire all denied' ${_instdir}/.htaccess
-  mv ${_instdir}/.htaccess $pkgdir/etc/webapps/drupal/.htaccess
-  ln -s /etc/webapps/drupal/.htaccess ${_instdir}/.htaccess
-
-  # move sites/
-  mkdir -p $pkgdir/var/lib/drupal/
-  mv ${_instdir}/sites $pkgdir/var/lib/drupal/sites
-  ln -s /var/lib/drupal/sites ${_instdir}/sites
-
-  # apache config example
-  cat >$pkgdir/etc/webapps/drupal/apache.example.conf <
-   AllowOverride All
-   Options FollowSymlinks
-   Require all granted
-   php_admin_value open_basedir 
"/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/:/var/lib/drupal"
-   
-EOF
-}

Copied: drupal/repos/community-any/PKGBUILD (from rev 163408, 
drupal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-25 14:38:51 UTC (rev 163409)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Corrado Primier 
+
+pkgname=drupal
+pkgver=8.0.4
+pkgrel=1
+pkgdesc="A PHP-based content management platform"
+arch=('any')
+url="http://www.drupal.org/;
+license=('GPL')
+depends=('php' 'php-gd')
+install='drupal.install'
+backup=('etc/webapps/drupal/.htaccess')
+options=(!strip)
+source=(http://www.drupal.org/files/projects/$pkgname-$pkgver.tar.gz)
+md5sums=('7516dd4c18415020f80f35e970ce')
+
+package() {
+  _instdir=$pkgdir/usr/share/webapps/drupal
+  mkdir -p ${_instdir}
+  cd ${_instdir}
+  cp -r $srcdir/$pkgname-$pkgver/{*,.htaccess} ${_instdir}
+
+  # move .htaccess
+  mkdir -p $pkgdir/etc/webapps/drupal
+  sed -i '1,1iRequire all denied' ${_instdir}/.htaccess
+  mv ${_instdir}/.htaccess $pkgdir/etc/webapps/drupal/.htaccess
+  ln -s /etc/webapps/drupal/.htaccess ${_instdir}/.htaccess
+
+  # move sites/
+  mkdir -p $pkgdir/var/lib/drupal/
+  mv ${_instdir}/sites $pkgdir/var/lib/drupal/sites
+  ln -s /var/lib/drupal/sites ${_instdir}/sites
+
+  # apache config example
+  cat >$pkgdir/etc/webapps/drupal/apache.example.conf <
+   AllowOverride All
+   Options FollowSymlinks
+   Require all granted
+   php_admin_value open_basedir 
"/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/:/var/lib/drupal"
+   
+EOF
+}

Deleted: drupal.install
===
--- drupal.install  2016-02-25 14:38:42 UTC (rev 163408)
+++ drupal.install  2016-02-25 14:38:51 UTC (rev 163409)
@@ -1,7 +0,0 @@
-post_install() {
-  chown -R http:http var/lib/drupal
-}
-
-post_upgrade() {
-  chown -R http:http var/lib/drupal
-}

Copied: drupal/repos/community-any/drupal.install (from rev 163408, 
drupal/trunk/drupal.install)
===
--- drupal.install  (rev 0)
+++ drupal.install  2016-02-25 14:38:51 UTC (rev 163409)
@@ -0,0 +1,7 @@
+post_install() {
+  chown -R http:http var/lib/drupal
+}
+
+post_upgrade() {
+  chown -R http:http var/lib/drupal
+}


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

2016-02-25 Thread Sergej Pupykin
Date: Thursday, February 25, 2016 @ 15:38:38
  Author: spupykin
Revision: 163407

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |   79 +
 cacti-php7.patch |  163 +
 cacti.install|   14 ++--
 3 files changed, 211 insertions(+), 45 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-25 14:38:21 UTC (rev 163406)
+++ PKGBUILD2016-02-25 14:38:38 UTC (rev 163407)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: tuxbubling 
-
-pkgname=cacti
-pkgver=0.8.8_g
-pkgrel=1
-pkgdesc="complete network graphing solution designed to harness the power of 
RRDTool's data storage and graphing functionality"
-arch=(any)
-url="http://www.cacti.net;
-license=('GPL')
-depends=('rrdtool' 'mariadb' 'php' 'php-gd' 'net-snmp' 'xorg-fonts-100dpi')
-backup=('etc/webapps/cacti/.htaccess'
-   'etc/webapps/cacti/config.php')
-install=cacti.install
-source=("http://www.cacti.net/downloads/$pkgname-${pkgver/_/}.tar.gz;)
-md5sums=('75f660d54152182e1dbbf0db73143098')
-
-prepare() {
-  cd $srcdir/$pkgname-${pkgver/_/}
-}
-
-package() {
-  mkdir -p $pkgdir/usr/share/webapps/cacti $pkgdir/etc/webapps/cacti
-  mv $srcdir/$pkgname-${pkgver/_/}/* $pkgdir/usr/share/webapps/cacti
-  echo "Require all denied" >> $pkgdir/etc/webapps/cacti/.htaccess
-  mv $pkgdir/usr/share/webapps/cacti/include/config.php 
$pkgdir/etc/webapps/cacti
-  ln -s /etc/webapps/cacti/.htaccess $pkgdir/usr/share/webapps/cacti/.htaccess
-  ln -s /etc/webapps/cacti/config.php 
$pkgdir/usr/share/webapps/cacti/include/config.php
-
-  install -dm0755 $pkgdir/var/log/ $pkgdir/var/lib/cacti/
-
-  mv $pkgdir/usr/share/webapps/cacti/rra $pkgdir/var/lib/cacti/rra
-  ln -s /var/lib/cacti/rra $pkgdir/usr/share/webapps/cacti/rra
-
-  mv $pkgdir/usr/share/webapps/cacti/log $pkgdir/var/log/cacti
-  ln -s /var/log/cacti $pkgdir/usr/share/webapps/cacti/log
-}

Copied: cacti/repos/community-any/PKGBUILD (from rev 163406, 
cacti/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-25 14:38:38 UTC (rev 163407)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: tuxbubling 
+
+pkgname=cacti
+pkgver=0.8.8_g
+pkgrel=2
+pkgdesc="complete network graphing solution designed to harness the power of 
RRDTool's data storage and graphing functionality"
+arch=(any)
+url="http://www.cacti.net;
+license=('GPL')
+depends=('rrdtool' 'mariadb' 'php' 'php-gd' 'net-snmp' 'xorg-fonts-100dpi')
+backup=('etc/webapps/cacti/.htaccess'
+   'etc/webapps/cacti/config.php')
+install=cacti.install
+source=("http://www.cacti.net/downloads/$pkgname-${pkgver/_/}.tar.gz;
+   "cacti-php7.patch")
+md5sums=('75f660d54152182e1dbbf0db73143098'
+ 'f8bc449356b00a5a697522e1e0ca4c54')
+
+prepare() {
+  cd $srcdir/$pkgname-${pkgver/_/}
+  patch -p1 -i $srcdir/cacti-php7.patch
+}
+
+package() {
+  mkdir -p $pkgdir/usr/share/webapps/cacti $pkgdir/etc/webapps/cacti
+  mv $srcdir/$pkgname-${pkgver/_/}/* $pkgdir/usr/share/webapps/cacti
+  echo "Require all denied" >> $pkgdir/etc/webapps/cacti/.htaccess
+  mv $pkgdir/usr/share/webapps/cacti/include/config.php 
$pkgdir/etc/webapps/cacti
+  ln -s /etc/webapps/cacti/.htaccess $pkgdir/usr/share/webapps/cacti/.htaccess
+  ln -s /etc/webapps/cacti/config.php 
$pkgdir/usr/share/webapps/cacti/include/config.php
+
+  install -dm0755 $pkgdir/var/log/ $pkgdir/var/lib/cacti/
+
+  mv $pkgdir/usr/share/webapps/cacti/rra $pkgdir/var/lib/cacti/rra
+  ln -s /var/lib/cacti/rra $pkgdir/usr/share/webapps/cacti/rra
+
+  mv $pkgdir/usr/share/webapps/cacti/log $pkgdir/var/log/cacti
+  ln -s /var/log/cacti $pkgdir/usr/share/webapps/cacti/log
+}

Copied: cacti/repos/community-any/cacti-php7.patch (from rev 163406, 
cacti/trunk/cacti-php7.patch)
===
--- cacti-php7.patch(rev 0)
+++ cacti-php7.patch2016-02-25 14:38:38 UTC (rev 163407)
@@ -0,0 +1,163 @@
+diff -aur cacti/install/index.php cacti-PHP7/install/index.php
+--- cacti/install/index.php2016-02-07 20:26:54.0 +0100
 cacti-PHP7/install/index.php   2016-02-24 22:33:10.713574142 +0100
+@@ -63,7 +63,7 @@
+ }
+ 
+ function verify_php_extensions() {
+-  $extensions = array("session", "sockets", "mysql", "xml");
++  $extensions = array("session", 

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

2016-02-25 Thread Sergej Pupykin
Date: Thursday, February 25, 2016 @ 15:38:42
  Author: spupykin
Revision: 163408

upgpkg: drupal 8.0.4-1

upd

Modified:
  drupal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 14:38:38 UTC (rev 163407)
+++ PKGBUILD2016-02-25 14:38:42 UTC (rev 163408)
@@ -3,7 +3,7 @@
 # Contributor: Corrado Primier 
 
 pkgname=drupal
-pkgver=8.0.3
+pkgver=8.0.4
 pkgrel=1
 pkgdesc="A PHP-based content management platform"
 arch=('any')
@@ -14,7 +14,7 @@
 backup=('etc/webapps/drupal/.htaccess')
 options=(!strip)
 source=(http://www.drupal.org/files/projects/$pkgname-$pkgver.tar.gz)
-md5sums=('7d5f5278a870b8f4a29cda4fe915d619')
+md5sums=('7516dd4c18415020f80f35e970ce')
 
 package() {
   _instdir=$pkgdir/usr/share/webapps/drupal


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

2016-02-25 Thread Sergej Pupykin
Date: Thursday, February 25, 2016 @ 15:38:21
  Author: spupykin
Revision: 163406

upgpkg: cacti 0.8.8_g-2

upd

Added:
  cacti/trunk/cacti-php7.patch
Modified:
  cacti/trunk/PKGBUILD

--+
 PKGBUILD |9 +-
 cacti-php7.patch |  163 +
 2 files changed, 169 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 12:09:56 UTC (rev 163405)
+++ PKGBUILD2016-02-25 14:38:21 UTC (rev 163406)
@@ -4,7 +4,7 @@
 
 pkgname=cacti
 pkgver=0.8.8_g
-pkgrel=1
+pkgrel=2
 pkgdesc="complete network graphing solution designed to harness the power of 
RRDTool's data storage and graphing functionality"
 arch=(any)
 url="http://www.cacti.net;
@@ -13,11 +13,14 @@
 backup=('etc/webapps/cacti/.htaccess'
'etc/webapps/cacti/config.php')
 install=cacti.install
-source=("http://www.cacti.net/downloads/$pkgname-${pkgver/_/}.tar.gz;)
-md5sums=('75f660d54152182e1dbbf0db73143098')
+source=("http://www.cacti.net/downloads/$pkgname-${pkgver/_/}.tar.gz;
+   "cacti-php7.patch")
+md5sums=('75f660d54152182e1dbbf0db73143098'
+ 'f8bc449356b00a5a697522e1e0ca4c54')
 
 prepare() {
   cd $srcdir/$pkgname-${pkgver/_/}
+  patch -p1 -i $srcdir/cacti-php7.patch
 }
 
 package() {

Added: cacti-php7.patch
===
--- cacti-php7.patch(rev 0)
+++ cacti-php7.patch2016-02-25 14:38:21 UTC (rev 163406)
@@ -0,0 +1,163 @@
+diff -aur cacti/install/index.php cacti-PHP7/install/index.php
+--- cacti/install/index.php2016-02-07 20:26:54.0 +0100
 cacti-PHP7/install/index.php   2016-02-24 22:33:10.713574142 +0100
+@@ -63,7 +63,7 @@
+ }
+ 
+ function verify_php_extensions() {
+-  $extensions = array("session", "sockets", "mysql", "xml");
++  $extensions = array("session", "sockets", "pdo_mysql", "xml");
+   $ok = true;
+   $missing_extension = "  Error
+   The following PHP extensions are 
missing:";
+diff -aur cacti/lib/adodb/adodb.inc.php cacti-PHP7/lib/adodb/adodb.inc.php
+--- cacti/lib/adodb/adodb.inc.php  2010-08-21 17:03:22.0 +0200
 cacti-PHP7/lib/adodb/adodb.inc.php 2016-02-24 22:19:33.915880478 +0100
+@@ -863,13 +863,13 @@
+   } 
+   
+   if ($this->_queryID === true) { // return simplified recordset 
for inserts/updates/deletes with lower overhead
+-  $rs =& new ADORecordSet_empty();
++  $rs = new ADORecordSet_empty();
+   return $rs;
+   }
+   
+   // return real recordset from select statement
+   $rsclass = $this->rsPrefix.$this->databaseType;
+-  $rs =& new $rsclass($this->_queryID,$this->fetchMode);
++  $rs = new $rsclass($this->_queryID,$this->fetchMode);
+   $rs->connection = &$this; // Pablo suggestion
+   $rs->Init();
+   if (is_array($sql)) $rs->sql = $sql[0];
+@@ -1180,7 +1180,7 @@
+   
+   $arrayClass = $this->arrayClass;
+   
+-  $rs2 =& new $arrayClass();
++  $rs2 = new $arrayClass();
+   $rs2->connection = &$this;
+   $rs2->sql = $rs->sql;
+   $rs2->dataProvider = $this->dataProvider;
+@@ -1958,7 +1958,7 @@
+ 
+   $retarr = array();
+   while (!$rs->EOF) { //print_r($rs->fields);
+-  $fld =& new ADOFieldObject();
++  $fld = new ADOFieldObject();
+   $fld->name = $rs->fields[0];
+   $fld->type = $rs->fields[1];
+   if (isset($rs->fields[3]) && $rs->fields[3]) {
+@@ -3024,7 +3024,7 @@
+   function ($isupper=true)
+   {
+   if (empty($this->_obj)) {
+-  $this->_obj =& new ADOFetchObj();
++  $this->_obj = new ADOFetchObj();
+   $this->_names = array();
+   for ($i=0; $i <$this->_numOfFields; $i++) {
+   $f = $this->FetchField($i);
+@@ -3589,7 +3589,7 @@
+   return $false;
+   }
+   
+-  $obj =& new $cls();
++  $obj = new $cls();
+   }
+   
+   # constructor should not fail
+@@ -3664,7 +3664,7 @@
+   @include_once(ADODB_DIR."/perf/perf-$drivername.inc.php");
+   $class = "Perf_$drivername";
+   if (!class_exists($class)) return $false;
+-  $perf =& new $class($conn);
++  $perf = new $class($conn);
+   
+   return $perf;
+   }
+@@ -3684,7 +3684,7 @@

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

2016-02-25 Thread Tobias Powalowski
Date: Thursday, February 25, 2016 @ 13:58:21
  Author: tpowa
Revision: 260249

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

Added:
  iputils/repos/core-i686/PKGBUILD
(from rev 260248, iputils/repos/testing-i686/PKGBUILD)
  iputils/repos/core-i686/iputils.install
(from rev 260248, iputils/repos/testing-i686/iputils.install)
  iputils/repos/core-i686/tftp.xinetd
(from rev 260248, iputils/repos/testing-i686/tftp.xinetd)
  iputils/repos/core-x86_64/PKGBUILD
(from rev 260248, iputils/repos/testing-x86_64/PKGBUILD)
  iputils/repos/core-x86_64/iputils.install
(from rev 260248, iputils/repos/testing-x86_64/iputils.install)
  iputils/repos/core-x86_64/tftp.xinetd
(from rev 260248, iputils/repos/testing-x86_64/tftp.xinetd)
Deleted:
  iputils/repos/core-i686/PKGBUILD
  iputils/repos/core-i686/iputils.install
  iputils/repos/core-i686/tftp.xinetd
  iputils/repos/core-x86_64/PKGBUILD
  iputils/repos/core-x86_64/iputils.install
  iputils/repos/core-x86_64/tftp.xinetd
  iputils/repos/testing-i686/
  iputils/repos/testing-x86_64/

-+
 /PKGBUILD   |  118 ++
 /iputils.install|   18 ++
 /tftp.xinetd|   20 +++
 core-i686/PKGBUILD  |   62 --
 core-i686/iputils.install   |   10 ---
 core-i686/tftp.xinetd   |   10 ---
 core-x86_64/PKGBUILD|   62 --
 core-x86_64/iputils.install |   10 ---
 core-x86_64/tftp.xinetd |   10 ---
 9 files changed, 156 insertions(+), 164 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2016-02-25 11:00:09 UTC (rev 260248)
+++ core-i686/PKGBUILD  2016-02-25 12:58:21 UTC (rev 260249)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault 
-# Maintainer: Tobias Powalowski 
-# Contributor: Aaron Griffin 
-
-pkgname=iputils
-# Commit date + git rev-parse --short origin/master
-_rev=fad11dc
-pkgver=20140519.${_rev}
-pkgrel=1
-pkgdesc="Network monitoring tools, including ping"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://www.skbuff.net/iputils/;
-groups=('base')
-depends=('openssl' 'sysfsutils' 'libcap')
-optdepends=('xinetd: for tftpd')
-makedepends=('docbook2x' 'opensp' 'git')
-conflicts=('netkit-base' 'arping' 'netkit-tftpd')
-replaces=('netkit-base')
-backup=(etc/xinetd.d/tftp)
-install=${pkgname}.install
-source=("git+https://github.com/iputils/iputils.git#commit=${_rev};
-tftp.xinetd)
-sha1sums=('SKIP'
-  'fc2ae26f5609725e3f4aeaf4ab82dfa6d2e378fd')
-
-build() {
-  cd "${srcdir}/${pkgname}"
-
-  make USE_GNUTLS=no CCOPTOPT="$CFLAGS"
-
-  cd doc
-  for file in *.sgml; do
-xf=${file/.sgml/.xml}
-osx -xlower -xno-nl-in-tag $file > $xf || true
-sed -i "s|\(.*\), \(.*\)|\1, 
\2|g" $xf
-docbook2man $xf
-  done
-}
-
-package() {
-  cd "${srcdir}/${pkgname}"
-
-  install -dm755 "${pkgdir}"/usr/bin
-
-  install -m755 arping clockdiff rarpd rdisc tftpd tracepath tracepath6 
"${pkgdir}"/usr/bin/
-
-  install -m755 ping{,6} "${pkgdir}"/usr/bin/
-
-  install -dm755 "${pkgdir}"/usr/share/man/man8
-  install -m644 doc/{arping,clockdiff,ping,rarpd,rdisc,tftpd,tracepath}.8 \
- "${pkgdir}"/usr/share/man/man8/
-
-  cd "${pkgdir}"/usr/share/man/man8
-  ln -sf ping.8.gz  ping6.8.gz
-  ln -sf tracepath.8.gz tracepath6.8.gz
-
-  # FS#24768
-  install -dm755 "${pkgdir}"/etc/xinetd.d/
-  install -m644 "${srcdir}"/tftp.xinetd "${pkgdir}"/etc/xinetd.d/tftp
-}

Copied: iputils/repos/core-i686/PKGBUILD (from rev 260248, 
iputils/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2016-02-25 12:58:21 UTC (rev 260249)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault 
+# Maintainer: Tobias Powalowski 
+# Contributor: Aaron Griffin 
+
+pkgname=iputils
+# Commit date + git rev-parse --short origin/master
+_rev=1c59920
+pkgver=20150815.${_rev}
+pkgrel=3
+pkgdesc="Network monitoring tools, including ping"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.skbuff.net/iputils/;
+groups=('base')
+depends=('openssl' 'sysfsutils' 'libcap')
+optdepends=('xinetd: for tftpd')
+makedepends=('docbook2x' 'opensp' 'git')
+conflicts=('netkit-base' 'arping' 'netkit-tftpd')
+replaces=('netkit-base')
+backup=(etc/xinetd.d/tftp)
+install=${pkgname}.install
+source=("git+https://github.com/iputils/iputils.git#commit=${_rev};
+tftp.xinetd)
+sha1sums=('SKIP'
+  'fc2ae26f5609725e3f4aeaf4ab82dfa6d2e378fd')
+
+build() {
+  cd "${srcdir}/${pkgname}"
+
+  make USE_GNUTLS=no CCOPTOPT="$CFLAGS"
+
+  cd doc
+  for file in *.sgml; do
+xf=${file/.sgml/.xml}
+osx -xlower -xno-nl-in-tag $file > $xf || true
+sed -i 

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

2016-02-25 Thread Jiachen Yang
Date: Thursday, February 25, 2016 @ 13:09:56
  Author: farseerfc
Revision: 163405

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

Added:
  powerline/repos/community-i686/PKGBUILD
(from rev 163404, powerline/trunk/PKGBUILD)
  powerline/repos/community-i686/powerline-fonts.install
(from rev 163404, powerline/trunk/powerline-fonts.install)
  powerline/repos/community-i686/powerline.install
(from rev 163404, powerline/trunk/powerline.install)
  powerline/repos/community-i686/powerline2.install
(from rev 163404, powerline/trunk/powerline2.install)
  powerline/repos/community-x86_64/PKGBUILD
(from rev 163404, powerline/trunk/PKGBUILD)
  powerline/repos/community-x86_64/powerline-fonts.install
(from rev 163404, powerline/trunk/powerline-fonts.install)
  powerline/repos/community-x86_64/powerline.install
(from rev 163404, powerline/trunk/powerline.install)
  powerline/repos/community-x86_64/powerline2.install
(from rev 163404, powerline/trunk/powerline2.install)
Deleted:
  powerline/repos/community-i686/powerline.install
  powerline/repos/community-i686/powerline2.install
  powerline/repos/community-x86_64/powerline.install
  powerline/repos/community-x86_64/powerline2.install

--+
 /powerline.install   |   14 ++
 /powerline2.install  |   12 ++
 community-i686/PKGBUILD  |  173 +
 community-i686/powerline-fonts.install   |9 +
 community-i686/powerline.install |3 
 community-i686/powerline2.install|3 
 community-x86_64/PKGBUILD|  173 +
 community-x86_64/powerline-fonts.install |9 +
 community-x86_64/powerline.install   |3 
 community-x86_64/powerline2.install  |3 
 10 files changed, 390 insertions(+), 12 deletions(-)

Copied: powerline/repos/community-i686/PKGBUILD (from rev 163404, 
powerline/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-25 12:09:56 UTC (rev 163405)
@@ -0,0 +1,173 @@
+# Maintainer: Jiachen Yang 
+# AUR Maintainer: Swift Geek
+# AUR Maintainer: Timothée Ravier 
+# AUR Maintainer: Stefan Tatschner 
+# Contributor: Swift Geek
+# Contributor: Pablo Olmos de Aguilera C. pablo+aur at odac dot co
+
+_pkgname="powerline"
+pkgbase="powerline"
+pkgname=("powerline" "powerline2" "python-powerline" "python2-powerline" 
"powerline-common" "powerline-vim" "powerline-fonts")
+pkgdesc='Statusline plugin for vim, and provides statuslines and prompts for 
several other applications, including zsh, bash, tmux, IPython, Awesome, i3 and 
Qtile'
+pkgver=2.3
+pkgrel=5
+url="https://github.com/${_pkgname}/${_pkgname};
+license=('MIT')
+arch=('x86_64' 'i686')
+makedepends=(
+'python2-setuptools'
+'python-setuptools'
+'python-sphinx'
+)
+source=("${_pkgname}-${pkgver}.tar.gz::https://github.com/${_pkgname}/${_pkgname}/archive/${pkgver}.tar.gz;)
+sha512sums=('edd7018391a567de26743caf15adfc2c4c87d458202e98c5371fd77225dbbdb8a87fd41b2c6f0bb91dbdd61d432a8a2115c3be2708f1d8a3dd309dcd478f6938')
+
+
+
+prepare() {
+cp -r ${srcdir}/${_pkgname}-${pkgver}{,-py2}
+# prepare python2 scripts
+cd ${srcdir}/${_pkgname}-${pkgver}-py2
+find scripts -type f -iname "powerline-*" -print0 | xargs -0 sed -i 
"1s/python/python2/"
+find ${_pkgname}/bindings -type f -iname "*.py" -print0 | xargs -0 sed -i 
"1s/python/python2/" 
+}
+
+build(){
+# build main pages
+cd ${srcdir}/${_pkgname}-${pkgver}/docs
+make man
+
+# build C client
+cd ${srcdir}/${_pkgname}-${pkgver}
+python setup.py build
+
+cd ${srcdir}/${_pkgname}-${pkgver}-py2
+python2 setup.py build
+}
+
+
+# FIXME Currently test will fail with dividers and other errors
+# check(){
+# cd ${srcdir}/${_pkgname}-${pkgver}
+# LC_ALL=C python setup.py test
+# cd ${srcdir}/${_pkgname}-${pkgver}-py2
+# LC_ALL=C python2 setup.py test
+# }
+
+package_powerline(){
+depends=('python-powerline')
+conflicts=('powerline2' 'python-powerline<=2.3-1')
+replaces=('python-powerline<=2.3-1')
+install="powerline.install"
+
+cd ${srcdir}/${_pkgname}-${pkgver}/scripts
+install -Dm755 powerline "${pkgdir}/usr/bin/powerline"
+install -Dm755 powerline-config "${pkgdir}/usr/bin/powerline-config"
+install -Dm755 powerline-daemon "${pkgdir}/usr/bin/powerline-daemon"
+install -Dm755 powerline-lint "${pkgdir}/usr/bin/powerline-lint"
+install -Dm755 powerline-render "${pkgdir}/usr/bin/powerline-render"
+
+# license is installed by powerline-common
+}
+
+package_powerline2(){
+depends=('python2-powerline')
+conflicts=('powerline' 'python2-powerline<=2.3-1')
+provides=('powerline')
+replaces=('python2-powerline<=2.3-1')
+ 

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

2016-02-25 Thread Jiachen Yang
Date: Thursday, February 25, 2016 @ 12:58:28
  Author: farseerfc
Revision: 163404

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

Deleted:
  powerline/repos/community-i686/PKGBUILD
  powerline/repos/community-i686/powerline-fonts.install
  powerline/repos/community-x86_64/PKGBUILD
  powerline/repos/community-x86_64/powerline-fonts.install

--+
 community-i686/PKGBUILD  |  173 -
 community-i686/powerline-fonts.install   |9 -
 community-x86_64/PKGBUILD|  173 -
 community-x86_64/powerline-fonts.install |9 -
 4 files changed, 364 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-25 11:56:52 UTC (rev 163403)
+++ community-i686/PKGBUILD 2016-02-25 11:58:28 UTC (rev 163404)
@@ -1,173 +0,0 @@
-# Maintainer: Jiachen Yang 
-# AUR Maintainer: Swift Geek
-# AUR Maintainer: Timothée Ravier 
-# AUR Maintainer: Stefan Tatschner 
-# Contributor: Swift Geek
-# Contributor: Pablo Olmos de Aguilera C. pablo+aur at odac dot co
-
-_pkgname="powerline"
-pkgbase="powerline"
-pkgname=("powerline" "powerline2" "python-powerline" "python2-powerline" 
"powerline-common" "powerline-vim" "powerline-fonts")
-pkgdesc='Statusline plugin for vim, and provides statuslines and prompts for 
several other applications, including zsh, bash, tmux, IPython, Awesome, i3 and 
Qtile'
-pkgver=2.3
-pkgrel=4
-url="https://github.com/${_pkgname}/${_pkgname};
-license=('MIT')
-arch=('x86_64' 'i686')
-makedepends=(
-'python2-setuptools'
-'python-setuptools'
-'python-sphinx'
-)
-source=("${_pkgname}-${pkgver}.tar.gz::https://github.com/${_pkgname}/${_pkgname}/archive/${pkgver}.tar.gz;)
-sha512sums=('edd7018391a567de26743caf15adfc2c4c87d458202e98c5371fd77225dbbdb8a87fd41b2c6f0bb91dbdd61d432a8a2115c3be2708f1d8a3dd309dcd478f6938')
-
-
-
-prepare() {
-cp -r ${srcdir}/${_pkgname}-${pkgver}{,-py2}
-# prepare python2 scripts
-cd ${srcdir}/${_pkgname}-${pkgver}-py2
-find scripts -type f -iname "powerline-*" -print0 | xargs -0 sed -i 
"1s/python/python2/"
-find ${_pkgname}/bindings -type f -iname "*.py" -print0 | xargs -0 sed -i 
"1s/python/python2/" 
-}
-
-build(){
-# build main pages
-cd ${srcdir}/${_pkgname}-${pkgver}/docs
-make man
-
-# build C client
-cd ${srcdir}/${_pkgname}-${pkgver}
-python setup.py build
-
-cd ${srcdir}/${_pkgname}-${pkgver}-py2
-python2 setup.py build
-}
-
-
-# FIXME Currently test will fail with dividers and other errors
-# check(){
-# cd ${srcdir}/${_pkgname}-${pkgver}
-# LC_ALL=C python setup.py test
-# cd ${srcdir}/${_pkgname}-${pkgver}-py2
-# LC_ALL=C python2 setup.py test
-# }
-
-package_powerline(){
-depends=('python-powerline')
-conflicts=('powerline2' 'python-powerline<=2.3-1')
-replaces=('python-powerline<=2.3-1')
-install="powerline.install"
-
-cd ${srcdir}/${_pkgname}-${pkgver}/scripts
-install -Dm755 powerline "${pkgdir}/usr/bin/powerline"
-install -Dm755 powerline-config "${pkgdir}/usr/bin/powerline-config"
-install -Dm755 powerline-daemon "${pkgdir}/usr/bin/powerline-daemon"
-install -Dm755 powerline-lint "${pkgdir}/usr/bin/powerline-lint"
-install -Dm755 powerline-render "${pkgdir}/usr/bin/powerline-render"
-
-# license is installed by powerline-common
-}
-
-package_powerline2(){
-depends=('python2-powerline')
-conflicts=('powerline' 'python2-powerline<=2.3-1')
-provides=('powerline')
-replaces=('python2-powerline<=2.3-1')
-install="powerline2.install"
-
-cd ${srcdir}/${_pkgname}-${pkgver}-py2/scripts
-install -Dm755 powerline{,-config,-daemon,-lint,-render} -t 
"${pkgdir}/usr/bin/"
-
-install -dm755 "${pkgdir}/usr/share/licenses/"
-ln -s "/usr/share/licenses/${_pkgname}" 
"${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-
-package_python-powerline() {
-pkgdesc='python library for powerline'
-depends=('python>=3.2' 'powerline-common')
-optdepends=('python-psutil: improved system information'
-'python-pygit2: improved git support'
-'powerline-vim: vim plugin'
-'powerline-fonts: patched fonts for powerline'
-)
-
-# install by redirect scripts and binaries
-cd ${srcdir}/${_pkgname}-${pkgver}
-python setup.py install --skip-build --root="${pkgdir}" --install-data=tmp 
--install-scripts=tmp --optimize=1
-# remove redirected scripts and binaries
-rm -rf "${pkgdir}/tmp" 
-
-install -dm755 "${pkgdir}/usr/share/licenses/"
-ln -s "/usr/share/licenses/${_pkgname}" 
"${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-package_python2-powerline() {
-pkgdesc='python2 library for powerline'
-depends=('python2>=2.6' 'powerline-common')
-

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

2016-02-25 Thread Jiachen Yang
Date: Thursday, February 25, 2016 @ 12:56:52
  Author: farseerfc
Revision: 163403

upgpkg: powerline 2.3-5

Print message on upgrade

Modified:
  powerline/trunk/PKGBUILD
  powerline/trunk/powerline.install
  powerline/trunk/powerline2.install

+
 PKGBUILD   |2 +-
 powerline.install  |4 
 powerline2.install |3 +++
 3 files changed, 8 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 10:32:14 UTC (rev 163402)
+++ PKGBUILD2016-02-25 11:56:52 UTC (rev 163403)
@@ -10,7 +10,7 @@
 pkgname=("powerline" "powerline2" "python-powerline" "python2-powerline" 
"powerline-common" "powerline-vim" "powerline-fonts")
 pkgdesc='Statusline plugin for vim, and provides statuslines and prompts for 
several other applications, including zsh, bash, tmux, IPython, Awesome, i3 and 
Qtile'
 pkgver=2.3
-pkgrel=4
+pkgrel=5
 url="https://github.com/${_pkgname}/${_pkgname};
 license=('MIT')
 arch=('x86_64' 'i686')

Modified: powerline.install
===
--- powerline.install   2016-02-25 10:32:14 UTC (rev 163402)
+++ powerline.install   2016-02-25 11:56:52 UTC (rev 163403)
@@ -1,3 +1,7 @@
 post_install() {
echo "Note: Bindings are installed in 
'/usr/lib/python3.5/site-packages/powerline/bindings/'. If you previously used 
zsh/tmux plugins from AUR, please update your config files."
 }
+
+post_upgrade() {
+   echo "Note: Bindings are installed in 
'/usr/lib/python3.5/site-packages/powerline/bindings/'. If you previously used 
zsh/tmux plugins from AUR, please update your config files."
+}

Modified: powerline2.install
===
--- powerline2.install  2016-02-25 10:32:14 UTC (rev 163402)
+++ powerline2.install  2016-02-25 11:56:52 UTC (rev 163403)
@@ -1,3 +1,6 @@
 post_install() {
echo "Note: Bindings are installed in 
'/usr/lib/python2.7/site-packages/powerline/bindings/'. If you previously used 
zsh/tmux plugins from AUR, please update your config files."
 }
+post_upgrade() {
+   echo "Note: Bindings are installed in 
'/usr/lib/python2.7/site-packages/powerline/bindings/'. If you previously used 
zsh/tmux plugins from AUR, please update your config files."
+}


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

2016-02-25 Thread Antonio Rojas
Date: Thursday, February 25, 2016 @ 12:00:09
  Author: arojas
Revision: 260248

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

Added:
  plasma-framework/repos/extra-i686/PKGBUILD
(from rev 260247, plasma-framework/trunk/PKGBUILD)
  plasma-framework/repos/extra-x86_64/PKGBUILD
(from rev 260247, plasma-framework/trunk/PKGBUILD)
Deleted:
  plasma-framework/repos/extra-i686/PKGBUILD
  plasma-framework/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-02-25 10:59:34 UTC (rev 260247)
+++ extra-i686/PKGBUILD 2016-02-25 11:00:09 UTC (rev 260248)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=plasma-framework
-pkgver=5.19.0
-pkgrel=2
-pkgdesc='Plasma library and runtime components based upon KF5 and Qt5'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/frameworks/plasma-framework'
-license=('LGPL')
-depends=('qt5-quickcontrols' 'kactivities')
-makedepends=('extra-cmake-modules' 'qt5-tools' 'kdoctools')
-groups=('kf5')
-source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz;
-   
bug359388.patch::"https://quickgit.kde.org/?p=plasma-framework.git=commitdiff=525bf2d3=plain;)
-md5sums=('dbb2096267291d4a36482575c00a3c58'
- 'e721f2e101d2dc368c714dacb73dffc4')
-
-prepare() {
-  mkdir -p build
-
-  cd $pkgname-$pkgver
-# Fix missing sni-qt tray icons http://bugs.kde.org/show_bug.cgi?id=359388
-  patch -p1 -i ../bug359388.patch
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DQML_INSTALL_DIR=lib/qt/qml \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: plasma-framework/repos/extra-i686/PKGBUILD (from rev 260247, 
plasma-framework/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-02-25 11:00:09 UTC (rev 260248)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=plasma-framework
+pkgver=5.19.0
+pkgrel=3
+pkgdesc='Plasma library and runtime components based upon KF5 and Qt5'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/plasma-framework'
+license=('LGPL')
+depends=('qt5-quickcontrols' 'kactivities')
+makedepends=('extra-cmake-modules' 'qt5-tools' 'kdoctools')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz;
+   
bug359388.patch::"https://quickgit.kde.org/?p=plasma-framework.git=commitdiff=525bf2d3=plain;
+   
bug357895.patch::"https://quickgit.kde.org/?p=plasma-framework.git=commitdiff=1e196fdf=plain;)
+md5sums=('dbb2096267291d4a36482575c00a3c58'
+ 'e721f2e101d2dc368c714dacb73dffc4'
+ '100d14e455603711aae0ec42eb3cd729')
+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+# Fix missing sni-qt tray icons http://bugs.kde.org/show_bug.cgi?id=359388
+  patch -p1 -i ../bug359388.patch
+# Fix Plasma taskbar crash http://bugs.kde.org/show_bug.cgi?id=357895
+  patch -p1 -i ../bug357895.patch
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DQML_INSTALL_DIR=lib/qt/qml \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-02-25 10:59:34 UTC (rev 260247)
+++ extra-x86_64/PKGBUILD   2016-02-25 11:00:09 UTC (rev 260248)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=plasma-framework
-pkgver=5.19.0
-pkgrel=2
-pkgdesc='Plasma library and runtime components based upon KF5 and Qt5'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/frameworks/plasma-framework'
-license=('LGPL')
-depends=('qt5-quickcontrols' 'kactivities')
-makedepends=('extra-cmake-modules' 'qt5-tools' 'kdoctools')
-groups=('kf5')
-source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz;
-   
bug359388.patch::"https://quickgit.kde.org/?p=plasma-framework.git=commitdiff=525bf2d3=plain;)

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

2016-02-25 Thread Antonio Rojas
Date: Thursday, February 25, 2016 @ 11:59:34
  Author: arojas
Revision: 260247

Fix Plasma taskbar crash (KDEBUG#357895)

Modified:
  plasma-framework/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 08:50:06 UTC (rev 260246)
+++ PKGBUILD2016-02-25 10:59:34 UTC (rev 260247)
@@ -4,7 +4,7 @@
 
 pkgname=plasma-framework
 pkgver=5.19.0
-pkgrel=2
+pkgrel=3
 pkgdesc='Plasma library and runtime components based upon KF5 and Qt5'
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/frameworks/plasma-framework'
@@ -13,9 +13,11 @@
 makedepends=('extra-cmake-modules' 'qt5-tools' 'kdoctools')
 groups=('kf5')
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz;
-   
bug359388.patch::"https://quickgit.kde.org/?p=plasma-framework.git=commitdiff=525bf2d3=plain;)
+   
bug359388.patch::"https://quickgit.kde.org/?p=plasma-framework.git=commitdiff=525bf2d3=plain;
+   
bug357895.patch::"https://quickgit.kde.org/?p=plasma-framework.git=commitdiff=1e196fdf=plain;)
 md5sums=('dbb2096267291d4a36482575c00a3c58'
- 'e721f2e101d2dc368c714dacb73dffc4')
+ 'e721f2e101d2dc368c714dacb73dffc4'
+ '100d14e455603711aae0ec42eb3cd729')
 
 prepare() {
   mkdir -p build
@@ -23,6 +25,8 @@
   cd $pkgname-$pkgver
 # Fix missing sni-qt tray icons http://bugs.kde.org/show_bug.cgi?id=359388
   patch -p1 -i ../bug359388.patch
+# Fix Plasma taskbar crash http://bugs.kde.org/show_bug.cgi?id=357895
+  patch -p1 -i ../bug357895.patch
 }
 
 build() {


[arch-commits] Commit in python-google-api-python-client/repos/community-any (2 files)

2016-02-25 Thread Andrzej Giniewicz
Date: Thursday, February 25, 2016 @ 11:32:14
  Author: aginiewicz
Revision: 163402

archrelease: copy trunk to community-any

Added:
  python-google-api-python-client/repos/community-any/PKGBUILD
(from rev 163401, python-google-api-python-client/trunk/PKGBUILD)
Deleted:
  python-google-api-python-client/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-25 10:32:10 UTC (rev 163401)
+++ PKGBUILD2016-02-25 10:32:14 UTC (rev 163402)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz 
-# Contributor: shadyabhi 
-
-pkgbase=python-google-api-python-client
-pkgname=('python2-google-api-python-client' 'python-google-api-python-client')
-pkgver=1.4.2
-pkgrel=2
-pkgdesc="Google API Client Library for Python"
-arch=('any')
-url="https://github.com/google/google-api-python-client;
-license=('Apache')
-makedepends=('python2-setuptools' 'python-setuptools' 'python2-httplib2'
- 'python2-oauth2client' 'python2-uritemplate' 'python2-six'
- 'python-httplib2' 'python-oauth2client' 'python-uritemplate'
- 'python-six')
-source=("https://pypi.python.org/packages/source/g/google-api-python-client/google-api-python-client-${pkgver}.tar.gz;)
-md5sums=('7033985a645e39d3ccf1b2971ab7b6b8')
-
-prepare() {
-  cd "$srcdir"
-  cp -a google-api-python-client-${pkgver} 
google-api-python-client-py2-${pkgver}
-  cd google-api-python-client-py2-${pkgver}
-
-  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
-  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
-  -i $(find . -name '*.py')
-}
-
-build() {
-  cd "$srcdir/google-api-python-client-$pkgver"
-
-  msg "Building Python2"
-  cd "$srcdir"/google-api-python-client-py2-${pkgver}
-  python2 setup.py build
-
-  msg "Building Python3"
-  cd "$srcdir"/google-api-python-client-${pkgver}
-  python setup.py build
-}
- 
-package_python2-google-api-python-client() {
-  depends=('python2-httplib2' 'python2-oauth2client' 'python2-uritemplate' 
'python2-six')
-  cd "$srcdir/google-api-python-client-py2-$pkgver"
- 
-  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  # Workaround for FS#47243
-  _site_packages=`python2 -c "from distutils.sysconfig import get_python_lib; 
print(get_python_lib())"`
-  chmod -R a+r "$pkgdir$_site_packages"
-}
-
-package_python-google-api-python-client() {
-  depends=('python-httplib2' 'python-oauth2client' 'python-uritemplate' 
'python-six')
-  cd "$srcdir/google-api-python-client-$pkgver"
- 
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  # Workaround for FS#47243
-  _site_packages=`python -c "from distutils.sysconfig import get_python_lib; 
print(get_python_lib())"`
-  chmod -R a+r "$pkgdir$_site_packages"
-}
-

Copied: python-google-api-python-client/repos/community-any/PKGBUILD (from rev 
163401, python-google-api-python-client/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-25 10:32:14 UTC (rev 163402)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz 
+# Contributor: shadyabhi 
+
+pkgbase=python-google-api-python-client
+pkgname=('python2-google-api-python-client' 'python-google-api-python-client')
+pkgver=1.5.0
+pkgrel=1
+pkgdesc="Google API Client Library for Python"
+arch=('any')
+url="https://github.com/google/google-api-python-client;
+license=('Apache')
+makedepends=('python2-setuptools' 'python-setuptools' 'python2-httplib2'
+ 'python2-oauth2client' 'python2-uritemplate' 'python2-six'
+ 'python-httplib2' 'python-oauth2client' 'python-uritemplate'
+ 'python-six')
+source=("https://pypi.python.org/packages/source/g/google-api-python-client/google-api-python-client-${pkgver}.tar.gz;)
+md5sums=('81a050b8f61c1295fafcded9dd542bef')
+
+prepare() {
+  cd "$srcdir"
+  cp -a google-api-python-client-${pkgver} 
google-api-python-client-py2-${pkgver}
+  cd google-api-python-client-py2-${pkgver}
+
+  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
+  -i $(find . -name '*.py')
+}
+
+build() {
+  cd "$srcdir/google-api-python-client-$pkgver"
+
+  msg "Building Python2"
+  cd "$srcdir"/google-api-python-client-py2-${pkgver}
+  python2 setup.py build
+
+  msg "Building Python3"
+  cd "$srcdir"/google-api-python-client-${pkgver}
+  python setup.py build
+}
+ 
+package_python2-google-api-python-client() {
+  depends=('python2-httplib2' 'python2-oauth2client' 'python2-uritemplate' 

[arch-commits] Commit in python-google-api-python-client/trunk (PKGBUILD)

2016-02-25 Thread Andrzej Giniewicz
Date: Thursday, February 25, 2016 @ 11:32:10
  Author: aginiewicz
Revision: 163401

upgpkg: python-google-api-python-client 1.5.0-1

python-google-api-python-client: new upstream release

Modified:
  python-google-api-python-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 10:30:12 UTC (rev 163400)
+++ PKGBUILD2016-02-25 10:32:10 UTC (rev 163401)
@@ -4,8 +4,8 @@
 
 pkgbase=python-google-api-python-client
 pkgname=('python2-google-api-python-client' 'python-google-api-python-client')
-pkgver=1.4.2
-pkgrel=2
+pkgver=1.5.0
+pkgrel=1
 pkgdesc="Google API Client Library for Python"
 arch=('any')
 url="https://github.com/google/google-api-python-client;
@@ -15,7 +15,7 @@
  'python-httplib2' 'python-oauth2client' 'python-uritemplate'
  'python-six')
 
source=("https://pypi.python.org/packages/source/g/google-api-python-client/google-api-python-client-${pkgver}.tar.gz;)
-md5sums=('7033985a645e39d3ccf1b2971ab7b6b8')
+md5sums=('81a050b8f61c1295fafcded9dd542bef')
 
 prepare() {
   cd "$srcdir"


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

2016-02-25 Thread Andrzej Giniewicz
Date: Thursday, February 25, 2016 @ 11:30:12
  Author: aginiewicz
Revision: 163400

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-25 10:30:05 UTC (rev 163399)
+++ PKGBUILD2016-02-25 10:30:12 UTC (rev 163400)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz 
-# Contributor: Atlanis 
-
-pkgbase=python-oauth2client
-pkgname=('python2-oauth2client' 'python-oauth2client')
-pkgver=1.5.2
-pkgrel=1
-pkgdesc="A client library for OAuth 2.0"
-arch=('any')
-url="https://github.com/google/oauth2client;
-license=('Apache')
-makedepends=('python2-setuptools' 'python-setuptools' 'python-httplib2'
- 'python-pyasn1' 'python-pyasn1-modules' 'python-rsa'
- 'python-six' 'python2-httplib2' 'python2-pyasn1'
- 'python2-pyasn1-modules' 'python2-rsa' 'python2-six')
-source=("https://pypi.python.org/packages/source/o/oauth2client/oauth2client-${pkgver}.tar.gz;)
-md5sums=('842ab2fba8bce5b36d31f630ed80f17d')
-
-prepare() {
-  cd "$srcdir"
-
-  cp -a oauth2client-${pkgver} oauth2client-py2-${pkgver}
-  cd oauth2client-py2-${pkgver}
-
-  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
-  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
-  -i $(find . -name '*.py')
-}
-
-build() {
-  msg "Building Python2"
-  cd "$srcdir"/oauth2client-py2-${pkgver}
-  python2 setup.py build
-
-  msg "Building Python3"
-  cd "$srcdir"/oauth2client-${pkgver}
-  python setup.py build
-}
-
-package_python2-oauth2client() {
-  depends=('python2-httplib2' 'python2-pyasn1' 'python2-pyasn1-modules' 
'python2-rsa' 'python2-six')
-  optdepends=('python2-gflags: for oauth2client.tools.run function')
-
-  cd "$srcdir"/oauth2client-py2-${pkgver}
-
-  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
-}
-
-package_python-oauth2client() {
-  depends=('python-httplib2' 'python-pyasn1' 'python-pyasn1-modules' 
'python-rsa' 'python-six')
-
-  cd "$srcdir"/oauth2client-${pkgver}
-
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-}
-

Copied: python-oauth2client/repos/community-any/PKGBUILD (from rev 163399, 
python-oauth2client/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-25 10:30:12 UTC (rev 163400)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz 
+# Contributor: Atlanis 
+
+pkgbase=python-oauth2client
+pkgname=('python2-oauth2client' 'python-oauth2client')
+pkgver=2.0.0.post1
+pkgrel=1
+pkgdesc="A client library for OAuth 2.0"
+arch=('any')
+url="https://github.com/google/oauth2client;
+license=('Apache')
+makedepends=('python2-setuptools' 'python-setuptools' 'python-httplib2'
+ 'python-pyasn1' 'python-pyasn1-modules' 'python-rsa'
+ 'python-six' 'python2-httplib2' 'python2-pyasn1'
+ 'python2-pyasn1-modules' 'python2-rsa' 'python2-six')
+source=("https://pypi.python.org/packages/source/o/oauth2client/oauth2client-${pkgver}.tar.gz;)
+md5sums=('6309e12fe2bc0f038708e2c9ec4b1f69')
+
+prepare() {
+  cd "$srcdir"
+
+  cp -a oauth2client-${pkgver} oauth2client-py2-${pkgver}
+  cd oauth2client-py2-${pkgver}
+
+  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
+  -i $(find . -name '*.py')
+}
+
+build() {
+  msg "Building Python2"
+  cd "$srcdir"/oauth2client-py2-${pkgver}
+  python2 setup.py build
+
+  msg "Building Python3"
+  cd "$srcdir"/oauth2client-${pkgver}
+  python setup.py build
+}
+
+package_python2-oauth2client() {
+  depends=('python2-httplib2' 'python2-pyasn1' 'python2-pyasn1-modules' 
'python2-rsa' 'python2-six')
+  optdepends=('python2-gflags: for oauth2client.tools.run function')
+
+  cd "$srcdir"/oauth2client-py2-${pkgver}
+
+  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
+}
+
+package_python-oauth2client() {
+  depends=('python-httplib2' 'python-pyasn1' 'python-pyasn1-modules' 
'python-rsa' 'python-six')
+
+  cd "$srcdir"/oauth2client-${pkgver}
+
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+}
+


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

2016-02-25 Thread Andrzej Giniewicz
Date: Thursday, February 25, 2016 @ 11:30:05
  Author: aginiewicz
Revision: 163399

upgpkg: python-oauth2client 2.0.0.post1-1

python-oauth2client: new upstream release

Modified:
  python-oauth2client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 10:17:36 UTC (rev 163398)
+++ PKGBUILD2016-02-25 10:30:05 UTC (rev 163399)
@@ -4,7 +4,7 @@
 
 pkgbase=python-oauth2client
 pkgname=('python2-oauth2client' 'python-oauth2client')
-pkgver=1.5.2
+pkgver=2.0.0.post1
 pkgrel=1
 pkgdesc="A client library for OAuth 2.0"
 arch=('any')
@@ -15,7 +15,7 @@
  'python-six' 'python2-httplib2' 'python2-pyasn1'
  'python2-pyasn1-modules' 'python2-rsa' 'python2-six')
 
source=("https://pypi.python.org/packages/source/o/oauth2client/oauth2client-${pkgver}.tar.gz;)
-md5sums=('842ab2fba8bce5b36d31f630ed80f17d')
+md5sums=('6309e12fe2bc0f038708e2c9ec4b1f69')
 
 prepare() {
   cd "$srcdir"


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

2016-02-25 Thread Andrzej Giniewicz
Date: Thursday, February 25, 2016 @ 11:17:27
  Author: aginiewicz
Revision: 163397

upgpkg: blosc 1.7.1-1

blosc: new upstream release

Modified:
  blosc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 10:12:17 UTC (rev 163396)
+++ PKGBUILD2016-02-25 10:17:27 UTC (rev 163397)
@@ -2,7 +2,7 @@
 # Maintainer: Andrzej Giniewicz 
 
 pkgname=blosc
-pkgver=1.7.0
+pkgver=1.7.1
 pkgrel=1
 pkgdesc='A blocking, shuffling and loss-less compression library.'
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 makedepends=('cmake')
 options=(staticlibs)
 source=("https://github.com/Blosc/c-blosc/archive/v${pkgver}.tar.gz;)
-md5sums=('61256ab823b213a62d421512762e2a27')
+md5sums=('c8d4d2cc64ca2fd1d581ca7c25e0d4be')
 
 build() {
   cd "${srcdir}"


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

2016-02-25 Thread Andrzej Giniewicz
Date: Thursday, February 25, 2016 @ 11:17:36
  Author: aginiewicz
Revision: 163398

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-25 10:17:27 UTC (rev 163397)
+++ community-i686/PKGBUILD 2016-02-25 10:17:36 UTC (rev 163398)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz 
-
-pkgname=blosc
-pkgver=1.7.0
-pkgrel=1
-pkgdesc='A blocking, shuffling and loss-less compression library.'
-arch=('i686' 'x86_64')
-url='http://blosc.org/'
-license=('MIT')
-depends=('lz4' 'snappy' 'zlib')
-makedepends=('cmake')
-options=(staticlibs)
-source=("https://github.com/Blosc/c-blosc/archive/v${pkgver}.tar.gz;)
-md5sums=('61256ab823b213a62d421512762e2a27')
-
-build() {
-  cd "${srcdir}"
-  rm -rf build
-  mkdir build
-  cd build
-
-  cmake -DCMAKE_INSTALL_PREFIX="/usr" \
--DPREFER_EXTERNAL_LZ4="ON" \
--DBUILD_TESTS="OFF" \
-../c-blosc-${pkgver}
-
-  make
-}
-
-package() {
-  cd "${srcdir}/build"
-
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 "$srcdir"/c-blosc-${pkgver}/LICENSES/BLOSC.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENCE
-}

Copied: blosc/repos/community-i686/PKGBUILD (from rev 163397, 
blosc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-25 10:17:36 UTC (rev 163398)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz 
+
+pkgname=blosc
+pkgver=1.7.1
+pkgrel=1
+pkgdesc='A blocking, shuffling and loss-less compression library.'
+arch=('i686' 'x86_64')
+url='http://blosc.org/'
+license=('MIT')
+depends=('lz4' 'snappy' 'zlib')
+makedepends=('cmake')
+options=(staticlibs)
+source=("https://github.com/Blosc/c-blosc/archive/v${pkgver}.tar.gz;)
+md5sums=('c8d4d2cc64ca2fd1d581ca7c25e0d4be')
+
+build() {
+  cd "${srcdir}"
+  rm -rf build
+  mkdir build
+  cd build
+
+  cmake -DCMAKE_INSTALL_PREFIX="/usr" \
+-DPREFER_EXTERNAL_LZ4="ON" \
+-DBUILD_TESTS="OFF" \
+../c-blosc-${pkgver}
+
+  make
+}
+
+package() {
+  cd "${srcdir}/build"
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 "$srcdir"/c-blosc-${pkgver}/LICENSES/BLOSC.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENCE
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-25 10:17:27 UTC (rev 163397)
+++ community-x86_64/PKGBUILD   2016-02-25 10:17:36 UTC (rev 163398)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz 
-
-pkgname=blosc
-pkgver=1.7.0
-pkgrel=1
-pkgdesc='A blocking, shuffling and loss-less compression library.'
-arch=('i686' 'x86_64')
-url='http://blosc.org/'
-license=('MIT')
-depends=('lz4' 'snappy' 'zlib')
-makedepends=('cmake')
-options=(staticlibs)
-source=("https://github.com/Blosc/c-blosc/archive/v${pkgver}.tar.gz;)
-md5sums=('61256ab823b213a62d421512762e2a27')
-
-build() {
-  cd "${srcdir}"
-  rm -rf build
-  mkdir build
-  cd build
-
-  cmake -DCMAKE_INSTALL_PREFIX="/usr" \
--DPREFER_EXTERNAL_LZ4="ON" \
--DBUILD_TESTS="OFF" \
-../c-blosc-${pkgver}
-
-  make
-}
-
-package() {
-  cd "${srcdir}/build"
-
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 "$srcdir"/c-blosc-${pkgver}/LICENSES/BLOSC.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENCE
-}

Copied: blosc/repos/community-x86_64/PKGBUILD (from rev 163397, 
blosc/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-25 10:17:36 UTC (rev 163398)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz 
+
+pkgname=blosc
+pkgver=1.7.1
+pkgrel=1
+pkgdesc='A blocking, shuffling and loss-less compression library.'
+arch=('i686' 'x86_64')
+url='http://blosc.org/'
+license=('MIT')
+depends=('lz4' 'snappy' 'zlib')
+makedepends=('cmake')
+options=(staticlibs)
+source=("https://github.com/Blosc/c-blosc/archive/v${pkgver}.tar.gz;)
+md5sums=('c8d4d2cc64ca2fd1d581ca7c25e0d4be')
+
+build() {
+  cd "${srcdir}"
+  rm -rf build
+  mkdir build
+  cd build
+
+  cmake -DCMAKE_INSTALL_PREFIX="/usr" \
+-DPREFER_EXTERNAL_LZ4="ON" \
+-DBUILD_TESTS="OFF" \
+

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

2016-02-25 Thread Andrzej Giniewicz
Date: Thursday, February 25, 2016 @ 11:12:07
  Author: aginiewicz
Revision: 163395

upgpkg: python-scikit-learn 0.17.1-1

python-scikit-learn: new upstream release

Modified:
  python-scikit-learn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 10:11:33 UTC (rev 163394)
+++ PKGBUILD2016-02-25 10:12:07 UTC (rev 163395)
@@ -3,8 +3,8 @@
 
 pkgbase=python-scikit-learn
 pkgname=('python2-scikit-learn' 'python-scikit-learn')
-pkgver=0.17
-pkgrel=2
+pkgver=0.17.1
+pkgrel=1
 pkgdesc="A set of python modules for machine learning and data mining"
 arch=('i686' 'x86_64')
 url="http://scikit-learn.sourceforge.net/;
@@ -14,7 +14,7 @@
 
 
source=("https://pypi.python.org/packages/source/s/scikit-learn/scikit-learn-${pkgver}.tar.gz;
 "LICENSE")
-md5sums=('4b5cebc8c92cfe33749ae8ab3b2149b7'
+md5sums=('a2f8b877e6d99b1ed737144f5a478dfc'
  '327083d2576cc0aad1b8f10b2bcd2974')
 
 prepare() {


[arch-commits] Commit in python-scikit-learn/repos (8 files)

2016-02-25 Thread Andrzej Giniewicz
Date: Thursday, February 25, 2016 @ 11:12:17
  Author: aginiewicz
Revision: 163396

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

Added:
  python-scikit-learn/repos/community-i686/LICENSE
(from rev 163395, python-scikit-learn/trunk/LICENSE)
  python-scikit-learn/repos/community-i686/PKGBUILD
(from rev 163395, python-scikit-learn/trunk/PKGBUILD)
  python-scikit-learn/repos/community-x86_64/LICENSE
(from rev 163395, python-scikit-learn/trunk/LICENSE)
  python-scikit-learn/repos/community-x86_64/PKGBUILD
(from rev 163395, python-scikit-learn/trunk/PKGBUILD)
Deleted:
  python-scikit-learn/repos/community-i686/LICENSE
  python-scikit-learn/repos/community-i686/PKGBUILD
  python-scikit-learn/repos/community-x86_64/LICENSE
  python-scikit-learn/repos/community-x86_64/PKGBUILD

---+
 /LICENSE  |   48 ++
 /PKGBUILD |  116 
 community-i686/LICENSE|   24 -
 community-i686/PKGBUILD   |   58 --
 community-x86_64/LICENSE  |   24 -
 community-x86_64/PKGBUILD |   58 --
 6 files changed, 164 insertions(+), 164 deletions(-)

Deleted: community-i686/LICENSE
===
--- community-i686/LICENSE  2016-02-25 10:12:07 UTC (rev 163395)
+++ community-i686/LICENSE  2016-02-25 10:12:17 UTC (rev 163396)
@@ -1,24 +0,0 @@
-Copyright (c) 2010–2011, scikit-learn developers
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-* Redistributions of source code must retain the above copyright
-  notice, this list of conditions and the following disclaimer.
-* Redistributions in binary form must reproduce the above copyright
-  notice, this list of conditions and the following disclaimer in the
-  documentation and/or other materials provided with the distribution.
-* Neither the name of the  nor the
-  names of its contributors may be used to endorse or promote products
-  derived from this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
-ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-DISCLAIMED. IN NO EVENT SHALL  BE LIABLE FOR ANY
-DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Copied: python-scikit-learn/repos/community-i686/LICENSE (from rev 163395, 
python-scikit-learn/trunk/LICENSE)
===
--- community-i686/LICENSE  (rev 0)
+++ community-i686/LICENSE  2016-02-25 10:12:17 UTC (rev 163396)
@@ -0,0 +1,24 @@
+Copyright (c) 2010–2011, scikit-learn developers
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+* Redistributions of source code must retain the above copyright
+  notice, this list of conditions and the following disclaimer.
+* Redistributions in binary form must reproduce the above copyright
+  notice, this list of conditions and the following disclaimer in the
+  documentation and/or other materials provided with the distribution.
+* Neither the name of the  nor the
+  names of its contributors may be used to endorse or promote products
+  derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL  BE LIABLE FOR ANY
+DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-25 10:12:07 UTC (rev 

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

2016-02-25 Thread Sébastien Luttringer
Date: Thursday, February 25, 2016 @ 11:11:33
  Author: seblu
Revision: 163394

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

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

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

2016-02-25 Thread Sébastien Luttringer
Date: Thursday, February 25, 2016 @ 11:09:04
  Author: seblu
Revision: 163393

upgpkg: virtualbox 5.0.14-2

- Drop binary modules packages, use dkms and alpm hooks to build kernel modules.

Modified:
  virtualbox/trunk/PKGBUILD
  virtualbox/trunk/vboxreload
Deleted:
  virtualbox/trunk/virtualbox-guest-dkms.install
  virtualbox/trunk/virtualbox-host-dkms.install

---+
 PKGBUILD  |   23 ---
 vboxreload|7 +--
 virtualbox-guest-dkms.install |   30 --
 virtualbox-host-dkms.install  |   34 --
 4 files changed, 9 insertions(+), 85 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 10:06:15 UTC (rev 163392)
+++ PKGBUILD2016-02-25 10:09:04 UTC (rev 163393)
@@ -11,7 +11,7 @@
  'virtualbox-guest-utils-nox'
  'virtualbox-ext-vnc')
 pkgver=5.0.14
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://virtualbox.org'
 license=('GPL' 'custom')
@@ -75,7 +75,7 @@
  '8ba9179c4a3516904417d773816dd992'
  'fcf6bcef98b16849d5c9f048592739c0'
  'bc9efed88e0469cd7fc460d5a5cd7b4b'
- '44a8e105517a1e04769b50469a87bdcb'
+ 'fd3d988c83d33add042544fa9a281923'
  '9be7e2703afeee1fca9368bd8750e710'
  '9e49bbaa2192b141c27ee43cef8cbab7'
  'ecfd13297d7753ebe7b8763ca5b792d9'
@@ -131,13 +131,12 @@
 depends=('glibc' 'openssl' 'curl' 'gcc-libs' 'libpng' 'python2' 'sdl'
  'libvpx' 'libxml2' 'procps-ng' 'shared-mime-info' 'zlib'
  'libxcursor' 'libxinerama' 'libx11' 'libxext' 'libxmu' 'libxt'
- 'virtualbox-host-modules')
+ 'virtualbox-host-dkms')
 optdepends=('qt4: GUI support'
 'vde2: Virtual Distributed Ethernet support'
 'virtualbox-guest-iso: Guest Additions CD image'
 'virtualbox-ext-vnc: VNC server support'
 'virtualbox-sdk: Developer kit'
-'virtualbox-host-dkms: Build kernel modules with DKMS'
 'net-tools: Host-only or bridged networking support')
 backup=('etc/vbox/vbox.cfg')
 replaces=('virtualbox-ose')
@@ -239,7 +238,7 @@
 VBOX_INSTALL_PATH="/usr/lib/virtualbox" python2 vboxapisetup.py install 
--root "$pkgdir"
 popd
 rm -rf sdk/installer
-mv sdk "$pkgdir/usr/lib/virtualbox"
+cp -r sdk "$pkgdir/usr/lib/virtualbox"
 # licence
 install -Dm644 "$srcdir/VirtualBox-$pkgver/COPYING" \
 "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
@@ -248,17 +247,15 @@
 package_virtualbox-host-dkms() {
 pkgdesc='VirtualBox Host kernel modules sources'
 depends=('dkms' 'gcc' 'make')
-provides=('virtualbox-host-modules')
 replaces=('virtualbox-source' 'virtualbox-host-source')
 conflicts=('virtualbox-source' 'virtualbox-host-source')
 optdepends=('linux-headers'
 'linux-lts-headers')
-install=virtualbox-host-dkms.install
 
 install -dm755 "$pkgdir/usr/src"
 source "VirtualBox-$pkgver/env.sh"
 cd "VirtualBox-$pkgver/out/linux.$BUILD_PLATFORM_ARCH/release/bin"
-cp -r src "$pkgdir/usr/src/vboxhost-$pkgver"
+cp -r src "$pkgdir/usr/src/vboxhost-${pkgver}_OSE"
 # licence
 install -Dm644 "$srcdir/VirtualBox-$pkgver/COPYING" \
 "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
@@ -267,17 +264,15 @@
 package_virtualbox-guest-dkms() {
 pkgdesc='VirtualBox Guest kernel modules sources'
 depends=('dkms' 'gcc' 'make')
-provides=('virtualbox-guest-modules')
 replaces=('virtualbox-archlinux-source' 'virtualbox-guest-source')
 conflicts=('virtualbox-archlinux-source' 'virtualbox-guest-source')
 optdepends=('linux-headers'
 'linux-lts-headers')
-install=virtualbox-guest-dkms.install
 
 install -dm755 "$pkgdir/usr/src"
 source "VirtualBox-$pkgver/env.sh"
 cd 
"VirtualBox-$pkgver/out/linux.$BUILD_PLATFORM_ARCH/release/bin/additions"
-cp -r src "$pkgdir/usr/src/vboxguest-$pkgver"
+cp -r src "$pkgdir/usr/src/vboxguest-${pkgver}_OSE"
 # licence
 install -Dm644 "$srcdir/VirtualBox-$pkgver/COPYING" \
 "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
@@ -285,10 +280,9 @@
 
 package_virtualbox-guest-utils() {
 pkgdesc='VirtualBox Guest userspace utilities'
-depends=('virtualbox-guest-modules' 'glibc' 'pam' 'libx11' 'libxcomposite'
+depends=('virtualbox-guest-dkms' 'glibc' 'pam' 'libx11' 'libxcomposite'
  'libxdamage' 'libxext' 'libxfixes' 'libxmu' 'libxt' 'xorg-xrandr'
  'X-ABI-VIDEODRV_VERSION=20')
-optdepends=('virtualbox-guest-dkms: Guest kernel source modules for 
non-stock kernels')
 replaces=('virtualbox-archlinux-additions' 'virtualbox-guest-additions')
 conflicts=('virtualbox-archlinux-additions' 'virtualbox-guest-additions' 
'virtualbox-guest-utils-nox')
 

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

2016-02-25 Thread Andrzej Giniewicz
Date: Thursday, February 25, 2016 @ 11:06:04
  Author: aginiewicz
Revision: 163391

upgpkg: python-numexpr 2.5-1

python-numexpr: new upstream release

Modified:
  python-numexpr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 09:08:08 UTC (rev 163390)
+++ PKGBUILD2016-02-25 10:06:04 UTC (rev 163391)
@@ -4,8 +4,8 @@
 
 pkgbase=python-numexpr
 pkgname=('python2-numexpr' 'python-numexpr')
-pkgver=2.4.6
-pkgrel=2
+pkgver=2.5
+pkgrel=1
 pkgdesc="Fast numerical array expression evaluator for Python, NumPy, 
PyTables, pandas"
 url="https://github.com/pydata/numexpr;
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 license=('MIT')
 makedepends=('python2-setuptools' 'python-setuptools' 'python-numpy' 
'python2-numpy')
 
source=($pkgbase-$pkgver.tar.gz::https://github.com/pydata/numexpr/archive/v$pkgver.tar.gz)
-md5sums=('71a0d2cdfcc7b7c90e6ea47c282b5c9b')
+md5sums=('ea88fe8d62c8ddb13a137b233db05cb7')
 
 prepare() {
   cd "$srcdir"


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

2016-02-25 Thread Andrzej Giniewicz
Date: Thursday, February 25, 2016 @ 11:06:15
  Author: aginiewicz
Revision: 163392

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-25 10:06:04 UTC (rev 163391)
+++ community-i686/PKGBUILD 2016-02-25 10:06:15 UTC (rev 163392)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz 
-# Contributor: Sebastien Binet 
-
-pkgbase=python-numexpr
-pkgname=('python2-numexpr' 'python-numexpr')
-pkgver=2.4.6
-pkgrel=2
-pkgdesc="Fast numerical array expression evaluator for Python, NumPy, 
PyTables, pandas"
-url="https://github.com/pydata/numexpr;
-arch=('i686' 'x86_64')
-license=('MIT')
-makedepends=('python2-setuptools' 'python-setuptools' 'python-numpy' 
'python2-numpy')
-source=($pkgbase-$pkgver.tar.gz::https://github.com/pydata/numexpr/archive/v$pkgver.tar.gz)
-md5sums=('71a0d2cdfcc7b7c90e6ea47c282b5c9b')
-
-prepare() {
-  cd "$srcdir"
-  cp -a numexpr-$pkgver numexpr-py2-$pkgver
-  cd numexpr-py2-$pkgver
-
-  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
-  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
-  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
-  -i $(find . -name '*.py')
-}
-
-build() {
-  msg "Building Python2"
-  cd "$srcdir"/numexpr-py2-$pkgver
-  python2 setup.py build
-
-  msg "Building Python3"
-  cd "$srcdir"/numexpr-$pkgver
-  python setup.py build
-}
-
-package_python2-numexpr() {
-  depends=('python2-numpy')
-
-  cd "$srcdir"/numexpr-py2-$pkgver
-
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python-numexpr() {
-  depends=('python-numpy')
-
-  cd "$srcdir"/numexpr-$pkgver
-
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: python-numexpr/repos/community-i686/PKGBUILD (from rev 163391, 
python-numexpr/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-25 10:06:15 UTC (rev 163392)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz 
+# Contributor: Sebastien Binet 
+
+pkgbase=python-numexpr
+pkgname=('python2-numexpr' 'python-numexpr')
+pkgver=2.5
+pkgrel=1
+pkgdesc="Fast numerical array expression evaluator for Python, NumPy, 
PyTables, pandas"
+url="https://github.com/pydata/numexpr;
+arch=('i686' 'x86_64')
+license=('MIT')
+makedepends=('python2-setuptools' 'python-setuptools' 'python-numpy' 
'python2-numpy')
+source=($pkgbase-$pkgver.tar.gz::https://github.com/pydata/numexpr/archive/v$pkgver.tar.gz)
+md5sums=('ea88fe8d62c8ddb13a137b233db05cb7')
+
+prepare() {
+  cd "$srcdir"
+  cp -a numexpr-$pkgver numexpr-py2-$pkgver
+  cd numexpr-py2-$pkgver
+
+  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
+  -i $(find . -name '*.py')
+}
+
+build() {
+  msg "Building Python2"
+  cd "$srcdir"/numexpr-py2-$pkgver
+  python2 setup.py build
+
+  msg "Building Python3"
+  cd "$srcdir"/numexpr-$pkgver
+  python setup.py build
+}
+
+package_python2-numexpr() {
+  depends=('python2-numpy')
+
+  cd "$srcdir"/numexpr-py2-$pkgver
+
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python-numexpr() {
+  depends=('python-numpy')
+
+  cd "$srcdir"/numexpr-$pkgver
+
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-25 10:06:04 UTC (rev 163391)
+++ community-x86_64/PKGBUILD   2016-02-25 10:06:15 UTC (rev 163392)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz 
-# Contributor: Sebastien Binet 
-
-pkgbase=python-numexpr
-pkgname=('python2-numexpr' 'python-numexpr')

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

2016-02-25 Thread Jiachen Yang
Date: Thursday, February 25, 2016 @ 10:08:08
  Author: farseerfc
Revision: 163390

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

Added:
  powerline/repos/community-i686/PKGBUILD
(from rev 163389, powerline/trunk/PKGBUILD)
  powerline/repos/community-i686/powerline-fonts.install
(from rev 163389, powerline/trunk/powerline-fonts.install)
  powerline/repos/community-i686/powerline.install
(from rev 163389, powerline/trunk/powerline.install)
  powerline/repos/community-i686/powerline2.install
(from rev 163389, powerline/trunk/powerline2.install)
  powerline/repos/community-x86_64/PKGBUILD
(from rev 163389, powerline/trunk/PKGBUILD)
  powerline/repos/community-x86_64/powerline-fonts.install
(from rev 163389, powerline/trunk/powerline-fonts.install)
  powerline/repos/community-x86_64/powerline.install
(from rev 163389, powerline/trunk/powerline.install)
  powerline/repos/community-x86_64/powerline2.install
(from rev 163389, powerline/trunk/powerline2.install)
Deleted:
  powerline/repos/community-i686/PKGBUILD
  powerline/repos/community-i686/powerline-fonts.install
  powerline/repos/community-x86_64/PKGBUILD
  powerline/repos/community-x86_64/powerline-fonts.install

--+
 /PKGBUILD|  346 +
 /powerline-fonts.install |   18 +
 community-i686/PKGBUILD  |  171 --
 community-i686/powerline-fonts.install   |9 
 community-i686/powerline.install |3 
 community-i686/powerline2.install|3 
 community-x86_64/PKGBUILD|  171 --
 community-x86_64/powerline-fonts.install |9 
 community-x86_64/powerline.install   |3 
 community-x86_64/powerline2.install  |3 
 10 files changed, 376 insertions(+), 360 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-25 09:06:39 UTC (rev 163389)
+++ community-i686/PKGBUILD 2016-02-25 09:08:08 UTC (rev 163390)
@@ -1,171 +0,0 @@
-# Maintainer: Jiachen Yang 
-# AUR Maintainer: Swift Geek
-# AUR Maintainer: Timothée Ravier 
-# AUR Maintainer: Stefan Tatschner 
-# Contributor: Swift Geek
-# Contributor: Pablo Olmos de Aguilera C. pablo+aur at odac dot co
-
-_pkgname="powerline"
-pkgbase="powerline"
-pkgname=("powerline" "powerline2" "python-powerline" "python2-powerline" 
"powerline-common" "powerline-vim" "powerline-fonts")
-pkgdesc='Statusline plugin for vim, and provides statuslines and prompts for 
several other applications, including zsh, bash, tmux, IPython, Awesome, i3 and 
Qtile'
-pkgver=2.3
-pkgrel=3
-url="https://github.com/${_pkgname}/${_pkgname};
-license=('MIT')
-arch=('x86_64' 'i686')
-makedepends=(
-'python2-setuptools'
-'python-setuptools'
-'python-sphinx'
-)
-source=("${_pkgname}-${pkgver}.tar.gz::https://github.com/${_pkgname}/${_pkgname}/archive/${pkgver}.tar.gz;)
-sha512sums=('edd7018391a567de26743caf15adfc2c4c87d458202e98c5371fd77225dbbdb8a87fd41b2c6f0bb91dbdd61d432a8a2115c3be2708f1d8a3dd309dcd478f6938')
-
-
-
-prepare() {
-cp -r ${srcdir}/${_pkgname}-${pkgver}{,-py2}
-# prepare python2 scripts
-cd ${srcdir}/${_pkgname}-${pkgver}-py2
-find scripts -type f -iname "powerline-*" -print0 | xargs -0 sed -i 
"1s/python/python2/"
-find ${_pkgname}/bindings -type f -iname "*.py" -print0 | xargs -0 sed -i 
"1s/python/python2/" 
-}
-
-build(){
-# build main pages
-cd ${srcdir}/${_pkgname}-${pkgver}/docs
-make man
-
-# build C client
-cd ${srcdir}/${_pkgname}-${pkgver}
-python setup.py build
-
-cd ${srcdir}/${_pkgname}-${pkgver}-py2
-python2 setup.py build
-}
-
-
-# FIXME Currently test will fail with dividers and other errors
-# check(){
-# cd ${srcdir}/${_pkgname}-${pkgver}
-# LC_ALL=C python setup.py test
-# cd ${srcdir}/${_pkgname}-${pkgver}-py2
-# LC_ALL=C python2 setup.py test
-# }
-
-package_powerline(){
-depends=('python-powerline')
-conflicts=('powerline2' 'python-powerline<=2.3-1')
-replaces=('python-powerline<=2.3-1')
-
-cd ${srcdir}/${_pkgname}-${pkgver}/scripts
-install -Dm755 powerline "${pkgdir}/usr/bin/powerline"
-install -Dm755 powerline-config "${pkgdir}/usr/bin/powerline-config"
-install -Dm755 powerline-daemon "${pkgdir}/usr/bin/powerline-daemon"
-install -Dm755 powerline-lint "${pkgdir}/usr/bin/powerline-lint"
-install -Dm755 powerline-render "${pkgdir}/usr/bin/powerline-render"
-
-# license is installed by powerline-common
-}
-
-package_powerline2(){
-depends=('python2-powerline')
-conflicts=('powerline' 'python2-powerline<=2.3-1')
-provides=('powerline')
-replaces=('python2-powerline<=2.3-1')
-
-cd ${srcdir}/${_pkgname}-${pkgver}-py2/scripts
-install -Dm755 

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

2016-02-25 Thread Jiachen Yang
Date: Thursday, February 25, 2016 @ 10:06:39
  Author: farseerfc
Revision: 163389

upgpkg: powerline 2.3-4

Print message on install about bindings

Added:
  powerline/trunk/powerline.install
  powerline/trunk/powerline2.install
Modified:
  powerline/trunk/PKGBUILD

+
 PKGBUILD   |4 +++-
 powerline.install  |3 +++
 powerline2.install |3 +++
 3 files changed, 9 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-25 08:51:33 UTC (rev 163388)
+++ PKGBUILD2016-02-25 09:06:39 UTC (rev 163389)
@@ -10,7 +10,7 @@
 pkgname=("powerline" "powerline2" "python-powerline" "python2-powerline" 
"powerline-common" "powerline-vim" "powerline-fonts")
 pkgdesc='Statusline plugin for vim, and provides statuslines and prompts for 
several other applications, including zsh, bash, tmux, IPython, Awesome, i3 and 
Qtile'
 pkgver=2.3
-pkgrel=3
+pkgrel=4
 url="https://github.com/${_pkgname}/${_pkgname};
 license=('MIT')
 arch=('x86_64' 'i686')
@@ -58,6 +58,7 @@
 depends=('python-powerline')
 conflicts=('powerline2' 'python-powerline<=2.3-1')
 replaces=('python-powerline<=2.3-1')
+install="powerline.install"
 
 cd ${srcdir}/${_pkgname}-${pkgver}/scripts
 install -Dm755 powerline "${pkgdir}/usr/bin/powerline"
@@ -74,6 +75,7 @@
 conflicts=('powerline' 'python2-powerline<=2.3-1')
 provides=('powerline')
 replaces=('python2-powerline<=2.3-1')
+install="powerline2.install"
 
 cd ${srcdir}/${_pkgname}-${pkgver}-py2/scripts
 install -Dm755 powerline{,-config,-daemon,-lint,-render} -t 
"${pkgdir}/usr/bin/"

Added: powerline.install
===
--- powerline.install   (rev 0)
+++ powerline.install   2016-02-25 09:06:39 UTC (rev 163389)
@@ -0,0 +1,3 @@
+post_install() {
+   echo "Note: Bindings are installed in 
'/usr/lib/python3.5/site-packages/powerline/bindings/'. If you previously used 
zsh/tmux plugins from AUR, please update your config files."
+}

Added: powerline2.install
===
--- powerline2.install  (rev 0)
+++ powerline2.install  2016-02-25 09:06:39 UTC (rev 163389)
@@ -0,0 +1,3 @@
+post_install() {
+   echo "Note: Bindings are installed in 
'/usr/lib/python2.7/site-packages/powerline/bindings/'. If you previously used 
zsh/tmux plugins from AUR, please update your config files."
+}


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

2016-02-25 Thread Antonio Rojas
Date: Thursday, February 25, 2016 @ 09:51:33
  Author: arojas
Revision: 163388

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

Added:
  cmus/repos/community-staging-i686/PKGBUILD
(from rev 163387, cmus/trunk/PKGBUILD)
  cmus/repos/community-staging-x86_64/PKGBUILD
(from rev 163387, cmus/trunk/PKGBUILD)
Deleted:
  cmus/repos/community-staging-i686/PKGBUILD
  cmus/repos/community-staging-x86_64/PKGBUILD

---+
 /PKGBUILD |  114 
 community-staging-i686/PKGBUILD   |   57 --
 community-staging-x86_64/PKGBUILD |   57 --
 3 files changed, 114 insertions(+), 114 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2016-02-25 08:51:04 UTC (rev 163387)
+++ community-staging-i686/PKGBUILD 2016-02-25 08:51:33 UTC (rev 163388)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Xyne 
-# Contributor:  Bartłomiej Piotrowski 
-# Contributor: Aaron Griffin 
-# Contributor: dorphell 
-
-pkgname=cmus
-pkgver=2.7.1
-pkgrel=4
-pkgdesc='Feature-rich ncurses-based music player'
-arch=('i686' 'x86_64')
-url="https://cmus.github.io/;
-license=('GPL')
-depends=('ncurses' 'libcue' 'libdiscid')
-makedepends=(
-  'faad2'
-  'ffmpeg'
-  'flac'
-  'libao'
-  'libcdio-paranoia'
-  'libmad'
-  'libmodplug'
-  'libmp4v2'
-  'libmpcdec'
-  'libpulse'
-  'libvorbis'
-  'opusfile'
-  'wavpack'
-)
-optdepends=('alsa-lib: for ALSA output plugin support'
-'libao: for AO output plugin support'
-'libpulse: for PulseAudio output plugin support'
-'faad2: for AAC input plugin support'
-'ffmpeg: for ffmpeg input plugin support'
-'flac: for flac input plugin support'
-'libmad: for mp3 input plugin support'
-'libmodplug: for modplug input plugin support'
-'libmp4v2: for mp4 input plugin support'
-'libmpcdec: for musepack input plugin support'
-'libvorbis: for vorbis input plugin support'
-'libcdio-paranoia: for cdio support'
-'opusfile: for opus input plugin support'
-'wavpack: for wavpack input plugin support')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/cmus/cmus/archive/v${pkgver}.tar.gz;)
-sha256sums=('8179a7a843d257ddb585f4c65599844bc0e516fe85e97f6f87a7ceade4eb5165')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-  install -Dm644 contrib/_cmus "$pkgdir"/usr/share/zsh/site-functions/_cmus
-}

Copied: cmus/repos/community-staging-i686/PKGBUILD (from rev 163387, 
cmus/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-25 08:51:33 UTC (rev 163388)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Xyne 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Aaron Griffin 
+# Contributor: dorphell 
+
+pkgname=cmus
+pkgver=2.7.1
+pkgrel=5
+pkgdesc='Feature-rich ncurses-based music player'
+arch=('i686' 'x86_64')
+url="https://cmus.github.io/;
+license=('GPL')
+depends=('ncurses' 'libcue' 'libdiscid')
+makedepends=(
+  'faad2'
+  'ffmpeg'
+  'flac'
+  'libao'
+  'libcdio-paranoia'
+  'libmad'
+  'libmodplug'
+  'libmp4v2'
+  'libmpcdec'
+  'libpulse'
+  'libvorbis'
+  'opusfile'
+  'wavpack'
+)
+optdepends=('alsa-lib: for ALSA output plugin support'
+'libao: for AO output plugin support'
+'libpulse: for PulseAudio output plugin support'
+'faad2: for AAC input plugin support'
+'ffmpeg: for ffmpeg input plugin support'
+'flac: for flac input plugin support'
+'libmad: for mp3 input plugin support'
+'libmodplug: for modplug input plugin support'
+'libmp4v2: for mp4 input plugin support'
+'libmpcdec: for musepack input plugin support'
+'libvorbis: for vorbis input plugin support'
+'libcdio-paranoia: for cdio support'
+'opusfile: for opus input plugin support'
+'wavpack: for wavpack input plugin support')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/cmus/cmus/archive/v${pkgver}.tar.gz;)
+sha256sums=('8179a7a843d257ddb585f4c65599844bc0e516fe85e97f6f87a7ceade4eb5165')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  install -Dm644 contrib/_cmus "$pkgdir"/usr/share/zsh/site-functions/_cmus
+}

Deleted: community-staging-x86_64/PKGBUILD

  1   2   >