diff options
author | Mike Pagano <mpagano@gentoo.org> | 2009-05-13 21:07:26 +0000 |
---|---|---|
committer | Mike Pagano <mpagano@gentoo.org> | 2009-05-13 21:07:26 +0000 |
commit | ed7e1b254cfa805db7c507af3e98a361813d23c5 (patch) | |
tree | 4f410b4637f604e7384a99f5dd69cef64da8e0b8 /app-portage | |
parent | Add gcc 4.4 compat patch. Thanks to Victor Ostroga for this one. Per bug #269618 (diff) | |
download | gentoo-2-ed7e1b254cfa805db7c507af3e98a361813d23c5.tar.gz gentoo-2-ed7e1b254cfa805db7c507af3e98a361813d23c5.tar.bz2 gentoo-2-ed7e1b254cfa805db7c507af3e98a361813d23c5.zip |
New version that supports ~ (tilde) atom
(Portage version: 2.2_rc33/cvs/Linux i686)
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/portpeek/ChangeLog | 7 | ||||
-rw-r--r-- | app-portage/portpeek/portpeek-1.8.0.ebuild | 32 |
2 files changed, 38 insertions, 1 deletions
diff --git a/app-portage/portpeek/ChangeLog b/app-portage/portpeek/ChangeLog index d99626cba24c..88371dff25ea 100644 --- a/app-portage/portpeek/ChangeLog +++ b/app-portage/portpeek/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-portage/portpeek # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/portpeek/ChangeLog,v 1.23 2009/04/17 18:31:02 mpagano Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/portpeek/ChangeLog,v 1.24 2009/05/13 21:07:26 mpagano Exp $ + +*portpeek-1.8.0 (13 May 2009) + + 13 May 2009; Mike Pagano <mpagano@gentoo.org> +portpeek-1.8.0.ebuild: + New version that supports ~ (tilde) atom *portpeek-1.7.5 (17 Apr 2009) diff --git a/app-portage/portpeek/portpeek-1.8.0.ebuild b/app-portage/portpeek/portpeek-1.8.0.ebuild new file mode 100644 index 000000000000..62d208248ab3 --- /dev/null +++ b/app-portage/portpeek/portpeek-1.8.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-portage/portpeek/portpeek-1.8.0.ebuild,v 1.1 2009/05/13 21:07:26 mpagano Exp $ + +DESCRIPTION="A helper program for maintaining the package.keyword and package.unmask 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 ~ppc ~sparc ~x86 ~x86-fbsd" +IUSE="" + +DEPEND="" +RDEPEND=">=app-portage/gentoolkit-0.2.4 + >=sys-apps/portage-2.2_rc23" + +src_install() { + dobin ${PN} || die "dobin failed" + doman *.[0-9] +} + +pkg_postinst() { + ewarn "Portpeek versions >= 1.8.0 contain the -t flag for checking" + ewarn "and removing ~ (tilde) unmasked packages." + ewarn "This is a brand new feature and caution should be used when" + ewarn "invoking it. (like maybe backing up your /etc/portage/* files)" + ewarn "If you find any problems open a bug in bugzilla attaching the" + ewarn " affected files from /etc/portage/* and assign it too me." + ewarn "Your faithful Gentoo servant, mpagano@gentoo.org" +} + |