diff options
author | Mike Pagano <mpagano@gentoo.org> | 2012-01-04 16:32:16 +0000 |
---|---|---|
committer | Mike Pagano <mpagano@gentoo.org> | 2012-01-04 16:32:16 +0000 |
commit | 8f84c5b6b246b4bbf41cdb925447a62130177e29 (patch) | |
tree | 093a24383ce84e6bf5da293596246469c019d21d /app-portage | |
parent | Fix crappy tag order. (diff) | |
download | gentoo-2-8f84c5b6b246b4bbf41cdb925447a62130177e29.tar.gz gentoo-2-8f84c5b6b246b4bbf41cdb925447a62130177e29.tar.bz2 gentoo-2-8f84c5b6b246b4bbf41cdb925447a62130177e29.zip |
2.0.17 is the start of a version that will (one day) work on both python versions 2.7 and 3.X
(Portage version: 2.1.10.41/cvs/Linux i686)
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/portpeek/ChangeLog | 8 | ||||
-rw-r--r-- | app-portage/portpeek/portpeek-2.0.17.ebuild | 30 |
2 files changed, 37 insertions, 1 deletions
diff --git a/app-portage/portpeek/ChangeLog b/app-portage/portpeek/ChangeLog index 11a2a04fa391..9efde89458e3 100644 --- a/app-portage/portpeek/ChangeLog +++ b/app-portage/portpeek/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-portage/portpeek # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/portpeek/ChangeLog,v 1.134 2012/01/03 17:57:34 mpagano Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/portpeek/ChangeLog,v 1.135 2012/01/04 16:32:16 mpagano Exp $ + +*portpeek-2.0.17 (04 Jan 2012) + + 04 Jan 2012; Michael Pagano <mpagano@gentoo.org> +portpeek-2.0.17.ebuild: + 2.0.17 is the start of a version that will (one day) work on both python + versions 2.7 and 3.X 03 Jan 2012; Michael Pagano <mpagano@gentoo.org> -portpeek-2.0.12.ebuild, -portpeek-2.0.13.ebuild: diff --git a/app-portage/portpeek/portpeek-2.0.17.ebuild b/app-portage/portpeek/portpeek-2.0.17.ebuild new file mode 100644 index 000000000000..d84c17f821e3 --- /dev/null +++ b/app-portage/portpeek/portpeek-2.0.17.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-portage/portpeek/portpeek-2.0.17.ebuild,v 1.1 2012/01/04 16:32:16 mpagano Exp $ + +EAPI="4" +PYTHON_DEPEND="*:2.7" + +inherit python + +DESCRIPTION="Helper program for maintaining the package.accept_keywords, package.unmask and package.use files" +HOMEPAGE="http://www.mpagano.com/blog/?page_id=3" +SRC_URI="http://www.mpagano.com/downloads/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86 ~x86-fbsd" +IUSE="" + +DEPEND="" +RDEPEND=">=app-portage/gentoolkit-0.3.0.4-r5 + >=sys-apps/portage-2.1.10.41" + +pkg_setup() { + python_pkg_setup +} + +src_install() { + dobin ${PN} || die "dobin failed" + doman *.[0-9] +} |