diff options
author | Marien Zwart <marienz@gentoo.org> | 2006-06-07 17:01:21 +0000 |
---|---|---|
committer | Marien Zwart <marienz@gentoo.org> | 2006-06-07 17:01:21 +0000 |
commit | 35e7f7bbe05b53665bce7016138d1a0168fab0a9 (patch) | |
tree | 32a30244061c382362348161a9810150427c96ef /dev-python/setuptools | |
parent | Removed virtual/python (diff) | |
download | gentoo-2-35e7f7bbe05b53665bce7016138d1a0168fab0a9.tar.gz gentoo-2-35e7f7bbe05b53665bce7016138d1a0168fab0a9.tar.bz2 gentoo-2-35e7f7bbe05b53665bce7016138d1a0168fab0a9.zip |
Version bump.
(Portage version: 2.1_rc4-r2)
Diffstat (limited to 'dev-python/setuptools')
-rw-r--r-- | dev-python/setuptools/files/digest-setuptools-0.6_beta2 | 3 | ||||
-rw-r--r-- | dev-python/setuptools/setuptools-0.6_beta2.ebuild | 36 |
2 files changed, 39 insertions, 0 deletions
diff --git a/dev-python/setuptools/files/digest-setuptools-0.6_beta2 b/dev-python/setuptools/files/digest-setuptools-0.6_beta2 new file mode 100644 index 000000000000..26001d2f240e --- /dev/null +++ b/dev-python/setuptools/files/digest-setuptools-0.6_beta2 @@ -0,0 +1,3 @@ +MD5 1fb3a6936dab5b1780f4fa81ad06af9d setuptools-0.6b2.zip 248375 +RMD160 62995cb7e1577d4da390adb00e285522b87d2ff3 setuptools-0.6b2.zip 248375 +SHA256 0fdfd2765b4fee3bf7eeb0f9312743c8d81d575b6bd5e7c97c6e2694075a1f05 setuptools-0.6b2.zip 248375 diff --git a/dev-python/setuptools/setuptools-0.6_beta2.ebuild b/dev-python/setuptools/setuptools-0.6_beta2.ebuild new file mode 100644 index 000000000000..e64754e581d9 --- /dev/null +++ b/dev-python/setuptools/setuptools-0.6_beta2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/setuptools/setuptools-0.6_beta2.ebuild,v 1.1 2006/06/07 17:01:21 marienz Exp $ + +inherit distutils + +MY_P=${P/_beta/b} +S="${WORKDIR}/${MY_P}" + +DESCRIPTION="A collection of enhancements to the Python distutils including easy install" +HOMEPAGE="http://peak.telecommunity.com/DevCenter/setuptools" +SRC_URI="http://cheeseshop.python.org/packages/source/s/setuptools/${MY_P}.zip" + +LICENSE="PSF-2.2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND=">=dev-lang/python-2.4.2" +DEPEND="${RDEPEND} + app-arch/unzip" + +DOCS="EasyInstall.txt api_tests.txt pkg_resources.txt setuptools.txt" + +src_unpack() { + unpack ${A} + cd "${S}" + # The files in the tarball have 666 permissions and get installed + # that way if we do not chmod them. + find -type d -print0 | xargs -0 chmod 755 + find -type f -print0 | xargs -0 chmod 644 +} + +src_test() { + "${python}" setup.py test || die "tests failed" +} |