Gentoo Archives: gentoo-commits

From: "Paul Varner (fuzzyray)" <fuzzyray@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-portage/gentoolkit: ChangeLog gentoolkit-0.2.4.5.ebuild gentoolkit-0.2.4.4.ebuild gentoolkit-0.2.4.3.ebuild
Date: Mon, 01 Jun 2009 17:47:32
Message-Id: E1MBBba-00011a-Hb@stork.gentoo.org
1 fuzzyray 09/06/01 17:47:26
2
3 Modified: ChangeLog
4 Added: gentoolkit-0.2.4.5.ebuild
5 Removed: gentoolkit-0.2.4.4.ebuild gentoolkit-0.2.4.3.ebuild
6 Log:
7 gentoolkit-0.2.4.5 revision bump. Adds patches from http://git.goodpoint.de/?p=glsa-check.git;a=shortlog;h=refs/heads/for-0.2.4.4 for glsa-check
8 (Portage version: 2.2_rc33/cvs/Linux i686)
9
10 Revision Changes Path
11 1.159 app-portage/gentoolkit/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/gentoolkit/ChangeLog?rev=1.159&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/gentoolkit/ChangeLog?rev=1.159&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/gentoolkit/ChangeLog?r1=1.158&r2=1.159
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-portage/gentoolkit/ChangeLog,v
20 retrieving revision 1.158
21 retrieving revision 1.159
22 diff -u -r1.158 -r1.159
23 --- ChangeLog 27 May 2009 19:16:44 -0000 1.158
24 +++ ChangeLog 1 Jun 2009 17:47:26 -0000 1.159
25 @@ -1,6 +1,20 @@
26 # ChangeLog for app-portage/gentoolkit
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-portage/gentoolkit/ChangeLog,v 1.158 2009/05/27 19:16:44 fuzzyray Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-portage/gentoolkit/ChangeLog,v 1.159 2009/06/01 17:47:26 fuzzyray Exp $
30 +
31 +*gentoolkit-0.2.4.5 (01 Jun 2009)
32 +
33 + 01 Jun 2009; Paul Varner <fuzzyray@g.o> -gentoolkit-0.2.4.3.ebuild,
34 + -gentoolkit-0.2.4.4.ebuild, +gentoolkit-0.2.4.5.ebuild:
35 + gentoolkit-0.2.4.5 revision bump. This version adds the following patches
36 + to glsa-check:
37 + * Handle unicode encoding when dumping to stdout and start migration to
38 + using StringIO
39 + * Some python tweaks to speed glsa-check
40 + See
41 + http://git.goodpoint.de/?p=glsa-check.git;a=shortlog;h=refs/heads/for-0.2.
42 + 4.4
43 + Remove gentoolkit-0.2.4.3 and gentoolkit-0.2.4.4
44
45 *gentoolkit-9999 (27 May 2009)
46
47
48
49
50 1.1 app-portage/gentoolkit/gentoolkit-0.2.4.5.ebuild
51
52 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/gentoolkit/gentoolkit-0.2.4.5.ebuild?rev=1.1&view=markup
53 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/gentoolkit/gentoolkit-0.2.4.5.ebuild?rev=1.1&content-type=text/plain
54
55 Index: gentoolkit-0.2.4.5.ebuild
56 ===================================================================
57 # Copyright 1999-2009 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 # $Header: /var/cvsroot/gentoo-x86/app-portage/gentoolkit/gentoolkit-0.2.4.5.ebuild,v 1.1 2009/06/01 17:47:26 fuzzyray Exp $
60
61 EAPI=2
62
63 inherit eutils python
64
65 DESCRIPTION="Collection of administration scripts for Gentoo"
66 HOMEPAGE="http://www.gentoo.org/proj/en/portage/tools/index.xml"
67 SRC_URI="mirror://gentoo/${P}.tar.gz http://dev.gentoo.org/~fuzzyray/distfiles/${P}.tar.gz"
68
69 LICENSE="GPL-2"
70 SLOT="0"
71 IUSE=""
72
73 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 -x86-fbsd"
74
75 DEPEND="sys-apps/portage
76 dev-lang/python[xml]
77 dev-lang/perl
78 sys-apps/grep"
79 RDEPEND="${DEPEND}"
80
81 src_install() {
82 emake DESTDIR="${D}" install-gentoolkit || die "install-gentoolkit failed"
83
84 # Create cache directory for revdep-rebuild
85 dodir /var/cache/revdep-rebuild
86 keepdir /var/cache/revdep-rebuild
87 fowners root:root /var/cache/revdep-rebuild
88 fperms 0700 /var/cache/revdep-rebuild
89 }
90
91 pkg_postinst() {
92 # Make sure that our ownership and permissions stuck
93 chown root:root "${ROOT}/var/cache/revdep-rebuild"
94 chmod 0700 "${ROOT}/var/cache/revdep-rebuild"
95
96 python_mod_optimize /usr/lib/gentoolkit
97
98 einfo
99 elog "The default location for revdep-rebuild files has been moved"
100 elog "to /var/cache/revdep-rebuild when run as root."
101 einfo
102 einfo "Another alternative to equery is app-portage/portage-utils"
103 einfo
104 einfo "For further information on gentoolkit, please read the gentoolkit"
105 einfo "guide: http://www.gentoo.org/doc/en/gentoolkit.xml"
106 einfo
107 }
108
109 pkg_postrm() {
110 python_mod_cleanup /usr/lib/gentoolkit
111 }