Gentoo Archives: gentoo-commits

From: "Jeremy Olexa (darkside)" <darkside@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/eselect: ChangeLog eselect-1.0.11-r2.ebuild eselect-1.0.11.ebuild eselect-1.0.8.ebuild eselect-1.0.7.ebuild eselect-1.0.2.ebuild eselect-1.0.9.ebuild
Date: Wed, 08 Apr 2009 05:23:56
Message-Id: E1LrQGQ-0005qT-DR@stork.gentoo.org
1 darkside 09/04/08 05:23:54
2
3 Modified: ChangeLog
4 Added: eselect-1.0.11-r2.ebuild
5 Removed: eselect-1.0.11.ebuild eselect-1.0.8.ebuild
6 eselect-1.0.7.ebuild eselect-1.0.2.ebuild
7 eselect-1.0.9.ebuild
8 Log:
9 Version bump to fix bug 248470, patch by Thomas Bellman. Allows parent profiles to be selectable. Also, remove old versions
10 (Portage version: 2.1.6.11/cvs/Linux x86_64)
11
12 Revision Changes Path
13 1.80 app-admin/eselect/ChangeLog
14
15 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/eselect/ChangeLog?rev=1.80&view=markup
16 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/eselect/ChangeLog?rev=1.80&content-type=text/plain
17 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/eselect/ChangeLog?r1=1.79&r2=1.80
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/app-admin/eselect/ChangeLog,v
22 retrieving revision 1.79
23 retrieving revision 1.80
24 diff -u -r1.79 -r1.80
25 --- ChangeLog 8 Apr 2009 04:35:10 -0000 1.79
26 +++ ChangeLog 8 Apr 2009 05:23:54 -0000 1.80
27 @@ -1,6 +1,15 @@
28 # ChangeLog for app-admin/eselect
29 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect/ChangeLog,v 1.79 2009/04/08 04:35:10 darkside Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect/ChangeLog,v 1.80 2009/04/08 05:23:54 darkside Exp $
32 +
33 +*eselect-1.0.11-r2 (08 Apr 2009)
34 +
35 + 08 Apr 2009; Jeremy Olexa <darkside@g.o>
36 + +files/eselect-1.0.11-parent-profiles.patch, -eselect-1.0.2.ebuild,
37 + -eselect-1.0.7.ebuild, -eselect-1.0.8.ebuild, -eselect-1.0.9.ebuild,
38 + -eselect-1.0.11.ebuild, +eselect-1.0.11-r2.ebuild:
39 + Version bump to fix bug 248470, patch by Thomas Bellman. Allows parent
40 + profiles to be selectable. Also, remove old versions
41
42 08 Apr 2009; Jeremy Olexa <darkside@g.o> eselect-1.0.11-r1.ebuild:
43 fix postinst message to include instructions for enabling globally, bug 265168
44
45
46
47 1.1 app-admin/eselect/eselect-1.0.11-r2.ebuild
48
49 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/eselect/eselect-1.0.11-r2.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/eselect/eselect-1.0.11-r2.ebuild?rev=1.1&content-type=text/plain
51
52 Index: eselect-1.0.11-r2.ebuild
53 ===================================================================
54 # Copyright 1999-2009 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/app-admin/eselect/eselect-1.0.11-r2.ebuild,v 1.1 2009/04/08 05:23:54 darkside Exp $
57
58 inherit eutils
59
60 DESCRIPTION="Modular -config replacement utility"
61 HOMEPAGE="http://www.gentoo.org/proj/en/eselect/"
62 SRC_URI="http://dev.gentooexperimental.org/~peper/distfiles/${P}.tar.bz2"
63
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
67 IUSE="doc bash-completion vim-syntax"
68
69 DEPEND="sys-apps/sed
70 doc? ( dev-python/docutils )
71 || (
72 sys-apps/coreutils
73 sys-freebsd/freebsd-bin
74 app-admin/realpath
75 )"
76 RDEPEND="sys-apps/sed
77 sys-apps/file"
78
79 PDEPEND="vim-syntax? ( app-vim/eselect-syntax )"
80
81 src_unpack() {
82 unpack ${A}
83
84 cd "${S}"
85 epatch "${FILESDIR}/${P}-fix-paludis-command.patch"
86 pwd
87 epatch "${FILESDIR}/${P}-parent-profiles.patch"
88 }
89
90 src_compile() {
91 econf || die "econf failed"
92 emake || die "emake failed"
93
94 if use doc ; then
95 make html || die "failed to build html"
96 fi
97 }
98
99 src_install() {
100 emake DESTDIR="${D}" install || die "make install failed"
101 dodoc AUTHORS ChangeLog NEWS README TODO doc/*.txt
102 use doc && dohtml *.html doc/*
103
104 # we don't use bash-completion.eclass since eselect
105 # is listed in RDEPEND.
106 if use bash-completion ; then
107 insinto /usr/share/bash-completion
108 newins misc/${PN}.bashcomp ${PN} || die
109 fi
110 }
111
112 pkg_postinst() {
113 if use bash-completion ; then
114 elog "To enable command-line completion for eselect, run:"
115 elog
116 elog " eselect bashcomp enable eselect"
117 elog
118 elog "to install locally, or"
119 elog
120 elog " eselect bashcomp enable --global eselect"
121 elog
122 elog "to install system-wide."
123 fi
124 }