Gentoo Archives: gentoo-commits

From: "Ian Stakenvicius (axs)" <axs@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-portage/eix: eix-0.30.3.ebuild ChangeLog eix-0.30.0.ebuild eix-0.30.2.ebuild eix-0.30.1.ebuild eix-0.29.6.ebuild
Date: Sat, 23 Aug 2014 18:58:26
Message-Id: 20140823185821.8C9213ACB@oystercatcher.gentoo.org
1 axs 14/08/23 18:58:21
2
3 Modified: ChangeLog
4 Added: eix-0.30.3.ebuild
5 Removed: eix-0.30.0.ebuild eix-0.30.2.ebuild
6 eix-0.30.1.ebuild eix-0.29.6.ebuild
7 Log:
8 version bump, fixes many bugs; removed old
9
10 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 2B6559ED)
11
12 Revision Changes Path
13 1.476 app-portage/eix/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?rev=1.476&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?rev=1.476&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?r1=1.475&r2=1.476
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v
22 retrieving revision 1.475
23 retrieving revision 1.476
24 diff -u -r1.475 -r1.476
25 --- ChangeLog 4 Aug 2014 04:58:19 -0000 1.475
26 +++ ChangeLog 23 Aug 2014 18:58:21 -0000 1.476
27 @@ -1,6 +1,13 @@
28 # ChangeLog for app-portage/eix
29 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.475 2014/08/04 04:58:19 vapier Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.476 2014/08/23 18:58:21 axs Exp $
32 +
33 +*eix-0.30.3 (23 Aug 2014)
34 +
35 + 23 Aug 2014; Ian Stakenvicius (_AxS_) <axs@g.o> +eix-0.30.3.ebuild,
36 + -eix-0.29.6.ebuild, -eix-0.30.0.ebuild, -eix-0.30.1.ebuild,
37 + -eix-0.30.2.ebuild:
38 + version bump, fixes many bugs; removed old
39
40 04 Aug 2014; Mike Frysinger <vapier@g.o> eix-0.30.0.ebuild,
41 eix-0.30.1.ebuild, eix-0.30.2.ebuild:
42
43
44
45 1.1 app-portage/eix/eix-0.30.3.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.30.3.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.30.3.ebuild?rev=1.1&content-type=text/plain
49
50 Index: eix-0.30.3.ebuild
51 ===================================================================
52 # Copyright 1999-2014 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.30.3.ebuild,v 1.1 2014/08/23 18:58:21 axs Exp $
55
56 EAPI=5
57
58 PLOCALES="de ru"
59 inherit bash-completion-r1 eutils l10n
60
61 DESCRIPTION="Search and query ebuilds, portage incl. local settings, ext. overlays, version changes, and more"
62 HOMEPAGE="http://github.com/vaeth/eix/"
63 SRC_URI="http://dev.gentoo.org/~axs/distfiles/${P}.tar.xz"
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~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"
68 IUSE="debug +dep doc nls optimization security strong-optimization strong-security sqlite swap-remote tools"
69
70 BOTHDEPEND="sqlite? ( >=dev-db/sqlite-3 )
71 nls? ( virtual/libintl )"
72 RDEPEND="${BOTHDEPEND}
73 app-shells/push"
74 DEPEND="${BOTHDEPEND}
75 app-arch/xz-utils
76 nls? ( sys-devel/gettext )"
77
78 pkg_setup() {
79 case " ${REPLACING_VERSIONS}" in
80 *\ 0.[0-9].*|*\ 0.1[0-9].*|*\ 0.2[0-4].*|*\ 0.25.0*)
81 local eixcache="${EROOT}/var/cache/${PN}"
82 test -f "${eixcache}" && rm -f -- "${eixcache}";;
83 esac
84 }
85
86 src_prepare() {
87 sed -i -e "s'/'${EPREFIX}/'" -- "${S}"/tmpfiles.d/eix.conf
88 epatch_user
89 }
90
91 src_configure() {
92 econf $(use_with sqlite) $(use_with doc extra-doc) \
93 $(use_enable nls) $(use_enable tools separate-tools) \
94 $(use_enable security) $(use_enable optimization) \
95 $(use_enable strong-security) \
96 $(use_enable strong-optimization) $(use_enable debug debugging) \
97 $(use_enable swap-remote) \
98 $(use_with prefix always-accept-keywords) \
99 $(use_with dep dep-default) \
100 --with-zsh-completion \
101 --with-portage-rootpath="${ROOTPATH}" \
102 --with-eprefix-default="${EPREFIX}" \
103 --docdir="${EPREFIX}/usr/share/doc/${PF}" \
104 --htmldir="${EPREFIX}/usr/share/doc/${PF}/html"
105 }
106
107 src_install() {
108 default
109 dobashcomp bash/eix
110 insinto "/usr/lib/tmpfiles.d"
111 doins tmpfiles.d/eix.conf
112 }
113
114 pkg_postinst() {
115 test -d "${EROOT}var/cache/${PN}" || {
116 mkdir "${EROOT}var/cache/${PN}"
117 use prefix || chown portage:portage "${EROOT}var/cache/${PN}"
118 }
119 local obs="${EROOT}var/cache/eix.previous"
120 ! test -f "${obs}" || ewarn "Found obsolete ${obs}, please remove it"
121 }
122
123 pkg_postrm() {
124 [ -n "${REPLACED_BY_VERSION}" ] || rm -rf -- "${EROOT}var/cache/${PN}"
125 }