public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-2.4.5.ebuild ChangeLog
@ 2012-04-15  4:35 Patrick Lauer (patrick)
  0 siblings, 0 replies; 2+ messages in thread
From: Patrick Lauer (patrick) @ 2012-04-15  4:35 UTC (permalink / raw
  To: gentoo-commits

patrick     12/04/15 04:35:45

  Modified:             ChangeLog
  Added:                psycopg-2.4.5.ebuild
  Log:
  Bump for #411891
  
  (Portage version: 2.2.0_alpha100/cvs/Linux x86_64)

Revision  Changes    Path
1.143                dev-python/psycopg/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/psycopg/ChangeLog?rev=1.143&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/psycopg/ChangeLog?rev=1.143&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/psycopg/ChangeLog?r1=1.142&r2=1.143

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.142
retrieving revision 1.143
diff -u -r1.142 -r1.143
--- ChangeLog	23 Feb 2012 10:16:40 -0000	1.142
+++ ChangeLog	15 Apr 2012 04:35:45 -0000	1.143
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.142 2012/02/23 10:16:40 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.143 2012/04/15 04:35:45 patrick Exp $
+
+*psycopg-2.4.5 (15 Apr 2012)
+
+  15 Apr 2012; Patrick Lauer <patrick@gentoo.org> +psycopg-2.4.5.ebuild:
+  Bump for #411891
 
   23 Feb 2012; Patrick Lauer <patrick@gentoo.org> psycopg-1.1.21.ebuild,
   psycopg-2.4.1.ebuild, psycopg-2.4.2.ebuild, psycopg-2.4.4.ebuild:



1.1                  dev-python/psycopg/psycopg-2.4.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/psycopg/psycopg-2.4.5.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/psycopg/psycopg-2.4.5.ebuild?rev=1.1&content-type=text/plain

Index: psycopg-2.4.5.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.4.5.ebuild,v 1.1 2012/04/15 04:35:45 patrick Exp $

EAPI="3"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="*-jython 2.7-pypy-* *-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 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
IUSE="debug doc examples mxdatetime"

RDEPEND=">=dev-db/postgresql-base-8.1
	mxdatetime? ( dev-python/egenix-mx-base )"
DEPEND="${RDEPEND}
	doc? ( dev-python/sphinx )"
RESTRICT="test"

S="${WORKDIR}/${MY_P}"

PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")

DOCS="AUTHORS doc/HACKING doc/SUCCESS"
PYTHON_MODNAME="${PN}2"

src_prepare() {
	epatch "${FILESDIR}/${PN}-2.4.2-setup.py.patch"
	epatch "${FILESDIR}/${PN}-2.0.9-round-solaris.patch"

	python_convert_shebangs 2 doc/src/tools/stitch_text.py

	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_compile() {
	distutils_src_compile

	if use doc; then
		einfo "Generation of documentation"
		pushd doc > /dev/null
		emake -j1 html text || die "Generation of documentation failed"
		popd > /dev/null
	fi
}

src_install() {
	distutils_src_install

	if use doc; then
		dodoc doc/psycopg2.txt || die "dodoc failed"

		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
}






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-2.4.5.ebuild ChangeLog
@ 2013-02-20  9:45 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 2+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-20  9:45 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/20 09:45:09

  Modified:             psycopg-2.4.5.ebuild ChangeLog
  Log:
  Stable for s390, wrt bug #449426
  
  (Portage version: 2.1.11.50/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.10                 dev-python/psycopg/psycopg-2.4.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/psycopg/psycopg-2.4.5.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/psycopg/psycopg-2.4.5.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/psycopg/psycopg-2.4.5.ebuild?r1=1.9&r2=1.10

Index: psycopg-2.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.4.5.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- psycopg-2.4.5.ebuild	6 Jan 2013 14:49:13 -0000	1.9
+++ psycopg-2.4.5.ebuild	20 Feb 2013 09:45:09 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.4.5.ebuild,v 1.9 2013/01/06 14:49:13 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.4.5.ebuild,v 1.10 2013/02/20 09:45:09 ago Exp $
 
 EAPI="3"
 SUPPORT_PYTHON_ABIS="1"
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="2"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
 IUSE="debug doc examples mxdatetime"
 
 RDEPEND=">=dev-db/postgresql-base-8.1



1.156                dev-python/psycopg/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/psycopg/ChangeLog?rev=1.156&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/psycopg/ChangeLog?rev=1.156&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/psycopg/ChangeLog?r1=1.155&r2=1.156

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
retrieving revision 1.155
retrieving revision 1.156
diff -u -r1.155 -r1.156
--- ChangeLog	19 Jan 2013 11:52:03 -0000	1.155
+++ ChangeLog	20 Feb 2013 09:45:09 -0000	1.156
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/psycopg
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.155 2013/01/19 11:52:03 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.156 2013/02/20 09:45:09 ago Exp $
+
+  20 Feb 2013; Agostino Sarubbo <ago@gentoo.org> psycopg-2.4.5.ebuild:
+  Stable for s390, wrt bug #449426
 
 *psycopg-1.1.21-r1 (19 Jan 2013)
 





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-02-20  9:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-20  9:45 [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: psycopg-2.4.5.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2012-04-15  4:35 Patrick Lauer (patrick)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox