diff options
author | Johan Bergström (jbergstroem) <bugs@bergstroem.nu> | 2009-11-19 20:32:22 +0000 |
---|---|---|
committer | Johan Bergström (jbergstroem) <bugs@bergstroem.nu> | 2009-11-19 20:32:22 +0000 |
commit | 2b72b39eec7f62fa165a97c32e508e92bd777985 (patch) | |
tree | 631a6019bbc5b3cf3cec1707e7a4f5ce76e54958 | |
parent | media-radio/wspr: Version bump (diff) | |
download | sunrise-2b72b39eec7f62fa165a97c32e508e92bd777985.tar.gz sunrise-2b72b39eec7f62fa165a97c32e508e92bd777985.tar.bz2 sunrise-2b72b39eec7f62fa165a97c32e508e92bd777985.zip |
dev-python/pycallgraph: Version bump and minor fixes. Thanks to Tommy[D]
svn path=/sunrise/; revision=9540
-rw-r--r-- | dev-python/pycallgraph/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/pycallgraph/Manifest | 6 | ||||
-rw-r--r-- | dev-python/pycallgraph/pycallgraph-0.5.1.ebuild (renamed from dev-python/pycallgraph/pycallgraph-0.3.1.ebuild) | 9 |
3 files changed, 13 insertions, 8 deletions
diff --git a/dev-python/pycallgraph/ChangeLog b/dev-python/pycallgraph/ChangeLog index 6153f4dc0..c9fa510e7 100644 --- a/dev-python/pycallgraph/ChangeLog +++ b/dev-python/pycallgraph/ChangeLog @@ -1,7 +1,11 @@ # ChangeLog for dev-python/pycallgraph -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 19 Nov 2009; Johan Bergström (jbergstroem) <bugs@bergstroem.nu> + -pycallgraph-0.3.1.ebuild, +pycallgraph-0.5.1.ebuild: + Version bump and minor fixes. Thanks to Tommy[D] + 19 Jun 2007; Ali Polatel (hawking) <polatel@gmail.com> -pycallgraph-0.3.0.ebuild, +pycallgraph-0.3.1.ebuild: version bump diff --git a/dev-python/pycallgraph/Manifest b/dev-python/pycallgraph/Manifest index f56048ca4..48bf18411 100644 --- a/dev-python/pycallgraph/Manifest +++ b/dev-python/pycallgraph/Manifest @@ -1,4 +1,4 @@ -DIST pycallgraph-0.3.1.tar.gz 10763 RMD160 067238d756914b979587b708097fe3063d4a0067 SHA1 335b9fa0be7b63fda53192800b9b6c919c8dc02c SHA256 9ad15d858a23255b15a827fb1af6ac81bcc829a38797978f8e51417fe28e95a6 -EBUILD pycallgraph-0.3.1.ebuild 576 RMD160 810e12d071c5e98950ee5ec932cbbf6f8ccbd1e6 SHA1 e9e1561619cab8f2a432d568298153e695052268 SHA256 27dda7aca1ae074b8fae6d37f0f625606ad1fc1a5a8a666c6b522d04f99b632b -MISC ChangeLog 415 RMD160 3416a64fa5b3a6bf650c7a91788da94402d91c68 SHA1 632aafd050ddbe735d16a62ee2b15fff1a5d05cb SHA256 96561a9d9f790e4e3581e119a5342066f40a3f3707ddff4d5aab26be34191840 +DIST pycallgraph-0.5.1.tar.gz 14575 RMD160 bb46a88afa374db4552e6311f897fa50245af314 SHA1 898ead71fa2341af9c7f98ef150807ccf2dcdd8c SHA256 c84b3294b7c33dcd8148d9245e61fce7fca811bed2d357f91e98804785ffbb83 +EBUILD pycallgraph-0.5.1.ebuild 624 RMD160 9cf0474da9a843474122fc6a628aaae74683f17a SHA1 7ac4a4c818ff929fb59f84bf57a71ad6bb4c9035 SHA256 4e2727437549545dae6e062139f4547a6a24fcac48a283c2074b1935fa6ad9bd +MISC ChangeLog 590 RMD160 043d6ff04c1bcc89833f31121cf6583d26440824 SHA1 a921608d068502d5df8aea1aba2bdfa6e7cc8ef8 SHA256 a3e5f5816ba085cce1d797a087a9fad4252007b0e5c0830c176e01d307a1acc3 MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42 diff --git a/dev-python/pycallgraph/pycallgraph-0.3.1.ebuild b/dev-python/pycallgraph/pycallgraph-0.5.1.ebuild index d6580c8c4..48b3ded11 100644 --- a/dev-python/pycallgraph/pycallgraph-0.3.1.ebuild +++ b/dev-python/pycallgraph/pycallgraph-0.5.1.ebuild @@ -2,11 +2,11 @@ # Distributed under the terms of the GNU General Public License v2 # $Header: $ -NEED_PYTHON=2.3 +SUPPORT_PYTHON_ABIS="1" inherit distutils -DESCRIPTION="Python library that creates call graphs for Python programs." +DESCRIPTION="Python library that creates call graphs for Python programs" HOMEPAGE="http://pycallgraph.slowchop.com/" SRC_URI="http://${PN}.slowchop.com/files/download/${P}.tar.gz" @@ -15,14 +15,15 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="examples" -DEPEND="" RDEPEND="media-gfx/graphviz" +RESTRICT_PYTHON_ABIS="3*" + src_install() { distutils_src_install if use examples; then insinto /usr/share/doc/${PF}/examples - doins -r examples/* + doins -r examples/* || die "Install failed" fi } |