[arch-commits] Commit in python-distribute/repos/extra-any (4 files)
Stéphane Gaudreault
stephane at archlinux.org
Mon Sep 12 13:17:05 UTC 2011
Date: Monday, September 12, 2011 @ 09:17:05
Author: stephane
Revision: 137923
archrelease: copy trunk to extra-any
Added:
python-distribute/repos/extra-any/PKGBUILD
(from rev 137922, python-distribute/trunk/PKGBUILD)
python-distribute/repos/extra-any/distribute-python2_and_3.patch
(from rev 137922, python-distribute/trunk/distribute-python2_and_3.patch)
Deleted:
python-distribute/repos/extra-any/PKGBUILD
python-distribute/repos/extra-any/distribute-python2_and_3.patch
--------------------------------+
PKGBUILD | 104 +++++++++++++++++++--------------------
distribute-python2_and_3.patch | 76 ++++++++++++++--------------
2 files changed, 90 insertions(+), 90 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2011-09-12 13:16:58 UTC (rev 137922)
+++ PKGBUILD 2011-09-12 13:17:05 UTC (rev 137923)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault <stephane at archlinux.org>
-# Contributor: Sebastien Binet <binet at farnsworth>
-pkgbase=python-distribute
-pkgname=('python-distribute' 'python2-distribute')
-pkgver=0.6.19
-pkgrel=1
-pkgdesc="Easily build and distribute Python packages"
-arch=('any')
-license=('PSF')
-url="http://pypi.python.org/pypi/distribute"
-makedepends=('python' 'python2')
-source=(http://pypi.python.org/packages/source/d/distribute/distribute-${pkgver}.tar.gz
- distribute-python2_and_3.patch)
-sha1sums=('4b9569319aa8cc283030b3d996b5d88e022c684f'
- '19a78b79123095dc4a99cda4ba0d02e34210c310')
-
-build() {
- cd "${srcdir}"
-
- pushd distribute-${pkgver}
- patch -Np1 -i ../distribute-python2_and_3.patch
- popd
-
- cp -a distribute-${pkgver}{,-python2}
-
- # Build python 3 module
- cd distribute-${pkgver}
- python setup.py build
- python setup.py test
-
- # Build python 2 module
- cd ../distribute-${pkgver}-python2
- python2 setup.py build
- python2 setup.py test
-}
-
-package_python-distribute() {
- depends=('python>=3.2')
-
- cd "${srcdir}/distribute-${pkgver}"
- python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build
-}
-
-package_python2-distribute() {
- depends=('python2>=2.7')
- provides=('setuptools=0.6c11')
- conflicts=('setuptools')
-
- cd "${srcdir}/distribute-${pkgver}-python2"
- python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build
-}
Copied: python-distribute/repos/extra-any/PKGBUILD (from rev 137922, python-distribute/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2011-09-12 13:17:05 UTC (rev 137923)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault <stephane at archlinux.org>
+# Contributor: Sebastien Binet <binet at farnsworth>
+pkgbase=python-distribute
+pkgname=('python-distribute' 'python2-distribute')
+pkgver=0.6.21
+pkgrel=1
+pkgdesc="Easily build and distribute Python packages"
+arch=('any')
+license=('PSF')
+url="http://pypi.python.org/pypi/distribute"
+makedepends=('python' 'python2')
+source=(http://pypi.python.org/packages/source/d/distribute/distribute-${pkgver}.tar.gz
+ distribute-python2_and_3.patch)
+sha1sums=('4bc3df524ba1d684ba997caab3346040551a3820'
+ '19a78b79123095dc4a99cda4ba0d02e34210c310')
+
+build() {
+ cd "${srcdir}"
+
+ pushd distribute-${pkgver}
+ patch -Np1 -i ../distribute-python2_and_3.patch
+ popd
+
+ cp -a distribute-${pkgver}{,-python2}
+
+ # Build python 3 module
+ cd distribute-${pkgver}
+ python setup.py build
+ python setup.py test
+
+ # Build python 2 module
+ cd ../distribute-${pkgver}-python2
+ python2 setup.py build
+ python2 setup.py test
+}
+
+package_python-distribute() {
+ depends=('python>=3.2')
+
+ cd "${srcdir}/distribute-${pkgver}"
+ python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build
+}
+
+package_python2-distribute() {
+ depends=('python2>=2.7')
+ provides=('setuptools=0.6c11')
+ conflicts=('setuptools')
+
+ cd "${srcdir}/distribute-${pkgver}-python2"
+ python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build
+}
Deleted: distribute-python2_and_3.patch
===================================================================
--- distribute-python2_and_3.patch 2011-09-12 13:16:58 UTC (rev 137922)
+++ distribute-python2_and_3.patch 2011-09-12 13:17:05 UTC (rev 137923)
@@ -1,38 +0,0 @@
-diff -Naur distribute-0.6.19.ori//distribute.egg-info/entry_points.txt distribute-0.6.19/distribute.egg-info/entry_points.txt
---- distribute-0.6.19.ori//distribute.egg-info/entry_points.txt 2011-06-01 20:10:28.000000000 -0400
-+++ distribute-0.6.19/distribute.egg-info/entry_points.txt 2011-06-20 06:34:22.599954085 -0400
-@@ -32,7 +32,8 @@
-
- [console_scripts]
- easy_install = setuptools.command.easy_install:main
--easy_install-2.6 = setuptools.command.easy_install:main
-+easy_install-2.7 = setuptools.command.easy_install:main
-+easy_install-3.2 = setuptools.command.easy_install:main
-
- [setuptools.file_finders]
- svn_cvs = setuptools.command.sdist:_default_revctrl
-diff -Naur distribute-0.6.19.ori//distribute_setup.py distribute-0.6.19/distribute_setup.py
---- distribute-0.6.19.ori//distribute_setup.py 2011-06-01 06:24:15.000000000 -0400
-+++ distribute-0.6.19/distribute_setup.py 2011-06-20 06:35:31.729951812 -0400
-@@ -299,8 +299,7 @@
- log.warn('Could not find the install location')
- return
- pyver = '%s.%s' % (sys.version_info[0], sys.version_info[1])
-- setuptools_file = 'setuptools-%s-py%s.egg-info' % \
-- (SETUPTOOLS_FAKED_VERSION, pyver)
-+ setuptools_file = 'setuptools-%s.egg-info' % SETUPTOOLS_FAKED_VERSION
- pkg_info = os.path.join(placeholder, setuptools_file)
- if os.path.exists(pkg_info):
- log.warn('%s already exists', pkg_info)
-diff -Naur distribute-0.6.19.ori//setup.py distribute-0.6.19/setup.py
---- distribute-0.6.19.ori//setup.py 2011-06-01 06:23:28.000000000 -0400
-+++ distribute-0.6.19/setup.py 2011-06-20 06:37:05.806615385 -0400
-@@ -100,6 +100,8 @@
- f.close()
-
-
-+console_scripts = ["easy_install-%s = setuptools.command.easy_install:main" % sys.version[:3]]
-+
- # if we are installing Distribute using "python setup.py install"
- # we need to get setuptools out of the way
- def _easy_install_marker():
Copied: python-distribute/repos/extra-any/distribute-python2_and_3.patch (from rev 137922, python-distribute/trunk/distribute-python2_and_3.patch)
===================================================================
--- distribute-python2_and_3.patch (rev 0)
+++ distribute-python2_and_3.patch 2011-09-12 13:17:05 UTC (rev 137923)
@@ -0,0 +1,38 @@
+diff -Naur distribute-0.6.19.ori//distribute.egg-info/entry_points.txt distribute-0.6.19/distribute.egg-info/entry_points.txt
+--- distribute-0.6.19.ori//distribute.egg-info/entry_points.txt 2011-06-01 20:10:28.000000000 -0400
++++ distribute-0.6.19/distribute.egg-info/entry_points.txt 2011-06-20 06:34:22.599954085 -0400
+@@ -32,7 +32,8 @@
+
+ [console_scripts]
+ easy_install = setuptools.command.easy_install:main
+-easy_install-2.6 = setuptools.command.easy_install:main
++easy_install-2.7 = setuptools.command.easy_install:main
++easy_install-3.2 = setuptools.command.easy_install:main
+
+ [setuptools.file_finders]
+ svn_cvs = setuptools.command.sdist:_default_revctrl
+diff -Naur distribute-0.6.19.ori//distribute_setup.py distribute-0.6.19/distribute_setup.py
+--- distribute-0.6.19.ori//distribute_setup.py 2011-06-01 06:24:15.000000000 -0400
++++ distribute-0.6.19/distribute_setup.py 2011-06-20 06:35:31.729951812 -0400
+@@ -299,8 +299,7 @@
+ log.warn('Could not find the install location')
+ return
+ pyver = '%s.%s' % (sys.version_info[0], sys.version_info[1])
+- setuptools_file = 'setuptools-%s-py%s.egg-info' % \
+- (SETUPTOOLS_FAKED_VERSION, pyver)
++ setuptools_file = 'setuptools-%s.egg-info' % SETUPTOOLS_FAKED_VERSION
+ pkg_info = os.path.join(placeholder, setuptools_file)
+ if os.path.exists(pkg_info):
+ log.warn('%s already exists', pkg_info)
+diff -Naur distribute-0.6.19.ori//setup.py distribute-0.6.19/setup.py
+--- distribute-0.6.19.ori//setup.py 2011-06-01 06:23:28.000000000 -0400
++++ distribute-0.6.19/setup.py 2011-06-20 06:37:05.806615385 -0400
+@@ -100,6 +100,8 @@
+ f.close()
+
+
++console_scripts = ["easy_install-%s = setuptools.command.easy_install:main" % sys.version[:3]]
++
+ # if we are installing Distribute using "python setup.py install"
+ # we need to get setuptools out of the way
+ def _easy_install_marker():
More information about the arch-commits
mailing list