diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-07-20 05:44:45 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-07-20 05:44:45 +0000 |
commit | f688259001d3bbe318adc48849362e3cb1af5304 (patch) | |
tree | d74b3b4862167562f6094b245487f1b9b2fcc9cb /dev-python/pip/pip-1.0.2.ebuild | |
parent | Version bump. (diff) | |
download | historical-f688259001d3bbe318adc48849362e3cb1af5304.tar.gz historical-f688259001d3bbe318adc48849362e3cb1af5304.tar.bz2 historical-f688259001d3bbe318adc48849362e3cb1af5304.zip |
Version bump.
Package-Manager: portage-2.2.0_alpha45/cvs/Linux x86_64
Diffstat (limited to 'dev-python/pip/pip-1.0.2.ebuild')
-rw-r--r-- | dev-python/pip/pip-1.0.2.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/dev-python/pip/pip-1.0.2.ebuild b/dev-python/pip/pip-1.0.2.ebuild new file mode 100644 index 000000000000..c2f7afdbbaca --- /dev/null +++ b/dev-python/pip/pip-1.0.2.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pip/pip-1.0.2.ebuild,v 1.1 2011/07/20 05:44:45 radhermit Exp $ + +EAPI="3" +PYTHON_DEPEND="*" +SUPPORT_PYTHON_ABIS="1" + +inherit bash-completion distutils eutils + +DESCRIPTION="Installs python packages -- replacement for easy_install" +HOMEPAGE="http://www.pip-installer.org/ http://pypi.python.org/pypi/pip/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +KEYWORDS="~amd64 ~x86" +SLOT="0" +IUSE="bash-completion zsh-completion" + +RDEPEND="dev-python/setuptools" +DEPEND="${RDEPEND}" + +# Tests require a couple libraries not yet in the tree, aren't bundled with +# the default tarball from pypi, and have a couple failures anyway +RESTRICT="test" + +DOCS="AUTHORS.txt docs/configuration.txt docs/how-to-contribute.txt + docs/index.txt docs/news.txt docs/requirement-format.txt" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-1.0.1-unversioned.patch + distutils_src_prepare +} + +src_install() { + distutils_src_install + COMPLETION="${T}/completion.tmp" + + if use bash-completion ; then + "$(PYTHON -f)" pip/runner.py completion --bash > "${COMPLETION}" || die + dobashcompletion "${COMPLETION}" ${PN} + fi + + if use zsh-completion ; then + "$(PYTHON -f)" pip/runner.py completion --zsh > "${COMPLETION}" || die + insinto /usr/share/zsh/site-functions + newins "${COMPLETION}" _pip || die + fi +} |