Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/eselect: ChangeLog eselect-1.2.11.ebuild eselect-1.2.8.ebuild
Date: Tue, 27 Jul 2010 22:43:19
Message-Id: 20100727224315.044E12CE15@corvid.gentoo.org
1 ulm 10/07/27 22:43:14
2
3 Modified: ChangeLog
4 Added: eselect-1.2.11.ebuild
5 Removed: eselect-1.2.8.ebuild
6 Log:
7 Version bump. Remove old.
8 (Portage version: 2.1.8.3/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.166 app-admin/eselect/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect/ChangeLog?rev=1.166&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect/ChangeLog?rev=1.166&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect/ChangeLog?r1=1.165&r2=1.166
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-admin/eselect/ChangeLog,v
20 retrieving revision 1.165
21 retrieving revision 1.166
22 diff -u -r1.165 -r1.166
23 --- ChangeLog 23 May 2010 21:01:15 -0000 1.165
24 +++ ChangeLog 27 Jul 2010 22:43:13 -0000 1.166
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-admin/eselect
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect/ChangeLog,v 1.165 2010/05/23 21:01:15 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect/ChangeLog,v 1.166 2010/07/27 22:43:13 ulm Exp $
30 +
31 +*eselect-1.2.11 (27 Jul 2010)
32 +
33 + 27 Jul 2010; Ulrich Mueller <ulm@g.o> -eselect-1.2.8.ebuild,
34 + +eselect-1.2.11.ebuild:
35 + Version bump. Remove old.
36
37 23 May 2010; Pacho Ramos <pacho@g.o> eselect-1.2.10.ebuild:
38 stable amd64, bug 313829
39
40
41
42 1.1 app-admin/eselect/eselect-1.2.11.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect/eselect-1.2.11.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect/eselect-1.2.11.ebuild?rev=1.1&content-type=text/plain
46
47 Index: eselect-1.2.11.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-admin/eselect/eselect-1.2.11.ebuild,v 1.1 2010/07/27 22:43:13 ulm Exp $
52
53 inherit bash-completion
54
55 DESCRIPTION="Gentoo's multi-purpose configuration and management tool"
56 HOMEPAGE="http://www.gentoo.org/proj/en/eselect/"
57 SRC_URI="mirror://gentoo/${P}.tar.bz2"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
62 IUSE="doc"
63
64 RDEPEND="sys-apps/sed
65 || (
66 sys-apps/coreutils
67 sys-freebsd/freebsd-bin
68 app-misc/realpath
69 )"
70 DEPEND="${RDEPEND}
71 doc? ( dev-python/docutils )"
72 RDEPEND="!app-admin/eselect-news
73 ${RDEPEND}
74 sys-apps/file
75 sys-libs/ncurses"
76
77 # Commented out: only few users of eselect will edit its source
78 #PDEPEND="emacs? ( app-emacs/gentoo-syntax )
79 # vim-syntax? ( app-vim/eselect-syntax )"
80
81 src_compile() {
82 econf
83 emake || die "emake failed"
84
85 if use doc; then
86 make html || die "failed to build html"
87 fi
88 }
89
90 src_install() {
91 emake DESTDIR="${D}" install || die "make install failed"
92 dodoc AUTHORS ChangeLog NEWS README TODO doc/*.txt
93 use doc && dohtml *.html doc/*
94 dobashcompletion misc/${PN}.bashcomp
95
96 # needed by news module
97 keepdir /var/lib/gentoo/news
98 }
99
100 pkg_postinst() {
101 # fowners in src_install doesn't work for the portage group:
102 # merging changes the group back to root
103 [[ -z ${EROOT} ]] && local EROOT=${ROOT}
104 chgrp portage "${EROOT}/var/lib/gentoo/news" \
105 && chmod g+w "${EROOT}/var/lib/gentoo/news"
106
107 bash-completion_pkg_postinst
108 }