diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /app-misc/pip | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'app-misc/pip')
-rw-r--r-- | app-misc/pip/Manifest | 1 | ||||
-rw-r--r-- | app-misc/pip/metadata.xml | 5 | ||||
-rw-r--r-- | app-misc/pip/pip-1.2-r2.ebuild | 25 |
3 files changed, 31 insertions, 0 deletions
diff --git a/app-misc/pip/Manifest b/app-misc/pip/Manifest new file mode 100644 index 000000000000..0af4a22f2639 --- /dev/null +++ b/app-misc/pip/Manifest @@ -0,0 +1 @@ +DIST pip-1.2.tar.bz2 17752 SHA256 a80767586037c862886d94fa31fbe0e70a3a02c951abbb823ffe6ff7a0f5334b SHA512 a09695a881585baea292d305c3e0dc4ed7d5ccc0cb8138f402d73e75bbc6d014e09c3b3091f6b92be97a8034c262bd98cebf71e08cc7c44e635483bb31a40a29 WHIRLPOOL d2bd963018575aaeae7e1cc132baaadf6db3a1509d1e4635d695bb142195b8192b611ac388f6c86f72ccb035c51d164bba3b0233d6de1794fde9f002549d0636 diff --git a/app-misc/pip/metadata.xml b/app-misc/pip/metadata.xml new file mode 100644 index 000000000000..40149c995561 --- /dev/null +++ b/app-misc/pip/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>shell-tools</herd> +</pkgmetadata> diff --git a/app-misc/pip/pip-1.2-r2.ebuild b/app-misc/pip/pip-1.2-r2.ebuild new file mode 100644 index 000000000000..106cb7305f42 --- /dev/null +++ b/app-misc/pip/pip-1.2-r2.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit eutils perl-app + +DESCRIPTION="Wrapper around programs that don't support stdin/stdout" +HOMEPAGE="http://membled.com/work/apps/pip/" +SRC_URI="http://membled.com/work/apps/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ppc x86" +IUSE="" + +src_install() { + perl-module_src_install + mv "${ED}"/usr/bin/{pip,gpip} || die 'rename failed' +} + +pkg_postinst() { + ewarn "To avoid collisions with dev-python/pip executable file of this package was renamed to 'gpip'" +} |