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-portage/eix: ChangeLog eix-0.15.4.ebuild
Date: Sat, 31 Jan 2009 15:26:08
Message-Id: E1LTHjS-0002vx-RR@stork.gentoo.org
1 darkside 09/01/31 15:26:06
2
3 Modified: ChangeLog
4 Added: eix-0.15.4.ebuild
5 Log:
6 Version bump to fix compilation issues and a few cosmetic changes
7 (Portage version: 2.2_rc23/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.267 app-portage/eix/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/ChangeLog?rev=1.267&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/ChangeLog?rev=1.267&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/ChangeLog?r1=1.266&r2=1.267
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v
19 retrieving revision 1.266
20 retrieving revision 1.267
21 diff -u -r1.266 -r1.267
22 --- ChangeLog 18 Jan 2009 14:40:59 -0000 1.266
23 +++ ChangeLog 31 Jan 2009 15:26:06 -0000 1.267
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-portage/eix
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.266 2009/01/18 14:40:59 darkside Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.267 2009/01/31 15:26:06 darkside Exp $
29 +
30 +*eix-0.15.4 (31 Jan 2009)
31 +
32 + 31 Jan 2009; Jeremy Olexa <darkside@g.o> +eix-0.15.4.ebuild:
33 + Version bump to fix compilation issues and a few cosmetic changes
34
35 *eix-0.15.3 (18 Jan 2009)
36
37
38
39
40 1.1 app-portage/eix/eix-0.15.4.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/eix-0.15.4.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/eix-0.15.4.ebuild?rev=1.1&content-type=text/plain
44
45 Index: eix-0.15.4.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.15.4.ebuild,v 1.1 2009/01/31 15:26:06 darkside Exp $
50
51 inherit multilib
52
53 DESCRIPTION="Search and query ebuilds, portage incl. local settings, ext.
54 overlays, version changes, and more"
55 HOMEPAGE="http://eix.sourceforge.net"
56 SRC_URI="mirror://sourceforge/eix/${P}.tar.lzma"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
61 IUSE="doc sqlite"
62
63 RDEPEND="sqlite? ( >=dev-db/sqlite-3 )
64 app-arch/bzip2"
65 DEPEND="${RDEPEND}
66 app-arch/lzma-utils
67 doc? ( dev-python/docutils )"
68
69 src_compile() {
70 econf --with-bzip2 $(use_with sqlite) $(use_with doc rst) \
71 --with-ebuild-sh-default="/usr/$(get_libdir)/portage/bin/ebuild.sh" \
72 --with-portage-rootpath="${ROOTPATH}"
73 emake || die "emake failed"
74 }
75
76 src_install() {
77 emake DESTDIR="${D}" install || die "emake install failed"
78
79 dodoc AUTHORS ChangeLog doc/format.txt
80 use doc && dodoc doc/format.html
81 }
82
83 pkg_postinst() {
84 ewarn
85 ewarn "Security Warning:"
86 ewarn
87 ewarn "Since >=eix-0.12.0, eix uses by default OVERLAY_CACHE_METHOD=\"parse|ebuild*\""
88 ewarn "This is rather reliable, but ebuilds may be executed by user \"portage\". Set"
89 ewarn "OVERLAY_CACHE_METHOD=parse in /etc/eixrc if you do not trust the ebuilds."
90 if test -d /var/log && ! test -x /var/log || test -e /var/log/eix-sync.log
91 then
92 einfo
93 einfo "eix-sync no longer supports redirection to /var/log/eix-sync.log"
94 einfo "You can remove that file."
95 fi
96 }