Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-perl/DBD-Pg: ChangeLog DBD-Pg-2.15.1.ebuild
Date: Fri, 28 Aug 2009 20:15:56
Message-Id: E1Mfzhc-0000U3-LK@stork.gentoo.org
1 robbat2 09/08/25 17:21:00
2
3 Modified: ChangeLog
4 Added: DBD-Pg-2.15.1.ebuild
5 Log:
6 Version bump via perl-bump experimental tool.
7 (Portage version: 2.2_rc38/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.64 dev-perl/DBD-Pg/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/DBD-Pg/ChangeLog?rev=1.64&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/DBD-Pg/ChangeLog?rev=1.64&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/DBD-Pg/ChangeLog?r1=1.63&r2=1.64
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-perl/DBD-Pg/ChangeLog,v
19 retrieving revision 1.63
20 retrieving revision 1.64
21 diff -p -w -b -B -u -u -r1.63 -r1.64
22 --- ChangeLog 16 Aug 2009 09:33:32 -0000 1.63
23 +++ ChangeLog 25 Aug 2009 17:21:00 -0000 1.64
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-perl/DBD-Pg
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-Pg/ChangeLog,v 1.63 2009/08/16 09:33:32 tove Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-Pg/ChangeLog,v 1.64 2009/08/25 17:21:00 robbat2 Exp $
29 +
30 +*DBD-Pg-2.15.1 (25 Aug 2009)
31 +
32 + 25 Aug 2009; Robin H. Johnson <robbat2@g.o> +DBD-Pg-2.15.1.ebuild:
33 + Version bump via perl-bump experimental tool.
34
35 16 Aug 2009; Torsten Veller <tove@g.o>
36 -files/DBD-Pg-1.31-versparse.patch:
37
38
39
40 1.1 dev-perl/DBD-Pg/DBD-Pg-2.15.1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/DBD-Pg/DBD-Pg-2.15.1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/DBD-Pg/DBD-Pg-2.15.1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: DBD-Pg-2.15.1.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-Pg/DBD-Pg-2.15.1.ebuild,v 1.1 2009/08/25 17:21:00 robbat2 Exp $
50
51 MODULE_AUTHOR=TURNSTEP
52 inherit perl-module eutils
53
54 DESCRIPTION="The Perl DBD::Pg Module"
55
56 LICENSE="|| ( Artistic GPL-2 )"
57 SLOT="0"
58 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
59 IUSE=""
60
61 DEPEND="virtual/perl-Test-Simple
62 virtual/perl-version
63 >=virtual/perl-Test-Harness-2.03
64 >=dev-perl/DBI-1.52
65 >=virtual/postgresql-base-7.3"
66
67 mydoc="README"
68
69 # testcases require a local database with an
70 # open password for the postgres user.
71 SRC_TEST="skip"
72
73 src_compile() {
74 postgres_include="$(readlink -f /usr/include/postgresql)"
75 postgres_lib="${postgres_include//include/lib}"
76 # Fall-through case is the non-split postgresql
77 # The active cases instead get us the matching libdir for the includedir.
78 for i in lib lib64 ; do
79 if [ -d ${postgres_lib}/${i} ]; then
80 postgres_lib="${postgres_lib}/${i}"
81 break
82 fi
83 done
84
85 # env variables for compilation:
86 export POSTGRES_INCLUDE="${postgres_include}"
87 export POSTGRES_LIB="${postgres_lib}"
88 perl-module_src_compile
89 }