summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/psyco/ChangeLog9
-rw-r--r--dev-python/psyco/Manifest12
-rw-r--r--dev-python/psyco/files/digest-psyco-1.51
-rw-r--r--dev-python/psyco/psyco-1.5.ebuild21
4 files changed, 31 insertions, 12 deletions
diff --git a/dev-python/psyco/ChangeLog b/dev-python/psyco/ChangeLog
index f44f14e1a545..805d1e088b81 100644
--- a/dev-python/psyco/ChangeLog
+++ b/dev-python/psyco/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-python/psyco
-# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psyco/ChangeLog,v 1.14 2005/10/16 22:00:09 kloeri Exp $
+# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psyco/ChangeLog,v 1.15 2006/01/24 00:56:07 marienz Exp $
+
+*psyco-1.5 (24 Jan 2006)
+
+ 24 Jan 2006; Marien Zwart <marienz@gentoo.org> +psyco-1.5.ebuild:
+ Version bump (bug #120066).
16 Oct 2005; Bryan Østergaard <kloeri@gentoo.org> psyco-1.4.ebuild:
Stable 1.4 as 1.2 doesn't support python-2.4, bug 109207.
diff --git a/dev-python/psyco/Manifest b/dev-python/psyco/Manifest
index 1dd597c076a3..885b64a68f98 100644
--- a/dev-python/psyco/Manifest
+++ b/dev-python/psyco/Manifest
@@ -1,18 +1,10 @@
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
MD5 3259733f27789f446c22ccf698522d77 ChangeLog 1872
MD5 ee2d6ae386d5817870d5f23b36d90129 files/digest-psyco-1.2 65
MD5 10e3e0a6c88e96eecb3c45d840c5c51f files/digest-psyco-1.3 66
MD5 3a838fea67bb4691f1954f8e506fc630 files/digest-psyco-1.4 65
+MD5 f385b691e7768fef9869c3f0be60b361 files/digest-psyco-1.5 65
MD5 71c4638c9c88af75b58e5f5cb54fe008 metadata.xml 159
MD5 2da5719a9fe4692551435e532d2341a0 psyco-1.2.ebuild 623
MD5 42e58ed4569bc766b072d1d13bbcbb78 psyco-1.3.ebuild 646
MD5 42ae15338f38b0ac239ab909a430f5b3 psyco-1.4.ebuild 619
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.2 (GNU/Linux)
-
-iD8DBQFDUs16Kf2g/qXtneoRAiz0AJ47oCXQ0A3mHafsMi+fBi9M0VLBBgCfQZBG
-UIYltddlfDar1rzdxHw7mI4=
-=MDjy
------END PGP SIGNATURE-----
+MD5 ae35bac75b356a8551e61bc186ce9385 psyco-1.5.ebuild 525
diff --git a/dev-python/psyco/files/digest-psyco-1.5 b/dev-python/psyco/files/digest-psyco-1.5
new file mode 100644
index 000000000000..ad9d6bc01e05
--- /dev/null
+++ b/dev-python/psyco/files/digest-psyco-1.5
@@ -0,0 +1 @@
+MD5 ff79e5daf94924fc7401d336d33edebf psyco-1.5-src.tar.gz 351449
diff --git a/dev-python/psyco/psyco-1.5.ebuild b/dev-python/psyco/psyco-1.5.ebuild
new file mode 100644
index 000000000000..b86847bac94f
--- /dev/null
+++ b/dev-python/psyco/psyco-1.5.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.ebuild,v 1.1 2006/01/24 00:56:07 marienz 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/*
+}