summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Olexa <darkside@gentoo.org>2009-06-13 02:30:30 +0000
committerJeremy Olexa <darkside@gentoo.org>2009-06-13 02:30:30 +0000
commitd409b9cedbfe45fadbdb3b65a76bb68b713a693b (patch)
treed953ff3dcbac3ee6b8b9a8f4326eead9b6d2889b /app-shells
parentVersion bump (diff)
downloadgentoo-2-d409b9cedbfe45fadbdb3b65a76bb68b713a693b.tar.gz
gentoo-2-d409b9cedbfe45fadbdb3b65a76bb68b713a693b.tar.bz2
gentoo-2-d409b9cedbfe45fadbdb3b65a76bb68b713a693b.zip
Version bump. Includes support for rc-service (bug 227139), layman (bug 224273), fixes bugs 270560 & 267914
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'app-shells')
-rw-r--r--app-shells/gentoo-bashcomp/ChangeLog10
-rw-r--r--app-shells/gentoo-bashcomp/gentoo-bashcomp-20050516.ebuild29
-rw-r--r--app-shells/gentoo-bashcomp/gentoo-bashcomp-20080521.ebuild29
-rw-r--r--app-shells/gentoo-bashcomp/gentoo-bashcomp-20090613.ebuild (renamed from app-shells/gentoo-bashcomp/gentoo-bashcomp-20080521-r1.ebuild)13
4 files changed, 17 insertions, 64 deletions
diff --git a/app-shells/gentoo-bashcomp/ChangeLog b/app-shells/gentoo-bashcomp/ChangeLog
index 5338ac4efd21..a9222bd0fce9 100644
--- a/app-shells/gentoo-bashcomp/ChangeLog
+++ b/app-shells/gentoo-bashcomp/ChangeLog
@@ -1,6 +1,14 @@
# ChangeLog for app-shells/gentoo-bashcomp
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/gentoo-bashcomp/ChangeLog,v 1.28 2009/04/12 18:18:48 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/gentoo-bashcomp/ChangeLog,v 1.29 2009/06/13 02:30:30 darkside Exp $
+
+*gentoo-bashcomp-20090613 (13 Jun 2009)
+
+ 13 Jun 2009; Jeremy Olexa <darkside@gentoo.org>
+ -gentoo-bashcomp-20050516.ebuild, -gentoo-bashcomp-20080521.ebuild,
+ -gentoo-bashcomp-20080521-r1.ebuild, +gentoo-bashcomp-20090613.ebuild:
+ Version bump. Includes support for rc-service (bug 227139), layman (bug
+ 224273), fixes bugs 270560 & 267914
12 Apr 2009; Brent Baude <ranger@gentoo.org>
gentoo-bashcomp-20090222.ebuild:
diff --git a/app-shells/gentoo-bashcomp/gentoo-bashcomp-20050516.ebuild b/app-shells/gentoo-bashcomp/gentoo-bashcomp-20050516.ebuild
deleted file mode 100644
index 30407e913f56..000000000000
--- a/app-shells/gentoo-bashcomp/gentoo-bashcomp-20050516.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/gentoo-bashcomp/gentoo-bashcomp-20050516.ebuild,v 1.14 2009/04/10 03:53:47 tester Exp $
-
-DESCRIPTION="Gentoo-specific bash command-line completions (emerge, ebuild, equery, etc)"
-HOMEPAGE="http://developer.berlios.de/projects/gentoo-bashcomp/"
-SRC_URI="mirror://berlios/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sparc x86"
-IUSE=""
-
-RDEPEND="app-shells/bash-completion"
-
-src_install() {
- make DESTDIR="${D}" install || die "make install failed"
- dodoc AUTHORS ChangeLog TODO
-}
-
-pkg_postinst() {
- local g="${ROOT}/etc/bash_completion.d/gentoo"
- if [[ -e "${g}" && ! -L "${g}" ]] ; then
- echo
- ewarn "The gentoo completion functions have moved to /usr/share/bash-completion."
- ewarn "Please run etc-update to replace /etc/bash_completion.d/gentoo with a symlink."
- echo
- fi
-}
diff --git a/app-shells/gentoo-bashcomp/gentoo-bashcomp-20080521.ebuild b/app-shells/gentoo-bashcomp/gentoo-bashcomp-20080521.ebuild
deleted file mode 100644
index be497f99d128..000000000000
--- a/app-shells/gentoo-bashcomp/gentoo-bashcomp-20080521.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/gentoo-bashcomp/gentoo-bashcomp-20080521.ebuild,v 1.1 2008/05/21 19:00:17 nyhm Exp $
-
-DESCRIPTION="Gentoo-specific bash command-line completions (emerge, ebuild, equery, etc)"
-HOMEPAGE="http://www.gentoo.org/"
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
-IUSE=""
-
-RDEPEND="app-shells/bash-completion"
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc AUTHORS ChangeLog NEWS TODO
-}
-
-pkg_postinst() {
- local g="${ROOT}/etc/bash_completion.d/gentoo"
- if [[ -e "${g}" && ! -L "${g}" ]] ; then
- echo
- ewarn "The gentoo completion functions have moved to /usr/share/bash-completion."
- ewarn "Please run etc-update to replace /etc/bash_completion.d/gentoo with a symlink."
- echo
- fi
-}
diff --git a/app-shells/gentoo-bashcomp/gentoo-bashcomp-20080521-r1.ebuild b/app-shells/gentoo-bashcomp/gentoo-bashcomp-20090613.ebuild
index 6a4659723692..62b4e841b3e3 100644
--- a/app-shells/gentoo-bashcomp/gentoo-bashcomp-20080521-r1.ebuild
+++ b/app-shells/gentoo-bashcomp/gentoo-bashcomp-20090613.ebuild
@@ -1,8 +1,8 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/gentoo-bashcomp/gentoo-bashcomp-20080521-r1.ebuild,v 1.1 2009/02/21 20:29:09 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/gentoo-bashcomp/gentoo-bashcomp-20090613.ebuild,v 1.1 2009/06/13 02:30:30 darkside Exp $
-DESCRIPTION="Gentoo-specific bash command-line completions (emerge, ebuild, equery, etc)"
+DESCRIPTION="Gentoo-specific bash command-line completions (emerge, ebuild, equery, repoman, layman, etc)"
HOMEPAGE="http://www.gentoo.org/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
@@ -15,8 +15,10 @@ RDEPEND="app-shells/bash-completion"
src_install() {
insinto /usr/share/bash-completion
- doins gentoo || die "doins failed"
- dodoc AUTHORS ChangeLog NEWS TODO
+ doins gentoo || die "failed to install gentoo module"
+ doins repoman || die "failed to install repoman module"
+ doins layman || die "failed to install layman module"
+ dodoc AUTHORS ChangeLog TODO
}
pkg_postinst() {
@@ -29,5 +31,6 @@ pkg_postinst() {
elog
elog " eselect bashcomp enable --global gentoo"
elog
- elog "to install system-wide."
+ elog "to install system-wide. (and/or repoman instead of gentoo if you use"
+ elog "repoman frequently)"
}