diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2011-08-05 22:54:34 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2011-08-05 22:54:34 +0000 |
commit | 94ce351ad80d4874c5e09db02d5bec4fbf619b59 (patch) | |
tree | c99d3bca7ef8bd8d75af363d009baf6d5dab053f /dev-python/psycopg | |
parent | added autotools eclass (diff) | |
download | historical-94ce351ad80d4874c5e09db02d5bec4fbf619b59.tar.gz historical-94ce351ad80d4874c5e09db02d5bec4fbf619b59.tar.bz2 historical-94ce351ad80d4874c5e09db02d5bec4fbf619b59.zip |
Remove old ebuild. Requested by Arfrever
Package-Manager: portage-2.2.0_alpha50/cvs/Linux x86_64
Diffstat (limited to 'dev-python/psycopg')
-rw-r--r-- | dev-python/psycopg/ChangeLog | 5 | ||||
-rw-r--r-- | dev-python/psycopg/psycopg-2.4.ebuild | 62 |
2 files changed, 4 insertions, 63 deletions
diff --git a/dev-python/psycopg/ChangeLog b/dev-python/psycopg/ChangeLog index a804f9c2086a..ccfd6f7a5ecd 100644 --- a/dev-python/psycopg/ChangeLog +++ b/dev-python/psycopg/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-python/psycopg # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.129 2011/07/23 17:52:51 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.130 2011/08/05 22:45:37 hwoarang Exp $ + + 05 Aug 2011; Markos Chandras <hwoarang@gentoo.org> -psycopg-2.4.ebuild: + Remove old ebuild. Requested by Arfrever 23 Jul 2011; Raúl Porcel <armin76@gentoo.org> psycopg-2.4.1.ebuild: alpha/ia64/sparc stable wrt #372305 diff --git a/dev-python/psycopg/psycopg-2.4.ebuild b/dev-python/psycopg/psycopg-2.4.ebuild deleted file mode 100644 index 6dfcc6d3fe91..000000000000 --- a/dev-python/psycopg/psycopg-2.4.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.4.ebuild,v 1.6 2011/04/29 20:18:13 ssuominen Exp $ - -EAPI="3" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="*-jython" - -inherit distutils eutils - -MY_PN="${PN}2" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="PostgreSQL database adapter for Python" -HOMEPAGE="http://initd.org/psycopg/ http://pypi.python.org/pypi/psycopg2" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="2" -KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" -IUSE="debug doc examples mxdatetime" - -DEPEND=">=dev-db/postgresql-base-8.1 - mxdatetime? ( dev-python/egenix-mx-base )" -RDEPEND="${DEPEND}" -RESTRICT="test" - -S="${WORKDIR}/${MY_P}" - -PYTHON_CFLAGS=("2.* + -fno-strict-aliasing") - -DOCS="AUTHORS doc/HACKING doc/psycopg2.txt doc/SUCCESS" -PYTHON_MODNAME="${PN}2" - -src_prepare() { - epatch "${FILESDIR}/${PN}-2.0.12-setup.py.patch" - epatch "${FILESDIR}/${PN}-2.0.9-round-solaris.patch" - - if use debug; then - sed -i 's/^\(define=\)/\1PSYCOPG_DEBUG,/' setup.cfg || die "sed failed" - fi - - if use mxdatetime; then - sed -i 's/\(use_pydatetime=\)1/\10/' setup.cfg || die "sed failed" - fi -} - -src_install() { - distutils_src_install - - if use doc; then - pushd doc/html > /dev/null - insinto /usr/share/doc/${PF}/html - doins -r [a-z]* _static || die "Installation of documentation failed" - popd > /dev/null - fi - - if use examples; then - insinto /usr/share/doc/${PF}/examples - doins -r examples/* || die "Installation of examples failed" - fi -} |