diff options
author | 2014-10-23 17:22:30 +0000 | |
---|---|---|
committer | 2014-10-23 17:22:30 +0000 | |
commit | c950ef616316fb513c036f5856e5c23787f50510 (patch) | |
tree | e1d9cae7150bf9826de6a89070c990a2a242278b /dev-python/psycopg | |
parent | amd64/x86 stable, bug #525314 (diff) | |
download | gentoo-2-c950ef616316fb513c036f5856e5c23787f50510.tar.gz gentoo-2-c950ef616316fb513c036f5856e5c23787f50510.tar.bz2 gentoo-2-c950ef616316fb513c036f5856e5c23787f50510.zip |
Restore python-r1 version to SLOT 0 as well.
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
Diffstat (limited to 'dev-python/psycopg')
-rw-r--r-- | dev-python/psycopg/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/psycopg/psycopg-1.1.21-r1.ebuild | 73 |
2 files changed, 79 insertions, 1 deletions
diff --git a/dev-python/psycopg/ChangeLog b/dev-python/psycopg/ChangeLog index a4d34a75f458..d4cf1a983e00 100644 --- a/dev-python/psycopg/ChangeLog +++ b/dev-python/psycopg/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/psycopg # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.180 2014/10/22 08:21:49 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.181 2014/10/23 17:22:30 floppym Exp $ + +*psycopg-1.1.21-r1 (23 Oct 2014) + + 23 Oct 2014; Mike Gilbert <floppym@gentoo.org> +psycopg-1.1.21-r1.ebuild: + Restore python-r1 version to SLOT 0 as well. *psycopg-1.1.21 (22 Oct 2014) diff --git a/dev-python/psycopg/psycopg-1.1.21-r1.ebuild b/dev-python/psycopg/psycopg-1.1.21-r1.ebuild new file mode 100644 index 000000000000..ab59f1724c8d --- /dev/null +++ b/dev-python/psycopg/psycopg-1.1.21-r1.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21-r1.ebuild,v 1.6 2014/10/23 17:22:30 floppym Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_6,2_7} ) + +inherit autotools-utils python-r1 + +DESCRIPTION="PostgreSQL database adapter for Python" +HOMEPAGE="http://www.initd.org/software/psycopg" +SRC_URI="http://initd.org/pub/software/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="examples" + +RDEPEND=">=dev-python/egenix-mx-base-2.0.3[${PYTHON_USEDEP}] + dev-db/postgresql-base + ${PYTHON_DEPS}" +DEPEND="${RDEPEND}" + +src_prepare() { + # fix for bug #134873 + sed -e '1245s/static //' -i cursor.c || die + sed -e 's:$(PY_MOD_DIR):$(D)&/$$mod:' \ + -e '/^CFLAGS/s:-I:-I. &:' \ + -i Makefile.pre.in || die + + autotools-utils_src_prepare +} + +src_configure() { + python_configure() { + local myeconfargs=( + --with-mxdatetime-includes="$(python_get_includedir)/mx" + --with-postgres-includes="/usr/include/postgresql/server" + ) + + autotools-utils_src_configure + + sed -e 's:$(BLDSHARED):& $(LDFLAGS):' \ + -i "${BUILD_DIR}"/Makefile || die + } + python_foreach_impl python_configure +} + +src_compile() { + python_foreach_impl autotools-utils_src_compile \ + OPT="${CFLAGS}" LDFLAGS="${LDFLAGS}" +} + +src_test() { + : +} + +src_install () { + python_install() { + dodir "$(python_get_sitedir)" + autotools-utils_src_install + } + + python_foreach_impl python_install + + dodoc RELEASE-1.0 SUCCESS doc/python-taylor.txt + + if use examples; then + insinto /usr/share/doc/${PF}/examples + doins -r doc/examples/. + docompress -x "${INSDESTTREE}" + fi +} |