Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/psycopg: ChangeLog psycopg-2.0.12.ebuild psycopg-2.0.10.ebuild psycopg-2.0.7.ebuild psycopg-2.0.9.ebuild psycopg-2.0.6.ebuild
Date: Fri, 28 Aug 2009 20:16:01
Message-Id: E1Mfvke-0005OS-EV@stork.gentoo.org
1 arfrever 09/08/25 13:07:52
2
3 Modified: ChangeLog
4 Added: psycopg-2.0.12.ebuild
5 Removed: psycopg-2.0.10.ebuild psycopg-2.0.7.ebuild
6 psycopg-2.0.9.ebuild psycopg-2.0.6.ebuild
7 Log:
8 Version bump. Set SUPPORT_PYTHON_ABIS.
9 (Portage version: 14155-svn/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.79 dev-python/psycopg/ChangeLog
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/ChangeLog?rev=1.79&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/ChangeLog?rev=1.79&content-type=text/plain
16 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/ChangeLog?r1=1.78&r2=1.79
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v
21 retrieving revision 1.78
22 retrieving revision 1.79
23 diff -u -r1.78 -r1.79
24 --- ChangeLog 9 Aug 2009 13:23:14 -0000 1.78
25 +++ ChangeLog 25 Aug 2009 13:07:52 -0000 1.79
26 @@ -1,6 +1,15 @@
27 # ChangeLog for dev-python/psycopg
28 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.78 2009/08/09 13:23:14 nixnut Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/ChangeLog,v 1.79 2009/08/25 13:07:52 arfrever Exp $
31 +
32 +*psycopg-2.0.12 (25 Aug 2009)
33 +
34 + 25 Aug 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
35 + -files/psycopg-2.0.5.1-debug.patch, -files/psycopg-2.0.5.1-fbsd.patch,
36 + -psycopg-2.0.6.ebuild, -files/psycopg-2.0.6-fbsd.patch,
37 + -psycopg-2.0.7.ebuild, -files/psycopg-2.0.7-fbsd.patch,
38 + -psycopg-2.0.9.ebuild, -psycopg-2.0.10.ebuild, +psycopg-2.0.12.ebuild:
39 + Version bump. Set SUPPORT_PYTHON_ABIS.
40
41 09 Aug 2009; nixnut <nixnut@g.o> psycopg-2.0.11.ebuild:
42 ppc stable #278366
43
44
45
46 1.1 dev-python/psycopg/psycopg-2.0.12.ebuild
47
48 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/psycopg-2.0.12.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/psycopg/psycopg-2.0.12.ebuild?rev=1.1&content-type=text/plain
50
51 Index: psycopg-2.0.12.ebuild
52 ===================================================================
53 # Copyright 1999-2009 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.0.12.ebuild,v 1.1 2009/08/25 13:07:52 arfrever Exp $
56
57 EAPI="2"
58
59 NEED_PYTHON="2.4"
60 SUPPORT_PYTHON_ABIS="1"
61
62 inherit distutils
63
64 MY_P=${PN}2-${PV}
65
66 DESCRIPTION="PostgreSQL database adapter for Python."
67 SRC_URI="http://initd.org/pub/software/psycopg/${MY_P}.tar.gz"
68 HOMEPAGE="http://initd.org/projects/psycopg2"
69 SLOT="2"
70 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
71 LICENSE="GPL-2"
72 IUSE="debug doc examples mxdatetime"
73
74 DEPEND=">=virtual/postgresql-base-8.1
75 mxdatetime? ( dev-python/egenix-mx-base )"
76 RDEPEND="${DEPEND}"
77
78 RESTRICT_PYTHON_ABIS="3*"
79
80 S=${WORKDIR}/${MY_P}
81
82 PYTHON_MODNAME="${PN}2"
83
84 src_prepare() {
85 if use debug; then
86 sed -i 's/^\(define=\)/\1PSYCOPG_DEBUG,/' setup.cfg || die "sed failed"
87 fi
88
89 if use mxdatetime; then
90 sed -i 's/\(use_pydatetime=\)1/\10/' setup.cfg || die "sed failed"
91 fi
92 }
93
94 src_install() {
95 DOCS="AUTHORS doc/HACKING doc/SUCCESS doc/TODO doc/async.txt"
96 distutils_src_install
97
98 insinto /usr/share/doc/${PF}
99 use examples && doins -r examples
100
101 cd doc
102 use doc && dohtml -r .
103 }