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: eix-0.20.1.ebuild ChangeLog eix-0.20.0.ebuild
Date: Tue, 16 Feb 2010 16:53:49
Message-Id: E1NhQgE-0001VI-P7@stork.gentoo.org
1 darkside 10/02/16 16:53:46
2
3 Modified: ChangeLog
4 Added: eix-0.20.1.ebuild
5 Removed: eix-0.20.0.ebuild
6 Log:
7 Version bump, bug fixes. Fixes regression introduced with 0.20.0
8 (Portage version: 2.1.7.17/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.320 app-portage/eix/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/ChangeLog?rev=1.320&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/ChangeLog?rev=1.320&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/ChangeLog?r1=1.319&r2=1.320
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v
20 retrieving revision 1.319
21 retrieving revision 1.320
22 diff -u -r1.319 -r1.320
23 --- ChangeLog 9 Feb 2010 02:10:44 -0000 1.319
24 +++ ChangeLog 16 Feb 2010 16:53:46 -0000 1.320
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-portage/eix
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.319 2010/02/09 02:10:44 darkside Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.320 2010/02/16 16:53:46 darkside Exp $
30 +
31 +*eix-0.20.1 (16 Feb 2010)
32 +
33 + 16 Feb 2010; Jeremy Olexa <darkside@g.o> -eix-0.20.0.ebuild,
34 + +eix-0.20.1.ebuild:
35 + Version bump, bug fixes. Fixes regression introduced with 0.20.0
36
37 09 Feb 2010; Jeremy Olexa <darkside@g.o> metadata.xml:
38 Add more verbose USE flag descriptions, bug 304017
39
40
41
42 1.1 app-portage/eix/eix-0.20.1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/eix-0.20.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/eix-0.20.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: eix-0.20.1.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-portage/eix/eix-0.20.1.ebuild,v 1.1 2010/02/16 16:53:46 darkside Exp $
52
53 EAPI=3
54
55 inherit multilib
56
57 DESCRIPTION="Search and query ebuilds, portage incl. local settings, ext. overlays, version changes, and more"
58 HOMEPAGE="http://eix.sourceforge.net"
59 SRC_URI="mirror://sourceforge/eix/${P}.tar.xz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
64 IUSE="+bzip2 debug doc hardened nls optimization strong-optimization sqlite tools"
65
66 RDEPEND="sqlite? ( >=dev-db/sqlite-3 )
67 nls? ( virtual/libintl )
68 bzip2? ( app-arch/bzip2 )"
69 DEPEND="${RDEPEND}
70 app-arch/xz-utils
71 doc? ( dev-python/docutils )
72 nls? ( sys-devel/gettext )"
73
74 src_configure() {
75 econf $(use_with bzip2) $(use_with sqlite) $(use_with doc rst) \
76 $(use_enable nls) $(use_enable tools separate-tools) \
77 $(use_enable hardened security) $(use_enable optimization) \
78 $(use_enable strong-optimization) $(use_enable debug debugging) \
79 --with-ebuild-sh-default="/usr/$(get_libdir)/portage/bin/ebuild.sh" \
80 --with-portage-rootpath="${ROOTPATH}" \
81 --with-eprefix-default="${EPREFIX}" \
82 --docdir="${EPREFIX}/usr/share/doc/${PF}" \
83 --htmldir="${EPREFIX}/usr/share/doc/${PF}/html"
84 }
85
86 src_install() {
87 emake DESTDIR="${D}" install || die "emake install failed"
88 prepalldocs
89 }