Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
robbat2 09/12/18 03:23:14
Modified: ChangeLog
Added: DBD-Pg-2.16.0.ebuild
Log:
Version bump via perl-bump experimental tool.
(Portage version: 2.2_rc58/cvs/Linux x86_64)
Revision Changes Path
1.73 dev-perl/DBD-Pg/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/DBD-Pg/ChangeLog?rev=1.73&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/DBD-Pg/ChangeLog?rev=1.73&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/DBD-Pg/ChangeLog?r1=1.72&r2=1.73
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/DBD-Pg/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -p -w -b -B -u -u -r1.72 -r1.73
--- ChangeLog 19 Oct 2009 09:06:25 -0000 1.72
+++ ChangeLog 18 Dec 2009 03:23:14 -0000 1.73
@@ -1,6 +1,11 @@
# ChangeLog for dev-perl/DBD-Pg
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-Pg/ChangeLog,v 1.72 2009/10/19 09:06:25 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-Pg/ChangeLog,v 1.73 2009/12/18 03:23:14 robbat2 Exp $
+
+*DBD-Pg-2.16.0 (18 Dec 2009)
+
+ 18 Dec 2009; Robin H. Johnson <robbat2@g.o> +DBD-Pg-2.16.0.ebuild:
+ Version bump via perl-bump experimental tool.
19 Oct 2009; Torsten Veller <tove@g.o> -DBD-Pg-1.49.ebuild:
Cleanup
1.1 dev-perl/DBD-Pg/DBD-Pg-2.16.0.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/DBD-Pg/DBD-Pg-2.16.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/DBD-Pg/DBD-Pg-2.16.0.ebuild?rev=1.1&content-type=text/plain
Index: DBD-Pg-2.16.0.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-Pg/DBD-Pg-2.16.0.ebuild,v 1.1 2009/12/18 03:23:14 robbat2 Exp $
MODULE_AUTHOR=TURNSTEP
inherit perl-module eutils
DESCRIPTION="The Perl DBD::Pg Module"
LICENSE="|| ( Artistic GPL-2 )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE=""
DEPEND="virtual/perl-Test-Simple
virtual/perl-version
>=virtual/perl-Test-Harness-2.03
>=dev-perl/DBI-1.52
>=virtual/postgresql-base-7.3"
mydoc="README"
# testcases require a local database with an
# open password for the postgres user.
SRC_TEST="skip"
src_compile() {
postgres_include="$(readlink -f /usr/include/postgresql)"
postgres_lib="${postgres_include//include/lib}"
# Fall-through case is the non-split postgresql
# The active cases instead get us the matching libdir for the includedir.
for i in lib lib64 ; do
if [ -d ${postgres_lib}/${i} ]; then
postgres_lib="${postgres_lib}/${i}"
break
fi
done
# env variables for compilation:
export POSTGRES_INCLUDE="${postgres_include}"
export POSTGRES_LIB="${postgres_lib}"
perl-module_src_compile
}
|
|