diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2009-02-18 23:30:29 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2009-02-18 23:30:29 +0000 |
commit | 986c9071b2cc4c8cf611a62488a5c89536662802 (patch) | |
tree | 750708c3f62728a90afc94349b611e1872409ad0 /dev-python/pyorbit | |
parent | Add gucharmap2 compatibility patch, bug #240728. Fix typoe, bug #253438. (diff) | |
download | gentoo-2-986c9071b2cc4c8cf611a62488a5c89536662802.tar.gz gentoo-2-986c9071b2cc4c8cf611a62488a5c89536662802.tar.bz2 gentoo-2-986c9071b2cc4c8cf611a62488a5c89536662802.zip |
Bump to 2.24. Bug fixes.
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/pyorbit')
-rw-r--r-- | dev-python/pyorbit/ChangeLog | 10 | ||||
-rw-r--r-- | dev-python/pyorbit/pyorbit-2.24.0.ebuild | 47 |
2 files changed, 55 insertions, 2 deletions
diff --git a/dev-python/pyorbit/ChangeLog b/dev-python/pyorbit/ChangeLog index 44165c66011b..17ad37e56af5 100644 --- a/dev-python/pyorbit/ChangeLog +++ b/dev-python/pyorbit/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/pyorbit -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyorbit/ChangeLog,v 1.58 2008/10/27 10:29:01 hawking Exp $ +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyorbit/ChangeLog,v 1.59 2009/02/18 23:30:29 eva Exp $ + +*pyorbit-2.24.0 (18 Feb 2009) + + 18 Feb 2009; Gilles Dartiguelongue <eva@gentoo.org> + +pyorbit-2.24.0.ebuild: + Bump to 2.24. Bug fixes. 27 Oct 2008; Ali Polatel <hawking@gentoo.org> pyorbit-2.14.3.ebuild: Use python_need_rebuild. diff --git a/dev-python/pyorbit/pyorbit-2.24.0.ebuild b/dev-python/pyorbit/pyorbit-2.24.0.ebuild new file mode 100644 index 000000000000..369b5f0c6ea2 --- /dev/null +++ b/dev-python/pyorbit/pyorbit-2.24.0.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyorbit/pyorbit-2.24.0.ebuild,v 1.1 2009/02/18 23:30:29 eva Exp $ + +inherit python gnome2 multilib + +DESCRIPTION="ORBit2 bindings for Python" +HOMEPAGE="http://www.pygtk.org/" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="" + +RDEPEND=">=dev-lang/python-2.4 + >=gnome-base/orbit-2.12" +DEPEND="${RDEPEND} + >=dev-util/pkgconfig-0.12.0" + +DOCS="AUTHORS ChangeLog INSTALL NEWS README TODO" + +src_unpack() { + unpack ${A} + # disable pyc compiling + mv "${S}"/py-compile "${S}"/py-compile.orig + ln -s $(type -P true) "${S}"/py-compile +} + +src_install() { + gnome2_src_install + + python_version + mv "${D}"/usr/$(get_libdir)/python${PYVER}/site-packages/CORBA.py \ + "${D}"/usr/$(get_libdir)/python${PYVER}/site-packages/pyorbit_CORBA.py + + mv "${D}"/usr/$(get_libdir)/python${PYVER}/site-packages/PortableServer.py \ + "${D}"/usr/$(get_libdir)/python${PYVER}/site-packages/pyorbit_PortableServer.py +} + +pkg_postinst() { + python_version + python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages +} + +pkg_postrm() { + python_mod_cleanup +} |