Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/pygresql: ChangeLog pygresql-4.0.ebuild
Date: Thu, 23 Apr 2009 16:09:38
Message-Id: E1Lx1UV-0007a6-Kw@stork.gentoo.org
1 patrick 09/04/23 16:09:35
2
3 Modified: ChangeLog
4 Added: pygresql-4.0.ebuild
5 Log:
6 Bump to 4.0. Fixes #256329
7 (Portage version: 2.2_rc31/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.46 dev-db/pygresql/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/pygresql/ChangeLog?rev=1.46&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/pygresql/ChangeLog?rev=1.46&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/pygresql/ChangeLog?r1=1.45&r2=1.46
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-db/pygresql/ChangeLog,v
19 retrieving revision 1.45
20 retrieving revision 1.46
21 diff -u -r1.45 -r1.46
22 --- ChangeLog 19 May 2008 19:14:12 -0000 1.45
23 +++ ChangeLog 23 Apr 2009 16:09:35 -0000 1.46
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-db/pygresql
26 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-db/pygresql/ChangeLog,v 1.45 2008/05/19 19:14:12 dev-zero Exp $
28 +# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-db/pygresql/ChangeLog,v 1.46 2009/04/23 16:09:35 patrick Exp $
30 +
31 +*pygresql-4.0 (23 Apr 2009)
32 +
33 + 23 Apr 2009; Patrick Lauer <patrick@g.o> +pygresql-4.0.ebuild:
34 + Bump to 4.0. Fixes #256329
35
36 19 May 2008; Tiziano Müller <dev-zero@g.o> pygresql-3.5.ebuild,
37 pygresql-3.6.2.ebuild, pygresql-3.6.2-r1.ebuild, pygresql-3.8.1.ebuild:
38
39
40
41 1.1 dev-db/pygresql/pygresql-4.0.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/pygresql/pygresql-4.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/pygresql/pygresql-4.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pygresql-4.0.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-db/pygresql/pygresql-4.0.ebuild,v 1.1 2009/04/23 16:09:35 patrick Exp $
51
52 inherit eutils distutils
53
54 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86"
55
56 MY_P="PyGreSQL-${PV}"
57
58 DESCRIPTION="A Python interface for the PostgreSQL database."
59 SRC_URI="ftp://ftp.pygresql.org/pub/distrib/${MY_P}.tgz"
60 HOMEPAGE="http://www.pygresql.org/"
61 LICENSE="as-is"
62 SLOT="0"
63 IUSE="doc"
64
65 DEPEND=">=virtual/postgresql-base-7.4"
66 RDEPEND="${DEPEND}"
67
68 S=${WORKDIR}/${MY_P}
69
70 src_install() {
71 distutils_src_install
72
73 dodoc docs/*.txt
74
75 if use doc ; then
76 insinto /usr/share/doc/${PF}/tutorial
77 doins tutorial/*
78 dohtml docs/*.{html,css}
79 fi
80 }