diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2010-04-23 09:04:36 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2010-04-23 09:04:36 +0000 |
commit | e02792d1add32fb1a1306d011bc123099ab67358 (patch) | |
tree | af2dc68284009a0666bb70807eb1027c4f984860 /sci-mathematics | |
parent | Add qt-webkit dependency wrt bug #316441 (diff) | |
download | historical-e02792d1add32fb1a1306d011bc123099ab67358.tar.gz historical-e02792d1add32fb1a1306d011bc123099ab67358.tar.bz2 historical-e02792d1add32fb1a1306d011bc123099ab67358.zip |
Refactor ebuild to use python functions correctly. Fixes bug #316235
Package-Manager: portage-2.2_rc67/cvs/Linux x86_64
Diffstat (limited to 'sci-mathematics')
-rw-r--r-- | sci-mathematics/relational/ChangeLog | 7 | ||||
-rw-r--r-- | sci-mathematics/relational/Manifest | 4 | ||||
-rw-r--r-- | sci-mathematics/relational/relational-0.10.ebuild | 9 |
3 files changed, 14 insertions, 6 deletions
diff --git a/sci-mathematics/relational/ChangeLog b/sci-mathematics/relational/ChangeLog index c0545957820d..e23f5c3fe923 100644 --- a/sci-mathematics/relational/ChangeLog +++ b/sci-mathematics/relational/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-mathematics/relational -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/relational/ChangeLog,v 1.2 2009/12/18 16:24:47 hwoarang Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/relational/ChangeLog,v 1.3 2010/04/23 09:04:36 hwoarang Exp $ + + 23 Apr 2010; Markos Chandras <hwoarang@gentoo.org> relational-0.10.ebuild: + Refactor ebuild to use python functions correctly. Fixes bug #316235 18 Dec 2009; Markos Chandras <hwoarang@gentoo.org> relational-0.10.ebuild: Update homepage url diff --git a/sci-mathematics/relational/Manifest b/sci-mathematics/relational/Manifest index bc79c35be3a0..0814e6cebd0a 100644 --- a/sci-mathematics/relational/Manifest +++ b/sci-mathematics/relational/Manifest @@ -1,4 +1,4 @@ DIST relational_0.10.tar.gz 635600 RMD160 7fa8c5879bde19535804561d9b88d64e8b613d25 SHA1 f93fa4ac02732edfe10299912c8314301618559e SHA256 cbc45044ef759b147ef2d5ac6af8d8f75b6ae7d71e86c86e5a2978c3b8480d97 -EBUILD relational-0.10.ebuild 1180 RMD160 2fb4049684bf02bbeb9ec9e962eb4a3f2862e54d SHA1 491c4053d30a5b7cf5266b1377555501eb7bff16 SHA256 5c0fa2396e27ebf9e24a8ecfc4e4871e42d8d51efe0c47acef92d92234ec5ed4 -MISC ChangeLog 492 RMD160 3622f8cfb0a07e0ba8fa1ff87ca9a15a9f167b0e SHA1 b970d83dc14c5958d912fbb5fe68384c7f9f3f49 SHA256 2391fca92e8ce7d10ff77215cca4b135fc6a7cdafa0f902a27dafae5e6587daa +EBUILD relational-0.10.ebuild 1244 RMD160 57d93b150c5e55b02dfb864e4683b5da766a2409 SHA1 8a5dcab9cf49c81af947da7b5787be2af4dfdb1b SHA256 10c56dd6037c83787eed3fba92537eda4a9b021378fc1864cc0c5ef50446250f +MISC ChangeLog 641 RMD160 19e77583551e7e3c4791451f076f3dd36cec6b43 SHA1 5ea98485eb8cdbc2df5c34c5da2c7718f7f022b3 SHA256 0bb71e026f4c01fc671dd12c214eb22a57e3059e8ed7c890eb9a2b7461cfa417 MISC metadata.xml 203 RMD160 f21ab0adb7ed966ccbfb8706172574746bf83c45 SHA1 9929f57d84969eaa6e4f2b8d399921bc4c7ba1e4 SHA256 e70e3acb51ca19e8ef1c7b3fe1356e152781028e0bdccd400e0979db61b77070 diff --git a/sci-mathematics/relational/relational-0.10.ebuild b/sci-mathematics/relational/relational-0.10.ebuild index 720540e6cf1e..723ba58d0ea4 100644 --- a/sci-mathematics/relational/relational-0.10.ebuild +++ b/sci-mathematics/relational/relational-0.10.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/relational/relational-0.10.ebuild,v 1.2 2009/12/18 16:24:47 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/relational/relational-0.10.ebuild,v 1.3 2010/04/23 09:04:36 hwoarang Exp $ EAPI="2" +PYTHON_DEPEND="2" inherit python distutils eutils @@ -22,6 +23,10 @@ RDEPEND="${DEPEND}" S="${WORKDIR}/${PN}" +pkg_setup() { + python_set_active_version 2 +} + src_compile() { true } |