diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-04-03 11:44:42 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-04-03 11:44:42 +0000 |
commit | ada99755e344981924dc8b34e85a623bc45047e5 (patch) | |
tree | f99c418fb0ee5ce1e1882121002bd34d5a79aff1 /dev-python/python-cdb | |
parent | Revision bump to fix optional avahi patch (bug #361183 by Fab) and apply Mand... (diff) | |
download | gentoo-2-ada99755e344981924dc8b34e85a623bc45047e5.tar.gz gentoo-2-ada99755e344981924dc8b34e85a623bc45047e5.tar.bz2 gentoo-2-ada99755e344981924dc8b34e85a623bc45047e5.zip |
Delete older ebuild.
Diffstat (limited to 'dev-python/python-cdb')
-rw-r--r-- | dev-python/python-cdb/files/python-cdb-0.32-python-2.5-compat.patch | 22 | ||||
-rw-r--r-- | dev-python/python-cdb/python-cdb-0.32-r1.ebuild | 35 |
2 files changed, 0 insertions, 57 deletions
diff --git a/dev-python/python-cdb/files/python-cdb-0.32-python-2.5-compat.patch b/dev-python/python-cdb/files/python-cdb-0.32-python-2.5-compat.patch deleted file mode 100644 index fe0210898c6f..000000000000 --- a/dev-python/python-cdb/files/python-cdb-0.32-python-2.5-compat.patch +++ /dev/null @@ -1,22 +0,0 @@ -=== modified file 'src/cdbmodule.c' ---- src/cdbmodule.c 2006-09-25 18:27:49 +0000 -+++ src/cdbmodule.c 2006-09-25 18:28:34 +0000 -@@ -655,7 +655,7 @@ - - cdb_free(&self->c); - -- PyMem_DEL(self); -+ PyObject_DEL(self); - } - - static PyObject * -@@ -823,7 +823,7 @@ - Py_DECREF(self->fntmp); - } - -- PyMem_DEL(self); -+ PyObject_DEL(self); - } - - static PyObject * - diff --git a/dev-python/python-cdb/python-cdb-0.32-r1.ebuild b/dev-python/python-cdb/python-cdb-0.32-r1.ebuild deleted file mode 100644 index 426039668da9..000000000000 --- a/dev-python/python-cdb/python-cdb-0.32-r1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-cdb/python-cdb-0.32-r1.ebuild,v 1.9 2008/09/27 16:31:58 armin76 Exp $ - -inherit distutils eutils - -DESCRIPTION="A Python extension module for cdb" -SRC_URI="http://pilcrow.madison.wi.us/python-cdb/${P}.tar.gz" -HOMEPAGE="http://pilcrow.madison.wi.us/#pycdb" - -SLOT="0" -IUSE="" -LICENSE="GPL-2" -KEYWORDS="amd64 arm ia64 ppc sparc x86 ~x86-fbsd" - -DEPEND=">=dev-lang/python-2.2 - dev-db/cdb" -RDEPEND="${DEPEND}" - -DOCS="Example" - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch "${FILESDIR}/${P}-python-2.5-compat.patch" -} - -src_test() { - "${python}" setup.py install --home "${T}/test" - # This is not really intended as test but it is better than nothing. - PYTHONPATH="${T}/test/lib/python" "${python}" < Example || \ - die "Test failed." - rm -rf "${T}/test" -} |