Gentoo Archives: gentoo-commits

From: "Stephanie J. Lockwood-Childs (wormo)" <wormo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-portage/eix: ChangeLog eix-0.14.2.ebuild
Date: Fri, 31 Oct 2008 05:51:41
Message-Id: E1Kvmv5-0000SU-N7@stork.gentoo.org
1 wormo 08/10/31 05:51:39
2
3 Modified: ChangeLog
4 Added: eix-0.14.2.ebuild
5 Log:
6 version bump on behalf of Martin (bug #243398)
7 (Portage version: 2.1.4.5)
8
9 Revision Changes Path
10 1.251 app-portage/eix/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/ChangeLog?rev=1.251&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/ChangeLog?rev=1.251&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/ChangeLog?r1=1.250&r2=1.251
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v
19 retrieving revision 1.250
20 retrieving revision 1.251
21 diff -u -r1.250 -r1.251
22 --- ChangeLog 11 Oct 2008 15:06:39 -0000 1.250
23 +++ ChangeLog 31 Oct 2008 05:51:39 -0000 1.251
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-portage/eix
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.250 2008/10/11 15:06:39 bangert Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.251 2008/10/31 05:51:39 wormo Exp $
29 +
30 +*eix-0.14.2 (30 Oct 2008)
31 +
32 + 30 Oct 2008; Stephanie Lockwood-Childs <wormo@g.o>
33 + +eix-0.14.2.ebuild:
34 + version bump on behalf of Martin Väth (bug #243398)
35
36 *eix-0.14.1 (11 Oct 2008)
37
38
39
40
41 1.1 app-portage/eix/eix-0.14.2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/eix-0.14.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/eix-0.14.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: eix-0.14.2.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.14.2.ebuild,v 1.1 2008/10/31 05:51:39 wormo Exp $
51
52 DESCRIPTION="Small utility for searching ebuilds with indexing for fast results"
53 HOMEPAGE="http://eix.sourceforge.net"
54 SRC_URI="mirror://sourceforge/eix/${P}.tar.lzma"
55
56 LICENSE="GPL-2"
57 SLOT="0"
58 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
59 IUSE="doc sqlite"
60
61 RDEPEND="sqlite? ( >=dev-db/sqlite-3 )
62 app-arch/bzip2"
63 DEPEND="${RDEPEND}
64 app-arch/lzma-utils
65 doc? ( dev-python/docutils )"
66
67 inherit multilib
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 || die "econf failed"
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 }