diff options
author | 2006-04-30 18:56:48 +0000 | |
---|---|---|
committer | 2006-04-30 18:56:48 +0000 | |
commit | 14ce85c998cd5ca69ac56aa594a37331301e2f44 (patch) | |
tree | 116af6b5366e0c0729bc4165250fce699bb1e7e2 /dev-python | |
parent | Update to ooo-build-2.0.2.8 (diff) | |
download | gentoo-2-14ce85c998cd5ca69ac56aa594a37331301e2f44.tar.gz gentoo-2-14ce85c998cd5ca69ac56aa594a37331301e2f44.tar.bz2 gentoo-2-14ce85c998cd5ca69ac56aa594a37331301e2f44.zip |
Version bump, bug #131563.
(Portage version: 2.1_pre9-r5)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/psyco/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/psyco/files/digest-psyco-1.4 | 2 | ||||
-rw-r--r-- | dev-python/psyco/files/digest-psyco-1.5 | 2 | ||||
-rw-r--r-- | dev-python/psyco/files/digest-psyco-1.5.1 | 3 | ||||
-rw-r--r-- | dev-python/psyco/psyco-1.5.1.ebuild | 21 |
5 files changed, 34 insertions, 1 deletions
diff --git a/dev-python/psyco/ChangeLog b/dev-python/psyco/ChangeLog index dd131afc9b1b..3c2c5ccb6be6 100644 --- a/dev-python/psyco/ChangeLog +++ b/dev-python/psyco/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/psyco # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/psyco/ChangeLog,v 1.16 2006/02/16 22:52:05 marienz Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/psyco/ChangeLog,v 1.17 2006/04/30 18:56:48 lucass Exp $ + +*psyco-1.5.1 (30 Apr 2006) + + 30 Apr 2006; Lukasz Strzygowski <lucass@gentoo.org> +psyco-1.5.1.ebuild: + Version bump, bug #131563. 16 Feb 2006; Marien Zwart <marienz@gentoo.org> psyco-1.3.ebuild: Remove block of package that is no longer in the tree and is only in one diff --git a/dev-python/psyco/files/digest-psyco-1.4 b/dev-python/psyco/files/digest-psyco-1.4 index 9ebbbb3f4465..9897f74e0625 100644 --- a/dev-python/psyco/files/digest-psyco-1.4 +++ b/dev-python/psyco/files/digest-psyco-1.4 @@ -1 +1,3 @@ MD5 b1365ceaa40a75326d3deb48edf0c8cc psyco-1.4-src.tar.gz 345871 +RMD160 9520355ea9e55f6c910e6c0563bc2ea8f3a17535 psyco-1.4-src.tar.gz 345871 +SHA256 f6fba5b3233d5e741b270d351c47c5fa6e6b33ba57f21756d8791391ab479f88 psyco-1.4-src.tar.gz 345871 diff --git a/dev-python/psyco/files/digest-psyco-1.5 b/dev-python/psyco/files/digest-psyco-1.5 index ad9d6bc01e05..6a85b3dbb5d3 100644 --- a/dev-python/psyco/files/digest-psyco-1.5 +++ b/dev-python/psyco/files/digest-psyco-1.5 @@ -1 +1,3 @@ MD5 ff79e5daf94924fc7401d336d33edebf psyco-1.5-src.tar.gz 351449 +RMD160 0c241043ab3cb26d9b7857c895b48d3ae2d062a1 psyco-1.5-src.tar.gz 351449 +SHA256 c9e49d11eb63cb92e37dc6439455368a384ab8e5aa04a53a4253e5acfd9d3682 psyco-1.5-src.tar.gz 351449 diff --git a/dev-python/psyco/files/digest-psyco-1.5.1 b/dev-python/psyco/files/digest-psyco-1.5.1 new file mode 100644 index 000000000000..a24c1f65f083 --- /dev/null +++ b/dev-python/psyco/files/digest-psyco-1.5.1 @@ -0,0 +1,3 @@ +MD5 89e629d27acda765f01aa870230d1162 psyco-1.5.1-src.tar.gz 361314 +RMD160 7f34031c6ac6a61d74409d82b40f2fbe1e08519e psyco-1.5.1-src.tar.gz 361314 +SHA256 10852198770af1d1562b1330012f6ecc4c6c1f192d6623cdf0553b0490184359 psyco-1.5.1-src.tar.gz 361314 diff --git a/dev-python/psyco/psyco-1.5.1.ebuild b/dev-python/psyco/psyco-1.5.1.ebuild new file mode 100644 index 000000000000..1ef0c5a6540c --- /dev/null +++ b/dev-python/psyco/psyco-1.5.1.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/psyco/psyco-1.5.1.ebuild,v 1.1 2006/04/30 18:56:48 lucass Exp $ + +inherit distutils + +HOMEPAGE="http://psyco.sourceforge.net/" +DESCRIPTION="Psyco is a Python extension module which can massively speed up the execution of any Python code." +SRC_URI="mirror://sourceforge/psyco/${P}-src.tar.gz" + +IUSE="" +SLOT="0" +LICENSE="MIT" +KEYWORDS="~x86" +DEPEND=">=dev-lang/python-2.1" + +src_install() { + distutils_src_install + insinto /usr/share/doc/${PF}/examples + doins ${S}/test/* +} |