diff options
author | 2010-04-16 18:41:14 +0000 | |
---|---|---|
committer | 2010-04-16 18:41:14 +0000 | |
commit | 53058fbd0aaf9430cbfdb4770a7be6df37d793bb (patch) | |
tree | 7ac600ce9a122a1c200cc81bcf35761d53821231 /dev-python/psycopg | |
parent | Stable on amd64 wrt bug #296166 (diff) | |
download | historical-53058fbd0aaf9430cbfdb4770a7be6df37d793bb.tar.gz historical-53058fbd0aaf9430cbfdb4770a7be6df37d793bb.tar.bz2 historical-53058fbd0aaf9430cbfdb4770a7be6df37d793bb.zip |
Delete older ebuild.
Diffstat (limited to 'dev-python/psycopg')
-rw-r--r-- | dev-python/psycopg/psycopg-2.0.12.ebuild | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/dev-python/psycopg/psycopg-2.0.12.ebuild b/dev-python/psycopg/psycopg-2.0.12.ebuild deleted file mode 100644 index f1a5f2b27d36..000000000000 --- a/dev-python/psycopg/psycopg-2.0.12.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.0.12.ebuild,v 1.8 2009/11/11 14:35:11 grobian Exp $ - -EAPI="2" - -NEED_PYTHON="2.4" -SUPPORT_PYTHON_ABIS="1" - -inherit distutils eutils - -MY_P=${PN}2-${PV} - -DESCRIPTION="PostgreSQL database adapter for Python." -SRC_URI="http://initd.org/pub/software/psycopg/${MY_P}.tar.gz" -HOMEPAGE="http://initd.org/projects/psycopg2" -SLOT="2" -KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" -LICENSE="GPL-2" -IUSE="debug doc examples mxdatetime" - -DEPEND=">=virtual/postgresql-base-8.1 - mxdatetime? ( dev-python/egenix-mx-base )" -RDEPEND="${DEPEND}" - -RESTRICT_PYTHON_ABIS="3*" - -S=${WORKDIR}/${MY_P} - -PYTHON_MODNAME="${PN}2" - -src_prepare() { - epatch "${FILESDIR}/${P}-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() { - DOCS="AUTHORS doc/HACKING doc/SUCCESS doc/TODO doc/async.txt" - distutils_src_install - - insinto /usr/share/doc/${PF} - use examples && doins -r examples - - cd doc - use doc && dohtml -r . -} |