diff options
author | Bryan Østergaard <kloeri@gentoo.org> | 2004-03-28 16:09:06 +0000 |
---|---|---|
committer | Bryan Østergaard <kloeri@gentoo.org> | 2004-03-28 16:09:06 +0000 |
commit | bddc85e21f0f87584c10aef8d454fdcb51171fcc (patch) | |
tree | 402c89791f60702d1eac8366c5b9cd66c660c0bf /dev-python/psyco | |
parent | Marked stable on x86. (diff) | |
download | historical-bddc85e21f0f87584c10aef8d454fdcb51171fcc.tar.gz historical-bddc85e21f0f87584c10aef8d454fdcb51171fcc.tar.bz2 historical-bddc85e21f0f87584c10aef8d454fdcb51171fcc.zip |
Version bump.
Diffstat (limited to 'dev-python/psyco')
-rw-r--r-- | dev-python/psyco/ChangeLog | 9 | ||||
-rw-r--r-- | dev-python/psyco/Manifest | 4 | ||||
-rw-r--r-- | dev-python/psyco/files/digest-psyco-1.2 | 1 | ||||
-rw-r--r-- | dev-python/psyco/psyco-1.2.ebuild | 20 |
4 files changed, 31 insertions, 3 deletions
diff --git a/dev-python/psyco/ChangeLog b/dev-python/psyco/ChangeLog index 575dc3421f37..9d660c78ba87 100644 --- a/dev-python/psyco/ChangeLog +++ b/dev-python/psyco/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/psyco -# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/psyco/ChangeLog,v 1.4 2003/10/23 15:06:26 blauwers Exp $ +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/psyco/ChangeLog,v 1.5 2004/03/28 16:09:06 kloeri Exp $ + +*psyco-1.2 (28 Mar 2004) + + 28 Mar 2004; Bryan Østergaard <kloeri@gentoo.org> psyco-1.2.ebuild: + Version bump. *psyco-1.1.1 (12 Oct 2003) diff --git a/dev-python/psyco/Manifest b/dev-python/psyco/Manifest index ce66573654d1..42285a4875c9 100644 --- a/dev-python/psyco/Manifest +++ b/dev-python/psyco/Manifest @@ -1,8 +1,10 @@ -MD5 ddc97737e2d71bf1abe3609bb38a6163 ChangeLog 751 +MD5 e5338f4bc3f812b5450044fbdc18043a ChangeLog 862 MD5 71c4638c9c88af75b58e5f5cb54fe008 metadata.xml 159 MD5 b14fea0aa3057aa2dfccfec8dc79e266 psyco-1.0.0_beta1.ebuild 548 MD5 291b96edeb23290e43407cf894df76eb psyco-1.0.ebuild 599 MD5 1caae2d6ecbd434e54a38b154ad8ad24 psyco-1.1.1.ebuild 600 +MD5 7deb1956e71fd1a07402b717f1996401 psyco-1.2.ebuild 598 +MD5 ee2d6ae386d5817870d5f23b36d90129 files/digest-psyco-1.2 65 MD5 d01d141cde6e4bbd46258905f4140192 files/digest-psyco-1.0 65 MD5 4c8829b71b8338e8841cd4db577357fb files/digest-psyco-1.0.0_beta1 69 MD5 720f9a2a3f7d1b3df3bdefd8b379a0d7 files/digest-psyco-1.1.1 67 diff --git a/dev-python/psyco/files/digest-psyco-1.2 b/dev-python/psyco/files/digest-psyco-1.2 new file mode 100644 index 000000000000..3076be6c8711 --- /dev/null +++ b/dev-python/psyco/files/digest-psyco-1.2 @@ -0,0 +1 @@ +MD5 441bfc7693bf13902a479550dcbaabd2 psyco-1.2-src.tar.gz 318472 diff --git a/dev-python/psyco/psyco-1.2.ebuild b/dev-python/psyco/psyco-1.2.ebuild new file mode 100644 index 000000000000..9ba74dc94eb4 --- /dev/null +++ b/dev-python/psyco/psyco-1.2.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/psyco/psyco-1.2.ebuild,v 1.1 2004/03/28 16:09:06 kloeri 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" + +src_install() { + distutils_src_install + insinto /usr/share/doc/${PF}/examples + doins ${S}/test/* +} |