Gentoo Archives: gentoo-commits

From: "Fabio Erculiani (lxnay)" <lxnay@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/molecule: ChangeLog molecule-0.9.10.1.ebuild molecule-0.9.10.ebuild
Date: Tue, 29 Jun 2010 09:03:50
Message-Id: 20100629090346.48A902C621@corvid.gentoo.org
1 lxnay 10/06/29 09:03:46
2
3 Modified: ChangeLog
4 Added: molecule-0.9.10.1.ebuild
5 Removed: molecule-0.9.10.ebuild
6 Log:
7 version bump, upstream fixed more Python 3.x bugs, fix ebuild DEPEND/RDEPEND, thanks to ssuominen@g.o
8 (Portage version: 2.2_rc67/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.3 dev-util/molecule/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/molecule/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/molecule/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/molecule/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-util/molecule/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 29 Jun 2010 08:55:37 -0000 1.2
24 +++ ChangeLog 29 Jun 2010 09:03:46 -0000 1.3
25 @@ -1,6 +1,13 @@
26 # ChangeLog for dev-util/molecule
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-util/molecule/ChangeLog,v 1.2 2010/06/29 08:55:37 lxnay Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/molecule/ChangeLog,v 1.3 2010/06/29 09:03:46 lxnay Exp $
30 +
31 +*molecule-0.9.10.1 (29 Jun 2010)
32 +
33 + 29 Jun 2010; Fabio Erculiani <lxnay@g.o> -molecule-0.9.10.ebuild,
34 + +molecule-0.9.10.1.ebuild:
35 + version bump, upstream fixed more Python 3.x bugs, fix ebuild
36 + DEPEND/RDEPEND, thanks to ssuominen@g.o
37
38 *molecule-0.9.10 (29 Jun 2010)
39
40
41
42
43 1.1 dev-util/molecule/molecule-0.9.10.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/molecule/molecule-0.9.10.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/molecule/molecule-0.9.10.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: molecule-0.9.10.1.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-util/molecule/molecule-0.9.10.1.ebuild,v 1.1 2010/06/29 09:03:46 lxnay Exp $
53
54 EAPI="2"
55
56 inherit eutils multilib python base
57
58 DESCRIPTION="Release metatool used for creating Sabayon (and Gentoo) releases"
59 HOMEPAGE="http://www.sabayon.org"
60 SRC_URI="http://distfiles.sabayon.org/dev-util/${P}.tar.bz2"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE=""
66
67 DEPEND="sys-devel/gettext"
68 RDEPEND="app-cdr/cdrtools
69 net-misc/rsync
70 sys-fs/squashfs-tools"
71
72 src_install() {
73 emake DESTDIR="${D}" LIBDIR="/usr/$(get_libdir)" \
74 PREFIX="/usr" SYSCONFDIR="/etc" install \
75 || die "emake install failed"
76 }
77
78 pkg_postinst() {
79 python_mod_optimize "/usr/$(get_libdir)/molecule"
80 }
81
82 pkg_postrm() {
83 python_mod_cleanup "/usr/$(get_libdir)/molecule"
84 }