diff options
author | Fabio Erculiani <lxnay@gentoo.org> | 2010-06-29 08:55:37 +0000 |
---|---|---|
committer | Fabio Erculiani <lxnay@gentoo.org> | 2010-06-29 08:55:37 +0000 |
commit | 1c85f182d96afc90778394fab463e754cbfa0fd9 (patch) | |
tree | 8b1cc6d0a1441347eddc16aa78621590430e143b /dev-util/molecule | |
parent | Stable on amd64 wrt bug #305929 (diff) | |
download | gentoo-2-1c85f182d96afc90778394fab463e754cbfa0fd9.tar.gz gentoo-2-1c85f182d96afc90778394fab463e754cbfa0fd9.tar.bz2 gentoo-2-1c85f182d96afc90778394fab463e754cbfa0fd9.zip |
version bump, add Python3.x support, improve ebuild quality, close bug #326105, thanks arfrever@gentoo.org for reporting
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/molecule')
-rw-r--r-- | dev-util/molecule/ChangeLog | 9 | ||||
-rw-r--r-- | dev-util/molecule/molecule-0.9.10.ebuild (renamed from dev-util/molecule/molecule-0.9.6.3.ebuild) | 12 |
2 files changed, 15 insertions, 6 deletions
diff --git a/dev-util/molecule/ChangeLog b/dev-util/molecule/ChangeLog index 8b52238bb6a6..1941564b1b61 100644 --- a/dev-util/molecule/ChangeLog +++ b/dev-util/molecule/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-util/molecule # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/molecule/ChangeLog,v 1.1 2010/06/28 14:07:54 lxnay Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/molecule/ChangeLog,v 1.2 2010/06/29 08:55:37 lxnay Exp $ + +*molecule-0.9.10 (29 Jun 2010) + + 29 Jun 2010; Fabio Erculiani <lxnay@gentoo.org> -molecule-0.9.6.3.ebuild, + +molecule-0.9.10.ebuild: + version bump, add Python3.x support, improve ebuild quality, close bug + #326105, thanks arfrever@gentoo.org for reporting *molecule-0.9.6.3 (28 Jun 2010) diff --git a/dev-util/molecule/molecule-0.9.6.3.ebuild b/dev-util/molecule/molecule-0.9.10.ebuild index 8a24d6146b56..c6bc4b4b9ca5 100644 --- a/dev-util/molecule/molecule-0.9.6.3.ebuild +++ b/dev-util/molecule/molecule-0.9.10.ebuild @@ -1,9 +1,8 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/molecule/molecule-0.9.6.3.ebuild,v 1.1 2010/06/28 14:07:54 lxnay Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/molecule/molecule-0.9.10.ebuild,v 1.1 2010/06/29 08:55:37 lxnay Exp $ EAPI="2" -PYTHON_DEPEND="2" inherit eutils multilib python base @@ -14,10 +13,9 @@ SRC_URI="http://distfiles.sabayon.org/dev-util/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="+doc" +IUSE="" -DEPEND="${DEPEND} - sys-devel/gettext" +DEPEND="${DEPEND} sys-devel/gettext" RDEPEND="${RDEPEND} app-cdr/cdrtools net-misc/rsync @@ -29,6 +27,10 @@ src_install() { || die "emake install failed" } +pkg_postinst() { + python_mod_optimize "/usr/$(get_libdir)/molecule" +} + pkg_postrm() { python_mod_cleanup "/usr/$(get_libdir)/molecule" } |