diff options
author | 2008-04-03 00:24:53 +0000 | |
---|---|---|
committer | 2008-04-03 00:24:53 +0000 | |
commit | d398ca1ad9f2107a70eb8725f656add43d992485 (patch) | |
tree | e20bc4315272721f47b26b4a76ab4f35bc6664ea /dev-python | |
parent | Restore keywords that were dropped, after getting package visibility in order... (diff) | |
download | historical-d398ca1ad9f2107a70eb8725f656add43d992485.tar.gz historical-d398ca1ad9f2107a70eb8725f656add43d992485.tar.bz2 historical-d398ca1ad9f2107a70eb8725f656add43d992485.zip |
Initial commit. Closes #215959
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/virtualenv/ChangeLog | 10 | ||||
-rw-r--r-- | dev-python/virtualenv/Manifest | 14 | ||||
-rw-r--r-- | dev-python/virtualenv/metadata.xml | 5 | ||||
-rw-r--r-- | dev-python/virtualenv/virtualenv-1.0.ebuild | 24 |
4 files changed, 53 insertions, 0 deletions
diff --git a/dev-python/virtualenv/ChangeLog b/dev-python/virtualenv/ChangeLog new file mode 100644 index 000000000000..a35f068ed24c --- /dev/null +++ b/dev-python/virtualenv/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-python/virtualenv +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/ChangeLog,v 1.1 2008/04/03 00:24:53 pythonhead Exp $ + +*virtualenv-1.0 (03 Apr 2008) + + 03 Apr 2008; Rob Cakebread <pythonhead@gentoo.org> +metadata.xml, + +virtualenv-1.0.ebuild: + Initial commit. Closes #215959 + diff --git a/dev-python/virtualenv/Manifest b/dev-python/virtualenv/Manifest new file mode 100644 index 000000000000..4b822885405c --- /dev/null +++ b/dev-python/virtualenv/Manifest @@ -0,0 +1,14 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +DIST virtualenv-1.0.tar.gz 681618 RMD160 93768fe36940c41769b62516bc91c8d053ed6895 SHA1 a20331a0060834bf93c86df16de3bb65faa14653 SHA256 70bd71debfbf4941dbb3f0213a9711de8e10d092ab84b87e81a1195aa823e6c3 +EBUILD virtualenv-1.0.ebuild 608 RMD160 16430b8211f746a580f760e435dcc7c4a8f55bc7 SHA1 1c6b413b5573a1717a51dc82c71bd10a36e8f40d SHA256 b91b6c16a153122d69d71b88b95c7bdce8d63597fd1c1dd2d151c8bd888e78c7 +MISC ChangeLog 378 RMD160 59e82b996139c4c435e26862a3149e559fe341a9 SHA1 ad69c2a4b7ed4d28496c6268d02898537a71c883 SHA256 4151a6c5815c0f11128c1a3c8f004f0dc255f3950b479d2772f254b960e8fad9 +MISC metadata.xml 160 RMD160 e730f96ab97c5be577a6d6d05f04990374a0dffb SHA1 2aa5e6be9c265c0e7bceb78ee9fd20df5f818e36 SHA256 6cd954a9de2307c57d32b25fa3599dee2908a4ddc6a98594f593d53577307a3a +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v2.0.9 (GNU/Linux) + +iEYEARECAAYFAkf0I/QACgkQ3KzeMduMwTpX/gCdGMJYV+Aq4cxiE5gSZKTRprgw +FaoAnjePR3WjbwvHMFZPYrM/5GE+xbYB +=CmQ3 +-----END PGP SIGNATURE----- diff --git a/dev-python/virtualenv/metadata.xml b/dev-python/virtualenv/metadata.xml new file mode 100644 index 000000000000..301d2207cc29 --- /dev/null +++ b/dev-python/virtualenv/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>python</herd> +</pkgmetadata> diff --git a/dev-python/virtualenv/virtualenv-1.0.ebuild b/dev-python/virtualenv/virtualenv-1.0.ebuild new file mode 100644 index 000000000000..1250515d59de --- /dev/null +++ b/dev-python/virtualenv/virtualenv-1.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/virtualenv-1.0.ebuild,v 1.1 2008/04/03 00:24:53 pythonhead Exp $ + +NEED_PYTHON="2.3" + +inherit distutils + +DESCRIPTION="Virtual Python Environment builder" +HOMEPAGE="http://pypi.python.org/pypi/virtualenv" +SRC_URI="http://pypi.python.org/packages/source/v/${PN}/${P}.tar.gz" +LICENSE="MIT" +KEYWORDS="~x86" +SLOT="0" +IUSE="" +DEPEND=">=dev-python/setuptools-0.6_rc7-r1" +DOCS="docs/index.txt" + +src_unpack() { + unpack ${A} + cd "${S}" + rm ez_setup.py +} + |