diff options
author | 2009-10-15 23:23:36 +0000 | |
---|---|---|
committer | 2009-10-15 23:23:36 +0000 | |
commit | fd9c87cb5c4bb9fc4692cb01d417dc93489d2848 (patch) | |
tree | 4b9f3ec86601b92f66b90fe7ffce1411d5bf627b /dev-python | |
parent | clean up (diff) | |
download | gentoo-2-fd9c87cb5c4bb9fc4692cb01d417dc93489d2848.tar.gz gentoo-2-fd9c87cb5c4bb9fc4692cb01d417dc93489d2848.tar.bz2 gentoo-2-fd9c87cb5c4bb9fc4692cb01d417dc93489d2848.zip |
Version bump.
(Portage version: 14609-svn/cvs/Linux x86_64)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/setuptools/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/setuptools/setuptools-0.6.6.ebuild | 47 |
2 files changed, 54 insertions, 1 deletions
diff --git a/dev-python/setuptools/ChangeLog b/dev-python/setuptools/ChangeLog index e5987fb0de45..d29aefa06f4c 100644 --- a/dev-python/setuptools/ChangeLog +++ b/dev-python/setuptools/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/setuptools # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/setuptools/ChangeLog,v 1.71 2009/10/11 14:12:12 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/setuptools/ChangeLog,v 1.72 2009/10/15 23:23:36 arfrever Exp $ + +*setuptools-0.6.6 (16 Oct 2009) + + 16 Oct 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + +setuptools-0.6.6.ebuild: + Version bump. *setuptools-0.6.4 (11 Oct 2009) diff --git a/dev-python/setuptools/setuptools-0.6.6.ebuild b/dev-python/setuptools/setuptools-0.6.6.ebuild new file mode 100644 index 000000000000..91fee3af834b --- /dev/null +++ b/dev-python/setuptools/setuptools-0.6.6.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/setuptools/setuptools-0.6.6.ebuild,v 1.1 2009/10/15 23:23:36 arfrever Exp $ + +EAPI="2" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils eutils + +DESCRIPTION="A collection of enhancements to the Python distutils including easy install" +HOMEPAGE="http://pypi.python.org/pypi/distribute" +SRC_URI="http://pypi.python.org/packages/source/d/distribute/distribute-${PV}.tar.gz" + +LICENSE="PSF-2.2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" +IUSE="" + +DEPEND="" +RDEPEND="" + +S="${WORKDIR}/distribute-${PV}" + +DOCS="README.txt docs/easy_install.txt docs/pkg_resources.txt docs/setuptools.txt" + +src_prepare() { + distutils_src_prepare + + epatch "${FILESDIR}/${PN}-0.6_rc7-noexe.patch" + + # Remove tests that access the network (bugs #198312, #191117) + rm setuptools/tests/test_packageindex.py +} + +src_test() { + tests() { + PYTHONPATH="." "$(PYTHON)" setup.py test + } + python_execute_function tests +} + +pkg_preinst() { + # Delete unneeded files which cause problems. These files were created by some older, broken versions. + if has_version "<dev-python/setuptools-0.6.3-r2"; then + rm -fr "${ROOT}"usr/lib*/python*/site-packages/{,._cfg????_}setuptools-*egg-info* || die "Deletion of broken files failed" + fi +} |