public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Gilles Dartiguelongue (eva)" <eva@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pyorbit: pyorbit-2.24.0.ebuild ChangeLog
Date: Tue, 21 Dec 2010 22:49:06 +0000 (UTC)	[thread overview]
Message-ID: <20101221224906.CB69720061@flycatcher.gentoo.org> (raw)

eva         10/12/21 22:49:06

  Modified:             pyorbit-2.24.0.ebuild ChangeLog
  Log:
  Add support for multiple python slots, bug #309045.
  
  (Portage version: 2.2.0_alpha9/cvs/Linux x86_64)

Revision  Changes    Path
1.14                 dev-python/pyorbit/pyorbit-2.24.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyorbit/pyorbit-2.24.0.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyorbit/pyorbit-2.24.0.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyorbit/pyorbit-2.24.0.ebuild?r1=1.13&r2=1.14

Index: pyorbit-2.24.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyorbit/pyorbit-2.24.0.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- pyorbit-2.24.0.ebuild	20 Jul 2010 15:29:05 -0000	1.13
+++ pyorbit-2.24.0.ebuild	21 Dec 2010 22:49:06 -0000	1.14
@@ -1,8 +1,14 @@
 # Copyright 1999-2010 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.13 2010/07/20 15:29:05 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyorbit/pyorbit-2.24.0.ebuild,v 1.14 2010/12/21 22:49:06 eva Exp $
 
-inherit python gnome2 multilib
+EAPI="3"
+GCONF_DEBUG="no"
+PYTHON_DEPEND="2:2.4"
+SUPPORT_PYTHON_ABIS="1"
+RESTRICT_PYTHON_ABIS="3.*"
+
+inherit gnome2 multilib python
 
 DESCRIPTION="ORBit2 bindings for Python"
 HOMEPAGE="http://www.pygtk.org/"
@@ -12,32 +18,47 @@
 KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE=""
 
-RDEPEND=">=dev-lang/python-2.4
-	>=gnome-base/orbit-2.12"
+RDEPEND=">=gnome-base/orbit-2.12"
 DEPEND="${RDEPEND}
 	>=dev-util/pkgconfig-0.12.0"
 
 DOCS="AUTHORS ChangeLog INSTALL NEWS README TODO"
 
-src_unpack() {
-	unpack ${A}
+src_prepare() {
 	# disable pyc compiling
 	mv "${S}"/py-compile "${S}"/py-compile.orig
 	ln -s $(type -P true) "${S}"/py-compile
+
+	python_copy_sources
+}
+
+src_configure() {
+	python_execute_function -s gnome2_src_configure
+}
+
+src_compile() {
+	python_execute_function -s gnome2_src_compile
+}
+
+src_test() {
+	python_execute_function -s -d
 }
 
 src_install() {
-	[[ -z ${ED} ]] && local ED=${D}
-	gnome2_src_install
+	installation() {
+		gnome2_src_install
 
-	mv "${ED}"$(python_get_sitedir)/{CORBA.py,pyorbit_CORBA.py}
-	mv "${ED}"$(python_get_sitedir)/{PortableServer.py,pyorbit_PortableServer.py}
+		mv "${ED}"$(python_get_sitedir)/{CORBA.py,pyorbit_CORBA.py}
+		mv "${ED}"$(python_get_sitedir)/{PortableServer.py,pyorbit_PortableServer.py}
+	}
+	python_execute_function -s installation
+	python_clean_installation_image
 }
 
 pkg_postinst() {
-	python_mod_optimize $(python_get_sitedir)/{pyorbit_CORBA.py,pyorbit_PortableServer.py}
+	python_mod_optimize pyorbit_CORBA.py pyorbit_PortableServer.py
 }
 
 pkg_postrm() {
-	python_mod_cleanup $(python_get_sitedir)/{pyorbit_CORBA.py,pyorbit_PortableServer.py}
+	python_mod_cleanup pyorbit_CORBA.py pyorbit_PortableServer.py
 }



1.72                 dev-python/pyorbit/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyorbit/ChangeLog?rev=1.72&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyorbit/ChangeLog?rev=1.72&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyorbit/ChangeLog?r1=1.71&r2=1.72

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/pyorbit/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog	20 Jul 2010 15:29:05 -0000	1.71
+++ ChangeLog	21 Dec 2010 22:49:06 -0000	1.72
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/pyorbit
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyorbit/ChangeLog,v 1.71 2010/07/20 15:29:05 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyorbit/ChangeLog,v 1.72 2010/12/21 22:49:06 eva Exp $
+
+  21 Dec 2010; Gilles Dartiguelongue <eva@gentoo.org> pyorbit-2.24.0.ebuild:
+  Add support for multiple python slots, bug #309045.
 
   20 Jul 2010; Jeroen Roovers <jer@gentoo.org> pyorbit-2.14.3.ebuild,
   pyorbit-2.24.0.ebuild:






             reply	other threads:[~2010-12-21 23:10 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-12-21 22:49 Gilles Dartiguelongue (eva) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2012-05-04 15:12 [gentoo-commits] gentoo-x86 commit in dev-python/pyorbit: pyorbit-2.24.0.ebuild ChangeLog Patrick Lauer (patrick)
2012-02-21  6:49 Patrick Lauer (patrick)
2012-02-10  3:35 Patrick Lauer (patrick)
2010-01-17 23:43 Jeroen Roovers (jer)
2009-10-11 10:51 Fabian Groffen (grobian)
2009-04-28 11:11 Raul Porcel (armin76)
2009-04-27  9:52 Raul Porcel (armin76)
2009-04-12 21:10 Friedrich Oslage (bluebird)
2009-03-18 16:10 Raul Porcel (armin76)
2009-03-15 21:05 Markus Meier (maekke)
2009-03-11  2:01 Daniel Gryniewicz (dang)
2009-03-06 15:56 Brent Baude (ranger)
2009-03-05 21:46 Brent Baude (ranger)
2009-02-18 23:30 Gilles Dartiguelongue (eva)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20101221224906.CB69720061@flycatcher.gentoo.org \
    --to=eva@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox