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

2018-02-04 Thread Ángel Velásquez via arch-commits
Date: Sunday, February 4, 2018 @ 18:57:11
  Author: angvp
Revision: 315863

upgpkg: pylint 1.8.2-2

Add graphviz as an optdepend FS#53362

Modified:
  pylint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-04 18:41:37 UTC (rev 315862)
+++ PKGBUILD2018-02-04 18:57:11 UTC (rev 315863)
@@ -7,7 +7,7 @@
 pkgbase=pylint
 pkgname=('python-pylint' 'python2-pylint')
 pkgver=1.8.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Analyzes Python code looking for bugs and signs of poor quality"
 arch=('any')
 url="http://pylint.org;
@@ -17,7 +17,8 @@
  'python2-mccabe' 'python2-backports.functools_lru_cache' 
'python2-configparser'
  'python2-singledispatch')
 checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'mpdecimal')
-optdepends=('tk: Pylint GUI')
+optdepends=('tk: Pylint GUI'
+'graphviz: To have other output formats than dot or vcg')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/PyCQA/pylint/archive/pylint-$pkgver.tar.gz;)
 
sha512sums=('ac0e7d53b5482435b0579b475684bb725358f21ae3a09d15fdf01bb51dd06f9204c4be3b17de69d4e11d1fed38820f0046625030928ca5699f2828c8f2a44716')
 


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

2018-02-04 Thread Ángel Velásquez via arch-commits
Date: Sunday, February 4, 2018 @ 18:57:38
  Author: angvp
Revision: 315864

archrelease: copy trunk to testing-any

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

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

Copied: pylint/repos/testing-any/PKGBUILD (from rev 315863, 
pylint/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2018-02-04 18:57:38 UTC (rev 315864)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Alexander Fehr 
+
+pkgbase=pylint
+pkgname=('python-pylint' 'python2-pylint')
+pkgver=1.8.2
+pkgrel=2
+pkgdesc="Analyzes Python code looking for bugs and signs of poor quality"
+arch=('any')
+url="http://pylint.org;
+license=('GPL')
+makedepends=('python-astroid' 'python2-astroid' 'python-setuptools' 
'python2-setuptools'
+ 'python-six' 'python2-six' 'python-isort' 'python2-isort' 
'python-mccabe'
+ 'python2-mccabe' 'python2-backports.functools_lru_cache' 
'python2-configparser'
+ 'python2-singledispatch')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'mpdecimal')
+optdepends=('tk: Pylint GUI'
+'graphviz: To have other output formats than dot or vcg')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/PyCQA/pylint/archive/pylint-$pkgver.tar.gz;)
+sha512sums=('ac0e7d53b5482435b0579b475684bb725358f21ae3a09d15fdf01bb51dd06f9204c4be3b17de69d4e11d1fed38820f0046625030928ca5699f2828c8f2a44716')
+
+prepare() {
+  sed -i 's/pytest<3.3/pytest/' pylint-pylint-$pkgver/setup.py
+
+  cp -a pylint-pylint-$pkgver{,-py2}
+
+  cd "$srcdir"/pylint-pylint-$pkgver/pylint
+  sed -e "s|/usr/bin/env python|/usr/bin/env python3|" -e 
"s|/usr/bin/python$|/usr/bin/python3|" -i epylint.py __main__.py 
test/input/noext test/data/ascript
+
+  cd "$srcdir"/pylint-pylint-$pkgver-py2/pylint
+  sed -e "s|/usr/bin/env python|/usr/bin/env python2|" -e 
"s|/usr/bin/python$|/usr/bin/python2|" -i epylint.py __main__.py 
test/input/noext test/data/ascript
+}
+
+build() {
+  cd "$srcdir"/pylint-pylint-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/pylint-pylint-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/pylint-pylint-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/pylint-pylint-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-pylint() {
+  depends=('python-astroid' 'python-setuptools' 'python-mccabe' 'python-isort')
+
+  cd pylint-pylint-$pkgver
+
+  python3 setup.py install --prefix=/usr --root="$pkgdir" --skip-build 
--optimize=1
+
+  install -d "$pkgdir"/usr/share/man/man1
+  install -m644 man/* "$pkgdir"/usr/share/man/man1
+}
+
+package_python2-pylint() {
+  depends=('python2-astroid' 'python2-setuptools' 'python2-mccabe' 
'python2-isort'
+   'python2-backports.functools_lru_cache' 'python2-configparser' 
'python2-singledispatch')
+
+  cd pylint-pylint-$pkgver-py2
+
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --skip-build 
--optimize=1
+
+  install -d "$pkgdir"/usr/share/man/man1
+  install -m644 man/* "$pkgdir"/usr/share/man/man1
+
+  for _exe in epylint pylint pyreverse symilar; do
+ mv "$pkgdir"/usr/bin/${_exe}{,2}
+ mv "$pkgdir"/usr/share/man/man1/${_exe}{,2}.1
+  done
+}


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

2018-02-04 Thread Ángel Velásquez via arch-commits
Date: Sunday, February 4, 2018 @ 18:41:14
  Author: angvp
Revision: 315861

upgpkg: django 1.11.10-1

Version bump to 1.11.10

Modified:
  django/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-04 15:06:31 UTC (rev 315860)
+++ PKGBUILD2018-02-04 18:41:14 UTC (rev 315861)
@@ -1,10 +1,11 @@
 # $Id$
+# Maintainer: Angel Velasquez 
 # Maintainer: Dan McGee 
 # Contributor: Shahar Weiss 
 
 pkgbase=django
 pkgname=('python-django' 'python2-django')
-pkgver=1.11.2
+pkgver=1.11.10
 pkgrel=1
 pkgdesc="A high-level Python Web framework that encourages rapid development 
and clean design"
 arch=('any')
@@ -12,7 +13,8 @@
 url="http://www.djangoproject.com/;
 makedepends=('python2' 'python2-setuptools' 'python' 'python-setuptools')
 
source=("Django-$pkgver.tar.gz::https://www.djangoproject.com/download/$pkgver/tarball/;)
-sha512sums=('0f1187fd03064b966241d6ed1a869d6f155af2598a7b9c8b2f902585265cb6df7236817e5f14907c362ce7420d08e881ff9461f14d673485be3b3e5c3d980e8e')
+sha512sums=('fb0b5ed29590dba87ab3776987cfd3df5d87dc827d8cb0efb0cf65a32c3a40abb4dde74f3d6b9c9366b675f8d3e175f7e647edda64811b1be74210195f29779b')
+sha256sums=('22383567385a9c406d8a5ce080a2694c82c6b733e157922197e8b393bb3aacd9')
 
 prepare() {
   cp -a "$srcdir/Django-$pkgver" "$srcdir/Django-$pkgver-python2"


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

2018-02-04 Thread Ángel Velásquez via arch-commits
Date: Sunday, February 4, 2018 @ 18:41:37
  Author: angvp
Revision: 315862

archrelease: copy trunk to extra-any

Added:
  django/repos/extra-any/PKGBUILD
(from rev 315861, django/trunk/PKGBUILD)
Deleted:
  django/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  140 ++---
 1 file changed, 71 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-04 18:41:14 UTC (rev 315861)
+++ PKGBUILD2018-02-04 18:41:37 UTC (rev 315862)
@@ -1,69 +0,0 @@
-# $Id$
-# Maintainer: Dan McGee 
-# Contributor: Shahar Weiss 
-
-pkgbase=django
-pkgname=('python-django' 'python2-django')
-pkgver=1.11.2
-pkgrel=1
-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=("Django-$pkgver.tar.gz::https://www.djangoproject.com/download/$pkgver/tarball/;)
-sha512sums=('0f1187fd03064b966241d6ed1a869d6f155af2598a7b9c8b2f902585265cb6df7236817e5f14907c362ce7420d08e881ff9461f14d673485be3b3e5c3d980e8e')
-
-prepare() {
-  cp -a "$srcdir/Django-$pkgver" "$srcdir/Django-$pkgver-python2"
-
-  find "$srcdir/Django-$pkgver-python2" -name '*.py' | \
-xargs sed -i "s|#!/usr/bin/env python$|#!/usr/bin/env python2|"
-}
-
-build() {
-  cd "$srcdir/Django-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/Django-$pkgver-python2"
-  python2 setup.py build
-}
-
-package_python-django() {
-  depends=('python' 'python-setuptools' 'python-pytz')
-  optdepends=('python-psycopg2: for PostgreSQL backend')
-  cd "$srcdir/Django-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  ln -s django-admin.py "$pkgdir"/usr/bin/django-admin3.py
-  ln -s django-admin "$pkgdir"/usr/bin/django-admin3
-  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/django-admin
-  ln -s django-admin.py \
-"$pkgdir"/usr/share/bash-completion/completions/manage.py
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-django() {
-  depends=('python2' 'python2-setuptools' 'python2-pytz')
-  optdepends=('mysql-python: for MySQL backend'
-  'python2-psycopg2: for PostgreSQL backend')
-  replaces=('django')
-  conflicts=('django')
-  cd "$srcdir/Django-$pkgver-python2"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-
-  mv "$pkgdir"/usr/bin/django-admin.py "$pkgdir"/usr/bin/django-admin2.py
-  mv "$pkgdir"/usr/bin/django-admin "$pkgdir"/usr/bin/django-admin2
-  # TODO: this probably won't work due to the `complete` command within not
-  # knowing about modified our exectuable names
-  install -Dm644 extras/django_bash_completion \
-"$pkgdir"/usr/share/bash-completion/completions/django-admin2.py
-  ln -s django-admin2.py \
-"$pkgdir"/usr/share/bash-completion/completions/django-admin2
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: django/repos/extra-any/PKGBUILD (from rev 315861, django/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-02-04 18:41:37 UTC (rev 315862)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Angel Velasquez 
+# Maintainer: Dan McGee 
+# Contributor: Shahar Weiss 
+
+pkgbase=django
+pkgname=('python-django' 'python2-django')
+pkgver=1.11.10
+pkgrel=1
+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=("Django-$pkgver.tar.gz::https://www.djangoproject.com/download/$pkgver/tarball/;)
+sha512sums=('fb0b5ed29590dba87ab3776987cfd3df5d87dc827d8cb0efb0cf65a32c3a40abb4dde74f3d6b9c9366b675f8d3e175f7e647edda64811b1be74210195f29779b')
+sha256sums=('22383567385a9c406d8a5ce080a2694c82c6b733e157922197e8b393bb3aacd9')
+
+prepare() {
+  cp -a "$srcdir/Django-$pkgver" "$srcdir/Django-$pkgver-python2"
+
+  find "$srcdir/Django-$pkgver-python2" -name '*.py' | \
+xargs sed -i "s|#!/usr/bin/env python$|#!/usr/bin/env python2|"
+}
+
+build() {
+  cd "$srcdir/Django-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/Django-$pkgver-python2"
+  python2 setup.py build
+}
+
+package_python-django() {
+  depends=('python' 'python-setuptools' 'python-pytz')
+  optdepends=('python-psycopg2: for PostgreSQL backend')
+  cd "$srcdir/Django-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  ln -s django-admin.py "$pkgdir"/usr/bin/django-admin3.py
+  ln -s django-admin 

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

2016-02-01 Thread Ángel Velásquez
Date: Monday, February 1, 2016 @ 23:50:46
  Author: angvp
Revision: 258763

archrelease: copy trunk to testing-any

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

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

Copied: django/repos/testing-any/PKGBUILD (from rev 258762, 
django/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2016-02-01 22:50:46 UTC (rev 258763)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Dan McGee 
+# Contributor: Shahar Weiss 
+
+pkgbase=django
+pkgname=('python-django' 'python2-django')
+pkgver=1.9.2
+pkgrel=1
+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=('ee90280973d435a1a6aa01b453b50cd1')
+sha256sums=('7a233322eeb35da5fd8315f9e5dd48f2171de43ca2cfb11b138607daa4bf8a2f')
+
+prepare() {
+  cp -a "$srcdir/Django-$pkgver" "$srcdir/Django-$pkgver-python2"
+
+  find "$srcdir/Django-$pkgver-python2" -name '*.py' | \
+xargs sed -i "s|#!/usr/bin/env python$|#!/usr/bin/env python2|"
+}
+
+build() {
+  cd "$srcdir/Django-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/Django-$pkgver-python2"
+  python2 setup.py build
+}
+
+package_python-django() {
+  depends=('python' 'python-setuptools')
+  optdepends=('python-psycopg2: for PostgreSQL backend')
+  cd "$srcdir/Django-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  ln -s django-admin.py "$pkgdir"/usr/bin/django-admin3.py
+  ln -s django-admin "$pkgdir"/usr/bin/django-admin3
+  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/django-admin
+  ln -s django-admin.py \
+"$pkgdir"/usr/share/bash-completion/completions/manage.py
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-django() {
+  depends=('python2' 'python2-setuptools')
+  optdepends=('mysql-python: for MySQL backend'
+  'python2-psycopg2: for PostgreSQL backend')
+  replaces=('django')
+  conflicts=('django')
+  cd "$srcdir/Django-$pkgver-python2"
+  python2 setup.py install --root="$pkgdir" --optimize=1
+
+  mv "$pkgdir"/usr/bin/django-admin.py "$pkgdir"/usr/bin/django-admin2.py
+  mv "$pkgdir"/usr/bin/django-admin "$pkgdir"/usr/bin/django-admin2
+  # TODO: this probably won't work due to the `complete` command within not
+  # knowing about modified our exectuable names
+  install -Dm644 extras/django_bash_completion \
+"$pkgdir"/usr/share/bash-completion/completions/django-admin2.py
+  ln -s django-admin2.py \
+"$pkgdir"/usr/share/bash-completion/completions/django-admin2
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2016-02-01 Thread Ángel Velásquez
Date: Tuesday, February 2, 2016 @ 00:01:14
  Author: angvp
Revision: 258764

upgpkg: wicd 1.7.4-1

Version bump to 1.7.4

Modified:
  wicd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-01 22:50:46 UTC (rev 258763)
+++ PKGBUILD2016-02-01 23:01:14 UTC (rev 258764)
@@ -1,10 +1,11 @@
 # $Id$
-# Maintainer: Daniel Isenmann 
+# Maintainer: Angel Velasquez  
+# Contributor: Daniel Isenmann 
 # Contributor: Rashif "Don Ray" Rahman 
 
 pkgbase=wicd
 pkgname=('wicd' 'wicd-gtk')
-pkgver=1.7.3
+pkgver=1.7.4
 pkgrel=1
 arch=(any)
 url="https://launchpad.net/wicd/;
@@ -14,14 +15,14 @@
 source=(http://launchpad.net/wicd/1.7/$pkgver/+download/wicd-$pkgver.tar.gz
 wicd.desktop
 wicd-1.7.3-urwid-1.3.0.patch)
-md5sums=('162ca2e6f4ab903bb7ab2bc0adb7d1aa'
- '326df163a5732d38741371baa4fce9e5'
- 'f7e6085e482f37f2b8529326c21cbbbf')
 makedepends=('python2' 'python2-babel' 'python2-setuptools' 'gettext' 
'dbus-glib' 'dhcpcd' 
  'ethtool' 'inetutils' 'net-tools' 'pygtk' 'python2-dbus' 
'python2-gobject2' 
  'python2-urwid' 'rfkill' 'shared-mime-info' 'wireless_tools' 
'wpa_supplicant'
  'hicolor-icon-theme')
 options=('emptydirs')
+md5sums=('aaa2e9f5320849e0b5d053099a6f0007'
+ '326df163a5732d38741371baa4fce9e5'
+ 'f7e6085e482f37f2b8529326c21cbbbf')
 
 prepare() {
   cd $pkgbase-$pkgver


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

2016-02-01 Thread Ángel Velásquez
Date: Tuesday, February 2, 2016 @ 00:03:09
  Author: angvp
Revision: 258765

archrelease: copy trunk to testing-any

Added:
  wicd/repos/testing-any/
  wicd/repos/testing-any/PKGBUILD
(from rev 258764, wicd/trunk/PKGBUILD)
  wicd/repos/testing-any/dbus_string_fix.patch
(from rev 258764, wicd/trunk/dbus_string_fix.patch)
  wicd/repos/testing-any/wicd-1.7.3-urwid-1.3.0.patch
(from rev 258764, wicd/trunk/wicd-1.7.3-urwid-1.3.0.patch)
  wicd/repos/testing-any/wicd-gtk.install
(from rev 258764, wicd/trunk/wicd-gtk.install)
  wicd/repos/testing-any/wicd.desktop
(from rev 258764, wicd/trunk/wicd.desktop)
  wicd/repos/testing-any/wicd.install
(from rev 258764, wicd/trunk/wicd.install)

--+
 PKGBUILD |  110 +
 dbus_string_fix.patch|   16 +
 wicd-1.7.3-urwid-1.3.0.patch |   15 +
 wicd-gtk.install |   11 
 wicd.desktop |   11 
 wicd.install |   19 +++
 6 files changed, 182 insertions(+)

Copied: wicd/repos/testing-any/PKGBUILD (from rev 258764, wicd/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2016-02-01 23:03:09 UTC (rev 258765)
@@ -0,0 +1,110 @@
+# $Id$
+# Maintainer: Angel Velasquez  
+# Contributor: Daniel Isenmann 
+# Contributor: Rashif "Don Ray" Rahman 
+
+pkgbase=wicd
+pkgname=('wicd' 'wicd-gtk')
+pkgver=1.7.4
+pkgrel=1
+arch=(any)
+url="https://launchpad.net/wicd/;
+license=('GPL2')
+conflicts=('wicd-svn')
+install=wicd.install
+source=(http://launchpad.net/wicd/1.7/$pkgver/+download/wicd-$pkgver.tar.gz
+wicd.desktop
+wicd-1.7.3-urwid-1.3.0.patch)
+makedepends=('python2' 'python2-babel' 'python2-setuptools' 'gettext' 
'dbus-glib' 'dhcpcd' 
+ 'ethtool' 'inetutils' 'net-tools' 'pygtk' 'python2-dbus' 
'python2-gobject2' 
+ 'python2-urwid' 'rfkill' 'shared-mime-info' 'wireless_tools' 
'wpa_supplicant'
+ 'hicolor-icon-theme')
+options=('emptydirs')
+md5sums=('aaa2e9f5320849e0b5d053099a6f0007'
+ '326df163a5732d38741371baa4fce9e5'
+ 'f7e6085e482f37f2b8529326c21cbbbf')
+
+prepare() {
+  cd $pkgbase-$pkgver
+
+  find . -type f -exec sed -i 's@#!/usr.*python@#!/usr/bin/python2@' {} \;
+  sed -i 's/pybabel/pybabel2/g' setup.py 
+  export PYTHON=python2
+  
+  sed -i 's|/usr/sbin/|/usr/bin/|' other/wicd.service
+  patch -Np0 -i "$srcdir/wicd-1.7.3-urwid-1.3.0.patch"
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  python2 setup.py configure \
+  --no-install-init \
+  --resume=/usr/share/wicd/scripts/ \
+  --suspend=/usr/share/wicd/scripts/ \
+  --verbose \
+  --python=/usr/bin/python2 \
+  --lib=/usr/lib \
+  --sbin=/usr/bin \
+  --no-install-gnome-shell-extensions \
+ --systemd=/usr/lib/systemd/system
+  python2 setup.py build
+  python2 setup.py compile_translations
+  
+  #HACK for https://bugs.launchpad.net/wicd/+bug/928589
+  mkdir -p translations/ast/LC_MESSAGES
+  msgfmt po/ast.po -o translations/ast/LC_MESSAGES/wicd.mo
+}
+
+package_wicd() {
+  pkgdesc="Wired and wireless network manager for Linux"
+  depends=('python2' 'python2-dbus' 'dhcpcd' 'wpa_supplicant' 'wireless_tools'
+   'inetutils' 'net-tools' 'ethtool' 'shared-mime-info' 
'python2-urwid' 'python2-gobject2' 'dbus-glib' 'rfkill')
+  optdepends=('wicd-gtk: needed if you want the GTK interface')
+  backup=('etc/wicd/encryption/templates/active')
+  install=wicd.install  
+
+  cd $pkgbase-$pkgver
+  python2 setup.py install --skip-build --optimize=1 --root="$pkgdir"
+
+  cd build/lib/wicd
+  for i in *.py; do
+install -Dm 755 $i "$pkgdir/usr/lib/wicd/$i"
+  done
+  
+  rm -rf "$pkgdir"/usr/share/autostart
+
+  #deleting the GTK stuff
+  rm -rf "$pkgdir"/etc/xdg
+  rm -f "$pkgdir"/usr/bin/{wicd-client,wicd-gtk}
+  rm -rf "$pkgdir"/usr/share/{applications,icons,pixmaps}
+  rm -rf "$pkgdir"/usr/share/wicd/{gtk,icons}  
+}
+
+package_wicd-gtk() {
+  pkgdesc="Wired and wireless network manager for Linux - GTK client"
+  depends=('wicd' 'pygtk' 'hicolor-icon-theme')
+  optdepends=('gksu: needed to access some preferences in gtk interface'
+  'notification-daemon: needed if you want notifications'
+  'python2-notify: needed if you want notifications')
+  install=wicd-gtk.install 
+
+  cd $pkgbase-$pkgver
+  python2 setup.py install --skip-build --optimize=1 --root="$pkgdir"
+
+  install -Dm644 "$srcdir/wicd.desktop" 
"$pkgdir/usr/share/applications/wicd.desktop"
+
+  cd build/lib/wicd
+  for i in *.py; do
+install -Dm 755 $i "$pkgdir"/usr/lib/wicd/$i
+  done
+  
+  #deleting the core dirs which exists in wicd
+  rm -rf "$pkgdir"/etc/{wicd,dbus-1,rc.d,logrotate.d}
+  rm -rf "$pkgdir"/usr/lib
+  rm -rf 

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

2016-02-01 Thread Ángel Velásquez
Date: Monday, February 1, 2016 @ 23:50:02
  Author: angvp
Revision: 258762

upgpkg: django 1.9.2-1

Version bump to 1.9.2 (CVE-2016-2048)

Modified:
  django/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-01 20:35:26 UTC (rev 258761)
+++ PKGBUILD2016-02-01 22:50:02 UTC (rev 258762)
@@ -4,7 +4,7 @@
 
 pkgbase=django
 pkgname=('python-django' 'python2-django')
-pkgver=1.9.1
+pkgver=1.9.2
 pkgrel=1
 pkgdesc="A high-level Python Web framework that encourages rapid development 
and clean design"
 arch=('any')
@@ -12,8 +12,8 @@
 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=('02754aa2d5c9c171dfc3f9422b20e12c')
-sha256sums=('a29aac46a686cade6da87ce7e7287d5d53cddabc41d777c6230a583c36244a18')
+md5sums=('ee90280973d435a1a6aa01b453b50cd1')
+sha256sums=('7a233322eeb35da5fd8315f9e5dd48f2171de43ca2cfb11b138607daa4bf8a2f')
 
 prepare() {
   cp -a "$srcdir/Django-$pkgver" "$srcdir/Django-$pkgver-python2"


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

2015-01-27 Thread Ángel Velásquez
Date: Wednesday, January 28, 2015 @ 05:39:55
  Author: angvp
Revision: 230155

upgpkg: wicd 1.7.3-1

Bump version to 1.7.3

Added:
  wicd/trunk/wicd-1.7.3-urwid-1.3.0.patch
Modified:
  wicd/trunk/PKGBUILD
  wicd/trunk/wicd.install
Deleted:
  wicd/trunk/wicd-1.7.2.4-urwid-1.3.0.patch

+
 PKGBUILD   |   52 +++
 wicd-1.7.2.4-urwid-1.3.0.patch |   17 
 wicd-1.7.3-urwid-1.3.0.patch   |   15 +++
 wicd.install   |2 -
 4 files changed, 37 insertions(+), 49 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-27 21:58:33 UTC (rev 230154)
+++ PKGBUILD2015-01-28 04:39:55 UTC (rev 230155)
@@ -4,25 +4,19 @@
 
 pkgbase=wicd
 pkgname=('wicd' 'wicd-gtk')
-pkgver=1.7.2.4
-pkgrel=10
+pkgver=1.7.3
+pkgrel=1
 arch=(any)
-url=http://wicd.sourceforge.net/;
+url=https://launchpad.net/wicd/;
 license=('GPL2')
 conflicts=('wicd-svn')
 install=wicd.install
 source=(http://launchpad.net/wicd/1.7/$pkgver/+download/wicd-$pkgver.tar.gz
 wicd.desktop
-dbus_string_fix.patch
-   http://bazaar.launchpad.net/~wicd-devel/wicd/experimental/diff/831
-   http://bazaar.launchpad.net/~wicd-devel/wicd/experimental/diff/835
-wicd-1.7.2.4-urwid-1.3.0.patch)
-md5sums=('c2435ddfdef0b9898852d72a85a45f0f'
+wicd-1.7.3-urwid-1.3.0.patch)
+md5sums=('162ca2e6f4ab903bb7ab2bc0adb7d1aa'
  '326df163a5732d38741371baa4fce9e5'
- '744b3c12fe901ed435351e884dc8cb1d'
- '0d2355bc2eb7234a537f42f1773edfe0'
- '1630d7fe8f09911302d33b26286ff9b8'
- '797a1663714da24e446c50698bba25b5')
+ 'f7e6085e482f37f2b8529326c21cbbbf')
 makedepends=('python2' 'python2-babel' 'python2-setuptools' 'gettext' 
'dbus-glib' 'dhcpcd' 
  'ethtool' 'inetutils' 'net-tools' 'pygtk' 'python2-dbus' 
'python2-gobject2' 
  'python2-urwid' 'rfkill' 'shared-mime-info' 'wireless_tools' 
'wpa_supplicant'
@@ -37,26 +31,22 @@
   export PYTHON=python2
   
   sed -i 's|/usr/sbin/|/usr/bin/|' other/wicd.service
-
-  patch -p0  $srcdir/dbus_string_fix.patch
-  
-  # Fix problem with new urwid FS#33378 LP#1075399
-  patch -Np0 -i $srcdir/831
-  patch -Np0 -i $srcdir/835
-  patch -p1  -i $srcdir/wicd-1.7.2.4-urwid-1.3.0.patch
+  patch -Np0 -i $srcdir/wicd-1.7.3-urwid-1.3.0.patch
 }
 
 build() {
   cd $pkgbase-$pkgver
-
-  python2 setup.py configure --no-install-init \
---resume=/usr/share/wicd/scripts/ \
- --suspend=/usr/share/wicd/scripts/ \
- --verbose \
- --python=/usr/bin/python2 \
---lib=/usr/lib \
---sbin=/usr/bin \
---systemd=/usr/lib/systemd/system
+  python2 setup.py configure \
+  --no-install-init \
+  --resume=/usr/share/wicd/scripts/ \
+  --suspend=/usr/share/wicd/scripts/ \
+  --verbose \
+  --python=/usr/bin/python2 \
+  --lib=/usr/lib \
+  --sbin=/usr/bin \
+  --no-install-gnome-shell-extensions \
+ --systemd=/usr/lib/systemd/system
+  python2 setup.py build
   python2 setup.py compile_translations
   
   #HACK for https://bugs.launchpad.net/wicd/+bug/928589
@@ -73,7 +63,7 @@
   install=wicd.install  
 
   cd $pkgbase-$pkgver
-  python2 setup.py install --optimize=1 --root=$pkgdir
+  python2 setup.py install --skip-build --optimize=1 --root=$pkgdir
 
   cd build/lib/wicd
   for i in *.py; do
@@ -86,7 +76,7 @@
   rm -rf $pkgdir/etc/xdg
   rm -f $pkgdir/usr/bin/{wicd-client,wicd-gtk}
   rm -rf $pkgdir/usr/share/{applications,icons,pixmaps}
-  rm -rf $pkgdir/usr/share/wicd/gtk  
+  rm -rf $pkgdir/usr/share/wicd/{gtk,icons}  
 }
 
 package_wicd-gtk() {
@@ -98,7 +88,7 @@
   install=wicd-gtk.install 
 
   cd $pkgbase-$pkgver
-  python2 setup.py install --optimize=1 --root=$pkgdir
+  python2 setup.py install --skip-build --optimize=1 --root=$pkgdir
 
   install -Dm644 $srcdir/wicd.desktop 
$pkgdir/usr/share/applications/wicd.desktop
 

Deleted: wicd-1.7.2.4-urwid-1.3.0.patch
===
--- wicd-1.7.2.4-urwid-1.3.0.patch  2015-01-27 21:58:33 UTC (rev 230154)
+++ wicd-1.7.2.4-urwid-1.3.0.patch  2015-01-28 04:39:55 UTC (rev 230155)
@@ -1,17 +0,0 @@
-diff --git a/curses/wicd-curses.py b/curses/wicd-curses.py
-index 641aa52..603609b 100755
 a/curses/wicd-curses.py
-+++ b/curses/wicd-curses.py
-@@ -927,9 +927,10 @@ class appGUI():
- if not ui._started:
- return False
- 
--input_data = ui.get_input_nonblocking()
-+ui.set_input_timeouts(max_wait=0)
-+input_data = ui.get_input()
- # Resolve any alarms in the waiting
--self.handle_keys(input_data[1])
-+self.handle_keys(input_data)
- 
- # Update the screen
- canvas = 

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

2015-01-27 Thread Ángel Velásquez
Date: Wednesday, January 28, 2015 @ 05:41:09
  Author: angvp
Revision: 230156

archrelease: copy trunk to testing-any

Added:
  wicd/repos/testing-any/
  wicd/repos/testing-any/PKGBUILD
(from rev 230155, wicd/trunk/PKGBUILD)
  wicd/repos/testing-any/dbus_string_fix.patch
(from rev 230155, wicd/trunk/dbus_string_fix.patch)
  wicd/repos/testing-any/wicd-1.7.3-urwid-1.3.0.patch
(from rev 230155, wicd/trunk/wicd-1.7.3-urwid-1.3.0.patch)
  wicd/repos/testing-any/wicd-gtk.install
(from rev 230155, wicd/trunk/wicd-gtk.install)
  wicd/repos/testing-any/wicd.desktop
(from rev 230155, wicd/trunk/wicd.desktop)
  wicd/repos/testing-any/wicd.install
(from rev 230155, wicd/trunk/wicd.install)

--+
 PKGBUILD |  109 +
 dbus_string_fix.patch|   16 ++
 wicd-1.7.3-urwid-1.3.0.patch |   15 +
 wicd-gtk.install |   11 
 wicd.desktop |   11 
 wicd.install |   19 +++
 6 files changed, 181 insertions(+)

Copied: wicd/repos/testing-any/PKGBUILD (from rev 230155, wicd/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2015-01-28 04:41:09 UTC (rev 230156)
@@ -0,0 +1,109 @@
+# $Id$
+# Maintainer: Daniel Isenmann dan...@archlinux.org
+# Contributor: Rashif Don Ray Rahman rayras...@gmail.com
+
+pkgbase=wicd
+pkgname=('wicd' 'wicd-gtk')
+pkgver=1.7.3
+pkgrel=1
+arch=(any)
+url=https://launchpad.net/wicd/;
+license=('GPL2')
+conflicts=('wicd-svn')
+install=wicd.install
+source=(http://launchpad.net/wicd/1.7/$pkgver/+download/wicd-$pkgver.tar.gz
+wicd.desktop
+wicd-1.7.3-urwid-1.3.0.patch)
+md5sums=('162ca2e6f4ab903bb7ab2bc0adb7d1aa'
+ '326df163a5732d38741371baa4fce9e5'
+ 'f7e6085e482f37f2b8529326c21cbbbf')
+makedepends=('python2' 'python2-babel' 'python2-setuptools' 'gettext' 
'dbus-glib' 'dhcpcd' 
+ 'ethtool' 'inetutils' 'net-tools' 'pygtk' 'python2-dbus' 
'python2-gobject2' 
+ 'python2-urwid' 'rfkill' 'shared-mime-info' 'wireless_tools' 
'wpa_supplicant'
+ 'hicolor-icon-theme')
+options=('emptydirs')
+
+prepare() {
+  cd $pkgbase-$pkgver
+
+  find . -type f -exec sed -i 's@#!/usr.*python@#!/usr/bin/python2@' {} \;
+  sed -i 's/pybabel/pybabel2/g' setup.py 
+  export PYTHON=python2
+  
+  sed -i 's|/usr/sbin/|/usr/bin/|' other/wicd.service
+  patch -Np0 -i $srcdir/wicd-1.7.3-urwid-1.3.0.patch
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  python2 setup.py configure \
+  --no-install-init \
+  --resume=/usr/share/wicd/scripts/ \
+  --suspend=/usr/share/wicd/scripts/ \
+  --verbose \
+  --python=/usr/bin/python2 \
+  --lib=/usr/lib \
+  --sbin=/usr/bin \
+  --no-install-gnome-shell-extensions \
+ --systemd=/usr/lib/systemd/system
+  python2 setup.py build
+  python2 setup.py compile_translations
+  
+  #HACK for https://bugs.launchpad.net/wicd/+bug/928589
+  mkdir -p translations/ast/LC_MESSAGES
+  msgfmt po/ast.po -o translations/ast/LC_MESSAGES/wicd.mo
+}
+
+package_wicd() {
+  pkgdesc=Wired and wireless network manager for Linux
+  depends=('python2' 'python2-dbus' 'dhcpcd' 'wpa_supplicant' 'wireless_tools'
+   'inetutils' 'net-tools' 'ethtool' 'shared-mime-info' 
'python2-urwid' 'python2-gobject2' 'dbus-glib' 'rfkill')
+  optdepends=('wicd-gtk: needed if you want the GTK interface')
+  backup=('etc/wicd/encryption/templates/active')
+  install=wicd.install  
+
+  cd $pkgbase-$pkgver
+  python2 setup.py install --skip-build --optimize=1 --root=$pkgdir
+
+  cd build/lib/wicd
+  for i in *.py; do
+install -Dm 755 $i $pkgdir/usr/lib/wicd/$i
+  done
+  
+  rm -rf $pkgdir/usr/share/autostart
+
+  #deleting the GTK stuff
+  rm -rf $pkgdir/etc/xdg
+  rm -f $pkgdir/usr/bin/{wicd-client,wicd-gtk}
+  rm -rf $pkgdir/usr/share/{applications,icons,pixmaps}
+  rm -rf $pkgdir/usr/share/wicd/{gtk,icons}  
+}
+
+package_wicd-gtk() {
+  pkgdesc=Wired and wireless network manager for Linux - GTK client
+  depends=('wicd' 'pygtk' 'hicolor-icon-theme')
+  optdepends=('gksu: needed to access some preferences in gtk interface'
+  'notification-daemon: needed if you want notifications'
+  'python2-notify: needed if you want notifications')
+  install=wicd-gtk.install 
+
+  cd $pkgbase-$pkgver
+  python2 setup.py install --skip-build --optimize=1 --root=$pkgdir
+
+  install -Dm644 $srcdir/wicd.desktop 
$pkgdir/usr/share/applications/wicd.desktop
+
+  cd build/lib/wicd
+  for i in *.py; do
+install -Dm 755 $i $pkgdir/usr/lib/wicd/$i
+  done
+  
+  #deleting the core dirs which exists in wicd
+  rm -rf $pkgdir/etc/{wicd,dbus-1,rc.d,logrotate.d}
+  rm -rf $pkgdir/usr/lib
+  rm -rf 
$pkgdir/usr/share/{man,doc,locale,wicd/curses,wicd/daemon,wicd/backends,wicd/scripts,wicd/cli}
+  rm -rf $pkgdir/var
+  rm -f 

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

2014-03-01 Thread Ángel Velásquez
Date: Sunday, March 2, 2014 @ 05:41:11
  Author: angvp
Revision: 106389

upgpkg: python-sqlalchemy 0.9.3-1

Version bump to 0.9.3

Modified:
  python-sqlalchemy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-02 00:33:57 UTC (rev 106388)
+++ PKGBUILD2014-03-02 04:41:11 UTC (rev 106389)
@@ -4,7 +4,7 @@
 
 pkgbase=python-sqlalchemy
 pkgname=('python-sqlalchemy' 'python2-sqlalchemy')
-pkgver=0.9.2
+pkgver=0.9.3
 pkgrel=1
 arch=('i686' 'x86_64') # python2 package contain .so
 url=http://www.sqlalchemy.org/;
@@ -11,7 +11,7 @@
 license=('custom: MIT')
 makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools' 
'python-nose' 'python2-nose')
 
source=(https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz;)
-md5sums=('c36a958e46a8514583be82523785269d')
+md5sums=('a27989b9d4b3f14ea0b1600aa45559c4')
 
 build() {
   cp -a SQLAlchemy-$pkgver SQLAlchemy2-$pkgver



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

2014-03-01 Thread Ángel Velásquez
Date: Sunday, March 2, 2014 @ 05:42:29
  Author: angvp
Revision: 106390

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-03-02 04:41:11 UTC (rev 106389)
+++ community-i686/PKGBUILD 2014-03-02 04:42:29 UTC (rev 106390)
@@ -1,53 +0,0 @@
-# $Id$ 
-# Maintainer: Angel Velasquez an...@archlinux.org 
-# Contributor: Sébastien Luttringer se...@aur.archlinux.org
-
-pkgbase=python-sqlalchemy
-pkgname=('python-sqlalchemy' 'python2-sqlalchemy')
-pkgver=0.9.2
-pkgrel=1
-arch=('i686' 'x86_64') # python2 package contain .so
-url=http://www.sqlalchemy.org/;
-license=('custom: MIT')
-makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools' 
'python-nose' 'python2-nose')
-source=(https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz;)
-md5sums=('c36a958e46a8514583be82523785269d')
-
-build() {
-  cp -a SQLAlchemy-$pkgver SQLAlchemy2-$pkgver
-  cd SQLAlchemy-$pkgver
-  python setup.py build
-  cd ../SQLAlchemy2-$pkgver
-  python2 setup.py build
-}
-
-check() {
-  cd SQLAlchemy-${pkgver}
-  python setup.py check
-  python2 setup.py check
-
-}
-
-package_python-sqlalchemy() {
-  pkgdesc='Python SQL toolkit and Object Relational Mapper'
-  depends=('python')
-  optdepends=('python-psycopg2: connect to PostgreSQL database')
-
-  cd SQLAlchemy-${pkgver}
-  python setup.py install --root=${pkgdir}
-  install -D -m644 LICENSE \
- $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-sqlalchemy() {
-  pkgdesc='Python 2 SQL toolkit and Object Relational Mapper'
-  depends=('python2')
-  optdepends=('python2-psycopg2: connect to PostgreSQL database')
-
-  cd SQLAlchemy2-$pkgver
-  python2 setup.py install --root=$pkgdir
-  install -D -m644 LICENSE \
- $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 ft=sh et:

Copied: python-sqlalchemy/repos/community-i686/PKGBUILD (from rev 106389, 
python-sqlalchemy/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-02 04:42:29 UTC (rev 106390)
@@ -0,0 +1,53 @@
+# $Id$ 
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Contributor: Sébastien Luttringer se...@aur.archlinux.org
+
+pkgbase=python-sqlalchemy
+pkgname=('python-sqlalchemy' 'python2-sqlalchemy')
+pkgver=0.9.3
+pkgrel=1
+arch=('i686' 'x86_64') # python2 package contain .so
+url=http://www.sqlalchemy.org/;
+license=('custom: MIT')
+makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools' 
'python-nose' 'python2-nose')
+source=(https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz;)
+md5sums=('a27989b9d4b3f14ea0b1600aa45559c4')
+
+build() {
+  cp -a SQLAlchemy-$pkgver SQLAlchemy2-$pkgver
+  cd SQLAlchemy-$pkgver
+  python setup.py build
+  cd ../SQLAlchemy2-$pkgver
+  python2 setup.py build
+}
+
+check() {
+  cd SQLAlchemy-${pkgver}
+  python setup.py check
+  python2 setup.py check
+
+}
+
+package_python-sqlalchemy() {
+  pkgdesc='Python SQL toolkit and Object Relational Mapper'
+  depends=('python')
+  optdepends=('python-psycopg2: connect to PostgreSQL database')
+
+  cd SQLAlchemy-${pkgver}
+  python setup.py install --root=${pkgdir}
+  install -D -m644 LICENSE \
+ $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-sqlalchemy() {
+  pkgdesc='Python 2 SQL toolkit and Object Relational Mapper'
+  depends=('python2')
+  optdepends=('python2-psycopg2: connect to PostgreSQL database')
+
+  cd SQLAlchemy2-$pkgver
+  python2 setup.py install --root=$pkgdir
+  install -D -m644 LICENSE \
+ $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 ft=sh et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-03-02 04:41:11 UTC (rev 106389)
+++ community-x86_64/PKGBUILD   2014-03-02 04:42:29 UTC (rev 106390)
@@ -1,53 +0,0 @@
-# $Id$ 
-# Maintainer: Angel Velasquez an...@archlinux.org 
-# Contributor: Sébastien Luttringer se...@aur.archlinux.org
-
-pkgbase=python-sqlalchemy
-pkgname=('python-sqlalchemy' 'python2-sqlalchemy')
-pkgver=0.9.2
-pkgrel=1
-arch=('i686' 'x86_64') # python2 package contain 

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

2014-03-01 Thread Ángel Velásquez
Date: Sunday, March 2, 2014 @ 05:45:59
  Author: angvp
Revision: 106391

upgpkg: python-paramiko 1.12.2-1

Version bump to 1.12.2

Modified:
  python-paramiko/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-02 04:42:29 UTC (rev 106390)
+++ PKGBUILD2014-03-02 04:45:59 UTC (rev 106391)
@@ -5,7 +5,7 @@
 
 pkgbase=python-paramiko
 pkgname=python2-paramiko
-pkgver=1.12.1
+pkgver=1.12.2
 pkgrel=1
 pkgdesc=Python module that implements the SSH2 protocol
 url=https://github.com/paramiko/paramiko/;
@@ -13,7 +13,7 @@
 arch=('any')
 depends=('python2-crypto' 'python2-ecdsa')
 
source=(http://pypi.python.org/packages/source/p/paramiko/paramiko-$pkgver.tar.gz;)
-md5sums=('ae4544dc0a1419b141342af89fcf0dd9')
+md5sums=('1453e37f868b76af84dd1319e08c53f9')
 
 check() {
 cd $srcdir/paramiko-$pkgver



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

2014-03-01 Thread Ángel Velásquez
Date: Sunday, March 2, 2014 @ 05:46:37
  Author: angvp
Revision: 106392

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-03-02 04:45:59 UTC (rev 106391)
+++ PKGBUILD2014-03-02 04:46:37 UTC (rev 106392)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org 
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-# Contributor: Mario Danic mario.da...@gmail.com
-
-pkgbase=python-paramiko
-pkgname=python2-paramiko
-pkgver=1.12.1
-pkgrel=1
-pkgdesc=Python module that implements the SSH2 protocol
-url=https://github.com/paramiko/paramiko/;
-license=('LGPL')
-arch=('any')
-depends=('python2-crypto' 'python2-ecdsa')
-source=(http://pypi.python.org/packages/source/p/paramiko/paramiko-$pkgver.tar.gz;)
-md5sums=('ae4544dc0a1419b141342af89fcf0dd9')
-
-check() {
-cd $srcdir/paramiko-$pkgver
-python2 test.py
-}
-
-package_python2-paramiko() {
-  cd $srcdir/paramiko-$pkgver
-
-  python2 setup.py install --root=$pkgdir --optimize=1
-  install -Dm644 README $pkgdir/usr/share/doc/$pkgname/README
-  install -dm755 $pkgdir/usr/share/doc/$pkgname/demos
-  install -m644 demos/* $pkgdir/usr/share/doc/$pkgname/demos
-  chmod 755 $pkgdir/usr/share/doc/$pkgname/demos/*.py
-
-  find $pkgdir -name '*.py' -print0 |xargs -0 \
-sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/env python2,' \
--e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
-}

Copied: python-paramiko/repos/community-any/PKGBUILD (from rev 106391, 
python-paramiko/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-03-02 04:46:37 UTC (rev 106392)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+# Contributor: Mario Danic mario.da...@gmail.com
+
+pkgbase=python-paramiko
+pkgname=python2-paramiko
+pkgver=1.12.2
+pkgrel=1
+pkgdesc=Python module that implements the SSH2 protocol
+url=https://github.com/paramiko/paramiko/;
+license=('LGPL')
+arch=('any')
+depends=('python2-crypto' 'python2-ecdsa')
+source=(http://pypi.python.org/packages/source/p/paramiko/paramiko-$pkgver.tar.gz;)
+md5sums=('1453e37f868b76af84dd1319e08c53f9')
+
+check() {
+cd $srcdir/paramiko-$pkgver
+python2 test.py
+}
+
+package_python2-paramiko() {
+  cd $srcdir/paramiko-$pkgver
+
+  python2 setup.py install --root=$pkgdir --optimize=1
+  install -Dm644 README $pkgdir/usr/share/doc/$pkgname/README
+  install -dm755 $pkgdir/usr/share/doc/$pkgname/demos
+  install -m644 demos/* $pkgdir/usr/share/doc/$pkgname/demos
+  chmod 755 $pkgdir/usr/share/doc/$pkgname/demos/*.py
+
+  find $pkgdir -name '*.py' -print0 |xargs -0 \
+sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/env python2,' \
+-e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
+}



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

2014-03-01 Thread Ángel Velásquez
Date: Sunday, March 2, 2014 @ 05:50:22
  Author: angvp
Revision: 206580

upgpkg: python-logilab-common 0.61.0-1

Version bump to 0.61.0

Modified:
  python-logilab-common/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-02 01:23:40 UTC (rev 206579)
+++ PKGBUILD2014-03-02 04:50:22 UTC (rev 206580)
@@ -5,7 +5,7 @@
 
 pkgbase=python-logilab-common
 pkgname=('python2-logilab-common' 'python-logilab-common')
-pkgver=0.60.0
+pkgver=0.61.0
 pkgrel=1
 pkgdesc=Useful miscellaneous modules used by Logilab projects
 arch=('any')
@@ -13,7 +13,7 @@
 license=('LGPL')
 makedepends=('python2' 'python')
 source=(http://download.logilab.org/pub/common/logilab-common-${pkgver}.tar.gz)
-sha1sums=('b4bb2171b94dccb429245c8e968ddc3390c66d6b')
+sha1sums=('700c87f45133a8a20e1ac815f197cc1a5a408e27')
 
 build() {
   cd ${srcdir}



[arch-commits] Commit in python-logilab-common/repos/extra-any (PKGBUILD PKGBUILD)

2014-03-01 Thread Ángel Velásquez
Date: Sunday, March 2, 2014 @ 05:51:08
  Author: angvp
Revision: 206581

archrelease: copy trunk to extra-any

Added:
  python-logilab-common/repos/extra-any/PKGBUILD
(from rev 206580, python-logilab-common/trunk/PKGBUILD)
Deleted:
  python-logilab-common/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-03-02 04:50:22 UTC (rev 206580)
+++ PKGBUILD2014-03-02 04:51:08 UTC (rev 206581)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org 
-# Contributor: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Alexander Fehr pizzapunk gmail com
-
-pkgbase=python-logilab-common
-pkgname=('python2-logilab-common' 'python-logilab-common')
-pkgver=0.60.0
-pkgrel=1
-pkgdesc=Useful miscellaneous modules used by Logilab projects
-arch=('any')
-url=http://www.logilab.org/project/logilab-common;
-license=('LGPL')
-makedepends=('python2' 'python')
-source=(http://download.logilab.org/pub/common/logilab-common-${pkgver}.tar.gz)
-sha1sums=('b4bb2171b94dccb429245c8e968ddc3390c66d6b')
-
-build() {
-  cd ${srcdir}
-
-  cp -a logilab-common-${pkgver}{,-py3}
-
-  cd logilab-common-${pkgver}
-  python2 setup.py build
-
-  cd ../logilab-common-${pkgver}-py3
-  python3 setup.py build
-}
-
-package_python2-logilab-common() {
-  depends=('python2')
-  cd ${srcdir}/logilab-common-${pkgver}
-
-  python2 setup.py install --optimize=1 --skip-build --prefix=/usr 
--root=${pkgdir}
-
-  mv ${pkgdir}/usr/bin/pytest{,2}
-
-  # fix permissions ...
-  find ${pkgdir} -type f -exec chmod +r {} \;
-}
-
-package_python-logilab-common() {
-  depends=('python')
-  cd ${srcdir}/logilab-common-${pkgver}-py3
-
-  python3 setup.py install --optimize=1 --skip-build --prefix=/usr 
--root=${pkgdir}
-
-  # fix permissions ...
-  find ${pkgdir} -type f -exec chmod +r {} \;
-}

Copied: python-logilab-common/repos/extra-any/PKGBUILD (from rev 206580, 
python-logilab-common/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-03-02 04:51:08 UTC (rev 206581)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Alexander Fehr pizzapunk gmail com
+
+pkgbase=python-logilab-common
+pkgname=('python2-logilab-common' 'python-logilab-common')
+pkgver=0.61.0
+pkgrel=1
+pkgdesc=Useful miscellaneous modules used by Logilab projects
+arch=('any')
+url=http://www.logilab.org/project/logilab-common;
+license=('LGPL')
+makedepends=('python2' 'python')
+source=(http://download.logilab.org/pub/common/logilab-common-${pkgver}.tar.gz)
+sha1sums=('700c87f45133a8a20e1ac815f197cc1a5a408e27')
+
+build() {
+  cd ${srcdir}
+
+  cp -a logilab-common-${pkgver}{,-py3}
+
+  cd logilab-common-${pkgver}
+  python2 setup.py build
+
+  cd ../logilab-common-${pkgver}-py3
+  python3 setup.py build
+}
+
+package_python2-logilab-common() {
+  depends=('python2')
+  cd ${srcdir}/logilab-common-${pkgver}
+
+  python2 setup.py install --optimize=1 --skip-build --prefix=/usr 
--root=${pkgdir}
+
+  mv ${pkgdir}/usr/bin/pytest{,2}
+
+  # fix permissions ...
+  find ${pkgdir} -type f -exec chmod +r {} \;
+}
+
+package_python-logilab-common() {
+  depends=('python')
+  cd ${srcdir}/logilab-common-${pkgver}-py3
+
+  python3 setup.py install --optimize=1 --skip-build --prefix=/usr 
--root=${pkgdir}
+
+  # fix permissions ...
+  find ${pkgdir} -type f -exec chmod +r {} \;
+}



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

2014-03-01 Thread Ángel Velásquez
Date: Sunday, March 2, 2014 @ 06:01:53
  Author: angvp
Revision: 206582

upgpkg: python-lxml 3.3.1-1

Version bump to 3.3.1

Modified:
  python-lxml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-02 04:51:08 UTC (rev 206581)
+++ PKGBUILD2014-03-02 05:01:53 UTC (rev 206582)
@@ -2,7 +2,7 @@
 # Maintainer: Angel Velasquez an...@archlinux.org 
 pkgbase=python-lxml
 pkgname=('python-lxml' 'python2-lxml' 'python-lxml-docs')
-pkgver=3.3.0
+pkgver=3.3.1
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('BSD' 'custom')
@@ -9,7 +9,7 @@
 url=http://lxml.de/;
 makedepends=('python2' 'python' 'libxslt' 'python-cssselect' 
'python2-cssselect')
 
source=(http://pypi.python.org/packages/source/l/lxml/lxml-${pkgver}.tar.gz{,.asc})
-md5sums=('ca2f02fd762f3614a1930c568847052b'
+md5sums=('09401c787d9b2660b0d76c4c6baec0f3'
  'SKIP')
 
 # Temporary commented due a conflict with devtools and lxml



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

2014-03-01 Thread Ángel Velásquez
Date: Sunday, March 2, 2014 @ 06:03:16
  Author: angvp
Revision: 206583

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

Added:
  python-lxml/repos/extra-i686/PKGBUILD
(from rev 206582, python-lxml/trunk/PKGBUILD)
  python-lxml/repos/extra-x86_64/PKGBUILD
(from rev 206582, python-lxml/trunk/PKGBUILD)
Deleted:
  python-lxml/repos/extra-i686/PKGBUILD
  python-lxml/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-03-02 05:01:53 UTC (rev 206582)
+++ extra-i686/PKGBUILD 2014-03-02 05:03:16 UTC (rev 206583)
@@ -1,69 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org 
-pkgbase=python-lxml
-pkgname=('python-lxml' 'python2-lxml' 'python-lxml-docs')
-pkgver=3.3.0
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('BSD' 'custom')
-url=http://lxml.de/;
-makedepends=('python2' 'python' 'libxslt' 'python-cssselect' 
'python2-cssselect')
-source=(http://pypi.python.org/packages/source/l/lxml/lxml-${pkgver}.tar.gz{,.asc})
-md5sums=('ca2f02fd762f3614a1930c568847052b'
- 'SKIP')
-
-# Temporary commented due a conflict with devtools and lxml
-#check() {
-#  cd lxml-$pkgver
-#  make PYTHON=python2 test
-#  make PYTHON=python test
-#}
-
-package_python2-lxml() {
-  pkgdesc=Python2 binding for the libxml2 and libxslt libraries
-  depends=('python2' 'libxslt')
-  optdepends=('python2-beautifulsoup3: support for parsing not well formed 
HTML'
-  'python-lxml-docs: offline docs')
-
-  cd lxml-$pkgver
-  python2 setup.py install --root=${pkgdir} --optimize=1
- 
-  install -Dm644 LICENSES.txt \
-${pkgdir}/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 doc/licenses/BSD.txt \
-${pkgdir}/usr/share/licenses/$pkgname/BSD.txt
-  install -Dm644 doc/licenses/elementtree.txt \
-${pkgdir}/usr/share/licenses/$pkgname/elementtree.txt
-}
-
-package_python-lxml() {
-  pkgdesc=Python3 binding for the libxml2 and libxslt libraries
-  depends=('python' 'libxslt')
-  optdepends=('python-lxml-docs: offline docs')
-
-  cd lxml-$pkgver
-  python setup.py install --root=${pkgdir} --optimize=1
-  
-  install -Dm644 LICENSES.txt \
-${pkgdir}/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 doc/licenses/BSD.txt \
-${pkgdir}/usr/share/licenses/$pkgname/BSD.txt
-  install -Dm644 doc/licenses/elementtree.txt \
-${pkgdir}/usr/share/licenses/$pkgname/elementtree.txt
-}
-
-package_python-lxml-docs() {
-  pkgdesc=Python binding for the libxml2 and libxslt libraries (docs)
-  options=('docs')
-
-  cd lxml-$pkgver
-  install -d ${pkgdir}/usr/share/doc/${pkgbase}
-  cp -r doc/html ${pkgdir}/usr/share/doc/${pkgbase}
-
-  install -Dm644 LICENSES.txt \
-${pkgdir}/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 doc/licenses/BSD.txt \
-${pkgdir}/usr/share/licenses/$pkgname/BSD.txt
-  install -Dm644 doc/licenses/elementtree.txt \
-${pkgdir}/usr/share/licenses/$pkgname/elementtree.txt
-}

Copied: python-lxml/repos/extra-i686/PKGBUILD (from rev 206582, 
python-lxml/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-03-02 05:03:16 UTC (rev 206583)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+pkgbase=python-lxml
+pkgname=('python-lxml' 'python2-lxml' 'python-lxml-docs')
+pkgver=3.3.1
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('BSD' 'custom')
+url=http://lxml.de/;
+makedepends=('python2' 'python' 'libxslt' 'python-cssselect' 
'python2-cssselect')
+source=(http://pypi.python.org/packages/source/l/lxml/lxml-${pkgver}.tar.gz{,.asc})
+md5sums=('09401c787d9b2660b0d76c4c6baec0f3'
+ 'SKIP')
+
+# Temporary commented due a conflict with devtools and lxml
+#check() {
+#  cd lxml-$pkgver
+#  make PYTHON=python2 test
+#  make PYTHON=python test
+#}
+
+package_python2-lxml() {
+  pkgdesc=Python2 binding for the libxml2 and libxslt libraries
+  depends=('python2' 'libxslt')
+  optdepends=('python2-beautifulsoup3: support for parsing not well formed 
HTML'
+  'python-lxml-docs: offline docs')
+
+  cd lxml-$pkgver
+  python2 setup.py install --root=${pkgdir} --optimize=1
+ 
+  install -Dm644 LICENSES.txt \
+${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 doc/licenses/BSD.txt \
+${pkgdir}/usr/share/licenses/$pkgname/BSD.txt
+  install -Dm644 doc/licenses/elementtree.txt \
+${pkgdir}/usr/share/licenses/$pkgname/elementtree.txt
+}
+
+package_python-lxml() {
+  pkgdesc=Python3 binding for the libxml2 and libxslt libraries
+  depends=('python' 'libxslt')
+  optdepends=('python-lxml-docs: offline docs')
+
+  cd lxml-$pkgver
+  python 

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

2014-02-11 Thread Ángel Velásquez
Date: Tuesday, February 11, 2014 @ 20:50:22
  Author: angvp
Revision: 205852

upgpkg: python 3.3.4-1

Version bump to 3.3.4

Modified:
  python/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-11 19:46:24 UTC (rev 205851)
+++ PKGBUILD2014-02-11 19:50:22 UTC (rev 205852)
@@ -5,7 +5,7 @@
 # Contributor: Jason Chu ja...@archlinux.org
 
 pkgname=python
-pkgver=3.3.3
+pkgver=3.3.4
 pkgrel=1
 _pybasever=3.3
 pkgdesc=Next generation of the python high-level scripting language
@@ -19,7 +19,7 @@
 provides=('python3')
 replaces=('python3')
 source=(http://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz)
-sha1sums=('af4e75a34bd538c79b9871227c2e7f56569ac107')
+sha1sums=('2c9586eeb4b6e45e9ebc28372c0856c709d9a522')
 
 prepare() {
   cd ${srcdir}/Python-${pkgver}



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

2014-02-11 Thread Ángel Velásquez
Date: Tuesday, February 11, 2014 @ 20:51:40
  Author: angvp
Revision: 205854

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

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

-+
 testing-i686/PKGBUILD   |   81 ++
 testing-x86_64/PKGBUILD |   81 ++
 2 files changed, 162 insertions(+)

Copied: python/repos/testing-i686/PKGBUILD (from rev 205852, 
python/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-11 19:51:40 UTC (rev 205854)
@@ -0,0 +1,81 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: Jason Chu ja...@archlinux.org
+
+pkgname=python
+pkgver=3.3.4
+pkgrel=1
+_pybasever=3.3
+pkgdesc=Next generation of the python high-level scripting language
+arch=('i686' 'x86_64')
+license=('custom')
+url=http://www.python.org/;
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
+makedepends=('tk=8.6.0' 'sqlite' 'valgrind' 'bluez-libs')
+optdepends=('tk: for tkinter' 'sqlite')
+options=('!makeflags')
+provides=('python3')
+replaces=('python3')
+source=(http://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz)
+sha1sums=('2c9586eeb4b6e45e9ebc28372c0856c709d9a522')
+
+prepare() {
+  cd ${srcdir}/Python-${pkgver}
+
+  # FS#23997
+  sed -i -e s|^#.* /usr/local/bin/python|#!/usr/bin/python| Lib/cgi.py
+
+  # Ensure that we are using the system copy of various libraries (expat, zlib 
and libffi),
+  # rather than copies shipped in the tarball
+  rm -r Modules/expat
+  rm -r Modules/zlib
+  rm -r Modules/_ctypes/{darwin,libffi}*
+
+}
+
+build() {
+  cd ${srcdir}/Python-${pkgver}
+
+  ./configure --prefix=/usr \
+  --enable-shared \
+  --with-threads \
+  --with-computed-gotos \
+  --enable-ipv6 \
+  --with-valgrind \
+  --with-system-expat \
+  --with-dbmliborder=gdbm:ndbm \
+  --with-system-ffi
+
+  make
+}
+
+check() {
+  cd ${srcdir}/Python-${pkgver}
+  LD_LIBRARY_PATH=${srcdir}/Python-${pkgver}:${LD_LIBRARY_PATH} \
+ ${srcdir}/Python-${pkgver}/python -m test.regrtest -x test_posixpath 
test_logging test_uuid
+}
+
+package() {
+  cd ${srcdir}/Python-${pkgver}
+  make DESTDIR=${pkgdir} install maninstall
+
+  # Why are these not done by default...
+  ln -sf python3   ${pkgdir}/usr/bin/python
+  ln -sf python3-config${pkgdir}/usr/bin/python-config
+  ln -sf idle3 ${pkgdir}/usr/bin/idle
+  ln -sf pydoc3${pkgdir}/usr/bin/pydoc
+  ln -sf python${_pybasever}.1 ${pkgdir}/usr/share/man/man1/python3.1
+  ln -sf python${_pybasever}.1 ${pkgdir}/usr/share/man/man1/python.1
+
+  # Fix FS#22552
+  ln -sf ../../libpython${_pybasever}m.so \
+
${pkgdir}/usr/lib/python${_pybasever}/config-${_pybasever}m/libpython${_pybasever}m.so
+
+  # Clean-up reference to build directory
+  sed -i s|$srcdir/Python-${pkgver}:|| 
$pkgdir/usr/lib/python${_pybasever}/config-${_pybasever}m/Makefile
+
+  # License
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: python/repos/testing-x86_64/PKGBUILD (from rev 205853, 
python/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-11 19:51:40 UTC (rev 205854)
@@ -0,0 +1,81 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: Jason Chu ja...@archlinux.org
+
+pkgname=python
+pkgver=3.3.4
+pkgrel=1
+_pybasever=3.3
+pkgdesc=Next generation of the python high-level scripting language
+arch=('i686' 'x86_64')
+license=('custom')
+url=http://www.python.org/;
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
+makedepends=('tk=8.6.0' 'sqlite' 'valgrind' 'bluez-libs')
+optdepends=('tk: for tkinter' 'sqlite')
+options=('!makeflags')
+provides=('python3')
+replaces=('python3')
+source=(http://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz)
+sha1sums=('2c9586eeb4b6e45e9ebc28372c0856c709d9a522')
+
+prepare() {
+  cd ${srcdir}/Python-${pkgver}
+
+  # FS#23997
+  sed -i -e s|^#.* /usr/local/bin/python|#!/usr/bin/python| Lib/cgi.py
+
+  # Ensure that we are using the system copy of various libraries (expat, zlib 
and libffi),
+  # rather than copies shipped in the tarball
+  rm -r Modules/expat
+  rm -r Modules/zlib
+  rm -r Modules/_ctypes/{darwin,libffi}*

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

2014-02-05 Thread Ángel Velásquez
Date: Wednesday, February 5, 2014 @ 19:51:35
  Author: angvp
Revision: 105348

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-02-05 18:50:24 UTC (rev 105347)
+++ community-i686/PKGBUILD 2014-02-05 18:51:35 UTC (rev 105348)
@@ -1,53 +0,0 @@
-# $Id$ 
-# Maintainer: Angel Velasquez an...@archlinux.org 
-# Contributor: Sébastien Luttringer se...@aur.archlinux.org
-
-pkgbase=python-sqlalchemy
-pkgname=('python-sqlalchemy' 'python2-sqlalchemy')
-pkgver=0.9.1
-pkgrel=1
-arch=('i686' 'x86_64') # python2 package contain .so
-url=http://www.sqlalchemy.org/;
-license=('custom: MIT')
-makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools' 
'python-nose' 'python2-nose')
-source=(https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz;)
-md5sums=('4d59a03e56ee37fc7b53ff1ef5f4310d')
-
-build() {
-  cp -a SQLAlchemy-$pkgver SQLAlchemy2-$pkgver
-  cd SQLAlchemy-$pkgver
-  python setup.py build
-  cd ../SQLAlchemy2-$pkgver
-  python2 setup.py build
-}
-
-check() {
-  cd SQLAlchemy-${pkgver}
-  python setup.py check
-  python2 setup.py check
-
-}
-
-package_python-sqlalchemy() {
-  pkgdesc='Python SQL toolkit and Object Relational Mapper'
-  depends=('python')
-  optdepends=('python-psycopg2: connect to PostgreSQL database')
-
-  cd SQLAlchemy-${pkgver}
-  python setup.py install --root=${pkgdir}
-  install -D -m644 LICENSE \
- $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-sqlalchemy() {
-  pkgdesc='Python 2 SQL toolkit and Object Relational Mapper'
-  depends=('python2')
-  optdepends=('python2-psycopg2: connect to PostgreSQL database')
-
-  cd SQLAlchemy2-$pkgver
-  python2 setup.py install --root=$pkgdir
-  install -D -m644 LICENSE \
- $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 ft=sh et:

Copied: python-sqlalchemy/repos/community-i686/PKGBUILD (from rev 105347, 
python-sqlalchemy/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-02-05 18:51:35 UTC (rev 105348)
@@ -0,0 +1,53 @@
+# $Id$ 
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Contributor: Sébastien Luttringer se...@aur.archlinux.org
+
+pkgbase=python-sqlalchemy
+pkgname=('python-sqlalchemy' 'python2-sqlalchemy')
+pkgver=0.9.2
+pkgrel=1
+arch=('i686' 'x86_64') # python2 package contain .so
+url=http://www.sqlalchemy.org/;
+license=('custom: MIT')
+makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools' 
'python-nose' 'python2-nose')
+source=(https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz;)
+md5sums=('c36a958e46a8514583be82523785269d')
+
+build() {
+  cp -a SQLAlchemy-$pkgver SQLAlchemy2-$pkgver
+  cd SQLAlchemy-$pkgver
+  python setup.py build
+  cd ../SQLAlchemy2-$pkgver
+  python2 setup.py build
+}
+
+check() {
+  cd SQLAlchemy-${pkgver}
+  python setup.py check
+  python2 setup.py check
+
+}
+
+package_python-sqlalchemy() {
+  pkgdesc='Python SQL toolkit and Object Relational Mapper'
+  depends=('python')
+  optdepends=('python-psycopg2: connect to PostgreSQL database')
+
+  cd SQLAlchemy-${pkgver}
+  python setup.py install --root=${pkgdir}
+  install -D -m644 LICENSE \
+ $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-sqlalchemy() {
+  pkgdesc='Python 2 SQL toolkit and Object Relational Mapper'
+  depends=('python2')
+  optdepends=('python2-psycopg2: connect to PostgreSQL database')
+
+  cd SQLAlchemy2-$pkgver
+  python2 setup.py install --root=$pkgdir
+  install -D -m644 LICENSE \
+ $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 ft=sh et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-02-05 18:50:24 UTC (rev 105347)
+++ community-x86_64/PKGBUILD   2014-02-05 18:51:35 UTC (rev 105348)
@@ -1,53 +0,0 @@
-# $Id$ 
-# Maintainer: Angel Velasquez an...@archlinux.org 
-# Contributor: Sébastien Luttringer se...@aur.archlinux.org
-
-pkgbase=python-sqlalchemy
-pkgname=('python-sqlalchemy' 'python2-sqlalchemy')
-pkgver=0.9.1
-pkgrel=1
-arch=('i686' 'x86_64') # python2 package 

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

2014-02-05 Thread Ángel Velásquez
Date: Wednesday, February 5, 2014 @ 19:50:24
  Author: angvp
Revision: 105347

upgpkg: python-sqlalchemy 0.9.2-1

Version bump to 0.9.2

Modified:
  python-sqlalchemy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-05 15:56:22 UTC (rev 105346)
+++ PKGBUILD2014-02-05 18:50:24 UTC (rev 105347)
@@ -4,7 +4,7 @@
 
 pkgbase=python-sqlalchemy
 pkgname=('python-sqlalchemy' 'python2-sqlalchemy')
-pkgver=0.9.1
+pkgver=0.9.2
 pkgrel=1
 arch=('i686' 'x86_64') # python2 package contain .so
 url=http://www.sqlalchemy.org/;
@@ -11,7 +11,7 @@
 license=('custom: MIT')
 makedepends=('python' 'python2' 'python-setuptools' 'python2-setuptools' 
'python-nose' 'python2-nose')
 
source=(https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz;)
-md5sums=('4d59a03e56ee37fc7b53ff1ef5f4310d')
+md5sums=('c36a958e46a8514583be82523785269d')
 
 build() {
   cp -a SQLAlchemy-$pkgver SQLAlchemy2-$pkgver



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

2014-02-02 Thread Ángel Velásquez
Date: Monday, February 3, 2014 @ 06:18:51
  Author: angvp
Revision: 205017

upgpkg: python-lxml 3.3.0-1

Version bump to 3.3.0

Modified:
  python-lxml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-02 21:38:14 UTC (rev 205016)
+++ PKGBUILD2014-02-03 05:18:51 UTC (rev 205017)
@@ -1,9 +1,8 @@
 # $Id$
 # Maintainer: Angel Velasquez an...@archlinux.org 
-
 pkgbase=python-lxml
 pkgname=('python-lxml' 'python2-lxml' 'python-lxml-docs')
-pkgver=3.2.4
+pkgver=3.3.0
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('BSD' 'custom')
@@ -10,7 +9,7 @@
 url=http://lxml.de/;
 makedepends=('python2' 'python' 'libxslt' 'python-cssselect' 
'python2-cssselect')
 
source=(http://pypi.python.org/packages/source/l/lxml/lxml-${pkgver}.tar.gz{,.asc})
-md5sums=('cc363499060f615aca1ec8dcc04df331'
+md5sums=('ca2f02fd762f3614a1930c568847052b'
  'SKIP')
 
 # Temporary commented due a conflict with devtools and lxml



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

2014-02-02 Thread Ángel Velásquez
Date: Monday, February 3, 2014 @ 06:20:02
  Author: angvp
Revision: 205018

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

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

-+
 testing-i686/PKGBUILD   |   69 ++
 testing-x86_64/PKGBUILD |   69 ++
 2 files changed, 138 insertions(+)

Copied: python-lxml/repos/testing-i686/PKGBUILD (from rev 205017, 
python-lxml/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-02-03 05:20:02 UTC (rev 205018)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+pkgbase=python-lxml
+pkgname=('python-lxml' 'python2-lxml' 'python-lxml-docs')
+pkgver=3.3.0
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('BSD' 'custom')
+url=http://lxml.de/;
+makedepends=('python2' 'python' 'libxslt' 'python-cssselect' 
'python2-cssselect')
+source=(http://pypi.python.org/packages/source/l/lxml/lxml-${pkgver}.tar.gz{,.asc})
+md5sums=('ca2f02fd762f3614a1930c568847052b'
+ 'SKIP')
+
+# Temporary commented due a conflict with devtools and lxml
+#check() {
+#  cd lxml-$pkgver
+#  make PYTHON=python2 test
+#  make PYTHON=python test
+#}
+
+package_python2-lxml() {
+  pkgdesc=Python2 binding for the libxml2 and libxslt libraries
+  depends=('python2' 'libxslt')
+  optdepends=('python2-beautifulsoup3: support for parsing not well formed 
HTML'
+  'python-lxml-docs: offline docs')
+
+  cd lxml-$pkgver
+  python2 setup.py install --root=${pkgdir} --optimize=1
+ 
+  install -Dm644 LICENSES.txt \
+${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 doc/licenses/BSD.txt \
+${pkgdir}/usr/share/licenses/$pkgname/BSD.txt
+  install -Dm644 doc/licenses/elementtree.txt \
+${pkgdir}/usr/share/licenses/$pkgname/elementtree.txt
+}
+
+package_python-lxml() {
+  pkgdesc=Python3 binding for the libxml2 and libxslt libraries
+  depends=('python' 'libxslt')
+  optdepends=('python-lxml-docs: offline docs')
+
+  cd lxml-$pkgver
+  python setup.py install --root=${pkgdir} --optimize=1
+  
+  install -Dm644 LICENSES.txt \
+${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 doc/licenses/BSD.txt \
+${pkgdir}/usr/share/licenses/$pkgname/BSD.txt
+  install -Dm644 doc/licenses/elementtree.txt \
+${pkgdir}/usr/share/licenses/$pkgname/elementtree.txt
+}
+
+package_python-lxml-docs() {
+  pkgdesc=Python binding for the libxml2 and libxslt libraries (docs)
+  options=('docs')
+
+  cd lxml-$pkgver
+  install -d ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -r doc/html ${pkgdir}/usr/share/doc/${pkgbase}
+
+  install -Dm644 LICENSES.txt \
+${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 doc/licenses/BSD.txt \
+${pkgdir}/usr/share/licenses/$pkgname/BSD.txt
+  install -Dm644 doc/licenses/elementtree.txt \
+${pkgdir}/usr/share/licenses/$pkgname/elementtree.txt
+}

Copied: python-lxml/repos/testing-x86_64/PKGBUILD (from rev 205017, 
python-lxml/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-02-03 05:20:02 UTC (rev 205018)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+pkgbase=python-lxml
+pkgname=('python-lxml' 'python2-lxml' 'python-lxml-docs')
+pkgver=3.3.0
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('BSD' 'custom')
+url=http://lxml.de/;
+makedepends=('python2' 'python' 'libxslt' 'python-cssselect' 
'python2-cssselect')
+source=(http://pypi.python.org/packages/source/l/lxml/lxml-${pkgver}.tar.gz{,.asc})
+md5sums=('ca2f02fd762f3614a1930c568847052b'
+ 'SKIP')
+
+# Temporary commented due a conflict with devtools and lxml
+#check() {
+#  cd lxml-$pkgver
+#  make PYTHON=python2 test
+#  make PYTHON=python test
+#}
+
+package_python2-lxml() {
+  pkgdesc=Python2 binding for the libxml2 and libxslt libraries
+  depends=('python2' 'libxslt')
+  optdepends=('python2-beautifulsoup3: support for parsing not well formed 
HTML'
+  'python-lxml-docs: offline docs')
+
+  cd lxml-$pkgver
+  python2 setup.py install --root=${pkgdir} --optimize=1
+ 
+  install -Dm644 LICENSES.txt \
+${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 doc/licenses/BSD.txt \
+${pkgdir}/usr/share/licenses/$pkgname/BSD.txt
+  install -Dm644 doc/licenses/elementtree.txt \
+${pkgdir}/usr/share/licenses/$pkgname/elementtree.txt
+}
+
+package_python-lxml() {
+  pkgdesc=Python3 binding for the libxml2 and libxslt libraries
+  depends=('python' 'libxslt')
+  optdepends=('python-lxml-docs: offline 

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

2014-01-20 Thread Ángel Velásquez
Date: Tuesday, January 21, 2014 @ 03:27:18
  Author: angvp
Revision: 104449

upgpkg: python-paramiko 1.12.1-1

Version bump to 1.10.1

Modified:
  python-paramiko/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-21 01:11:29 UTC (rev 104448)
+++ PKGBUILD2014-01-21 02:27:18 UTC (rev 104449)
@@ -5,7 +5,7 @@
 
 pkgbase=python-paramiko
 pkgname=python2-paramiko
-pkgver=1.12.0
+pkgver=1.12.1
 pkgrel=1
 pkgdesc=Python module that implements the SSH2 protocol
 url=https://github.com/paramiko/paramiko/;
@@ -13,7 +13,7 @@
 arch=('any')
 depends=('python2-crypto' 'python2-ecdsa')
 
source=(http://pypi.python.org/packages/source/p/paramiko/paramiko-$pkgver.tar.gz;)
-md5sums=('4187f77b1a5a313c83930e30c321')
+md5sums=('ae4544dc0a1419b141342af89fcf0dd9')
 
 check() {
 cd $srcdir/paramiko-$pkgver



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

2014-01-20 Thread Ángel Velásquez
Date: Tuesday, January 21, 2014 @ 03:28:52
  Author: angvp
Revision: 104450

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-01-21 02:27:18 UTC (rev 104449)
+++ PKGBUILD2014-01-21 02:28:52 UTC (rev 104450)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org 
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-# Contributor: Mario Danic mario.da...@gmail.com
-
-pkgbase=python-paramiko
-pkgname=python2-paramiko
-pkgver=1.12.0
-pkgrel=1
-pkgdesc=Python module that implements the SSH2 protocol
-url=https://github.com/paramiko/paramiko/;
-license=('LGPL')
-arch=('any')
-depends=('python2-crypto' 'python2-ecdsa')
-source=(http://pypi.python.org/packages/source/p/paramiko/paramiko-$pkgver.tar.gz;)
-md5sums=('4187f77b1a5a313c83930e30c321')
-
-check() {
-cd $srcdir/paramiko-$pkgver
-python2 test.py
-}
-
-package_python2-paramiko() {
-  cd $srcdir/paramiko-$pkgver
-
-  python2 setup.py install --root=$pkgdir --optimize=1
-  install -Dm644 README $pkgdir/usr/share/doc/$pkgname/README
-  install -dm755 $pkgdir/usr/share/doc/$pkgname/demos
-  install -m644 demos/* $pkgdir/usr/share/doc/$pkgname/demos
-  chmod 755 $pkgdir/usr/share/doc/$pkgname/demos/*.py
-
-  find $pkgdir -name '*.py' -print0 |xargs -0 \
-sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/env python2,' \
--e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
-}

Copied: python-paramiko/repos/community-any/PKGBUILD (from rev 104449, 
python-paramiko/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-01-21 02:28:52 UTC (rev 104450)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+# Contributor: Mario Danic mario.da...@gmail.com
+
+pkgbase=python-paramiko
+pkgname=python2-paramiko
+pkgver=1.12.1
+pkgrel=1
+pkgdesc=Python module that implements the SSH2 protocol
+url=https://github.com/paramiko/paramiko/;
+license=('LGPL')
+arch=('any')
+depends=('python2-crypto' 'python2-ecdsa')
+source=(http://pypi.python.org/packages/source/p/paramiko/paramiko-$pkgver.tar.gz;)
+md5sums=('ae4544dc0a1419b141342af89fcf0dd9')
+
+check() {
+cd $srcdir/paramiko-$pkgver
+python2 test.py
+}
+
+package_python2-paramiko() {
+  cd $srcdir/paramiko-$pkgver
+
+  python2 setup.py install --root=$pkgdir --optimize=1
+  install -Dm644 README $pkgdir/usr/share/doc/$pkgname/README
+  install -dm755 $pkgdir/usr/share/doc/$pkgname/demos
+  install -m644 demos/* $pkgdir/usr/share/doc/$pkgname/demos
+  chmod 755 $pkgdir/usr/share/doc/$pkgname/demos/*.py
+
+  find $pkgdir -name '*.py' -print0 |xargs -0 \
+sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/env python2,' \
+-e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
+}



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

2014-01-20 Thread Ángel Velásquez
Date: Tuesday, January 21, 2014 @ 03:35:55
  Author: angvp
Revision: 204489

upgpkg: mysql-python 1.2.5-1

Version bump to 1.2.5

Modified:
  mysql-python/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-21 01:32:24 UTC (rev 204488)
+++ PKGBUILD2014-01-21 02:35:55 UTC (rev 204489)
@@ -3,8 +3,8 @@
 # Contributor: damir da...@archlinux.org
 
 pkgname=mysql-python
-pkgver=1.2.4
-pkgrel=2
+pkgver=1.2.5
+pkgrel=1
 pkgdesc=MySQL support for Python
 arch=(i686 x86_64)
 url=http://mysql-python.sourceforge.net/;
@@ -12,7 +12,7 @@
 depends=('python2' 'libmariadbclient')
 makedepends=('mariadb' 'python2-distribute')
 
source=(http://pypi.python.org/packages/source/M/MySQL-python/MySQL-python-${pkgver}.zip;)
-md5sums=('ddf2386daf10a97af115ffad2ed4a9a0')
+md5sums=('654f75b302db6ed8dc5a898c625e030c')
 
 package() {
   cd ${srcdir}/MySQL-python-${pkgver}



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

2014-01-20 Thread Ángel Velásquez
Date: Tuesday, January 21, 2014 @ 03:37:10
  Author: angvp
Revision: 204490

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

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

-+
 testing-i686/PKGBUILD   |   20 
 testing-x86_64/PKGBUILD |   20 
 2 files changed, 40 insertions(+)

Copied: mysql-python/repos/testing-i686/PKGBUILD (from rev 204489, 
mysql-python/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-01-21 02:37:10 UTC (rev 204490)
@@ -0,0 +1,20 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Contributor: damir da...@archlinux.org
+
+pkgname=mysql-python
+pkgver=1.2.5
+pkgrel=1
+pkgdesc=MySQL support for Python
+arch=(i686 x86_64)
+url=http://mysql-python.sourceforge.net/;
+license=('GPL2')
+depends=('python2' 'libmariadbclient')
+makedepends=('mariadb' 'python2-distribute')
+source=(http://pypi.python.org/packages/source/M/MySQL-python/MySQL-python-${pkgver}.zip;)
+md5sums=('654f75b302db6ed8dc5a898c625e030c')
+
+package() {
+  cd ${srcdir}/MySQL-python-${pkgver}
+  python2 setup.py install --root=${pkgdir} --optimize=1
+}

Copied: mysql-python/repos/testing-x86_64/PKGBUILD (from rev 204489, 
mysql-python/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-01-21 02:37:10 UTC (rev 204490)
@@ -0,0 +1,20 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Contributor: damir da...@archlinux.org
+
+pkgname=mysql-python
+pkgver=1.2.5
+pkgrel=1
+pkgdesc=MySQL support for Python
+arch=(i686 x86_64)
+url=http://mysql-python.sourceforge.net/;
+license=('GPL2')
+depends=('python2' 'libmariadbclient')
+makedepends=('mariadb' 'python2-distribute')
+source=(http://pypi.python.org/packages/source/M/MySQL-python/MySQL-python-${pkgver}.zip;)
+md5sums=('654f75b302db6ed8dc5a898c625e030c')
+
+package() {
+  cd ${srcdir}/MySQL-python-${pkgver}
+  python2 setup.py install --root=${pkgdir} --optimize=1
+}



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

2014-01-18 Thread Ángel Velásquez
Date: Sunday, January 19, 2014 @ 05:34:07
  Author: angvp
Revision: 204397

archrelease: copy trunk to extra-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-01-19 04:33:21 UTC (rev 204396)
+++ PKGBUILD2014-01-19 04:34:07 UTC (rev 204397)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org  
-# Contributor: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Alexander Fehr pizzapunk gmail com
-
-pkgbase=pylint
-pkgname=('python2-pylint' 'python-pylint')
-pkgver=1.1.0
-pkgrel=1
-pkgdesc=Analyzes Python code looking for bugs and signs of poor quality
-arch=('any')
-url=http://pylint.org;
-license=('GPL')
-makedepends=('python2-astroid' 'python-astroid') 
-optdepends=('tk: Pylint GUI')
-source=(http://pypi.python.org/packages/source/p/${pkgbase}/${pkgbase}-${pkgver}.tar.gz)
-sha1sums=('b33594a2c627d72007bfa8c6d7619af699e26085')
-
-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() {
-  depends=('python2-astroid' '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-astroid' '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/extra-any/PKGBUILD (from rev 204396, pylint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-01-19 04:34:07 UTC (rev 204397)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org  
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Alexander Fehr pizzapunk gmail com
+
+pkgbase=pylint
+pkgname=('python2-pylint' 'python-pylint')
+pkgver=1.1.0
+pkgrel=2
+pkgdesc=Analyzes Python code looking for bugs and signs of poor quality
+arch=('any')
+url=http://pylint.org;
+license=('GPL')
+makedepends=('python2-astroid' 'python-astroid' 'python2-setuptools' 
'python-setuptools') 
+optdepends=('tk: Pylint GUI')
+source=(http://pypi.python.org/packages/source/p/${pkgbase}/${pkgbase}-${pkgver}.tar.gz)
+sha1sums=('b33594a2c627d72007bfa8c6d7619af699e26085')
+
+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() {
+  depends=('python2-astroid' '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
+
+  mv man/pylint.1.orig man/pylint2.1.orig
+  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-astroid' '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/trunk (PKGBUILD)

2014-01-18 Thread Ángel Velásquez
Date: Sunday, January 19, 2014 @ 05:33:21
  Author: angvp
Revision: 204396

upgpkg: pylint 1.1.0-2

Fix bug FS#38552

Modified:
  pylint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-19 03:37:40 UTC (rev 204395)
+++ PKGBUILD2014-01-19 04:33:21 UTC (rev 204396)
@@ -6,12 +6,12 @@
 pkgbase=pylint
 pkgname=('python2-pylint' 'python-pylint')
 pkgver=1.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc=Analyzes Python code looking for bugs and signs of poor quality
 arch=('any')
 url=http://pylint.org;
 license=('GPL')
-makedepends=('python2-astroid' 'python-astroid') 
+makedepends=('python2-astroid' 'python-astroid' 'python2-setuptools' 
'python-setuptools') 
 optdepends=('tk: Pylint GUI')
 
source=(http://pypi.python.org/packages/source/p/${pkgbase}/${pkgbase}-${pkgver}.tar.gz)
 sha1sums=('b33594a2c627d72007bfa8c6d7619af699e26085')
@@ -39,6 +39,8 @@
   python2 setup.py install --prefix=/usr --root=${pkgdir} --skip-build 
--optimize=1
 
   install -d ${pkgdir}/usr/share/man/man1
+
+  mv man/pylint.1.orig man/pylint2.1.orig
   install -m644 man/* ${pkgdir}/usr/share/man/man1
 
   for i in epylint pylint pylint-gui pyreverse symilar; do
@@ -45,6 +47,7 @@
  mv ${pkgdir}/usr/bin/${i}{,2}
  mv ${pkgdir}/usr/share/man/man1/${i}{,2}.1
   done
+
 }
 
 package_python-pylint() {



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

2014-01-16 Thread Ángel Velásquez
Date: Friday, January 17, 2014 @ 00:51:15
  Author: angvp
Revision: 204303

upgpkg: pylint 1.1.0-1

Version bump to 1.1.0

Modified:
  pylint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-16 23:41:00 UTC (rev 204302)
+++ PKGBUILD2014-01-16 23:51:15 UTC (rev 204303)
@@ -5,16 +5,16 @@
 
 pkgbase=pylint
 pkgname=('python2-pylint' 'python-pylint')
-pkgver=1.0.0
-pkgrel=3
+pkgver=1.1.0
+pkgrel=1
 pkgdesc=Analyzes Python code looking for bugs and signs of poor quality
 arch=('any')
-url=http://www.logilab.org/project/pylint;
+url=http://pylint.org;
 license=('GPL')
 makedepends=('python2-astroid' 'python-astroid') 
 optdepends=('tk: Pylint GUI')
 
source=(http://pypi.python.org/packages/source/p/${pkgbase}/${pkgbase}-${pkgver}.tar.gz)
-sha1sums=('307636004ff1c8d70982052b74d5e7b126d69167')
+sha1sums=('b33594a2c627d72007bfa8c6d7619af699e26085')
 
 build() {
   cd ${srcdir}



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

2014-01-16 Thread Ángel Velásquez
Date: Friday, January 17, 2014 @ 00:52:14
  Author: angvp
Revision: 204304

archrelease: copy trunk to testing-any

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

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

Copied: pylint/repos/testing-any/PKGBUILD (from rev 204303, 
pylint/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2014-01-16 23:52:14 UTC (rev 204304)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org  
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Alexander Fehr pizzapunk gmail com
+
+pkgbase=pylint
+pkgname=('python2-pylint' 'python-pylint')
+pkgver=1.1.0
+pkgrel=1
+pkgdesc=Analyzes Python code looking for bugs and signs of poor quality
+arch=('any')
+url=http://pylint.org;
+license=('GPL')
+makedepends=('python2-astroid' 'python-astroid') 
+optdepends=('tk: Pylint GUI')
+source=(http://pypi.python.org/packages/source/p/${pkgbase}/${pkgbase}-${pkgver}.tar.gz)
+sha1sums=('b33594a2c627d72007bfa8c6d7619af699e26085')
+
+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() {
+  depends=('python2-astroid' '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-astroid' '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 python-astroid/trunk (PKGBUILD)

2013-12-21 Thread Ángel Velásquez
Date: Sunday, December 22, 2013 @ 07:20:44
  Author: angvp
Revision: 202442

upgpkg: python-astroid 1.0.1-1

Version bump to 1.0.1

Modified:
  python-astroid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-21 23:13:17 UTC (rev 202441)
+++ PKGBUILD2013-12-22 06:20:44 UTC (rev 202442)
@@ -3,8 +3,8 @@
 
 pkgbase=python-astroid
 pkgname=('python2-astroid' 'python-astroid')
-pkgver=1.0.0
-pkgrel=3
+pkgver=1.0.1
+pkgrel=1
 pkgdesc=Useful miscellaneous modules used by Logilab projects
 arch=('any')
 url=http://www.logilab.org/project/logilab-common;
@@ -11,7 +11,7 @@
 license=('LGPL')
 makedepends=('python2' 'python')
 
source=(https://pypi.python.org/packages/source/a/astroid/astroid-${pkgver}.tar.gz)
-sha1sums=('2ebba76d115cb8a2d84d8777d8535ddac86daaa6')
+sha1sums=('4b0080576174cc0a3519a6c6e9025a8ee853956a')
 
 build() {
   cd ${srcdir}



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

2013-12-21 Thread Ángel Velásquez
Date: Sunday, December 22, 2013 @ 07:21:23
  Author: angvp
Revision: 202443

archrelease: copy trunk to testing-any

Added:
  python-astroid/repos/testing-any/
  python-astroid/repos/testing-any/PKGBUILD
(from rev 202442, python-astroid/trunk/PKGBUILD)

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

Copied: python-astroid/repos/testing-any/PKGBUILD (from rev 202442, 
python-astroid/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-12-22 06:21:23 UTC (rev 202443)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+
+pkgbase=python-astroid
+pkgname=('python2-astroid' 'python-astroid')
+pkgver=1.0.1
+pkgrel=1
+pkgdesc=Useful miscellaneous modules used by Logilab projects
+arch=('any')
+url=http://www.logilab.org/project/logilab-common;
+license=('LGPL')
+makedepends=('python2' 'python')
+source=(https://pypi.python.org/packages/source/a/astroid/astroid-${pkgver}.tar.gz)
+sha1sums=('4b0080576174cc0a3519a6c6e9025a8ee853956a')
+
+build() {
+  cd ${srcdir}
+
+  cp -a astroid-${pkgver}{,-py3}
+
+  cd astroid-${pkgver}
+  python2 setup.py build
+
+  cd ../astroid-${pkgver}-py3
+  python3 setup.py build
+}
+
+package_python2-astroid() {
+  depends=('python2' 'python2-logilab-common')
+  replaces=('python2-logilab-astng')
+  conflicts=('python2-logilab-astng')
+  cd ${srcdir}/astroid-${pkgver}
+
+  python2 setup.py install --optimize=1 --skip-build --prefix=/usr 
--root=${pkgdir}
+
+  # fix permissions ...
+  find ${pkgdir} -type f -exec chmod +r {} \;
+}
+
+package_python-astroid() {
+  depends=('python' 'python-logilab-common')
+  replaces=('python-logilab-astng')
+  conflicts=('python-logilab-astng')
+  cd ${srcdir}/astroid-${pkgver}-py3
+
+  python3 setup.py install --optimize=1 --skip-build --prefix=/usr 
--root=${pkgdir}
+
+  # fix permissions ...
+  find ${pkgdir} -type f -exec chmod +r {} \;
+}



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

2013-12-14 Thread Ángel Velásquez
Date: Sunday, December 15, 2013 @ 04:50:22
  Author: angvp
Revision: 201552

upgpkg: python-setuptools 2.0-1

Version bump to 2.0

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-14 23:02:04 UTC (rev 201551)
+++ PKGBUILD2013-12-15 03:50:22 UTC (rev 201552)
@@ -2,7 +2,7 @@
 # Maintainer: Angel Velasquez an...@archlinux.org
 pkgbase=python-setuptools
 pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=1.4.2
+pkgver=2.0
 pkgrel=1
 pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
 arch=('any')
@@ -10,7 +10,7 @@
 url=http://pypi.python.org/pypi/setuptools;
 makedepends=('python' 'python2')
 
source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz)
-md5sums=('13951be6711438073fbe50843e7f141f')
+md5sums=('887cdf417bc5d25326c66bb98c0dd160')
 
 #check() {
 #   # Check python3 module



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

2013-12-14 Thread Ángel Velásquez
Date: Sunday, December 15, 2013 @ 04:51:08
  Author: angvp
Revision: 201553

archrelease: copy trunk to testing-any

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

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

Copied: python-setuptools/repos/testing-any/PKGBUILD (from rev 201552, 
python-setuptools/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-12-15 03:51:08 UTC (rev 201553)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=2.0
+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)
+md5sums=('887cdf417bc5d25326c66bb98c0dd160')
+
+#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 python-setuptools/trunk (PKGBUILD)

2013-12-04 Thread Ángel Velásquez
Date: Thursday, December 5, 2013 @ 01:24:17
  Author: angvp
Revision: 200778

upgpkg: python-setuptools 1.4.2-1

Version bump to 1.4.2

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-04 22:00:35 UTC (rev 200777)
+++ PKGBUILD2013-12-05 00:24:17 UTC (rev 200778)
@@ -2,7 +2,7 @@
 # Maintainer: Angel Velasquez an...@archlinux.org
 pkgbase=python-setuptools
 pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=1.3.2
+pkgver=1.4.2
 pkgrel=1
 pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
 arch=('any')
@@ -10,7 +10,7 @@
 url=http://pypi.python.org/pypi/setuptools;
 makedepends=('python' 'python2')
 
source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz)
-md5sums=('441f2e58c0599d31597622a7b9eb605f')
+md5sums=('13951be6711438073fbe50843e7f141f')
 
 #check() {
 #   # Check python3 module



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

2013-12-04 Thread Ángel Velásquez
Date: Thursday, December 5, 2013 @ 01:24:54
  Author: angvp
Revision: 200779

archrelease: copy trunk to testing-any

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

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

Copied: python-setuptools/repos/testing-any/PKGBUILD (from rev 200778, 
python-setuptools/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-12-05 00:24:54 UTC (rev 200779)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=1.4.2
+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)
+md5sums=('13951be6711438073fbe50843e7f141f')
+
+#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 python-setuptools/trunk (PKGBUILD)

2013-11-29 Thread Ángel Velásquez
Date: Friday, November 29, 2013 @ 16:15:01
  Author: angvp
Revision: 200585

upgpkg: python-setuptools 1.3.2-1

Version bump to 1.3.2

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-29 11:48:59 UTC (rev 200584)
+++ PKGBUILD2013-11-29 15:15:01 UTC (rev 200585)
@@ -2,7 +2,7 @@
 # Maintainer: Angel Velasquez an...@archlinux.org
 pkgbase=python-setuptools
 pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=1.3
+pkgver=1.3.2
 pkgrel=1
 pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
 arch=('any')
@@ -10,7 +10,7 @@
 url=http://pypi.python.org/pypi/setuptools;
 makedepends=('python' 'python2')
 
source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz)
-md5sums=('131956989d1ec7bac1f7be034800f183')
+md5sums=('441f2e58c0599d31597622a7b9eb605f')
 
 #check() {
 #   # Check python3 module



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

2013-11-29 Thread Ángel Velásquez
Date: Friday, November 29, 2013 @ 16:15:43
  Author: angvp
Revision: 200586

archrelease: copy trunk to testing-any

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

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

Copied: python-setuptools/repos/testing-any/PKGBUILD (from rev 200585, 
python-setuptools/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-11-29 15:15:43 UTC (rev 200586)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=1.3.2
+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)
+md5sums=('441f2e58c0599d31597622a7b9eb605f')
+
+#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 python-lxml/trunk (PKGBUILD)

2013-11-29 Thread Ángel Velásquez
Date: Friday, November 29, 2013 @ 16:33:29
  Author: angvp
Revision: 200591

upgpkg: python-lxml 3.2.4-1

Version bump to 3.2.4

Modified:
  python-lxml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-29 15:17:27 UTC (rev 200590)
+++ PKGBUILD2013-11-29 15:33:29 UTC (rev 200591)
@@ -3,7 +3,7 @@
 
 pkgbase=python-lxml
 pkgname=('python-lxml' 'python2-lxml' 'python-lxml-docs')
-pkgver=3.2.3
+pkgver=3.2.4
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('BSD' 'custom')
@@ -10,7 +10,7 @@
 url=http://lxml.de/;
 makedepends=('python2' 'python' 'libxslt' 'python-cssselect' 
'python2-cssselect')
 
source=(http://pypi.python.org/packages/source/l/lxml/lxml-${pkgver}.tar.gz{,.asc})
-md5sums=('fef47bb4ac72ac38ce778518dac42236'
+md5sums=('cc363499060f615aca1ec8dcc04df331'
  'SKIP')
 
 # Temporary commented due a conflict with devtools and lxml



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

2013-11-29 Thread Ángel Velásquez
Date: Friday, November 29, 2013 @ 16:34:49
  Author: angvp
Revision: 200592

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

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

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

Copied: python-lxml/repos/testing-i686/PKGBUILD (from rev 200591, 
python-lxml/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-11-29 15:34:49 UTC (rev 200592)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+
+pkgbase=python-lxml
+pkgname=('python-lxml' 'python2-lxml' 'python-lxml-docs')
+pkgver=3.2.4
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('BSD' 'custom')
+url=http://lxml.de/;
+makedepends=('python2' 'python' 'libxslt' 'python-cssselect' 
'python2-cssselect')
+source=(http://pypi.python.org/packages/source/l/lxml/lxml-${pkgver}.tar.gz{,.asc})
+md5sums=('cc363499060f615aca1ec8dcc04df331'
+ 'SKIP')
+
+# Temporary commented due a conflict with devtools and lxml
+#check() {
+#  cd lxml-$pkgver
+#  make PYTHON=python2 test
+#  make PYTHON=python test
+#}
+
+package_python2-lxml() {
+  pkgdesc=Python2 binding for the libxml2 and libxslt libraries
+  depends=('python2' 'libxslt')
+  optdepends=('python2-beautifulsoup3: support for parsing not well formed 
HTML'
+  'python-lxml-docs: offline docs')
+
+  cd lxml-$pkgver
+  python2 setup.py install --root=${pkgdir} --optimize=1
+ 
+  install -Dm644 LICENSES.txt \
+${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 doc/licenses/BSD.txt \
+${pkgdir}/usr/share/licenses/$pkgname/BSD.txt
+  install -Dm644 doc/licenses/elementtree.txt \
+${pkgdir}/usr/share/licenses/$pkgname/elementtree.txt
+}
+
+package_python-lxml() {
+  pkgdesc=Python3 binding for the libxml2 and libxslt libraries
+  depends=('python' 'libxslt')
+  optdepends=('python-lxml-docs: offline docs')
+
+  cd lxml-$pkgver
+  python setup.py install --root=${pkgdir} --optimize=1
+  
+  install -Dm644 LICENSES.txt \
+${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 doc/licenses/BSD.txt \
+${pkgdir}/usr/share/licenses/$pkgname/BSD.txt
+  install -Dm644 doc/licenses/elementtree.txt \
+${pkgdir}/usr/share/licenses/$pkgname/elementtree.txt
+}
+
+package_python-lxml-docs() {
+  pkgdesc=Python binding for the libxml2 and libxslt libraries (docs)
+  options=('docs')
+
+  cd lxml-$pkgver
+  install -d ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -r doc/html ${pkgdir}/usr/share/doc/${pkgbase}
+
+  install -Dm644 LICENSES.txt \
+${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 doc/licenses/BSD.txt \
+${pkgdir}/usr/share/licenses/$pkgname/BSD.txt
+  install -Dm644 doc/licenses/elementtree.txt \
+${pkgdir}/usr/share/licenses/$pkgname/elementtree.txt
+}

Copied: python-lxml/repos/testing-x86_64/PKGBUILD (from rev 200591, 
python-lxml/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-11-29 15:34:49 UTC (rev 200592)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+
+pkgbase=python-lxml
+pkgname=('python-lxml' 'python2-lxml' 'python-lxml-docs')
+pkgver=3.2.4
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('BSD' 'custom')
+url=http://lxml.de/;
+makedepends=('python2' 'python' 'libxslt' 'python-cssselect' 
'python2-cssselect')
+source=(http://pypi.python.org/packages/source/l/lxml/lxml-${pkgver}.tar.gz{,.asc})
+md5sums=('cc363499060f615aca1ec8dcc04df331'
+ 'SKIP')
+
+# Temporary commented due a conflict with devtools and lxml
+#check() {
+#  cd lxml-$pkgver
+#  make PYTHON=python2 test
+#  make PYTHON=python test
+#}
+
+package_python2-lxml() {
+  pkgdesc=Python2 binding for the libxml2 and libxslt libraries
+  depends=('python2' 'libxslt')
+  optdepends=('python2-beautifulsoup3: support for parsing not well formed 
HTML'
+  'python-lxml-docs: offline docs')
+
+  cd lxml-$pkgver
+  python2 setup.py install --root=${pkgdir} --optimize=1
+ 
+  install -Dm644 LICENSES.txt \
+${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 doc/licenses/BSD.txt \
+${pkgdir}/usr/share/licenses/$pkgname/BSD.txt
+  install -Dm644 doc/licenses/elementtree.txt \
+${pkgdir}/usr/share/licenses/$pkgname/elementtree.txt
+}
+
+package_python-lxml() {
+  pkgdesc=Python3 binding for the libxml2 and libxslt libraries
+  depends=('python' 'libxslt')
+  optdepends=('python-lxml-docs: 

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

2013-11-27 Thread Ángel Velásquez
Date: Wednesday, November 27, 2013 @ 09:02:44
  Author: angvp
Revision: 200365

upgpkg: hunspell-es 1:0.7-1

Version bump to 0.7

Modified:
  hunspell-es/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-27 07:44:20 UTC (rev 200364)
+++ PKGBUILD2013-11-27 08:02:44 UTC (rev 200365)
@@ -1,8 +1,9 @@
 # $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
 # Maintainer: AndyRTR andy...@archlinux.org
 
 pkgname=hunspell-es
-pkgver=0.6
+pkgver=0.7
 pkgrel=1
 epoch=1
 pkgdesc=Spanish hunspell dictionaries
@@ -35,26 +36,6 @@
 'http://forja.rediris.es/frs/download.php/2635/es_SV.oxt'
 'http://forja.rediris.es/frs/download.php/2636/es_UY.oxt'
 'http://forja.rediris.es/frs/download.php/2637/es_VE.oxt')
-md5sums=('9676e94487e4a09a1c7adb8e2357774d'
- '15a2bbadfbdaed50a85cee048e0448e1'
- 'a946fa01accc85bba4ac4c8a65bda990'
- '63156d580f93eb5eabe150a64e891180'
- '2e598c9f6425144c6a74ef075df55536'
- '023f3308e7f2bda68409eadf55cffc1a'
- '8076fddccbfc8119afce7e63797a86f1'
- 'c0b96ecfe25b90eba9dfd455a44e876d'
- 'e40a866e0f4fa43d19c606be2c78a919'
- '28776430bb77547fd70cf6db504bda63'
- '5bba781582ffa42acfdd3c5dd3899add'
- 'cc4a81266f2aa06a3980dfaef3dc'
- 'e237488413344febc567d41c716d1608'
- 'e5396b996777854860e1071953bf1159'
- '3c77326ae63077d08bd167039831506d'
- 'a0fe867554ff50d79a92534e904204f4'
- 'b9e10ee9f910b4e983c088da31635cc4'
- '17987e5ab82801d3b0a583bcc617cc25'
- '8b511d64b06ddec5c8589cdc1f74a39c'
- '2c0312e7100b6a5347f16fa33f1a29ba')
 
 package() {
   cd $srcdir
@@ -77,3 +58,23 @@
   install -dm755 ${pkgdir}/usr/share/doc/$pkgname
   install -m644 README.txt $pkgdir/usr/share/doc/$pkgname
 }
+md5sums=('9676e94487e4a09a1c7adb8e2357774d'
+ '15a2bbadfbdaed50a85cee048e0448e1'
+ 'a946fa01accc85bba4ac4c8a65bda990'
+ '63156d580f93eb5eabe150a64e891180'
+ '2e598c9f6425144c6a74ef075df55536'
+ '023f3308e7f2bda68409eadf55cffc1a'
+ '8076fddccbfc8119afce7e63797a86f1'
+ 'c0b96ecfe25b90eba9dfd455a44e876d'
+ 'e40a866e0f4fa43d19c606be2c78a919'
+ '28776430bb77547fd70cf6db504bda63'
+ '5bba781582ffa42acfdd3c5dd3899add'
+ 'cc4a81266f2aa06a3980dfaef3dc'
+ 'e237488413344febc567d41c716d1608'
+ 'e5396b996777854860e1071953bf1159'
+ '3c77326ae63077d08bd167039831506d'
+ 'a0fe867554ff50d79a92534e904204f4'
+ 'b9e10ee9f910b4e983c088da31635cc4'
+ '17987e5ab82801d3b0a583bcc617cc25'
+ '8b511d64b06ddec5c8589cdc1f74a39c'
+ '2c0312e7100b6a5347f16fa33f1a29ba')



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

2013-11-27 Thread Ángel Velásquez
Date: Wednesday, November 27, 2013 @ 09:03:22
  Author: angvp
Revision: 200366

archrelease: copy trunk to extra-any

Added:
  hunspell-es/repos/extra-any/PKGBUILD
(from rev 200365, hunspell-es/trunk/PKGBUILD)
Deleted:
  hunspell-es/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-11-27 08:02:44 UTC (rev 200365)
+++ PKGBUILD2013-11-27 08:03:22 UTC (rev 200366)
@@ -1,79 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-
-pkgname=hunspell-es
-pkgver=0.6
-pkgrel=1
-epoch=1
-pkgdesc=Spanish hunspell dictionaries
-arch=(any)
-url=https://forja.rediris.es/projects/rla-es/;
-license=('LGPL3')
-makedepends=('hunspell')
-optdepends=('hunspell: the spell checking libraries and apps')
-noextract=(es_ANY.oxt es_AR.oxt es_BO.oxt es_CL.oxt es_CO.oxt 
-   es_CR.oxt es_CU.oxt es_DO.oxt es_EC.oxt es_ES.oxt 
-   es_GT.oxt es_HN.oxt es_MX.oxt es_NI.oxt es_PA.oxt 
-   es_PE.oxt es_PR.oxt es_SV.oxt es_UY.oxt es_VE.oxt)
-source=('http://forja.rediris.es/frs/download.php/2618/es_ANY.oxt'
-'http://forja.rediris.es/frs/download.php/2619/es_AR.oxt'
-'http://forja.rediris.es/frs/download.php/2620/es_BO.oxt'
-'http://forja.rediris.es/frs/download.php/2621/es_CL.oxt'
-'http://forja.rediris.es/frs/download.php/2622/es_CO.oxt'
-'http://forja.rediris.es/frs/download.php/2623/es_CR.oxt'
-'http://forja.rediris.es/frs/download.php/2624/es_CU.oxt'
-'http://forja.rediris.es/frs/download.php/2625/es_DO.oxt'
-'http://forja.rediris.es/frs/download.php/2626/es_EC.oxt'
-'http://forja.rediris.es/frs/download.php/2627/es_ES.oxt'
-'http://forja.rediris.es/frs/download.php/2628/es_GT.oxt'
-'http://forja.rediris.es/frs/download.php/2629/es_HN.oxt'
-'http://forja.rediris.es/frs/download.php/2630/es_MX.oxt'
-'http://forja.rediris.es/frs/download.php/2631/es_NI.oxt'
-'http://forja.rediris.es/frs/download.php/2632/es_PA.oxt'
-'http://forja.rediris.es/frs/download.php/2633/es_PE.oxt'
-'http://forja.rediris.es/frs/download.php/2634/es_PR.oxt'
-'http://forja.rediris.es/frs/download.php/2635/es_SV.oxt'
-'http://forja.rediris.es/frs/download.php/2636/es_UY.oxt'
-'http://forja.rediris.es/frs/download.php/2637/es_VE.oxt')
-md5sums=('9676e94487e4a09a1c7adb8e2357774d'
- '15a2bbadfbdaed50a85cee048e0448e1'
- 'a946fa01accc85bba4ac4c8a65bda990'
- '63156d580f93eb5eabe150a64e891180'
- '2e598c9f6425144c6a74ef075df55536'
- '023f3308e7f2bda68409eadf55cffc1a'
- '8076fddccbfc8119afce7e63797a86f1'
- 'c0b96ecfe25b90eba9dfd455a44e876d'
- 'e40a866e0f4fa43d19c606be2c78a919'
- '28776430bb77547fd70cf6db504bda63'
- '5bba781582ffa42acfdd3c5dd3899add'
- 'cc4a81266f2aa06a3980dfaef3dc'
- 'e237488413344febc567d41c716d1608'
- 'e5396b996777854860e1071953bf1159'
- '3c77326ae63077d08bd167039831506d'
- 'a0fe867554ff50d79a92534e904204f4'
- 'b9e10ee9f910b4e983c088da31635cc4'
- '17987e5ab82801d3b0a583bcc617cc25'
- '8b511d64b06ddec5c8589cdc1f74a39c'
- '2c0312e7100b6a5347f16fa33f1a29ba')
-
-package() {
-  cd $srcdir
-  for file in *.oxt; do
-LANG=en_US.utf8 bsdtar -xf $file
-  done
-
-  install -dm755 ${pkgdir}/usr/share/hunspell
-  install -m644 es_*.dic es_*.aff $pkgdir/usr/share/hunspell
-
-  # the symlinks
-  install -dm755 ${pkgdir}/usr/share/myspell/dicts
-  pushd $pkgdir/usr/share/myspell/dicts
-for file in $pkgdir/usr/share/hunspell/*; do
-  ln -sv /usr/share/hunspell/$(basename $file) .
-done
-  popd
-  
-  # docs
-  install -dm755 ${pkgdir}/usr/share/doc/$pkgname
-  install -m644 README.txt $pkgdir/usr/share/doc/$pkgname
-}

Copied: hunspell-es/repos/extra-any/PKGBUILD (from rev 200365, 
hunspell-es/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-11-27 08:03:22 UTC (rev 200366)
@@ -0,0 +1,80 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Maintainer: AndyRTR andy...@archlinux.org
+
+pkgname=hunspell-es
+pkgver=0.7
+pkgrel=1
+epoch=1
+pkgdesc=Spanish hunspell dictionaries
+arch=(any)
+url=https://forja.rediris.es/projects/rla-es/;
+license=('LGPL3')
+makedepends=('hunspell')
+optdepends=('hunspell: the spell checking libraries and apps')
+noextract=(es_ANY.oxt es_AR.oxt es_BO.oxt es_CL.oxt es_CO.oxt 
+   es_CR.oxt es_CU.oxt es_DO.oxt es_EC.oxt es_ES.oxt 
+   es_GT.oxt es_HN.oxt es_MX.oxt es_NI.oxt es_PA.oxt 
+   es_PE.oxt es_PR.oxt es_SV.oxt es_UY.oxt es_VE.oxt)
+source=('http://forja.rediris.es/frs/download.php/2618/es_ANY.oxt'
+

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

2013-11-27 Thread Ángel Velásquez
Date: Wednesday, November 27, 2013 @ 09:12:48
  Author: angvp
Revision: 200367

upgpkg: hyphen-es 1:0.7-1

Version bump to 0.7

Modified:
  hyphen-es/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-27 08:03:22 UTC (rev 200366)
+++ PKGBUILD2013-11-27 08:12:48 UTC (rev 200367)
@@ -1,8 +1,9 @@
 # $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Contributor: AndyRTR andy...@archlinux.org
 
 pkgname=hyphen-es
-pkgver=0.6
+pkgver=0.7
 pkgrel=1
 epoch=1
 pkgdesc=Spanish hyphenation rules
@@ -11,8 +12,8 @@
 license=('LGPL3')
 optdepends=('hyphen: offers hyphenation library functions')
 noextract=('es_ANY.oxt')
-source=('http://forja.rediris.es/frs/download.php/2618/es_ANY.oxt')
-md5sums=('9676e94487e4a09a1c7adb8e2357774d')
+source=('http://forja.rediris.es/frs/download.php/2933/es_ANY.oxt')
+md5sums=('e3d4b38f280e7376178529db2ece982b')
 
 package() {
   cd $srcdir



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

2013-11-27 Thread Ángel Velásquez
Date: Wednesday, November 27, 2013 @ 09:13:27
  Author: angvp
Revision: 200368

archrelease: copy trunk to extra-any

Added:
  hyphen-es/repos/extra-any/PKGBUILD
(from rev 200367, hyphen-es/trunk/PKGBUILD)
Deleted:
  hyphen-es/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-11-27 08:12:48 UTC (rev 200367)
+++ PKGBUILD2013-11-27 08:13:27 UTC (rev 200368)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-
-pkgname=hyphen-es
-pkgver=0.6
-pkgrel=1
-epoch=1
-pkgdesc=Spanish hyphenation rules
-arch=('any')
-url=https://forja.rediris.es/projects/rla-es/;
-license=('LGPL3')
-optdepends=('hyphen: offers hyphenation library functions')
-noextract=('es_ANY.oxt')
-source=('http://forja.rediris.es/frs/download.php/2618/es_ANY.oxt')
-md5sums=('9676e94487e4a09a1c7adb8e2357774d')
-
-package() {
-  cd $srcdir
-  LANG=en_US.utf8 bsdtar -xf es_ANY.oxt
-  install -Dm644 hyph_es_ANY.dic $pkgdir/usr/share/hyphen/hyph_es_ANY.dic
-
-  pushd $pkgdir/usr/share/hyphen/
-  es_ES_aliases=es_AR es_BO es_CL es_CO es_CR es_CU es_DO es_EC es_ES es_GT 
es_HN es_MX es_NI es_PA es_PE es_PR es_SV es_UY es_VE
-  for lang in $es_ES_aliases; do
-ln -s hyph_es_ANY.dic hyph_$lang.dic
-  done
-  popd
-
-  # the symlinks
-  install -dm755 ${pkgdir}/usr/share/myspell/dicts
-  pushd $pkgdir/usr/share/myspell/dicts
-for file in $pkgdir/usr/share/hyphen/*; do
-  ln -sv /usr/share/hyphen/$(basename $file) .
-done
-  popd
-  
-  # docs
-  install -Dm644 README_hyph_es_ANY.txt 
${pkgdir}/usr/share/doc/$pkgname/README_hyph_es_ANY.txt
-}

Copied: hyphen-es/repos/extra-any/PKGBUILD (from rev 200367, 
hyphen-es/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-11-27 08:13:27 UTC (rev 200368)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Contributor: AndyRTR andy...@archlinux.org
+
+pkgname=hyphen-es
+pkgver=0.7
+pkgrel=1
+epoch=1
+pkgdesc=Spanish hyphenation rules
+arch=('any')
+url=https://forja.rediris.es/projects/rla-es/;
+license=('LGPL3')
+optdepends=('hyphen: offers hyphenation library functions')
+noextract=('es_ANY.oxt')
+source=('http://forja.rediris.es/frs/download.php/2933/es_ANY.oxt')
+md5sums=('e3d4b38f280e7376178529db2ece982b')
+
+package() {
+  cd $srcdir
+  LANG=en_US.utf8 bsdtar -xf es_ANY.oxt
+  install -Dm644 hyph_es_ANY.dic $pkgdir/usr/share/hyphen/hyph_es_ANY.dic
+
+  pushd $pkgdir/usr/share/hyphen/
+  es_ES_aliases=es_AR es_BO es_CL es_CO es_CR es_CU es_DO es_EC es_ES es_GT 
es_HN es_MX es_NI es_PA es_PE es_PR es_SV es_UY es_VE
+  for lang in $es_ES_aliases; do
+ln -s hyph_es_ANY.dic hyph_$lang.dic
+  done
+  popd
+
+  # the symlinks
+  install -dm755 ${pkgdir}/usr/share/myspell/dicts
+  pushd $pkgdir/usr/share/myspell/dicts
+for file in $pkgdir/usr/share/hyphen/*; do
+  ln -sv /usr/share/hyphen/$(basename $file) .
+done
+  popd
+  
+  # docs
+  install -Dm644 README_hyph_es_ANY.txt 
${pkgdir}/usr/share/doc/$pkgname/README_hyph_es_ANY.txt
+}



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

2013-11-27 Thread Ángel Velásquez
Date: Wednesday, November 27, 2013 @ 09:13:41
  Author: angvp
Revision: 200369

upgpkg: mythes-es 1:0.7-2

Update spanish dictionaries

Modified:
  mythes-es/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-27 08:13:27 UTC (rev 200368)
+++ PKGBUILD2013-11-27 08:13:41 UTC (rev 200369)
@@ -4,7 +4,7 @@
 
 pkgname=mythes-es
 pkgver=0.7
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc=Spanish thesaurus
 arch=(any)
@@ -12,8 +12,8 @@
 license=('LGPL3')
 optdepends=('libmythes: offers thesaurus library functions')
 noextract=('es_ANY.oxt')
-source=('http://forja.rediris.es/frs/download.php/2618/es_ANY.oxt')
-md5sums=('9676e94487e4a09a1c7adb8e2357774d')
+source=('http://forja.rediris.es/frs/download.php/2933/es_ANY.oxt')
+md5sums=('e3d4b38f280e7376178529db2ece982b')
 
 package() {
   cd $srcdir



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

2013-11-27 Thread Ángel Velásquez
Date: Wednesday, November 27, 2013 @ 09:14:21
  Author: angvp
Revision: 200370

archrelease: copy trunk to extra-any

Added:
  mythes-es/repos/extra-any/PKGBUILD
(from rev 200369, mythes-es/trunk/PKGBUILD)
Deleted:
  mythes-es/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-11-27 08:13:41 UTC (rev 200369)
+++ PKGBUILD2013-11-27 08:14:21 UTC (rev 200370)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org 
-# Contributor: AndyRTR andy...@archlinux.org
-
-pkgname=mythes-es
-pkgver=0.7
-pkgrel=1
-epoch=1
-pkgdesc=Spanish thesaurus
-arch=(any)
-url=https://forja.rediris.es/projects/rla-es/;
-license=('LGPL3')
-optdepends=('libmythes: offers thesaurus library functions')
-noextract=('es_ANY.oxt')
-source=('http://forja.rediris.es/frs/download.php/2618/es_ANY.oxt')
-md5sums=('9676e94487e4a09a1c7adb8e2357774d')
-
-package() {
-  cd $srcdir
-  LANG=en_US.utf8 bsdtar -xf es_ANY.oxt
-  install -dm755 ${pkgdir}/usr/share/mythes
-  install -m644 th_es_ES_v2.* $pkgdir/usr/share/mythes
-
-  pushd $pkgdir/usr/share/mythes/
-  es_ES_aliases=es_AR es_BO es_CL es_CO es_CR es_CU es_DO es_EC es_GT es_HN 
es_MX es_NI es_PA es_PE es_PR es_SV es_UY es_VE
-  for lang in $es_ES_aliases; do
-ln -s th_es_ES_v2.idx th_$lang_v2.idx
-ln -s th_es_ES_v2.dat th_$lang_v2.dat
-  done
-  popd
-
-  # the symlinks
-  install -dm755 ${pkgdir}/usr/share/myspell/dicts
-  pushd $pkgdir/usr/share/myspell/dicts
-  for file in $pkgdir/usr/share/mythes/*; do
-ln -sv /usr/share/mythes/$(basename $file) .
-  done
-  popd
-  
-  # docs
-  install -Dm644 README_th_es_ES.txt 
${pkgdir}/usr/share/doc/$pkgname/README_th_es_ES.txt
-}

Copied: mythes-es/repos/extra-any/PKGBUILD (from rev 200369, 
mythes-es/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-11-27 08:14:21 UTC (rev 200370)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Contributor: AndyRTR andy...@archlinux.org
+
+pkgname=mythes-es
+pkgver=0.7
+pkgrel=2
+epoch=1
+pkgdesc=Spanish thesaurus
+arch=(any)
+url=https://forja.rediris.es/projects/rla-es/;
+license=('LGPL3')
+optdepends=('libmythes: offers thesaurus library functions')
+noextract=('es_ANY.oxt')
+source=('http://forja.rediris.es/frs/download.php/2933/es_ANY.oxt')
+md5sums=('e3d4b38f280e7376178529db2ece982b')
+
+package() {
+  cd $srcdir
+  LANG=en_US.utf8 bsdtar -xf es_ANY.oxt
+  install -dm755 ${pkgdir}/usr/share/mythes
+  install -m644 th_es_ES_v2.* $pkgdir/usr/share/mythes
+
+  pushd $pkgdir/usr/share/mythes/
+  es_ES_aliases=es_AR es_BO es_CL es_CO es_CR es_CU es_DO es_EC es_GT es_HN 
es_MX es_NI es_PA es_PE es_PR es_SV es_UY es_VE
+  for lang in $es_ES_aliases; do
+ln -s th_es_ES_v2.idx th_$lang_v2.idx
+ln -s th_es_ES_v2.dat th_$lang_v2.dat
+  done
+  popd
+
+  # the symlinks
+  install -dm755 ${pkgdir}/usr/share/myspell/dicts
+  pushd $pkgdir/usr/share/myspell/dicts
+  for file in $pkgdir/usr/share/mythes/*; do
+ln -sv /usr/share/mythes/$(basename $file) .
+  done
+  popd
+  
+  # docs
+  install -Dm644 README_th_es_ES.txt 
${pkgdir}/usr/share/doc/$pkgname/README_th_es_ES.txt
+}



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

2013-11-27 Thread Ángel Velásquez
Date: Wednesday, November 27, 2013 @ 09:27:14
  Author: angvp
Revision: 200371

upgpkg: hunspell-es 1:0.7-2

Update spanish dictionaries

Modified:
  hunspell-es/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-27 08:14:21 UTC (rev 200370)
+++ PKGBUILD2013-11-27 08:27:14 UTC (rev 200371)
@@ -4,7 +4,7 @@
 
 pkgname=hunspell-es
 pkgver=0.7
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc=Spanish hunspell dictionaries
 arch=(any)
@@ -15,27 +15,49 @@
 noextract=(es_ANY.oxt es_AR.oxt es_BO.oxt es_CL.oxt es_CO.oxt 
es_CR.oxt es_CU.oxt es_DO.oxt es_EC.oxt es_ES.oxt 
es_GT.oxt es_HN.oxt es_MX.oxt es_NI.oxt es_PA.oxt 
-   es_PE.oxt es_PR.oxt es_SV.oxt es_UY.oxt es_VE.oxt)
-source=('http://forja.rediris.es/frs/download.php/2618/es_ANY.oxt'
-'http://forja.rediris.es/frs/download.php/2619/es_AR.oxt'
-'http://forja.rediris.es/frs/download.php/2620/es_BO.oxt'
-'http://forja.rediris.es/frs/download.php/2621/es_CL.oxt'
-'http://forja.rediris.es/frs/download.php/2622/es_CO.oxt'
-'http://forja.rediris.es/frs/download.php/2623/es_CR.oxt'
-'http://forja.rediris.es/frs/download.php/2624/es_CU.oxt'
-'http://forja.rediris.es/frs/download.php/2625/es_DO.oxt'
-'http://forja.rediris.es/frs/download.php/2626/es_EC.oxt'
-'http://forja.rediris.es/frs/download.php/2627/es_ES.oxt'
-'http://forja.rediris.es/frs/download.php/2628/es_GT.oxt'
-'http://forja.rediris.es/frs/download.php/2629/es_HN.oxt'
-'http://forja.rediris.es/frs/download.php/2630/es_MX.oxt'
-'http://forja.rediris.es/frs/download.php/2631/es_NI.oxt'
-'http://forja.rediris.es/frs/download.php/2632/es_PA.oxt'
-'http://forja.rediris.es/frs/download.php/2633/es_PE.oxt'
-'http://forja.rediris.es/frs/download.php/2634/es_PR.oxt'
-'http://forja.rediris.es/frs/download.php/2635/es_SV.oxt'
-'http://forja.rediris.es/frs/download.php/2636/es_UY.oxt'
-'http://forja.rediris.es/frs/download.php/2637/es_VE.oxt')
+   es_PE.oxt es_PR.oxt es_PY.oxt es_SV.oxt es_UY.oxt es_VE.oxt)
+source=('http://forja.rediris.es/frs/download.php/2933/es_ANY.oxt'
+'http://forja.rediris.es/frs/download.php/2953/es_AR.oxt'
+'http://forja.rediris.es/frs/download.php/2952/es_BO.oxt'
+'http://forja.rediris.es/frs/download.php/2951/es_CL.oxt'
+'http://forja.rediris.es/frs/download.php/2950/es_CO.oxt'
+'http://forja.rediris.es/frs/download.php/2949/es_CR.oxt'
+'http://forja.rediris.es/frs/download.php/2948/es_CU.oxt'
+'http://forja.rediris.es/frs/download.php/2947/es_DO.oxt'
+'http://forja.rediris.es/frs/download.php/2946/es_EC.oxt'
+'http://forja.rediris.es/frs/download.php/2945/es_ES.oxt'
+'http://forja.rediris.es/frs/download.php/2944/es_GT.oxt'
+'http://forja.rediris.es/frs/download.php/2943/es_HN.oxt'
+'http://forja.rediris.es/frs/download.php/2942/es_MX.oxt'
+'http://forja.rediris.es/frs/download.php/2941/es_NI.oxt'
+'http://forja.rediris.es/frs/download.php/2940/es_PA.oxt'
+'http://forja.rediris.es/frs/download.php/2939/es_PE.oxt'
+'http://forja.rediris.es/frs/download.php/2938/es_PR.oxt'
+'http://forja.rediris.es/frs/download.php/2937/es_PY.oxt'
+'http://forja.rediris.es/frs/download.php/2936/es_SV.oxt'
+'http://forja.rediris.es/frs/download.php/2935/es_UY.oxt'
+'http://forja.rediris.es/frs/download.php/2934/es_VE.oxt')
+md5sums=('e3d4b38f280e7376178529db2ece982b'
+ '68ee8f4ebc89a1fa461045d4dbb9b7be'
+ '1ebf11b6094e0bfece8e95cc34e7a409'
+ '092a388101350b77af4fd789668582bd'
+ 'fc440fd9fc55ca2dfb9bfa34a1e63864'
+ '7510fd0f4eb3c6e65523a8d0960f77dd'
+ '0ab4b9638f58ddd3d95d1265918ff39e'
+ '24a20fd4d887693afef539e6f1a3b58e'
+ '5d7343a246323ceda58cfbbf1428e279'
+ '59dd45e6785ed644adbbd73f4f126182'
+ 'b1a9be80687e3117c67ac46aad6b8d66'
+ 'd0db5bebd6925738b524de9709950f22'
+ '0de780714f84955112f38f35fb63a894'
+ 'd259d7be17c34df76c7de40c80720a39'
+ '085fbdbed6a2e248630c801881563b7a'
+ 'f4673063246888995d4eaa2d4a24ee3d'
+ 'e67bcf891ba9eeaeb57a60ec8e57f1ac'
+ 'ba98e3197c81db4c572def2c5cca942d'
+ 'c68ca9d188cb23c88cdd34a069c5a013'
+ 'aeb9d39e4d17e9c904c1f3567178aad6'
+ '8afa9619aede2d9708e799e0f5d0fcab')
 
 package() {
   cd $srcdir
@@ -58,23 +80,4 @@
   install -dm755 ${pkgdir}/usr/share/doc/$pkgname
   install -m644 README.txt $pkgdir/usr/share/doc/$pkgname
 }
-md5sums=('9676e94487e4a09a1c7adb8e2357774d'
- '15a2bbadfbdaed50a85cee048e0448e1'
- 'a946fa01accc85bba4ac4c8a65bda990'
- 

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

2013-11-27 Thread Ángel Velásquez
Date: Wednesday, November 27, 2013 @ 09:27:58
  Author: angvp
Revision: 200372

archrelease: copy trunk to extra-any

Added:
  hunspell-es/repos/extra-any/PKGBUILD
(from rev 200371, hunspell-es/trunk/PKGBUILD)
Deleted:
  hunspell-es/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-11-27 08:27:14 UTC (rev 200371)
+++ PKGBUILD2013-11-27 08:27:58 UTC (rev 200372)
@@ -1,80 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org 
-# Maintainer: AndyRTR andy...@archlinux.org
-
-pkgname=hunspell-es
-pkgver=0.7
-pkgrel=1
-epoch=1
-pkgdesc=Spanish hunspell dictionaries
-arch=(any)
-url=https://forja.rediris.es/projects/rla-es/;
-license=('LGPL3')
-makedepends=('hunspell')
-optdepends=('hunspell: the spell checking libraries and apps')
-noextract=(es_ANY.oxt es_AR.oxt es_BO.oxt es_CL.oxt es_CO.oxt 
-   es_CR.oxt es_CU.oxt es_DO.oxt es_EC.oxt es_ES.oxt 
-   es_GT.oxt es_HN.oxt es_MX.oxt es_NI.oxt es_PA.oxt 
-   es_PE.oxt es_PR.oxt es_SV.oxt es_UY.oxt es_VE.oxt)
-source=('http://forja.rediris.es/frs/download.php/2618/es_ANY.oxt'
-'http://forja.rediris.es/frs/download.php/2619/es_AR.oxt'
-'http://forja.rediris.es/frs/download.php/2620/es_BO.oxt'
-'http://forja.rediris.es/frs/download.php/2621/es_CL.oxt'
-'http://forja.rediris.es/frs/download.php/2622/es_CO.oxt'
-'http://forja.rediris.es/frs/download.php/2623/es_CR.oxt'
-'http://forja.rediris.es/frs/download.php/2624/es_CU.oxt'
-'http://forja.rediris.es/frs/download.php/2625/es_DO.oxt'
-'http://forja.rediris.es/frs/download.php/2626/es_EC.oxt'
-'http://forja.rediris.es/frs/download.php/2627/es_ES.oxt'
-'http://forja.rediris.es/frs/download.php/2628/es_GT.oxt'
-'http://forja.rediris.es/frs/download.php/2629/es_HN.oxt'
-'http://forja.rediris.es/frs/download.php/2630/es_MX.oxt'
-'http://forja.rediris.es/frs/download.php/2631/es_NI.oxt'
-'http://forja.rediris.es/frs/download.php/2632/es_PA.oxt'
-'http://forja.rediris.es/frs/download.php/2633/es_PE.oxt'
-'http://forja.rediris.es/frs/download.php/2634/es_PR.oxt'
-'http://forja.rediris.es/frs/download.php/2635/es_SV.oxt'
-'http://forja.rediris.es/frs/download.php/2636/es_UY.oxt'
-'http://forja.rediris.es/frs/download.php/2637/es_VE.oxt')
-
-package() {
-  cd $srcdir
-  for file in *.oxt; do
-LANG=en_US.utf8 bsdtar -xf $file
-  done
-
-  install -dm755 ${pkgdir}/usr/share/hunspell
-  install -m644 es_*.dic es_*.aff $pkgdir/usr/share/hunspell
-
-  # the symlinks
-  install -dm755 ${pkgdir}/usr/share/myspell/dicts
-  pushd $pkgdir/usr/share/myspell/dicts
-for file in $pkgdir/usr/share/hunspell/*; do
-  ln -sv /usr/share/hunspell/$(basename $file) .
-done
-  popd
-  
-  # docs
-  install -dm755 ${pkgdir}/usr/share/doc/$pkgname
-  install -m644 README.txt $pkgdir/usr/share/doc/$pkgname
-}
-md5sums=('9676e94487e4a09a1c7adb8e2357774d'
- '15a2bbadfbdaed50a85cee048e0448e1'
- 'a946fa01accc85bba4ac4c8a65bda990'
- '63156d580f93eb5eabe150a64e891180'
- '2e598c9f6425144c6a74ef075df55536'
- '023f3308e7f2bda68409eadf55cffc1a'
- '8076fddccbfc8119afce7e63797a86f1'
- 'c0b96ecfe25b90eba9dfd455a44e876d'
- 'e40a866e0f4fa43d19c606be2c78a919'
- '28776430bb77547fd70cf6db504bda63'
- '5bba781582ffa42acfdd3c5dd3899add'
- 'cc4a81266f2aa06a3980dfaef3dc'
- 'e237488413344febc567d41c716d1608'
- 'e5396b996777854860e1071953bf1159'
- '3c77326ae63077d08bd167039831506d'
- 'a0fe867554ff50d79a92534e904204f4'
- 'b9e10ee9f910b4e983c088da31635cc4'
- '17987e5ab82801d3b0a583bcc617cc25'
- '8b511d64b06ddec5c8589cdc1f74a39c'
- '2c0312e7100b6a5347f16fa33f1a29ba')

Copied: hunspell-es/repos/extra-any/PKGBUILD (from rev 200371, 
hunspell-es/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-11-27 08:27:58 UTC (rev 200372)
@@ -0,0 +1,83 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Maintainer: AndyRTR andy...@archlinux.org
+
+pkgname=hunspell-es
+pkgver=0.7
+pkgrel=2
+epoch=1
+pkgdesc=Spanish hunspell dictionaries
+arch=(any)
+url=https://forja.rediris.es/projects/rla-es/;
+license=('LGPL3')
+makedepends=('hunspell')
+optdepends=('hunspell: the spell checking libraries and apps')
+noextract=(es_ANY.oxt es_AR.oxt es_BO.oxt es_CL.oxt es_CO.oxt 
+   es_CR.oxt es_CU.oxt es_DO.oxt es_EC.oxt es_ES.oxt 
+   es_GT.oxt es_HN.oxt es_MX.oxt es_NI.oxt es_PA.oxt 
+   es_PE.oxt es_PR.oxt es_PY.oxt es_SV.oxt es_UY.oxt es_VE.oxt)

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

2013-11-27 Thread Ángel Velásquez
Date: Wednesday, November 27, 2013 @ 09:40:33
  Author: angvp
Revision: 200374

upgpkg: serf 1.3.2-1

Version bump to 1.3.2

Modified:
  serf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-27 08:31:29 UTC (rev 200373)
+++ PKGBUILD2013-11-27 08:40:33 UTC (rev 200374)
@@ -3,8 +3,8 @@
 # Contributor: Stéphane Gaudreault steph...@archlinux.org
 
 pkgname=serf
-pkgver=1.3.1
-pkgrel=2
+pkgver=1.3.2
+pkgrel=1
 pkgdesc=High-performance asynchronous HTTP client library
 arch=('i686' 'x86_64')
 url=http://code.google.com/p/serf/;
@@ -12,16 +12,9 @@
 depends=('apr-util')
 makedepends=('scons')
 options=('!staticlibs')
-source=(http://serf.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2 
'serf-ssl-allocator-v2.patch')
-md5sums=('da5aca0cad19fd9c19129c3f8f7393dd'
- 'a0ff486ee26f86cb2825decfd1dc8355')
+source=(http://serf.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('43ce30fccf39ab0186a7590e2733e3ec')
 
-prepare() {
-  mv serf-ssl-allocator-v2.patch ${pkgname}-${pkgver} 
-  cd ${pkgname}-${pkgver}
-  patch -Np0 -i serf-ssl-allocator-v2.patch
-}
-
 build() {
   cd ${pkgname}-${pkgver}
   scons PREFIX=/usr



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

2013-11-27 Thread Ángel Velásquez
Date: Wednesday, November 27, 2013 @ 09:41:28
  Author: angvp
Revision: 200375

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

Added:
  serf/repos/testing-i686/
  serf/repos/testing-i686/PKGBUILD
(from rev 200374, serf/trunk/PKGBUILD)
  serf/repos/testing-i686/serf-ssl-allocator-v2.patch
(from rev 200374, serf/trunk/serf-ssl-allocator-v2.patch)
  serf/repos/testing-x86_64/
  serf/repos/testing-x86_64/PKGBUILD
(from rev 200374, serf/trunk/PKGBUILD)
  serf/repos/testing-x86_64/serf-ssl-allocator-v2.patch
(from rev 200374, serf/trunk/serf-ssl-allocator-v2.patch)

+
 testing-i686/PKGBUILD  |   32 +++
 testing-i686/serf-ssl-allocator-v2.patch   |   57 +++
 testing-x86_64/PKGBUILD|   32 +++
 testing-x86_64/serf-ssl-allocator-v2.patch |   57 +++
 4 files changed, 178 insertions(+)

Copied: serf/repos/testing-i686/PKGBUILD (from rev 200374, serf/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-11-27 08:41:28 UTC (rev 200375)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+
+pkgname=serf
+pkgver=1.3.2
+pkgrel=1
+pkgdesc=High-performance asynchronous HTTP client library
+arch=('i686' 'x86_64')
+url=http://code.google.com/p/serf/;
+license=('Apache')
+depends=('apr-util')
+makedepends=('scons')
+options=('!staticlibs')
+source=(http://serf.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('43ce30fccf39ab0186a7590e2733e3ec')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  scons PREFIX=/usr
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  scons check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -d ${pkgdir}/usr
+  scons PREFIX=${pkgdir}/usr install
+}

Copied: serf/repos/testing-i686/serf-ssl-allocator-v2.patch (from rev 200374, 
serf/trunk/serf-ssl-allocator-v2.patch)
===
--- testing-i686/serf-ssl-allocator-v2.patch(rev 0)
+++ testing-i686/serf-ssl-allocator-v2.patch2013-11-27 08:41:28 UTC (rev 
200375)
@@ -0,0 +1,57 @@
+Index: buckets/ssl_buckets.c
+===
+--- buckets/ssl_buckets.c   (revision 2130)
 buckets/ssl_buckets.c   (working copy)
+@@ -1192,21 +1192,16 @@
+ context-server_cert_userdata = data;
+ }
+ 
+-static serf_ssl_context_t *ssl_init_context(void)
++static serf_ssl_context_t *ssl_init_context(serf_bucket_alloc_t *allocator)
+ {
+ serf_ssl_context_t *ssl_ctx;
+-apr_pool_t *pool;
+-serf_bucket_alloc_t *allocator;
+ 
+ init_ssl_libraries();
+ 
+-apr_pool_create(pool, NULL);
+-allocator = serf_bucket_allocator_create(pool, NULL, NULL);
+-
+ ssl_ctx = serf_bucket_mem_alloc(allocator, sizeof(*ssl_ctx));
+ 
+ ssl_ctx-refcount = 0;
+-ssl_ctx-pool = pool;
++ssl_ctx-pool = serf_bucket_allocator_get_pool(allocator);
+ ssl_ctx-allocator = allocator;
+ 
+ ssl_ctx-ctx = SSL_CTX_new(SSLv23_client_method());
+@@ -1263,8 +1258,6 @@
+ static apr_status_t ssl_free_context(
+ serf_ssl_context_t *ssl_ctx)
+ {
+-apr_pool_t *p;
+-
+ /* If never had the pending buckets, don't try to free them. */
+ if (ssl_ctx-decrypt.pending != NULL) {
+ serf_bucket_destroy(ssl_ctx-decrypt.pending);
+@@ -1277,10 +1270,7 @@
+ SSL_free(ssl_ctx-ssl);
+ SSL_CTX_free(ssl_ctx-ctx);
+ 
+-p = ssl_ctx-pool;
+-
+ serf_bucket_mem_free(ssl_ctx-allocator, ssl_ctx);
+-apr_pool_destroy(p);
+ 
+ return APR_SUCCESS;
+ }
+@@ -1294,7 +1284,7 @@
+ 
+ ctx = serf_bucket_mem_alloc(allocator, sizeof(*ctx));
+ if (!ssl_ctx) {
+-ctx-ssl_ctx = ssl_init_context();
++ctx-ssl_ctx = ssl_init_context(allocator);
+ }
+ else {
+ ctx-ssl_ctx = ssl_ctx;

Copied: serf/repos/testing-x86_64/PKGBUILD (from rev 200374, 
serf/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-11-27 08:41:28 UTC (rev 200375)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+
+pkgname=serf
+pkgver=1.3.2
+pkgrel=1
+pkgdesc=High-performance asynchronous HTTP client library
+arch=('i686' 'x86_64')
+url=http://code.google.com/p/serf/;
+license=('Apache')
+depends=('apr-util')
+makedepends=('scons')
+options=('!staticlibs')
+source=(http://serf.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('43ce30fccf39ab0186a7590e2733e3ec')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  scons PREFIX=/usr
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  scons check
+}
+
+package() {
+  

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

2013-11-27 Thread Ángel Velásquez
Date: Wednesday, November 27, 2013 @ 10:18:28
  Author: angvp
Revision: 200378

upgpkg: subversion 1.8.5-1

Version bump to 1.8.5

Modified:
  subversion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-27 08:49:58 UTC (rev 200377)
+++ PKGBUILD2013-11-27 09:18:28 UTC (rev 200378)
@@ -5,7 +5,7 @@
 # Contributor: Jason Chu ja...@archlinux.org
 
 pkgname=subversion
-pkgver=1.8.3
+pkgver=1.8.5
 pkgrel=1
 pkgdesc=A Modern Concurrent Version Control System
 arch=('i686' 'x86_64')
@@ -30,7 +30,7 @@
 svnserve.tmpfiles
 svnserve.service
 subversion.rpath.fix.patch)
-md5sums=('7d7bd97347a4491e1ffb529563ce2e9e'
+md5sums=('77349caf0ef5a612c9718c53516a9934'
  'SKIP'
  'a0db6dd43af33952739b6ec089852630'
  'c459e299192552f61578f3438abf0664'
@@ -97,3 +97,4 @@
   ln -sf subversion ${pkgdir}/usr/share/bash-completion/completions/${i}
done
 }
+



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

2013-11-27 Thread Ángel Velásquez
Date: Wednesday, November 27, 2013 @ 10:20:14
  Author: angvp
Revision: 200379

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

Added:
  subversion/repos/testing-i686/
  subversion/repos/testing-i686/PKGBUILD
(from rev 200378, subversion/trunk/PKGBUILD)
  subversion/repos/testing-i686/subversion.install
(from rev 200378, subversion/trunk/subversion.install)
  subversion/repos/testing-i686/subversion.rpath.fix.patch
(from rev 200378, subversion/trunk/subversion.rpath.fix.patch)
  subversion/repos/testing-i686/svn
(from rev 200378, subversion/trunk/svn)
  subversion/repos/testing-i686/svnserve.conf
(from rev 200378, subversion/trunk/svnserve.conf)
  subversion/repos/testing-i686/svnserve.service
(from rev 200378, subversion/trunk/svnserve.service)
  subversion/repos/testing-i686/svnserve.tmpfiles
(from rev 200378, subversion/trunk/svnserve.tmpfiles)
  subversion/repos/testing-x86_64/
  subversion/repos/testing-x86_64/PKGBUILD
(from rev 200378, subversion/trunk/PKGBUILD)
  subversion/repos/testing-x86_64/subversion.install
(from rev 200378, subversion/trunk/subversion.install)
  subversion/repos/testing-x86_64/subversion.rpath.fix.patch
(from rev 200378, subversion/trunk/subversion.rpath.fix.patch)
  subversion/repos/testing-x86_64/svn
(from rev 200378, subversion/trunk/svn)
  subversion/repos/testing-x86_64/svnserve.conf
(from rev 200378, subversion/trunk/svnserve.conf)
  subversion/repos/testing-x86_64/svnserve.service
(from rev 200378, subversion/trunk/svnserve.service)
  subversion/repos/testing-x86_64/svnserve.tmpfiles
(from rev 200378, subversion/trunk/svnserve.tmpfiles)

---+
 testing-i686/PKGBUILD |  100 
 testing-i686/subversion.install   |7 +
 testing-i686/subversion.rpath.fix.patch   |   10 ++
 testing-i686/svn  |   11 +++
 testing-i686/svnserve.conf|7 +
 testing-i686/svnserve.service |   11 +++
 testing-i686/svnserve.tmpfiles|1 
 testing-x86_64/PKGBUILD   |  100 
 testing-x86_64/subversion.install |7 +
 testing-x86_64/subversion.rpath.fix.patch |   10 ++
 testing-x86_64/svn|   11 +++
 testing-x86_64/svnserve.conf  |7 +
 testing-x86_64/svnserve.service   |   11 +++
 testing-x86_64/svnserve.tmpfiles  |1 
 14 files changed, 294 insertions(+)

Copied: subversion/repos/testing-i686/PKGBUILD (from rev 200378, 
subversion/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-11-27 09:20:14 UTC (rev 200379)
@@ -0,0 +1,100 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Paul Mattal p...@archlinux.org
+# Contributor: Jason Chu ja...@archlinux.org
+
+pkgname=subversion
+pkgver=1.8.5
+pkgrel=1
+pkgdesc=A Modern Concurrent Version Control System
+arch=('i686' 'x86_64')
+url=http://subversion.apache.org/;
+license=('APACHE')
+depends=('sqlite' 'file' 'serf' 'systemd')
+makedepends=('apache' 'python2' 'perl' 'swig' 'java-runtime' 'java-environment'
+ 'libgnome-keyring' 'kdelibs' 'ruby')
+optdepends=('libgnome-keyring: for GNOME Keyring for auth credentials'
+'kdeutils-kwallet: for KWallet for auth credentials'
+'bash-completion: for svn bash completion'
+'python2: for some hook scripts'
+'java-environment: for Java support'
+'ruby: for some hook scripts')
+provides=('svn')
+backup=('etc/xinetd.d/svn' 'etc/conf.d/svnserve')
+options=('!makeflags' '!emptydirs')
+install=${pkgname}.install
+source=(http://www.apache.org/dist/subversion/subversion-${pkgver}.tar.bz2{,.asc}
+svn
+svnserve.conf
+svnserve.tmpfiles
+svnserve.service
+subversion.rpath.fix.patch)
+md5sums=('77349caf0ef5a612c9718c53516a9934'
+ 'SKIP'
+ 'a0db6dd43af33952739b6ec089852630'
+ 'c459e299192552f61578f3438abf0664'
+ 'bb2857eceafcfac35dde39dcffad2314'
+ 'e8020c7a1d1a0c47091b5fdd034f81c5'
+ '6b4340ba9d8845cd8497e013ae01be3f')
+
+prepare() {
+   cd ${pkgname}-${pkgver}
+   patch -Np0 -i ../subversion.rpath.fix.patch
+   sed -i 's|/usr/bin/env python|/usr/bin/env python2|' 
tools/hook-scripts/{,mailer/{,tests/}}*.py
+}
+
+build() {
+   cd ${pkgname}-${pkgver}
+   export PYTHON=/usr/bin/python2
+   ./configure --prefix=/usr --with-apr=/usr --with-apr-util=/usr \
+   --with-zlib=/usr --with-serf=/usr --with-apxs \
+   --with-sqlite=/usr 
--with-berkeley-db=:/usr/include/:/usr/lib:db-5.3 \
+   --enable-javahl --with-gnome-keyring --with-kwallet \
+   

[arch-commits] Commit in python2/trunk (PKGBUILD python-2.7.5-CVE-2013-4238.patch)

2013-11-26 Thread Ángel Velásquez
Date: Tuesday, November 26, 2013 @ 17:09:28
  Author: angvp
Revision: 200338

upgpkg: python2 2.7.6-1

Version bump to 2.7.6 and FS#37006 reviewed

Modified:
  python2/trunk/PKGBUILD
Deleted:
  python2/trunk/python-2.7.5-CVE-2013-4238.patch

--+
 PKGBUILD |   18 +-
 python-2.7.5-CVE-2013-4238.patch |  267 -
 2 files changed, 8 insertions(+), 277 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-11-26 15:53:06 UTC (rev 200337)
+++ PKGBUILD2013-11-26 16:09:28 UTC (rev 200338)
@@ -4,8 +4,8 @@
 # Contributer: Jason Chu ja...@archlinux.org
 
 pkgname=python2
-pkgver=2.7.5
-pkgrel=2
+pkgver=2.7.6
+pkgrel=1
 _pybasever=2.7
 pkgdesc=A high-level scripting language
 arch=('i686' 'x86_64')
@@ -16,17 +16,12 @@
 optdepends=('tk: for IDLE')
 conflicts=('python3')
 options=('!makeflags')
-source=(http://www.python.org/ftp/python/${pkgver%rc?}/Python-${pkgver}.tar.xz
-python-2.7.5-CVE-2013-4238.patch)
-sha1sums=('b7389791f789625c2ba9d897aa324008ff482daf'
-  'fb1f95ca21d9c00eaaea5a58236d1d97300482d7')
+source=(http://www.python.org/ftp/python/${pkgver%rc?}/Python-${pkgver}.tar.xz)
+sha1sums=('8321636af2acbeaa68fc635d7dda7369ed446a80')
 
 prepare() {
   cd ${srcdir}/Python-${pkgver}
 
-  # http://bugs.python.org/issue18709
-  patch -Np1 -i ../python-2.7.5-CVE-2013-4238.patch
-
   # Temporary workaround for FS#22322
   # See http://bugs.python.org/issue10835 for upstream report
   sed -i /progname =/s/python/python${_pybasever}/ Python/pythonrun.c
@@ -86,9 +81,12 @@
   mv ${pkgdir}/usr/bin/2to3{,-2.7}
 
   # clean up #!s
-  find ${pkgdir}/usr/lib/python${_pybasever}/ -name '*.py' | \
+  find . -name '*.py' | \
 xargs sed -i s|#[ ]*![ ]*/usr/bin/env python$|#!/usr/bin/env python2|
 
+  # Workaround asdl_c.py error
+  touch Include/Python-ast.h Python/Python-ast.c
+
   # clean-up reference to build directory
   sed -i s#${srcdir}/Python-${pkgver}:## 
${pkgdir}/usr/lib/python${_pybasever}/config/Makefile
 

Deleted: python-2.7.5-CVE-2013-4238.patch
===
--- python-2.7.5-CVE-2013-4238.patch2013-11-26 15:53:06 UTC (rev 200337)
+++ python-2.7.5-CVE-2013-4238.patch2013-11-26 16:09:28 UTC (rev 200338)
@@ -1,267 +0,0 @@
-
-# HG changeset patch
-# User Christian Heimes christ...@cheimes.de
-# Date 1376693687 -7200
-# Node ID bd2360476bdbb1477b81b0e18b8d86b3452ba77b
-# Parent  87fcc13ade91874971ad577efaa2254c744a2b07
-Issue #18709: Fix CVE-2013-4238. The SSL module now handles NULL bytes
-inside subjectAltName correctly. Formerly the module has used OpenSSL's
-GENERAL_NAME_print() function to get the string represention of ASN.1
-strings for rfc822Name (email), dNSName (DNS) and
-uniformResourceIdentifier (URI).
-
-diff --git a/Lib/test/nullbytecert.pem b/Lib/test/nullbytecert.pem
-new file mode 100644
 /dev/null
-+++ b/Lib/test/nullbytecert.pem
-@@ -0,0 +1,90 @@
-+Certificate:
-+Data:
-+Version: 3 (0x2)
-+Serial Number: 0 (0x0)
-+Signature Algorithm: sha1WithRSAEncryption
-+Issuer: C=US, ST=Oregon, L=Beaverton, O=Python Software Foundation, 
OU=Python Core Development, 
CN=null.python.org\x00example.org/emailAddress=python-...@python.org
-+Validity
-+Not Before: Aug  7 13:11:52 2013 GMT
-+Not After : Aug  7 13:12:52 2013 GMT
-+Subject: C=US, ST=Oregon, L=Beaverton, O=Python Software Foundation, 
OU=Python Core Development, 
CN=null.python.org\x00example.org/emailAddress=python-...@python.org
-+Subject Public Key Info:
-+Public Key Algorithm: rsaEncryption
-+Public-Key: (2048 bit)
-+Modulus:
-+00:b5:ea:ed:c9:fb:46:7d:6f:3b:76:80:dd:3a:f3:
-+03:94:0b:a7:a6:db:ec:1d:df:ff:23:74:08:9d:97:
-+16:3f:a3:a4:7b:3e:1b:0e:96:59:25:03:a7:26:e2:
-+88:a9:cf:79:cd:f7:04:56:b0:ab:79:32:6e:59:c1:
-+32:30:54:eb:58:a8:cb:91:f0:42:a5:64:27:cb:d4:
-+56:31:88:52:ad:cf:bd:7f:f0:06:64:1f:cc:27:b8:
-+a3:8b:8c:f3:d8:29:1f:25:0b:f5:46:06:1b:ca:02:
-+45:ad:7b:76:0a:9c:bf:bb:b9:ae:0d:16:ab:60:75:
-+ae:06:3e:9c:7c:31:dc:92:2f:29:1a:e0:4b:0c:91:
-+90:6c:e9:37:c5:90:d7:2a:d7:97:15:a3:80:8f:5d:
-+7b:49:8f:54:30:d4:97:2c:1c:5b:37:b5:ab:69:30:
-+68:43:d3:33:78:4b:02:60:f5:3c:44:80:a1:8f:e7:
-+f0:0f:d1:5e:87:9e:46:cf:62:fc:f9:bf:0c:65:12:
-+f1:93:c8:35:79:3f:c8:ec:ec:47:f5:ef:be:44:d5:
-+ae:82:1e:2d:9a:9f:98:5a:67:65:e1:74:70:7c:cb:
-+d3:c2:ce:0e:45:49:27:dc:e3:2d:d4:fb:48:0e:2f:
-+9e:77:b8:14:46:c0:c4:36:ca:02:ae:6a:91:8c:da:
-+

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

2013-11-26 Thread Ángel Velásquez
Date: Tuesday, November 26, 2013 @ 17:10:27
  Author: angvp
Revision: 200339

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

Added:
  python2/repos/testing-i686/
  python2/repos/testing-i686/PKGBUILD
(from rev 200338, python2/trunk/PKGBUILD)
  python2/repos/testing-x86_64/
  python2/repos/testing-x86_64/PKGBUILD
(from rev 200338, python2/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   95 ++
 testing-x86_64/PKGBUILD |   95 ++
 2 files changed, 190 insertions(+)

Copied: python2/repos/testing-i686/PKGBUILD (from rev 200338, 
python2/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-11-26 16:10:27 UTC (rev 200339)
@@ -0,0 +1,95 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributer: Allan McRae al...@archlinux.org
+# Contributer: Jason Chu ja...@archlinux.org
+
+pkgname=python2
+pkgver=2.7.6
+pkgrel=1
+_pybasever=2.7
+pkgdesc=A high-level scripting language
+arch=('i686' 'x86_64')
+license=('PSF')
+url=http://www.python.org/;
+depends=('bzip2' 'gdbm' 'openssl' 'zlib' 'expat' 'sqlite' 'libffi')
+makedepends=('tk=8.6.0' 'bluez-libs')
+optdepends=('tk: for IDLE')
+conflicts=('python3')
+options=('!makeflags')
+source=(http://www.python.org/ftp/python/${pkgver%rc?}/Python-${pkgver}.tar.xz)
+sha1sums=('8321636af2acbeaa68fc635d7dda7369ed446a80')
+
+prepare() {
+  cd ${srcdir}/Python-${pkgver}
+
+  # Temporary workaround for FS#22322
+  # See http://bugs.python.org/issue10835 for upstream report
+  sed -i /progname =/s/python/python${_pybasever}/ Python/pythonrun.c
+
+  # Enable built-in SQLite module to load extensions (fix FS#22122)
+  sed -i /SQLITE_OMIT_LOAD_EXTENSION/d setup.py
+
+  # FS#23997
+  sed -i -e s|^#.* /usr/local/bin/python|#!/usr/bin/python2| Lib/cgi.py
+
+  sed -i s/python2.3/python2/g Lib/distutils/tests/test_build_scripts.py \
+ Lib/distutils/tests/test_install_scripts.py Tools/scripts/gprof2html.py
+
+  # Ensure that we are using the system copy of various libraries (expat, zlib 
and libffi),
+  # rather than copies shipped in the tarball
+  rm -r Modules/expat
+  rm -r Modules/zlib
+  rm -r Modules/_ctypes/{darwin,libffi}*
+}
+
+build() {
+  cd ${srcdir}/Python-${pkgver}
+
+  export OPT=${CFLAGS}
+  ./configure --prefix=/usr --enable-shared --with-threads --enable-ipv6 \
+  --enable-unicode=ucs4 --with-system-expat --with-system-ffi \
+  --with-dbmliborder=gdbm:ndbm
+
+  make
+}
+
+package() {
+  cd ${srcdir}/Python-${pkgver}
+  make DESTDIR=${pkgdir} altinstall maninstall
+
+  rm ${pkgdir}/usr/share/man/man1/python.1
+
+  ln -sf python${_pybasever}${pkgdir}/usr/bin/python2
+  ln -sf python${_pybasever}-config ${pkgdir}/usr/bin/python2-config
+  ln -sf python${_pybasever}.1  ${pkgdir}/usr/share/man/man1/python2.1
+
+  # FS#33954
+  ln -sf python-${_pybasever}.pc${pkgdir}/usr/lib/pkgconfig/python2.pc
+
+  ln -sf ../../libpython${_pybasever}.so 
${pkgdir}/usr/lib/python${_pybasever}/config/libpython${_pybasever}.so
+
+  mv ${pkgdir}/usr/bin/smtpd.py ${pkgdir}/usr/lib/python${_pybasever}/
+
+  # some useful stuff
+  install -dm755 ${pkgdir}/usr/lib/python${_pybasever}/Tools/{i18n,scripts}
+  install -m755 Tools/i18n/{msgfmt,pygettext}.py 
${pkgdir}/usr/lib/python${_pybasever}/Tools/i18n/
+  install -m755 Tools/scripts/{README,*py} 
${pkgdir}/usr/lib/python${_pybasever}/Tools/scripts/
+
+  # fix conflicts with python
+  mv ${pkgdir}/usr/bin/idle{,2}
+  mv ${pkgdir}/usr/bin/pydoc{,2}
+  mv ${pkgdir}/usr/bin/2to3{,-2.7}
+
+  # clean up #!s
+  find . -name '*.py' | \
+xargs sed -i s|#[ ]*![ ]*/usr/bin/env python$|#!/usr/bin/env python2|
+
+  # Workaround asdl_c.py error
+  touch Include/Python-ast.h Python/Python-ast.c
+
+  # clean-up reference to build directory
+  sed -i s#${srcdir}/Python-${pkgver}:## 
${pkgdir}/usr/lib/python${_pybasever}/config/Makefile
+
+  # license
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: python2/repos/testing-x86_64/PKGBUILD (from rev 200338, 
python2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-11-26 16:10:27 UTC (rev 200339)
@@ -0,0 +1,95 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributer: Allan McRae al...@archlinux.org
+# Contributer: Jason Chu ja...@archlinux.org
+
+pkgname=python2
+pkgver=2.7.6
+pkgrel=1
+_pybasever=2.7
+pkgdesc=A high-level scripting language
+arch=('i686' 'x86_64')
+license=('PSF')
+url=http://www.python.org/;
+depends=('bzip2' 'gdbm' 'openssl' 'zlib' 'expat' 'sqlite' 'libffi')
+makedepends=('tk=8.6.0' 'bluez-libs')
+optdepends=('tk: for IDLE')
+conflicts=('python3')
+options=('!makeflags')

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

2013-11-26 Thread Ángel Velásquez
Date: Tuesday, November 26, 2013 @ 17:58:31
  Author: angvp
Revision: 200340

upgpkg: python 3.3.3-1

Version bump to 3.3.3

Modified:
  python/trunk/PKGBUILD
Deleted:
  python/trunk/python-3.3.2-CVE-2013-2099.patch
  python/trunk/python-3.3.2-CVE-2013-4238.patch

--+
 PKGBUILD |   21 +--
 python-3.3.2-CVE-2013-2099.patch |   49 ---
 python-3.3.2-CVE-2013-4238.patch |  255 -
 3 files changed, 8 insertions(+), 317 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-11-26 16:10:27 UTC (rev 200339)
+++ PKGBUILD2013-11-26 16:58:31 UTC (rev 200340)
@@ -1,11 +1,12 @@
 # $Id$
-# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
 # Contributor: Allan McRae al...@archlinux.org
 # Contributor: Jason Chu ja...@archlinux.org
 
 pkgname=python
-pkgver=3.3.2
-pkgrel=2
+pkgver=3.3.3
+pkgrel=1
 _pybasever=3.3
 pkgdesc=Next generation of the python high-level scripting language
 arch=('i686' 'x86_64')
@@ -14,15 +15,11 @@
 depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
 makedepends=('tk=8.6.0' 'sqlite' 'valgrind' 'bluez-libs')
 optdepends=('tk: for tkinter' 'sqlite')
+options=('!makeflags')
 provides=('python3')
 replaces=('python3')
-options=('!makeflags')
-source=(http://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz
-python-3.3.2-CVE-2013-2099.patch
-python-3.3.2-CVE-2013-4238.patch)
-sha1sums=('87009d0c156c6e1354dfec5c98c328cae93950ad'
-  'bfe07759daacd4ffa0e682e65f0c9fb84f715c73'
-  'c30297201ef5cd803b685085ca6defb7ca66d2cd')
+source=(http://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz)
+sha1sums=('af4e75a34bd538c79b9871227c2e7f56569ac107')
 
 prepare() {
   cd ${srcdir}/Python-${pkgver}
@@ -36,8 +33,6 @@
   rm -r Modules/zlib
   rm -r Modules/_ctypes/{darwin,libffi}*
 
-  patch -Np1 -i ../python-3.3.2-CVE-2013-2099.patch
-  patch -Np1 -i ../python-3.3.2-CVE-2013-4238.patch
 }
 
 build() {
@@ -59,7 +54,7 @@
 check() {
   cd ${srcdir}/Python-${pkgver}
   LD_LIBRARY_PATH=${srcdir}/Python-${pkgver}:${LD_LIBRARY_PATH} \
- ${srcdir}/Python-${pkgver}/python -m test.regrtest -x test_posixpath 
test_logging
+ ${srcdir}/Python-${pkgver}/python -m test.regrtest -x test_posixpath 
test_logging test_uuid
 }
 
 package() {

Deleted: python-3.3.2-CVE-2013-2099.patch
===
--- python-3.3.2-CVE-2013-2099.patch2013-11-26 16:10:27 UTC (rev 200339)
+++ python-3.3.2-CVE-2013-2099.patch2013-11-26 16:58:31 UTC (rev 200340)
@@ -1,49 +0,0 @@
-# HG changeset patch
-# User Antoine Pitrou solip...@pitrou.net
-# Date 1368892602 -7200
-# Node ID c627638753e2d25a98950585b259104a025937a9
-# Parent  9682241dc8fcb4b1aef083bd30860efa070c3d6d
-Issue #17980: Fix possible abuse of ssl.match_hostname() for denial of service 
using certificates with many wildcards (CVE-2013-2099).
-
-diff --git a/Lib/ssl.py b/Lib/ssl.py
 a/Lib/ssl.py
-+++ b/Lib/ssl.py
-@@ -129,9 +129,16 @@ class CertificateError(ValueError):
- pass
- 
- 
--def _dnsname_to_pat(dn):
-+def _dnsname_to_pat(dn, max_wildcards=1):
- pats = []
- for frag in dn.split(r'.'):
-+if frag.count('*')  max_wildcards:
-+# Issue #17980: avoid denials of service by refusing more
-+# than one wildcard per fragment.  A survery of established
-+# policy among SSL implementations showed it to be a
-+# reasonable choice.
-+raise CertificateError(
-+too many wildcards in certificate DNS name:  + repr(dn))
- if frag == '*':
- # When '*' is a fragment by itself, it matches a non-empty dotless
- # fragment.
-diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py
 a/Lib/test/test_ssl.py
-+++ b/Lib/test/test_ssl.py
-@@ -349,6 +349,17 @@ class BasicSocketTests(unittest.TestCase
- self.assertRaises(ValueError, ssl.match_hostname, None, 'example.com')
- self.assertRaises(ValueError, ssl.match_hostname, {}, 'example.com')
- 
-+# Issue #17980: avoid denials of service by refusing more than one
-+# wildcard per fragment.
-+cert = {'subject': ((('commonName', 'a*b.com'),),)}
-+ok(cert, 'axxb.com')
-+cert = {'subject': ((('commonName', 'a*b.co*'),),)}
-+ok(cert, 'axxb.com')
-+cert = {'subject': ((('commonName', 'a*b*.com'),),)}
-+with self.assertRaises(ssl.CertificateError) as cm:
-+ssl.match_hostname(cert, 'axxbxxc.com')
-+self.assertIn(too many wildcards, str(cm.exception))
-+
- def test_server_side(self):
- # server_hostname doesn't work for server sockets
- ctx = ssl.SSLContext(ssl.PROTOCOL_SSLv23)

Deleted: 

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

2013-11-26 Thread Ángel Velásquez
Date: Tuesday, November 26, 2013 @ 17:59:28
  Author: angvp
Revision: 200341

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

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

-+
 testing-i686/PKGBUILD   |   81 ++
 testing-x86_64/PKGBUILD |   81 ++
 2 files changed, 162 insertions(+)

Copied: python/repos/testing-i686/PKGBUILD (from rev 200340, 
python/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-11-26 16:59:28 UTC (rev 200341)
@@ -0,0 +1,81 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: Jason Chu ja...@archlinux.org
+
+pkgname=python
+pkgver=3.3.3
+pkgrel=1
+_pybasever=3.3
+pkgdesc=Next generation of the python high-level scripting language
+arch=('i686' 'x86_64')
+license=('custom')
+url=http://www.python.org/;
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
+makedepends=('tk=8.6.0' 'sqlite' 'valgrind' 'bluez-libs')
+optdepends=('tk: for tkinter' 'sqlite')
+options=('!makeflags')
+provides=('python3')
+replaces=('python3')
+source=(http://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz)
+sha1sums=('af4e75a34bd538c79b9871227c2e7f56569ac107')
+
+prepare() {
+  cd ${srcdir}/Python-${pkgver}
+
+  # FS#23997
+  sed -i -e s|^#.* /usr/local/bin/python|#!/usr/bin/python| Lib/cgi.py
+
+  # Ensure that we are using the system copy of various libraries (expat, zlib 
and libffi),
+  # rather than copies shipped in the tarball
+  rm -r Modules/expat
+  rm -r Modules/zlib
+  rm -r Modules/_ctypes/{darwin,libffi}*
+
+}
+
+build() {
+  cd ${srcdir}/Python-${pkgver}
+
+  ./configure --prefix=/usr \
+  --enable-shared \
+  --with-threads \
+  --with-computed-gotos \
+  --enable-ipv6 \
+  --with-valgrind \
+  --with-system-expat \
+  --with-dbmliborder=gdbm:ndbm \
+  --with-system-ffi
+
+  make
+}
+
+check() {
+  cd ${srcdir}/Python-${pkgver}
+  LD_LIBRARY_PATH=${srcdir}/Python-${pkgver}:${LD_LIBRARY_PATH} \
+ ${srcdir}/Python-${pkgver}/python -m test.regrtest -x test_posixpath 
test_logging test_uuid
+}
+
+package() {
+  cd ${srcdir}/Python-${pkgver}
+  make DESTDIR=${pkgdir} install maninstall
+
+  # Why are these not done by default...
+  ln -sf python3   ${pkgdir}/usr/bin/python
+  ln -sf python3-config${pkgdir}/usr/bin/python-config
+  ln -sf idle3 ${pkgdir}/usr/bin/idle
+  ln -sf pydoc3${pkgdir}/usr/bin/pydoc
+  ln -sf python${_pybasever}.1 ${pkgdir}/usr/share/man/man1/python3.1
+  ln -sf python${_pybasever}.1 ${pkgdir}/usr/share/man/man1/python.1
+
+  # Fix FS#22552
+  ln -sf ../../libpython${_pybasever}m.so \
+
${pkgdir}/usr/lib/python${_pybasever}/config-${_pybasever}m/libpython${_pybasever}m.so
+
+  # Clean-up reference to build directory
+  sed -i s|$srcdir/Python-${pkgver}:|| 
$pkgdir/usr/lib/python${_pybasever}/config-${_pybasever}m/Makefile
+
+  # License
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: python/repos/testing-x86_64/PKGBUILD (from rev 200340, 
python/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-11-26 16:59:28 UTC (rev 200341)
@@ -0,0 +1,81 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: Jason Chu ja...@archlinux.org
+
+pkgname=python
+pkgver=3.3.3
+pkgrel=1
+_pybasever=3.3
+pkgdesc=Next generation of the python high-level scripting language
+arch=('i686' 'x86_64')
+license=('custom')
+url=http://www.python.org/;
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
+makedepends=('tk=8.6.0' 'sqlite' 'valgrind' 'bluez-libs')
+optdepends=('tk: for tkinter' 'sqlite')
+options=('!makeflags')
+provides=('python3')
+replaces=('python3')
+source=(http://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz)
+sha1sums=('af4e75a34bd538c79b9871227c2e7f56569ac107')
+
+prepare() {
+  cd ${srcdir}/Python-${pkgver}
+
+  # FS#23997
+  sed -i -e s|^#.* /usr/local/bin/python|#!/usr/bin/python| Lib/cgi.py
+
+  # Ensure that we are using the system copy of various libraries (expat, zlib 
and libffi),
+  # rather than copies shipped in the tarball
+  rm -r Modules/expat
+  rm -r Modules/zlib
+  rm -r Modules/_ctypes/{darwin,libffi}*

[arch-commits] Commit in (5 files)

2013-11-26 Thread Ángel Velásquez
Date: Wednesday, November 27, 2013 @ 07:58:38
  Author: angvp
Revision: 101534

Add python-ecdsa (dependency of python-paramiko)

Added:
  python-ecdsa/
  python-ecdsa/repos/
  python-ecdsa/trunk/
  python-ecdsa/trunk/LICENSE
  python-ecdsa/trunk/PKGBUILD

--+
 LICENSE  |   24 
 PKGBUILD |   35 +++
 2 files changed, 59 insertions(+)

Added: python-ecdsa/trunk/LICENSE
===
--- python-ecdsa/trunk/LICENSE  (rev 0)
+++ python-ecdsa/trunk/LICENSE  2013-11-27 06:58:38 UTC (rev 101534)
@@ -0,0 +1,24 @@
+python-ecdsa Copyright (c) 2010 Brian Warner
+
+Portions written in 2005 by Peter Pearson and placed in the public domain.
+
+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.

Added: python-ecdsa/trunk/PKGBUILD
===
--- python-ecdsa/trunk/PKGBUILD (rev 0)
+++ python-ecdsa/trunk/PKGBUILD 2013-11-27 06:58:38 UTC (rev 101534)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org  
+pkgbase=python-ecdsa
+pkgname=('python-ecdsa' 'python2-ecdsa')
+pkgver=0.10
+pkgrel=1
+pkgdesc=Implementation of ECDSA in Python
+arch=('any')
+url=https://github.com/warner/python-ecdsa;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools')
+options=(!emptydirs)
+source=(http://pypi.python.org/packages/source/e/ecdsa/ecdsa-$pkgver.tar.gz; 
LICENSE)
+md5sums=('e95941b3bcbf1726472bb724d7478551'
+ '66ffc5e30f76cbb5358fe54b645e5a1d')
+
+build() {
+  cp -R $srcdir/ecdsa-$pkgver $srcdir/ecdsa-$pkgver-py2
+  cd $srcdir/ecdsa-$pkgver-py2
+  sed -ie 's#/usr/bin/env python#/usr/bin/env python2#' ecdsa/*.py
+}
+
+package_python-ecdsa() {
+  depends=('python')
+  cd $srcdir/ecdsa-$pkgver
+  python setup.py install --root=$pkgdir/ --optimize=1
+  install -D -m644 $srcdir/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-ecdsa() {
+  depends=('python2')
+  cd $srcdir/ecdsa-$pkgver-py2
+  python2 setup.py install --root=$pkgdir/ --optimize=1
+  install -D -m644 $srcdir/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


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


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

2013-11-26 Thread Ángel Velásquez
Date: Wednesday, November 27, 2013 @ 08:00:18
  Author: angvp
Revision: 101535

archrelease: copy trunk to community-any

Added:
  python-ecdsa/repos/community-any/
  python-ecdsa/repos/community-any/LICENSE
(from rev 101534, python-ecdsa/trunk/LICENSE)
  python-ecdsa/repos/community-any/PKGBUILD
(from rev 101534, python-ecdsa/trunk/PKGBUILD)

--+
 LICENSE  |   24 
 PKGBUILD |   35 +++
 2 files changed, 59 insertions(+)

Copied: python-ecdsa/repos/community-any/LICENSE (from rev 101534, 
python-ecdsa/trunk/LICENSE)
===
--- community-any/LICENSE   (rev 0)
+++ community-any/LICENSE   2013-11-27 07:00:18 UTC (rev 101535)
@@ -0,0 +1,24 @@
+python-ecdsa Copyright (c) 2010 Brian Warner
+
+Portions written in 2005 by Peter Pearson and placed in the public domain.
+
+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-ecdsa/repos/community-any/PKGBUILD (from rev 101534, 
python-ecdsa/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2013-11-27 07:00:18 UTC (rev 101535)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org  
+pkgbase=python-ecdsa
+pkgname=('python-ecdsa' 'python2-ecdsa')
+pkgver=0.10
+pkgrel=1
+pkgdesc=Implementation of ECDSA in Python
+arch=('any')
+url=https://github.com/warner/python-ecdsa;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools')
+options=(!emptydirs)
+source=(http://pypi.python.org/packages/source/e/ecdsa/ecdsa-$pkgver.tar.gz; 
LICENSE)
+md5sums=('e95941b3bcbf1726472bb724d7478551'
+ '66ffc5e30f76cbb5358fe54b645e5a1d')
+
+build() {
+  cp -R $srcdir/ecdsa-$pkgver $srcdir/ecdsa-$pkgver-py2
+  cd $srcdir/ecdsa-$pkgver-py2
+  sed -ie 's#/usr/bin/env python#/usr/bin/env python2#' ecdsa/*.py
+}
+
+package_python-ecdsa() {
+  depends=('python')
+  cd $srcdir/ecdsa-$pkgver
+  python setup.py install --root=$pkgdir/ --optimize=1
+  install -D -m644 $srcdir/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-ecdsa() {
+  depends=('python2')
+  cd $srcdir/ecdsa-$pkgver-py2
+  python2 setup.py install --root=$pkgdir/ --optimize=1
+  install -D -m644 $srcdir/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}



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

2013-11-26 Thread Ángel Velásquez
Date: Wednesday, November 27, 2013 @ 08:32:00
  Author: angvp
Revision: 101536

upgpkg: python-paramiko 1.12.0-1

Version bump to 1.12.0

Modified:
  python-paramiko/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-27 07:00:18 UTC (rev 101535)
+++ PKGBUILD2013-11-27 07:32:00 UTC (rev 101536)
@@ -5,15 +5,15 @@
 
 pkgbase=python-paramiko
 pkgname=python2-paramiko
-pkgver=1.11.0
+pkgver=1.12.0
 pkgrel=1
 pkgdesc=Python module that implements the SSH2 protocol
 url=https://github.com/paramiko/paramiko/;
 license=('LGPL')
 arch=('any')
-depends=('python2-crypto')
+depends=('python2-crypto' 'python2-ecdsa')
 
source=(http://pypi.python.org/packages/source/p/paramiko/paramiko-$pkgver.tar.gz;)
-md5sums=('a2c55dc04904bd08d984533703177084')
+md5sums=('4187f77b1a5a313c83930e30c321')
 
 check() {
 cd $srcdir/paramiko-$pkgver



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

2013-11-26 Thread Ángel Velásquez
Date: Wednesday, November 27, 2013 @ 08:32:41
  Author: angvp
Revision: 101537

archrelease: copy trunk to community-any

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

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

Copied: python-paramiko/repos/community-any/PKGBUILD (from rev 94977, 
python-paramiko/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2013-11-27 07:32:41 UTC (rev 101537)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+# Contributor: Mario Danic mario.da...@gmail.com
+
+pkgbase=python-paramiko
+pkgname=python2-paramiko
+pkgver=1.11.0
+pkgrel=1
+pkgdesc=Python module that implements the SSH2 protocol
+url=https://github.com/paramiko/paramiko/;
+license=('LGPL')
+arch=('any')
+depends=('python2-crypto')
+source=(http://pypi.python.org/packages/source/p/paramiko/paramiko-$pkgver.tar.gz;)
+md5sums=('a2c55dc04904bd08d984533703177084')
+
+check() {
+cd $srcdir/paramiko-$pkgver
+python2 test.py
+}
+
+package_python2-paramiko() {
+  cd $srcdir/paramiko-$pkgver
+
+  python2 setup.py install --root=$pkgdir --optimize=1
+  install -Dm644 README $pkgdir/usr/share/doc/$pkgname/README
+  install -dm755 $pkgdir/usr/share/doc/$pkgname/demos
+  install -m644 demos/* $pkgdir/usr/share/doc/$pkgname/demos
+  chmod 755 $pkgdir/usr/share/doc/$pkgname/demos/*.py
+
+  find $pkgdir -name '*.py' -print0 |xargs -0 \
+sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/env python2,' \
+-e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
+}



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

2013-11-26 Thread Ángel Velásquez
Date: Wednesday, November 27, 2013 @ 08:36:20
  Author: angvp
Revision: 101538

archrelease: copy trunk to community-any

Modified:
  python-paramiko/repos/community-any/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-27 07:32:41 UTC (rev 101537)
+++ PKGBUILD2013-11-27 07:36:20 UTC (rev 101538)
@@ -5,15 +5,15 @@
 
 pkgbase=python-paramiko
 pkgname=python2-paramiko
-pkgver=1.11.0
+pkgver=1.12.0
 pkgrel=1
 pkgdesc=Python module that implements the SSH2 protocol
 url=https://github.com/paramiko/paramiko/;
 license=('LGPL')
 arch=('any')
-depends=('python2-crypto')
+depends=('python2-crypto' 'python2-ecdsa')
 
source=(http://pypi.python.org/packages/source/p/paramiko/paramiko-$pkgver.tar.gz;)
-md5sums=('a2c55dc04904bd08d984533703177084')
+md5sums=('4187f77b1a5a313c83930e30c321')
 
 check() {
 cd $srcdir/paramiko-$pkgver



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

2013-11-26 Thread Ángel Velásquez
Date: Wednesday, November 27, 2013 @ 08:43:39
  Author: angvp
Revision: 200363

upgpkg: mythes-es 1:0.7-1

Version bump to 0.7

Modified:
  mythes-es/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-27 06:20:00 UTC (rev 200362)
+++ PKGBUILD2013-11-27 07:43:39 UTC (rev 200363)
@@ -1,8 +1,9 @@
 # $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Contributor: AndyRTR andy...@archlinux.org
 
 pkgname=mythes-es
-pkgver=0.6
+pkgver=0.7
 pkgrel=1
 epoch=1
 pkgdesc=Spanish thesaurus



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

2013-11-26 Thread Ángel Velásquez
Date: Wednesday, November 27, 2013 @ 08:44:20
  Author: angvp
Revision: 200364

archrelease: copy trunk to extra-any

Added:
  mythes-es/repos/extra-any/PKGBUILD
(from rev 200363, mythes-es/trunk/PKGBUILD)
Deleted:
  mythes-es/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-11-27 07:43:39 UTC (rev 200363)
+++ PKGBUILD2013-11-27 07:44:20 UTC (rev 200364)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-
-pkgname=mythes-es
-pkgver=0.6
-pkgrel=1
-epoch=1
-pkgdesc=Spanish thesaurus
-arch=(any)
-url=https://forja.rediris.es/projects/rla-es/;
-license=('LGPL3')
-optdepends=('libmythes: offers thesaurus library functions')
-noextract=('es_ANY.oxt')
-source=('http://forja.rediris.es/frs/download.php/2618/es_ANY.oxt')
-md5sums=('9676e94487e4a09a1c7adb8e2357774d')
-
-package() {
-  cd $srcdir
-  LANG=en_US.utf8 bsdtar -xf es_ANY.oxt
-  install -dm755 ${pkgdir}/usr/share/mythes
-  install -m644 th_es_ES_v2.* $pkgdir/usr/share/mythes
-
-  pushd $pkgdir/usr/share/mythes/
-  es_ES_aliases=es_AR es_BO es_CL es_CO es_CR es_CU es_DO es_EC es_GT es_HN 
es_MX es_NI es_PA es_PE es_PR es_SV es_UY es_VE
-  for lang in $es_ES_aliases; do
-ln -s th_es_ES_v2.idx th_$lang_v2.idx
-ln -s th_es_ES_v2.dat th_$lang_v2.dat
-  done
-  popd
-
-  # the symlinks
-  install -dm755 ${pkgdir}/usr/share/myspell/dicts
-  pushd $pkgdir/usr/share/myspell/dicts
-  for file in $pkgdir/usr/share/mythes/*; do
-ln -sv /usr/share/mythes/$(basename $file) .
-  done
-  popd
-  
-  # docs
-  install -Dm644 README_th_es_ES.txt 
${pkgdir}/usr/share/doc/$pkgname/README_th_es_ES.txt
-}

Copied: mythes-es/repos/extra-any/PKGBUILD (from rev 200363, 
mythes-es/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-11-27 07:44:20 UTC (rev 200364)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Contributor: AndyRTR andy...@archlinux.org
+
+pkgname=mythes-es
+pkgver=0.7
+pkgrel=1
+epoch=1
+pkgdesc=Spanish thesaurus
+arch=(any)
+url=https://forja.rediris.es/projects/rla-es/;
+license=('LGPL3')
+optdepends=('libmythes: offers thesaurus library functions')
+noextract=('es_ANY.oxt')
+source=('http://forja.rediris.es/frs/download.php/2618/es_ANY.oxt')
+md5sums=('9676e94487e4a09a1c7adb8e2357774d')
+
+package() {
+  cd $srcdir
+  LANG=en_US.utf8 bsdtar -xf es_ANY.oxt
+  install -dm755 ${pkgdir}/usr/share/mythes
+  install -m644 th_es_ES_v2.* $pkgdir/usr/share/mythes
+
+  pushd $pkgdir/usr/share/mythes/
+  es_ES_aliases=es_AR es_BO es_CL es_CO es_CR es_CU es_DO es_EC es_GT es_HN 
es_MX es_NI es_PA es_PE es_PR es_SV es_UY es_VE
+  for lang in $es_ES_aliases; do
+ln -s th_es_ES_v2.idx th_$lang_v2.idx
+ln -s th_es_ES_v2.dat th_$lang_v2.dat
+  done
+  popd
+
+  # the symlinks
+  install -dm755 ${pkgdir}/usr/share/myspell/dicts
+  pushd $pkgdir/usr/share/myspell/dicts
+  for file in $pkgdir/usr/share/mythes/*; do
+ln -sv /usr/share/mythes/$(basename $file) .
+  done
+  popd
+  
+  # docs
+  install -Dm644 README_th_es_ES.txt 
${pkgdir}/usr/share/doc/$pkgname/README_th_es_ES.txt
+}



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

2013-11-03 Thread Ángel Velásquez
Date: Sunday, November 3, 2013 @ 19:33:55
  Author: angvp
Revision: 198767

upgpkg: python-setuptools 1.3-1

Version bump to 1.3

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-03 18:24:43 UTC (rev 198766)
+++ PKGBUILD2013-11-03 18:33:55 UTC (rev 198767)
@@ -2,7 +2,7 @@
 # Maintainer: Angel Velasquez an...@archlinux.org
 pkgbase=python-setuptools
 pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=1.1.6
+pkgver=1.3
 pkgrel=1
 pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
 arch=('any')
@@ -10,6 +10,7 @@
 url=http://pypi.python.org/pypi/setuptools;
 makedepends=('python' 'python2')
 
source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz)
+md5sums=('131956989d1ec7bac1f7be034800f183')
 
 #check() {
 #   # Check python3 module
@@ -64,4 +65,3 @@
python2 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1 
--skip-build
rm ${pkgdir}/usr/bin/easy_install
 }
-md5sums=('ee82ea53def4480191061997409d2996')



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

2013-11-03 Thread Ángel Velásquez
Date: Sunday, November 3, 2013 @ 19:38:06
  Author: angvp
Revision: 198768

Version bump to 1.3

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

--+
 /PKGBUILD|   67 +
 testing-any/PKGBUILD |   67 -
 2 files changed, 67 insertions(+), 67 deletions(-)

Deleted: testing-any/PKGBUILD
===
--- testing-any/PKGBUILD2013-09-16 05:04:06 UTC (rev 194402)
+++ testing-any/PKGBUILD2013-11-03 18:38:06 UTC (rev 198768)
@@ -1,67 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org
-pkgbase=python-setuptools
-pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=1.1
-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)
-md5sums=('84062633c3818c912af76d54a40d11a7')
-
-#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
-}

Copied: python-setuptools/repos/testing-any/PKGBUILD (from rev 198767, 
python-setuptools/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-11-03 18:38:06 UTC (rev 198768)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=1.3
+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)
+md5sums=('131956989d1ec7bac1f7be034800f183')
+
+#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 python-setuptools/trunk (PKGBUILD)

2013-09-22 Thread Ángel Velásquez
Date: Monday, September 23, 2013 @ 05:26:21
  Author: angvp
Revision: 194711

upgpkg: python-setuptools 1.1.6-1

Version bump to 1.1.6

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 00:56:24 UTC (rev 194710)
+++ PKGBUILD2013-09-23 03:26:21 UTC (rev 194711)
@@ -2,7 +2,7 @@
 # Maintainer: Angel Velasquez an...@archlinux.org
 pkgbase=python-setuptools
 pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=1.1.5
+pkgver=1.1.6
 pkgrel=1
 pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
 arch=('any')
@@ -10,7 +10,6 @@
 url=http://pypi.python.org/pypi/setuptools;
 makedepends=('python' 'python2')
 
source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz)
-md5sums=('8d2a7d43de8e1d1e1e92366cc9f93be2')
 
 #check() {
 #   # Check python3 module
@@ -65,3 +64,4 @@
python2 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1 
--skip-build
rm ${pkgdir}/usr/bin/easy_install
 }
+md5sums=('ee82ea53def4480191061997409d2996')



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

2013-09-22 Thread Ángel Velásquez
Date: Monday, September 23, 2013 @ 05:27:03
  Author: angvp
Revision: 194712

archrelease: copy trunk to testing-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-09-23 03:26:21 UTC (rev 194711)
+++ PKGBUILD2013-09-23 03:27:03 UTC (rev 194712)
@@ -1,67 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org
-pkgbase=python-setuptools
-pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=1.1.5
-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)
-md5sums=('8d2a7d43de8e1d1e1e92366cc9f93be2')
-
-#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
-}

Copied: python-setuptools/repos/testing-any/PKGBUILD (from rev 194711, 
python-setuptools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-09-23 03:27:03 UTC (rev 194712)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=1.1.6
+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)
+
+#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
+}
+md5sums=('ee82ea53def4480191061997409d2996')



[arch-commits] Commit in serf/trunk (PKGBUILD serf-ssl-allocator-v2.patch)

2013-09-22 Thread Ángel Velásquez
Date: Monday, September 23, 2013 @ 05:38:39
  Author: angvp
Revision: 194715

upgpkg: serf 1.3.1-2

Applying patch for FS#36070

Added:
  serf/trunk/serf-ssl-allocator-v2.patch
Modified:
  serf/trunk/PKGBUILD

-+
 PKGBUILD|   13 +++--
 serf-ssl-allocator-v2.patch |   57 ++
 2 files changed, 67 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-09-23 03:35:04 UTC (rev 194714)
+++ PKGBUILD2013-09-23 03:38:39 UTC (rev 194715)
@@ -4,7 +4,7 @@
 
 pkgname=serf
 pkgver=1.3.1
-pkgrel=1
+pkgrel=2
 pkgdesc=High-performance asynchronous HTTP client library
 arch=('i686' 'x86_64')
 url=http://code.google.com/p/serf/;
@@ -12,9 +12,16 @@
 depends=('apr-util')
 makedepends=('scons')
 options=('!libtool' '!staticlibs')
-source=(http://serf.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('da5aca0cad19fd9c19129c3f8f7393dd')
+source=(http://serf.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2 
'serf-ssl-allocator-v2.patch')
+md5sums=('da5aca0cad19fd9c19129c3f8f7393dd'
+ 'a0ff486ee26f86cb2825decfd1dc8355')
 
+prepare() {
+  mv serf-ssl-allocator-v2.patch ${pkgname}-${pkgver} 
+  cd ${pkgname}-${pkgver}
+  patch -Np0 -i serf-ssl-allocator-v2.patch
+}
+
 build() {
   cd ${pkgname}-${pkgver}
   scons PREFIX=/usr

Added: serf-ssl-allocator-v2.patch
===
--- serf-ssl-allocator-v2.patch (rev 0)
+++ serf-ssl-allocator-v2.patch 2013-09-23 03:38:39 UTC (rev 194715)
@@ -0,0 +1,57 @@
+Index: buckets/ssl_buckets.c
+===
+--- buckets/ssl_buckets.c   (revision 2130)
 buckets/ssl_buckets.c   (working copy)
+@@ -1192,21 +1192,16 @@
+ context-server_cert_userdata = data;
+ }
+ 
+-static serf_ssl_context_t *ssl_init_context(void)
++static serf_ssl_context_t *ssl_init_context(serf_bucket_alloc_t *allocator)
+ {
+ serf_ssl_context_t *ssl_ctx;
+-apr_pool_t *pool;
+-serf_bucket_alloc_t *allocator;
+ 
+ init_ssl_libraries();
+ 
+-apr_pool_create(pool, NULL);
+-allocator = serf_bucket_allocator_create(pool, NULL, NULL);
+-
+ ssl_ctx = serf_bucket_mem_alloc(allocator, sizeof(*ssl_ctx));
+ 
+ ssl_ctx-refcount = 0;
+-ssl_ctx-pool = pool;
++ssl_ctx-pool = serf_bucket_allocator_get_pool(allocator);
+ ssl_ctx-allocator = allocator;
+ 
+ ssl_ctx-ctx = SSL_CTX_new(SSLv23_client_method());
+@@ -1263,8 +1258,6 @@
+ static apr_status_t ssl_free_context(
+ serf_ssl_context_t *ssl_ctx)
+ {
+-apr_pool_t *p;
+-
+ /* If never had the pending buckets, don't try to free them. */
+ if (ssl_ctx-decrypt.pending != NULL) {
+ serf_bucket_destroy(ssl_ctx-decrypt.pending);
+@@ -1277,10 +1270,7 @@
+ SSL_free(ssl_ctx-ssl);
+ SSL_CTX_free(ssl_ctx-ctx);
+ 
+-p = ssl_ctx-pool;
+-
+ serf_bucket_mem_free(ssl_ctx-allocator, ssl_ctx);
+-apr_pool_destroy(p);
+ 
+ return APR_SUCCESS;
+ }
+@@ -1294,7 +1284,7 @@
+ 
+ ctx = serf_bucket_mem_alloc(allocator, sizeof(*ctx));
+ if (!ssl_ctx) {
+-ctx-ssl_ctx = ssl_init_context();
++ctx-ssl_ctx = ssl_init_context(allocator);
+ }
+ else {
+ ctx-ssl_ctx = ssl_ctx;



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

2013-09-22 Thread Ángel Velásquez
Date: Monday, September 23, 2013 @ 05:49:24
  Author: angvp
Revision: 194717

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

Added:
  serf/repos/testing-i686/
  serf/repos/testing-i686/serf-ssl-allocator-v2.patch
(from rev 194715, serf/trunk/serf-ssl-allocator-v2.patch)
  serf/repos/testing-x86_64/
  serf/repos/testing-x86_64/serf-ssl-allocator-v2.patch
(from rev 194715, serf/trunk/serf-ssl-allocator-v2.patch)
Deleted:
  serf/repos/testing-i686/PKGBUILD
  serf/repos/testing-x86_64/PKGBUILD

+
 testing-i686/PKGBUILD  |   32 ---
 testing-i686/serf-ssl-allocator-v2.patch   |   57 +++
 testing-x86_64/PKGBUILD|   32 ---
 testing-x86_64/serf-ssl-allocator-v2.patch |   57 +++
 4 files changed, 114 insertions(+), 64 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2013-09-23 03:27:03 UTC (rev 194712)
+++ testing-i686/PKGBUILD   2013-09-23 03:49:24 UTC (rev 194717)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org 
-# Contributor: Stéphane Gaudreault steph...@archlinux.org
-
-pkgname=serf
-pkgver=1.3.1
-pkgrel=1
-pkgdesc=High-performance asynchronous HTTP client library
-arch=('i686' 'x86_64')
-url=http://code.google.com/p/serf/;
-license=('Apache')
-depends=('apr-util')
-makedepends=('scons')
-options=('!libtool' '!staticlibs')
-source=(http://serf.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('da5aca0cad19fd9c19129c3f8f7393dd')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  scons PREFIX=/usr
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  scons check
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -d ${pkgdir}/usr
-  scons PREFIX=${pkgdir}/usr install
-}

Copied: serf/repos/testing-i686/serf-ssl-allocator-v2.patch (from rev 194715, 
serf/trunk/serf-ssl-allocator-v2.patch)
===
--- testing-i686/serf-ssl-allocator-v2.patch(rev 0)
+++ testing-i686/serf-ssl-allocator-v2.patch2013-09-23 03:49:24 UTC (rev 
194717)
@@ -0,0 +1,57 @@
+Index: buckets/ssl_buckets.c
+===
+--- buckets/ssl_buckets.c   (revision 2130)
 buckets/ssl_buckets.c   (working copy)
+@@ -1192,21 +1192,16 @@
+ context-server_cert_userdata = data;
+ }
+ 
+-static serf_ssl_context_t *ssl_init_context(void)
++static serf_ssl_context_t *ssl_init_context(serf_bucket_alloc_t *allocator)
+ {
+ serf_ssl_context_t *ssl_ctx;
+-apr_pool_t *pool;
+-serf_bucket_alloc_t *allocator;
+ 
+ init_ssl_libraries();
+ 
+-apr_pool_create(pool, NULL);
+-allocator = serf_bucket_allocator_create(pool, NULL, NULL);
+-
+ ssl_ctx = serf_bucket_mem_alloc(allocator, sizeof(*ssl_ctx));
+ 
+ ssl_ctx-refcount = 0;
+-ssl_ctx-pool = pool;
++ssl_ctx-pool = serf_bucket_allocator_get_pool(allocator);
+ ssl_ctx-allocator = allocator;
+ 
+ ssl_ctx-ctx = SSL_CTX_new(SSLv23_client_method());
+@@ -1263,8 +1258,6 @@
+ static apr_status_t ssl_free_context(
+ serf_ssl_context_t *ssl_ctx)
+ {
+-apr_pool_t *p;
+-
+ /* If never had the pending buckets, don't try to free them. */
+ if (ssl_ctx-decrypt.pending != NULL) {
+ serf_bucket_destroy(ssl_ctx-decrypt.pending);
+@@ -1277,10 +1270,7 @@
+ SSL_free(ssl_ctx-ssl);
+ SSL_CTX_free(ssl_ctx-ctx);
+ 
+-p = ssl_ctx-pool;
+-
+ serf_bucket_mem_free(ssl_ctx-allocator, ssl_ctx);
+-apr_pool_destroy(p);
+ 
+ return APR_SUCCESS;
+ }
+@@ -1294,7 +1284,7 @@
+ 
+ ctx = serf_bucket_mem_alloc(allocator, sizeof(*ctx));
+ if (!ssl_ctx) {
+-ctx-ssl_ctx = ssl_init_context();
++ctx-ssl_ctx = ssl_init_context(allocator);
+ }
+ else {
+ ctx-ssl_ctx = ssl_ctx;

Deleted: testing-x86_64/PKGBUILD
===
--- testing-x86_64/PKGBUILD 2013-09-23 03:27:03 UTC (rev 194712)
+++ testing-x86_64/PKGBUILD 2013-09-23 03:49:24 UTC (rev 194717)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org 
-# Contributor: Stéphane Gaudreault steph...@archlinux.org
-
-pkgname=serf
-pkgver=1.3.1
-pkgrel=1
-pkgdesc=High-performance asynchronous HTTP client library
-arch=('i686' 'x86_64')
-url=http://code.google.com/p/serf/;
-license=('Apache')
-depends=('apr-util')
-makedepends=('scons')
-options=('!libtool' '!staticlibs')
-source=(http://serf.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('da5aca0cad19fd9c19129c3f8f7393dd')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  scons PREFIX=/usr
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  scons check
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -d ${pkgdir}/usr
-  scons PREFIX=${pkgdir}/usr install
-}

Copied: 

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

2013-09-22 Thread Ángel Velásquez
Date: Monday, September 23, 2013 @ 05:50:48
  Author: angvp
Revision: 194718

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

Added:
  serf/repos/testing-i686/PKGBUILD
(from rev 194717, serf/trunk/PKGBUILD)
  serf/repos/testing-i686/serf-ssl-allocator-v2.patch
(from rev 194717, serf/trunk/serf-ssl-allocator-v2.patch)
  serf/repos/testing-x86_64/PKGBUILD
(from rev 194717, serf/trunk/PKGBUILD)
  serf/repos/testing-x86_64/serf-ssl-allocator-v2.patch
(from rev 194717, serf/trunk/serf-ssl-allocator-v2.patch)
Deleted:
  serf/repos/testing-i686/serf-ssl-allocator-v2.patch
  serf/repos/testing-x86_64/serf-ssl-allocator-v2.patch

+
 /serf-ssl-allocator-v2.patch   |  114 +++
 testing-i686/PKGBUILD  |   39 +
 testing-i686/serf-ssl-allocator-v2.patch   |   57 -
 testing-x86_64/PKGBUILD|   39 +
 testing-x86_64/serf-ssl-allocator-v2.patch |   57 -
 5 files changed, 192 insertions(+), 114 deletions(-)

Copied: serf/repos/testing-i686/PKGBUILD (from rev 194717, serf/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-09-23 03:50:48 UTC (rev 194718)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+
+pkgname=serf
+pkgver=1.3.1
+pkgrel=2
+pkgdesc=High-performance asynchronous HTTP client library
+arch=('i686' 'x86_64')
+url=http://code.google.com/p/serf/;
+license=('Apache')
+depends=('apr-util')
+makedepends=('scons')
+options=('!libtool' '!staticlibs')
+source=(http://serf.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2 
'serf-ssl-allocator-v2.patch')
+md5sums=('da5aca0cad19fd9c19129c3f8f7393dd'
+ 'a0ff486ee26f86cb2825decfd1dc8355')
+
+prepare() {
+  mv serf-ssl-allocator-v2.patch ${pkgname}-${pkgver} 
+  cd ${pkgname}-${pkgver}
+  patch -Np0 -i serf-ssl-allocator-v2.patch
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  scons PREFIX=/usr
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  scons check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -d ${pkgdir}/usr
+  scons PREFIX=${pkgdir}/usr install
+}

Deleted: testing-i686/serf-ssl-allocator-v2.patch
===
--- testing-i686/serf-ssl-allocator-v2.patch2013-09-23 03:49:24 UTC (rev 
194717)
+++ testing-i686/serf-ssl-allocator-v2.patch2013-09-23 03:50:48 UTC (rev 
194718)
@@ -1,57 +0,0 @@
-Index: buckets/ssl_buckets.c
-===
 buckets/ssl_buckets.c   (revision 2130)
-+++ buckets/ssl_buckets.c   (working copy)
-@@ -1192,21 +1192,16 @@
- context-server_cert_userdata = data;
- }
- 
--static serf_ssl_context_t *ssl_init_context(void)
-+static serf_ssl_context_t *ssl_init_context(serf_bucket_alloc_t *allocator)
- {
- serf_ssl_context_t *ssl_ctx;
--apr_pool_t *pool;
--serf_bucket_alloc_t *allocator;
- 
- init_ssl_libraries();
- 
--apr_pool_create(pool, NULL);
--allocator = serf_bucket_allocator_create(pool, NULL, NULL);
--
- ssl_ctx = serf_bucket_mem_alloc(allocator, sizeof(*ssl_ctx));
- 
- ssl_ctx-refcount = 0;
--ssl_ctx-pool = pool;
-+ssl_ctx-pool = serf_bucket_allocator_get_pool(allocator);
- ssl_ctx-allocator = allocator;
- 
- ssl_ctx-ctx = SSL_CTX_new(SSLv23_client_method());
-@@ -1263,8 +1258,6 @@
- static apr_status_t ssl_free_context(
- serf_ssl_context_t *ssl_ctx)
- {
--apr_pool_t *p;
--
- /* If never had the pending buckets, don't try to free them. */
- if (ssl_ctx-decrypt.pending != NULL) {
- serf_bucket_destroy(ssl_ctx-decrypt.pending);
-@@ -1277,10 +1270,7 @@
- SSL_free(ssl_ctx-ssl);
- SSL_CTX_free(ssl_ctx-ctx);
- 
--p = ssl_ctx-pool;
--
- serf_bucket_mem_free(ssl_ctx-allocator, ssl_ctx);
--apr_pool_destroy(p);
- 
- return APR_SUCCESS;
- }
-@@ -1294,7 +1284,7 @@
- 
- ctx = serf_bucket_mem_alloc(allocator, sizeof(*ctx));
- if (!ssl_ctx) {
--ctx-ssl_ctx = ssl_init_context();
-+ctx-ssl_ctx = ssl_init_context(allocator);
- }
- else {
- ctx-ssl_ctx = ssl_ctx;

Copied: serf/repos/testing-i686/serf-ssl-allocator-v2.patch (from rev 194717, 
serf/trunk/serf-ssl-allocator-v2.patch)
===
--- testing-i686/serf-ssl-allocator-v2.patch(rev 0)
+++ testing-i686/serf-ssl-allocator-v2.patch2013-09-23 03:50:48 UTC (rev 
194718)
@@ -0,0 +1,57 @@
+Index: buckets/ssl_buckets.c
+===
+--- buckets/ssl_buckets.c   (revision 2130)
 buckets/ssl_buckets.c   (working copy)
+@@ -1192,21 +1192,16 @@
+ context-server_cert_userdata = data;
+ }
+ 
+-static 

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

2013-09-22 Thread Ángel Velásquez
Date: Monday, September 23, 2013 @ 05:52:26
  Author: angvp
Revision: 194719

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

Deleted:
  serf/repos/testing-i686/serf-ssl-allocator-v2.patch
  serf/repos/testing-x86_64/serf-ssl-allocator-v2.patch

+
 testing-i686/serf-ssl-allocator-v2.patch   |   57 ---
 testing-x86_64/serf-ssl-allocator-v2.patch |   57 ---
 2 files changed, 114 deletions(-)

Deleted: testing-i686/serf-ssl-allocator-v2.patch
===
--- testing-i686/serf-ssl-allocator-v2.patch2013-09-23 03:50:48 UTC (rev 
194718)
+++ testing-i686/serf-ssl-allocator-v2.patch2013-09-23 03:52:26 UTC (rev 
194719)
@@ -1,57 +0,0 @@
-Index: buckets/ssl_buckets.c
-===
 buckets/ssl_buckets.c   (revision 2130)
-+++ buckets/ssl_buckets.c   (working copy)
-@@ -1192,21 +1192,16 @@
- context-server_cert_userdata = data;
- }
- 
--static serf_ssl_context_t *ssl_init_context(void)
-+static serf_ssl_context_t *ssl_init_context(serf_bucket_alloc_t *allocator)
- {
- serf_ssl_context_t *ssl_ctx;
--apr_pool_t *pool;
--serf_bucket_alloc_t *allocator;
- 
- init_ssl_libraries();
- 
--apr_pool_create(pool, NULL);
--allocator = serf_bucket_allocator_create(pool, NULL, NULL);
--
- ssl_ctx = serf_bucket_mem_alloc(allocator, sizeof(*ssl_ctx));
- 
- ssl_ctx-refcount = 0;
--ssl_ctx-pool = pool;
-+ssl_ctx-pool = serf_bucket_allocator_get_pool(allocator);
- ssl_ctx-allocator = allocator;
- 
- ssl_ctx-ctx = SSL_CTX_new(SSLv23_client_method());
-@@ -1263,8 +1258,6 @@
- static apr_status_t ssl_free_context(
- serf_ssl_context_t *ssl_ctx)
- {
--apr_pool_t *p;
--
- /* If never had the pending buckets, don't try to free them. */
- if (ssl_ctx-decrypt.pending != NULL) {
- serf_bucket_destroy(ssl_ctx-decrypt.pending);
-@@ -1277,10 +1270,7 @@
- SSL_free(ssl_ctx-ssl);
- SSL_CTX_free(ssl_ctx-ctx);
- 
--p = ssl_ctx-pool;
--
- serf_bucket_mem_free(ssl_ctx-allocator, ssl_ctx);
--apr_pool_destroy(p);
- 
- return APR_SUCCESS;
- }
-@@ -1294,7 +1284,7 @@
- 
- ctx = serf_bucket_mem_alloc(allocator, sizeof(*ctx));
- if (!ssl_ctx) {
--ctx-ssl_ctx = ssl_init_context();
-+ctx-ssl_ctx = ssl_init_context(allocator);
- }
- else {
- ctx-ssl_ctx = ssl_ctx;

Deleted: testing-x86_64/serf-ssl-allocator-v2.patch
===
--- testing-x86_64/serf-ssl-allocator-v2.patch  2013-09-23 03:50:48 UTC (rev 
194718)
+++ testing-x86_64/serf-ssl-allocator-v2.patch  2013-09-23 03:52:26 UTC (rev 
194719)
@@ -1,57 +0,0 @@
-Index: buckets/ssl_buckets.c
-===
 buckets/ssl_buckets.c   (revision 2130)
-+++ buckets/ssl_buckets.c   (working copy)
-@@ -1192,21 +1192,16 @@
- context-server_cert_userdata = data;
- }
- 
--static serf_ssl_context_t *ssl_init_context(void)
-+static serf_ssl_context_t *ssl_init_context(serf_bucket_alloc_t *allocator)
- {
- serf_ssl_context_t *ssl_ctx;
--apr_pool_t *pool;
--serf_bucket_alloc_t *allocator;
- 
- init_ssl_libraries();
- 
--apr_pool_create(pool, NULL);
--allocator = serf_bucket_allocator_create(pool, NULL, NULL);
--
- ssl_ctx = serf_bucket_mem_alloc(allocator, sizeof(*ssl_ctx));
- 
- ssl_ctx-refcount = 0;
--ssl_ctx-pool = pool;
-+ssl_ctx-pool = serf_bucket_allocator_get_pool(allocator);
- ssl_ctx-allocator = allocator;
- 
- ssl_ctx-ctx = SSL_CTX_new(SSLv23_client_method());
-@@ -1263,8 +1258,6 @@
- static apr_status_t ssl_free_context(
- serf_ssl_context_t *ssl_ctx)
- {
--apr_pool_t *p;
--
- /* If never had the pending buckets, don't try to free them. */
- if (ssl_ctx-decrypt.pending != NULL) {
- serf_bucket_destroy(ssl_ctx-decrypt.pending);
-@@ -1277,10 +1270,7 @@
- SSL_free(ssl_ctx-ssl);
- SSL_CTX_free(ssl_ctx-ctx);
- 
--p = ssl_ctx-pool;
--
- serf_bucket_mem_free(ssl_ctx-allocator, ssl_ctx);
--apr_pool_destroy(p);
- 
- return APR_SUCCESS;
- }
-@@ -1294,7 +1284,7 @@
- 
- ctx = serf_bucket_mem_alloc(allocator, sizeof(*ctx));
- if (!ssl_ctx) {
--ctx-ssl_ctx = ssl_init_context();
-+ctx-ssl_ctx = ssl_init_context(allocator);
- }
- else {
- ctx-ssl_ctx = ssl_ctx;



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

2013-09-15 Thread Ángel Velásquez
Date: Monday, September 16, 2013 @ 06:48:58
  Author: angvp
Revision: 194399

upgpkg: subversion 1.8.3-1

Version bump + rebuilt against new serf

Modified:
  subversion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-16 01:46:20 UTC (rev 194398)
+++ PKGBUILD2013-09-16 04:48:58 UTC (rev 194399)
@@ -5,8 +5,8 @@
 # Contributor: Jason Chu ja...@archlinux.org
 
 pkgname=subversion
-pkgver=1.8.1
-pkgrel=2
+pkgver=1.8.3
+pkgrel=1
 pkgdesc=A Modern Concurrent Version Control System
 arch=('i686' 'x86_64')
 url=http://subversion.apache.org/;
@@ -24,13 +24,13 @@
 backup=('etc/xinetd.d/svn' 'etc/conf.d/svnserve')
 options=('!makeflags' '!libtool' '!emptydirs')
 install=${pkgname}.install
-source=(http://www.apache.org/dist/subversion/subversion-1.8.1.tar.bz2{,.asc}
+source=(http://www.apache.org/dist/subversion/subversion-${pkgver}.tar.bz2{,.asc}
 svn
 svnserve.conf
 svnserve.tmpfiles
 svnserve.service
 subversion.rpath.fix.patch)
-md5sums=('f2ee0471b8a560f5efa0f2349d9c9ab9'
+md5sums=('7d7bd97347a4491e1ffb529563ce2e9e'
  'SKIP'
  'a0db6dd43af33952739b6ec089852630'
  'c459e299192552f61578f3438abf0664'
@@ -60,11 +60,11 @@
  swig_pydir_extra=/usr/lib/python2.7/site-packages/svn swig-py swig-pl 
javahl swig-rb
 }
 
-check() {
-   cd ${pkgname}-${pkgver}
-   export LANG=C LC_ALL=C
-   make check check-swig-pl check-swig-py check-swig-rb CLEANUP=yes # 
check-javahl
-}
+#check() {
+#   cd ${pkgname}-${pkgver}
+#   export LANG=C LC_ALL=C
+#   make check check-swig-pl check-swig-py check-swig-rb CLEANUP=yes # 
check-javahl
+#}
 
 package() {
cd ${pkgname}-${pkgver}



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

2013-09-15 Thread Ángel Velásquez
Date: Monday, September 16, 2013 @ 06:50:43
  Author: angvp
Revision: 194400

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

Added:
  subversion/repos/staging-i686/
  subversion/repos/staging-i686/PKGBUILD
(from rev 194399, subversion/trunk/PKGBUILD)
  subversion/repos/staging-i686/subversion.install
(from rev 194399, subversion/trunk/subversion.install)
  subversion/repos/staging-i686/subversion.rpath.fix.patch
(from rev 194399, subversion/trunk/subversion.rpath.fix.patch)
  subversion/repos/staging-i686/svn
(from rev 194399, subversion/trunk/svn)
  subversion/repos/staging-i686/svnserve.conf
(from rev 194399, subversion/trunk/svnserve.conf)
  subversion/repos/staging-i686/svnserve.service
(from rev 194399, subversion/trunk/svnserve.service)
  subversion/repos/staging-i686/svnserve.tmpfiles
(from rev 194399, subversion/trunk/svnserve.tmpfiles)
  subversion/repos/staging-x86_64/
  subversion/repos/staging-x86_64/PKGBUILD
(from rev 194399, subversion/trunk/PKGBUILD)
  subversion/repos/staging-x86_64/subversion.install
(from rev 194399, subversion/trunk/subversion.install)
  subversion/repos/staging-x86_64/subversion.rpath.fix.patch
(from rev 194399, subversion/trunk/subversion.rpath.fix.patch)
  subversion/repos/staging-x86_64/svn
(from rev 194399, subversion/trunk/svn)
  subversion/repos/staging-x86_64/svnserve.conf
(from rev 194399, subversion/trunk/svnserve.conf)
  subversion/repos/staging-x86_64/svnserve.service
(from rev 194399, subversion/trunk/svnserve.service)
  subversion/repos/staging-x86_64/svnserve.tmpfiles
(from rev 194399, subversion/trunk/svnserve.tmpfiles)

---+
 staging-i686/PKGBUILD |   99 
 staging-i686/subversion.install   |7 +
 staging-i686/subversion.rpath.fix.patch   |   10 ++
 staging-i686/svn  |   11 +++
 staging-i686/svnserve.conf|7 +
 staging-i686/svnserve.service |   11 +++
 staging-i686/svnserve.tmpfiles|1 
 staging-x86_64/PKGBUILD   |   99 
 staging-x86_64/subversion.install |7 +
 staging-x86_64/subversion.rpath.fix.patch |   10 ++
 staging-x86_64/svn|   11 +++
 staging-x86_64/svnserve.conf  |7 +
 staging-x86_64/svnserve.service   |   11 +++
 staging-x86_64/svnserve.tmpfiles  |1 
 14 files changed, 292 insertions(+)

Copied: subversion/repos/staging-i686/PKGBUILD (from rev 194399, 
subversion/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-09-16 04:50:43 UTC (rev 194400)
@@ -0,0 +1,99 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Paul Mattal p...@archlinux.org
+# Contributor: Jason Chu ja...@archlinux.org
+
+pkgname=subversion
+pkgver=1.8.3
+pkgrel=1
+pkgdesc=A Modern Concurrent Version Control System
+arch=('i686' 'x86_64')
+url=http://subversion.apache.org/;
+license=('APACHE')
+depends=('sqlite' 'file' 'serf' 'systemd')
+makedepends=('apache' 'python2' 'perl' 'swig' 'java-runtime' 'java-environment'
+ 'libgnome-keyring' 'kdelibs' 'ruby')
+optdepends=('libgnome-keyring: for GNOME Keyring for auth credentials'
+'kdeutils-kwallet: for KWallet for auth credentials'
+'bash-completion: for svn bash completion'
+'python2: for some hook scripts'
+'java-environment: for Java support'
+'ruby: for some hook scripts')
+provides=('svn')
+backup=('etc/xinetd.d/svn' 'etc/conf.d/svnserve')
+options=('!makeflags' '!libtool' '!emptydirs')
+install=${pkgname}.install
+source=(http://www.apache.org/dist/subversion/subversion-${pkgver}.tar.bz2{,.asc}
+svn
+svnserve.conf
+svnserve.tmpfiles
+svnserve.service
+subversion.rpath.fix.patch)
+md5sums=('7d7bd97347a4491e1ffb529563ce2e9e'
+ 'SKIP'
+ 'a0db6dd43af33952739b6ec089852630'
+ 'c459e299192552f61578f3438abf0664'
+ 'bb2857eceafcfac35dde39dcffad2314'
+ 'e8020c7a1d1a0c47091b5fdd034f81c5'
+ '6b4340ba9d8845cd8497e013ae01be3f')
+
+prepare() {
+   cd ${pkgname}-${pkgver}
+   patch -Np0 -i ../subversion.rpath.fix.patch
+   sed -i 's|/usr/bin/env python|/usr/bin/env python2|' 
tools/hook-scripts/{,mailer/{,tests/}}*.py
+}
+
+build() {
+   cd ${pkgname}-${pkgver}
+   export PYTHON=/usr/bin/python2
+   ./configure --prefix=/usr --with-apr=/usr --with-apr-util=/usr \
+   --with-zlib=/usr --with-serf=/usr --with-apxs \
+   --with-sqlite=/usr 
--with-berkeley-db=:/usr/include/:/usr/lib:db-5.3 \
+   --enable-javahl --with-gnome-keyring --with-kwallet \
+   

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

2013-09-15 Thread Ángel Velásquez
Date: Monday, September 16, 2013 @ 07:03:29
  Author: angvp
Revision: 194401

upgpkg: python-setuptools 1.1-1

Version bump to 1.1

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-16 04:50:43 UTC (rev 194400)
+++ PKGBUILD2013-09-16 05:03:29 UTC (rev 194401)
@@ -2,7 +2,7 @@
 # Maintainer: Angel Velasquez an...@archlinux.org
 pkgbase=python-setuptools
 pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=1.0
+pkgver=1.1
 pkgrel=1
 pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
 arch=('any')
@@ -10,7 +10,7 @@
 url=http://pypi.python.org/pypi/setuptools;
 makedepends=('python' 'python2')
 
source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz)
-md5sums=('3d196ffb6e5e4425daddbb4fe42a4a74')
+md5sums=('84062633c3818c912af76d54a40d11a7')
 
 #check() {
 #   # Check python3 module



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

2013-09-15 Thread Ángel Velásquez
Date: Monday, September 16, 2013 @ 07:04:06
  Author: angvp
Revision: 194402

archrelease: copy trunk to testing-any

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

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

Copied: python-setuptools/repos/testing-any/PKGBUILD (from rev 194401, 
python-setuptools/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-09-16 05:04:06 UTC (rev 194402)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=1.1
+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)
+md5sums=('84062633c3818c912af76d54a40d11a7')
+
+#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 python-setuptools/trunk (PKGBUILD)

2013-09-15 Thread Ángel Velásquez
Date: Monday, September 16, 2013 @ 07:25:24
  Author: angvp
Revision: 194403

upgpkg: python-setuptools 1.1.5-1

Version bump to 1.1.5

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-16 05:04:06 UTC (rev 194402)
+++ PKGBUILD2013-09-16 05:25:24 UTC (rev 194403)
@@ -2,7 +2,7 @@
 # Maintainer: Angel Velasquez an...@archlinux.org
 pkgbase=python-setuptools
 pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=1.1
+pkgver=1.1.5
 pkgrel=1
 pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
 arch=('any')
@@ -10,7 +10,7 @@
 url=http://pypi.python.org/pypi/setuptools;
 makedepends=('python' 'python2')
 
source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz)
-md5sums=('84062633c3818c912af76d54a40d11a7')
+md5sums=('8d2a7d43de8e1d1e1e92366cc9f93be2')
 
 #check() {
 #   # Check python3 module



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

2013-09-15 Thread Ángel Velásquez
Date: Monday, September 16, 2013 @ 07:26:09
  Author: angvp
Revision: 194404

archrelease: copy trunk to testing-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-09-16 05:25:24 UTC (rev 194403)
+++ PKGBUILD2013-09-16 05:26:09 UTC (rev 194404)
@@ -1,67 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org
-pkgbase=python-setuptools
-pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=1.1
-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)
-md5sums=('84062633c3818c912af76d54a40d11a7')
-
-#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
-}

Copied: python-setuptools/repos/testing-any/PKGBUILD (from rev 194403, 
python-setuptools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-09-16 05:26:09 UTC (rev 194404)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=1.1.5
+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)
+md5sums=('8d2a7d43de8e1d1e1e92366cc9f93be2')
+
+#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 python-astroid/trunk (PKGBUILD)

2013-08-26 Thread Ángel Velásquez
Date: Monday, August 26, 2013 @ 09:32:32
  Author: angvp
Revision: 193612

upgpkg: python-astroid 1.0.0-3

Fixes wrong dependency

Modified:
  python-astroid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-26 07:04:31 UTC (rev 193611)
+++ PKGBUILD2013-08-26 07:32:32 UTC (rev 193612)
@@ -4,7 +4,7 @@
 pkgbase=python-astroid
 pkgname=('python2-astroid' 'python-astroid')
 pkgver=1.0.0
-pkgrel=2
+pkgrel=3
 pkgdesc=Useful miscellaneous modules used by Logilab projects
 arch=('any')
 url=http://www.logilab.org/project/logilab-common;
@@ -38,8 +38,8 @@
 }
 
 package_python-astroid() {
-  depends=('python')
-  replaces=('python-logilab-astng' 'python-logilab-common')
+  depends=('python' 'python-logilab-common')
+  replaces=('python-logilab-astng')
   conflicts=('python-logilab-astng')
   cd ${srcdir}/astroid-${pkgver}-py3
 



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

2013-08-26 Thread Ángel Velásquez
Date: Monday, August 26, 2013 @ 09:33:20
  Author: angvp
Revision: 193613

archrelease: copy trunk to testing-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-26 07:32:32 UTC (rev 193612)
+++ PKGBUILD2013-08-26 07:33:20 UTC (rev 193613)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org 
-
-pkgbase=python-astroid
-pkgname=('python2-astroid' 'python-astroid')
-pkgver=1.0.0
-pkgrel=2
-pkgdesc=Useful miscellaneous modules used by Logilab projects
-arch=('any')
-url=http://www.logilab.org/project/logilab-common;
-license=('LGPL')
-makedepends=('python2' 'python')
-source=(https://pypi.python.org/packages/source/a/astroid/astroid-${pkgver}.tar.gz)
-sha1sums=('2ebba76d115cb8a2d84d8777d8535ddac86daaa6')
-
-build() {
-  cd ${srcdir}
-
-  cp -a astroid-${pkgver}{,-py3}
-
-  cd astroid-${pkgver}
-  python2 setup.py build
-
-  cd ../astroid-${pkgver}-py3
-  python3 setup.py build
-}
-
-package_python2-astroid() {
-  depends=('python2' 'python2-logilab-common')
-  replaces=('python2-logilab-astng')
-  conflicts=('python2-logilab-astng')
-  cd ${srcdir}/astroid-${pkgver}
-
-  python2 setup.py install --optimize=1 --skip-build --prefix=/usr 
--root=${pkgdir}
-
-  # fix permissions ...
-  find ${pkgdir} -type f -exec chmod +r {} \;
-}
-
-package_python-astroid() {
-  depends=('python')
-  replaces=('python-logilab-astng' 'python-logilab-common')
-  conflicts=('python-logilab-astng')
-  cd ${srcdir}/astroid-${pkgver}-py3
-
-  python3 setup.py install --optimize=1 --skip-build --prefix=/usr 
--root=${pkgdir}
-
-  # fix permissions ...
-  find ${pkgdir} -type f -exec chmod +r {} \;
-}

Copied: python-astroid/repos/testing-any/PKGBUILD (from rev 193612, 
python-astroid/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-26 07:33:20 UTC (rev 193613)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+
+pkgbase=python-astroid
+pkgname=('python2-astroid' 'python-astroid')
+pkgver=1.0.0
+pkgrel=3
+pkgdesc=Useful miscellaneous modules used by Logilab projects
+arch=('any')
+url=http://www.logilab.org/project/logilab-common;
+license=('LGPL')
+makedepends=('python2' 'python')
+source=(https://pypi.python.org/packages/source/a/astroid/astroid-${pkgver}.tar.gz)
+sha1sums=('2ebba76d115cb8a2d84d8777d8535ddac86daaa6')
+
+build() {
+  cd ${srcdir}
+
+  cp -a astroid-${pkgver}{,-py3}
+
+  cd astroid-${pkgver}
+  python2 setup.py build
+
+  cd ../astroid-${pkgver}-py3
+  python3 setup.py build
+}
+
+package_python2-astroid() {
+  depends=('python2' 'python2-logilab-common')
+  replaces=('python2-logilab-astng')
+  conflicts=('python2-logilab-astng')
+  cd ${srcdir}/astroid-${pkgver}
+
+  python2 setup.py install --optimize=1 --skip-build --prefix=/usr 
--root=${pkgdir}
+
+  # fix permissions ...
+  find ${pkgdir} -type f -exec chmod +r {} \;
+}
+
+package_python-astroid() {
+  depends=('python' 'python-logilab-common')
+  replaces=('python-logilab-astng')
+  conflicts=('python-logilab-astng')
+  cd ${srcdir}/astroid-${pkgver}-py3
+
+  python3 setup.py install --optimize=1 --skip-build --prefix=/usr 
--root=${pkgdir}
+
+  # fix permissions ...
+  find ${pkgdir} -type f -exec chmod +r {} \;
+}



[arch-commits] Commit in (python-logilab-astng serf/trunk/PKGBUILD)

2013-08-26 Thread Ángel Velásquez
Date: Monday, August 26, 2013 @ 09:41:28
  Author: angvp
Revision: 193617

Removing python-logilab-astng

Modified:
  serf/trunk/PKGBUILD
Deleted:
  python-logilab-astng/

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

Modified: serf/trunk/PKGBUILD
===
--- serf/trunk/PKGBUILD 2013-08-26 07:39:10 UTC (rev 193616)
+++ serf/trunk/PKGBUILD 2013-08-26 07:41:28 UTC (rev 193617)
@@ -1,8 +1,9 @@
 # $Id$
-# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
 
 pkgname=serf
-pkgver=1.3.0
+pkgver=1.3.1
 pkgrel=1
 pkgdesc=High-performance asynchronous HTTP client library
 arch=('i686' 'x86_64')
@@ -12,7 +13,7 @@
 makedepends=('scons')
 options=('!libtool' '!staticlibs')
 source=(http://serf.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('14ed3e1dc195016a548499b3831f3df6b2501d27')
+md5sums=('da5aca0cad19fd9c19129c3f8f7393dd')
 
 build() {
   cd ${pkgname}-${pkgver}



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

2013-08-26 Thread Ángel Velásquez
Date: Monday, August 26, 2013 @ 09:55:56
  Author: angvp
Revision: 193618

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

Added:
  serf/repos/staging-i686/
  serf/repos/staging-i686/PKGBUILD
(from rev 193617, serf/trunk/PKGBUILD)
  serf/repos/staging-x86_64/
  serf/repos/staging-x86_64/PKGBUILD
(from rev 193617, serf/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   32 
 staging-x86_64/PKGBUILD |   32 
 2 files changed, 64 insertions(+)

Copied: serf/repos/staging-i686/PKGBUILD (from rev 193617, serf/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-08-26 07:55:56 UTC (rev 193618)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+
+pkgname=serf
+pkgver=1.3.1
+pkgrel=1
+pkgdesc=High-performance asynchronous HTTP client library
+arch=('i686' 'x86_64')
+url=http://code.google.com/p/serf/;
+license=('Apache')
+depends=('apr-util')
+makedepends=('scons')
+options=('!libtool' '!staticlibs')
+source=(http://serf.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('da5aca0cad19fd9c19129c3f8f7393dd')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  scons PREFIX=/usr
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  scons check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -d ${pkgdir}/usr
+  scons PREFIX=${pkgdir}/usr install
+}

Copied: serf/repos/staging-x86_64/PKGBUILD (from rev 193617, 
serf/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-08-26 07:55:56 UTC (rev 193618)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+
+pkgname=serf
+pkgver=1.3.1
+pkgrel=1
+pkgdesc=High-performance asynchronous HTTP client library
+arch=('i686' 'x86_64')
+url=http://code.google.com/p/serf/;
+license=('Apache')
+depends=('apr-util')
+makedepends=('scons')
+options=('!libtool' '!staticlibs')
+source=(http://serf.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('da5aca0cad19fd9c19129c3f8f7393dd')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  scons PREFIX=/usr
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  scons check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -d ${pkgdir}/usr
+  scons PREFIX=${pkgdir}/usr install
+}



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

2013-08-24 Thread Ángel Velásquez
Date: Saturday, August 24, 2013 @ 23:14:32
  Author: angvp
Revision: 193591

upgpkg: python-astroid 1.0.0-2

Add logilab-common dependency. Fixes FS#36688

Modified:
  python-astroid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-24 17:41:43 UTC (rev 193590)
+++ PKGBUILD2013-08-24 21:14:32 UTC (rev 193591)
@@ -4,7 +4,7 @@
 pkgbase=python-astroid
 pkgname=('python2-astroid' 'python-astroid')
 pkgver=1.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc=Useful miscellaneous modules used by Logilab projects
 arch=('any')
 url=http://www.logilab.org/project/logilab-common;
@@ -26,7 +26,7 @@
 }
 
 package_python2-astroid() {
-  depends=('python2')
+  depends=('python2' 'python2-logilab-common')
   replaces=('python2-logilab-astng')
   conflicts=('python2-logilab-astng')
   cd ${srcdir}/astroid-${pkgver}
@@ -39,7 +39,7 @@
 
 package_python-astroid() {
   depends=('python')
-  replaces=('python-logilab-astng')
+  replaces=('python-logilab-astng' 'python-logilab-common')
   conflicts=('python-logilab-astng')
   cd ${srcdir}/astroid-${pkgver}-py3
 



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

2013-08-24 Thread Ángel Velásquez
Date: Saturday, August 24, 2013 @ 23:15:17
  Author: angvp
Revision: 193592

archrelease: copy trunk to testing-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-24 21:14:32 UTC (rev 193591)
+++ PKGBUILD2013-08-24 21:15:17 UTC (rev 193592)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org 
-
-pkgbase=python-astroid
-pkgname=('python2-astroid' 'python-astroid')
-pkgver=1.0.0
-pkgrel=1
-pkgdesc=Useful miscellaneous modules used by Logilab projects
-arch=('any')
-url=http://www.logilab.org/project/logilab-common;
-license=('LGPL')
-makedepends=('python2' 'python')
-source=(https://pypi.python.org/packages/source/a/astroid/astroid-${pkgver}.tar.gz)
-sha1sums=('2ebba76d115cb8a2d84d8777d8535ddac86daaa6')
-
-build() {
-  cd ${srcdir}
-
-  cp -a astroid-${pkgver}{,-py3}
-
-  cd astroid-${pkgver}
-  python2 setup.py build
-
-  cd ../astroid-${pkgver}-py3
-  python3 setup.py build
-}
-
-package_python2-astroid() {
-  depends=('python2')
-  replaces=('python2-logilab-astng')
-  conflicts=('python2-logilab-astng')
-  cd ${srcdir}/astroid-${pkgver}
-
-  python2 setup.py install --optimize=1 --skip-build --prefix=/usr 
--root=${pkgdir}
-
-  # fix permissions ...
-  find ${pkgdir} -type f -exec chmod +r {} \;
-}
-
-package_python-astroid() {
-  depends=('python')
-  replaces=('python-logilab-astng')
-  conflicts=('python-logilab-astng')
-  cd ${srcdir}/astroid-${pkgver}-py3
-
-  python3 setup.py install --optimize=1 --skip-build --prefix=/usr 
--root=${pkgdir}
-
-  # fix permissions ...
-  find ${pkgdir} -type f -exec chmod +r {} \;
-}

Copied: python-astroid/repos/testing-any/PKGBUILD (from rev 193591, 
python-astroid/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-24 21:15:17 UTC (rev 193592)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+
+pkgbase=python-astroid
+pkgname=('python2-astroid' 'python-astroid')
+pkgver=1.0.0
+pkgrel=2
+pkgdesc=Useful miscellaneous modules used by Logilab projects
+arch=('any')
+url=http://www.logilab.org/project/logilab-common;
+license=('LGPL')
+makedepends=('python2' 'python')
+source=(https://pypi.python.org/packages/source/a/astroid/astroid-${pkgver}.tar.gz)
+sha1sums=('2ebba76d115cb8a2d84d8777d8535ddac86daaa6')
+
+build() {
+  cd ${srcdir}
+
+  cp -a astroid-${pkgver}{,-py3}
+
+  cd astroid-${pkgver}
+  python2 setup.py build
+
+  cd ../astroid-${pkgver}-py3
+  python3 setup.py build
+}
+
+package_python2-astroid() {
+  depends=('python2' 'python2-logilab-common')
+  replaces=('python2-logilab-astng')
+  conflicts=('python2-logilab-astng')
+  cd ${srcdir}/astroid-${pkgver}
+
+  python2 setup.py install --optimize=1 --skip-build --prefix=/usr 
--root=${pkgdir}
+
+  # fix permissions ...
+  find ${pkgdir} -type f -exec chmod +r {} \;
+}
+
+package_python-astroid() {
+  depends=('python')
+  replaces=('python-logilab-astng' 'python-logilab-common')
+  conflicts=('python-logilab-astng')
+  cd ${srcdir}/astroid-${pkgver}-py3
+
+  python3 setup.py install --optimize=1 --skip-build --prefix=/usr 
--root=${pkgdir}
+
+  # fix permissions ...
+  find ${pkgdir} -type f -exec chmod +r {} \;
+}



[arch-commits] Commit in (4 files)

2013-08-21 Thread Ángel Velásquez
Date: Wednesday, August 21, 2013 @ 11:50:12
  Author: angvp
Revision: 193488

Add python-astroid (dependency of pylint)

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

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

Added: python-astroid/trunk/PKGBUILD
===
--- python-astroid/trunk/PKGBUILD   (rev 0)
+++ python-astroid/trunk/PKGBUILD   2013-08-21 09:50:12 UTC (rev 193488)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+
+pkgbase=python-astroid
+pkgname=('python2-astroid' 'python-astroid')
+pkgver=1.0.0
+pkgrel=1
+pkgdesc=Useful miscellaneous modules used by Logilab projects
+arch=('any')
+url=http://www.logilab.org/project/logilab-common;
+license=('LGPL')
+makedepends=('python2' 'python')
+source=(https://pypi.python.org/packages/source/a/astroid/astroid-${pkgver}.tar.gz)
+sha1sums=('2ebba76d115cb8a2d84d8777d8535ddac86daaa6')
+
+build() {
+  cd ${srcdir}
+
+  cp -a astroid-${pkgver}{,-py3}
+
+  cd astroid-${pkgver}
+  python2 setup.py build
+
+  cd ../astroid-${pkgver}-py3
+  python3 setup.py build
+}
+
+package_python2-astroid() {
+  depends=('python2')
+  replaces=('python2-logilab-astng')
+  conflicts=('python2-logilab-astng')
+  cd ${srcdir}/astroid-${pkgver}
+
+  python2 setup.py install --optimize=1 --skip-build --prefix=/usr 
--root=${pkgdir}
+
+  # fix permissions ...
+  find ${pkgdir} -type f -exec chmod +r {} \;
+}
+
+package_python-astroid() {
+  depends=('python')
+  replaces=('python-logilab-astng')
+  conflicts=('python-logilab-astng')
+  cd ${srcdir}/astroid-${pkgver}-py3
+
+  python3 setup.py install --optimize=1 --skip-build --prefix=/usr 
--root=${pkgdir}
+
+  # fix permissions ...
+  find ${pkgdir} -type f -exec chmod +r {} \;
+}


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


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

2013-08-21 Thread Ángel Velásquez
Date: Wednesday, August 21, 2013 @ 11:52:18
  Author: angvp
Revision: 193489

archrelease: copy trunk to testing-any

Added:
  python-astroid/repos/testing-any/
  python-astroid/repos/testing-any/PKGBUILD
(from rev 193488, python-astroid/trunk/PKGBUILD)

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

Copied: python-astroid/repos/testing-any/PKGBUILD (from rev 193488, 
python-astroid/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-08-21 09:52:18 UTC (rev 193489)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org 
+
+pkgbase=python-astroid
+pkgname=('python2-astroid' 'python-astroid')
+pkgver=1.0.0
+pkgrel=1
+pkgdesc=Useful miscellaneous modules used by Logilab projects
+arch=('any')
+url=http://www.logilab.org/project/logilab-common;
+license=('LGPL')
+makedepends=('python2' 'python')
+source=(https://pypi.python.org/packages/source/a/astroid/astroid-${pkgver}.tar.gz)
+sha1sums=('2ebba76d115cb8a2d84d8777d8535ddac86daaa6')
+
+build() {
+  cd ${srcdir}
+
+  cp -a astroid-${pkgver}{,-py3}
+
+  cd astroid-${pkgver}
+  python2 setup.py build
+
+  cd ../astroid-${pkgver}-py3
+  python3 setup.py build
+}
+
+package_python2-astroid() {
+  depends=('python2')
+  replaces=('python2-logilab-astng')
+  conflicts=('python2-logilab-astng')
+  cd ${srcdir}/astroid-${pkgver}
+
+  python2 setup.py install --optimize=1 --skip-build --prefix=/usr 
--root=${pkgdir}
+
+  # fix permissions ...
+  find ${pkgdir} -type f -exec chmod +r {} \;
+}
+
+package_python-astroid() {
+  depends=('python')
+  replaces=('python-logilab-astng')
+  conflicts=('python-logilab-astng')
+  cd ${srcdir}/astroid-${pkgver}-py3
+
+  python3 setup.py install --optimize=1 --skip-build --prefix=/usr 
--root=${pkgdir}
+
+  # fix permissions ...
+  find ${pkgdir} -type f -exec chmod +r {} \;
+}



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

2013-08-21 Thread Ángel Velásquez
Date: Wednesday, August 21, 2013 @ 12:05:44
  Author: angvp
Revision: 193490

upgpkg: pylint 1.0.0-3

Add python-astroid instead of astng FS#36625

Modified:
  pylint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-21 09:52:18 UTC (rev 193489)
+++ PKGBUILD2013-08-21 10:05:44 UTC (rev 193490)
@@ -6,14 +6,13 @@
 pkgbase=pylint
 pkgname=('python2-pylint' 'python-pylint')
 pkgver=1.0.0
-pkgrel=2
+pkgrel=3
 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') 
+makedepends=('python2-astroid' 'python-astroid') 
 optdepends=('tk: Pylint GUI')
-conflicts=('pylint=0.26.0-2')
 
source=(http://pypi.python.org/packages/source/p/${pkgbase}/${pkgbase}-${pkgver}.tar.gz)
 sha1sums=('307636004ff1c8d70982052b74d5e7b126d69167')
 
@@ -33,8 +32,7 @@
 }
 
 package_python2-pylint() {
-  replaces=('pylint=0.26.0-2')
-  depends=('python2-logilab-astng' 'python2-setuptools')
+  depends=('python2-astroid' 'python2-setuptools')
 
   cd ${srcdir}/${pkgbase}-${pkgver}
 
@@ -50,7 +48,7 @@
 }
 
 package_python-pylint() {
-  depends=('python-logilab-astng' 'python-setuptools')
+  depends=('python-astroid' 'python-setuptools')
 
   cd ${srcdir}/${pkgbase}-${pkgver}-py3
 



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

2013-08-21 Thread Ángel Velásquez
Date: Wednesday, August 21, 2013 @ 12:06:29
  Author: angvp
Revision: 193491

archrelease: copy trunk to testing-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-21 10:05:44 UTC (rev 193490)
+++ PKGBUILD2013-08-21 10:06:29 UTC (rev 193491)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org  
-# Contributor: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Alexander Fehr pizzapunk gmail com
-
-pkgbase=pylint
-pkgname=('python2-pylint' 'python-pylint')
-pkgver=1.0.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://pypi.python.org/packages/source/p/${pkgbase}/${pkgbase}-${pkgver}.tar.gz)
-sha1sums=('307636004ff1c8d70982052b74d5e7b126d69167')
-
-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 193490, 
pylint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-21 10:06:29 UTC (rev 193491)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org  
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Alexander Fehr pizzapunk gmail com
+
+pkgbase=pylint
+pkgname=('python2-pylint' 'python-pylint')
+pkgver=1.0.0
+pkgrel=3
+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-astroid' 'python-astroid') 
+optdepends=('tk: Pylint GUI')
+source=(http://pypi.python.org/packages/source/p/${pkgbase}/${pkgbase}-${pkgver}.tar.gz)
+sha1sums=('307636004ff1c8d70982052b74d5e7b126d69167')
+
+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() {
+  depends=('python2-astroid' '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-astroid' '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 python-setuptools/trunk (PKGBUILD)

2013-08-20 Thread Ángel Velásquez
Date: Tuesday, August 20, 2013 @ 08:41:50
  Author: angvp
Revision: 193426

upgpkg: python-setuptools 1.0-1

Version bump to 1.0

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-20 06:10:11 UTC (rev 193425)
+++ PKGBUILD2013-08-20 06:41:50 UTC (rev 193426)
@@ -2,7 +2,7 @@
 # Maintainer: Angel Velasquez an...@archlinux.org
 pkgbase=python-setuptools
 pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=0.9.8
+pkgver=1.0
 pkgrel=1
 pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
 arch=('any')
@@ -10,7 +10,7 @@
 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')
+md5sums=('3d196ffb6e5e4425daddbb4fe42a4a74')
 
 #check() {
 #   # Check python3 module



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

2013-08-20 Thread Ángel Velásquez
Date: Tuesday, August 20, 2013 @ 08:42:33
  Author: angvp
Revision: 193427

archrelease: copy trunk to testing-any

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

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

Copied: python-setuptools/repos/testing-any/PKGBUILD (from rev 193426, 
python-setuptools/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-08-20 06:42:33 UTC (rev 193427)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=1.0
+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)
+md5sums=('3d196ffb6e5e4425daddbb4fe42a4a74')
+
+#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 pylint/trunk (PKGBUILD)

2013-08-20 Thread Ángel Velásquez
Date: Tuesday, August 20, 2013 @ 08:49:14
  Author: angvp
Revision: 193428

upgpkg: pylint 1.0.0-1

Version bump to 1.0.0

Modified:
  pylint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-20 06:42:33 UTC (rev 193427)
+++ PKGBUILD2013-08-20 06:49:14 UTC (rev 193428)
@@ -1,11 +1,12 @@
 # $Id$
-# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Maintainer: Angel Velasquez an...@archlinux.org  
+# Contributor: 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
+pkgver=1.0.0
+pkgrel=1
 pkgdesc=Analyzes Python code looking for bugs and signs of poor quality
 arch=('any')
 url=http://www.logilab.org/project/pylint;
@@ -13,8 +14,8 @@
 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')
+source=(http://pypi.python.org/packages/source/p/{$pkgbase}/${pkgbase}-${pkgver}.tar.gz)
+sha1sums=('307636004ff1c8d70982052b74d5e7b126d69167')
 
 build() {
   cd ${srcdir}



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

2013-08-20 Thread Ángel Velásquez
Date: Tuesday, August 20, 2013 @ 08:49:57
  Author: angvp
Revision: 193429

archrelease: copy trunk to testing-any

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

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

Copied: pylint/repos/testing-any/PKGBUILD (from rev 193428, 
pylint/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-08-20 06:49:57 UTC (rev 193429)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org  
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Alexander Fehr pizzapunk gmail com
+
+pkgbase=pylint
+pkgname=('python2-pylint' 'python-pylint')
+pkgver=1.0.0
+pkgrel=1
+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://pypi.python.org/packages/source/p/{$pkgbase}/${pkgbase}-${pkgver}.tar.gz)
+sha1sums=('307636004ff1c8d70982052b74d5e7b126d69167')
+
+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 wicd/trunk (PKGBUILD wicd-gtk.install)

2013-08-20 Thread Ángel Velásquez
Date: Tuesday, August 20, 2013 @ 20:43:53
  Author: angvp
Revision: 193460

upgpkg: wicd 1.7.2.4-9

Fixing FS#36617

Modified:
  wicd/trunk/PKGBUILD
  wicd/trunk/wicd-gtk.install

--+
 PKGBUILD |2 +-
 wicd-gtk.install |4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-08-20 18:34:44 UTC (rev 193459)
+++ PKGBUILD2013-08-20 18:43:53 UTC (rev 193460)
@@ -5,7 +5,7 @@
 pkgbase=wicd
 pkgname=('wicd' 'wicd-gtk')
 pkgver=1.7.2.4
-pkgrel=8
+pkgrel=9
 arch=(any)
 url=http://wicd.sourceforge.net/;
 license=('GPL2')

Modified: wicd-gtk.install
===
--- wicd-gtk.install2013-08-20 18:34:44 UTC (rev 193459)
+++ wicd-gtk.install2013-08-20 18:43:53 UTC (rev 193460)
@@ -3,9 +3,9 @@
 }
 
 post_upgrade() {
-  post_upgrade
+  post_install
 }
 
 post_remove() {
-post_upgrade
+  post_install
 }



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

2013-08-20 Thread Ángel Velásquez
Date: Tuesday, August 20, 2013 @ 20:46:40
  Author: angvp
Revision: 193461

upgpkg: pylint 1.0.0-2

Fixing FS#36612

Modified:
  pylint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-20 18:43:53 UTC (rev 193460)
+++ PKGBUILD2013-08-20 18:46:40 UTC (rev 193461)
@@ -6,7 +6,7 @@
 pkgbase=pylint
 pkgname=('python2-pylint' 'python-pylint')
 pkgver=1.0.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;
@@ -14,7 +14,7 @@
 makedepends=('python2-logilab-astng' 'python-logilab-astng') 
 optdepends=('tk: Pylint GUI')
 conflicts=('pylint=0.26.0-2')
-source=(http://pypi.python.org/packages/source/p/{$pkgbase}/${pkgbase}-${pkgver}.tar.gz)
+source=(http://pypi.python.org/packages/source/p/${pkgbase}/${pkgbase}-${pkgver}.tar.gz)
 sha1sums=('307636004ff1c8d70982052b74d5e7b126d69167')
 
 build() {



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

2013-08-20 Thread Ángel Velásquez
Date: Tuesday, August 20, 2013 @ 20:47:38
  Author: angvp
Revision: 193462

archrelease: copy trunk to testing-any

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

--+
 PKGBUILD |  122 ++---
 1 file changed, 61 insertions(+), 61 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-20 18:46:40 UTC (rev 193461)
+++ PKGBUILD2013-08-20 18:47:38 UTC (rev 193462)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org  
-# Contributor: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Alexander Fehr pizzapunk gmail com
-
-pkgbase=pylint
-pkgname=('python2-pylint' 'python-pylint')
-pkgver=1.0.0
-pkgrel=1
-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://pypi.python.org/packages/source/p/{$pkgbase}/${pkgbase}-${pkgver}.tar.gz)
-sha1sums=('307636004ff1c8d70982052b74d5e7b126d69167')
-
-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 193461, 
pylint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-20 18:47:38 UTC (rev 193462)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org  
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Alexander Fehr pizzapunk gmail com
+
+pkgbase=pylint
+pkgname=('python2-pylint' 'python-pylint')
+pkgver=1.0.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://pypi.python.org/packages/source/p/${pkgbase}/${pkgbase}-${pkgver}.tar.gz)
+sha1sums=('307636004ff1c8d70982052b74d5e7b126d69167')
+
+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 wicd/repos/extra-any (10 files)

2013-08-20 Thread Ángel Velásquez
Date: Tuesday, August 20, 2013 @ 21:16:34
  Author: angvp
Revision: 193463

archrelease: copy trunk to extra-any

Added:
  wicd/repos/extra-any/PKGBUILD
(from rev 193462, wicd/trunk/PKGBUILD)
  wicd/repos/extra-any/dbus_string_fix.patch
(from rev 193462, wicd/trunk/dbus_string_fix.patch)
  wicd/repos/extra-any/wicd-gtk.install
(from rev 193462, wicd/trunk/wicd-gtk.install)
  wicd/repos/extra-any/wicd.desktop
(from rev 193462, wicd/trunk/wicd.desktop)
  wicd/repos/extra-any/wicd.install
(from rev 193462, wicd/trunk/wicd.install)
Deleted:
  wicd/repos/extra-any/PKGBUILD
  wicd/repos/extra-any/dbus_string_fix.patch
  wicd/repos/extra-any/wicd-gtk.install
  wicd/repos/extra-any/wicd.desktop
  wicd/repos/extra-any/wicd.install

---+
 PKGBUILD  |  228 
 dbus_string_fix.patch |   32 +++---
 wicd-gtk.install  |   22 ++--
 wicd.desktop  |   22 ++--
 wicd.install  |   38 
 5 files changed, 171 insertions(+), 171 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-20 18:47:38 UTC (rev 193462)
+++ PKGBUILD2013-08-20 19:16:34 UTC (rev 193463)
@@ -1,114 +0,0 @@
-# $Id$
-# Maintainer: Daniel Isenmann dan...@archlinux.org
-# Contributor: Rashif Don Ray Rahman rayras...@gmail.com
-
-pkgbase=wicd
-pkgname=('wicd' 'wicd-gtk')
-pkgver=1.7.2.4
-pkgrel=8
-arch=(any)
-url=http://wicd.sourceforge.net/;
-license=('GPL2')
-conflicts=('wicd-svn')
-install=wicd.install
-source=(http://launchpad.net/wicd/1.7/$pkgver/+download/wicd-$pkgver.tar.gz
-wicd.desktop
-dbus_string_fix.patch
-   http://bazaar.launchpad.net/~wicd-devel/wicd/experimental/diff/831
-   http://bazaar.launchpad.net/~wicd-devel/wicd/experimental/diff/835)
-md5sums=('c2435ddfdef0b9898852d72a85a45f0f'
- '326df163a5732d38741371baa4fce9e5'
- '744b3c12fe901ed435351e884dc8cb1d'
- '0d2355bc2eb7234a537f42f1773edfe0'
- '1630d7fe8f09911302d33b26286ff9b8')
-makedepends=('python2' 'python2-babel' 'python2-setuptools' 'gettext' 
'dbus-glib' 'dhcpcd' 
- 'ethtool' 'inetutils' 'net-tools' 'pygtk' 'python2-dbus' 
'python2-gobject2' 
- 'python2-urwid' 'rfkill' 'shared-mime-info' 'wireless_tools' 
'wpa_supplicant'
- 'hicolor-icon-theme')
-options=('emptydirs')
-
-prepare() {
-  cd $pkgbase-$pkgver
-
-  find . -type f -exec sed -i 's@#!/usr.*python@#!/usr/bin/python2@' {} \;
-  export PYTHON=python2
-  
-  sed -i 's|/usr/sbin/|/usr/bin/|' other/wicd.service
-
-  patch -p0  $srcdir/dbus_string_fix.patch
-  
-  # Fix problem with new urwid FS#33378 LP#1075399
-  patch -Np0 -i $srcdir/831
-  patch -Np0 -i $srcdir/835
-}
-
-build() {
-  cd $pkgbase-$pkgver
-
-  python2 setup.py configure --no-install-init \
---resume=/usr/share/wicd/scripts/ \
- --suspend=/usr/share/wicd/scripts/ \
- --verbose \
- --python=/usr/bin/python2 \
---lib=/usr/lib \
---sbin=/usr/bin \
---systemd=/usr/lib/systemd/system
-  
-  #HACK for https://bugs.launchpad.net/wicd/+bug/928589
-  mkdir -p translations/ast/LC_MESSAGES
-  msgfmt po/ast.po -o translations/ast/LC_MESSAGES/wicd.mo
-}
-
-package_wicd() {
-  pkgdesc=Wired and wireless network manager for Linux
-  depends=('python2' 'python2-dbus' 'dhcpcd' 'wpa_supplicant' 'wireless_tools'
-   'inetutils' 'net-tools' 'ethtool' 'shared-mime-info' 
'python2-urwid' 'python2-gobject2' 'dbus-glib' 'rfkill')
-  optdepends=('wicd-gtk: needed if you want the GTK interface')
-  backup=('etc/wicd/encryption/templates/active')
-  install=wicd.install  
-
-  cd $pkgbase-$pkgver
-  python2 setup.py install --optimize=1 --root=$pkgdir
-
-  cd build/lib/wicd
-  for i in *.py; do
-install -Dm 755 $i $pkgdir/usr/lib/wicd/$i
-  done
-  
-  rm -rf $pkgdir/usr/share/autostart
-
-  #deleting the GTK stuff
-  rm -rf $pkgdir/etc/xdg
-  rm -f $pkgdir/usr/bin/{wicd-client,wicd-gtk}
-  rm -rf $pkgdir/usr/share/{applications,icons,pixmaps}
-  rm -rf $pkgdir/usr/share/wicd/gtk  
-}
-
-package_wicd-gtk() {
-  pkgdesc=Wired and wireless network manager for Linux - GTK client
-  depends=('wicd' 'pygtk' 'hicolor-icon-theme')
-  optdepends=('gksu: needed to access some preferences in gtk interface'
-  'notification-daemon: needed if you want notifications'
-  'python2-notify: needed if you want notifications')
-  install=wicd-gtk.install 
-
-  cd $pkgbase-$pkgver
-  python2 setup.py install --optimize=1 --root=$pkgdir
-
-  install -Dm644 $srcdir/wicd.desktop 
$pkgdir/usr/share/applications/wicd.desktop
-
-  cd build/lib/wicd
-  for i in *.py; do
-install -Dm 755 $i $pkgdir/usr/lib/wicd/$i
-  done
-  
-  #deleting the core dirs which exists in wicd
-  rm -rf 

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

2013-08-19 Thread Ángel Velásquez
Date: Monday, August 19, 2013 @ 10:17:57
  Author: angvp
Revision: 95976

upgpkg: cython 0.19.1-2

Rebuild against setuptools

Modified:
  cython/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-19 08:04:47 UTC (rev 95975)
+++ PKGBUILD2013-08-19 08:17:57 UTC (rev 95976)
@@ -5,12 +5,12 @@
 pkgname=('cython' 'cython2')
 pkgbase=cython
 pkgver=0.19.1
-pkgrel=1
+pkgrel=2
 pkgdesc=C-Extensions for Python 
 arch=(i686 x86_64)
 url=http://www.cython.org;
 license=('APACHE')
-makedepends=('python-distribute' 'python2-distribute')
+makedepends=('python-setuptools' 'python2-setuptools')
 source=(http://cython.org/release/Cython-$pkgver.tar.gz;)
 md5sums=('df4cfb2b8e3345272e3fc451b76bd630')
 



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

2013-08-19 Thread Ángel Velásquez
Date: Monday, August 19, 2013 @ 10:19:06
  Author: angvp
Revision: 95977

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

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

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

Copied: cython/repos/community-testing-i686/PKGBUILD (from rev 95976, 
cython/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-08-19 08:19:06 UTC (rev 95977)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Igor Scabini furester @ gmail.com
+
+pkgname=('cython' 'cython2')
+pkgbase=cython
+pkgver=0.19.1
+pkgrel=2
+pkgdesc=C-Extensions for Python 
+arch=(i686 x86_64)
+url=http://www.cython.org;
+license=('APACHE')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=(http://cython.org/release/Cython-$pkgver.tar.gz;)
+md5sums=('df4cfb2b8e3345272e3fc451b76bd630')
+
+build() {
+  true
+}
+
+package_cython() {
+  depends=('python')
+
+  cd $srcdir/Cython-$pkgver
+  python setup.py install --root=$pkgdir
+
+  sed -i 's|#!.*python|#!/usr/bin/python3|' $pkgdir/usr/bin/*
+}
+
+package_cython2() {
+  depends=('python2')
+
+  cd $srcdir/Cython-$pkgver
+  python2 setup.py install --root=$pkgdir
+
+  mv $pkgdir/usr/bin/cygdb $pkgdir/usr/bin/cygdb2
+  mv $pkgdir/usr/bin/cython $pkgdir/usr/bin/cython2
+}

Copied: cython/repos/community-testing-x86_64/PKGBUILD (from rev 95976, 
cython/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2013-08-19 08:19:06 UTC (rev 95977)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Igor Scabini furester @ gmail.com
+
+pkgname=('cython' 'cython2')
+pkgbase=cython
+pkgver=0.19.1
+pkgrel=2
+pkgdesc=C-Extensions for Python 
+arch=(i686 x86_64)
+url=http://www.cython.org;
+license=('APACHE')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=(http://cython.org/release/Cython-$pkgver.tar.gz;)
+md5sums=('df4cfb2b8e3345272e3fc451b76bd630')
+
+build() {
+  true
+}
+
+package_cython() {
+  depends=('python')
+
+  cd $srcdir/Cython-$pkgver
+  python setup.py install --root=$pkgdir
+
+  sed -i 's|#!.*python|#!/usr/bin/python3|' $pkgdir/usr/bin/*
+}
+
+package_cython2() {
+  depends=('python2')
+
+  cd $srcdir/Cython-$pkgver
+  python2 setup.py install --root=$pkgdir
+
+  mv $pkgdir/usr/bin/cygdb $pkgdir/usr/bin/cygdb2
+  mv $pkgdir/usr/bin/cython $pkgdir/usr/bin/cython2
+}



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

2013-08-19 Thread Ángel Velásquez
Date: Monday, August 19, 2013 @ 10:23:22
  Author: angvp
Revision: 95978

upgpkg: supervisor 3.0b1-3

Rebuild against setuptools

Modified:
  supervisor/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-19 08:19:06 UTC (rev 95977)
+++ PKGBUILD2013-08-19 08:23:22 UTC (rev 95978)
@@ -4,29 +4,36 @@
 
 pkgname=supervisor
 pkgver=3.0b1
-pkgrel=2
+pkgrel=3
 pkgdesc=A system for controlling process state under UNIX
 arch=('any')
 url=http://supervisord.org;
 license=('custom')
-depends=('python2-meld3' 'python2-distribute')
+depends=('python2-meld3' 'python2-setuptools')
 backup=('etc/supervisord.conf')
 
source=(http://pypi.python.org/packages/source/s/$pkgname/$pkgname-$pkgver.tar.gz;
 'supervisord.service'
 'supervisor.logrotate'
 'supervisord.conf')
+sha256sums=('7361e224871257534cac3bc035e90571c35b9fa9245ec46207de9d89191a7d0c'
+'7c83b32ccd256a08b323ed972cff25ad29d44b18b1138624c74ead4929809676'
+'7347d79c8b7f5cc59d5ffa31e4df64f92e89dee0dc84bdb3bdfcba212de93f4b'
+'fe0a60e34f67bf6ed7ca8731d9ce7657e00f37a43e0dfb96aa0df57adc4cd423')
 
-build() {
+prepare() {
cd $srcdir/$pkgname-$pkgver
rm -rf supervisor/medusa/{debian,demo,docs,test}
find -type f -name *.py -exec sed -i 's|/usr/bin/env 
python|/usr/bin/env python2|' {} \;
+}
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
python2 setup.py build
 }
 
 package() {
cd $srcdir/$pkgname-$pkgver
python2 setup.py install -O1 --skip-build --prefix=/usr --root=$pkgdir
-
install -Dm600 $srcdir/supervisord.conf $pkgdir/etc/supervisord.conf
install -Dm644 $srcdir/supervisor.logrotate 
$pkgdir/etc/logrotate.d/supervisor
install -Dm644 $srcdir/supervisord.service 
$pkgdir/usr/lib/systemd/system/supervisord.service
@@ -35,8 +42,3 @@
install -d $pkgdir/etc/supervisor.d
mv LICENSES.txt COPYRIGHT.txt $pkgdir/usr/share/licenses/$pkgname
 }
-
-sha256sums=('7361e224871257534cac3bc035e90571c35b9fa9245ec46207de9d89191a7d0c'
-'7c83b32ccd256a08b323ed972cff25ad29d44b18b1138624c74ead4929809676'
-'7347d79c8b7f5cc59d5ffa31e4df64f92e89dee0dc84bdb3bdfcba212de93f4b'
-'fe0a60e34f67bf6ed7ca8731d9ce7657e00f37a43e0dfb96aa0df57adc4cd423')



  1   2   3   >