Gentoo Archives: gentoo-commits

From: "Fabio Erculiani (lxnay)" <lxnay@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/equo: ChangeLog equo-1.0_rc29.ebuild
Date: Tue, 02 Aug 2011 16:55:04
Message-Id: 20110802165455.907022004C@flycatcher.gentoo.org
1 lxnay 11/08/02 16:54:55
2
3 Modified: ChangeLog
4 Added: equo-1.0_rc29.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha37/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.3 app-admin/equo/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/equo/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/equo/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/equo/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-admin/equo/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 19 Jul 2011 12:38:04 -0000 1.2
24 +++ ChangeLog 2 Aug 2011 16:54:55 -0000 1.3
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-admin/equo
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-admin/equo/ChangeLog,v 1.2 2011/07/19 12:38:04 lxnay Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-admin/equo/ChangeLog,v 1.3 2011/08/02 16:54:55 lxnay Exp $
30 +
31 +*equo-1.0_rc29 (02 Aug 2011)
32 +
33 + 02 Aug 2011; Fabio Erculiani <lxnay@g.o> +equo-1.0_rc29.ebuild:
34 + version bump
35
36 19 Jul 2011; Fabio Erculiani <lxnay@g.o> equo-1.0_rc27.ebuild:
37 update DESCRIPTION
38
39
40
41 1.1 app-admin/equo/equo-1.0_rc29.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/equo/equo-1.0_rc29.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/equo/equo-1.0_rc29.ebuild?rev=1.1&content-type=text/plain
45
46 Index: equo-1.0_rc29.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-admin/equo/equo-1.0_rc29.ebuild,v 1.1 2011/08/02 16:54:55 lxnay Exp $
51
52 EAPI="3"
53 PYTHON_DEPEND="2"
54 inherit eutils multilib python bash-completion
55
56 DESCRIPTION="Entropy Package Manager text-based client"
57 HOMEPAGE="http://www.sabayon.org"
58 LICENSE="GPL-2"
59
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE=""
63 SRC_URI="mirror://sabayon/sys-apps/entropy-${PV}.tar.bz2"
64
65 S="${WORKDIR}/entropy-${PV}"
66
67 DEPEND="~sys-apps/entropy-${PV}"
68 RDEPEND="${DEPEND} sys-apps/file[python]"
69
70 src_compile() {
71 emake || die "make failed"
72 }
73
74 src_install() {
75 emake DESTDIR="${D}" LIBDIR="usr/$(get_libdir)" equo-install || die "make install failed"
76 dobashcompletion "${S}/misc/equo-completion.bash" equo
77 }
78
79 pkg_postinst() {
80 python_mod_optimize "/usr/$(get_libdir)/entropy/client"
81 bash-completion_pkg_postinst
82 echo
83 elog "If you would like to allow users in the 'entropy' group"
84 elog "to update available package repositories, please consider"
85 elog "to install sys-apps/entropy-client-services"
86 echo
87 }
88
89 pkg_postrm() {
90 python_mod_cleanup "/usr/$(get_libdir)/entropy/client"
91 }