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

2013-08-17 Thread Jan Steffens
Date: Saturday, August 17, 2013 @ 09:21:38
  Author: heftig
Revision: 193133

fix deps

Modified:
  accerciser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 07:19:28 UTC (rev 193132)
+++ PKGBUILD2013-08-17 07:21:38 UTC (rev 193133)
@@ -10,7 +10,7 @@
 arch=('any')
 url=http://live.gnome.org/Accerciser;
 license=('BSD')
-depends=('python' 'gtk3' 'python-gobject' 'hicolor-icon-theme')
+depends=('python' 'gtk3' 'python-atspi' 'ipython' 'hicolor-icon-theme')
 makedepends=('itstool' 'docbook-xsl' 'intltool')
 install=accerciser.install
 groups=('gnome-extra')



[arch-commits] Commit in (4 files)

2013-08-17 Thread Ángel Velásquez
Date: Saturday, August 17, 2013 @ 09:50:40
  Author: angvp
Revision: 193134

Add python-setuptools

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

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

Added: python-setuptools/trunk/PKGBUILD
===
--- python-setuptools/trunk/PKGBUILD(rev 0)
+++ python-setuptools/trunk/PKGBUILD2013-08-17 07:50:40 UTC (rev 193134)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=0.9.8
+pkgrel=1
+pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
+arch=('any')
+license=('PSF')
+url=http://pypi.python.org/pypi/setuptools;
+makedepends=('python' 'python2')
+source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz)
+sha256sums=('42bf629a4b3a4933bb3cfacf6005c95b7494fd88cd62a7bad1a8c3e64647eb0c')
+
+#check() {
+#   # Check python3 module
+#   cd ${srcdir}/setuptools-${pkgver}
+#   python3 setup.py test
+#
+#   # Check python2 module
+#   cd ${srcdir}/setuptools-${pkgver}-python2
+#   python2 setup.py test
+#}
+ 
+prepare() {
+   cd ${srcdir}
+ 
+   pushd setuptools-${pkgver}
+   popd
+ 
+   cp -a setuptools-${pkgver}{,-python2}
+ 
+   cd ${srcdir}/setuptools-${pkgver}
+   sed -i -e s|^#\!.*/usr/bin/python|#!/usr/bin/python3| 
setuptools/tests/test_resources.py
+ 
+   cd ../setuptools-${pkgver}-python2
+   sed -i -e s|^#\!.*/usr/bin/python|#!/usr/bin/python2| 
setuptools/tests/test_resources.py
+}
+
+build() {
+   # Build python 3 module
+   cd ${srcdir}/setuptools-${pkgver}
+   python3 setup.py build
+ 
+   # Build python 2 module
+   cd ../setuptools-${pkgver}-python2
+   python2 setup.py build
+}
+ 
+package_python-setuptools() {
+   depends=('python=3.3')
+   provides=('python-distribute')
+   replaces=('python-distribute')
+ 
+   cd ${srcdir}/setuptools-${pkgver}
+   python3 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1 
--skip-build
+}
+ 
+package_python2-setuptools() {
+   depends=('python2=2.7')
+   provides=('python2-distribute' 'setuptools')
+   replaces=('python2-distribute' 'setuptools')
+ 
+   cd ${srcdir}/setuptools-${pkgver}-python2
+   python2 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1 
--skip-build
+   rm ${pkgdir}/usr/bin/easy_install
+}


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


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

2013-08-17 Thread Ángel Velásquez
Date: Saturday, August 17, 2013 @ 09:55:31
  Author: angvp
Revision: 193135

archrelease: copy trunk to testing-any

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

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

Copied: python-setuptools/repos/testing-any/PKGBUILD (from rev 193134, 
python-setuptools/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-08-17 07:55:31 UTC (rev 193135)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=0.9.8
+pkgrel=1
+pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
+arch=('any')
+license=('PSF')
+url=http://pypi.python.org/pypi/setuptools;
+makedepends=('python' 'python2')
+source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz)
+sha256sums=('42bf629a4b3a4933bb3cfacf6005c95b7494fd88cd62a7bad1a8c3e64647eb0c')
+
+#check() {
+#   # Check python3 module
+#   cd ${srcdir}/setuptools-${pkgver}
+#   python3 setup.py test
+#
+#   # Check python2 module
+#   cd ${srcdir}/setuptools-${pkgver}-python2
+#   python2 setup.py test
+#}
+ 
+prepare() {
+   cd ${srcdir}
+ 
+   pushd setuptools-${pkgver}
+   popd
+ 
+   cp -a setuptools-${pkgver}{,-python2}
+ 
+   cd ${srcdir}/setuptools-${pkgver}
+   sed -i -e s|^#\!.*/usr/bin/python|#!/usr/bin/python3| 
setuptools/tests/test_resources.py
+ 
+   cd ../setuptools-${pkgver}-python2
+   sed -i -e s|^#\!.*/usr/bin/python|#!/usr/bin/python2| 
setuptools/tests/test_resources.py
+}
+
+build() {
+   # Build python 3 module
+   cd ${srcdir}/setuptools-${pkgver}
+   python3 setup.py build
+ 
+   # Build python 2 module
+   cd ../setuptools-${pkgver}-python2
+   python2 setup.py build
+}
+ 
+package_python-setuptools() {
+   depends=('python=3.3')
+   provides=('python-distribute')
+   replaces=('python-distribute')
+ 
+   cd ${srcdir}/setuptools-${pkgver}
+   python3 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1 
--skip-build
+}
+ 
+package_python2-setuptools() {
+   depends=('python2=2.7')
+   provides=('python2-distribute' 'setuptools')
+   replaces=('python2-distribute' 'setuptools')
+ 
+   cd ${srcdir}/setuptools-${pkgver}-python2
+   python2 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1 
--skip-build
+   rm ${pkgdir}/usr/bin/easy_install
+}



[arch-commits] Commit in (php-apc)

2013-08-17 Thread Pierre Schmitz
Date: Saturday, August 17, 2013 @ 10:24:36
  Author: pierre
Revision: 193142

Removing php-apc

Deleted:
  php-apc/



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

2013-08-17 Thread Ángel Velásquez
Date: Saturday, August 17, 2013 @ 10:29:23
  Author: angvp
Revision: 95814

archrelease: copy trunk to community-testing-any

Added:
  ninja-ide/repos/community-testing-any/
  ninja-ide/repos/community-testing-any/PKGBUILD
(from rev 95813, ninja-ide/trunk/PKGBUILD)
  ninja-ide/repos/community-testing-any/ninja-ide.desktop
(from rev 95813, ninja-ide/trunk/ninja-ide.desktop)
  ninja-ide/repos/community-testing-any/ninja-ide.install
(from rev 95813, ninja-ide/trunk/ninja-ide.install)

---+
 PKGBUILD  |   33 +
 ninja-ide.desktop |   10 ++
 ninja-ide.install |   11 +++
 3 files changed, 54 insertions(+)

Copied: ninja-ide/repos/community-testing-any/PKGBUILD (from rev 95813, 
ninja-ide/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-08-17 08:29:23 UTC (rev 95814)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org  
+# Contributor: Evangelos Foutras evange...@foutrelis.com
+# Contributor: helq linuxero...@gmail.com
+# Contributor: Jesus Jerez jh...@archlinux.org.ve
+# Contributor: DobleD dob...@dobled.info
+
+pkgname=ninja-ide
+pkgver=2.3
+pkgrel=2
+pkgdesc=Cross-platform IDE focused on Python application development
+arch=('any')
+url=http://ninja-ide.org/;
+license=('GPL3')
+depends=('python2-setuptools' 'python2-pyqt' 'python2-pyinotify')
+source=(https://github.com/ninja-ide/ninja-ide/archive/v$pkgver.zip
+ninja-ide.desktop)
+install=$pkgname.install
+sha256sums=('489fd2aede8fc16a1216a245e095f00865e0b91e8b0369f023041984f1b62a06'
+'6cabe8ba0c1589feb4919f9de6e4b8bc0a692f5cb8c630f1e9c661aa19f22fdb')
+
+package() {
+  cd $pkgname-$pkgver
+
+  python2 setup.py install --root=$pkgdir -O1
+
+  install -Dm644 $srcdir/$pkgname.desktop \
+$pkgdir/usr/share/applications/$pkgname.desktop
+  install -Dm644 ninja_ide/img/icon.png \
+$pkgdir/usr/share/pixmaps/$pkgname.png
+}
+
+# vim:set ts=2 sw=2 et:

Copied: ninja-ide/repos/community-testing-any/ninja-ide.desktop (from rev 
95813, ninja-ide/trunk/ninja-ide.desktop)
===
--- community-testing-any/ninja-ide.desktop (rev 0)
+++ community-testing-any/ninja-ide.desktop 2013-08-17 08:29:23 UTC (rev 
95814)
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Name=Ninja IDE
+Comment=A Python IDE
+Exec=ninja-ide
+Icon=ninja-ide
+Terminal=false
+Type=Application
+Categories=Development;
+StartupNotify=true
+MimeType=application/x-python;application/x-ninja-ide;

Copied: ninja-ide/repos/community-testing-any/ninja-ide.install (from rev 
95813, ninja-ide/trunk/ninja-ide.install)
===
--- community-testing-any/ninja-ide.install (rev 0)
+++ community-testing-any/ninja-ide.install 2013-08-17 08:29:23 UTC (rev 
95814)
@@ -0,0 +1,11 @@
+post_install() {
+update-desktop-database -q
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}



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

2013-08-17 Thread Ángel Velásquez
Date: Saturday, August 17, 2013 @ 10:28:48
  Author: angvp
Revision: 95813

upgpkg: ninja-ide 2.3-2

Rebuild against setuptools

Modified:
  ninja-ide/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 08:23:12 UTC (rev 95812)
+++ PKGBUILD2013-08-17 08:28:48 UTC (rev 95813)
@@ -1,18 +1,18 @@
 # $Id$
-# Maintainer: Evangelos Foutras evange...@foutrelis.com
-# Contributor: Angel Velásquez an...@archlinux.org
+# Maintainer: Angel Velasquez an...@archlinux.org  
+# Contributor: Evangelos Foutras evange...@foutrelis.com
 # Contributor: helq linuxero...@gmail.com
 # Contributor: Jesus Jerez jh...@archlinux.org.ve
 # Contributor: DobleD dob...@dobled.info
 
 pkgname=ninja-ide
 pkgver=2.3
-pkgrel=1
+pkgrel=2
 pkgdesc=Cross-platform IDE focused on Python application development
 arch=('any')
 url=http://ninja-ide.org/;
 license=('GPL3')
-depends=('python2-distribute' 'python2-pyqt' 'python2-pyinotify')
+depends=('python2-setuptools' 'python2-pyqt' 'python2-pyinotify')
 source=(https://github.com/ninja-ide/ninja-ide/archive/v$pkgver.zip
 ninja-ide.desktop)
 install=$pkgname.install



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

2013-08-17 Thread Ángel Velásquez
Date: Saturday, August 17, 2013 @ 10:38:18
  Author: angvp
Revision: 193143

upgpkg: pylint 0.28.0-2

Change dependency of distribute / setuptools and fixes FS#36489

Modified:
  pylint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 08:24:36 UTC (rev 193142)
+++ PKGBUILD2013-08-17 08:38:18 UTC (rev 193143)
@@ -5,12 +5,12 @@
 pkgbase=pylint
 pkgname=('python2-pylint' 'python-pylint')
 pkgver=0.28.0
-pkgrel=1
+pkgrel=2
 pkgdesc=Analyzes Python code looking for bugs and signs of poor quality
 arch=('any')
 url=http://www.logilab.org/project/pylint;
 license=('GPL')
-makedepends=('python2-logilab-astng' 'python-logilab-astng' 
'python-distribute' 'python2-distribute')
+makedepends=('python2-logilab-astng' 'python-logilab-astng') 
 optdepends=('tk: Pylint GUI')
 conflicts=('pylint=0.26.0-2')
 
source=(http://download.logilab.org/pub/${pkgbase}/${pkgbase}-${pkgver}.tar.gz;)
@@ -33,7 +33,7 @@
 
 package_python2-pylint() {
   replaces=('pylint=0.26.0-2')
-  depends=('python2-logilab-astng')
+  depends=('python2-logilab-astng' 'python2-setuptools')
 
   cd ${srcdir}/${pkgbase}-${pkgver}
 
@@ -49,7 +49,7 @@
 }
 
 package_python-pylint() {
-  depends=('python-logilab-astng')
+  depends=('python-logilab-astng' 'python-setuptools')
 
   cd ${srcdir}/${pkgbase}-${pkgver}-py3
 



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

2013-08-17 Thread Ángel Velásquez
Date: Saturday, August 17, 2013 @ 10:38:59
  Author: angvp
Revision: 193144

archrelease: copy trunk to testing-any

Added:
  pylint/repos/testing-any/
  pylint/repos/testing-any/PKGBUILD
(from rev 193143, pylint/trunk/PKGBUILD)

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

Copied: pylint/repos/testing-any/PKGBUILD (from rev 193143, 
pylint/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-08-17 08:38:59 UTC (rev 193144)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Alexander Fehr pizzapunk gmail com
+
+pkgbase=pylint
+pkgname=('python2-pylint' 'python-pylint')
+pkgver=0.28.0
+pkgrel=2
+pkgdesc=Analyzes Python code looking for bugs and signs of poor quality
+arch=('any')
+url=http://www.logilab.org/project/pylint;
+license=('GPL')
+makedepends=('python2-logilab-astng' 'python-logilab-astng') 
+optdepends=('tk: Pylint GUI')
+conflicts=('pylint=0.26.0-2')
+source=(http://download.logilab.org/pub/${pkgbase}/${pkgbase}-${pkgver}.tar.gz;)
+sha1sums=('285b8babd659a9dd21a782f87db0ae15c29728ef')
+
+build() {
+  cd ${srcdir}
+  cp -a ${pkgbase}-${pkgver}{,-py3}
+
+  cd ${pkgbase}-${pkgver}
+
+  sed -i s|/usr/bin/env python|/usr/bin/env python2| epylint.py
+  python2 setup.py build
+
+  cd ../${pkgbase}-${pkgver}-py3
+
+  sed -i s|/usr/bin/env python|/usr/bin/env python3| epylint.py
+  python3 setup.py build
+}
+
+package_python2-pylint() {
+  replaces=('pylint=0.26.0-2')
+  depends=('python2-logilab-astng' 'python2-setuptools')
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+
+  python2 setup.py install --prefix=/usr --root=${pkgdir} --skip-build 
--optimize=1
+
+  install -d ${pkgdir}/usr/share/man/man1
+  install -m644 man/* ${pkgdir}/usr/share/man/man1
+
+  for i in epylint pylint pylint-gui pyreverse symilar; do
+ mv ${pkgdir}/usr/bin/${i}{,2}
+ mv ${pkgdir}/usr/share/man/man1/${i}{,2}.1
+  done
+}
+
+package_python-pylint() {
+  depends=('python-logilab-astng' 'python-setuptools')
+
+  cd ${srcdir}/${pkgbase}-${pkgver}-py3
+
+  python3 setup.py install --prefix=/usr --root=${pkgdir} --skip-build 
--optimize=1
+
+  install -d ${pkgdir}/usr/share/man/man1
+  install -m644 man/* ${pkgdir}/usr/share/man/man1
+}



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

2013-08-17 Thread Ángel Velásquez
Date: Saturday, August 17, 2013 @ 10:42:05
  Author: angvp
Revision: 193145

archrelease: copy trunk to testing-any

Added:
  pylint/repos/testing-any/PKGBUILD
(from rev 193144, pylint/trunk/PKGBUILD)
Deleted:
  pylint/repos/testing-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-17 08:38:59 UTC (rev 193144)
+++ PKGBUILD2013-08-17 08:42:05 UTC (rev 193145)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Alexander Fehr pizzapunk gmail com
-
-pkgbase=pylint
-pkgname=('python2-pylint' 'python-pylint')
-pkgver=0.28.0
-pkgrel=2
-pkgdesc=Analyzes Python code looking for bugs and signs of poor quality
-arch=('any')
-url=http://www.logilab.org/project/pylint;
-license=('GPL')
-makedepends=('python2-logilab-astng' 'python-logilab-astng') 
-optdepends=('tk: Pylint GUI')
-conflicts=('pylint=0.26.0-2')
-source=(http://download.logilab.org/pub/${pkgbase}/${pkgbase}-${pkgver}.tar.gz;)
-sha1sums=('285b8babd659a9dd21a782f87db0ae15c29728ef')
-
-build() {
-  cd ${srcdir}
-  cp -a ${pkgbase}-${pkgver}{,-py3}
-
-  cd ${pkgbase}-${pkgver}
-
-  sed -i s|/usr/bin/env python|/usr/bin/env python2| epylint.py
-  python2 setup.py build
-
-  cd ../${pkgbase}-${pkgver}-py3
-
-  sed -i s|/usr/bin/env python|/usr/bin/env python3| epylint.py
-  python3 setup.py build
-}
-
-package_python2-pylint() {
-  replaces=('pylint=0.26.0-2')
-  depends=('python2-logilab-astng' 'python2-setuptools')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-
-  python2 setup.py install --prefix=/usr --root=${pkgdir} --skip-build 
--optimize=1
-
-  install -d ${pkgdir}/usr/share/man/man1
-  install -m644 man/* ${pkgdir}/usr/share/man/man1
-
-  for i in epylint pylint pylint-gui pyreverse symilar; do
- mv ${pkgdir}/usr/bin/${i}{,2}
- mv ${pkgdir}/usr/share/man/man1/${i}{,2}.1
-  done
-}
-
-package_python-pylint() {
-  depends=('python-logilab-astng' 'python-setuptools')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}-py3
-
-  python3 setup.py install --prefix=/usr --root=${pkgdir} --skip-build 
--optimize=1
-
-  install -d ${pkgdir}/usr/share/man/man1
-  install -m644 man/* ${pkgdir}/usr/share/man/man1
-}

Copied: pylint/repos/testing-any/PKGBUILD (from rev 193144, 
pylint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-17 08:42:05 UTC (rev 193145)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Alexander Fehr pizzapunk gmail com
+
+pkgbase=pylint
+pkgname=('python2-pylint' 'python-pylint')
+pkgver=0.28.0
+pkgrel=2
+pkgdesc=Analyzes Python code looking for bugs and signs of poor quality
+arch=('any')
+url=http://www.logilab.org/project/pylint;
+license=('GPL')
+makedepends=('python2-logilab-astng' 'python-logilab-astng') 
+optdepends=('tk: Pylint GUI')
+conflicts=('pylint=0.26.0-2')
+source=(http://download.logilab.org/pub/${pkgbase}/${pkgbase}-${pkgver}.tar.gz;)
+sha1sums=('285b8babd659a9dd21a782f87db0ae15c29728ef')
+
+build() {
+  cd ${srcdir}
+  cp -a ${pkgbase}-${pkgver}{,-py3}
+
+  cd ${pkgbase}-${pkgver}
+
+  sed -i s|/usr/bin/env python|/usr/bin/env python2| epylint.py
+  python2 setup.py build
+
+  cd ../${pkgbase}-${pkgver}-py3
+
+  sed -i s|/usr/bin/env python|/usr/bin/env python3| epylint.py
+  python3 setup.py build
+}
+
+package_python2-pylint() {
+  replaces=('pylint=0.26.0-2')
+  depends=('python2-logilab-astng' 'python2-setuptools')
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+
+  python2 setup.py install --prefix=/usr --root=${pkgdir} --skip-build 
--optimize=1
+
+  install -d ${pkgdir}/usr/share/man/man1
+  install -m644 man/* ${pkgdir}/usr/share/man/man1
+
+  for i in epylint pylint pylint-gui pyreverse symilar; do
+ mv ${pkgdir}/usr/bin/${i}{,2}
+ mv ${pkgdir}/usr/share/man/man1/${i}{,2}.1
+  done
+}
+
+package_python-pylint() {
+  depends=('python-logilab-astng' 'python-setuptools')
+
+  cd ${srcdir}/${pkgbase}-${pkgver}-py3
+
+  python3 setup.py install --prefix=/usr --root=${pkgdir} --skip-build 
--optimize=1
+
+  install -d ${pkgdir}/usr/share/man/man1
+  install -m644 man/* ${pkgdir}/usr/share/man/man1
+}



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

2013-08-17 Thread Jakob Gruber
Date: Saturday, August 17, 2013 @ 10:46:42
  Author: schuay
Revision: 95815

boost-build-2.0_m12-5

Modified:
  boost-build/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 08:29:23 UTC (rev 95814)
+++ PKGBUILD2013-08-17 08:46:42 UTC (rev 95815)
@@ -3,14 +3,14 @@
 
 pkgname=boost-build
 pkgver=2.0_m12
-pkgrel=4
+pkgrel=5
 pkgdesc=Boost build system
 arch=('any')
 url=http://www.boost.org/doc/tools/build/;
-license=('boost')
+license=('custom:boost')
 depends=('boost' 'gcc' 'python')
-source=(http://downloads.sourceforge.net/sourceforge/boost/${pkgname}-2.0-m12.tar.bz2;)
-md5sums=('38a40f1c0c2d6eb4f14aa4cf52e9236a')
+source=(http://downloads.sourceforge.net/sourceforge/boost/${pkgname}-2.0-m12.tar.bz2;
+http://www.boost.org/LICENSE_1_0.txt;)
 
 package() {
   cd ${srcdir}
@@ -22,6 +22,10 @@
   rm -Rf ${pkgname}/debian
 
   cp -R ${pkgname} ${pkgdir}/usr/share
+  install -Dm644 LICENSE_1_0.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 
   echo using gcc ;  ${pkgdir}/etc/site-config.jam
 }
+
+md5sums=('38a40f1c0c2d6eb4f14aa4cf52e9236a'
+ 'e4224ccaecb14d942c71d31bef20d78c')



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

2013-08-17 Thread Jakob Gruber
Date: Saturday, August 17, 2013 @ 10:47:04
  Author: schuay
Revision: 95816

archrelease: copy trunk to community-any

Added:
  boost-build/repos/community-any/PKGBUILD
(from rev 95815, boost-build/trunk/PKGBUILD)
Deleted:
  boost-build/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-17 08:46:42 UTC (rev 95815)
+++ PKGBUILD2013-08-17 08:47:04 UTC (rev 95816)
@@ -1,27 +0,0 @@
-# Maintainer: Jakob Gruber jakob.gru...@gmail.com
-# Contributor: Dennis Kempin m...@dennis-kempin.de
-
-pkgname=boost-build
-pkgver=2.0_m12
-pkgrel=4
-pkgdesc=Boost build system
-arch=('any')
-url=http://www.boost.org/doc/tools/build/;
-license=('boost')
-depends=('boost' 'gcc' 'python')
-source=(http://downloads.sourceforge.net/sourceforge/boost/${pkgname}-2.0-m12.tar.bz2;)
-md5sums=('38a40f1c0c2d6eb4f14aa4cf52e9236a')
-
-build() {
-  cd ${srcdir}
-
-  mkdir -p ${pkgdir}/usr/share
-  mkdir -p ${pkgdir}/etc
-
-  rm -Rf ${pkgname}/jam_src
-  rm -Rf ${pkgname}/debian
-
-  cp -R ${pkgname} ${pkgdir}/usr/share
-
-  echo using gcc ;  ${pkgdir}/etc/site-config.jam
-}

Copied: boost-build/repos/community-any/PKGBUILD (from rev 95815, 
boost-build/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-17 08:47:04 UTC (rev 95816)
@@ -0,0 +1,31 @@
+# Maintainer: Jakob Gruber jakob.gru...@gmail.com
+# Contributor: Dennis Kempin m...@dennis-kempin.de
+
+pkgname=boost-build
+pkgver=2.0_m12
+pkgrel=5
+pkgdesc=Boost build system
+arch=('any')
+url=http://www.boost.org/doc/tools/build/;
+license=('custom:boost')
+depends=('boost' 'gcc' 'python')
+source=(http://downloads.sourceforge.net/sourceforge/boost/${pkgname}-2.0-m12.tar.bz2;
+http://www.boost.org/LICENSE_1_0.txt;)
+
+package() {
+  cd ${srcdir}
+
+  mkdir -p ${pkgdir}/usr/share
+  mkdir -p ${pkgdir}/etc
+
+  rm -Rf ${pkgname}/jam_src
+  rm -Rf ${pkgname}/debian
+
+  cp -R ${pkgname} ${pkgdir}/usr/share
+  install -Dm644 LICENSE_1_0.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+  echo using gcc ;  ${pkgdir}/etc/site-config.jam
+}
+
+md5sums=('38a40f1c0c2d6eb4f14aa4cf52e9236a'
+ 'e4224ccaecb14d942c71d31bef20d78c')



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

2013-08-17 Thread Jakob Gruber
Date: Saturday, August 17, 2013 @ 10:51:20
  Author: schuay
Revision: 95817

mcomix: distribute-setuptools

Modified:
  mcomix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 08:47:04 UTC (rev 95816)
+++ PKGBUILD2013-08-17 08:51:20 UTC (rev 95817)
@@ -10,7 +10,7 @@
 url=http://sourceforge.net/projects/mcomix/;
 license=('GPL')
 depends=('pygtk' 'python-imaging' 'xdg-utils' 'python2' \
- 'desktop-file-utils' 'hicolor-icon-theme' 'python2-distribute')
+ 'desktop-file-utils' 'hicolor-icon-theme' 'python2-setuptools')
 makedepends=('gettext' 'intltool')
 optdepends=('unrar: for rar compressed comics')
 conflicts=('comix')



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

2013-08-17 Thread Ángel Velásquez
Date: Saturday, August 17, 2013 @ 11:55:27
  Author: angvp
Revision: 193146

upgpkg: python-mako 0.8.1-2

Changed dependencies to setuptools instead distribute

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 08:42:05 UTC (rev 193145)
+++ PKGBUILD2013-08-17 09:55:27 UTC (rev 193146)
@@ -3,12 +3,12 @@
 
 pkgname=('python-mako' 'python2-mako')
 pkgver=0.8.1
-pkgrel=1
+pkgrel=2
 pkgdesc=Hyperfast and lightweight templating for the Python2 platform
 arch=('any')
 url=http://www.makotemplates.org/;
 license=('MIT')
-makedepends=('python-distribute' 'python2-distribute')
+makedepends=('python-setuptools' 'python2-setuptools')
 checkdepends=('python-nose' 'python2-nose')
 source=(http://www.makotemplates.org/downloads/Mako-$pkgver.tar.gz;)
 md5sums=('96d962464ce6316004af0cc48495d73e')



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

2013-08-17 Thread Ángel Velásquez
Date: Saturday, August 17, 2013 @ 11:56:49
  Author: angvp
Revision: 193147

archrelease: copy trunk to testing-any

Added:
  python-mako/repos/testing-any/
  python-mako/repos/testing-any/PKGBUILD
(from rev 193146, python-mako/trunk/PKGBUILD)

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

Copied: python-mako/repos/testing-any/PKGBUILD (from rev 193146, 
python-mako/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-08-17 09:56:49 UTC (rev 193147)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer : 
+
+pkgname=('python-mako' 'python2-mako')
+pkgver=0.8.1
+pkgrel=2
+pkgdesc=Hyperfast and lightweight templating for the Python2 platform
+arch=('any')
+url=http://www.makotemplates.org/;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-nose' 'python2-nose')
+source=(http://www.makotemplates.org/downloads/Mako-$pkgver.tar.gz;)
+md5sums=('96d962464ce6316004af0cc48495d73e')
+
+prepare() {
+cp -r Mako-$pkgver python2-Mako-$pkgver
+mv Mako-$pkgver/scripts/mako-render 
Mako-$pkgver/scripts/python3-mako-render
+2to3 -nw Mako-$pkgver/scripts/python3-mako-render
+sed -i 's/mako-render/python3-mako-render/' Mako-$pkgver/setup.py
+}
+
+build() {
+cd Mako-$pkgver
+python3 setup.py build
+
+cd ../python2-Mako-$pkgver
+python2 setup.py build
+}
+
+check() {
+cd Mako-$pkgver
+python3 setup.py test
+
+cd ../python2-Mako-$pkgver
+python2 setup.py test
+}
+
+package_python-mako() {
+depends=('python-markupsafe' 'python-beaker')
+
+cd Mako-$pkgver
+python3 setup.py install --root=$pkgdir --optimize=1
+install -D LICENSE $pkgdir/usr/share/licenses/python-mako/COPYING
+}
+
+package_python2-mako() {
+depends=('python2-markupsafe' 'python2-beaker')
+
+cd python2-Mako-$pkgver
+python2 setup.py install --root=$pkgdir --optimize=1
+install -D LICENSE $pkgdir/usr/share/licenses/python2-mako/COPYING
+}



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

2013-08-17 Thread Jakob Gruber
Date: Saturday, August 17, 2013 @ 12:12:09
  Author: schuay
Revision: 95818

mcomix-1.00-4

Modified:
  mcomix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 08:51:20 UTC (rev 95817)
+++ PKGBUILD2013-08-17 10:12:09 UTC (rev 95818)
@@ -4,7 +4,7 @@
 
 pkgname=mcomix
 pkgver=1.00
-pkgrel=3
+pkgrel=4
 pkgdesc=A user-friendly, customizable image viewer specifically designed to 
handle comic books
 arch=('any')
 url=http://sourceforge.net/projects/mcomix/;



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

2013-08-17 Thread Jan Steffens
Date: Saturday, August 17, 2013 @ 12:11:44
  Author: heftig
Revision: 193148

0.5.1

Modified:
  libfprint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 09:56:49 UTC (rev 193147)
+++ PKGBUILD2013-08-17 10:11:44 UTC (rev 193148)
@@ -4,7 +4,7 @@
 # Contributor: Thomas Baechler tho...@archlinux.org
 
 pkgname=libfprint
-pkgver=0.5.0
+pkgver=0.5.1
 pkgrel=1
 pkgdesc=Library for fingerprint readers
 arch=(i686 x86_64)
@@ -14,15 +14,15 @@
 groups=(fprint)
 options=(!libtool !emptydirs)
 source=(http://people.freedesktop.org/~hadess/$pkgname-$pkgver.tar.xz)
+md5sums=('f52ac662d89fb82a441dacb0bac36c13')
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc --disable-static
   make
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   make DESTDIR=$pkgdir install
 }
-md5sums=('65d118369a47a93be623816f54cdb847')



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

2013-08-17 Thread Jakob Gruber
Date: Saturday, August 17, 2013 @ 12:12:54
  Author: schuay
Revision: 95819

archrelease: copy trunk to community-testing-any

Added:
  mcomix/repos/community-testing-any/
  mcomix/repos/community-testing-any/PKGBUILD
(from rev 95818, mcomix/trunk/PKGBUILD)
  mcomix/repos/community-testing-any/mcomix.install
(from rev 95818, mcomix/trunk/mcomix.install)

+
 PKGBUILD   |   45 +
 mcomix.install |   30 ++
 2 files changed, 75 insertions(+)

Copied: mcomix/repos/community-testing-any/PKGBUILD (from rev 95818, 
mcomix/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-08-17 10:12:54 UTC (rev 95819)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: schuay jakob.gru...@gmail.com
+# Contributor: Ray Powell ray...@xphoniexx.net
+
+pkgname=mcomix
+pkgver=1.00
+pkgrel=4
+pkgdesc=A user-friendly, customizable image viewer specifically designed to 
handle comic books
+arch=('any')
+url=http://sourceforge.net/projects/mcomix/;
+license=('GPL')
+depends=('pygtk' 'python-imaging' 'xdg-utils' 'python2' \
+ 'desktop-file-utils' 'hicolor-icon-theme' 'python2-setuptools')
+makedepends=('gettext' 'intltool')
+optdepends=('unrar: for rar compressed comics')
+conflicts=('comix')
+replaces=('comix')
+install='mcomix.install'
+source=(http://downloads.sourceforge.net/project/mcomix/MComix-${pkgver}/mcomix-${pkgver}.tar.bz2;)
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # python2 fix
+  for file in $(grep -Rl /usr/bin/env python .);
+  do
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
+  done
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  export PYTHONPATH=${pkgdir}/usr/lib/python2.7/site-packages/
+  mkdir -p $PYTHONPATH
+
+  python2 setup.py install --prefix=/usr --optimize=1 \
+--single-version-externally-managed --root=${pkgdir}
+
+  install -Dm755 mime/comicthumb ${pkgdir}/usr/bin/comicthumb
+  install -Dm644 mime/comicthumb.1.gz 
${pkgdir}/usr/share/man/man1/comicthumb.1.gz
+  install -Dm644 mime/comicbook.schemas 
${pkgdir}/usr/share/gconf/schemas/mcomix.schemas
+}
+
+md5sums=('3a916dd9da17043ab59ccd17e26eb932')

Copied: mcomix/repos/community-testing-any/mcomix.install (from rev 95818, 
mcomix/trunk/mcomix.install)
===
--- community-testing-any/mcomix.install(rev 0)
+++ community-testing-any/mcomix.install2013-08-17 10:12:54 UTC (rev 
95819)
@@ -0,0 +1,30 @@
+pkgname=mcomix
+
+post_install() {
+  if [ -f usr/sbin/gconfpkg ]; then
+  usr/sbin/gconfpkg --install ${pkgname}  /dev/null
+  fi
+  xdg-icon-resource forceupdate --theme hicolor  /dev/null
+  update-desktop-database -q
+  update-mime-database usr/share/mime  /dev/null
+}
+
+pre_upgrade() {
+  pre_remove $1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  if [ -f usr/sbin/gconfpkg ]; then
+  usr/sbin/gconfpkg --uninstall ${pkgname}  /dev/null
+  fi
+}
+
+post_remove() {
+  xdg-icon-resource forceupdate --theme hicolor  /dev/null
+  update-desktop-database -q
+  update-mime-database usr/share/mime  /dev/null
+}



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

2013-08-17 Thread Ángel Velásquez
Date: Saturday, August 17, 2013 @ 12:16:18
  Author: angvp
Revision: 193149

upgpkg: python-markupsafe 0.18-2

Changed dependencies to setuptools instead distribute

Modified:
  python-markupsafe/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 10:11:44 UTC (rev 193148)
+++ PKGBUILD2013-08-17 10:16:18 UTC (rev 193149)
@@ -4,12 +4,12 @@
 
 pkgname=('python-markupsafe' 'python2-markupsafe')
 pkgver=0.18
-pkgrel=1
+pkgrel=2
 pkgdesc=Implements a XML/HTML/XHTML Markup safe string for Python
 arch=('i686' 'x86_64')
 url=http://pypi.python.org/pypi/MarkupSafe;
 license=('custom')
-makedepends=('python-distribute' 'python2-distribute')
+makedepends=('python-setuptools' 'python2-setuptools')
 
source=(http://pypi.python.org/packages/source/M/MarkupSafe/MarkupSafe-${pkgver}.tar.gz;)
 md5sums=('f8d252fd05371e51dec2fe9a36890687')
 



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

2013-08-17 Thread Ángel Velásquez
Date: Saturday, August 17, 2013 @ 12:18:44
  Author: angvp
Revision: 193150

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

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

-+
 testing-i686/PKGBUILD   |   49 ++
 testing-x86_64/PKGBUILD |   49 ++
 2 files changed, 98 insertions(+)

Copied: python-markupsafe/repos/testing-i686/PKGBUILD (from rev 193149, 
python-markupsafe/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-08-17 10:18:44 UTC (rev 193150)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer : Ionut Biru ib...@archlinux.org
+# Contributor: Alex Anthony alex.anthony28...@gmail.com
+
+pkgname=('python-markupsafe' 'python2-markupsafe')
+pkgver=0.18
+pkgrel=2
+pkgdesc=Implements a XML/HTML/XHTML Markup safe string for Python
+arch=('i686' 'x86_64')
+url=http://pypi.python.org/pypi/MarkupSafe;
+license=('custom')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=(http://pypi.python.org/packages/source/M/MarkupSafe/MarkupSafe-${pkgver}.tar.gz;)
+md5sums=('f8d252fd05371e51dec2fe9a36890687')
+
+build() {
+  cp -r MarkupSafe-${pkgver} python2-MarkupSafe-${pkgver}
+  cd ${srcdir}/MarkupSafe-${pkgver}
+  python setup.py build
+
+  cd ${srcdir}/python2-MarkupSafe-${pkgver}
+  python2 setup.py build
+}
+
+check() {
+  cd ${srcdir}/MarkupSafe-${pkgver}
+  python setup.py test
+
+  cd ${srcdir}/python2-MarkupSafe-${pkgver}
+  python2 setup.py test
+}
+
+package_python-markupsafe() {
+  depends=('python')
+
+  cd MarkupSafe-${pkgver}
+  python setup.py install --root=${pkgdir} --optimize=1
+
+  install -D -m644 LICENSE 
${pkgdir}/usr/share/licenses/python-markupsafe/LICENSE
+}
+
+package_python2-markupsafe() {
+  depends=('python2')
+
+  cd python2-MarkupSafe-${pkgver}
+  python2 setup.py install --root=${pkgdir} --optimize=1
+
+  install -D -m644 LICENSE 
${pkgdir}/usr/share/licenses/python2-markupsafe/LICENSE
+}

Copied: python-markupsafe/repos/testing-x86_64/PKGBUILD (from rev 193149, 
python-markupsafe/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-08-17 10:18:44 UTC (rev 193150)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer : Ionut Biru ib...@archlinux.org
+# Contributor: Alex Anthony alex.anthony28...@gmail.com
+
+pkgname=('python-markupsafe' 'python2-markupsafe')
+pkgver=0.18
+pkgrel=2
+pkgdesc=Implements a XML/HTML/XHTML Markup safe string for Python
+arch=('i686' 'x86_64')
+url=http://pypi.python.org/pypi/MarkupSafe;
+license=('custom')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=(http://pypi.python.org/packages/source/M/MarkupSafe/MarkupSafe-${pkgver}.tar.gz;)
+md5sums=('f8d252fd05371e51dec2fe9a36890687')
+
+build() {
+  cp -r MarkupSafe-${pkgver} python2-MarkupSafe-${pkgver}
+  cd ${srcdir}/MarkupSafe-${pkgver}
+  python setup.py build
+
+  cd ${srcdir}/python2-MarkupSafe-${pkgver}
+  python2 setup.py build
+}
+
+check() {
+  cd ${srcdir}/MarkupSafe-${pkgver}
+  python setup.py test
+
+  cd ${srcdir}/python2-MarkupSafe-${pkgver}
+  python2 setup.py test
+}
+
+package_python-markupsafe() {
+  depends=('python')
+
+  cd MarkupSafe-${pkgver}
+  python setup.py install --root=${pkgdir} --optimize=1
+
+  install -D -m644 LICENSE 
${pkgdir}/usr/share/licenses/python-markupsafe/LICENSE
+}
+
+package_python2-markupsafe() {
+  depends=('python2')
+
+  cd python2-MarkupSafe-${pkgver}
+  python2 setup.py install --root=${pkgdir} --optimize=1
+
+  install -D -m644 LICENSE 
${pkgdir}/usr/share/licenses/python2-markupsafe/LICENSE
+}



[arch-commits] Commit in fprintd/trunk (PKGBUILD fingerprint-auth pod.patch)

2013-08-17 Thread Jan Steffens
Date: Saturday, August 17, 2013 @ 12:23:57
  Author: heftig
Revision: 193151

0.5.1

Added:
  fprintd/trunk/pod.patch
Modified:
  fprintd/trunk/PKGBUILD
Deleted:
  fprintd/trunk/fingerprint-auth

--+
 PKGBUILD |   23 +--
 fingerprint-auth |6 --
 pod.patch|9 +
 3 files changed, 22 insertions(+), 16 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 10:18:44 UTC (rev 193150)
+++ PKGBUILD2013-08-17 10:23:57 UTC (rev 193151)
@@ -3,7 +3,7 @@
 # Contributor: Nikolay Rysev mad.f...@gmail.com
 
 pkgname=fprintd
-pkgver=0.5.0
+pkgver=0.5.1
 pkgrel=1
 pkgdesc=D-Bus service to access fingerprint readers
 arch=(i686 x86_64)
@@ -13,22 +13,25 @@
 makedepends=(intltool gtk-doc)
 groups=(fprint)
 options=(!libtool)
-backup=(etc/pam.d/fingerprint-auth)
 _snap=V_${pkgver//./_}
-source=(http://cgit.freedesktop.org/libfprint/$pkgname/snapshot/$_snap.tar.bz2
-fingerprint-auth)
-md5sums=('9db46783dc9d75e84d63a3addbaa0507'
- '8c7da9ccd28ec87dd2572ddfb85d563e')
+source=(http://people.freedesktop.org/~hadess/$pkgname-$pkgver.tar.xz
+pod.patch)
+md5sums=('e9b40ab0298a50d28b6af728e2a40a1b'
+ '67736669f52d146b67607f35f7b9e36b')
 
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../pod.patch
+}
+
 build() {
-  cd $_snap
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
 --disable-static
   make
 }
 
 package() {
-  cd $_snap
+  cd $pkgname-$pkgver
   make DESTDIR=$pkgdir pammoddir=/usr/lib/security install
-  install -Dm644 ../fingerprint-auth $pkgdir/etc/pam.d/fingerprint-auth
 }

Deleted: fingerprint-auth
===
--- fingerprint-auth2013-08-17 10:18:44 UTC (rev 193150)
+++ fingerprint-auth2013-08-17 10:23:57 UTC (rev 193151)
@@ -1,6 +0,0 @@
-auth  requiredpam_tally.soonerr=succeed file=/var/log/faillog
-auth  requiredpam_shells.so
-auth  requisite   pam_nologin.so
-auth  requiredpam_env.so
-auth  requiredpam_fprintd.so
-auth  optionalpam_permit.so

Added: pod.patch
===
--- pod.patch   (rev 0)
+++ pod.patch   2013-08-17 10:23:57 UTC (rev 193151)
@@ -0,0 +1,9 @@
+diff -u -r fprintd-0.5.1/data/fprintd.pod fprintd-0.5.1-pod/data/fprintd.pod
+--- fprintd-0.5.1/data/fprintd.pod 2013-06-26 13:10:17.0 +0200
 fprintd-0.5.1-pod/data/fprintd.pod 2013-08-17 12:17:36.330332635 +0200
+@@ -100,3 +100,5 @@
+ =over 8
+ 
+ =item Bdbus-daemon, Bgnome-about-me
++
++=back



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

2013-08-17 Thread Jan Steffens
Date: Saturday, August 17, 2013 @ 12:24:46
  Author: heftig
Revision: 193152

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-08-17 10:23:57 UTC (rev 193151)
+++ extra-i686/PKGBUILD 2013-08-17 10:24:46 UTC (rev 193152)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Tom Gundersen t...@jklm.no
-# Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: Thomas Baechler tho...@archlinux.org
-
-pkgname=libfprint
-pkgver=0.5.0
-pkgrel=1
-pkgdesc=Library for fingerprint readers
-arch=(i686 x86_64)
-url=http://www.freedesktop.org/wiki/Software/fprint/libfprint;
-license=(LGPL)
-depends=(libusb nss gdk-pixbuf2)
-groups=(fprint)
-options=(!libtool !emptydirs)
-source=(http://people.freedesktop.org/~hadess/$pkgname-$pkgver.tar.xz)
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-md5sums=('65d118369a47a93be623816f54cdb847')

Copied: libfprint/repos/extra-i686/PKGBUILD (from rev 193151, 
libfprint/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-08-17 10:24:46 UTC (rev 193152)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Thomas Baechler tho...@archlinux.org
+
+pkgname=libfprint
+pkgver=0.5.1
+pkgrel=1
+pkgdesc=Library for fingerprint readers
+arch=(i686 x86_64)
+url=http://www.freedesktop.org/wiki/Software/fprint/libfprint;
+license=(LGPL)
+depends=(libusb nss gdk-pixbuf2)
+groups=(fprint)
+options=(!libtool !emptydirs)
+source=(http://people.freedesktop.org/~hadess/$pkgname-$pkgver.tar.xz)
+md5sums=('f52ac662d89fb82a441dacb0bac36c13')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-08-17 10:23:57 UTC (rev 193151)
+++ extra-x86_64/PKGBUILD   2013-08-17 10:24:46 UTC (rev 193152)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Tom Gundersen t...@jklm.no
-# Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: Thomas Baechler tho...@archlinux.org
-
-pkgname=libfprint
-pkgver=0.5.0
-pkgrel=1
-pkgdesc=Library for fingerprint readers
-arch=(i686 x86_64)
-url=http://www.freedesktop.org/wiki/Software/fprint/libfprint;
-license=(LGPL)
-depends=(libusb nss gdk-pixbuf2)
-groups=(fprint)
-options=(!libtool !emptydirs)
-source=(http://people.freedesktop.org/~hadess/$pkgname-$pkgver.tar.xz)
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-md5sums=('65d118369a47a93be623816f54cdb847')

Copied: libfprint/repos/extra-x86_64/PKGBUILD (from rev 193151, 
libfprint/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-08-17 10:24:46 UTC (rev 193152)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Thomas Baechler tho...@archlinux.org
+
+pkgname=libfprint
+pkgver=0.5.1
+pkgrel=1
+pkgdesc=Library for fingerprint readers
+arch=(i686 x86_64)
+url=http://www.freedesktop.org/wiki/Software/fprint/libfprint;
+license=(LGPL)
+depends=(libusb nss gdk-pixbuf2)
+groups=(fprint)
+options=(!libtool !emptydirs)
+source=(http://people.freedesktop.org/~hadess/$pkgname-$pkgver.tar.xz)
+md5sums=('f52ac662d89fb82a441dacb0bac36c13')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2013-08-17 Thread Jan Steffens
Date: Saturday, August 17, 2013 @ 12:25:30
  Author: heftig
Revision: 193153

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

Added:
  fprintd/repos/extra-i686/PKGBUILD
(from rev 193152, fprintd/trunk/PKGBUILD)
  fprintd/repos/extra-i686/pod.patch
(from rev 193152, fprintd/trunk/pod.patch)
  fprintd/repos/extra-x86_64/PKGBUILD
(from rev 193152, fprintd/trunk/PKGBUILD)
  fprintd/repos/extra-x86_64/pod.patch
(from rev 193152, fprintd/trunk/pod.patch)
Deleted:
  fprintd/repos/extra-i686/PKGBUILD
  fprintd/repos/extra-i686/fingerprint-auth
  fprintd/repos/extra-x86_64/PKGBUILD
  fprintd/repos/extra-x86_64/fingerprint-auth

---+
 /PKGBUILD |   74 
 extra-i686/PKGBUILD   |   34 --
 extra-i686/fingerprint-auth   |6 ---
 extra-i686/pod.patch  |9 
 extra-x86_64/PKGBUILD |   34 --
 extra-x86_64/fingerprint-auth |6 ---
 extra-x86_64/pod.patch|9 
 7 files changed, 92 insertions(+), 80 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-08-17 10:24:46 UTC (rev 193152)
+++ extra-i686/PKGBUILD 2013-08-17 10:25:30 UTC (rev 193153)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Nikolay Rysev mad.f...@gmail.com
-
-pkgname=fprintd
-pkgver=0.5.0
-pkgrel=1
-pkgdesc=D-Bus service to access fingerprint readers
-arch=(i686 x86_64)
-url=http://www.freedesktop.org/wiki/Software/fprint/fprintd;
-license=(GPL)
-depends=(libfprint dbus-glib polkit)
-makedepends=(intltool gtk-doc)
-groups=(fprint)
-options=(!libtool)
-backup=(etc/pam.d/fingerprint-auth)
-_snap=V_${pkgver//./_}
-source=(http://cgit.freedesktop.org/libfprint/$pkgname/snapshot/$_snap.tar.bz2
-fingerprint-auth)
-md5sums=('9db46783dc9d75e84d63a3addbaa0507'
- '8c7da9ccd28ec87dd2572ddfb85d563e')
-
-build() {
-  cd $_snap
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
---disable-static
-  make
-}
-
-package() {
-  cd $_snap
-  make DESTDIR=$pkgdir pammoddir=/usr/lib/security install
-  install -Dm644 ../fingerprint-auth $pkgdir/etc/pam.d/fingerprint-auth
-}

Copied: fprintd/repos/extra-i686/PKGBUILD (from rev 193152, 
fprintd/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-08-17 10:25:30 UTC (rev 193153)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer:
+# Contributor: Nikolay Rysev mad.f...@gmail.com
+
+pkgname=fprintd
+pkgver=0.5.1
+pkgrel=1
+pkgdesc=D-Bus service to access fingerprint readers
+arch=(i686 x86_64)
+url=http://www.freedesktop.org/wiki/Software/fprint/fprintd;
+license=(GPL)
+depends=(libfprint dbus-glib polkit)
+makedepends=(intltool gtk-doc)
+groups=(fprint)
+options=(!libtool)
+_snap=V_${pkgver//./_}
+source=(http://people.freedesktop.org/~hadess/$pkgname-$pkgver.tar.xz
+pod.patch)
+md5sums=('e9b40ab0298a50d28b6af728e2a40a1b'
+ '67736669f52d146b67607f35f7b9e36b')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../pod.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
+--disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir pammoddir=/usr/lib/security install
+}

Deleted: extra-i686/fingerprint-auth
===
--- extra-i686/fingerprint-auth 2013-08-17 10:24:46 UTC (rev 193152)
+++ extra-i686/fingerprint-auth 2013-08-17 10:25:30 UTC (rev 193153)
@@ -1,6 +0,0 @@
-auth  requiredpam_tally.soonerr=succeed file=/var/log/faillog
-auth  requiredpam_shells.so
-auth  requisite   pam_nologin.so
-auth  requiredpam_env.so
-auth  requiredpam_fprintd.so
-auth  optionalpam_permit.so

Copied: fprintd/repos/extra-i686/pod.patch (from rev 193152, 
fprintd/trunk/pod.patch)
===
--- extra-i686/pod.patch(rev 0)
+++ extra-i686/pod.patch2013-08-17 10:25:30 UTC (rev 193153)
@@ -0,0 +1,9 @@
+diff -u -r fprintd-0.5.1/data/fprintd.pod fprintd-0.5.1-pod/data/fprintd.pod
+--- fprintd-0.5.1/data/fprintd.pod 2013-06-26 13:10:17.0 +0200
 fprintd-0.5.1-pod/data/fprintd.pod 2013-08-17 12:17:36.330332635 +0200
+@@ -100,3 +100,5 @@
+ =over 8
+ 
+ =item Bdbus-daemon, Bgnome-about-me
++
++=back

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-08-17 10:24:46 UTC (rev 193152)
+++ extra-x86_64/PKGBUILD   2013-08-17 10:25:30 UTC (rev 193153)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Nikolay Rysev mad.f...@gmail.com
-
-pkgname=fprintd
-pkgver=0.5.0
-pkgrel=1
-pkgdesc=D-Bus service to access fingerprint readers
-arch=(i686 x86_64)

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

2013-08-17 Thread Ángel Velásquez
Date: Saturday, August 17, 2013 @ 12:28:25
  Author: angvp
Revision: 193154

upgpkg: net-snmp 5.7.2-8

Changed dependencies to setuptools instead distribute

Modified:
  net-snmp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 10:25:30 UTC (rev 193153)
+++ PKGBUILD2013-08-17 10:28:25 UTC (rev 193154)
@@ -4,13 +4,13 @@
 
 pkgname=net-snmp
 pkgver=5.7.2
-pkgrel=7
+pkgrel=8
 pkgdesc=A suite of applications used to implement SNMP v1, SNMP v2c and SNMP 
v3 using both IPv4 and IPv6
 arch=('i686' 'x86_64')
 url=http://www.net-snmp.org/;
 license=('BSD')
 depends=('openssl' 'libnl' 'pciutils')
-makedepends=('python2-distribute')
+makedepends=('python2-setuptools')
 optdepends=('perl-term-readkey: for snmpcheck application'
 'perl-tk: for snmpcheck and tkmib applications'
 'python2: for the python modules')



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

2013-08-17 Thread Ángel Velásquez
Date: Saturday, August 17, 2013 @ 12:31:32
  Author: angvp
Revision: 193155

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

Added:
  net-snmp/repos/testing-i686/
  net-snmp/repos/testing-i686/PKGBUILD
(from rev 193154, net-snmp/trunk/PKGBUILD)
  net-snmp/repos/testing-i686/libnl32.patch
(from rev 193154, net-snmp/trunk/libnl32.patch)
  net-snmp/repos/testing-i686/snmpd.service
(from rev 193154, net-snmp/trunk/snmpd.service)
  net-snmp/repos/testing-i686/snmptrapd.service
(from rev 193154, net-snmp/trunk/snmptrapd.service)
  net-snmp/repos/testing-x86_64/
  net-snmp/repos/testing-x86_64/PKGBUILD
(from rev 193154, net-snmp/trunk/PKGBUILD)
  net-snmp/repos/testing-x86_64/libnl32.patch
(from rev 193154, net-snmp/trunk/libnl32.patch)
  net-snmp/repos/testing-x86_64/snmpd.service
(from rev 193154, net-snmp/trunk/snmpd.service)
  net-snmp/repos/testing-x86_64/snmptrapd.service
(from rev 193154, net-snmp/trunk/snmptrapd.service)

--+
 testing-i686/PKGBUILD|   58 ++
 testing-i686/libnl32.patch   |   80 +
 testing-i686/snmpd.service   |   12 +
 testing-i686/snmptrapd.service   |   12 +
 testing-x86_64/PKGBUILD  |   58 ++
 testing-x86_64/libnl32.patch |   80 +
 testing-x86_64/snmpd.service |   12 +
 testing-x86_64/snmptrapd.service |   12 +
 8 files changed, 324 insertions(+)

Copied: net-snmp/repos/testing-i686/PKGBUILD (from rev 193154, 
net-snmp/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-08-17 10:31:32 UTC (rev 193155)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer:
+# Contributor: Dale Blount d...@archlinux.org
+
+pkgname=net-snmp
+pkgver=5.7.2
+pkgrel=8
+pkgdesc=A suite of applications used to implement SNMP v1, SNMP v2c and SNMP 
v3 using both IPv4 and IPv6
+arch=('i686' 'x86_64')
+url=http://www.net-snmp.org/;
+license=('BSD')
+depends=('openssl' 'libnl' 'pciutils')
+makedepends=('python2-setuptools')
+optdepends=('perl-term-readkey: for snmpcheck application'
+'perl-tk: for snmpcheck and tkmib applications'
+'python2: for the python modules')
+options=('!libtool' '!emptydirs' '!makeflags')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.asc}
+snmpd.service snmptrapd.service libnl32.patch)
+sha1sums=('c493027907f32400648244d81117a126aecd27ee'
+  'SKIP'
+  '84e32c54d32e6b608747054e04a3ddfe6d6638cc'
+  '0244e91c7baa0abebfb5c0560e8ce04c966c5992'
+  '74a9848b95f63378eb1753fc309d2b74de5afb0f')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+# 
http://sourceforge.net/tracker/index.php?func=detailaid=3250304group_id=12694atid=112694
+  patch -Np1 -i $srcdir/libnl32.patch
+  autoreconf -f -i
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  PYTHONPROG=/usr/bin/python2 ./configure --prefix=/usr \
+--sysconfdir=/etc --sbindir=/usr/bin \
+--mandir=/usr/share/man \
+--enable-ucd-snmp-compatibility \
+--enable-ipv6 \
+--with-python-modules \
+--with-default-snmp-version=3 \
+--with-sys-contact=root@localhost \
+--with-sys-location=Unknown \
+--with-logfile=/var/log/snmpd.log \
+--with-mib-modules=host misc/ipfwacc ucd-snmp/diskio tunnel 
ucd-snmp/dlmod \
+--with-persistent-directory=/var/net-snmp \
+--disable-static
+  make NETSNMP_DONT_CHECK_VERSION=1
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  sed -i -e s:install --basedir=\$\$dir:install --basedir=\$\$dir 
--root=${pkgdir}: Makefile
+  make DESTDIR=${pkgdir} INSTALL_PREFIX=${pkgdir} INSTALLDIRS=vendor 
install
+  install -D -m644 ${srcdir}/snmpd.service 
${pkgdir}/usr/lib/systemd/system/snmpd.service
+  install -D -m644 ${srcdir}/snmptrapd.service 
${pkgdir}/usr/lib/systemd/system/snmptrapd.service
+  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: net-snmp/repos/testing-i686/libnl32.patch (from rev 193154, 
net-snmp/trunk/libnl32.patch)
===
--- testing-i686/libnl32.patch  (rev 0)
+++ testing-i686/libnl32.patch  2013-08-17 10:31:32 UTC (rev 193155)
@@ -0,0 +1,80 @@
+diff -u -r net-snmp-5.7.1/agent/mibgroup/mibII/tcpTable.c 
net-snmp-5.7.1-libnl32/agent/mibgroup/mibII/tcpTable.c
+--- net-snmp-5.7.1/agent/mibgroup/mibII/tcpTable.c 2011-09-28 
06:53:47.0 +0200
 net-snmp-5.7.1-libnl32/agent/mibgroup/mibII/tcpTable.c 2012-02-09 
20:02:49.136022132 +0100
+@@ -566,8 +566,9 @@
+ static int
+ tcpTable_load_netlink(void)
+ {
++  int err;
+   /*  TODO: perhaps use permanent nl handle? */
+-  struct nl_handle *nl = nl_handle_alloc();
++  struct nl_sock *nl = nl_socket_alloc();
+ 
+   if (nl == NULL) {
+ 

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

2013-08-17 Thread Ángel Velásquez
Date: Saturday, August 17, 2013 @ 12:39:27
  Author: angvp
Revision: 193156

upgpkg: django 1.5.2-2

Changed dependencies to setuptools instead distribute

Modified:
  django/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 10:31:32 UTC (rev 193155)
+++ PKGBUILD2013-08-17 10:39:27 UTC (rev 193156)
@@ -5,12 +5,12 @@
 pkgbase=django
 pkgname=('python-django' 'python2-django')
 pkgver=1.5.2
-pkgrel=1
+pkgrel=2
 pkgdesc=A high-level Python Web framework that encourages rapid development 
and clean design
 arch=('any')
 license=('BSD')
 url=http://www.djangoproject.com/;
-makedepends=('python2' 'python2-distribute' 'python' 'python-distribute')
+makedepends=('python2' 'python2-setuptools' 'python' 'python-setuptools')
 
source=(https://www.djangoproject.com/m/releases/${pkgver:0:3}/Django-$pkgver.tar.gz;)
 md5sums=('26e83e6394a15a86212777d5f61eae86')
 sha256sums=('9a4b19adaaa096843425d426ffbeb928e85d861ff9c106527cb747dc67b434da')



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

2013-08-17 Thread Ángel Velásquez
Date: Saturday, August 17, 2013 @ 12:40:09
  Author: angvp
Revision: 193157

archrelease: copy trunk to testing-any

Added:
  django/repos/testing-any/
  django/repos/testing-any/PKGBUILD
(from rev 193156, django/trunk/PKGBUILD)

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

Copied: django/repos/testing-any/PKGBUILD (from rev 193156, 
django/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-08-17 10:40:09 UTC (rev 193157)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Dan McGee d...@archlinux.org
+# Contributor: Shahar Weiss swei...@gmx.net
+
+pkgbase=django
+pkgname=('python-django' 'python2-django')
+pkgver=1.5.2
+pkgrel=2
+pkgdesc=A high-level Python Web framework that encourages rapid development 
and clean design
+arch=('any')
+license=('BSD')
+url=http://www.djangoproject.com/;
+makedepends=('python2' 'python2-setuptools' 'python' 'python-setuptools')
+source=(https://www.djangoproject.com/m/releases/${pkgver:0:3}/Django-$pkgver.tar.gz;)
+md5sums=('26e83e6394a15a86212777d5f61eae86')
+sha256sums=('9a4b19adaaa096843425d426ffbeb928e85d861ff9c106527cb747dc67b434da')
+
+build() {
+  cd $srcdir/Django-$pkgver
+  python2 setup.py build
+}
+
+package_python-django() {
+  depends=('python')
+  optdepends=('python-psycopg2: for PostgreSQL backend')
+  cd $srcdir/Django-$pkgver
+  python setup.py install --root=$pkgdir --optimize=1
+
+  mv $pkgdir/usr/bin/django-admin.py $pkgdir/usr/bin/django-admin3.py
+  install -Dm644 extras/django_bash_completion \
+$pkgdir/usr/share/bash-completion/completions/django-admin3.py
+
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-django() {
+  depends=('python2')
+  optdepends=('mysql-python: for MySQL backend'
+  'python2-psycopg2: for PostgreSQL backend')
+  replaces=('django')
+  conflicts=('django')
+  cd $srcdir/Django-$pkgver
+  python2 setup.py install --root=$pkgdir --optimize=1
+
+  ln -s django-admin.py $pkgdir/usr/bin/django-admin2.py
+  install -Dm644 extras/django_bash_completion \
+$pkgdir/usr/share/bash-completion/completions/django-admin.py
+  ln -s django-admin.py \
+$pkgdir/usr/share/bash-completion/completions/manage.py
+
+  find $pkgdir/usr/lib/python2.7/site-packages/django/ -name '*.py' | \
+xargs sed -i s|#!/usr/bin/env python$|#!/usr/bin/env python2|
+
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}



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

2013-08-17 Thread Ángel Velásquez
Date: Saturday, August 17, 2013 @ 12:41:44
  Author: angvp
Revision: 193158

upgpkg: pyopengl 3.0.2-4

Changed dependencies to setuptools instead distribute

Modified:
  pyopengl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 10:40:09 UTC (rev 193157)
+++ PKGBUILD2013-08-17 10:41:44 UTC (rev 193158)
@@ -8,12 +8,12 @@
 pkgbase=pyopengl
 pkgname=('python2-opengl' 'python-opengl')
 pkgver=3.0.2
-pkgrel=3
+pkgrel=4
 pkgdesc=The cross platform Python binding to OpenGL and related APIs
 url=http://pyopengl.sourceforge.net/;
 license=('BSD')
 arch=('any')
-makedepends=('freeglut' 'python2-distribute' 'python-distribute')
+makedepends=('freeglut' 'python2-setuptools' 'python-setuptools')
 
source=(http://pypi.python.org/packages/source/P/PyOpenGL/PyOpenGL-${pkgver}.tar.gz;
 'LICENSE')
 md5sums=('77becc24ffc0a6b28030aa109ad7ff8b'



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

2013-08-17 Thread Ángel Velásquez
Date: Saturday, August 17, 2013 @ 12:42:25
  Author: angvp
Revision: 193159

archrelease: copy trunk to testing-any

Added:
  pyopengl/repos/testing-any/
  pyopengl/repos/testing-any/LICENSE
(from rev 193158, pyopengl/trunk/LICENSE)
  pyopengl/repos/testing-any/PKGBUILD
(from rev 193158, pyopengl/trunk/PKGBUILD)

--+
 LICENSE  |   30 ++
 PKGBUILD |   50 ++
 2 files changed, 80 insertions(+)

Copied: pyopengl/repos/testing-any/LICENSE (from rev 193158, 
pyopengl/trunk/LICENSE)
===
--- testing-any/LICENSE (rev 0)
+++ testing-any/LICENSE 2013-08-17 10:42:25 UTC (rev 193159)
@@ -0,0 +1,30 @@
+# Copyright (c) 2006-2008 Alex Holkner
+# 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 pyglet 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 THE
+# COPYRIGHT OWNER OR CONTRIBUTORS 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: pyopengl/repos/testing-any/PKGBUILD (from rev 193158, 
pyopengl/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-08-17 10:42:25 UTC (rev 193159)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer:
+# Contributor: Josh Taylor joshtaylor.m...@gmail.com
+# Contributor: simo s...@archlinux.org
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgbase=pyopengl
+pkgname=('python2-opengl' 'python-opengl')
+pkgver=3.0.2
+pkgrel=4
+pkgdesc=The cross platform Python binding to OpenGL and related APIs
+url=http://pyopengl.sourceforge.net/;
+license=('BSD')
+arch=('any')
+makedepends=('freeglut' 'python2-setuptools' 'python-setuptools')
+source=(http://pypi.python.org/packages/source/P/PyOpenGL/PyOpenGL-${pkgver}.tar.gz;
+'LICENSE')
+md5sums=('77becc24ffc0a6b28030aa109ad7ff8b'
+ '0b53c508a63e5dbaf44cdfb0fa103b3a')
+
+prepare() {
+cp -r PyOpenGL-${pkgver} python-PyOpenGL-${pkgver}
+}
+
+package_python2-opengl() {
+depends=('python2' 'freeglut')
+   conflicts=('python-pyopengl' 'python-opengl=3.0.1-4')
+   replaces=('python-pyopengl' 'python-opengl=3.0.1-4')
+
+cd PyOpenGL-${pkgver}
+   python2 setup.py install --root=${pkgdir} --optimize=1
+   install -Dm644 ${srcdir}/LICENSE \
+   ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+# Fix the shebang
+sed -i 's|#!/usr/bin/env python|#!/usr/bin/python2|' \
+  ${pkgdir}/usr/lib/python2.7/site-packages/OpenGL/Tk/__init__.py
+sed -i 's|#! /usr/bin/env python|#!/usr/bin/python2|' \
+  ${pkgdir}/usr/lib/python2.7/site-packages/OpenGL/arrays/{_,}buffers.py
+}
+
+package_python-opengl() {
+depends=('python' 'freeglut')
+ 
+cd python-PyOpenGL-${pkgver}
+   python setup.py install --root=${pkgdir} --optimize=1
+   install -Dm644 ${srcdir}/LICENSE \
+   ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}



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

2013-08-17 Thread Gaetan Bisson
Date: Saturday, August 17, 2013 @ 12:45:18
  Author: bisson
Revision: 193160

clarify license

Modified:
  nmap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 10:42:25 UTC (rev 193159)
+++ PKGBUILD2013-08-17 10:45:18 UTC (rev 193160)
@@ -9,7 +9,7 @@
 pkgdesc='Utility for network discovery and security auditing'
 url='http://nmap.org/'
 arch=('i686' 'x86_64')
-license=('GPL')
+license=('GPL2')
 makedepends=('pygtk')
 optdepends=('pygtk: zenmap'
 'sudo: privilege escalation for zenmap'



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

2013-08-17 Thread Gaetan Bisson
Date: Saturday, August 17, 2013 @ 12:47:25
  Author: bisson
Revision: 193161

clarify license

Modified:
  vim-spell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 10:45:18 UTC (rev 193160)
+++ PKGBUILD2013-08-17 10:47:25 UTC (rev 193161)
@@ -7,7 +7,7 @@
 pkgdesc='Language files for Vim spell checking'
 arch=('any')
 url='ftp://ftp.vim.org/pub/vim/runtime/spell/'
-license=('LGPL')
+license=('LGPL2.1' 'custom')
 depends=('vim')
 
 #pkgname=($(curl $url | awk '(!/\./!/check/){print vim-spell-$NF}'))



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

2013-08-17 Thread Ángel Velásquez
Date: Saturday, August 17, 2013 @ 12:48:22
  Author: angvp
Revision: 193163

archrelease: copy trunk to testing-any

Added:
  python-pip/repos/testing-any/
  python-pip/repos/testing-any/PKGBUILD
(from rev 193162, python-pip/trunk/PKGBUILD)

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

Copied: python-pip/repos/testing-any/PKGBUILD (from rev 193162, 
python-pip/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-08-17 10:48:22 UTC (rev 193163)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Dan McGee d...@archlinux.org
+# Contributor: Sebastien Binet binet@lblbox
+
+pkgname=('python-pip' 'python2-pip')
+pkgver=1.4.1
+pkgrel=2
+pkgdesc=An easy_install replacement for installing pypi python packages
+url=http://www.pip-installer.org/;
+arch=('any')
+license=('MIT')
+makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
+source=(http://pypi.python.org/packages/source/p/pip/pip-${pkgver}.tar.gz)
+
+package_python-pip() {
+  depends=('python' 'python-setuptools')
+
+  cd $srcdir/pip-$pkgver
+  python setup.py build
+  python setup.py install --prefix=/usr --root=$pkgdir
+
+  ln $pkgdir/usr/bin/pip $pkgdir/usr/bin/pip3
+
+  install -D -m644 LICENSE.txt \
+ $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pip() {
+  depends=('python2' 'python2-setuptools')
+  conflicts=('python-pyinstall')
+  replaces=('python-pyinstall')
+
+  cd $srcdir/pip-$pkgver
+  python2 setup.py build
+  python2 setup.py install --prefix=/usr --root=$pkgdir
+  
+  mv $pkgdir/usr/bin/pip $pkgdir/usr/bin/pip2
+  sed -i s|#!/usr/bin/env python$|#!/usr/bin/env python2| \
+${pkgdir}/usr/lib/python2.7/site-packages/pip/__init__.py
+  
+  install -D -m644 LICENSE.txt \
+ $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+md5sums=('6afbb46aeb48abac658d4df742bff714')
+sha256sums=('4e7a06554711a624c35d0c646f63674b7f6bfc7f80221bf1eb1f631bd890d04e')



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

2013-08-17 Thread Ángel Velásquez
Date: Saturday, August 17, 2013 @ 12:47:41
  Author: angvp
Revision: 193162

upgpkg: python-pip 1.4.1-2

Changed dependencies to setuptools instead distribute

Modified:
  python-pip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 10:47:25 UTC (rev 193161)
+++ PKGBUILD2013-08-17 10:47:41 UTC (rev 193162)
@@ -4,16 +4,16 @@
 
 pkgname=('python-pip' 'python2-pip')
 pkgver=1.4.1
-pkgrel=1
+pkgrel=2
 pkgdesc=An easy_install replacement for installing pypi python packages
 url=http://www.pip-installer.org/;
 arch=('any')
 license=('MIT')
-makedepends=('python' 'python-distribute' 'python2' 'python2-distribute')
+makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
 source=(http://pypi.python.org/packages/source/p/pip/pip-${pkgver}.tar.gz)
 
 package_python-pip() {
-  depends=('python' 'python-distribute')
+  depends=('python' 'python-setuptools')
 
   cd $srcdir/pip-$pkgver
   python setup.py build
@@ -26,7 +26,7 @@
 }
 
 package_python2-pip() {
-  depends=('python2' 'python2-distribute')
+  depends=('python2' 'python2-setuptools')
   conflicts=('python-pyinstall')
   replaces=('python-pyinstall')
 



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

2013-08-17 Thread Ángel Velásquez
Date: Saturday, August 17, 2013 @ 12:48:56
  Author: angvp
Revision: 193164

upgpkg: python-nose 1.3.0-4

Changed dependencies to setuptools instead distribute

Modified:
  python-nose/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 10:48:22 UTC (rev 193163)
+++ PKGBUILD2013-08-17 10:48:56 UTC (rev 193164)
@@ -7,12 +7,12 @@
 pkgbase=python-nose
 pkgname=('python-nose' 'python2-nose' 'python-nose-doc')
 pkgver=1.3.0
-pkgrel=3
+pkgrel=4
 pkgdesc=A discovery-based unittest extension
 arch=('any')
 url='http://readthedocs.org/docs/nose/'
 license=('LGPL2.1')
-makedepends=('python' 'python-distribute' 'python2' 'python2-distribute' 
'python2-sphinx')
+makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools' 
'python2-sphinx')
 source=(http://pypi.python.org/packages/source/n/nose/nose-${pkgver}.tar.gz;)
 md5sums=('95d6d32b9d6b029c3c65674bd9e7eabe')
 
@@ -23,14 +23,14 @@
 }
 
 package_python-nose() {
-  depends=('python' 'python-distribute')
+  depends=('python' 'python-setuptools')
   cd $srcdir/nose-$pkgver
   python3 setup.py install --prefix=/usr --root=${pkgdir}
   mv $pkgdir/usr/bin/nosetests $pkgdir/usr/bin/nosetests3
 }
 
 package_python2-nose() {
-  depends=('python2' 'python2-distribute')
+  depends=('python2' 'python2-setuptools')
   cd $srcdir/nose2-$pkgver
   python2 setup.py install --prefix=/usr --root=${pkgdir}
   mv $pkgdir/usr/bin/nosetests $pkgdir/usr/bin/nosetests2



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

2013-08-17 Thread Ángel Velásquez
Date: Saturday, August 17, 2013 @ 12:49:42
  Author: angvp
Revision: 193165

archrelease: copy trunk to testing-any

Added:
  python-nose/repos/testing-any/
  python-nose/repos/testing-any/PKGBUILD
(from rev 193164, python-nose/trunk/PKGBUILD)

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

Copied: python-nose/repos/testing-any/PKGBUILD (from rev 193164, 
python-nose/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-08-17 10:49:42 UTC (rev 193165)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Dan McGee d...@archlinux.org
+# Contributor: Angel Velasquez an...@archlinux.org
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+# Contributor: Cilyan Olowen gak...@gmail.com
+
+pkgbase=python-nose
+pkgname=('python-nose' 'python2-nose' 'python-nose-doc')
+pkgver=1.3.0
+pkgrel=4
+pkgdesc=A discovery-based unittest extension
+arch=('any')
+url='http://readthedocs.org/docs/nose/'
+license=('LGPL2.1')
+makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools' 
'python2-sphinx')
+source=(http://pypi.python.org/packages/source/n/nose/nose-${pkgver}.tar.gz;)
+md5sums=('95d6d32b9d6b029c3c65674bd9e7eabe')
+
+build() {
+  cd $srcdir/nose-$pkgver
+  sed -i -e s:man/man1:share/man/man1:g setup.py
+  cp -R $srcdir/nose-$pkgver $srcdir/nose2-$pkgver
+}
+
+package_python-nose() {
+  depends=('python' 'python-setuptools')
+  cd $srcdir/nose-$pkgver
+  python3 setup.py install --prefix=/usr --root=${pkgdir}
+  mv $pkgdir/usr/bin/nosetests $pkgdir/usr/bin/nosetests3
+}
+
+package_python2-nose() {
+  depends=('python2' 'python2-setuptools')
+  cd $srcdir/nose2-$pkgver
+  python2 setup.py install --prefix=/usr --root=${pkgdir}
+  mv $pkgdir/usr/bin/nosetests $pkgdir/usr/bin/nosetests2
+  rm -rf $pkgdir/usr/share
+}
+
+package_python-nose-doc(){
+  pkgdesc=Nose documentation and examples
+  cd $srcdir/nose-$pkgver/doc
+  make SPHINXBUILD=sphinx-build2 html
+  mkdir -p $pkgdir/usr/share/doc/python-nose
+  cp -r .build/html $pkgdir/usr/share/doc/python-nose
+  cp -r ../examples $pkgdir/usr/share/doc/python-nose
+}



[arch-commits] Commit in python2-eyed3/repos (3 files)

2013-08-17 Thread Jelle van der Waa
Date: Saturday, August 17, 2013 @ 13:04:22
  Author: jelle
Revision: 95821

archrelease: copy trunk to community-testing-any

Added:
  python2-eyed3/repos/community-testing-any/
  python2-eyed3/repos/community-testing-any/PKGBUILD
(from rev 95820, python2-eyed3/trunk/PKGBUILD)
  python2-eyed3/repos/community-testing-any/fix_setting_tcmp_frame.patch
(from rev 95820, python2-eyed3/trunk/fix_setting_tcmp_frame.patch)

--+
 PKGBUILD |   26 ++
 fix_setting_tcmp_frame.patch |   21 +
 2 files changed, 47 insertions(+)

Copied: python2-eyed3/repos/community-testing-any/PKGBUILD (from rev 95820, 
python2-eyed3/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-08-17 11:04:22 UTC (rev 95821)
@@ -0,0 +1,26 @@
+#$Id$
+#Maintainer: Aaron Griffin aa...@archlinux.org
+#Contributor: Federico Quagliata (quaqo) qu...@despammed.com
+#Contributor: cdhotfire cdhotf...@gmail.com
+
+pkgname=python2-eyed3
+pkgver=0.7.3
+pkgrel=2
+pkgdesc=A Python module and program for processing information about mp3 
files
+arch=(any)
+url=http://eyed3.nicfit.net/;
+license=('GPL')
+depends=('python2')
+makedepends=('python2-setuptools')
+source=(http://eyed3.nicfit.net/releases/eyeD3-$pkgver.tgz)
+options=(!emptydirs)
+md5sums=('584431de2a8439039890e02b69a377d5')
+build() {
+  cd $srcdir/eyeD3-$pkgver
+  python2 setup.py build
+}
+package() {
+  cd $srcdir/eyeD3-$pkgver
+  python2 setup.py install --root=${pkgdir} --optimize=1 
+  sed -i 's/python/python2/' $pkgdir/usr/bin/eyeD3
+} 

Copied: python2-eyed3/repos/community-testing-any/fix_setting_tcmp_frame.patch 
(from rev 95820, python2-eyed3/trunk/fix_setting_tcmp_frame.patch)
===
--- community-testing-any/fix_setting_tcmp_frame.patch  
(rev 0)
+++ community-testing-any/fix_setting_tcmp_frame.patch  2013-08-17 11:04:22 UTC 
(rev 95821)
@@ -0,0 +1,21 @@
+# HG changeset patch
+# User Travis Shirk tra...@pobox.com
+# Date 1366683753 21600
+# Branch stable
+# Node ID bfbfc2c5709c4084ecaeed3410600d94d2a21a0d
+# Parent  e2ebd8a246ecca8340bbc4ac858c7a946524571f
+Fix for setting of non standard text frames. Fixes #26
+
+diff -r e2ebd8a246ecca8340bbc4ac858c7a946524571f -r 
bfbfc2c5709c4084ecaeed3410600d94d2a21a0d src/eyed3/id3/frames.py
+--- a/src/eyed3/id3/frames.py  Wed Mar 13 21:28:01 2013 -0600
 b/src/eyed3/id3/frames.py  Mon Apr 22 20:22:33 2013 -0600
+@@ -1364,7 +1364,8 @@
+ the same Id is already in the list it's value is changed, otherwise
+ the frame is added.
+ '''
+-assert(fid[0] == T and fid in list(ID3_FRAMES.keys()))
++assert(fid[0] == T and (fid in ID3_FRAMES or
++  fid in NONSTANDARD_ID3_FRAMES))
+ 
+ if fid in self:
+ self[fid][0].text = text



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

2013-08-17 Thread Jelle van der Waa
Date: Saturday, August 17, 2013 @ 13:03:59
  Author: jelle
Revision: 95820

upgpkg: python2-eyed3 0.7.3-2

Replacement of distribute dependency in favour of setuptools

Modified:
  python2-eyed3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 10:12:54 UTC (rev 95819)
+++ PKGBUILD2013-08-17 11:03:59 UTC (rev 95820)
@@ -5,13 +5,13 @@
 
 pkgname=python2-eyed3
 pkgver=0.7.3
-pkgrel=1
+pkgrel=2
 pkgdesc=A Python module and program for processing information about mp3 
files
 arch=(any)
 url=http://eyed3.nicfit.net/;
 license=('GPL')
 depends=('python2')
-makedepends=('python2-distribute')
+makedepends=('python2-setuptools')
 source=(http://eyed3.nicfit.net/releases/eyeD3-$pkgver.tgz)
 options=(!emptydirs)
 md5sums=('584431de2a8439039890e02b69a377d5')



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

2013-08-17 Thread Jelle van der Waa
Date: Saturday, August 17, 2013 @ 13:16:45
  Author: jelle
Revision: 95822

upgpkg: python-dateutil 2.1-8

Replacement of distribute dependency in favour of setuptools

Modified:
  python-dateutil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 11:04:22 UTC (rev 95821)
+++ PKGBUILD2013-08-17 11:16:45 UTC (rev 95822)
@@ -4,12 +4,12 @@
 pkgbase=python-dateutil
 pkgname=('python-dateutil' 'python2-dateutil')
 pkgver=2.1
-pkgrel=7
+pkgrel=8
 pkgdesc=Provides powerful extensions to the standard datetime module
 arch=('any')
 license=('custom:PYTHON')
 url=http://labix.org/python-dateutil;
-makedepends=('python-distribute' 'python2-distribute' 'python-six' 
'python2-six')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
 
source=(http://pypi.python.org/packages/source/p/python-dateutil/python-dateutil-$pkgver.tar.gz{,.asc}
 python-dateutil-2.1-open-utf-8.patch)
 md5sums=('1534bb15cf311f07afaa3aacba1c028b'
  '4aa0ba908299d983781c58ec0640ef2b'



[arch-commits] Commit in python-dateutil/repos (3 files)

2013-08-17 Thread Jelle van der Waa
Date: Saturday, August 17, 2013 @ 13:17:09
  Author: jelle
Revision: 95823

archrelease: copy trunk to community-testing-any

Added:
  python-dateutil/repos/community-testing-any/
  python-dateutil/repos/community-testing-any/PKGBUILD
(from rev 95822, python-dateutil/trunk/PKGBUILD)
  
python-dateutil/repos/community-testing-any/python-dateutil-2.1-open-utf-8.patch
(from rev 95822, python-dateutil/trunk/python-dateutil-2.1-open-utf-8.patch)

--+
 PKGBUILD |   58 +
 python-dateutil-2.1-open-utf-8.patch |   21 +++
 2 files changed, 79 insertions(+)

Copied: python-dateutil/repos/community-testing-any/PKGBUILD (from rev 95822, 
python-dateutil/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-08-17 11:17:09 UTC (rev 95823)
@@ -0,0 +1,58 @@
+#Maintainer: Jelle van der Waa je...@vdwaa.nl
+#Contributor: lilydjwg lilyd...@gmail.com
+
+pkgbase=python-dateutil
+pkgname=('python-dateutil' 'python2-dateutil')
+pkgver=2.1
+pkgrel=8
+pkgdesc=Provides powerful extensions to the standard datetime module
+arch=('any')
+license=('custom:PYTHON')
+url=http://labix.org/python-dateutil;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six')
+source=(http://pypi.python.org/packages/source/p/python-dateutil/python-dateutil-$pkgver.tar.gz{,.asc}
 python-dateutil-2.1-open-utf-8.patch)
+md5sums=('1534bb15cf311f07afaa3aacba1c028b'
+ '4aa0ba908299d983781c58ec0640ef2b'
+ '4b780c62fc03be161629ee08e35eba6a')
+
+build() {
+  cd $srcdir
+  cp -r  python-dateutil-$pkgver python2-dateutil-$pkgver
+
+  cd python-dateutil-$pkgver
+  patch -Np0 -i $srcdir/python-dateutil-2.1-open-utf-8.patch
+
+}
+
+package_python-dateutil()
+{
+depends=('python' 'python-six')
+  cd $srcdir/python-dateutil-$pkgver
+  python3 setup.py install --root=$pkgdir --optimize=1
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  chmod -R a+r $pkgdir/usr/lib/python3.3/
+
+  # Remove data files
+  rm 
$pkgdir/usr/lib/python3.3/site-packages/dateutil/zoneinfo/zoneinfo--latest.tar.gz
+
+}
+
+package_python2-dateutil()
+{
+depends=('python2' 'python2-six')
+  cd $srcdir/python2-dateutil-$pkgver
+  python2 setup.py install --root=$pkgdir --optimize=1
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+
+  chmod -R a+r $pkgdir/usr/lib/python2.7/
+  rm 
$pkgdir/usr/lib/python2.7/site-packages/dateutil/zoneinfo/zoneinfo--latest.tar.gz
+
+}
+
+check() {
+  cd $srcdir/python-dateutil-$pkgver
+  python3 test.py
+
+  cd $srcdir/python2-dateutil-$pkgver
+  python2 test.py
+}

Copied: 
python-dateutil/repos/community-testing-any/python-dateutil-2.1-open-utf-8.patch
 (from rev 95822, python-dateutil/trunk/python-dateutil-2.1-open-utf-8.patch)
===
--- community-testing-any/python-dateutil-2.1-open-utf-8.patch  
(rev 0)
+++ community-testing-any/python-dateutil-2.1-open-utf-8.patch  2013-08-17 
11:17:09 UTC (rev 95823)
@@ -0,0 +1,21 @@
+Fix UnicodeDecodeError in setup.py.
+
+https://bugs.gentoo.org/show_bug.cgi?id=410725
+--- setup.py
 setup.py
+@@ -1,5 +1,6 @@
+ #!/usr/bin/python
+ from os.path import isfile, join
++import codecs
+ import glob
+ import os
+ import re
+@@ -13,7 +14,7 @@
+ 
+ TOPDIR = os.path.dirname(__file__) or .
+ VERSION = re.search('__version__ = ([^]+)',
+-open(TOPDIR + /dateutil/__init__.py).read()).group(1)
++codecs.open(TOPDIR + /dateutil/__init__.py, 
encoding='utf-8').read()).group(1)
+ 
+ 
+ setup(name=python-dateutil,



[arch-commits] Commit in firefox-adblock-plus/trunk (PKGBUILD)

2013-08-17 Thread Sergej Pupykin
Date: Saturday, August 17, 2013 @ 13:19:55
  Author: spupykin
Revision: 95824

upgpkg: firefox-adblock-plus 2.3.2-1

upd

Modified:
  firefox-adblock-plus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 11:17:09 UTC (rev 95823)
+++ PKGBUILD2013-08-17 11:19:55 UTC (rev 95824)
@@ -2,8 +2,8 @@
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 
 pkgname=firefox-adblock-plus
-pkgver=2.3.1
-_addons_file=206960
+pkgver=2.3.2
+_addons_file=223356
 pkgrel=1
 pkgdesc=plugin for firefox which block ads and banners
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('unzip')
 noextract=(adblock_plus-$pkgver-fx+tb+fn+sm.xpi)
 
source=(https://addons.mozilla.org/firefox/downloads/file/${_addons_file}/adblock_plus-$pkgver-fx+tb+fn+sm.xpi)
-md5sums=('0ce162b71d2398b46f4e8cc4ddd64cbb')
+md5sums=('1d062796a5ff05d60f20a97677edd437')
 
 package() {
 #  _ffver=`pacman -Q firefox | cut -f2 -d\ | cut -f1-2 -d.`



[arch-commits] Commit in firefox-adblock-plus/repos/community-any (PKGBUILD PKGBUILD)

2013-08-17 Thread Sergej Pupykin
Date: Saturday, August 17, 2013 @ 13:21:00
  Author: spupykin
Revision: 95825

archrelease: copy trunk to community-any

Added:
  firefox-adblock-plus/repos/community-any/PKGBUILD
(from rev 95824, firefox-adblock-plus/trunk/PKGBUILD)
Deleted:
  firefox-adblock-plus/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-17 11:19:55 UTC (rev 95824)
+++ PKGBUILD2013-08-17 11:21:00 UTC (rev 95825)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=firefox-adblock-plus
-pkgver=2.3.1
-_addons_file=206960
-pkgrel=1
-pkgdesc=plugin for firefox which block ads and banners
-arch=('any')
-url=http://adblockplus.org/;
-license=('GPL')
-depends=(firefox)
-makedepends=('unzip')
-noextract=(adblock_plus-$pkgver-fx+tb+fn+sm.xpi)
-source=(https://addons.mozilla.org/firefox/downloads/file/${_addons_file}/adblock_plus-$pkgver-fx+tb+fn+sm.xpi)
-md5sums=('0ce162b71d2398b46f4e8cc4ddd64cbb')
-
-package() {
-#  _ffver=`pacman -Q firefox | cut -f2 -d\ | cut -f1-2 -d.`
-#  depends=(firefox=${_ffver} firefox=${_ffver/0/99})
-
-  cd $srcdir
-  [ $NOEXTRACT -eq 1 ] || unzip adblock_plus-$pkgver-fx+tb+fn+sm.xpi
-  local emid=$(sed -n -e '/\?em:id\?/!d; s/.*\([\{].*[}\]\).*/\1/; 
s/\//g; p; q' install.rdf)
-  local dstdir=$pkgdir/usr/lib/firefox/browser/extensions/${emid}
-  [ -n ${emid} ] || return 1
-  install -d $dstdir
-#  sed -i 
's#em:maxVersion.*/em:maxVersion#em:maxVersion20.*/em:maxVersion#' 
install.rdf
-  cp -R * $dstdir
-  rm $dstdir/*.xpi
-  find $pkgdir -type d -exec chmod 0755 {} \;
-  find $pkgdir -type f -exec chmod 0644 {} \;
-}

Copied: firefox-adblock-plus/repos/community-any/PKGBUILD (from rev 95824, 
firefox-adblock-plus/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-17 11:21:00 UTC (rev 95825)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=firefox-adblock-plus
+pkgver=2.3.2
+_addons_file=223356
+pkgrel=1
+pkgdesc=plugin for firefox which block ads and banners
+arch=('any')
+url=http://adblockplus.org/;
+license=('GPL')
+depends=(firefox)
+makedepends=('unzip')
+noextract=(adblock_plus-$pkgver-fx+tb+fn+sm.xpi)
+source=(https://addons.mozilla.org/firefox/downloads/file/${_addons_file}/adblock_plus-$pkgver-fx+tb+fn+sm.xpi)
+md5sums=('1d062796a5ff05d60f20a97677edd437')
+
+package() {
+#  _ffver=`pacman -Q firefox | cut -f2 -d\ | cut -f1-2 -d.`
+#  depends=(firefox=${_ffver} firefox=${_ffver/0/99})
+
+  cd $srcdir
+  [ $NOEXTRACT -eq 1 ] || unzip adblock_plus-$pkgver-fx+tb+fn+sm.xpi
+  local emid=$(sed -n -e '/\?em:id\?/!d; s/.*\([\{].*[}\]\).*/\1/; 
s/\//g; p; q' install.rdf)
+  local dstdir=$pkgdir/usr/lib/firefox/browser/extensions/${emid}
+  [ -n ${emid} ] || return 1
+  install -d $dstdir
+#  sed -i 
's#em:maxVersion.*/em:maxVersion#em:maxVersion20.*/em:maxVersion#' 
install.rdf
+  cp -R * $dstdir
+  rm $dstdir/*.xpi
+  find $pkgdir -type d -exec chmod 0755 {} \;
+  find $pkgdir -type f -exec chmod 0644 {} \;
+}



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

2013-08-17 Thread Jelle van der Waa
Date: Saturday, August 17, 2013 @ 14:13:56
  Author: jelle
Revision: 95826

upgpkg: python-pyopencl 1:2013.1-2

Replacement of distribute dependency in favour of setuptools

Modified:
  python-pyopencl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 11:21:00 UTC (rev 95825)
+++ PKGBUILD2013-08-17 12:13:56 UTC (rev 95826)
@@ -3,13 +3,14 @@
 
 pkgbase=python-pyopencl
 pkgname=('python2-pyopencl' 'python-pyopencl' 'pyopencl-headers')
-pkgver=2013.2
-pkgrel=1
+pkgver=2013.1
+pkgrel=2
 pkgdesc=A complete, object-oriented language binding of OpenCL to Python
 arch=('i686' 'x86_64')
 url=http://mathema.tician.de/software/pyopencl;
 license=('custom')
-makedepends=('boost-libs' 'ctags' 'python2-distribute' 'python-distribute' 
'libcl' 'opencl-headers' 'mesa' 'boost' 'python2-mako' 'python-mako' 
'python-numpy' 'python2-numpy')
+epoch=1
+makedepends=('boost-libs' 'ctags' 'python2-setuptools' 'python-setuptools' 
'libcl' 'opencl-headers' 'mesa' 'boost' 'python2-mako' 'python-mako' 
'python-numpy' 'python2-numpy')
 
source=(http://pypi.python.org/packages/source/p/pyopencl/pyopencl-${pkgver}.tar.gz;
 'LICENSE.txt')
 sha1sums=('76331c9042d0286c7c722407dec0fb975a6b340c'



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

2013-08-17 Thread Jelle van der Waa
Date: Saturday, August 17, 2013 @ 14:14:40
  Author: jelle
Revision: 95827

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

Added:
  python-pyopencl/repos/community-testing-i686/
  python-pyopencl/repos/community-testing-i686/LICENSE.txt
(from rev 95826, python-pyopencl/trunk/LICENSE.txt)
  python-pyopencl/repos/community-testing-i686/PKGBUILD
(from rev 95826, python-pyopencl/trunk/PKGBUILD)
  python-pyopencl/repos/community-testing-x86_64/
  python-pyopencl/repos/community-testing-x86_64/LICENSE.txt
(from rev 95826, python-pyopencl/trunk/LICENSE.txt)
  python-pyopencl/repos/community-testing-x86_64/PKGBUILD
(from rev 95826, python-pyopencl/trunk/PKGBUILD)

--+
 community-testing-i686/LICENSE.txt   |   20 ++
 community-testing-i686/PKGBUILD  |   63 +
 community-testing-x86_64/LICENSE.txt |   20 ++
 community-testing-x86_64/PKGBUILD|   63 +
 4 files changed, 166 insertions(+)

Copied: python-pyopencl/repos/community-testing-i686/LICENSE.txt (from rev 
95826, python-pyopencl/trunk/LICENSE.txt)
===
--- community-testing-i686/LICENSE.txt  (rev 0)
+++ community-testing-i686/LICENSE.txt  2013-08-17 12:14:40 UTC (rev 95827)
@@ -0,0 +1,20 @@
+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: python-pyopencl/repos/community-testing-i686/PKGBUILD (from rev 95826, 
python-pyopencl/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-08-17 12:14:40 UTC (rev 95827)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+
+pkgbase=python-pyopencl
+pkgname=('python2-pyopencl' 'python-pyopencl' 'pyopencl-headers')
+pkgver=2013.1
+pkgrel=2
+pkgdesc=A complete, object-oriented language binding of OpenCL to Python
+arch=('i686' 'x86_64')
+url=http://mathema.tician.de/software/pyopencl;
+license=('custom')
+epoch=1
+makedepends=('boost-libs' 'ctags' 'python2-setuptools' 'python-setuptools' 
'libcl' 'opencl-headers' 'mesa' 'boost' 'python2-mako' 'python-mako' 
'python-numpy' 'python2-numpy')
+source=(http://pypi.python.org/packages/source/p/pyopencl/pyopencl-${pkgver}.tar.gz;
+'LICENSE.txt')
+sha1sums=('76331c9042d0286c7c722407dec0fb975a6b340c'
+  '2e6966b3d9b15603ce2c3ff79eeadd63c5d066b7')
+
+build() {
+   cd $srcdir
+
+   cp -a pyopencl-$pkgver{,-python2}
+
+   cd ${srcdir}/pyopencl-${pkgver}
+   python3 ./configure.py --cl-enable-gl --no-use-shipped-boost 
--boost-python-libname=boost_python3
+   python3 setup.py build
+
+   cd $srcdir/pyopencl-$pkgver-python2
+   python2 ./configure.py --cl-enable-gl --no-use-shipped-boost 
--boost-python-libname=boost_python
+   python2 setup.py build
+}
+
+package_python-pyopencl() {
+   depends=('libcl' 'opencl-headers' 'mesa' 'boost-libs' 'python' 
'python-numpy' 'python-mako' 'python-pytools' 'pyopencl-headers')
+
+   cd ${srcdir}/pyopencl-${pkgver}
+   python3 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1 
--skip-build
+
+   rm -fr ${pkgdir}/usr/include
+
+   install -D -m644 $srcdir/LICENSE.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python2-pyopencl() {
+   depends=('libcl' 'opencl-headers' 'mesa' 'boost-libs' 'python2' 
'python2-numpy' 'python2-mako' 'python2-pytools' 'pyopencl-headers')
+
+   cd ${srcdir}/pyopencl-${pkgver}-python2
+   python2 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1 
--skip-build
+
+rm -fr ${pkgdir}/usr/include/
+
+   install -D -m644 $srcdir/LICENSE.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_pyopencl-headers() {
+   cd ${srcdir}/pyopencl-${pkgver}/
+   install -dm755 ${pkgdir}/usr/include/pyopencl
+
+  for file in pyopencl-airy.cl  pyopencl-bessel-j.cl  

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

2013-08-17 Thread Balló György
Date: Saturday, August 17, 2013 @ 14:17:17
  Author: bgyorgy
Revision: 95828

upgpkg: uget 1.10.3-2

Rebuild with GStreamer 1.0

Modified:
  uget/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 12:14:40 UTC (rev 95827)
+++ PKGBUILD2013-08-17 12:17:17 UTC (rev 95828)
@@ -3,12 +3,12 @@
 
 pkgname=uget
 pkgver=1.10.3
-pkgrel=1
+pkgrel=2
 pkgdesc=GTK+ download manager featuring download classification and HTML 
import
 arch=('i686' 'x86_64')
 url=http://urlget.sourceforge.net/;
 license=('LGPL')
-depends=('libnotify' 'gtk3' 'gstreamer0.10' 'curl' 'hicolor-icon-theme' 
'xdg-utils')
+depends=('libnotify' 'gtk3' 'gstreamer' 'curl' 'hicolor-icon-theme' 
'xdg-utils')
 makedepends=('intltool')
 optdepends=('aria2: alternative backend')
 install=$pkgname.install



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

2013-08-17 Thread Balló György
Date: Saturday, August 17, 2013 @ 14:17:24
  Author: bgyorgy
Revision: 95829

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

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

---+
 /PKGBUILD |   60 
 /uget.install |   22 ++
 community-i686/PKGBUILD   |   30 
 community-i686/uget.install   |   11 ---
 community-x86_64/PKGBUILD |   30 
 community-x86_64/uget.install |   11 ---
 6 files changed, 82 insertions(+), 82 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-17 12:17:17 UTC (rev 95828)
+++ community-i686/PKGBUILD 2013-08-17 12:17:24 UTC (rev 95829)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Balló György ballogyor+arch at gmail dot com
-
-pkgname=uget
-pkgver=1.10.3
-pkgrel=1
-pkgdesc=GTK+ download manager featuring download classification and HTML 
import
-arch=('i686' 'x86_64')
-url=http://urlget.sourceforge.net/;
-license=('LGPL')
-depends=('libnotify' 'gtk3' 'gstreamer0.10' 'curl' 'hicolor-icon-theme' 
'xdg-utils')
-makedepends=('intltool')
-optdepends=('aria2: alternative backend')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/urlget/$pkgname-$pkgver.tar.gz)
-md5sums=('d71c927cfcfc3ef9f62cc9cb3ca7bab7')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --disable-appindicator
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir/ install
-}

Copied: uget/repos/community-i686/PKGBUILD (from rev 95828, uget/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-17 12:17:24 UTC (rev 95829)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Balló György ballogyor+arch at gmail dot com
+
+pkgname=uget
+pkgver=1.10.3
+pkgrel=2
+pkgdesc=GTK+ download manager featuring download classification and HTML 
import
+arch=('i686' 'x86_64')
+url=http://urlget.sourceforge.net/;
+license=('LGPL')
+depends=('libnotify' 'gtk3' 'gstreamer' 'curl' 'hicolor-icon-theme' 
'xdg-utils')
+makedepends=('intltool')
+optdepends=('aria2: alternative backend')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/urlget/$pkgname-$pkgver.tar.gz)
+md5sums=('d71c927cfcfc3ef9f62cc9cb3ca7bab7')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --disable-appindicator
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir/ install
+}

Deleted: community-i686/uget.install
===
--- community-i686/uget.install 2013-08-17 12:17:17 UTC (rev 95828)
+++ community-i686/uget.install 2013-08-17 12:17:24 UTC (rev 95829)
@@ -1,11 +0,0 @@
-post_install() {
-  xdg-icon-resource forceupdate
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: uget/repos/community-i686/uget.install (from rev 95828, 
uget/trunk/uget.install)
===
--- community-i686/uget.install (rev 0)
+++ community-i686/uget.install 2013-08-17 12:17:24 UTC (rev 95829)
@@ -0,0 +1,11 @@
+post_install() {
+  xdg-icon-resource forceupdate
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-08-17 12:17:17 UTC (rev 95828)
+++ community-x86_64/PKGBUILD   2013-08-17 12:17:24 UTC (rev 95829)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Balló György ballogyor+arch at gmail dot com
-
-pkgname=uget
-pkgver=1.10.3
-pkgrel=1
-pkgdesc=GTK+ download manager featuring download classification and HTML 
import
-arch=('i686' 'x86_64')
-url=http://urlget.sourceforge.net/;
-license=('LGPL')
-depends=('libnotify' 'gtk3' 'gstreamer0.10' 'curl' 'hicolor-icon-theme' 
'xdg-utils')
-makedepends=('intltool')
-optdepends=('aria2: alternative backend')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/urlget/$pkgname-$pkgver.tar.gz)
-md5sums=('d71c927cfcfc3ef9f62cc9cb3ca7bab7')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  

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

2013-08-17 Thread Florian Pritz
Date: Saturday, August 17, 2013 @ 15:00:03
  Author: bluewind
Revision: 95830

libmng rebuild

upgpkg: lib32-qt4 4.8.5-2

Modified:
  lib32-qt4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 12:17:24 UTC (rev 95829)
+++ PKGBUILD2013-08-17 13:00:03 UTC (rev 95830)
@@ -6,7 +6,7 @@
 _pkgbasename=qt4
 pkgname=lib32-$_pkgbasename
 pkgver=4.8.5
-pkgrel=1
+pkgrel=2
 pkgdesc='A cross-platform application and UI framework (32-bit)'
 arch=('x86_64')
 url='http://qt-project.org/'



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

2013-08-17 Thread Florian Pritz
Date: Saturday, August 17, 2013 @ 15:00:10
  Author: bluewind
Revision: 95831

archrelease: copy trunk to multilib-staging-x86_64

Added:
  lib32-qt4/repos/multilib-staging-x86_64/
  lib32-qt4/repos/multilib-staging-x86_64/PKGBUILD
(from rev 95830, lib32-qt4/trunk/PKGBUILD)

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

Copied: lib32-qt4/repos/multilib-staging-x86_64/PKGBUILD (from rev 95830, 
lib32-qt4/trunk/PKGBUILD)
===
--- multilib-staging-x86_64/PKGBUILD(rev 0)
+++ multilib-staging-x86_64/PKGBUILD2013-08-17 13:00:10 UTC (rev 95831)
@@ -0,0 +1,96 @@
+# $Id: PKGBUILD 80785 2012-12-03 16:17:19Z bluewind $
+# Maintainer: Florian Pritz f...@xssn.at
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+_pkgbasename=qt4
+pkgname=lib32-$_pkgbasename
+pkgver=4.8.5
+pkgrel=2
+pkgdesc='A cross-platform application and UI framework (32-bit)'
+arch=('x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL')
+depends=(lib32-{fontconfig,sqlite3,alsa-lib,glib2,dbus-core,openssl}
+ lib32-lib{png,tiff,mng,gl,sm,xrandr,xv,xi} $_pkgbasename)
+optdepends=('lib32-libxinerama: Xinerama support'
+'lib32-libxcursor: Xcursor support'
+'lib32-libxfixes: Xfixes support')
+makedepends=(cups gcc-multilib lib32-{mesa,libcups,libxfixes,gtk2})
+options=('!libtool')
+provides=(lib32-qtwebkit)
+replaces=(lib32-qtwebkit 'lib32-qt=4.8.4')
+conflicts=(lib32-qtwebkit lib32-qt)
+_pkgfqn=qt-everywhere-opensource-src-${pkgver}
+source=(http://download.qt-project.org/official_releases/qt/4.8/${pkgver}/${_pkgfqn}.tar.gz;)
+md5sums=('1864987bdbb2f58f8ae8b350dfdbe133')
+
+prepare() {
+  cd $srcdir/$_pkgfqn
+
+  export QT4DIR=$srcdir/$_pkgfqn
+  export LD_LIBRARY_PATH=${QT4DIR}/lib:${LD_LIBRARY_PATH}
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  # some of those are likely unnecessary, but I'm too lazy to find and remove 
them
+  sed -i /^QMAKE_LINK\s/s|g++|g++ -m32|g mkspecs/common/g++-base.conf
+  sed -i s|-O2|${CXXFLAGS} -m32| mkspecs/common/g++-base.conf
+  sed -i s|-O2|${CXXFLAGS} -m32| mkspecs/common/gcc-base.conf
+  sed -i /^QMAKE_LFLAGS_RPATH/s| -Wl,-rpath,||g 
mkspecs/common/gcc-base-unix.conf
+  sed -i /^QMAKE_LFLAGS\s/s|+=|+= ${LDFLAGS} -m32|g 
mkspecs/common/gcc-base.conf
+  sed -i s|-Wl,-O1|-m32 -Wl,-O1| mkspecs/common/g++-unix.conf
+  sed -e s|-O2|$CXXFLAGS -m32| \
+  -e /^QMAKE_RPATH/s| -Wl,-rpath,||g \
+  -e /^QMAKE_LINK\s/s|g++|g++ -m32|g \
+  -e /^QMAKE_LFLAGS\s/s|+=|+= $LDFLAGS|g \
+  -i mkspecs/common/g++.conf
+}
+
+build() {
+  cd $srcdir/$_pkgfqn
+  export QT4DIR=$srcdir/$_pkgfqn
+  export LD_LIBRARY_PATH=${QT4DIR}/lib:${LD_LIBRARY_PATH}
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  ./configure -confirm-license -opensource -v -platform linux-g++-32 \
+-prefix /usr \
+-libdir /usr/lib32 \
+-plugindir /usr/lib32/qt/plugins \
+-importdir /usr/lib32/qt/imports \
+-datadir /usr/share/qt \
+-translationdir /usr/share/qt/translations \
+-sysconfdir /etc \
+-system-sqlite \
+-no-phonon \
+-no-phonon-backend \
+-webkit \
+-graphicssystem raster \
+-openssl-linked \
+-nomake demos \
+-nomake examples \
+-nomake docs \
+-nomake tools \
+-optimized-qmake \
+-no-rpath \
+-dbus-linked \
+-reduce-relocations \
+-no-openvg
+
+  make
+}
+
+package() {
+  cd $srcdir/$_pkgfqn
+  make INSTALL_ROOT=$pkgdir install
+
+  # Fix wrong path in pkgconfig files
+  find ${pkgdir}/usr/lib32/pkgconfig -type f -name '*.pc' \
+-exec perl -pi -e s, -L${srcdir}/?\S+,,g {} \;
+  # Fix wrong path in prl files
+  find ${pkgdir}/usr/lib32 -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d;s/\(QMAKE_PRL_LIBS =\).*/\1/' {} 
\;
+
+  rm -rf ${pkgdir}/usr/{include,share,bin,tests}
+  mkdir -p $pkgdir/usr/share/licenses
+  ln -s $_pkgbasename $pkgdir/usr/share/licenses/$pkgname
+}



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

2013-08-17 Thread Florian Pritz
Date: Saturday, August 17, 2013 @ 15:13:34
  Author: bluewind
Revision: 95832

upgpkg: perl-rename 1.8-3

fix license

Modified:
  perl-rename/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 13:00:10 UTC (rev 95831)
+++ PKGBUILD2013-08-17 13:13:34 UTC (rev 95832)
@@ -3,11 +3,11 @@
 
 pkgname=perl-rename
 pkgver=1.8
-pkgrel=2
+pkgrel=3
 pkgdesc=Renames multiple files using Perl regular expressions.
 arch=(any)
 url=http://search.cpan.org/~pederst/rename/;
-license=('custom')
+license=('unknown')
 depends=(perl)
 options=(!emptydirs)
 
source=(http://search.cpan.org/CPAN/authors/id/P/PE/PEDERST/rename-$pkgver.tar.gz)



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

2013-08-17 Thread Florian Pritz
Date: Saturday, August 17, 2013 @ 15:13:37
  Author: bluewind
Revision: 95833

archrelease: copy trunk to community-any

Added:
  perl-rename/repos/community-any/PKGBUILD
(from rev 95832, perl-rename/trunk/PKGBUILD)
Deleted:
  perl-rename/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-17 13:13:34 UTC (rev 95832)
+++ PKGBUILD2013-08-17 13:13:37 UTC (rev 95833)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz f...@xinu.at
-
-pkgname=perl-rename
-pkgver=1.8
-pkgrel=2
-pkgdesc=Renames multiple files using Perl regular expressions.
-arch=(any)
-url=http://search.cpan.org/~pederst/rename/;
-license=('custom')
-depends=(perl)
-options=(!emptydirs)
-source=(http://search.cpan.org/CPAN/authors/id/P/PE/PEDERST/rename-$pkgver.tar.gz)
-md5sums=('5e78d1ebce74b09de81bd451176c7f83')
-
-build() {
-cd $srcdir/rename-$pkgver
-
-perl Makefile.PL PREFIX=/usr INSTALLDIRS=vendor
-make
-}
-
-package() {
-cd $srcdir/rename-$pkgver
-
-make DESTDIR=$pkgdir/ install
-install -d $pkgdir/usr/bin/
-ln -s vendor_perl/rename $pkgdir/usr/bin/perl-rename
-ln -s /usr/share/man/man1/rename.1p.gz 
$pkgdir/usr/share/man/man1/perl-rename.1p.gz
-}

Copied: perl-rename/repos/community-any/PKGBUILD (from rev 95832, 
perl-rename/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-17 13:13:37 UTC (rev 95833)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Florian Pritz f...@xinu.at
+
+pkgname=perl-rename
+pkgver=1.8
+pkgrel=3
+pkgdesc=Renames multiple files using Perl regular expressions.
+arch=(any)
+url=http://search.cpan.org/~pederst/rename/;
+license=('unknown')
+depends=(perl)
+options=(!emptydirs)
+source=(http://search.cpan.org/CPAN/authors/id/P/PE/PEDERST/rename-$pkgver.tar.gz)
+md5sums=('5e78d1ebce74b09de81bd451176c7f83')
+
+build() {
+cd $srcdir/rename-$pkgver
+
+perl Makefile.PL PREFIX=/usr INSTALLDIRS=vendor
+make
+}
+
+package() {
+cd $srcdir/rename-$pkgver
+
+make DESTDIR=$pkgdir/ install
+install -d $pkgdir/usr/bin/
+ln -s vendor_perl/rename $pkgdir/usr/bin/perl-rename
+ln -s /usr/share/man/man1/rename.1p.gz 
$pkgdir/usr/share/man/man1/perl-rename.1p.gz
+}



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

2013-08-17 Thread Balló György
Date: Saturday, August 17, 2013 @ 15:26:29
  Author: bgyorgy
Revision: 95834

upgpkg: smuxi 0.8.11-2

Enable STFL backend

Modified:
  smuxi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 13:13:37 UTC (rev 95833)
+++ PKGBUILD2013-08-17 13:26:29 UTC (rev 95834)
@@ -8,12 +8,12 @@
 pkgbase=smuxi
 pkgname=('smuxi-server' 'smuxi')
 pkgver=0.8.11
-pkgrel=1
+pkgrel=2
 pkgdesc=User-friendly and cross-platform IRC client for sophisticated users 
for GNOME/GTK+
 arch=('any')
 url=http://www.smuxi.org/;
 license=('GPL')
-makedepends=('notify-sharp' 'log4net' 'nini' 'gtkspell' 'intltool')
+makedepends=('notify-sharp' 'log4net' 'nini' 'gtkspell' 'stfl' 'intltool')
 options=('!emptydirs')
 source=(http://www.smuxi.org/jaws/data/files/$pkgbase-$pkgver.tar.gz)
 md5sums=('221e65138e0df8cc08a2839b38632b67')
@@ -22,6 +22,7 @@
   cd $srcdir/$pkgbase-$pkgver
 
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --enable-frontend-stfl \
   --with-vendor-package-version=Arch Linux $pkgver-$pkgrel
   LANG=C make
 }
@@ -36,7 +37,7 @@
   # Split frontend
   [[ -d $srcdir/frontend ]]  rm -r $srcdir/frontend/
   mkdir $srcdir/frontend
-  mv $pkgdir/usr/bin/smuxi-frontend-gnome \
+  mv $pkgdir/usr/bin/smuxi-frontend-{gnome,stfl} \
  $pkgdir/usr/lib/pkgconfig/smuxi-frontend.pc \
  $pkgdir/usr/lib/smuxi/smuxi-frontend* \
  $pkgdir/usr/share/{applications,icons} \
@@ -45,12 +46,12 @@
 
 package_smuxi() {
   pkgdesc+= (frontend) 
-  depends=('smuxi-server' 'notify-sharp' 'gtkspell' 'hicolor-icon-theme' 
'xdg-utils')
+  depends=('smuxi-server' 'notify-sharp' 'gtkspell' 'stfl' 
'hicolor-icon-theme' 'xdg-utils')
   install=smuxi.install
   cd $srcdir/frontend
 
   mkdir -p $pkgdir/usr/{bin,lib/{pkgconfig,smuxi},share}
-  mv smuxi-frontend-gnome $pkgdir/usr/bin
+  mv smuxi-frontend-{gnome,stfl} $pkgdir/usr/bin
   mv smuxi-frontend.pc $pkgdir/usr/lib/pkgconfig
   mv smuxi-frontend* $pkgdir/usr/lib/smuxi
   mv {applications,icons} $pkgdir/usr/share



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

2013-08-17 Thread Balló György
Date: Saturday, August 17, 2013 @ 15:26:34
  Author: bgyorgy
Revision: 95835

archrelease: copy trunk to community-any

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

---+
 PKGBUILD  |  115 
 smuxi.install |   22 +-
 2 files changed, 69 insertions(+), 68 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-17 13:26:29 UTC (rev 95834)
+++ PKGBUILD2013-08-17 13:26:34 UTC (rev 95835)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Balló György ballogyor+arch at gmail dot com
-# Contributor: Madek gonzaloseg...@gmail.com
-# Contributor: Marcelo Cavalcante marc...@marcelocavalcante.net
-# Contributor: Jens Kleikamp j...@codes-concepts.com
-# Contributor: Philipp Gildein r...@openspeak-project.org
-
-pkgbase=smuxi
-pkgname=('smuxi-server' 'smuxi')
-pkgver=0.8.11
-pkgrel=1
-pkgdesc=User-friendly and cross-platform IRC client for sophisticated users 
for GNOME/GTK+
-arch=('any')
-url=http://www.smuxi.org/;
-license=('GPL')
-makedepends=('notify-sharp' 'log4net' 'nini' 'gtkspell' 'intltool')
-options=('!emptydirs')
-source=(http://www.smuxi.org/jaws/data/files/$pkgbase-$pkgver.tar.gz)
-md5sums=('221e65138e0df8cc08a2839b38632b67')
-
-build() {
-  cd $srcdir/$pkgbase-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --with-vendor-package-version=Arch Linux $pkgver-$pkgrel
-  LANG=C make
-}
-
-package_smuxi-server() {
-  pkgdesc+= (common files and server)
-  depends=('log4net' 'nini')
-  cd $srcdir/$pkgbase-$pkgver
-
-  make DESTDIR=$pkgdir install
-
-  # Split frontend
-  [[ -d $srcdir/frontend ]]  rm -r $srcdir/frontend/
-  mkdir $srcdir/frontend
-  mv $pkgdir/usr/bin/smuxi-frontend-gnome \
- $pkgdir/usr/lib/pkgconfig/smuxi-frontend.pc \
- $pkgdir/usr/lib/smuxi/smuxi-frontend* \
- $pkgdir/usr/share/{applications,icons} \
- $srcdir/frontend/
-}
-
-package_smuxi() {
-  pkgdesc+= (frontend) 
-  depends=('smuxi-server' 'notify-sharp' 'gtkspell' 'hicolor-icon-theme' 
'xdg-utils')
-  install=smuxi.install
-  cd $srcdir/frontend
-
-  mkdir -p $pkgdir/usr/{bin,lib/{pkgconfig,smuxi},share}
-  mv smuxi-frontend-gnome $pkgdir/usr/bin
-  mv smuxi-frontend.pc $pkgdir/usr/lib/pkgconfig
-  mv smuxi-frontend* $pkgdir/usr/lib/smuxi
-  mv {applications,icons} $pkgdir/usr/share
-}

Copied: smuxi/repos/community-any/PKGBUILD (from rev 95834, 
smuxi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-17 13:26:34 UTC (rev 95835)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Balló György ballogyor+arch at gmail dot com
+# Contributor: Madek gonzaloseg...@gmail.com
+# Contributor: Marcelo Cavalcante marc...@marcelocavalcante.net
+# Contributor: Jens Kleikamp j...@codes-concepts.com
+# Contributor: Philipp Gildein r...@openspeak-project.org
+
+pkgbase=smuxi
+pkgname=('smuxi-server' 'smuxi')
+pkgver=0.8.11
+pkgrel=2
+pkgdesc=User-friendly and cross-platform IRC client for sophisticated users 
for GNOME/GTK+
+arch=('any')
+url=http://www.smuxi.org/;
+license=('GPL')
+makedepends=('notify-sharp' 'log4net' 'nini' 'gtkspell' 'stfl' 'intltool')
+options=('!emptydirs')
+source=(http://www.smuxi.org/jaws/data/files/$pkgbase-$pkgver.tar.gz)
+md5sums=('221e65138e0df8cc08a2839b38632b67')
+
+build() {
+  cd $srcdir/$pkgbase-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --enable-frontend-stfl \
+  --with-vendor-package-version=Arch Linux $pkgver-$pkgrel
+  LANG=C make
+}
+
+package_smuxi-server() {
+  pkgdesc+= (common files and server)
+  depends=('log4net' 'nini')
+  cd $srcdir/$pkgbase-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  # Split frontend
+  [[ -d $srcdir/frontend ]]  rm -r $srcdir/frontend/
+  mkdir $srcdir/frontend
+  mv $pkgdir/usr/bin/smuxi-frontend-{gnome,stfl} \
+ $pkgdir/usr/lib/pkgconfig/smuxi-frontend.pc \
+ $pkgdir/usr/lib/smuxi/smuxi-frontend* \
+ $pkgdir/usr/share/{applications,icons} \
+ $srcdir/frontend/
+}
+
+package_smuxi() {
+  pkgdesc+= (frontend) 
+  depends=('smuxi-server' 'notify-sharp' 'gtkspell' 'stfl' 
'hicolor-icon-theme' 'xdg-utils')
+  install=smuxi.install
+  cd $srcdir/frontend
+
+  mkdir -p $pkgdir/usr/{bin,lib/{pkgconfig,smuxi},share}
+  mv smuxi-frontend-{gnome,stfl} $pkgdir/usr/bin
+  mv smuxi-frontend.pc $pkgdir/usr/lib/pkgconfig
+  mv smuxi-frontend* $pkgdir/usr/lib/smuxi
+  mv {applications,icons} $pkgdir/usr/share
+}

Deleted: smuxi.install
===
--- smuxi.install   2013-08-17 13:26:29 UTC (rev 95834)
+++ smuxi.install   2013-08-17 

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

2013-08-17 Thread Laurent Carlier
Date: Saturday, August 17, 2013 @ 16:06:00
  Author: lcarlier
Revision: 193166

upgpkg: xf86-video-neomagic 1.2.8-1

Upstream update 1.2.8

Modified:
  xf86-video-neomagic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 10:49:42 UTC (rev 193165)
+++ PKGBUILD2013-08-17 14:06:00 UTC (rev 193166)
@@ -2,8 +2,8 @@
 #Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=xf86-video-neomagic
-pkgver=1.2.7
-pkgrel=5
+pkgver=1.2.8
+pkgrel=1
 pkgdesc=X.org neomagic video driver
 arch=(i686 x86_64)
 url=http://xorg.freedesktop.org/;
@@ -13,25 +13,19 @@
 conflicts=('xorg-server1.14.0' 'X-ABI-VIDEODRV_VERSION14' 
'X-ABI-VIDEODRV_VERSION=15')
 groups=('xorg-drivers' 'xorg')
 options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2
-git-fixes.patch
-shadowfb.patch)
-sha256sums=('9f06e89ea68afb65dbc064af63dc57d3606fc7244cd62cf87841ff5bbc98cb76'
-'38b67ce2b0ff94f68c8e1f221759fd7e2059383f4dac716356b5ef2ad695507e'
-'cf7e49f51869efdb22ee8d6e85bf0f557e22f08072e6d90a4dba3e39feabbf36')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('50abf6ac02547900edeaa5073c5f6d2f153f12dd47067cc7e4758e1b74d78874')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  patch -Np1 -i ${srcdir}/git-fixes.patch
-  # workaround to get it work again https://bugs.archlinux.org/task/32604
-  patch -Np1 -i ${srcdir}/shadowfb.patch
-  autoreconf
+
   ./configure --prefix=/usr
   make
 }
 
 package() {
   cd ${srcdir}/${pkgname}-${pkgver}
+
   make DESTDIR=${pkgdir} install
   install -d -m755 ${pkgdir}/usr/share/licenses/${pkgname}
   install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/



[arch-commits] Commit in xf86-video-neomagic/repos (12 files)

2013-08-17 Thread Laurent Carlier
Date: Saturday, August 17, 2013 @ 16:06:22
  Author: lcarlier
Revision: 193167

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

Added:
  xf86-video-neomagic/repos/extra-i686/PKGBUILD
(from rev 193166, xf86-video-neomagic/trunk/PKGBUILD)
  xf86-video-neomagic/repos/extra-i686/git-fixes.patch
(from rev 193166, xf86-video-neomagic/trunk/git-fixes.patch)
  xf86-video-neomagic/repos/extra-i686/shadowfb.patch
(from rev 193166, xf86-video-neomagic/trunk/shadowfb.patch)
  xf86-video-neomagic/repos/extra-x86_64/PKGBUILD
(from rev 193166, xf86-video-neomagic/trunk/PKGBUILD)
  xf86-video-neomagic/repos/extra-x86_64/git-fixes.patch
(from rev 193166, xf86-video-neomagic/trunk/git-fixes.patch)
  xf86-video-neomagic/repos/extra-x86_64/shadowfb.patch
(from rev 193166, xf86-video-neomagic/trunk/shadowfb.patch)
Deleted:
  xf86-video-neomagic/repos/extra-i686/PKGBUILD
  xf86-video-neomagic/repos/extra-i686/git-fixes.patch
  xf86-video-neomagic/repos/extra-i686/shadowfb.patch
  xf86-video-neomagic/repos/extra-x86_64/PKGBUILD
  xf86-video-neomagic/repos/extra-x86_64/git-fixes.patch
  xf86-video-neomagic/repos/extra-x86_64/shadowfb.patch

--+
 /PKGBUILD|   64 +++
 /git-fixes.patch |  334 +
 /shadowfb.patch  |   36 
 extra-i686/PKGBUILD  |   38 
 extra-i686/git-fixes.patch   |  167 
 extra-i686/shadowfb.patch|   18 --
 extra-x86_64/PKGBUILD|   38 
 extra-x86_64/git-fixes.patch |  167 
 extra-x86_64/shadowfb.patch  |   18 --
 9 files changed, 434 insertions(+), 446 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-08-17 14:06:00 UTC (rev 193166)
+++ extra-i686/PKGBUILD 2013-08-17 14:06:22 UTC (rev 193167)
@@ -1,38 +0,0 @@
-# $Id$
-#Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xf86-video-neomagic
-pkgver=1.2.7
-pkgrel=5
-pkgdesc=X.org neomagic video driver
-arch=(i686 x86_64)
-url=http://xorg.freedesktop.org/;
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=14' 'resourceproto' 
'scrnsaverproto')
-conflicts=('xorg-server1.14.0' 'X-ABI-VIDEODRV_VERSION14' 
'X-ABI-VIDEODRV_VERSION=15')
-groups=('xorg-drivers' 'xorg')
-options=('!libtool')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2
-git-fixes.patch
-shadowfb.patch)
-sha256sums=('9f06e89ea68afb65dbc064af63dc57d3606fc7244cd62cf87841ff5bbc98cb76'
-'38b67ce2b0ff94f68c8e1f221759fd7e2059383f4dac716356b5ef2ad695507e'
-'cf7e49f51869efdb22ee8d6e85bf0f557e22f08072e6d90a4dba3e39feabbf36')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -Np1 -i ${srcdir}/git-fixes.patch
-  # workaround to get it work again https://bugs.archlinux.org/task/32604
-  patch -Np1 -i ${srcdir}/shadowfb.patch
-  autoreconf
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -d -m755 ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: xf86-video-neomagic/repos/extra-i686/PKGBUILD (from rev 193166, 
xf86-video-neomagic/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-08-17 14:06:22 UTC (rev 193167)
@@ -0,0 +1,32 @@
+# $Id$
+#Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-video-neomagic
+pkgver=1.2.8
+pkgrel=1
+pkgdesc=X.org neomagic video driver
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=14' 'resourceproto' 
'scrnsaverproto')
+conflicts=('xorg-server1.14.0' 'X-ABI-VIDEODRV_VERSION14' 
'X-ABI-VIDEODRV_VERSION=15')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('50abf6ac02547900edeaa5073c5f6d2f153f12dd47067cc7e4758e1b74d78874')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+  install -d -m755 ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Deleted: extra-i686/git-fixes.patch
===
--- extra-i686/git-fixes.patch  2013-08-17 14:06:00 UTC (rev 193166)
+++ extra-i686/git-fixes.patch  2013-08-17 14:06:22 UTC (rev 193167)
@@ -1,167 +0,0 @@
-diff --git a/configure.ac b/configure.ac
-index 29cf772..a6eafa3 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -24,7 +24,7 @@
- AC_PREREQ([2.60])
- AC_INIT([xf86-video-neomagic],
- [1.2.7],
--

[arch-commits] Commit in perl-xml-libxml/repos (8 files)

2013-08-17 Thread Jonathan Steel
Date: Saturday, August 17, 2013 @ 16:25:58
  Author: jsteel
Revision: 95837

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

Added:
  perl-xml-libxml/repos/community-i686/PKGBUILD
(from rev 95836, perl-xml-libxml/trunk/PKGBUILD)
  perl-xml-libxml/repos/community-i686/perl-xml-libxml.install
(from rev 95836, perl-xml-libxml/trunk/perl-xml-libxml.install)
  perl-xml-libxml/repos/community-x86_64/PKGBUILD
(from rev 95836, perl-xml-libxml/trunk/PKGBUILD)
  perl-xml-libxml/repos/community-x86_64/perl-xml-libxml.install
(from rev 95836, perl-xml-libxml/trunk/perl-xml-libxml.install)
Deleted:
  perl-xml-libxml/repos/community-i686/PKGBUILD
  perl-xml-libxml/repos/community-i686/perl-xml-libxml.install
  perl-xml-libxml/repos/community-x86_64/PKGBUILD
  perl-xml-libxml/repos/community-x86_64/perl-xml-libxml.install

--+
 /PKGBUILD|   72 +
 /perl-xml-libxml.install |   30 
 community-i686/PKGBUILD  |   36 --
 community-i686/perl-xml-libxml.install   |   15 --
 community-x86_64/PKGBUILD|   36 --
 community-x86_64/perl-xml-libxml.install |   15 --
 6 files changed, 102 insertions(+), 102 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-17 14:25:38 UTC (rev 95836)
+++ community-i686/PKGBUILD 2013-08-17 14:25:58 UTC (rev 95837)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jonathan Steel jst...@aur.archlinux.org
-# Contributor: Justin juster Davis jrc...@gmail.com
-# Contributor: François Charette francois.archlinux.org
-
-pkgname=perl-xml-libxml
-pkgver=2.0019
-pkgrel=1
-pkgdesc=Interface to the libxml library
-arch=('i686' 'x86_64')
-url=http://search.cpan.org/dist/XML-LibXML;
-license=('GPL')
-depends=('libxml2' 'perl-xml-sax=0.11' 'perl-xml-namespacesupport=1.07')
-provides=('perl-libxml' 'perl-xml-libxml-common')
-replaces=('perl-libxml' 'perl-xml-libxml-common')
-conflicts=('perl-libxml' 'perl-xml-libxml-common')
-options=('!emptydirs')
-install=perl-xml-libxml.install
-source=(http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXML-$pkgver.tar.gz)
-md5sums=('0873ac0bae4a4bf7ba7b2d970876e4ba')
-
-build() {
-  cd XML-LibXML-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd XML-LibXML-$pkgver
-  make test
-}
-
-package() {
-  cd XML-LibXML-$pkgver
-  make pure_install doc_install DESTDIR=$pkgdir
-}

Copied: perl-xml-libxml/repos/community-i686/PKGBUILD (from rev 95836, 
perl-xml-libxml/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-17 14:25:58 UTC (rev 95837)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jonathan Steel jst...@aur.archlinux.org
+# Contributor: Justin juster Davis jrc...@gmail.com
+# Contributor: François Charette francois.archlinux.org
+
+pkgname=perl-xml-libxml
+pkgver=2.0101
+pkgrel=1
+pkgdesc=Interface to the libxml library
+arch=('i686' 'x86_64')
+url=http://search.cpan.org/dist/XML-LibXML;
+license=('GPL')
+depends=('libxml2' 'perl-xml-sax=0.11' 'perl-xml-namespacesupport=1.07')
+provides=('perl-libxml' 'perl-xml-libxml-common')
+replaces=('perl-libxml' 'perl-xml-libxml-common')
+conflicts=('perl-libxml' 'perl-xml-libxml-common')
+options=('!emptydirs')
+install=perl-xml-libxml.install
+source=(http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXML-$pkgver.tar.gz)
+md5sums=('5f60ca19b651628eb80341da99a56598')
+
+build() {
+  cd XML-LibXML-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd XML-LibXML-$pkgver
+  make test
+}
+
+package() {
+  cd XML-LibXML-$pkgver
+  make pure_install doc_install DESTDIR=$pkgdir
+}

Deleted: community-i686/perl-xml-libxml.install
===
--- community-i686/perl-xml-libxml.install  2013-08-17 14:25:38 UTC (rev 
95836)
+++ community-i686/perl-xml-libxml.install  2013-08-17 14:25:58 UTC (rev 
95837)
@@ -1,15 +0,0 @@
-post_install() {
-  echo :: Installing SAX XML Parsers
-  /usr/bin/perl -MXML::SAX -e 
XML::SAX-add_parser(q(XML::LibXML::SAX::Parser))-save_parsers()
-  /usr/bin/perl -MXML::SAX -e 
XML::SAX-add_parser(q(XML::LibXML::SAX))-save_parsers()
-}
-
-post_upgrade() {
-  libxmlcount=`grep -c XML::LibXML::SAX 
/usr/share/perl5/vendor_perl/XML/SAX/ParserDetails.ini`
-  if [[ $libxmlcount == 0 ]]; then
- echo :: Installing SAX XML Parsers
- /usr/bin/perl -MXML::SAX -e 
XML::SAX-add_parser(q(XML::LibXML::SAX::Parser))-save_parsers()
- /usr/bin/perl -MXML::SAX -e 
XML::SAX-add_parser(q(XML::LibXML::SAX))-save_parsers()
-  fi
-}
-

Copied: perl-xml-libxml/repos/community-i686/perl-xml-libxml.install (from rev 
95836, 

[arch-commits] Commit in perl-xml-libxml/trunk (PKGBUILD)

2013-08-17 Thread Jonathan Steel
Date: Saturday, August 17, 2013 @ 16:25:38
  Author: jsteel
Revision: 95836

upgpkg: perl-xml-libxml 2.0101-1

Modified:
  perl-xml-libxml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 13:26:34 UTC (rev 95835)
+++ PKGBUILD2013-08-17 14:25:38 UTC (rev 95836)
@@ -4,7 +4,7 @@
 # Contributor: François Charette francois.archlinux.org
 
 pkgname=perl-xml-libxml
-pkgver=2.0019
+pkgver=2.0101
 pkgrel=1
 pkgdesc=Interface to the libxml library
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 options=('!emptydirs')
 install=perl-xml-libxml.install
 source=(http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXML-$pkgver.tar.gz)
-md5sums=('0873ac0bae4a4bf7ba7b2d970876e4ba')
+md5sums=('5f60ca19b651628eb80341da99a56598')
 
 build() {
   cd XML-LibXML-$pkgver



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

2013-08-17 Thread Felix Yan
Date: Saturday, August 17, 2013 @ 16:37:50
  Author: fyan
Revision: 95838

upgpkg: python-boto 2.10.0-2 Replacement of distribute dependency in favour of 
setuptools

Modified:
  python-boto/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 14:25:58 UTC (rev 95837)
+++ PKGBUILD2013-08-17 14:37:50 UTC (rev 95838)
@@ -6,13 +6,13 @@
 pkgbase=python-boto
 pkgname=python2-boto
 pkgver=2.10.0
-pkgrel=1
+pkgrel=2
 pkgdesc='A Python interface to Amazon Web Services (AWS)'
 arch=('any')
 url='https://github.com/boto/boto'
 license=('MIT')
 depends=('python2')
-makedepends=('python2-distribute')
+makedepends=('python2-setuptools')
 conflicts=('python-boto=2.5.2-1')
 replaces=('python-boto=2.5.2-1')
 source=(http://github.com/boto/boto/archive/$pkgver.tar.gz;



[arch-commits] Commit in python-boto/repos (3 files)

2013-08-17 Thread Felix Yan
Date: Saturday, August 17, 2013 @ 16:38:28
  Author: fyan
Revision: 95839

archrelease: copy trunk to community-testing-any

Added:
  python-boto/repos/community-testing-any/
  python-boto/repos/community-testing-any/LICENSE
(from rev 95838, python-boto/trunk/LICENSE)
  python-boto/repos/community-testing-any/PKGBUILD
(from rev 95838, python-boto/trunk/PKGBUILD)

--+
 LICENSE  |   19 +++
 PKGBUILD |   37 +
 2 files changed, 56 insertions(+)

Copied: python-boto/repos/community-testing-any/LICENSE (from rev 95838, 
python-boto/trunk/LICENSE)
===
--- community-testing-any/LICENSE   (rev 0)
+++ community-testing-any/LICENSE   2013-08-17 14:38:28 UTC (rev 95839)
@@ -0,0 +1,19 @@
+Copyright (c) 2007 Mitch Garnaat
+
+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: python-boto/repos/community-testing-any/PKGBUILD (from rev 95838, 
python-boto/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-08-17 14:38:28 UTC (rev 95839)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Maintainer: Kaiting Chen kaitocr...@gmail.com
+# Maintainer: Aaron Schaefer aa...@elasticdog.com
+
+pkgbase=python-boto
+pkgname=python2-boto
+pkgver=2.10.0
+pkgrel=2
+pkgdesc='A Python interface to Amazon Web Services (AWS)'
+arch=('any')
+url='https://github.com/boto/boto'
+license=('MIT')
+depends=('python2')
+makedepends=('python2-setuptools')
+conflicts=('python-boto=2.5.2-1')
+replaces=('python-boto=2.5.2-1')
+source=(http://github.com/boto/boto/archive/$pkgver.tar.gz;
+'LICENSE')
+
+prepare() {
+  cd $srcdir/boto-$pkgver
+
+  # python2 fix
+  find . -name '*.py' -type f -print0 | xargs -0 \
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
+}
+
+package_python2-boto() {
+  cd $srcdir/boto-$pkgver
+
+  python2 setup.py install --root=$pkgdir
+  install -D -m644 ../LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+md5sums=('77af8e4dcd851a26b93e8751faa25c7d'
+ '35ebd993c05c79ba78e9f4fb3e65e547')



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

2013-08-17 Thread Felix Yan
Date: Saturday, August 17, 2013 @ 16:38:51
  Author: fyan
Revision: 95840

upgpkg: python-tornado 3.1.0-2 Replacement of distribute dependency in favour 
of setuptools

Modified:
  python-tornado/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 14:38:28 UTC (rev 95839)
+++ PKGBUILD2013-08-17 14:38:51 UTC (rev 95840)
@@ -4,12 +4,12 @@
 
 pkgname=('python-tornado' 'python2-tornado')
 pkgver=3.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc='open source version of the scalable, non-blocking web server and 
tools'
 arch=('any')
 url='http://www.tornadoweb.org/'
 license=('Apache')
-makedepends=('python-distribute' 'python2-distribute')
+makedepends=('python-setuptools' 'python2-setuptools')
 source=(https://github.com/facebook/tornado/archive/v${pkgver}.tar.gz;)
 
 build() {



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

2013-08-17 Thread Felix Yan
Date: Saturday, August 17, 2013 @ 16:39:32
  Author: fyan
Revision: 95841

archrelease: copy trunk to community-testing-any

Added:
  python-tornado/repos/community-testing-any/
  python-tornado/repos/community-testing-any/PKGBUILD
(from rev 95840, python-tornado/trunk/PKGBUILD)

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

Copied: python-tornado/repos/community-testing-any/PKGBUILD (from rev 95840, 
python-tornado/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-08-17 14:39:32 UTC (rev 95841)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+
+pkgname=('python-tornado' 'python2-tornado')
+pkgver=3.1.0
+pkgrel=2
+pkgdesc='open source version of the scalable, non-blocking web server and 
tools'
+arch=('any')
+url='http://www.tornadoweb.org/'
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=(https://github.com/facebook/tornado/archive/v${pkgver}.tar.gz;)
+
+build() {
+  cd $srcdir
+  cp -r tornado-${pkgver} python2-tornado-${pkgver}
+
+  cd tornado-${pkgver}
+
+  python setup.py build
+
+  cd ../python2-tornado-${pkgver}
+
+  # python - python2 rename
+  find -name '*py' -exec sed -e 's_#!/usr/bin/env python_2_' -i {} \;
+
+  python2 setup.py build
+}
+
+package_python-tornado() {
+  depends=('python')
+
+  cd $srcdir/tornado-${pkgver}
+
+  python setup.py install --root=${pkgdir} --optimize=1
+}
+
+package_python2-tornado() {
+  depends=('python2')
+
+  cd $srcdir/python2-tornado-${pkgver}
+
+  python2 setup.py install --root=${pkgdir} --optimize=1
+}
+
+sha512sums=('841127ab2f60e41d2f02a50fc5a8187a6907a745de81bac55ec942e69c1985a10b2d709261e920b26b31275094196ce943c01de71a4c0bb3015e48cc136652fd')



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

2013-08-17 Thread Felix Yan
Date: Saturday, August 17, 2013 @ 16:40:53
  Author: fyan
Revision: 95842

upgpkg: morituri 0.2.2-2 Replacement of distribute dependency in favour of 
setuptools

Modified:
  morituri/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 14:39:32 UTC (rev 95841)
+++ PKGBUILD2013-08-17 14:40:53 UTC (rev 95842)
@@ -5,7 +5,7 @@
 
 pkgname=morituri
 pkgver=0.2.2
-pkgrel=1
+pkgrel=2
 pkgdesc=a CD ripper aiming for accuracy over speed, modelled after Exact 
Audio Copy
 arch=('any')
 url=https://github.com/thomasvs/morituri;
@@ -18,7 +18,7 @@
 gstreamer0.10-python
 python2-musicbrainz2
 cddb-py
-python2-distribute
+python2-setuptools
 )
 optdepends=(
 python2-pycdio: for 'rip drive list'



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

2013-08-17 Thread Felix Yan
Date: Saturday, August 17, 2013 @ 16:41:34
  Author: fyan
Revision: 95843

archrelease: copy trunk to community-testing-any

Added:
  morituri/repos/community-testing-any/
  morituri/repos/community-testing-any/PKGBUILD
(from rev 95842, morituri/trunk/PKGBUILD)

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

Copied: morituri/repos/community-testing-any/PKGBUILD (from rev 95842, 
morituri/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-08-17 14:41:34 UTC (rev 95843)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Karol Kenji Takahashi Woźniak kenji.sx
+# Contributor: Mantas Mikulėnas graw...@gmail.com
+
+pkgname=morituri
+pkgver=0.2.2
+pkgrel=2
+pkgdesc=a CD ripper aiming for accuracy over speed, modelled after Exact 
Audio Copy
+arch=('any')
+url=https://github.com/thomasvs/morituri;
+license=(GPL3)
+depends=(
+cdparanoia
+cdrdao
+gstreamer0.10-base
+gstreamer0.10-base-plugins
+gstreamer0.10-python
+python2-musicbrainz2
+cddb-py
+python2-setuptools
+)
+optdepends=(
+python2-pycdio: for 'rip drive list'
+gstreamer0.10-good-plugins
+gstreamer0.10-bad-plugins
+gstreamer0.10-ugly-plugins
+)
+makedepends=('git')
+source=(git+https://github.com/thomasvs/${pkgname}.git#tag=v$pkgver;
+git://github.com/thomasvs/python-musicbrainz-ngs.git
+git://github.com/thomasvs/python-command.git
+git://github.com/Flumotion/flog
+git://github.com/thomasvs/python-deps)
+
+prepare() {
+cd $srcdir/$pkgname
+git submodule init
+git config submodule.morituri/extern/python-musicbrainz-ngs.url 
$srcdir/python-musicbrainz-ngs
+git config submodule.morituri/extern/python-command.url 
$srcdir/python-command
+git config submodule.morituri/extern/flog.url $srcdir/flog
+git config submodule.morituri/extern/python-deps.url 
$srcdir/python-deps
+git submodule update
+}
+
+build() {
+cd $srcdir/$pkgname
+export PYTHON=python2
+autoreconf -i -f
+./configure --prefix=/usr --sysconfdir=/etc
+make
+}
+
+package() {
+cd $srcdir/$pkgname
+make DESTDIR=$pkgdir install
+install -Dm 0644 README $pkgdir/usr/share/doc/morituri/README
+}
+
+# vim: ft=sh:ts=4:sw=4:et
+sha512sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP')



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

2013-08-17 Thread Felix Yan
Date: Saturday, August 17, 2013 @ 16:46:43
  Author: fyan
Revision: 95844

upgpkg: python-pycuda 2013.1.1-2 Replacement of distribute dependency in favour 
of setuptools

Modified:
  python-pycuda/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 14:41:34 UTC (rev 95843)
+++ PKGBUILD2013-08-17 14:46:43 UTC (rev 95844)
@@ -1,16 +1,18 @@
 # $Id$
-# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+
 pkgbase=python-pycuda
 pkgname=('python-pycuda' 'python2-pycuda' 'pycuda-headers')
 pkgver=2013.1.1
-pkgrel=1
+pkgrel=2
 pkgdesc=Python wrapper for Nvidia CUDA
 arch=('x86_64')
 url=http://mathema.tician.de/software/pycuda;
 license=('MIT' 'Apache')
 
source=(http://pypi.python.org/packages/source/p/pycuda/pycuda-${pkgver}.tar.gz;
 LICENSE)
-makedepends=('ctags' 'python2-distribute' 'python-distribute' 'python2-numpy' 
'python-numpy' 'mesa' 'cuda' 'boost=1.53.0' 'nvidia-utils')
+makedepends=('ctags' 'python2-setuptools' 'python-setuptools' 'python2-numpy' 
'python-numpy' 'mesa' 'cuda' 'boost=1.53.0' 'nvidia-utils')
 
 build() {
cd ${srcdir}



[arch-commits] Commit in python-pycuda/repos (3 files)

2013-08-17 Thread Felix Yan
Date: Saturday, August 17, 2013 @ 16:47:34
  Author: fyan
Revision: 95845

archrelease: copy trunk to community-testing-x86_64

Added:
  python-pycuda/repos/community-testing-x86_64/
  python-pycuda/repos/community-testing-x86_64/LICENSE
(from rev 95844, python-pycuda/trunk/LICENSE)
  python-pycuda/repos/community-testing-x86_64/PKGBUILD
(from rev 95844, python-pycuda/trunk/PKGBUILD)

--+
 LICENSE  |7 +
 PKGBUILD |   78 +
 2 files changed, 85 insertions(+)

Copied: python-pycuda/repos/community-testing-x86_64/LICENSE (from rev 95844, 
python-pycuda/trunk/LICENSE)
===
--- community-testing-x86_64/LICENSE(rev 0)
+++ community-testing-x86_64/LICENSE2013-08-17 14:47:34 UTC (rev 95845)
@@ -0,0 +1,7 @@
+Copyright (c) 2009,10 Andreas Klöckner and 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: python-pycuda/repos/community-testing-x86_64/PKGBUILD (from rev 95844, 
python-pycuda/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2013-08-17 14:47:34 UTC (rev 95845)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+
+pkgbase=python-pycuda
+pkgname=('python-pycuda' 'python2-pycuda' 'pycuda-headers')
+pkgver=2013.1.1
+pkgrel=2
+pkgdesc=Python wrapper for Nvidia CUDA
+arch=('x86_64')
+url=http://mathema.tician.de/software/pycuda;
+license=('MIT' 'Apache')
+source=(http://pypi.python.org/packages/source/p/pycuda/pycuda-${pkgver}.tar.gz;
+LICENSE)
+makedepends=('ctags' 'python2-setuptools' 'python-setuptools' 'python2-numpy' 
'python-numpy' 'mesa' 'cuda' 'boost=1.53.0' 'nvidia-utils')
+
+build() {
+   cd ${srcdir}
+  
+   _arch=''
+   [ $CARCH = x86_64 ]  _arch='64'
+
+   cp -a pycuda-${pkgver}{,-python2}
+  
+   cd ${srcdir}/pycuda-${pkgver}
+   python3 ./configure.py \
+  --cuda-root=/opt/cuda \
+  --cuda-inc-dir=/opt/cuda/include \
+  --cudadrv-lib-dir=/opt/cuda/lib${_arch} \
+  --cudart-lib-dir=/opt/cuda/lib${_arch} \
+  --no-use-shipped-boost \
+  --boost-python-libname=boost_python3
+   make
+
+   cd ${srcdir}/pycuda-${pkgver}-python2
+   python2 ./configure.py \
+  --cuda-root=/opt/cuda \
+  --cuda-inc-dir=/opt/cuda/include \
+  --cudadrv-lib-dir=/opt/cuda/lib${_arch} \
+  --cudart-lib-dir=/opt/cuda/lib${_arch} \
+  --no-use-shipped-boost \
+ --boost-python-libname=boost_python
+   make
+}
+
+package_python-pycuda() {
+   depends=('cuda' 'nvidia-utils' 'python-numpy' 'python-pytools' 'python' 
'boost-libs' 'pycuda-headers')
+   cd ${srcdir}/pycuda-${pkgver}
+   python3 setup.py install --prefix=/usr --root=${pkgdir} --skip-build 
--optimize=1
+
+   install -Dm644 $srcdir/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+
+   rm -fr ${pkgdir}/usr/include
+}
+
+package_python2-pycuda() {
+   depends=('cuda' 'nvidia-utils' 'python2-numpy' 'python2-pytools' 'python2' 
'boost-libs' 'pycuda-headers')
+   cd ${srcdir}/pycuda-${pkgver}-python2
+   python2 setup.py install --prefix=/usr --root=${pkgdir} --skip-build 
--optimize=1
+
+   install -Dm644 $srcdir/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+
+   rm -fr ${pkgdir}/usr/include   
+}
+
+package_pycuda-headers() {
+   cd ${srcdir}/pycuda-${pkgver}
+   install -dm755 ${pkgdir}/usr/include/pycuda
+
+   for file in $(ls -1 src/cpp/*.hpp); do
+  install -m644 ${file} ${pkgdir}/usr/include/pycuda
+   done
+
+   install -Dm644 $srcdir/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+

[arch-commits] Commit in python2-flickrapi/trunk (PKGBUILD fix_setuptools.patch)

2013-08-17 Thread Felix Yan
Date: Saturday, August 17, 2013 @ 17:01:29
  Author: fyan
Revision: 95846

upgpkg: python2-flickrapi 1.4.2-3 Replacement of distribute dependency in 
favour of setuptools

Added:
  python2-flickrapi/trunk/fix_setuptools.patch
Modified:
  python2-flickrapi/trunk/PKGBUILD

--+
 PKGBUILD |   15 +++
 fix_setuptools.patch |   19 +++
 2 files changed, 30 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 14:47:34 UTC (rev 95845)
+++ PKGBUILD2013-08-17 15:01:29 UTC (rev 95846)
@@ -6,18 +6,22 @@
 pkgname=python2-flickrapi
 _pkgname=flickrapi
 pkgver=1.4.2
-pkgrel=2
+pkgrel=3
 pkgdesc=The official Python interface to the Flickr API
 arch=('any')
 url=http://stuvel.eu/flickrapi;
 license=('Python')
 depends=('python2')
-makedepends=('python2-docutils' 'python2-distribute')
-source=(http://pypi.python.org/packages/source/f/$_pkgname/$_pkgname-$pkgver.zip;)
-md5sums=('90dca08a45968b18da0894887f3e59b3')
+makedepends=('python2-docutils' 'python2-setuptools')
+source=(http://pypi.python.org/packages/source/f/$_pkgname/$_pkgname-$pkgver.zip;
+fix_setuptools.patch)
 
 build() {
   cd $srcdir/$_pkgname-$pkgver
+  
+  # Fix setuptools  0.7b
+  patch -p1 -i ../fix_setuptools.patch
+
   find . -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
 
   python2 setup.py build
@@ -31,3 +35,6 @@
   install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
   rm -r $pkgdir/usr/{README,LICENSE,UPGRADING}
 }
+
+sha512sums=('e140fd0bdf04d3866988609b2c9d8cb841766aafe349f4cb050716c89912c24f4f656419b7b48e92bae0e1b94b4cd3482475d31171895a1aa52d9da1849f9d88'
+
'2ab9de3dd3086cf823d397e541287cf04851397c349d608bc8efc7e2e2fc3fa4bc59f5201a4e83a4a2d8a45ad0b23c2c18f45449b3947b09338722c7dda8b6ca')

Added: fix_setuptools.patch
===
--- fix_setuptools.patch(rev 0)
+++ fix_setuptools.patch2013-08-17 15:01:29 UTC (rev 95846)
@@ -0,0 +1,19 @@
+--- a/distribute_setup.py  2013-08-17 22:57:41.227220859 +0800
 b/distribute_setup.py  2013-08-17 22:57:29.343673408 +0800
+@@ -133,6 +133,16 @@
+ try:
+ try:
+ import pkg_resources
++
++# Setuptools 0.7b and later is a suitable (and preferable)
++# substitute for any Distribute version.
++try:
++pkg_resources.require(setuptools=0.7b)
++return
++except (pkg_resources.DistributionNotFound,
++pkg_resources.VersionConflict):
++pass
++
+ if not hasattr(pkg_resources, '_distribute'):
+ if not no_fake:
+ _fake_setuptools()



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

2013-08-17 Thread Lukas Fleischer
Date: Saturday, August 17, 2013 @ 17:02:04
  Author: lfleischer
Revision: 95847

python-pyxattr: Replace distribute with setuptools

Modified:
  python-pyxattr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 15:01:29 UTC (rev 95846)
+++ PKGBUILD2013-08-17 15:02:04 UTC (rev 95847)
@@ -11,7 +11,7 @@
 arch=('i686' 'x86_64')
 url='http://pyxattr.k1024.org/'
 license=('GPL')
-makedepends=('python2' 'python' 'python2-distribute' 'python-distribute')
+makedepends=('python2' 'python' 'python2-setuptools' 'python-setuptools')
 source=(http://pyxattr.k1024.org/downloads/pyxattr-$pkgver.tar.gz;)
 md5sums=('9ff2e4218badc201b689b6d254290001')
 



[arch-commits] Commit in python2-flickrapi/repos (3 files)

2013-08-17 Thread Felix Yan
Date: Saturday, August 17, 2013 @ 17:02:06
  Author: fyan
Revision: 95848

archrelease: copy trunk to community-testing-any

Added:
  python2-flickrapi/repos/community-testing-any/
  python2-flickrapi/repos/community-testing-any/PKGBUILD
(from rev 95846, python2-flickrapi/trunk/PKGBUILD)
  python2-flickrapi/repos/community-testing-any/fix_setuptools.patch
(from rev 95846, python2-flickrapi/trunk/fix_setuptools.patch)

--+
 PKGBUILD |   40 
 fix_setuptools.patch |   19 +++
 2 files changed, 59 insertions(+)

Copied: python2-flickrapi/repos/community-testing-any/PKGBUILD (from rev 95846, 
python2-flickrapi/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-08-17 15:02:06 UTC (rev 95848)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Francois Garillot francois[@]garillot.net
+# Contributor: György Balló ball...@freestart.hu
+
+pkgname=python2-flickrapi
+_pkgname=flickrapi
+pkgver=1.4.2
+pkgrel=3
+pkgdesc=The official Python interface to the Flickr API
+arch=('any')
+url=http://stuvel.eu/flickrapi;
+license=('Python')
+depends=('python2')
+makedepends=('python2-docutils' 'python2-setuptools')
+source=(http://pypi.python.org/packages/source/f/$_pkgname/$_pkgname-$pkgver.zip;
+fix_setuptools.patch)
+
+build() {
+  cd $srcdir/$_pkgname-$pkgver
+  
+  # Fix setuptools  0.7b
+  patch -p1 -i ../fix_setuptools.patch
+
+  find . -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
+
+  python2 setup.py build
+}
+
+package() {
+  cd $srcdir/$_pkgname-$pkgver
+
+  python2 setup.py install --root=$pkgdir/ --optimize=1
+
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  rm -r $pkgdir/usr/{README,LICENSE,UPGRADING}
+}
+
+sha512sums=('e140fd0bdf04d3866988609b2c9d8cb841766aafe349f4cb050716c89912c24f4f656419b7b48e92bae0e1b94b4cd3482475d31171895a1aa52d9da1849f9d88'
+
'2ab9de3dd3086cf823d397e541287cf04851397c349d608bc8efc7e2e2fc3fa4bc59f5201a4e83a4a2d8a45ad0b23c2c18f45449b3947b09338722c7dda8b6ca')

Copied: python2-flickrapi/repos/community-testing-any/fix_setuptools.patch 
(from rev 95846, python2-flickrapi/trunk/fix_setuptools.patch)
===
--- community-testing-any/fix_setuptools.patch  (rev 0)
+++ community-testing-any/fix_setuptools.patch  2013-08-17 15:02:06 UTC (rev 
95848)
@@ -0,0 +1,19 @@
+--- a/distribute_setup.py  2013-08-17 22:57:41.227220859 +0800
 b/distribute_setup.py  2013-08-17 22:57:29.343673408 +0800
+@@ -133,6 +133,16 @@
+ try:
+ try:
+ import pkg_resources
++
++# Setuptools 0.7b and later is a suitable (and preferable)
++# substitute for any Distribute version.
++try:
++pkg_resources.require(setuptools=0.7b)
++return
++except (pkg_resources.DistributionNotFound,
++pkg_resources.VersionConflict):
++pass
++
+ if not hasattr(pkg_resources, '_distribute'):
+ if not no_fake:
+ _fake_setuptools()



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

2013-08-17 Thread Felix Yan
Date: Saturday, August 17, 2013 @ 17:10:32
  Author: fyan
Revision: 95849

upgpkg: python-mpi4py 1.3.1-2 Replacement of distribute dependency in favour of 
setuptools

Modified:
  python-mpi4py/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 15:02:06 UTC (rev 95848)
+++ PKGBUILD2013-08-17 15:10:32 UTC (rev 95849)
@@ -5,11 +5,11 @@
 pkgbase=python-mpi4py
 pkgname=('python-mpi4py' 'python2-mpi4py')
 pkgver=1.3.1
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url=http://mpi4py.scipy.org;
 license=('BSD')
-makedepends=('python' 'python2' 'python-distribute' 'python2-distribute' 
'openmpi')
+makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools' 
'openmpi')
 source=(http://mpi4py.googlecode.com/files/mpi4py-${pkgver}.tar.gz)
 
 build() {



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

2013-08-17 Thread Felix Yan
Date: Saturday, August 17, 2013 @ 17:11:40
  Author: fyan
Revision: 95850

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

Added:
  python-mpi4py/repos/community-testing-i686/
  python-mpi4py/repos/community-testing-i686/PKGBUILD
(from rev 95849, python-mpi4py/trunk/PKGBUILD)
  python-mpi4py/repos/community-testing-x86_64/
  python-mpi4py/repos/community-testing-x86_64/PKGBUILD
(from rev 95849, python-mpi4py/trunk/PKGBUILD)

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

Copied: python-mpi4py/repos/community-testing-i686/PKGBUILD (from rev 95849, 
python-mpi4py/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-08-17 15:11:40 UTC (rev 95850)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer : Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Sebastien Binet bi...@cern.ch
+
+pkgbase=python-mpi4py
+pkgname=('python-mpi4py' 'python2-mpi4py')
+pkgver=1.3.1
+pkgrel=2
+arch=('i686' 'x86_64')
+url=http://mpi4py.scipy.org;
+license=('BSD')
+makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools' 
'openmpi')
+source=(http://mpi4py.googlecode.com/files/mpi4py-${pkgver}.tar.gz)
+
+build() {
+cd ${srcdir}
+cp -a mpi4py-${pkgver}{,-python2}
+
+# Build python 3 module
+cd mpi4py-${pkgver}
+python3 setup.py build
+
+# Build python 2 module
+cd ../mpi4py-${pkgver}-python2
+python2 setup.py build
+}
+
+package_python-mpi4py() {
+pkgdesc=Python bindings of the Message Passing Interface (MPI)
+depends=('python=3.3' 'openmpi')
+
+cd ${srcdir}/mpi4py-${pkgver}
+python3 setup.py install --root ${pkgdir} --optimize=1 --skip-build
+
+install -Dm644 LICENSE.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+package_python2-mpi4py() {
+pkgdesc=Python2 bindings of the Message Passing Interface (MPI)
+depends=('python2=2.7' 'openmpi')
+
+cd ${srcdir}/mpi4py-${pkgver}-python2
+python2 setup.py install --root ${pkgdir} --optimize=1 --skip-build
+
+install -Dm644 LICENSE.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+sha512sums=('15e81f2a1e6f6af7a54f0e8ec43ddf36cc565b7fe9e3dd35603c9d128199c5acd1584757ffca999c8826c0bbccf371175d40a7a24c85d3369efd77da5b3b603f')

Copied: python-mpi4py/repos/community-testing-x86_64/PKGBUILD (from rev 95849, 
python-mpi4py/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2013-08-17 15:11:40 UTC (rev 95850)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer : Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Sebastien Binet bi...@cern.ch
+
+pkgbase=python-mpi4py
+pkgname=('python-mpi4py' 'python2-mpi4py')
+pkgver=1.3.1
+pkgrel=2
+arch=('i686' 'x86_64')
+url=http://mpi4py.scipy.org;
+license=('BSD')
+makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools' 
'openmpi')
+source=(http://mpi4py.googlecode.com/files/mpi4py-${pkgver}.tar.gz)
+
+build() {
+cd ${srcdir}
+cp -a mpi4py-${pkgver}{,-python2}
+
+# Build python 3 module
+cd mpi4py-${pkgver}
+python3 setup.py build
+
+# Build python 2 module
+cd ../mpi4py-${pkgver}-python2
+python2 setup.py build
+}
+
+package_python-mpi4py() {
+pkgdesc=Python bindings of the Message Passing Interface (MPI)
+depends=('python=3.3' 'openmpi')
+
+cd ${srcdir}/mpi4py-${pkgver}
+python3 setup.py install --root ${pkgdir} --optimize=1 --skip-build
+
+install -Dm644 LICENSE.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+package_python2-mpi4py() {
+pkgdesc=Python2 bindings of the Message Passing Interface (MPI)
+depends=('python2=2.7' 'openmpi')
+
+cd ${srcdir}/mpi4py-${pkgver}-python2
+python2 setup.py install --root ${pkgdir} --optimize=1 --skip-build
+
+install -Dm644 LICENSE.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+sha512sums=('15e81f2a1e6f6af7a54f0e8ec43ddf36cc565b7fe9e3dd35603c9d128199c5acd1584757ffca999c8826c0bbccf371175d40a7a24c85d3369efd77da5b3b603f')



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

2013-08-17 Thread Felix Yan
Date: Saturday, August 17, 2013 @ 17:14:52
  Author: fyan
Revision: 95852

upgpkg: python-pytools 2013.5.6-2 Replacement of distribute dependency in 
favour of setuptools

Modified:
  python-pytools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 15:14:48 UTC (rev 95851)
+++ PKGBUILD2013-08-17 15:14:52 UTC (rev 95852)
@@ -1,14 +1,16 @@
 # $Id$
-# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+
 pkgbase=python-pytools
 pkgname=('python2-pytools' 'python-pytools')
 pkgver=2013.5.6
-pkgrel=1
+pkgrel=2
 pkgdesc=A collection of tools for Python
 arch=('any')
 url=http://mathema.tician.de/software/pytools;
 license=('MIT')
-makedepends=('python2-distribute' 'python-distribute')
+makedepends=('python2-setuptools' 'python-setuptools')
 
source=(http://pypi.python.org/packages/source/p/pytools/pytools-${pkgver}.tar.gz)
 
 build() {



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

2013-08-17 Thread Lukas Fleischer
Date: Saturday, August 17, 2013 @ 17:14:48
  Author: lfleischer
Revision: 95851

upgpkg: calcurse 3.1.4-2

Add missing license.

Modified:
  calcurse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 15:11:40 UTC (rev 95850)
+++ PKGBUILD2013-08-17 15:14:48 UTC (rev 95851)
@@ -5,7 +5,7 @@
 
 pkgname=calcurse
 pkgver=3.1.4
-pkgrel=1
+pkgrel=2
 pkgdesc='A text-based personal organizer.'
 arch=('i686' 'x86_64')
 url='http://calcurse.org/'
@@ -25,5 +25,8 @@
 
 package() {
   cd ${srcdir}/${pkgname}-${pkgver}
+
   make DESTDIR=${pkgdir} install
+
+  install -Dm0644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
 }



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

2013-08-17 Thread Lukas Fleischer
Date: Saturday, August 17, 2013 @ 17:15:02
  Author: lfleischer
Revision: 95853

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

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

---+
 /PKGBUILD |   64 
 /calcurse.install |   16 +
 community-i686/PKGBUILD   |   29 
 community-i686/calcurse.install   |8 
 community-x86_64/PKGBUILD |   29 
 community-x86_64/calcurse.install |8 
 6 files changed, 80 insertions(+), 74 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-17 15:14:52 UTC (rev 95852)
+++ community-i686/PKGBUILD 2013-08-17 15:15:02 UTC (rev 95853)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
-# Contributor: Ronald van Haren ronald.archlinux.org
-# Contributor: wain wain.at.gmx.net
-
-pkgname=calcurse
-pkgver=3.1.4
-pkgrel=1
-pkgdesc='A text-based personal organizer.'
-arch=('i686' 'x86_64')
-url='http://calcurse.org/'
-license=('BSD')
-depends=('ncurses')
-install='calcurse.install'
-source=(http://calcurse.org/files/${pkgname}-${pkgver}.tar.gz{,.asc})
-md5sums=('e354bdb7636daffa99ffb98534d04cb2'
- '44baaf17198e2fd75d2d160dedee814f')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./configure --enable-docs --without-asciidoc --prefix=/usr 
--mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: calcurse/repos/community-i686/PKGBUILD (from rev 95852, 
calcurse/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-17 15:15:02 UTC (rev 95853)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
+# Contributor: Ronald van Haren ronald.archlinux.org
+# Contributor: wain wain.at.gmx.net
+
+pkgname=calcurse
+pkgver=3.1.4
+pkgrel=2
+pkgdesc='A text-based personal organizer.'
+arch=('i686' 'x86_64')
+url='http://calcurse.org/'
+license=('BSD')
+depends=('ncurses')
+install='calcurse.install'
+source=(http://calcurse.org/files/${pkgname}-${pkgver}.tar.gz{,.asc})
+md5sums=('e354bdb7636daffa99ffb98534d04cb2'
+ '44baaf17198e2fd75d2d160dedee814f')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --enable-docs --without-asciidoc --prefix=/usr 
--mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+  install -Dm0644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+}

Deleted: community-i686/calcurse.install
===
--- community-i686/calcurse.install 2013-08-17 15:14:52 UTC (rev 95852)
+++ community-i686/calcurse.install 2013-08-17 15:15:02 UTC (rev 95853)
@@ -1,8 +0,0 @@
-post_upgrade() {
-  if (( $(vercmp $2 3.0.0)  0 )); then
-cat EOF
-== The configuration file format has changed in calcurse 3.0.0.
-== Run `calcurse-upgrade` to upgrade your configuration files.
-EOF
-  fi
-}

Copied: calcurse/repos/community-i686/calcurse.install (from rev 95852, 
calcurse/trunk/calcurse.install)
===
--- community-i686/calcurse.install (rev 0)
+++ community-i686/calcurse.install 2013-08-17 15:15:02 UTC (rev 95853)
@@ -0,0 +1,8 @@
+post_upgrade() {
+  if (( $(vercmp $2 3.0.0)  0 )); then
+cat EOF
+== The configuration file format has changed in calcurse 3.0.0.
+== Run `calcurse-upgrade` to upgrade your configuration files.
+EOF
+  fi
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-08-17 15:14:52 UTC (rev 95852)
+++ community-x86_64/PKGBUILD   2013-08-17 15:15:02 UTC (rev 95853)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
-# Contributor: Ronald van Haren ronald.archlinux.org
-# Contributor: wain wain.at.gmx.net
-
-pkgname=calcurse
-pkgver=3.1.4
-pkgrel=1
-pkgdesc='A text-based personal organizer.'
-arch=('i686' 'x86_64')
-url='http://calcurse.org/'
-license=('BSD')
-depends=('ncurses')

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

2013-08-17 Thread Felix Yan
Date: Saturday, August 17, 2013 @ 17:16:04
  Author: fyan
Revision: 95855

archrelease: copy trunk to community-testing-any

Added:
  python-pytools/repos/community-testing-any/
  python-pytools/repos/community-testing-any/PKGBUILD
(from rev 95853, python-pytools/trunk/PKGBUILD)

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

Copied: python-pytools/repos/community-testing-any/PKGBUILD (from rev 95853, 
python-pytools/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-08-17 15:16:04 UTC (rev 95855)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+
+pkgbase=python-pytools
+pkgname=('python2-pytools' 'python-pytools')
+pkgver=2013.5.6
+pkgrel=2
+pkgdesc=A collection of tools for Python
+arch=('any')
+url=http://mathema.tician.de/software/pytools;
+license=('MIT')
+makedepends=('python2-setuptools' 'python-setuptools')
+source=(http://pypi.python.org/packages/source/p/pytools/pytools-${pkgver}.tar.gz)
+
+build() {
+   cd ${srcdir}
+
+   cp -a pytools-${pkgver}{,-python2}
+
+   cd $srcdir/pytools-${pkgver}
+   python setup.py build
+
+   cd ${srcdir}/pytools-${pkgver}-python2
+   python2 setup.py build
+}
+
+package_python2-pytools() {
+   depends=('python2' 'python2-decorator')
+   cd ${srcdir}/pytools-${pkgver}-python2
+   python2 setup.py install --prefix=/usr --root=${pkgdir} --skip-build 
--optimize=1
+}
+
+package_python-pytools(){
+   depends=('python' 'python-decorator')
+   cd ${srcdir}/pytools-${pkgver}
+   python setup.py install --prefix=/usr --root=${pkgdir} --skip-build 
--optimize=1
+}
+
+sha512sums=('47c049360e4b9c11ffbb2225a1ac0882fc491b016638c3d8841280d7ffa4d9fab0fa1f187f42dc1f88ed837e11a866c334805a329f478b0db02b6db3a2746aac')



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

2013-08-17 Thread Alexander Rødseth
Date: Saturday, August 17, 2013 @ 17:15:38
  Author: arodseth
Revision: 95854

Minor change

Modified:
  freeorion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 15:15:02 UTC (rev 95853)
+++ PKGBUILD2013-08-17 15:15:38 UTC (rev 95854)
@@ -80,7 +80,7 @@
 }
 
 package() {
-  cd $srcdir/$pkgname
+  cd $pkgname
 
   # Binaries
   install -Dm755 $srcdir/$pkgname.sh $pkgdir/usr/bin/freeorion



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

2013-08-17 Thread Evangelos Foutras
Date: Saturday, August 17, 2013 @ 17:21:03
  Author: foutrelis
Revision: 95856

upgpkg: mplayer-vaapi 36265-4

libmng.so.2 rebuild.

Modified:
  mplayer-vaapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 15:16:04 UTC (rev 95855)
+++ PKGBUILD2013-08-17 15:21:03 UTC (rev 95856)
@@ -5,7 +5,7 @@
 
 pkgname=mplayer-vaapi
 pkgver=36265
-pkgrel=3
+pkgrel=4
 pkgdesc=A movie player, compiled with vaapi support
 arch=('i686' 'x86_64')
 url=http://gitorious.org/vaapi/mplayer;



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

2013-08-17 Thread Evangelos Foutras
Date: Saturday, August 17, 2013 @ 17:21:19
  Author: foutrelis
Revision: 95857

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

Added:
  mplayer-vaapi/repos/community-staging-i686/
  mplayer-vaapi/repos/community-staging-i686/PKGBUILD
(from rev 95856, mplayer-vaapi/trunk/PKGBUILD)
  mplayer-vaapi/repos/community-staging-i686/cdio-includes.patch
(from rev 95856, mplayer-vaapi/trunk/cdio-includes.patch)
  mplayer-vaapi/repos/community-staging-i686/mplayer-vaapi.install
(from rev 95856, mplayer-vaapi/trunk/mplayer-vaapi.install)
  mplayer-vaapi/repos/community-staging-i686/subreader-fix-srt-parsing.patch
(from rev 95856, mplayer-vaapi/trunk/subreader-fix-srt-parsing.patch)
  mplayer-vaapi/repos/community-staging-i686/tweak-desktop-file.patch
(from rev 95856, mplayer-vaapi/trunk/tweak-desktop-file.patch)
  mplayer-vaapi/repos/community-staging-x86_64/
  mplayer-vaapi/repos/community-staging-x86_64/PKGBUILD
(from rev 95856, mplayer-vaapi/trunk/PKGBUILD)
  mplayer-vaapi/repos/community-staging-x86_64/cdio-includes.patch
(from rev 95856, mplayer-vaapi/trunk/cdio-includes.patch)
  mplayer-vaapi/repos/community-staging-x86_64/mplayer-vaapi.install
(from rev 95856, mplayer-vaapi/trunk/mplayer-vaapi.install)
  mplayer-vaapi/repos/community-staging-x86_64/subreader-fix-srt-parsing.patch
(from rev 95856, mplayer-vaapi/trunk/subreader-fix-srt-parsing.patch)
  mplayer-vaapi/repos/community-staging-x86_64/tweak-desktop-file.patch
(from rev 95856, mplayer-vaapi/trunk/tweak-desktop-file.patch)

--+
 community-staging-i686/PKGBUILD  |   89 +
 community-staging-i686/cdio-includes.patch   |   43 ++
 community-staging-i686/mplayer-vaapi.install |   11 +
 community-staging-i686/subreader-fix-srt-parsing.patch   |   40 +
 community-staging-i686/tweak-desktop-file.patch  |   14 ++
 community-staging-x86_64/PKGBUILD|   89 +
 community-staging-x86_64/cdio-includes.patch |   43 ++
 community-staging-x86_64/mplayer-vaapi.install   |   11 +
 community-staging-x86_64/subreader-fix-srt-parsing.patch |   40 +
 community-staging-x86_64/tweak-desktop-file.patch|   14 ++
 10 files changed, 394 insertions(+)

Copied: mplayer-vaapi/repos/community-staging-i686/PKGBUILD (from rev 95856, 
mplayer-vaapi/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-08-17 15:21:19 UTC (rev 95857)
@@ -0,0 +1,89 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+# Contributor: Ionut Biru ib...@archlinux.org
+# Contributor: Hugo Doria h...@archlinux.org
+
+pkgname=mplayer-vaapi
+pkgver=36265
+pkgrel=4
+pkgdesc=A movie player, compiled with vaapi support
+arch=('i686' 'x86_64')
+url=http://gitorious.org/vaapi/mplayer;
+license=('GPL')
+depends=('libxxf86dga' 'libxxf86vm' 'libmad' 'libcdio-paranoia' 'libxinerama'
+ 'lame' 'fontconfig' 'libtheora' 'xvidcore' 'libmng' 'libxss' 'glu'
+ 'sdl' 'smbclient' 'aalib' 'jack' 'libcaca' 'x264' 'faac' 'faad2'
+ 'lirc-utils' 'ttf-dejavu' 'libxvmc' 'enca' 'opencore-amr' 'libdca'
+ 'a52dec' 'schroedinger' 'mpg123' 'libvpx' 'libpulse' 'fribidi'
+ 'libbluray' 'libva' 'libass' 'desktop-file-utils')
+makedepends=('unzip' 'live-media' 'yasm' 'ladspa' 'git' 'mesa')
+provides=(mplayer=$pkgver)
+conflicts=('mplayer')
+backup=('etc/mplayer/codecs.conf' 'etc/mplayer/input.conf')
+source=(http://pkgbuild.com/~foutrelis/sources/$pkgname/$pkgname-$pkgver.tar.xz{,.sig}
+cdio-includes.patch
+tweak-desktop-file.patch
+subreader-fix-srt-parsing.patch)
+options=('!buildflags' '!emptydirs')
+install=mplayer-vaapi.install
+sha256sums=('5747c28c30c15d1000fb655a8abaa4b22483746d0e82775b27466948ae0c549a'
+'SKIP'
+'72e6c654f9733953ad2466d0ea1a52f23e753791d8232d90f13293eb1b358720'
+'5a09fb462729a4e573568f9e8c1f57dbe7f69c0b68cfa4f6d70b3e52c450d93b'
+'8b6cd325d89ff8bce3662c6aaa9b61b8e6163c6574e09b575426a1eed02b8ad3')
+
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+
+  patch -Np0 -i $srcdir/cdio-includes.patch
+  patch -d etc -Np0 -i $srcdir/tweak-desktop-file.patch
+
+  # http://bugzilla.mplayerhq.hu/show_bug.cgi?id=2139
+  patch -Np0 -i $srcdir/subreader-fix-srt-parsing.patch
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--enable-runtime-cpudetection \
+--disable-gui \
+--disable-arts \
+--disable-gif \
+--disable-liblzo \
+--disable-speex \
+--disable-cdparanoia \
+--disable-openal \
+--disable-libdv \
+--disable-musepack \
+--disable-esd \
+--disable-mga \
+--disable-ass-internal \
+--enable-xvmc \
+

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

2013-08-17 Thread Evangelos Foutras
Date: Saturday, August 17, 2013 @ 17:35:06
  Author: foutrelis
Revision: 193168

upgpkg: firefox-i18n 23.0.1-1

New upstream release.

Modified:
  firefox-i18n/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 14:06:22 UTC (rev 193167)
+++ PKGBUILD2013-08-17 15:35:06 UTC (rev 193168)
@@ -5,7 +5,7 @@
 # Contributor: Andrea Scarpino and...@archlinux.org
 
 pkgbase=firefox-i18n
-pkgver=23.0
+pkgver=23.0.1
 pkgrel=1
 pkgdesc=Language pack for Firefox
 arch=('any')
@@ -128,92 +128,92 @@
   install -Dm644 firefox-i18n-$pkgver-$1.xpi \
 
$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi
 }
-md5sums=('661e4dc5512941960015d7bc05f20ac3'
- '8cf3e1d242397572b4e402d16f9ed7be'
- 'c0208a254059a92a7dd34cea95ae4b5a'
- 'd3d9651160984473c9b53336e7758fd4'
- '882b71b118d48be1ec9eb189bef19ea9'
- '2df133561afe36eed1c7d8207716cd5d'
- '00944228b586de09322d987b489d56d9'
- '82783a0a32ccca781745ab16806d1efd'
- '711cafc6f05fbcf60057b6cb3ba6eaa3'
- '488efb347f27ed9fb4b68976f13b18d3'
- '23faf87d237cecd5af7ab04a323c5fe9'
- 'f088e0a93ab8215ecd2dcd9b7e7c73ca'
- 'a548947a607f42154bc1feb1fa59b4a8'
- '0dc684231c47d06f8238cd740128bced'
- '5a5b541c9409fa39f4e1eb9321070cbc'
- '27ae9e345fa4503c3b6d30858e377859'
- '930226779a2303b7c807b5c32536d2de'
- '8e1f803cffb36eaf8736ccaa27eacb22'
- '29ce160d41b8f142458d5e7821f721a7'
- 'b1df2a46a94e4dd3fddbe52e4ddaa9eb'
- '9207a65e6fa6a35d11a934b01ba67ff1'
- 'e06609c42f0ef47a474e953e9c7fe572'
- '996585a8b62bcad8c832b97f77abea63'
- '7d7a61257dde3b3b0799120d43f59d60'
- 'cf9bee14cad8c53fe6d8f75d0e416959'
- '46faf696066cfea3a2f0204431480239'
- '093d21de887d778208a3673f51881362'
- '7510b73ecc371639e22d8813f36177d1'
- '4536e54e2893cf535e656b0d3f988c64'
- '70b335ac308e87c5d257a32045c4188d'
- '8dfdf6c3901c30c59b06c4a6c129eb64'
- 'f9d90d567b5bd63df57c7658e6bfa70c'
- 'c90d81c8092923967b9eb528e015ed61'
- 'ac758a0489788578bf51f49a190fa4da'
- 'd483202e90690fff74d62cc4fb156add'
- '7fe51bdc8f409910a0b99321009b4d7d'
- '809e9481da8a5352c92c142dba26c90d'
- '540ae4e0174d297288a2f28d508e7be9'
- 'd91d2b0082435d5b77fc7a4b2f722715'
- 'f6a20ac30ae7ab25678e02131daadfa3'
- '4964ab7cf6040ad0ca9eeef09c65f98e'
- 'a1c1ad04fc466d6b92c7e531a830255f'
- '79ce15dababa4fe9043599bfeab1322d'
- '43e4e7e0637a4739dfc6b9f97b9dcc5a'
- '8fbb83695cd9170cd697eac1412590a9'
- '378aae78141c466a026ed5be4cea29df'
- 'c01caec5926851abb7a7bb0318e064d7'
- '019352e420ee14dfdacfe503aa430c7c'
- '175523826509c3270ccd424fa0e86303'
- '2f43de5da1d08b820ccbb463f8cea752'
- 'a1f3c3ef87017c7e960608cf049284fc'
- '658c77ed67fceaf0bd150fb324ac2ce8'
- '79769d8e8df83d30f2393b4ac05febe8'
- '40fe19f1b94f8c961512941a7a8b47f4'
- '172b08e2d4be0b5f2f6732cdb63be713'
- '6330d1c87b5c2d22451babdda1ff92a4'
- 'd6e235e918c672db1a89bab5af187897'
- 'b3d127a5778b8a34589aee859ae94a22'
- '7007a4ae72ceeb5827b49f873299f002'
- '62d8829b36df5f2e7c265f8203e1e1da'
- 'cba93275cdfd0cff9476ef5ad70e47f5'
- '2d4d47062bf7d0f5b335c63435d26c3a'
- '465000e912b78f741da6ad99591795c1'
- '464a4a1a38acdc9b32c497283d6d938f'
- 'e6195dbd47e058a5572c0a4f0ae08470'
- '03d01207875a469f017944a1e21119ce'
- '97bc4932eac02e0e6d8d4263682d3a1d'
- '382358e5c173290bb0b55524de4a767b'
- '53fb096cc84af8647549fc982adfc9f2'
- '037b31d60461f2de3b3bb0fe15bd0ba8'
- 'e90afd1185abb98dfc99287b0a8d8bfc'
- '9e1eb4f6f0a6c8451035b82f7a62c42e'
- 'fad1272dcae17b119ffc0ec1279bf377'
- 'eabaea104cefb2faba4bb5b114fe19a7'
- 'ad4144a64a7227f85ee9780a85f5892f'
- 'd748b5f5a1468881604a62834679a0fa'
- '57beaa75317cbde37c5e229491814038'
- 'd279791cea3fef1d16d450159358d1bf'
- '3927e92785b0d9acf5745169547399d5'
- '6dd119f92a9325f36350c52781f7c364'
- '80942738d58e7e23fbafc71c7c4192c8'
- '38796c065cc77aecce217a8070effae3'
- '0968375624ada8038f0edc68e0f94b7b'
- '6cba9701a4ba6722ddea60e9ef70039e'
- '7edc38001383a6e22817a34ef07f6dec'
- 'ee7afbb322addda7260d66266fbcfcc9'
- '513aa7b40acbe069f2a3222c4e5caa16'
- '1910529543aa8270517bf7bc28d62347'
- '7f2f8b55097f000e97919dd30d997714')
+md5sums=('ce13065a7e9e9d4446888ee7ef5ddf8f'
+ 'dcac67abc13b8c021b8323771e5f1ea1'
+ 'a78b91cc71c47673a826625422e384f6'

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

2013-08-17 Thread Evangelos Foutras
Date: Saturday, August 17, 2013 @ 17:35:16
  Author: foutrelis
Revision: 193169

archrelease: copy trunk to extra-any

Added:
  firefox-i18n/repos/extra-any/PKGBUILD
(from rev 193168, firefox-i18n/trunk/PKGBUILD)
Deleted:
  firefox-i18n/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  438 ++---
 1 file changed, 219 insertions(+), 219 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-17 15:35:06 UTC (rev 193168)
+++ PKGBUILD2013-08-17 15:35:16 UTC (rev 193169)
@@ -1,219 +0,0 @@
-# $Id$
-# Maintainer: Thomas Baechler tho...@archlinux.org
-# Contributor: Jaroslaw Swierczynski swier...@juvepoland.com
-# Contributor: Michal Hybner dta...@gmail.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgbase=firefox-i18n
-pkgver=23.0
-pkgrel=1
-pkgdesc=Language pack for Firefox
-arch=('any')
-url=http://www.mozilla.com/;
-license=('MPL' 'GPL')
-depends=(firefox=$pkgver)
-
-_languages=(
-  'achAcoli'
-  'af Afrikaans'
-  'ak Akan'
-  'ar Arabic'
-  'as Assamese'
-  'astAsturian'
-  'be Belarusian'
-  'bg Bulgarian'
-  'bn-BD  Bengali (Bangladesh)'
-  'bn-IN  Bengali (India)'
-  'br Breton'
-  'bs Bosnian'
-  'ca Catalan'
-  'cs Czech'
-  'csbKashubian'
-  'cy Welsh'
-  'da Danish'
-  'de German'
-  'el Greek'
-  'en-GB  English (United Kingdom)'
-  'en-US  English (United States)'
-  'en-ZA  English (South Africa)'
-  'eo Esperanto'
-  'es-AR  Spanish (Argentina)'
-  'es-CL  Spanish (Chile)'
-  'es-ES  Spanish (Spain)'
-  'es-MX  Spanish (Mexico)'
-  'et Estonian'
-  'eu Basque'
-  'fa Persian'
-  'ff Fula'
-  'fi Finnish'
-  'fr French'
-  'fy-NL  Frisian (Netherlands)'
-  'ga-IE  Irish'
-  'gd Gaelic'
-  'gl Galician'
-  'gu-IN  Gujarati (India)'
-  'he Hebrew'
-  'hi-IN  Hindi (India)'
-  'hr Croatian'
-  'hu Hungarian'
-  'hy-AM  Armenian'
-  'id Indonesian'
-  'is Icelandic'
-  'it Italian'
-  'ja Japanese'
-  'kk Kazakh'
-  'km Khmer'
-  'kn Kannada'
-  'ko Korean'
-  'ku Kurdish'
-  'lg Ganda'
-  'lijLigurian'
-  'lt Lithuanian'
-  'lv Latvian'
-  'maiMaithili'
-  'mk Macedonian'
-  'ml Malayalam'
-  'mr Marathi'
-  'nb-NO  Norwegian (Bokmal)'
-  'nl Dutch'
-  'nn-NO  Norwegian (Nynorsk)'
-  'nsoNorthern Sotho (Sesotho sa lebowa)'
-  'or Oriya'
-  'pa-IN  Punjabi'
-  'pl Polish'
-  'pt-BR  Brazilian Portuguese'
-  'pt-PT  Portuguese'
-  'rm Romansh'
-  'ro Romanian'
-  'ru Russian'
-  'si Sinhalese'
-  'sk Slovak'
-  'sl Slovenian'
-  'sonSonghai'
-  'sq Albanian'
-  'sr Serbian'
-  'sv-SE  Swedish'
-  'ta-LK  Tamil (Sri Lanka)'
-  'ta Tamil'
-  'te Telugu'
-  'th Thai'
-  'tr Turkish'
-  'uk Ukrainian'
-  'vi Vietnamese'
-  'zh-CN  Chinese (simplified)'
-  'zh-TW  Chinese (traditional)'
-  'zu Zulu'
-)
-
-pkgname=()
-source=()
-_url=http://download.cdn.mozilla.net/pub/mozilla.org/firefox/releases/$pkgver/linux-i686/xpi
-
-for _lang in ${_languages[@]}; do
-  _locale=${_lang%% *}
-  _pkgname=firefox-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  source+=(firefox-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi)
-  eval package_$_pkgname() {
-_package $_lang
-  }
-done
-
-# Don't extract anything
-noextract=(${source[@]%%::*})
-
-_package() {
-  pkgdesc=$2 language pack for Firefox
-  install -Dm644 firefox-i18n-$pkgver-$1.xpi \
-
$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi
-}
-md5sums=('661e4dc5512941960015d7bc05f20ac3'
- '8cf3e1d242397572b4e402d16f9ed7be'
- 'c0208a254059a92a7dd34cea95ae4b5a'
- 'd3d9651160984473c9b53336e7758fd4'
- '882b71b118d48be1ec9eb189bef19ea9'
- '2df133561afe36eed1c7d8207716cd5d'
- '00944228b586de09322d987b489d56d9'
- '82783a0a32ccca781745ab16806d1efd'
- '711cafc6f05fbcf60057b6cb3ba6eaa3'
- '488efb347f27ed9fb4b68976f13b18d3'
- '23faf87d237cecd5af7ab04a323c5fe9'
- 'f088e0a93ab8215ecd2dcd9b7e7c73ca'
- 'a548947a607f42154bc1feb1fa59b4a8'
- '0dc684231c47d06f8238cd740128bced'
- '5a5b541c9409fa39f4e1eb9321070cbc'
- '27ae9e345fa4503c3b6d30858e377859'
- '930226779a2303b7c807b5c32536d2de'
- '8e1f803cffb36eaf8736ccaa27eacb22'
- '29ce160d41b8f142458d5e7821f721a7'
- 'b1df2a46a94e4dd3fddbe52e4ddaa9eb'
- '9207a65e6fa6a35d11a934b01ba67ff1'
- 'e06609c42f0ef47a474e953e9c7fe572'
- '996585a8b62bcad8c832b97f77abea63'
- '7d7a61257dde3b3b0799120d43f59d60'
- 'cf9bee14cad8c53fe6d8f75d0e416959'
- '46faf696066cfea3a2f0204431480239'
- '093d21de887d778208a3673f51881362'
- '7510b73ecc371639e22d8813f36177d1'
- '4536e54e2893cf535e656b0d3f988c64'
-

[arch-commits] Commit in python-jinja/repos (3 files)

2013-08-17 Thread Evangelos Foutras
Date: Saturday, August 17, 2013 @ 17:48:16
  Author: foutrelis
Revision: 95859

archrelease: copy trunk to community-testing-any

Added:
  python-jinja/repos/community-testing-any/
  
python-jinja/repos/community-testing-any/Fix-PrefixLoader-does-not-pass-globals-to-load.patch
(from rev 95858, 
python-jinja/trunk/Fix-PrefixLoader-does-not-pass-globals-to-load.patch)
  python-jinja/repos/community-testing-any/PKGBUILD
(from rev 95858, python-jinja/trunk/PKGBUILD)

--+
 Fix-PrefixLoader-does-not-pass-globals-to-load.patch |   26 +++
 PKGBUILD |   58 +
 2 files changed, 84 insertions(+)

Copied: 
python-jinja/repos/community-testing-any/Fix-PrefixLoader-does-not-pass-globals-to-load.patch
 (from rev 95858, 
python-jinja/trunk/Fix-PrefixLoader-does-not-pass-globals-to-load.patch)
===
--- community-testing-any/Fix-PrefixLoader-does-not-pass-globals-to-load.patch  
(rev 0)
+++ community-testing-any/Fix-PrefixLoader-does-not-pass-globals-to-load.patch  
2013-08-17 15:48:16 UTC (rev 95859)
@@ -0,0 +1,26 @@
+From 478983594423dcdb85e26ea7a02b8d1d72215db6 Mon Sep 17 00:00:00 2001
+From: Morris Jobke morris.jo...@gmail.com
+Date: Mon, 27 May 2013 00:54:52 +0300
+Subject: [PATCH] Fix PrefixLoader does not pass globals to load
+
+Fix mitsuhiko/jinja2#225
+---
+ jinja2/loaders.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/jinja2/loaders.py b/jinja2/loaders.py
+index a9a2625..cc9c683 100644
+--- a/jinja2/loaders.py
 b/jinja2/loaders.py
+@@ -349,7 +349,7 @@ def get_source(self, environment, template):
+ def load(self, environment, name, globals=None):
+ loader, local_name = self.get_loader(name)
+ try:
+-return loader.load(environment, local_name)
++return loader.load(environment, local_name, globals)
+ except TemplateNotFound:
+ # re-raise the exception with the correct fileame here.
+ # (the one that includes the prefix)
+-- 
+1.8.1.6
+

Copied: python-jinja/repos/community-testing-any/PKGBUILD (from rev 95858, 
python-jinja/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-08-17 15:48:16 UTC (rev 95859)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+# Contributor: Peter Baldwin bald_p...@hotmail.com
+
+pkgname=('python-jinja' 'python2-jinja')
+pkgver=2.7.1
+pkgrel=2
+pkgdesc=A simple pythonic template language written in Python
+arch=('any')
+url=http://jinja.pocoo.org/;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-markupsafe'
+ 'python2-markupsafe')
+source=(http://pypi.python.org/packages/source/J/Jinja2/Jinja2-$pkgver.tar.gz
+Fix-PrefixLoader-does-not-pass-globals-to-load.patch)
+sha256sums=('5cc0a087a81dca1c08368482fb7a92fe2bdd8cfbb22bc0fccfe6c85affb04c8b'
+'939f61f022a61661bb65e36eb53dd3482cbdb08ea8098c439f7c1aa7f2810b8f')
+
+prepare() {
+  cd $srcdir/Jinja2-$pkgver
+
+  # https://github.com/mitsuhiko/jinja2/issues/225
+  patch -Np1 -i $srcdir/Fix-PrefixLoader-does-not-pass-globals-to-load.patch
+}
+
+build() {
+  cd $srcdir
+
+  rm -rf python{2,3}-build
+  for builddir in python{2,3}-build; do
+cp -r Jinja2-$pkgver $builddir
+pushd $builddir
+${builddir%-build} setup.py build
+popd
+  done
+}
+
+package_python-jinja() {
+  depends=('python-setuptools' 'python-markupsafe')
+
+  cd $srcdir/python3-build
+
+  python3 setup.py install --root=$pkgdir -O1
+
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-jinja() {
+  depends=('python2-setuptools' 'python2-markupsafe')
+
+  cd $srcdir/python2-build
+
+  python2 setup.py install --root=$pkgdir -O1
+
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2013-08-17 Thread Evangelos Foutras
Date: Saturday, August 17, 2013 @ 17:48:12
  Author: foutrelis
Revision: 95858

upgpkg: python-jinja 2.7.1-2

Depend on setuptools instead of distribute.

Modified:
  python-jinja/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 15:21:19 UTC (rev 95857)
+++ PKGBUILD2013-08-17 15:48:12 UTC (rev 95858)
@@ -4,12 +4,12 @@
 
 pkgname=('python-jinja' 'python2-jinja')
 pkgver=2.7.1
-pkgrel=1
+pkgrel=2
 pkgdesc=A simple pythonic template language written in Python
 arch=('any')
 url=http://jinja.pocoo.org/;
 license=('BSD')
-makedepends=('python-distribute' 'python2-distribute' 'python-markupsafe'
+makedepends=('python-setuptools' 'python2-setuptools' 'python-markupsafe'
  'python2-markupsafe')
 source=(http://pypi.python.org/packages/source/J/Jinja2/Jinja2-$pkgver.tar.gz
 Fix-PrefixLoader-does-not-pass-globals-to-load.patch)
@@ -36,7 +36,7 @@
 }
 
 package_python-jinja() {
-  depends=('python-distribute' 'python-markupsafe')
+  depends=('python-setuptools' 'python-markupsafe')
 
   cd $srcdir/python3-build
 
@@ -46,7 +46,7 @@
 }
 
 package_python2-jinja() {
-  depends=('python2-distribute' 'python2-markupsafe')
+  depends=('python2-setuptools' 'python2-markupsafe')
 
   cd $srcdir/python2-build
 



[arch-commits] Commit in python-pygments/repos (3 files)

2013-08-17 Thread Evangelos Foutras
Date: Saturday, August 17, 2013 @ 17:55:42
  Author: foutrelis
Revision: 95861

archrelease: copy trunk to community-testing-any

Added:
  python-pygments/repos/community-testing-any/
  python-pygments/repos/community-testing-any/PKGBUILD
(from rev 95860, python-pygments/trunk/PKGBUILD)
  python-pygments/repos/community-testing-any/python-pygments.install
(from rev 95860, python-pygments/trunk/python-pygments.install)

-+
 PKGBUILD|   56 ++
 python-pygments.install |7 +
 2 files changed, 63 insertions(+)

Copied: python-pygments/repos/community-testing-any/PKGBUILD (from rev 95860, 
python-pygments/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-08-17 15:55:42 UTC (rev 95861)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+# Contributor: Timm Preetz t...@preetz.us
+
+pkgname=('python-pygments' 'python2-pygments')
+pkgver=1.6
+pkgrel=2
+pkgdesc=Python syntax highlighter
+arch=('any')
+url=http://pygments.org/;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools')
+options=('!emptydirs')
+source=(http://pypi.python.org/packages/source/P/Pygments/Pygments-$pkgver.tar.gz)
+sha256sums=('799ed4caf77516e54440806d8d9cd82a7607dfdf4e4fb643815171a4b5c921c0')
+
+build() {
+  cd $srcdir
+
+  rm -rf python{2,3}-build
+  for builddir in python{2,3}-build; do
+cp -r Pygments-$pkgver $builddir
+pushd $builddir
+${builddir%-build} setup.py build
+popd
+  done
+}
+
+package_python-pygments() {
+  depends=('python-setuptools')
+  install=python-pygments.install
+
+  cd $srcdir/python3-build
+
+  python3 setup.py install --root=$pkgdir -O1
+
+  # pygmentize has been moved to the python2-pygments package
+  rm $pkgdir/usr/bin/pygmentize
+
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pygments() {
+  depends=('python2-setuptools')
+
+  cd $srcdir/python2-build
+
+  python2 setup.py install --root=$pkgdir -O1
+
+  install -Dm644 external/pygments.bashcomp \
+$pkgdir/usr/share/bash-completion/completions/pygmentize
+
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Copied: python-pygments/repos/community-testing-any/python-pygments.install 
(from rev 95860, python-pygments/trunk/python-pygments.install)
===
--- community-testing-any/python-pygments.install   
(rev 0)
+++ community-testing-any/python-pygments.install   2013-08-17 15:55:42 UTC 
(rev 95861)
@@ -0,0 +1,7 @@
+post_upgrade() {
+  if (($(vercmp $2 1.4-5)  0)); then
+echo '/usr/bin/pygmentize has been moved to the python2-pygments package'
+  fi
+}
+
+# vim:set ts=2 sw=2 et:



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

2013-08-17 Thread Evangelos Foutras
Date: Saturday, August 17, 2013 @ 17:55:37
  Author: foutrelis
Revision: 95860

upgpkg: python-pygments 1.6-2

Depend on setuptools instead of distribute.

Modified:
  python-pygments/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 15:48:16 UTC (rev 95859)
+++ PKGBUILD2013-08-17 15:55:37 UTC (rev 95860)
@@ -4,12 +4,12 @@
 
 pkgname=('python-pygments' 'python2-pygments')
 pkgver=1.6
-pkgrel=1
+pkgrel=2
 pkgdesc=Python syntax highlighter
 arch=('any')
 url=http://pygments.org/;
 license=('BSD')
-makedepends=('python-distribute' 'python2-distribute')
+makedepends=('python-setuptools' 'python2-setuptools')
 options=('!emptydirs')
 
source=(http://pypi.python.org/packages/source/P/Pygments/Pygments-$pkgver.tar.gz)
 sha256sums=('799ed4caf77516e54440806d8d9cd82a7607dfdf4e4fb643815171a4b5c921c0')
@@ -27,7 +27,7 @@
 }
 
 package_python-pygments() {
-  depends=('python-distribute')
+  depends=('python-setuptools')
   install=python-pygments.install
 
   cd $srcdir/python3-build
@@ -41,7 +41,7 @@
 }
 
 package_python2-pygments() {
-  depends=('python2-distribute')
+  depends=('python2-setuptools')
 
   cd $srcdir/python2-build
 



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

2013-08-17 Thread Evangelos Foutras
Date: Saturday, August 17, 2013 @ 17:57:11
  Author: foutrelis
Revision: 95862

upgpkg: python-south 0.8.2-2

Depend on setuptools instead of distribute.

Modified:
  python-south/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 15:55:42 UTC (rev 95861)
+++ PKGBUILD2013-08-17 15:57:11 UTC (rev 95862)
@@ -4,12 +4,12 @@
 
 pkgname=('python-south' 'python2-south')
 pkgver=0.8.2
-pkgrel=1
+pkgrel=2
 pkgdesc=Intelligent database migrations library for the Django web framework
 arch=('any')
 url=http://south.aeracode.org/;
 license=('APACHE')
-makedepends=('python-distribute' 'python2-distribute')
+makedepends=('python-setuptools' 'python2-setuptools')
 source=(http://pypi.python.org/packages/source/S/South/South-$pkgver.tar.gz)
 sha256sums=('a6f074f048a63a0d19cd1a6ae298377b4800351eca8e1294d33f709c5cdd5e5a')
 



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

2013-08-17 Thread Evangelos Foutras
Date: Saturday, August 17, 2013 @ 17:57:15
  Author: foutrelis
Revision: 95863

archrelease: copy trunk to community-testing-any

Added:
  python-south/repos/community-testing-any/
  python-south/repos/community-testing-any/PKGBUILD
(from rev 95862, python-south/trunk/PKGBUILD)

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

Copied: python-south/repos/community-testing-any/PKGBUILD (from rev 95862, 
python-south/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-08-17 15:57:15 UTC (rev 95863)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+# Contributor: Tiago Pierezan Camargo tcama...@gmail.com
+
+pkgname=('python-south' 'python2-south')
+pkgver=0.8.2
+pkgrel=2
+pkgdesc=Intelligent database migrations library for the Django web framework
+arch=('any')
+url=http://south.aeracode.org/;
+license=('APACHE')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=(http://pypi.python.org/packages/source/S/South/South-$pkgver.tar.gz)
+sha256sums=('a6f074f048a63a0d19cd1a6ae298377b4800351eca8e1294d33f709c5cdd5e5a')
+
+package_python-south() {
+  depends=('python-django')
+
+  cd $srcdir/South-$pkgver
+  python3 setup.py install --root=$pkgdir -O1
+}
+
+package_python2-south() {
+  depends=('python2-django')
+  conflicts=('python-south=0.7.6-1')
+  replaces=('python-south=0.7.6-1')
+
+  cd $srcdir/South-$pkgver
+  python2 setup.py install --root=$pkgdir -O1
+}
+
+# vim:set ts=2 sw=2 et:



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

2013-08-17 Thread Evangelos Foutras
Date: Saturday, August 17, 2013 @ 17:59:26
  Author: foutrelis
Revision: 95864

upgpkg: python-stevedore 0.10-2

Depend on setuptools instead of distribute.

Modified:
  python-stevedore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 15:57:15 UTC (rev 95863)
+++ PKGBUILD2013-08-17 15:59:26 UTC (rev 95864)
@@ -3,12 +3,12 @@
 
 pkgname=('python-stevedore' 'python2-stevedore')
 pkgver=0.10
-pkgrel=1
+pkgrel=2
 pkgdesc=Manage dynamic plugins for Python applications
 arch=('any')
 url=https://github.com/dreamhost/stevedore;
 license=('Apache')
-makedepends=('python-distribute' 'python2-distribute')
+makedepends=('python-setuptools' 'python2-setuptools')
 options=('!emptydirs')
 
source=(http://pypi.python.org/packages/source/s/stevedore/stevedore-$pkgver.tar.gz)
 sha256sums=('71a6ffb669c6d84ef0f43f44816257101775f955590986c29a95ce07293fd6e8')



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

2013-08-17 Thread Evangelos Foutras
Date: Saturday, August 17, 2013 @ 17:59:31
  Author: foutrelis
Revision: 95865

archrelease: copy trunk to community-testing-any

Added:
  python-stevedore/repos/community-testing-any/
  python-stevedore/repos/community-testing-any/PKGBUILD
(from rev 95864, python-stevedore/trunk/PKGBUILD)

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

Copied: python-stevedore/repos/community-testing-any/PKGBUILD (from rev 95864, 
python-stevedore/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2013-08-17 15:59:31 UTC (rev 95865)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+
+pkgname=('python-stevedore' 'python2-stevedore')
+pkgver=0.10
+pkgrel=2
+pkgdesc=Manage dynamic plugins for Python applications
+arch=('any')
+url=https://github.com/dreamhost/stevedore;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools')
+options=('!emptydirs')
+source=(http://pypi.python.org/packages/source/s/stevedore/stevedore-$pkgver.tar.gz)
+sha256sums=('71a6ffb669c6d84ef0f43f44816257101775f955590986c29a95ce07293fd6e8')
+
+package_python-stevedore() {
+  depends=('python')
+
+  cd $srcdir/stevedore-$pkgver
+  python3 setup.py install --root=$pkgdir -O1
+}
+
+package_python2-stevedore() {
+  depends=('python2')
+
+  cd $srcdir/stevedore-$pkgver
+  python2 setup.py install --root=$pkgdir -O1
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in liteide/trunk (PKGBUILD liteide.sh)

2013-08-17 Thread Alexander Rødseth
Date: Saturday, August 17, 2013 @ 18:06:57
  Author: arodseth
Revision: 95866

Fix for FS#36526

Modified:
  liteide/trunk/PKGBUILD
  liteide/trunk/liteide.sh

+
 PKGBUILD   |7 ---
 liteide.sh |2 +-
 2 files changed, 5 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 15:59:31 UTC (rev 95865)
+++ PKGBUILD2013-08-17 16:06:57 UTC (rev 95866)
@@ -5,7 +5,7 @@
 
 pkgname=liteide
 pkgver=19
-pkgrel=1
+pkgrel=2
 pkgdesc='IDE for editing and building projects written in the Go programming 
language (golangide)'
 license=('LGPL')
 arch=('x86_64' 'i686')
@@ -20,7 +20,7 @@
 'liteide.sh')
 sha256sums=('182694341940878cf5df4f083a750659bffc97eb4ae517410e157bebc14f97df'
 '47c52b22326034bd3d6a7b11b05a53c8b3838c08e145171cf5cad2ca00260697'
-'93ef16d59054ef9b37f8781e90f7d0f83d726779d2029660dfd21e84d808bf04')
+'5d6f05b072586c31e3a4a08ea2d7332dd0a78f5db6b2d088fb76e8cb032672f0')
 
 prepare() {
   cd $srcdir
@@ -51,9 +51,10 @@
 $pkgdir/usr/share/doc/$pkgname
 
   msg2 'Packaging executables...'
-  for binary in goastview goapi goexec godocview liteide; do
+  for binary in goastview goapi goexec godocview; do
 install -Dm755 bin/$binary $pkgdir/usr/bin/$binary
   done
+  install -Dm755 liteide $pkgdir/usr/bin/liteide.elf
   install -Dm755 $srcdir/$pkgname.sh $pkgdir/usr/bin/$pkgname
 
   cd $srcdir/liteide-x$pkgver/liteidex

Modified: liteide.sh
===
--- liteide.sh  2013-08-17 15:59:31 UTC (rev 95865)
+++ liteide.sh  2013-08-17 16:06:57 UTC (rev 95866)
@@ -1,5 +1,5 @@
 #!/bin/sh
-ELF=/usr/bin/liteide
+ELF=/usr/bin/liteide.elf
 if [ ! -z $GOROOT -a -e $GOROOT ]; then
   $ELF $@
 else



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

2013-08-17 Thread Alexander Rødseth
Date: Saturday, August 17, 2013 @ 18:20:58
  Author: arodseth
Revision: 95867

upgpkg: liteide 19-2

Modified:
  liteide/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 16:06:57 UTC (rev 95866)
+++ PKGBUILD2013-08-17 16:20:58 UTC (rev 95867)
@@ -54,7 +54,7 @@
   for binary in goastview goapi goexec godocview; do
 install -Dm755 bin/$binary $pkgdir/usr/bin/$binary
   done
-  install -Dm755 liteide $pkgdir/usr/bin/liteide.elf
+  install -Dm755 bin/liteide $pkgdir/usr/bin/liteide.elf
   install -Dm755 $srcdir/$pkgname.sh $pkgdir/usr/bin/$pkgname
 
   cd $srcdir/liteide-x$pkgver/liteidex



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

2013-08-17 Thread Alexander Rødseth
Date: Saturday, August 17, 2013 @ 18:21:10
  Author: arodseth
Revision: 95868

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

Added:
  liteide/repos/community-i686/PKGBUILD
(from rev 95867, liteide/trunk/PKGBUILD)
  liteide/repos/community-i686/liteide.png
(from rev 95867, liteide/trunk/liteide.png)
  liteide/repos/community-i686/liteide.sh
(from rev 95867, liteide/trunk/liteide.sh)
  liteide/repos/community-x86_64/PKGBUILD
(from rev 95867, liteide/trunk/PKGBUILD)
  liteide/repos/community-x86_64/liteide.png
(from rev 95867, liteide/trunk/liteide.png)
  liteide/repos/community-x86_64/liteide.sh
(from rev 95867, liteide/trunk/liteide.sh)
Deleted:
  liteide/repos/community-i686/PKGBUILD
  liteide/repos/community-i686/liteide.png
  liteide/repos/community-i686/liteide.sh
  liteide/repos/community-x86_64/PKGBUILD
  liteide/repos/community-x86_64/liteide.png
  liteide/repos/community-x86_64/liteide.sh

-+
 /PKGBUILD   |  176 ++
 /liteide.sh |   14 +++
 community-i686/PKGBUILD |   87 
 community-i686/liteide.sh   |7 -
 community-x86_64/PKGBUILD   |   87 
 community-x86_64/liteide.sh |7 -
 6 files changed, 190 insertions(+), 188 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-17 16:20:58 UTC (rev 95867)
+++ community-i686/PKGBUILD 2013-08-17 16:21:10 UTC (rev 95868)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: spambanane happy.ho...@gmx.de
-# Contributor: Matteo matteo@gmail.com
-
-pkgname=liteide
-pkgver=19
-pkgrel=1
-pkgdesc='IDE for editing and building projects written in the Go programming 
language (golangide)'
-license=('LGPL')
-arch=('x86_64' 'i686')
-url='https://github.com/visualfc/liteide'
-depends=('go' 'libpng12' 'glib2' 'qt5-base' 'qt5-webkit')
-replaces=('golangide')
-conflicts=('golangide')
-makedepends=('gendesk')
-options=('!strip')
-source=($pkgname.zip::https://github.com/visualfc/liteide/archive/x$pkgver.zip;
-'liteide.png'
-'liteide.sh')
-sha256sums=('182694341940878cf5df4f083a750659bffc97eb4ae517410e157bebc14f97df'
-'47c52b22326034bd3d6a7b11b05a53c8b3838c08e145171cf5cad2ca00260697'
-'93ef16d59054ef9b37f8781e90f7d0f83d726779d2029660dfd21e84d808bf04')
-
-prepare() {
-  cd $srcdir
-
-  gendesk -n --name 'Golang IDE' --pkgname $pkgname --pkgdesc $pkgdesc
-  cd liteide-x$pkgver/build
-  chmod +x build_linux.sh
-}
-
-build() {
-  cd $srcdir/liteide-x$pkgver/build
-
-  QTDIR=/usr ./build_linux.sh
-
-  # Fixing insecure RPATH, need to test if this is still needed
-  cd ../liteidex
-  find . -name *.so -type f -exec sed -i 's|/home/win|/usr/lib/|g' {} \;
-  find . -name liteide -type f -exec sed -i 's|/home/win|/usr/lib/|g' {} \;
-}
-
-package() {
-  cd $srcdir/liteide-x$pkgver/build/liteide
-
-  msg2 'Creating directories...'
-  mkdir -p \
-$pkgdir/usr/lib/liteide \
-$pkgdir/usr/share/liteide \
-$pkgdir/usr/share/doc/$pkgname
-
-  msg2 'Packaging executables...'
-  for binary in goastview goapi goexec godocview liteide; do
-install -Dm755 bin/$binary $pkgdir/usr/bin/$binary
-  done
-  install -Dm755 $srcdir/$pkgname.sh $pkgdir/usr/bin/$pkgname
-
-  cd $srcdir/liteide-x$pkgver/liteidex
-
-  msg2 'Packaging resources...'
-  cp -r deploy/* os_deploy/* $pkgdir/usr/share/liteide
-
-  msg2 'Packaging libraries and plugins...'
-  cp -r liteide/lib/liteide/* $pkgdir/usr/lib/liteide
-  cp -r liteide/bin/libliteapp.* $pkgdir/usr/lib/
-  chmod -x $pkgdir/usr/lib/liteide/plugins/*
-
-  msg2 'Packaging license and license exception...'
-  install -Dm644 LICENSE.LGPL \
-$pkgdir/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 LGPL_EXCEPTION.TXT \
-$pkgdir/usr/share/licenses/$pkgname/LGPL_EXCEPTION
-
-  cd ../..
-
-  msg2 'Packaging menu entry and icon...'
-  install -Dm644 $pkgname.desktop \
-$pkgdir/usr/share/applications/$pkgname.desktop
-  install -Dm644 $pkgname.png \
-$pkgdir/usr/share/pixmaps/$pkgname.png
-
-  msg2 'Cleaning up...'
-  rm -rf $pkgdir/usr/share/$pkgname/doc
-}
-
-# vim:set ts=2 sw=2 et:

Copied: liteide/repos/community-i686/PKGBUILD (from rev 95867, 
liteide/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-17 16:21:10 UTC (rev 95868)
@@ -0,0 +1,88 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: spambanane happy.ho...@gmx.de
+# Contributor: Matteo matteo@gmail.com
+
+pkgname=liteide
+pkgver=19
+pkgrel=2
+pkgdesc='IDE for editing and building projects written in the Go programming 
language (golangide)'
+license=('LGPL')
+arch=('x86_64' 'i686')
+url='https://github.com/visualfc/liteide'

[arch-commits] Commit in intellij-idea-libs/trunk (PKGBUILD)

2013-08-17 Thread Jelle van der Waa
Date: Saturday, August 17, 2013 @ 18:56:16
  Author: jelle
Revision: 95869

fs#30852 fix typo in package description

Modified:
  intellij-idea-libs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 16:21:10 UTC (rev 95868)
+++ PKGBUILD2013-08-17 16:56:16 UTC (rev 95869)
@@ -4,7 +4,7 @@
 pkgver=12.1.4
 _pkgver=129.713
 pkgrel=1
-pkgdesc=Architecture dependend libraries needed by the Intellij Idea IDE
+pkgdesc=Architecture dependent libraries needed by the Intellij Idea IDE
 arch=('i686' 'x86_64')
 url=http://www.jetbrains.org/;
 license=('Apache')



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

2013-08-17 Thread Evangelos Foutras
Date: Saturday, August 17, 2013 @ 20:03:07
  Author: foutrelis
Revision: 193170

upgpkg: firefox 23.0.1-1

New upstream release.

Modified:
  firefox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 15:35:16 UTC (rev 193169)
+++ PKGBUILD2013-08-17 18:03:07 UTC (rev 193170)
@@ -3,7 +3,7 @@
 # Contributor: Jakub Schmidtke sja...@gmail.com
 
 pkgname=firefox
-pkgver=23.0
+pkgver=23.0.1
 pkgrel=1
 pkgdesc=Standalone web browser from mozilla.org
 arch=('i686' 'x86_64')
@@ -21,7 +21,7 @@
 
source=(https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.bz2
 mozconfig firefox.desktop firefox-install-dir.patch vendor.js 
shared-libs.patch
 firefox-20.0.1-fixed-loading-icon.png)
-sha256sums=('2d64bd12cfa80c57e4a7f4156c7b4fde725a6173dfe48e2fac12e1927faf563e'
+sha256sums=('bb2c2e99a03859ebd8c02b8bc4c57b39ccc97c55872c2737c433212c0ebe01cf'
 '1d750088958ae2a2faf43f9bb3909c3e396f01c6504ba39f09b8ed7fc1b29492'
 'd2a7610393ba259c35e3227b92e02ec91095a95189f56ac93ccdf6732772719c'
 'ded67e8204bd5e1c0c5771c0d2c84ff80c998e1543711e7cd804cfe29e8dd1b0'



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

2013-08-17 Thread Evangelos Foutras
Date: Saturday, August 17, 2013 @ 20:03:31
  Author: foutrelis
Revision: 193171

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

Added:
  firefox/repos/extra-i686/PKGBUILD
(from rev 193170, firefox/trunk/PKGBUILD)
  firefox/repos/extra-i686/firefox-20.0.1-fixed-loading-icon.png
(from rev 193170, firefox/trunk/firefox-20.0.1-fixed-loading-icon.png)
  firefox/repos/extra-i686/firefox-install-dir.patch
(from rev 193170, firefox/trunk/firefox-install-dir.patch)
  firefox/repos/extra-i686/firefox.desktop
(from rev 193170, firefox/trunk/firefox.desktop)
  firefox/repos/extra-i686/firefox.install
(from rev 193170, firefox/trunk/firefox.install)
  firefox/repos/extra-i686/mozconfig
(from rev 193170, firefox/trunk/mozconfig)
  firefox/repos/extra-i686/shared-libs.patch
(from rev 193170, firefox/trunk/shared-libs.patch)
  firefox/repos/extra-i686/vendor.js
(from rev 193170, firefox/trunk/vendor.js)
  firefox/repos/extra-x86_64/PKGBUILD
(from rev 193170, firefox/trunk/PKGBUILD)
  firefox/repos/extra-x86_64/firefox-20.0.1-fixed-loading-icon.png
(from rev 193170, firefox/trunk/firefox-20.0.1-fixed-loading-icon.png)
  firefox/repos/extra-x86_64/firefox-install-dir.patch
(from rev 193170, firefox/trunk/firefox-install-dir.patch)
  firefox/repos/extra-x86_64/firefox.desktop
(from rev 193170, firefox/trunk/firefox.desktop)
  firefox/repos/extra-x86_64/firefox.install
(from rev 193170, firefox/trunk/firefox.install)
  firefox/repos/extra-x86_64/mozconfig
(from rev 193170, firefox/trunk/mozconfig)
  firefox/repos/extra-x86_64/shared-libs.patch
(from rev 193170, firefox/trunk/shared-libs.patch)
  firefox/repos/extra-x86_64/vendor.js
(from rev 193170, firefox/trunk/vendor.js)
Deleted:
  firefox/repos/extra-i686/PKGBUILD
  firefox/repos/extra-i686/firefox-20.0.1-fixed-loading-icon.png
  firefox/repos/extra-i686/firefox-install-dir.patch
  firefox/repos/extra-i686/firefox.desktop
  firefox/repos/extra-i686/firefox.install
  firefox/repos/extra-i686/mozconfig
  firefox/repos/extra-i686/shared-libs.patch
  firefox/repos/extra-i686/vendor.js
  firefox/repos/extra-x86_64/PKGBUILD
  firefox/repos/extra-x86_64/firefox-20.0.1-fixed-loading-icon.png
  firefox/repos/extra-x86_64/firefox-install-dir.patch
  firefox/repos/extra-x86_64/firefox.desktop
  firefox/repos/extra-x86_64/firefox.install
  firefox/repos/extra-x86_64/mozconfig
  firefox/repos/extra-x86_64/shared-libs.patch
  firefox/repos/extra-x86_64/vendor.js

+
 /PKGBUILD  |  224 
 /firefox-install-dir.patch |   60 +++
 /firefox.desktop   |  242 +++
 /firefox.install   |   26 +++
 /mozconfig |   70 
 /shared-libs.patch |   24 +++
 /vendor.js |   18 ++
 extra-i686/PKGBUILD|  112 --
 extra-i686/firefox-install-dir.patch   |   30 ---
 extra-i686/firefox.desktop |  121 ---
 extra-i686/firefox.install |   13 -
 extra-i686/mozconfig   |   35 
 extra-i686/shared-libs.patch   |   12 -
 extra-i686/vendor.js   |9 -
 extra-x86_64/PKGBUILD  |  112 --
 extra-x86_64/firefox-install-dir.patch |   30 ---
 extra-x86_64/firefox.desktop   |  121 ---
 extra-x86_64/firefox.install   |   13 -
 extra-x86_64/mozconfig |   35 
 extra-x86_64/shared-libs.patch |   12 -
 extra-x86_64/vendor.js |9 -
 21 files changed, 664 insertions(+), 664 deletions(-)

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


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

2013-08-17 Thread Alexander Rødseth
Date: Saturday, August 17, 2013 @ 20:07:15
  Author: arodseth
Revision: 95870

svn revision

Modified:
  freeorion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 16:56:16 UTC (rev 95869)
+++ PKGBUILD2013-08-17 18:07:15 UTC (rev 95870)
@@ -9,7 +9,7 @@
 pkgname=freeorion
 pkgver=0.4.3
 pkgrel=2
-_svnrev=6281
+_svnrev=6344
 _pyversion=2.7
 pkgdesc='Turn-based galactic conquest game inspired by Master of Orion'
 arch=('x86_64' 'i686')



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

2013-08-17 Thread Alexander Rødseth
Date: Saturday, August 17, 2013 @ 20:10:23
  Author: arodseth
Revision: 95871

Removed old files in repos

Deleted:
  freeorion/repos/community-i686/PKGBUILD
  freeorion/repos/community-i686/cmake_python.patch
  freeorion/repos/community-i686/freeorion.install
  freeorion/repos/community-i686/freeorion.sh
  freeorion/repos/community-x86_64/PKGBUILD
  freeorion/repos/community-x86_64/cmake_python.patch
  freeorion/repos/community-x86_64/freeorion.install
  freeorion/repos/community-x86_64/freeorion.sh

-+
 community-i686/PKGBUILD |  116 ---
 community-i686/cmake_python.patch   |   23 -
 community-i686/freeorion.install|   13 ---
 community-i686/freeorion.sh |  143 --
 community-x86_64/PKGBUILD   |  116 ---
 community-x86_64/cmake_python.patch |   23 -
 community-x86_64/freeorion.install  |   13 ---
 community-x86_64/freeorion.sh   |  143 --
 8 files changed, 590 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-17 18:07:15 UTC (rev 95870)
+++ community-i686/PKGBUILD 2013-08-17 18:10:23 UTC (rev 95871)
@@ -1,116 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Elmo Todurov todu...@gmail.com
-# Contributor: guini sidt...@googlemail.com
-# Contributor: Forrest Loomis cyberc...@gmail.com
-# Contributor: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: fana-m gemi...@gmx.net
-
-pkgname=freeorion
-pkgver=0.4.3
-pkgrel=1
-_svnrev=6281
-_pyversion=2.7
-pkgdesc='Turn-based galactic conquest game inspired by Master of Orion'
-arch=('x86_64' 'i686')
-url='http://www.freeorion.org/'
-license=('GPL')
-if [ $CARCH == x86_64 ]
-then
-  depends=('lib32-nvidia-cg-toolkit')
-else
-  depends=('nvidia-cg-toolkit')
-fi
-depends=('bullet' 'freealut' 'libvorbis' 'python2' 'gigi' 'desktop-file-utils' 
'libgl')
-makedepends=('boost' 'ogre=1.8.1' 'sdl' 'gigi0.8.0-18' 'graphviz' 'mesa-libgl'
- 'desktop-file-utils' 'setconf' 'cmake' 'gendesk' 'subversion' 
'libogg')
-options=('!strip' '!emptydirs')
-install=$pkgname.install
-source=($pkgname.sh
-
$pkgname.png::https://a.fsdn.com/con/icons/fr/freeor...@sf.net/FO_Icon_256x256.png;
-cmake_python.patch
-
$pkgname::svn+https://freeorion.svn.sourceforge.net/svnroot/freeorion/trunk/FreeOrion/#revision=$_svnrev;)
-sha256sums=('25b574af5397226373e24510ce59de94c5df5b31d94562fc0de387fd70731707'
-'a6a253eed31b77b00bf4f721f4b1c6bbd95505b9e4b38b736101e551dd12ff5f'
-'3dbe8df9c3a4a0d6451f42727ebf9bcb21fed41a08d1181d1cf77ef4ab5ee81a'
-'SKIP')
-
-pkgver() {
-  svn upgrade
-  svn up -r $_svnrev
-  echo $pkgver
-}
-
-prepare() {
-  #msg2 'Looking up revision from version number...'
-  #_releaserevision=`curl --progress-bar -o- ${url}index.php/Compile | grep 
$pkgver | cut -d':' -f2 | cut -d' ' -f10 | tail -1`
-
-  gendesk -n --pkgname $pkgname --pkgdesc $pkgdesc
-}
-
-build() {
-  cd $srcdir/$pkgname
-
-  msg2 'CMake/Python fix...'
-  patch -N -p1 -i $srcdir/cmake_python.patch
-
-  msg2 'Generating makefiles...'
-  cmake \
--DPYTHON_INCLUDE_DIR:PATH=/usr/include/python$_pyversion \
--DPYTHON_LIBRARY:FILEPATH=/usr/lib/libpython$_pyversion.so \
--G Unix Makefiles
-  
-  msg2 'GLU fix...'
-  if [ $CARCH == x86_64 ]
-  then
-setconf CMakeCache.txt CMAKE_CXX_FLAGS:STRING \
-  '-march=native -mtune=generic -O2 -fno-var-tracking -pipe 
-fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -lGL -lGLU 
-rpath=/usr/lib '
-  fi
-
-  msg2 'Compiling...'
-  make -j1
-
-  msg2 'OGRE fix...'
-  sed -i 's:PluginFolder=.:PluginFolder=/usr/lib/OGRE/:g' \
-$srcdir/$pkgname/ogre_plugins.cfg
-}
-
-package() {
-  cd $srcdir/$pkgname
-
-  msg2 'Packaging documentation...'
-  install -Dm644 loki_setup/README.txt \
-$pkgdir/usr/share/doc/$pkgname/README.txt
-
-  msg2 'Packaging binaries...'
-  install -Dm 755 $srcdir/$pkgname.sh $pkgdir/usr/bin/freeorion
-  install -Dm 755 freeorion $pkgdir/usr/bin/freeorion.elf
-  install -Dm 755 freeorionca $pkgdir/usr/bin/freeorionca
-  install -Dm 755 freeoriond $pkgdir/usr/bin/freeoriond
-
-  msg2 'Packaging data...'
-  mkdir -p $pkgdir/usr/share/$pkgname $pkgdir/usr/lib/$pkgname
-  cp -r default $pkgdir/usr/share/$pkgname
-  install -Dm 644 OISInput.cfg $pkgdir/usr/share/$pkgname/OISInput.cfg
-
-  msg2 'Packaging license...'
-  install -Dm 644 default/COPYING \
-$pkgdir/usr/share/licenses/$pkgname/COPYING
-
-  cd $srcdir
-
-  msg2 'Packaging icon and shortcut...'
-  install -Dm 644 $pkgname.png \
-$pkgdir/usr/share/pixmaps/freeorion.png
-  install -Dm 644 $pkgname.desktop \
-$pkgdir/usr/share/applications/freeorion.desktop
-
-  msg2 'Packaging OGRE plugins configuration...'
-  install -Dm 644 $srcdir/$pkgname/ogre_plugins.cfg \
-   

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

2013-08-17 Thread Eric Bélanger
Date: Saturday, August 17, 2013 @ 21:15:26
  Author: eric
Revision: 193172

Update makedepends

Modified:
  python-pyasn1/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 18:03:31 UTC (rev 193171)
+++ PKGBUILD2013-08-17 19:15:26 UTC (rev 193172)
@@ -9,7 +9,7 @@
 arch=('any')
 url=http://sourceforge.net/projects/pyasn1/;
 license=('BSD')
-makedepends=('python-distribute' 'python2-distribute')
+makedepends=('python-setuptools' 'python2-setuptools')
 replaces=('pyasn1')
 provides=('pyasn1')
 
source=(http://downloads.sourceforge.net/sourceforge/pyasn1/pyasn1-${pkgver}.tar.gz)



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

2013-08-17 Thread Jan Steffens
Date: Saturday, August 17, 2013 @ 21:39:29
  Author: heftig
Revision: 193173

dep

Modified:
  deluge/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 19:15:26 UTC (rev 193172)
+++ PKGBUILD2013-08-17 19:39:29 UTC (rev 193173)
@@ -13,7 +13,7 @@
 license=('GPL3')
 depends=(python2-xdg libtorrent-rasterbar twisted python2-pyopenssl
  xdg-utils python2-chardet desktop-file-utils hicolor-icon-theme
- python2-distribute)
+ python2-setuptools)
 makedepends=(intltool pygtk librsvg python2-mako)
 optdepends=('python2-notify: libnotify notifications'
 'pygtk: needed for gtk ui'



[arch-commits] Commit in perl-try-tiny/trunk (PKGBUILD)

2013-08-17 Thread Eric Bélanger
Date: Saturday, August 17, 2013 @ 21:43:27
  Author: eric
Revision: 193174

upgpkg: perl-try-tiny 0.17-1

Upstream update, Fix license

Modified:
  perl-try-tiny/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 19:39:29 UTC (rev 193173)
+++ PKGBUILD2013-08-17 19:43:27 UTC (rev 193174)
@@ -2,17 +2,17 @@
 # Maintainer: 
 
 pkgname=perl-try-tiny
-pkgver=0.16
+pkgver=0.17
 pkgrel=1
 pkgdesc=Minimal try/catch with proper localization of \$@
 arch=('any')
 url=http://search.cpan.org/dist/Try-Tiny;
-license=('PerlArtistic' 'GPL')
-makedepends=('perl-extutils-makemaker')
+license=('MIT')
+depends=('perl')
 checkdepends=('perl-test-simple')
 options=('!emptydirs')
 
source=(http://search.cpan.org/CPAN/authors/id/D/DO/DOY/Try-Tiny-${pkgver}.tar.gz;)
-md5sums=('027ebee61b191a4b2fe4107cb7b51c7c')
+sha1sums=('45d4704d370545605bd308d3d8ef99b26c04fd57')
 
 build() {
   cd Try-Tiny-${pkgver}
@@ -28,4 +28,5 @@
 package() {
   cd Try-Tiny-${pkgver}
   make DESTDIR=$pkgdir install
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 }



[arch-commits] Commit in perl-try-tiny/repos/extra-any (PKGBUILD PKGBUILD)

2013-08-17 Thread Eric Bélanger
Date: Saturday, August 17, 2013 @ 21:44:30
  Author: eric
Revision: 193175

archrelease: copy trunk to extra-any

Added:
  perl-try-tiny/repos/extra-any/PKGBUILD
(from rev 193174, perl-try-tiny/trunk/PKGBUILD)
Deleted:
  perl-try-tiny/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-17 19:43:27 UTC (rev 193174)
+++ PKGBUILD2013-08-17 19:44:30 UTC (rev 193175)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: 
-
-pkgname=perl-try-tiny
-pkgver=0.16
-pkgrel=1
-pkgdesc=Minimal try/catch with proper localization of \$@
-arch=('any')
-url=http://search.cpan.org/dist/Try-Tiny;
-license=('PerlArtistic' 'GPL')
-makedepends=('perl-extutils-makemaker')
-checkdepends=('perl-test-simple')
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/D/DO/DOY/Try-Tiny-${pkgver}.tar.gz;)
-md5sums=('027ebee61b191a4b2fe4107cb7b51c7c')
-
-build() {
-  cd Try-Tiny-${pkgver}
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd Try-Tiny-${pkgver}
-  make test
-}
-
-package() {
-  cd Try-Tiny-${pkgver}
-  make DESTDIR=$pkgdir install
-}

Copied: perl-try-tiny/repos/extra-any/PKGBUILD (from rev 193174, 
perl-try-tiny/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-17 19:44:30 UTC (rev 193175)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: 
+
+pkgname=perl-try-tiny
+pkgver=0.17
+pkgrel=1
+pkgdesc=Minimal try/catch with proper localization of \$@
+arch=('any')
+url=http://search.cpan.org/dist/Try-Tiny;
+license=('MIT')
+depends=('perl')
+checkdepends=('perl-test-simple')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/D/DO/DOY/Try-Tiny-${pkgver}.tar.gz;)
+sha1sums=('45d4704d370545605bd308d3d8ef99b26c04fd57')
+
+build() {
+  cd Try-Tiny-${pkgver}
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd Try-Tiny-${pkgver}
+  make test
+}
+
+package() {
+  cd Try-Tiny-${pkgver}
+  make DESTDIR=$pkgdir install
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}



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

2013-08-17 Thread Eric Bélanger
Date: Sunday, August 18, 2013 @ 01:18:22
  Author: eric
Revision: 95873

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-17 23:17:29 UTC (rev 95872)
+++ PKGBUILD2013-08-17 23:18:22 UTC (rev 95873)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=youtube-dl
-pkgver=2013.08.15
-pkgrel=1
-pkgdesc=A small command-line program to download videos from YouTube.com and 
a few more sites
-arch=('any')
-url=http://rg3.github.io/youtube-dl/;
-license=('custom')
-depends=('python')
-makedepends=('python-distribute')
-optdepends=('ffmpeg: for video post-processing')
-source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha1sums=('6287738f334aed68c008e8047596c8bedcab8e3a'
-  'SKIP')
-
-prepare() {
-  cd ${pkgname}
-  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
-}
-
-package() {
-  cd ${pkgname}
-  python setup.py install --root=${pkgdir}/ --optimize=1
-  mv 
${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion \
-${pkgdir}/usr/share/bash-completion/completions/youtube-dl
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: youtube-dl/repos/community-any/PKGBUILD (from rev 95872, 
youtube-dl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-17 23:18:22 UTC (rev 95873)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=youtube-dl
+pkgver=2013.08.17
+pkgrel=1
+pkgdesc=A small command-line program to download videos from YouTube.com and 
a few more sites
+arch=('any')
+url=http://rg3.github.io/youtube-dl/;
+license=('custom')
+depends=('python')
+makedepends=('python-distribute')
+optdepends=('ffmpeg: for video post-processing')
+source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha1sums=('040e08bd088d008e7cfc1c85df275eef033a75e4'
+  'SKIP')
+
+prepare() {
+  cd ${pkgname}
+  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
+}
+
+package() {
+  cd ${pkgname}
+  python setup.py install --root=${pkgdir}/ --optimize=1
+  mv 
${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion \
+${pkgdir}/usr/share/bash-completion/completions/youtube-dl
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}



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

2013-08-17 Thread Eric Bélanger
Date: Sunday, August 18, 2013 @ 01:17:29
  Author: eric
Revision: 95872

upgpkg: youtube-dl 2013.08.17-1

Upstream update

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 18:10:23 UTC (rev 95871)
+++ PKGBUILD2013-08-17 23:17:29 UTC (rev 95872)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=youtube-dl
-pkgver=2013.08.15
+pkgver=2013.08.17
 pkgrel=1
 pkgdesc=A small command-line program to download videos from YouTube.com and 
a few more sites
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('python-distribute')
 optdepends=('ffmpeg: for video post-processing')
 
source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha1sums=('6287738f334aed68c008e8047596c8bedcab8e3a'
+sha1sums=('040e08bd088d008e7cfc1c85df275eef033a75e4'
   'SKIP')
 
 prepare() {



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

2013-08-17 Thread Allan McRae
Date: Sunday, August 18, 2013 @ 04:09:58
  Author: allan
Revision: 193176

upgpkg: isl 0.12.1-1

upstream update

Modified:
  isl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 19:44:30 UTC (rev 193175)
+++ PKGBUILD2013-08-18 02:09:58 UTC (rev 193176)
@@ -2,16 +2,16 @@
 # Maintainer: Allan McRae al...@archlinux.org
 
 pkgname=isl
-pkgver=0.12
+pkgver=0.12.1
 pkgrel=1
 pkgdesc=Library for manipulating sets and relations of integer points bounded 
by linear constraints
 arch=('i686' 'x86_64')
-url=http://www.kotnet.org/~skimo/isl/;
+url=http://freecode.com/projects/isl;
 depends=('gmp')
 license=('MIT')
 options=('!libtool')
-source=(http://www.kotnet.org/~skimo/isl/$pkgname-$pkgver.tar.bz2)
-md5sums=('eaa1968dda763f12dc84e45a892cd428')
+source=(ftp://ftp.linux.student.kuleuven.be/pub/people/skimo/isl/$pkgname-$pkgver.tar.bz2)
+md5sums=('27d381085ff1b5733c3e8a9b6ad24a4d')
 
 build() {
   cd $srcdir/$pkgname-$pkgver
@@ -29,7 +29,7 @@
   make -j1 DESTDIR=$pkgdir/ install
 
   install -dm755 $pkgdir/usr/share/gdb/auto-load/usr/lib/
-  mv $pkgdir/{,/usr/share/gdb/auto-load/}usr/lib/libisl.so.10.2.0-gdb.py
+  mv $pkgdir/{,/usr/share/gdb/auto-load/}usr/lib/libisl.so.10.2.1-gdb.py
   
   install -Dm644 LICENSE $pkgdir/usr/share/licenses/isl/LICENSE
 }



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

2013-08-17 Thread Allan McRae
Date: Sunday, August 18, 2013 @ 04:11:10
  Author: allan
Revision: 193177

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

Added:
  isl/repos/testing-i686/
  isl/repos/testing-i686/PKGBUILD
(from rev 193176, isl/trunk/PKGBUILD)
  isl/repos/testing-x86_64/
  isl/repos/testing-x86_64/PKGBUILD
(from rev 193176, isl/trunk/PKGBUILD)

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

Copied: isl/repos/testing-i686/PKGBUILD (from rev 193176, isl/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-08-18 02:11:10 UTC (rev 193177)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+pkgname=isl
+pkgver=0.12.1
+pkgrel=1
+pkgdesc=Library for manipulating sets and relations of integer points bounded 
by linear constraints
+arch=('i686' 'x86_64')
+url=http://freecode.com/projects/isl;
+depends=('gmp')
+license=('MIT')
+options=('!libtool')
+source=(ftp://ftp.linux.student.kuleuven.be/pub/people/skimo/isl/$pkgname-$pkgver.tar.bz2)
+md5sums=('27d381085ff1b5733c3e8a9b6ad24a4d')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make -j1 DESTDIR=$pkgdir/ install
+
+  install -dm755 $pkgdir/usr/share/gdb/auto-load/usr/lib/
+  mv $pkgdir/{,/usr/share/gdb/auto-load/}usr/lib/libisl.so.10.2.1-gdb.py
+  
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/isl/LICENSE
+}

Copied: isl/repos/testing-x86_64/PKGBUILD (from rev 193176, isl/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-08-18 02:11:10 UTC (rev 193177)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+pkgname=isl
+pkgver=0.12.1
+pkgrel=1
+pkgdesc=Library for manipulating sets and relations of integer points bounded 
by linear constraints
+arch=('i686' 'x86_64')
+url=http://freecode.com/projects/isl;
+depends=('gmp')
+license=('MIT')
+options=('!libtool')
+source=(ftp://ftp.linux.student.kuleuven.be/pub/people/skimo/isl/$pkgname-$pkgver.tar.bz2)
+md5sums=('27d381085ff1b5733c3e8a9b6ad24a4d')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make -j1 DESTDIR=$pkgdir/ install
+
+  install -dm755 $pkgdir/usr/share/gdb/auto-load/usr/lib/
+  mv $pkgdir/{,/usr/share/gdb/auto-load/}usr/lib/libisl.so.10.2.1-gdb.py
+  
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/isl/LICENSE
+}



  1   2   >