[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2024-04-29 Thread Sam James
commit: 0ba45ee85760bf141753651f0f335467d29fb059
Author: Sam James  gentoo  org>
AuthorDate: Tue Apr 30 02:03:12 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Apr 30 02:36:38 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ba45ee8

dev-perl/DBD-Pg: add 3.18.0

Signed-off-by: Sam James  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.18.0.ebuild | 108 +++
 dev-perl/DBD-Pg/Manifest |   1 +
 2 files changed, 109 insertions(+)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.18.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.18.0.ebuild
new file mode 100644
index ..8ab5cdd617a5
--- /dev/null
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.18.0.ebuild
@@ -0,0 +1,108 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=TURNSTEP
+inherit perl-module
+
+DESCRIPTION="PostgreSQL database driver for the DBI module"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
+
+RDEPEND="
+   virtual/perl-version
+   >=dev-perl/DBI-1.614.0
+   dev-db/postgresql:*
+"
+DEPEND="
+   dev-db/postgresql:*
+"
+BDEPEND="
+   ${RDEPEND}
+   >=virtual/perl-ExtUtils-MakeMaker-6.580.0
+   test? (
+   virtual/perl-File-Temp
+   >=virtual/perl-Test-Simple-0.880.0
+   virtual/perl-Time-HiRes
+   )
+"
+
+PERL_RM_FILES=(
+   "t/00_signature.t"
+)
+
+src_prepare() {
+   postgres_include="$(readlink -f "${EPREFIX}"/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_prepare
+}
+
+src_test() {
+   local MODULES=(
+   "Bundle::DBD::Pg v${PV}"
+   "DBD::Pg v${PV}"
+   )
+   local failed=()
+
+   local dep
+   for dep in "${MODULES[@]}"; do
+   ebegin "Compile testing ${dep}"
+   perl -Mblib="${S}" -M"${dep} ()" -e1 #||
+   #die "Could not load ${dep}"
+   eend $? || failed+=( "$dep" )
+   done
+
+   if [[ ${failed[@]} ]]; then
+   echo
+   eerror "One or more modules failed compile:";
+   for dep in "${failed[@]}"; do
+   eerror "  ${dep}"
+   done
+   die "Failing due to module compilation errors";
+   fi
+
+   local LIVEDB_TESTS=(
+   "t/01connect.t"
+   "t/02attribs.t"
+   "t/03dbmethod.t"
+   "t/03smethod.t"
+   "t/04misc.t"
+   "t/06bytea.t"
+   "t/07copy.t"
+   "t/08async.t"
+   "t/09arrays.t"
+   "t/12placeholders.t"
+   "t/20savepoints.t"
+   "t/30unicode.t"
+   )
+   if [[ ! -v DBI_DSN ]]; then
+   ewarn "Functional database tests disabled due to lack of 
configuration."
+   ewarn "Please set the following environment variables values 
pertaining to a"
+   ewarn "pre-configured Postgres installation in order for tests 
to work:"
+   ewarn "  DBI_DSN  - A DBI-compatible connection string for a 
Postgres Database"
+   ewarn " ( eg: dbi:Pg:dbname=testdb )"
+   ewarn "  DBI_USER - A Postgres Database Username"
+   ewarn "  DBI_PASS - A Postgres Database Password"
+   ewarn ""
+   ewarn "For details, visit:"
+   ewarn " 
https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/dev-perl/DBD-Pg;
+   perl_rm_files "${LIVEDB_TESTS[@]}"
+   fi
+
+   # Parallel testing breaks database access
+   DBDPG_TEST_ALWAYS_ENV=1 DIST_TEST="do" perl-module_src_test
+}

diff --git a/dev-perl/DBD-Pg/Manifest b/dev-perl/DBD-Pg/Manifest
index c88b02a4e805..24ffad0b4700 100644
--- a/dev-perl/DBD-Pg/Manifest
+++ b/dev-perl/DBD-Pg/Manifest
@@ -1 +1,2 @@
 DIST DBD-Pg-3.17.0.tar.gz 288633 BLAKE2B 
50ac384abdf7e6d7a7e054917c319f86c874b20d87fca45dc57085c31242b99e26873aa4b7a28f4a68be88ee4af2288f505ee74051eb055359376f4395d9c908
 SHA512 
17e7946297c58c19aa0f069ed9e1a78022ca64f76f25d7122f08b255d5192057ccfb7ace2530b505823c540f10733c3b26c1fe24a92cee966ba724e5d1694fb1
+DIST DBD-Pg-3.18.0.tar.gz 288783 BLAKE2B 

[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2023-12-01 Thread Arthur Zamarin
commit: e9e1ad07537d0b3353517fbeda9e4f900d881918
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec  1 14:44:47 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec  1 14:44:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9e1ad07

dev-perl/DBD-Pg: Stabilize 3.17.0 ppc, #914794

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild
index 55e7dbb7a2dd..82ff3dc5648d 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
 
 RDEPEND="
virtual/perl-version



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2023-09-28 Thread Sam James
commit: edcfe681fba9cfa8650405aa787ed77e901ed625
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep 28 06:16:49 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep 28 06:16:49 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edcfe681

dev-perl/DBD-Pg: Stabilize 3.17.0 sparc, #914794

Signed-off-by: Sam James  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild
index 6a4a731d618e..55e7dbb7a2dd 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
 
 RDEPEND="
virtual/perl-version



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2023-09-27 Thread Sam James
commit: ca48fc2bd728a81a93744dd911e27cda00d6859f
Author: Sam James  gentoo  org>
AuthorDate: Wed Sep 27 08:02:10 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Sep 27 08:02:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca48fc2b

dev-perl/DBD-Pg: Stabilize 3.17.0 ppc64, #914794

Signed-off-by: Sam James  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild
index ef36703a9ed3..b561a4bf8174 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
 
 RDEPEND="
virtual/perl-version



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2023-09-26 Thread Sam James
commit: 2d65a82770fc6d15cbed1b95ccc6c635255b
Author: Sam James  gentoo  org>
AuthorDate: Wed Sep 27 05:31:13 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Sep 27 05:31:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d65a827

dev-perl/DBD-Pg: Stabilize 3.17.0 x86, #914794

Signed-off-by: Sam James  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild
index 7763acc9a54f..ef36703a9ed3 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
 
 RDEPEND="
virtual/perl-version



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2023-09-26 Thread Sam James
commit: 1d36a75feb5ee1f84b85f26841b1aff1cbf52b24
Author: Sam James  gentoo  org>
AuthorDate: Wed Sep 27 04:57:57 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Sep 27 04:57:57 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d36a75f

dev-perl/DBD-Pg: Stabilize 3.17.0 arm64, #914794

Signed-off-by: Sam James  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild
index c6feda542e73..7763acc9a54f 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
 
 RDEPEND="
virtual/perl-version



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2023-08-25 Thread Sam James
commit: 814da21a798ed1ec04378a52409b77cac3e16bc2
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 26 05:42:34 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 26 05:42:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=814da21a

dev-perl/DBD-Pg: add 3.17.0

Signed-off-by: Sam James  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild | 108 +++
 dev-perl/DBD-Pg/Manifest |   1 +
 2 files changed, 109 insertions(+)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild
new file mode 100644
index ..c6feda542e73
--- /dev/null
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.17.0.ebuild
@@ -0,0 +1,108 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=TURNSTEP
+inherit perl-module
+
+DESCRIPTION="PostgreSQL database driver for the DBI module"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
+
+RDEPEND="
+   virtual/perl-version
+   >=dev-perl/DBI-1.614.0
+   dev-db/postgresql:*
+"
+DEPEND="
+   dev-db/postgresql:*
+"
+BDEPEND="
+   ${RDEPEND}
+   >=virtual/perl-ExtUtils-MakeMaker-6.580.0
+   test? (
+   virtual/perl-File-Temp
+   >=virtual/perl-Test-Simple-0.880.0
+   virtual/perl-Time-HiRes
+   )
+"
+
+PERL_RM_FILES=(
+   "t/00_signature.t"
+)
+
+src_prepare() {
+   postgres_include="$(readlink -f "${EPREFIX}"/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_prepare
+}
+
+src_test() {
+   local MODULES=(
+   "Bundle::DBD::Pg v${PV}"
+   "DBD::Pg v${PV}"
+   )
+   local failed=()
+
+   local dep
+   for dep in "${MODULES[@]}"; do
+   ebegin "Compile testing ${dep}"
+   perl -Mblib="${S}" -M"${dep} ()" -e1 #||
+   #die "Could not load ${dep}"
+   eend $? || failed+=( "$dep" )
+   done
+
+   if [[ ${failed[@]} ]]; then
+   echo
+   eerror "One or more modules failed compile:";
+   for dep in "${failed[@]}"; do
+   eerror "  ${dep}"
+   done
+   die "Failing due to module compilation errors";
+   fi
+
+   local LIVEDB_TESTS=(
+   "t/01connect.t"
+   "t/02attribs.t"
+   "t/03dbmethod.t"
+   "t/03smethod.t"
+   "t/04misc.t"
+   "t/06bytea.t"
+   "t/07copy.t"
+   "t/08async.t"
+   "t/09arrays.t"
+   "t/12placeholders.t"
+   "t/20savepoints.t"
+   "t/30unicode.t"
+   )
+   if [[ ! -v DBI_DSN ]]; then
+   ewarn "Functional database tests disabled due to lack of 
configuration."
+   ewarn "Please set the following environment variables values 
pertaining to a"
+   ewarn "pre-configured Postgres installation in order for tests 
to work:"
+   ewarn "  DBI_DSN  - A DBI-compatible connection string for a 
Postgres Database"
+   ewarn " ( eg: dbi:Pg:dbname=testdb )"
+   ewarn "  DBI_USER - A Postgres Database Username"
+   ewarn "  DBI_PASS - A Postgres Database Password"
+   ewarn ""
+   ewarn "For details, visit:"
+   ewarn " 
https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/dev-perl/DBD-Pg;
+   perl_rm_files "${LIVEDB_TESTS[@]}"
+   fi
+
+   # Parallel testing breaks database access
+   DBDPG_TEST_ALWAYS_ENV=1 DIST_TEST="do" perl-module_src_test
+}

diff --git a/dev-perl/DBD-Pg/Manifest b/dev-perl/DBD-Pg/Manifest
index 9720dff96fe0..28812ca0679e 100644
--- a/dev-perl/DBD-Pg/Manifest
+++ b/dev-perl/DBD-Pg/Manifest
@@ -1,2 +1,3 @@
 DIST DBD-Pg-3.15.0.tar.gz 284379 BLAKE2B 
e3d8d5a2e3339c88f92dc24cca47296b8b2e597dcb81f2645180dd90b27873f209728dc0ac320e493b573c73efb54292e89370a628fc304bf319e237e04b1912
 SHA512 
67912da5cda42d198cdffa3f5c93267ed9da681c837fd8a9b8c6a13873a461b1123ce0a8e1f4f4398264f57ead35950b4945018e6cead14c903a809a298aecb9
 DIST DBD-Pg-3.16.3.tar.gz 287011 BLAKE2B 

[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2023-08-04 Thread Sam James
commit: f62e6e6daa544ad72887dd09188bfb131327afaf
Author: Sam James  gentoo  org>
AuthorDate: Fri Aug  4 09:18:21 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug  4 09:19:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f62e6e6d

dev-perl/DBD-Pg: Stabilize 3.16.3 ppc, #910883

Signed-off-by: Sam James  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild
index 55e7dbb7a2dd..82ff3dc5648d 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
 
 RDEPEND="
virtual/perl-version



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2023-07-23 Thread Sam James
commit: 485f2f151fae50de03658c1d8880a99941d13059
Author: Sam James  gentoo  org>
AuthorDate: Mon Jul 24 04:14:28 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul 24 04:14:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=485f2f15

dev-perl/DBD-Pg: Stabilize 3.16.3 x86, #910883

Signed-off-by: Sam James  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild
index 61cdd9feaf34..820c860cb960 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
 
 RDEPEND="
virtual/perl-version



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2023-07-23 Thread Sam James
commit: 3a98ea01298c93007133b7305a66cee67334b79f
Author: Sam James  gentoo  org>
AuthorDate: Mon Jul 24 04:14:27 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul 24 04:14:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a98ea01

dev-perl/DBD-Pg: Stabilize 3.16.3 arm64, #910883

Signed-off-by: Sam James  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild
index cd10cf25be78..61cdd9feaf34 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
 
 RDEPEND="
virtual/perl-version



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2023-07-23 Thread Sam James
commit: 059aad2fcdf50dfb04c26dc857aaab32c7bd445b
Author: Sam James  gentoo  org>
AuthorDate: Mon Jul 24 04:10:03 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul 24 04:10:53 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=059aad2f

dev-perl/DBD-Pg: Stabilize 3.16.3 arm, #910883

Signed-off-by: Sam James  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild
index 5dd79748ace3..cd10cf25be78 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
 
 RDEPEND="
virtual/perl-version



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2023-07-23 Thread Sam James
commit: ae9d53f9590116243ac43013e7f8edcd371eff1c
Author: Sam James  gentoo  org>
AuthorDate: Mon Jul 24 04:03:08 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul 24 04:03:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae9d53f9

dev-perl/DBD-Pg: Stabilize 3.16.3 sparc, #910883

Signed-off-by: Sam James  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild
index c6feda542e73..5dd79748ace3 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
 
 RDEPEND="
virtual/perl-version



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2023-06-21 Thread Sam James
commit: 46aab12af7417872522d4dea6188597ec87d2834
Author: Sam James  gentoo  org>
AuthorDate: Wed Jun 21 06:44:32 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jun 21 06:45:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46aab12a

dev-perl/DBD-Pg: add 3.16.3

Signed-off-by: Sam James  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild | 108 +++
 dev-perl/DBD-Pg/Manifest |   1 +
 2 files changed, 109 insertions(+)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild
new file mode 100644
index ..c6feda542e73
--- /dev/null
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.16.3.ebuild
@@ -0,0 +1,108 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=TURNSTEP
+inherit perl-module
+
+DESCRIPTION="PostgreSQL database driver for the DBI module"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
+
+RDEPEND="
+   virtual/perl-version
+   >=dev-perl/DBI-1.614.0
+   dev-db/postgresql:*
+"
+DEPEND="
+   dev-db/postgresql:*
+"
+BDEPEND="
+   ${RDEPEND}
+   >=virtual/perl-ExtUtils-MakeMaker-6.580.0
+   test? (
+   virtual/perl-File-Temp
+   >=virtual/perl-Test-Simple-0.880.0
+   virtual/perl-Time-HiRes
+   )
+"
+
+PERL_RM_FILES=(
+   "t/00_signature.t"
+)
+
+src_prepare() {
+   postgres_include="$(readlink -f "${EPREFIX}"/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_prepare
+}
+
+src_test() {
+   local MODULES=(
+   "Bundle::DBD::Pg v${PV}"
+   "DBD::Pg v${PV}"
+   )
+   local failed=()
+
+   local dep
+   for dep in "${MODULES[@]}"; do
+   ebegin "Compile testing ${dep}"
+   perl -Mblib="${S}" -M"${dep} ()" -e1 #||
+   #die "Could not load ${dep}"
+   eend $? || failed+=( "$dep" )
+   done
+
+   if [[ ${failed[@]} ]]; then
+   echo
+   eerror "One or more modules failed compile:";
+   for dep in "${failed[@]}"; do
+   eerror "  ${dep}"
+   done
+   die "Failing due to module compilation errors";
+   fi
+
+   local LIVEDB_TESTS=(
+   "t/01connect.t"
+   "t/02attribs.t"
+   "t/03dbmethod.t"
+   "t/03smethod.t"
+   "t/04misc.t"
+   "t/06bytea.t"
+   "t/07copy.t"
+   "t/08async.t"
+   "t/09arrays.t"
+   "t/12placeholders.t"
+   "t/20savepoints.t"
+   "t/30unicode.t"
+   )
+   if [[ ! -v DBI_DSN ]]; then
+   ewarn "Functional database tests disabled due to lack of 
configuration."
+   ewarn "Please set the following environment variables values 
pertaining to a"
+   ewarn "pre-configured Postgres installation in order for tests 
to work:"
+   ewarn "  DBI_DSN  - A DBI-compatible connection string for a 
Postgres Database"
+   ewarn " ( eg: dbi:Pg:dbname=testdb )"
+   ewarn "  DBI_USER - A Postgres Database Username"
+   ewarn "  DBI_PASS - A Postgres Database Password"
+   ewarn ""
+   ewarn "For details, visit:"
+   ewarn " 
https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/dev-perl/DBD-Pg;
+   perl_rm_files "${LIVEDB_TESTS[@]}"
+   fi
+
+   # Parallel testing breaks database access
+   DBDPG_TEST_ALWAYS_ENV=1 DIST_TEST="do" perl-module_src_test
+}

diff --git a/dev-perl/DBD-Pg/Manifest b/dev-perl/DBD-Pg/Manifest
index f7b175c430e5..9720dff96fe0 100644
--- a/dev-perl/DBD-Pg/Manifest
+++ b/dev-perl/DBD-Pg/Manifest
@@ -1 +1,2 @@
 DIST DBD-Pg-3.15.0.tar.gz 284379 BLAKE2B 
e3d8d5a2e3339c88f92dc24cca47296b8b2e597dcb81f2645180dd90b27873f209728dc0ac320e493b573c73efb54292e89370a628fc304bf319e237e04b1912
 SHA512 
67912da5cda42d198cdffa3f5c93267ed9da681c837fd8a9b8c6a13873a461b1123ce0a8e1f4f4398264f57ead35950b4945018e6cead14c903a809a298aecb9
+DIST DBD-Pg-3.16.3.tar.gz 287011 BLAKE2B 

[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2021-09-12 Thread Yixun Lan
commit: e7601a9b0c49f69d4ab4f9d9786ad85b59829ea6
Author: Yixun Lan  gentoo  org>
AuthorDate: Mon Sep 13 03:36:13 2021 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Mon Sep 13 03:36:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7601a9b

dev-perl/DBD-Pg: keyword ~riscv

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Yixun Lan  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.15.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.15.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.15.0.ebuild
index 2b055bbeddd..dbef6265ae1 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.15.0.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.15.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2021-08-12 Thread Sam James
commit: 0b962ac9bb4e4479b5370be009c79391b2505942
Author: Sam James  gentoo  org>
AuthorDate: Fri Aug 13 00:44:17 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug 13 01:04:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b962ac9

dev-perl/DBD-Pg: drop 3.10.0, 3.14.2

Signed-off-by: Sam James  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild |  97 --
 dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild | 110 ---
 dev-perl/DBD-Pg/Manifest |   2 -
 3 files changed, 209 deletions(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
deleted file mode 100644
index f3f290d6492..000
--- a/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
+++ /dev/null
@@ -1,97 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DIST_AUTHOR=TURNSTEP
-inherit perl-module
-
-DESCRIPTION="PostgreSQL database driver for the DBI module"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
-IUSE=""
-
-RDEPEND="
-   virtual/perl-version
-   >=dev-perl/DBI-1.614.0
-   dev-db/postgresql:*
-"
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-"
-src_prepare() {
-   postgres_include="$(readlink -f "${EPREFIX}"/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_prepare
-}
-
-src_test() {
-   local MODULES=(
-   # Compile failure: 
https://rt.cpan.org/Ticket/Display.html?id=123218
-   # "Bundle::DBD::Pg v${PV}"
-   "DBD::Pg v${PV}"
-   )
-   local failed=()
-   for dep in "${MODULES[@]}"; do
-   ebegin "Compile testing ${dep}"
-   perl -Mblib="${S}" -M"${dep} ()" -e1 #||
-   #die "Could not load ${dep}"
-   eend $? || failed+=( "$dep" )
-   done
-   if [[ ${failed[@]} ]]; then
-   echo
-   eerror "One or more modules failed compile:";
-   for dep in "${failed[@]}"; do
-   eerror "  ${dep}"
-   done
-   die "Failing due to module compilation errors";
-   fi
-
-   local LIVEDB_TESTS=(
-   "t/01connect.t"
-   "t/02attribs.t"
-   "t/03dbmethod.t"
-   "t/03smethod.t"
-   "t/04misc.t"
-   "t/06bytea.t"
-   "t/07copy.t"
-   "t/08async.t"
-   "t/09arrays.t"
-   "t/12placeholders.t"
-   "t/20savepoints.t"
-   "t/30unicode.t"
-   )
-   local SKIP_TESTS=(
-   "t/00_signature.t"
-   );
-   if [[ ! -v DBI_DSN ]]; then
-   ewarn "Functional database tests disabled due to lack of 
configuration."
-   ewarn "Please set the following environment variables values 
pertaining to a"
-   ewarn "pre-configured Postgres installation in order for tests 
to work:"
-   ewarn "  DBI_DSN  - A DBI-compatible connection string for a 
Postgres Database"
-   ewarn " ( eg: dbi:Pg:dbname=testdb )"
-   ewarn "  DBI_USER - A Postgres Database Username"
-   ewarn "  DBI_PASS - A Postgres Database Password"
-   ewarn ""
-   ewarn "For details, visit:"
-   ewarn 
"https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/dev-perl/DBD-Pg;
-   SKIP_TESTS+=( "${LIVEDB_TESTS[@]}" )
-   fi
-   perl_rm_files "${SKIP_TESTS[@]}"
-   # Parallel testing breaks database access
-   DBDPG_TEST_ALWAYS_ENV=1 DIST_TEST="do" perl-module_src_test
-
-}

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
deleted file mode 100644
index 2b055bbeddd..000
--- a/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
+++ /dev/null
@@ -1,110 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DIST_AUTHOR=TURNSTEP
-inherit perl-module
-
-DESCRIPTION="PostgreSQL database driver for the DBI module"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 

[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2021-08-06 Thread Sam James
commit: f02e7c8e1d07518a31c258042b9ac2a62e8cb038
Author: Sam James  gentoo  org>
AuthorDate: Fri Aug  6 12:14:17 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug  6 12:14:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f02e7c8e

dev-perl/DBD-Pg: Stabilize 3.15.0 arm64, #805749

Signed-off-by: Sam James  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.15.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.15.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.15.0.ebuild
index e6677251780..2b055bbeddd 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.15.0.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.15.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2021-08-03 Thread Sam James
commit: 2b4952df2b23a806e32ab178ebbf4372bc510a3a
Author: Sam James  gentoo  org>
AuthorDate: Tue Aug  3 11:04:00 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Aug  3 11:04:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b4952df

dev-perl/DBD-Pg: Stabilize 3.15.0 arm, #805749

Signed-off-by: Sam James  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.15.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.15.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.15.0.ebuild
index 738a4e526db..18a9c56b9d5 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.15.0.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.15.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2021-08-01 Thread Sam James
commit: 704a3b80d318f0805691a3f7d70742dbfcc2bd1a
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  1 08:02:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug  1 08:02:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=704a3b80

dev-perl/DBD-Pg: Stabilize 3.15.0 sparc, #805749

Signed-off-by: Sam James  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.15.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.15.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.15.0.ebuild
index 91aa69720e7..32a4ac3f1dd 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.15.0.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.15.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2021-05-23 Thread Sam James
commit: ca17c4ece8ec8ac475f6edc426a6b15aaa2c4181
Author: Sam James  gentoo  org>
AuthorDate: Mon May 24 05:47:22 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon May 24 05:47:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca17c4ec

dev-perl/DBD-Pg: Stabilize 3.14.2 ppc64, #791559

Signed-off-by: Sam James  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
index 713bb0f5a2f..2b055bbeddd 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2021-05-23 Thread Sam James
commit: 8199a86ac14c0d97e31d8eb2810e5660fefd4bf6
Author: Sam James  gentoo  org>
AuthorDate: Mon May 24 04:59:12 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon May 24 04:59:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8199a86a

dev-perl/DBD-Pg: Stabilize 3.14.2 ppc, #791559

Signed-off-by: Sam James  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
index fa7fe3a64f0..713bb0f5a2f 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2021-05-23 Thread Sam James
commit: 9aed563b2545e85ddb5058a3fdf115384bd79c52
Author: Sam James  gentoo  org>
AuthorDate: Mon May 24 00:06:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon May 24 00:06:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9aed563b

dev-perl/DBD-Pg: Stabilize 3.14.2 arm, #791559

Signed-off-by: Sam James  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
index d6bcdf411a6..fa7fe3a64f0 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2021-05-23 Thread Sam James
commit: 1ba65d85271204f4d7f668f945942125ac8f50b8
Author: Sam James  gentoo  org>
AuthorDate: Mon May 24 00:04:27 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon May 24 00:04:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ba65d85

dev-perl/DBD-Pg: Stabilize 3.14.2 arm64, #791559

Signed-off-by: Sam James  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
index 3da542c1b5a..d6bcdf411a6 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2021-05-23 Thread Agostino Sarubbo
commit: c28c4461c4de6d1f4170ced66fe93e8ee3ca3179
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun May 23 23:03:25 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun May 23 23:03:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c28c4461

dev-perl/DBD-Pg: x86 stable wrt bug #791559

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
index 20b0242fdb2..3da542c1b5a 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2021-05-23 Thread Agostino Sarubbo
commit: 5316f1d7b04838fb8f4ce94971e01131ee63c4b3
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun May 23 22:27:55 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun May 23 22:28:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5316f1d7

dev-perl/DBD-Pg: amd64 stable wrt bug #791559

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
index 32a4ac3f1dd..20b0242fdb2 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2021-05-23 Thread Andreas K. Hüttel
commit: 72d9b29b136954aaf21e38f1fba3cbb790a602f4
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun May 23 01:44:14 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sun May 23 13:24:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72d9b29b

dev-perl/DBD-Pg: Remove old

Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild | 44 -
 dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild | 97 -
 dev-perl/DBD-Pg/Manifest|  2 -
 3 files changed, 143 deletions(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
deleted file mode 100644
index ab20f333f4a..000
--- a/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=TURNSTEP
-inherit perl-module
-
-DESCRIPTION="PostgreSQL database driver for the DBI module"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos"
-IUSE=""
-
-RDEPEND="
-   virtual/perl-version
-   >=dev-perl/DBI-1.614.0
-   dev-db/postgresql:*
-"
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-"
-
-# testcases require a local database with an
-# open password for the postgres user.
-DIST_TEST="skip"
-
-src_prepare() {
-   postgres_include="$(readlink -f "${EPREFIX}"/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_prepare
-}

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
deleted file mode 100644
index 697dbdda80b..000
--- a/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
+++ /dev/null
@@ -1,97 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=TURNSTEP
-inherit perl-module
-
-DESCRIPTION="PostgreSQL database driver for the DBI module"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
-IUSE=""
-
-RDEPEND="
-   virtual/perl-version
-   >=dev-perl/DBI-1.614.0
-   dev-db/postgresql:*
-"
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-"
-src_prepare() {
-   postgres_include="$(readlink -f "${EPREFIX}"/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_prepare
-}
-
-src_test() {
-   local MODULES=(
-   # Compile failure: 
https://rt.cpan.org/Ticket/Display.html?id=123218
-   # "Bundle::DBD::Pg v${PV}"
-   "DBD::Pg v${PV}"
-   )
-   local failed=()
-   for dep in "${MODULES[@]}"; do
-   ebegin "Compile testing ${dep}"
-   perl -Mblib="${S}" -M"${dep} ()" -e1 #||
-   #die "Could not load ${dep}"
-   eend $? || failed+=( "$dep" )
-   done
-   if [[ ${failed[@]} ]]; then
-   echo
-   eerror "One or more modules failed compile:";
-   for dep in "${failed[@]}"; do
-   eerror "  ${dep}"
-   done
-   die "Failing due to module compilation errors";
-   fi
-
-   local LIVEDB_TESTS=(
-   "t/01connect.t"
-   "t/02attribs.t"
-   "t/03dbmethod.t"
-   "t/03smethod.t"
-   "t/04misc.t"
-   "t/06bytea.t"
-   "t/07copy.t"
-   "t/08async.t"
-   "t/09arrays.t"
-   "t/12placeholders.t"
-   "t/20savepoints.t"
-   "t/30unicode.t"
-   )
-   local SKIP_TESTS=(
-   "t/00_signature.t"
-   );
-   if [[ ! -v DBI_DSN ]]; then
-   

[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2021-05-23 Thread Andreas K. Hüttel
commit: b4214795e263e640b6813b62614df34b74770be3
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun May 23 01:50:04 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sun May 23 13:25:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4214795

dev-perl/DBD-Pg: Version bump 3.15.0

Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.15.0.ebuild | 110 +++
 dev-perl/DBD-Pg/Manifest |   1 +
 2 files changed, 111 insertions(+)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.15.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.15.0.ebuild
new file mode 100644
index 000..91aa69720e7
--- /dev/null
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.15.0.ebuild
@@ -0,0 +1,110 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=TURNSTEP
+inherit perl-module
+
+DESCRIPTION="PostgreSQL database driver for the DBI module"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   virtual/perl-version
+   >=dev-perl/DBI-1.614.0
+   dev-db/postgresql:*
+"
+DEPEND="
+   dev-db/postgresql:*
+"
+BDEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   >=virtual/perl-Test-Simple-0.880.0
+   virtual/perl-Time-HiRes
+   )
+"
+PERL_RM_FILES=(
+   "t/00_signature.t"
+)
+src_prepare() {
+   postgres_include="$(readlink -f "${EPREFIX}"/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_prepare
+}
+
+src_compile() {
+   mymake=(
+   "OPTIMIZE=${CFLAGS}"
+   )
+   perl-module_src_compile
+}
+
+src_test() {
+   local MODULES=(
+   "Bundle::DBD::Pg v${PV}"
+   "DBD::Pg v${PV}"
+   )
+   local failed=()
+   for dep in "${MODULES[@]}"; do
+   ebegin "Compile testing ${dep}"
+   perl -Mblib="${S}" -M"${dep} ()" -e1 #||
+   #die "Could not load ${dep}"
+   eend $? || failed+=( "$dep" )
+   done
+   if [[ ${failed[@]} ]]; then
+   echo
+   eerror "One or more modules failed compile:";
+   for dep in "${failed[@]}"; do
+   eerror "  ${dep}"
+   done
+   die "Failing due to module compilation errors";
+   fi
+
+   local LIVEDB_TESTS=(
+   "t/01connect.t"
+   "t/02attribs.t"
+   "t/03dbmethod.t"
+   "t/03smethod.t"
+   "t/04misc.t"
+   "t/06bytea.t"
+   "t/07copy.t"
+   "t/08async.t"
+   "t/09arrays.t"
+   "t/12placeholders.t"
+   "t/20savepoints.t"
+   "t/30unicode.t"
+   )
+   if [[ ! -v DBI_DSN ]]; then
+   ewarn "Functional database tests disabled due to lack of 
configuration."
+   ewarn "Please set the following environment variables values 
pertaining to a"
+   ewarn "pre-configured Postgres installation in order for tests 
to work:"
+   ewarn "  DBI_DSN  - A DBI-compatible connection string for a 
Postgres Database"
+   ewarn " ( eg: dbi:Pg:dbname=testdb )"
+   ewarn "  DBI_USER - A Postgres Database Username"
+   ewarn "  DBI_PASS - A Postgres Database Password"
+   ewarn ""
+   ewarn "For details, visit:"
+   ewarn " 
https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/dev-perl/DBD-Pg;
+   perl_rm_files "${LIVEDB_TESTS[@]}"
+   fi
+   # Parallel testing breaks database access
+   DBDPG_TEST_ALWAYS_ENV=1 DIST_TEST="do" perl-module_src_test
+
+}

diff --git a/dev-perl/DBD-Pg/Manifest b/dev-perl/DBD-Pg/Manifest
index 7ec7344b9c7..15884ff0347 100644
--- a/dev-perl/DBD-Pg/Manifest
+++ b/dev-perl/DBD-Pg/Manifest
@@ -1,2 +1,3 @@
 DIST DBD-Pg-3.10.0.tar.gz 268414 BLAKE2B 
da6ac65519632aa95ee2554607d5e26820527042873ab78a9e40e671902b1b8e2fe39f37e44b15cf3db8eda243e57c7fab9077d4a08ec7f3c312825609fbc805
 SHA512 

[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2021-05-23 Thread Sergei Trofimovich
commit: 1e79f94e75bf9cabb3a3a3c10c52e7eae3fb076a
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun May 23 11:28:03 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun May 23 12:13:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e79f94e

dev-perl/DBD-Pg: stable 3.14.2 for sparc, bug #791559

Package-Manager: Portage-3.0.18, Repoman-3.0.2
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
index 91aa69720e7..32a4ac3f1dd 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2020-12-27 Thread Fabian Groffen
commit: 2d9168969124b025d3c6e97f0822bf7f9e49fd96
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sun Dec 27 14:49:54 2020 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sun Dec 27 14:49:54 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d916896

dev-perl/DBD-Pg: drop ppc-aix m68k-mint

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Fabian Groffen  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild | 2 +-
 dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild | 2 +-
 dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild  | 2 +-
 dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild  | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
index 77916e99f84..38f85edb0f1 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
index b87f46e3ebd..5db4b228a9d 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
index d87746acff0..49b7a9238b9 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~ppc-aix 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND="

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
index fdcc8fb4b4f..42d8797a2e2 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 
~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2020-10-18 Thread Kent Fredric
commit: cd91c3bbafd2f1449cbb1991c556841961959d35
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Oct 19 03:51:49 2020 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Mon Oct 19 03:57:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd91c3bb

dev-perl/DBD-Pg: Cleanup old 3.14.0

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Kent Fredric  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.14.0.ebuild | 110 ---
 dev-perl/DBD-Pg/Manifest |   1 -
 2 files changed, 111 deletions(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.14.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.14.0.ebuild
deleted file mode 100644
index b87f46e3ebd..000
--- a/dev-perl/DBD-Pg/DBD-Pg-3.14.0.ebuild
+++ /dev/null
@@ -1,110 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DIST_AUTHOR=TURNSTEP
-inherit perl-module
-
-DESCRIPTION="PostgreSQL database driver for the DBI module"
-
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   virtual/perl-version
-   >=dev-perl/DBI-1.614.0
-   dev-db/postgresql:*
-"
-DEPEND="
-   dev-db/postgresql:*
-"
-BDEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-   test? (
-   >=virtual/perl-Test-Simple-0.880.0
-   virtual/perl-Time-HiRes
-   )
-"
-PERL_RM_FILES=(
-   "t/00_signature.t"
-)
-src_prepare() {
-   postgres_include="$(readlink -f "${EPREFIX}"/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_prepare
-}
-
-src_compile() {
-   mymake=(
-   "OPTIMIZE=${CFLAGS}"
-   )
-   perl-module_src_compile
-}
-
-src_test() {
-   local MODULES=(
-   "Bundle::DBD::Pg v${PV}"
-   "DBD::Pg v${PV}"
-   )
-   local failed=()
-   for dep in "${MODULES[@]}"; do
-   ebegin "Compile testing ${dep}"
-   perl -Mblib="${S}" -M"${dep} ()" -e1 #||
-   #die "Could not load ${dep}"
-   eend $? || failed+=( "$dep" )
-   done
-   if [[ ${failed[@]} ]]; then
-   echo
-   eerror "One or more modules failed compile:";
-   for dep in "${failed[@]}"; do
-   eerror "  ${dep}"
-   done
-   die "Failing due to module compilation errors";
-   fi
-
-   local LIVEDB_TESTS=(
-   "t/01connect.t"
-   "t/02attribs.t"
-   "t/03dbmethod.t"
-   "t/03smethod.t"
-   "t/04misc.t"
-   "t/06bytea.t"
-   "t/07copy.t"
-   "t/08async.t"
-   "t/09arrays.t"
-   "t/12placeholders.t"
-   "t/20savepoints.t"
-   "t/30unicode.t"
-   )
-   if [[ ! -v DBI_DSN ]]; then
-   ewarn "Functional database tests disabled due to lack of 
configuration."
-   ewarn "Please set the following environment variables values 
pertaining to a"
-   ewarn "pre-configured Postgres installation in order for tests 
to work:"
-   ewarn "  DBI_DSN  - A DBI-compatible connection string for a 
Postgres Database"
-   ewarn " ( eg: dbi:Pg:dbname=testdb )"
-   ewarn "  DBI_USER - A Postgres Database Username"
-   ewarn "  DBI_PASS - A Postgres Database Password"
-   ewarn ""
-   ewarn "For details, visit:"
-   ewarn " 
https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/dev-perl/DBD-Pg;
-   perl_rm_files "${LIVEDB_TESTS[@]}"
-   fi
-   # Parallel testing breaks database access
-   DBDPG_TEST_ALWAYS_ENV=1 DIST_TEST="do" perl-module_src_test
-
-}

diff --git a/dev-perl/DBD-Pg/Manifest b/dev-perl/DBD-Pg/Manifest
index 7e876c5ec00..2804fc8467b 100644
--- a/dev-perl/DBD-Pg/Manifest
+++ b/dev-perl/DBD-Pg/Manifest
@@ -1,5 +1,4 @@
 DIST DBD-Pg-3.10.0.tar.gz 268414 BLAKE2B 
da6ac65519632aa95ee2554607d5e26820527042873ab78a9e40e671902b1b8e2fe39f37e44b15cf3db8eda243e57c7fab9077d4a08ec7f3c312825609fbc805
 SHA512 

[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2020-09-10 Thread Kent Fredric
commit: ba8ff87ef30c992794eed2145b826e5cf3f9210f
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Sep 10 15:34:46 2020 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Sep 10 15:35:19 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba8ff87e

dev-perl/DBD-Pg: Cleanup old 3.13.0

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Kent Fredric  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.13.0.ebuild | 114 ---
 dev-perl/DBD-Pg/Manifest |   1 -
 2 files changed, 115 deletions(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.13.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.13.0.ebuild
deleted file mode 100644
index 252be08d102..000
--- a/dev-perl/DBD-Pg/DBD-Pg-3.13.0.ebuild
+++ /dev/null
@@ -1,114 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DIST_AUTHOR=TURNSTEP
-inherit perl-module
-
-DESCRIPTION="PostgreSQL database driver for the DBI module"
-
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   virtual/perl-version
-   >=dev-perl/DBI-1.614.0
-   dev-db/postgresql:*
-"
-DEPEND="
-   dev-db/postgresql:*
-"
-BDEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-   test? (
-   >=virtual/perl-Test-Simple-0.880.0
-   virtual/perl-Time-HiRes
-   )
-"
-PERL_RM_FILES=(
-   "t/00_signature.t"
-)
-src_prepare() {
-   postgres_include="$(readlink -f "${EPREFIX}"/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_prepare
-}
-
-src_compile() {
-   mymake=(
-   "OPTIMIZE=${CFLAGS}"
-   )
-   perl-module_src_compile
-}
-
-src_test() {
-   local MODULES=(
-   "Bundle::DBD::Pg v${PV}"
-   "DBD::Pg v${PV}"
-   )
-   local failed=()
-   for dep in "${MODULES[@]}"; do
-   ebegin "Compile testing ${dep}"
-   perl -Mblib="${S}" -M"${dep} ()" -e1 #||
-   #die "Could not load ${dep}"
-   eend $? || failed+=( "$dep" )
-   done
-   if [[ ${failed[@]} ]]; then
-   echo
-   eerror "One or more modules failed compile:";
-   for dep in "${failed[@]}"; do
-   eerror "  ${dep}"
-   done
-   die "Failing due to module compilation errors";
-   fi
-
-   local LIVEDB_TESTS=(
-   "t/01connect.t"
-   "t/02attribs.t"
-   "t/03dbmethod.t"
-   "t/03smethod.t"
-   "t/04misc.t"
-   "t/06bytea.t"
-   "t/07copy.t"
-   "t/08async.t"
-   "t/09arrays.t"
-   "t/12placeholders.t"
-   "t/20savepoints.t"
-   "t/30unicode.t"
-   )
-   if [[ ! -v DBI_DSN ]]; then
-   ewarn "Functional database tests disabled due to lack of 
configuration."
-   ewarn "Please set the following environment variables values 
pertaining to a"
-   ewarn "pre-configured Postgres installation in order for tests 
to work:"
-   ewarn "  DBI_DSN  - A DBI-compatible connection string for a 
Postgres Database"
-   ewarn " ( eg: dbi:Pg:dbname=testdb )"
-   ewarn "  DBI_USER - A Postgres Database Username"
-   ewarn "  DBI_PASS - A Postgres Database Password"
-   ewarn ""
-   ewarn "For details, visit:"
-   ewarn " 
https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/dev-perl/DBD-Pg;
-   perl_rm_files "${LIVEDB_TESTS[@]}"
-   else
-   # Super user required
-   # https://rt.cpan.org/Ticket/Display.html?id=132965
-   perl_rm_files "t/03dbmethod.t" "t/04misc.t"
-   fi
-   # Parallel testing breaks database access
-   DBDPG_TEST_ALWAYS_ENV=1 DIST_TEST="do" perl-module_src_test
-
-}

diff --git a/dev-perl/DBD-Pg/Manifest b/dev-perl/DBD-Pg/Manifest
index 096f335e955..7e876c5ec00 100644
--- a/dev-perl/DBD-Pg/Manifest
+++ b/dev-perl/DBD-Pg/Manifest
@@ -1,5 +1,4 @@
 DIST DBD-Pg-3.10.0.tar.gz 268414 BLAKE2B 

[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2020-08-18 Thread Kent Fredric
commit: ef965bf3dd358f03aef3937683007e1718b9d34f
Author: Kent Fredric  gentoo  org>
AuthorDate: Tue Aug 18 09:39:17 2020 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Aug 18 09:39:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef965bf3

dev-perl/DBD-Pg: Cleanup old 3.6.2

Long obsoleted unstable version

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Kent Fredric  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.6.2.ebuild | 44 -
 dev-perl/DBD-Pg/Manifest|  1 -
 2 files changed, 45 deletions(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.6.2.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.6.2.ebuild
deleted file mode 100644
index de57811eaea..000
--- a/dev-perl/DBD-Pg/DBD-Pg-3.6.2.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=TURNSTEP
-inherit perl-module
-
-DESCRIPTION="PostgreSQL database driver for the DBI module"
-
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE=""
-
-RDEPEND="
-   virtual/perl-version
-   >=dev-perl/DBI-1.614.0
-   dev-db/postgresql:*
-"
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-"
-
-# testcases require a local database with an
-# open password for the postgres user.
-DIST_TEST="skip"
-
-src_prepare() {
-   postgres_include="$(readlink -f "${EPREFIX}"/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_prepare
-}

diff --git a/dev-perl/DBD-Pg/Manifest b/dev-perl/DBD-Pg/Manifest
index a7749563a44..096f335e955 100644
--- a/dev-perl/DBD-Pg/Manifest
+++ b/dev-perl/DBD-Pg/Manifest
@@ -3,5 +3,4 @@ DIST DBD-Pg-3.13.0.tar.gz 278332 BLAKE2B 
cf405cd2afd5095fb7bc824b9fc4ca3c9aa86c3
 DIST DBD-Pg-3.14.0.tar.gz 281910 BLAKE2B 
803ea4d153f3832df818dad675603a8610d314695a07c87e32eebc7f967ffb7b10ba413bba712ff710e0ebfbc7866e0be4a0fda36c8174e05d1f2c3efb05433a
 SHA512 
d5eb8a5a8cc6fd6695fbdc8a6763552b3f289fac11b20d94211e3cb0edd2e0df246899369abcffdb10fc198b73fdc8fdbf12d57245c4f61974d265d687e314d6
 DIST DBD-Pg-3.14.2.tar.gz 282024 BLAKE2B 
a8121a2c97b1e095576c40b9b305f0ac21b3a8062efd3ac9684ef68346fc9fb0e4384780dc79b7bb5b6b188825dbd2f3da4765eeeb0208c3bef4db28543f9021
 SHA512 
341df267a7dc1e28f8c71c1b03cb485caf5c9c2ba95a801f7e855ef8c2fb2ed2df2f3cef804fd36072ee5570d30b399f6fba7516216f7d24186c5b6eeb5d5c52
 DIST DBD-Pg-3.5.3.tar.gz 256570 BLAKE2B 
f589fc4ed978d2215d66b4cfd72b00e166f15dbe2caf004fa52c09fc6fc9f9b81ed84bc04ec0c4d3fe15f4eabb5a8a3b24b08acabb66b993c3ce67576a4c1721
 SHA512 
7a564e5c86fa41719289f6e391f0cd39f01df7d088892fca11175c60fec8a3af884f9204ae834caac2024ff0d45dcc013e314ec0c09a07fe7ee76170ec3a634f
-DIST DBD-Pg-3.6.2.tar.gz 258640 BLAKE2B 
76e25905b0336eae4ead14c28cf8338412fec023ea0540fc80f5c8d02b1c46de1b42ee8be2230fb3276aa3c8fa2bda9a97ddbd41fc81617a557359907c02d600
 SHA512 
1f55bd463d90cd0d9933acde0a79462a57f11e7ed9519943cc2cb4487b4b69edd7d16ffa3d666c50aca797f9756ff4e6a0d67b58bc100f4920da36169d73b7b4
 DIST DBD-Pg-3.7.0.tar.gz 260083 BLAKE2B 
73ae253e8033dab58075f6dc3c639e5d21f2df09880f59cb00fcdc201c17db1573e4902c4bfd535916775c0ef61a020a70e8f542ce28e257a903d4aabb9f6730
 SHA512 
edd4d3448dac1b563899c5fd4a1bad6cb810afdbbbf57b558bbe6710aa3e58530a6cf0932e35c3316c7f4f59763764d75ce1049f13c8c13deeb2e8a7c60ff73e



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2020-08-16 Thread Kent Fredric
commit: 3480e5ff88adfacde28d5d188cd906c71ea6ed4f
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Aug 17 01:54:50 2020 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Mon Aug 17 01:56:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3480e5ff

dev-perl/DBD-Pg: Bump to version 3.14.2

Upstream:
- Guard against odd "undefined" errors in result handler consturuction
  where `$VERSION` is somehow undefined, by forcing an explicit
  hardcoded qv string.
- Test Suite fixes

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Kent Fredric  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild | 110 +++
 dev-perl/DBD-Pg/Manifest |   1 +
 2 files changed, 111 insertions(+)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
new file mode 100644
index 000..b87f46e3ebd
--- /dev/null
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.14.2.ebuild
@@ -0,0 +1,110 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=TURNSTEP
+inherit perl-module
+
+DESCRIPTION="PostgreSQL database driver for the DBI module"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   virtual/perl-version
+   >=dev-perl/DBI-1.614.0
+   dev-db/postgresql:*
+"
+DEPEND="
+   dev-db/postgresql:*
+"
+BDEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   >=virtual/perl-Test-Simple-0.880.0
+   virtual/perl-Time-HiRes
+   )
+"
+PERL_RM_FILES=(
+   "t/00_signature.t"
+)
+src_prepare() {
+   postgres_include="$(readlink -f "${EPREFIX}"/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_prepare
+}
+
+src_compile() {
+   mymake=(
+   "OPTIMIZE=${CFLAGS}"
+   )
+   perl-module_src_compile
+}
+
+src_test() {
+   local MODULES=(
+   "Bundle::DBD::Pg v${PV}"
+   "DBD::Pg v${PV}"
+   )
+   local failed=()
+   for dep in "${MODULES[@]}"; do
+   ebegin "Compile testing ${dep}"
+   perl -Mblib="${S}" -M"${dep} ()" -e1 #||
+   #die "Could not load ${dep}"
+   eend $? || failed+=( "$dep" )
+   done
+   if [[ ${failed[@]} ]]; then
+   echo
+   eerror "One or more modules failed compile:";
+   for dep in "${failed[@]}"; do
+   eerror "  ${dep}"
+   done
+   die "Failing due to module compilation errors";
+   fi
+
+   local LIVEDB_TESTS=(
+   "t/01connect.t"
+   "t/02attribs.t"
+   "t/03dbmethod.t"
+   "t/03smethod.t"
+   "t/04misc.t"
+   "t/06bytea.t"
+   "t/07copy.t"
+   "t/08async.t"
+   "t/09arrays.t"
+   "t/12placeholders.t"
+   "t/20savepoints.t"
+   "t/30unicode.t"
+   )
+   if [[ ! -v DBI_DSN ]]; then
+   ewarn "Functional database tests disabled due to lack of 
configuration."
+   ewarn "Please set the following environment variables values 
pertaining to a"
+   ewarn "pre-configured Postgres installation in order for tests 
to work:"
+   ewarn "  DBI_DSN  - A DBI-compatible connection string for a 
Postgres Database"
+   ewarn " ( eg: dbi:Pg:dbname=testdb )"
+   ewarn "  DBI_USER - A Postgres Database Username"
+   ewarn "  DBI_PASS - A Postgres Database Password"
+   ewarn ""
+   ewarn "For details, visit:"
+   ewarn " 
https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/dev-perl/DBD-Pg;
+   perl_rm_files "${LIVEDB_TESTS[@]}"
+   fi
+   # Parallel testing breaks database access
+   DBDPG_TEST_ALWAYS_ENV=1 DIST_TEST="do" perl-module_src_test
+
+}

diff --git a/dev-perl/DBD-Pg/Manifest b/dev-perl/DBD-Pg/Manifest
index fce3c658d68..a7749563a44 100644
--- a/dev-perl/DBD-Pg/Manifest
+++ b/dev-perl/DBD-Pg/Manifest
@@ -1,6 +1,7 @@
 DIST DBD-Pg-3.10.0.tar.gz 268414 BLAKE2B 

[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2020-08-07 Thread Kent Fredric
commit: aee44b1c9af13f14bc14dec065f836f20628f1aa
Author: Kent Fredric  gentoo  org>
AuthorDate: Fri Aug  7 16:05:56 2020 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Fri Aug  7 16:06:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aee44b1c

dev-perl/DBD-Pg: Bump to version 3.14.0

- Restore tests broken in 3.13.0

Upstream:
- $dbh->{primary,foreign}_key_info methods now always return a statement
  handle even without matches. Callers should check row-count instead of
  undefness.
- $dbh->tables now always returns a list, even if empty
- Add support for pg_lo_{tell64,seek64,truncate64} for people dealing
  with ultra-large 'large objects' in Postgres 9.3 or greater.
- Fix tests to run when not super-user
- Fix tests to force loading proper version of DBD::Pg
- Remove deprecated _pg_use_catalog method

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Kent Fredric  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.14.0.ebuild | 110 +++
 dev-perl/DBD-Pg/Manifest |   1 +
 2 files changed, 111 insertions(+)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.14.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.14.0.ebuild
new file mode 100644
index 000..b87f46e3ebd
--- /dev/null
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.14.0.ebuild
@@ -0,0 +1,110 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=TURNSTEP
+inherit perl-module
+
+DESCRIPTION="PostgreSQL database driver for the DBI module"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   virtual/perl-version
+   >=dev-perl/DBI-1.614.0
+   dev-db/postgresql:*
+"
+DEPEND="
+   dev-db/postgresql:*
+"
+BDEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   >=virtual/perl-Test-Simple-0.880.0
+   virtual/perl-Time-HiRes
+   )
+"
+PERL_RM_FILES=(
+   "t/00_signature.t"
+)
+src_prepare() {
+   postgres_include="$(readlink -f "${EPREFIX}"/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_prepare
+}
+
+src_compile() {
+   mymake=(
+   "OPTIMIZE=${CFLAGS}"
+   )
+   perl-module_src_compile
+}
+
+src_test() {
+   local MODULES=(
+   "Bundle::DBD::Pg v${PV}"
+   "DBD::Pg v${PV}"
+   )
+   local failed=()
+   for dep in "${MODULES[@]}"; do
+   ebegin "Compile testing ${dep}"
+   perl -Mblib="${S}" -M"${dep} ()" -e1 #||
+   #die "Could not load ${dep}"
+   eend $? || failed+=( "$dep" )
+   done
+   if [[ ${failed[@]} ]]; then
+   echo
+   eerror "One or more modules failed compile:";
+   for dep in "${failed[@]}"; do
+   eerror "  ${dep}"
+   done
+   die "Failing due to module compilation errors";
+   fi
+
+   local LIVEDB_TESTS=(
+   "t/01connect.t"
+   "t/02attribs.t"
+   "t/03dbmethod.t"
+   "t/03smethod.t"
+   "t/04misc.t"
+   "t/06bytea.t"
+   "t/07copy.t"
+   "t/08async.t"
+   "t/09arrays.t"
+   "t/12placeholders.t"
+   "t/20savepoints.t"
+   "t/30unicode.t"
+   )
+   if [[ ! -v DBI_DSN ]]; then
+   ewarn "Functional database tests disabled due to lack of 
configuration."
+   ewarn "Please set the following environment variables values 
pertaining to a"
+   ewarn "pre-configured Postgres installation in order for tests 
to work:"
+   ewarn "  DBI_DSN  - A DBI-compatible connection string for a 
Postgres Database"
+   ewarn " ( eg: dbi:Pg:dbname=testdb )"
+   ewarn "  DBI_USER - A Postgres Database Username"
+   ewarn "  DBI_PASS - A Postgres Database Password"
+   ewarn ""
+   ewarn "For details, visit:"
+   ewarn " 
https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/dev-perl/DBD-Pg;
+   perl_rm_files "${LIVEDB_TESTS[@]}"
+   fi
+   # Parallel testing breaks 

[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2020-07-08 Thread Kent Fredric
commit: e087fd0c10780edb2c9abc15bd1a2b11b60bdd7d
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Jul  9 00:18:21 2020 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Jul  9 00:19:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e087fd0c

dev-perl/DBD-Pg: Bump to version 3.13.0

- EAPI7
- Unconditionally remove t/00_signature.t
- Ensure CFLAGS passed to make/compiler
- Resurrect compie-testing for Bundle::DBD::Pg
- Disable t/03*.t and t/04*.t due to
   https://rt.cpan.org/Ticket/Display.html?id=132965

Upstream:
- Prevent double-free memory errors
  https://rt.cpan.org/Ticket/Display.html?id=130681
- Fix crash when pg_error_field is called
  https://rt.cpan.org/Ticket/Display.html?id=130721
- Update list of Postgres reserved words in quote.c
- Fix tests for 32-bit machines
- Eagerly NULL-ify PQclear-ed things to remove race conditions
  https://rt.cpan.org/Ticket/Display.html?id=131522
- Allow localtime from Time::Piece, and other magical arrays, to be
  used directly as a bind value again.
- Fix tests for EnterpriseDB server
- Add small warning regarding ShowErrorStatement
- Indicate non-key index columns in statistics_info
- Return empty result set instead of undef from statistics_info
  when table NOTEXIST and not $unique_only
- Fix Segfault during st destroy
  https://github.com/bucardo/dbdpg/issues/57
  https://github.com/bucardo/dbdpg/pull/66
- Improve testing for table_info()
- Fix failing 'fulltest' target on BSD
- Return table info row last in statistics_info for compat with
  pre-8.3 servers
- Fix ASC_OR_DESC field in statistics_info
- Indicate NULL ordering in statistics_info
- Remove test that assumed '(12,34)' to be invalid for type 'circle'
  as Postgres now handles it better.
- Prevent DBI turning AutoCommit 'on' after a failed commit
- Fix memory leak in dbdimp.c by redoing the "last_result" internals
  https://rt.cpan.org/Ticket/Display.html?id=132812
- Fix regression in Perl length() for returned query results
- Make $sth->finish() do less, so that among other things,
  pg_error_field still works on the last action performed.

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Kent Fredric  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.13.0.ebuild | 114 +++
 dev-perl/DBD-Pg/Manifest |   1 +
 2 files changed, 115 insertions(+)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.13.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.13.0.ebuild
new file mode 100644
index 000..252be08d102
--- /dev/null
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.13.0.ebuild
@@ -0,0 +1,114 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=TURNSTEP
+inherit perl-module
+
+DESCRIPTION="PostgreSQL database driver for the DBI module"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   virtual/perl-version
+   >=dev-perl/DBI-1.614.0
+   dev-db/postgresql:*
+"
+DEPEND="
+   dev-db/postgresql:*
+"
+BDEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   >=virtual/perl-Test-Simple-0.880.0
+   virtual/perl-Time-HiRes
+   )
+"
+PERL_RM_FILES=(
+   "t/00_signature.t"
+)
+src_prepare() {
+   postgres_include="$(readlink -f "${EPREFIX}"/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_prepare
+}
+
+src_compile() {
+   mymake=(
+   "OPTIMIZE=${CFLAGS}"
+   )
+   perl-module_src_compile
+}
+
+src_test() {
+   local MODULES=(
+   "Bundle::DBD::Pg v${PV}"
+   "DBD::Pg v${PV}"
+   )
+   local failed=()
+   for dep in "${MODULES[@]}"; do
+   ebegin "Compile testing ${dep}"
+   perl -Mblib="${S}" -M"${dep} ()" -e1 #||
+   #die "Could not load ${dep}"
+   eend $? || failed+=( "$dep" )
+   done
+   if [[ ${failed[@]} ]]; then
+   echo
+   eerror "One or more modules failed compile:";
+   for dep in "${failed[@]}"; do
+   eerror "  ${dep}"
+   done
+   die "Failing due to module compilation errors";
+   fi
+
+   local 

[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2020-03-19 Thread Mart Raudsepp
commit: 5dbac8e208c0749796b64cb05097e2413d125ade
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Thu Mar 19 11:35:54 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Mar 19 11:35:54 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5dbac8e2

dev-perl/DBD-Pg: arm64 stable (bug #704874)

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
index 9a42fd47b3e..65b6b954e06 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2020-01-09 Thread Agostino Sarubbo
commit: 5db9c4b0977fcd9836733e7545190b8194681ea3
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Jan  9 11:50:47 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Jan  9 11:50:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5db9c4b0

dev-perl/DBD-Pg: arm stable wrt bug #704874

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="arm"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
index b0774c96d5c..9a42fd47b3e 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2020-01-09 Thread Agostino Sarubbo
commit: bf38b88615e10147f58f71f84ec2274251a3115d
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Jan  9 11:50:08 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Jan  9 11:50:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf38b886

dev-perl/DBD-Pg: ia64 stable wrt bug #704874

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
index 349386be967..b0774c96d5c 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2020-01-09 Thread Agostino Sarubbo
commit: 453d8996f0712cade0cf478d2d6d1ad5539deea9
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Jan  9 11:49:00 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Jan  9 11:49:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=453d8996

dev-perl/DBD-Pg: x86 stable wrt bug #704874

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
index cfce077c46e..349386be967 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2020-01-08 Thread Agostino Sarubbo
commit: f53d44f4c3549659bb23edda8d3d9bc2568812e0
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jan  8 16:13:12 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jan  8 16:13:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f53d44f4

dev-perl/DBD-Pg: ppc64 stable wrt bug #704874

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
index 7601a02504c..cfce077c46e 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh 
sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2020-01-08 Thread Agostino Sarubbo
commit: 6440f85fcd71a8c80c0c24e6eee4cd44a2de047a
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jan  8 16:12:36 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jan  8 16:12:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6440f85f

dev-perl/DBD-Pg: ppc stable wrt bug #704874

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
index 2de1970d586..7601a02504c 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh 
sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2020-01-08 Thread Agostino Sarubbo
commit: 35eed1fa4962c8bed757d82748094a11b53bd84b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jan  8 08:14:46 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jan  8 08:14:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35eed1fa

dev-perl/DBD-Pg: amd64 stable wrt bug #704874

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
index 4d433db0b6f..2de1970d586 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2020-01-07 Thread Sergei Trofimovich
commit: fad4fa78ceb8a6a9b00e11a2c7ddf19770da6a96
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Jan  7 16:19:48 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jan  7 19:21:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fad4fa78

dev-perl/DBD-Pg: stable 3.10.0 for sparc, bug #704874

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
index e845fdb48bb..4d433db0b6f 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2019-11-24 Thread Aaron W. Swenson
commit: 879de368bc449cad07dc573f1a55ada00723dba2
Author: Aaron W. Swenson  gentoo  org>
AuthorDate: Sun Nov 24 12:16:19 2019 +
Commit: Aaron W. Swenson  gentoo  org>
CommitDate: Sun Nov 24 12:16:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=879de368

dev-perl/DBD-Pg: Bump to 3.10.0

And bumped to EAPI7.

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Aaron W. Swenson  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild | 97 
 dev-perl/DBD-Pg/Manifest |  1 +
 2 files changed, 98 insertions(+)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
new file mode 100644
index 000..e845fdb48bb
--- /dev/null
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.10.0.ebuild
@@ -0,0 +1,97 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=TURNSTEP
+inherit perl-module
+
+DESCRIPTION="PostgreSQL database driver for the DBI module"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE=""
+
+RDEPEND="
+   virtual/perl-version
+   >=dev-perl/DBI-1.614.0
+   dev-db/postgresql:*
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+"
+src_prepare() {
+   postgres_include="$(readlink -f "${EPREFIX}"/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_prepare
+}
+
+src_test() {
+   local MODULES=(
+   # Compile failure: 
https://rt.cpan.org/Ticket/Display.html?id=123218
+   # "Bundle::DBD::Pg v${PV}"
+   "DBD::Pg v${PV}"
+   )
+   local failed=()
+   for dep in "${MODULES[@]}"; do
+   ebegin "Compile testing ${dep}"
+   perl -Mblib="${S}" -M"${dep} ()" -e1 #||
+   #die "Could not load ${dep}"
+   eend $? || failed+=( "$dep" )
+   done
+   if [[ ${failed[@]} ]]; then
+   echo
+   eerror "One or more modules failed compile:";
+   for dep in "${failed[@]}"; do
+   eerror "  ${dep}"
+   done
+   die "Failing due to module compilation errors";
+   fi
+
+   local LIVEDB_TESTS=(
+   "t/01connect.t"
+   "t/02attribs.t"
+   "t/03dbmethod.t"
+   "t/03smethod.t"
+   "t/04misc.t"
+   "t/06bytea.t"
+   "t/07copy.t"
+   "t/08async.t"
+   "t/09arrays.t"
+   "t/12placeholders.t"
+   "t/20savepoints.t"
+   "t/30unicode.t"
+   )
+   local SKIP_TESTS=(
+   "t/00_signature.t"
+   );
+   if [[ ! -v DBI_DSN ]]; then
+   ewarn "Functional database tests disabled due to lack of 
configuration."
+   ewarn "Please set the following environment variables values 
pertaining to a"
+   ewarn "pre-configured Postgres installation in order for tests 
to work:"
+   ewarn "  DBI_DSN  - A DBI-compatible connection string for a 
Postgres Database"
+   ewarn " ( eg: dbi:Pg:dbname=testdb )"
+   ewarn "  DBI_USER - A Postgres Database Username"
+   ewarn "  DBI_PASS - A Postgres Database Password"
+   ewarn ""
+   ewarn "For details, visit:"
+   ewarn 
"https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/dev-perl/DBD-Pg;
+   SKIP_TESTS+=( "${LIVEDB_TESTS[@]}" )
+   fi
+   perl_rm_files "${SKIP_TESTS[@]}"
+   # Parallel testing breaks database access
+   DBDPG_TEST_ALWAYS_ENV=1 DIST_TEST="do" perl-module_src_test
+
+}

diff --git a/dev-perl/DBD-Pg/Manifest b/dev-perl/DBD-Pg/Manifest
index 05c699882ac..d9c4b65f6f8 100644
--- a/dev-perl/DBD-Pg/Manifest
+++ b/dev-perl/DBD-Pg/Manifest
@@ -1,3 +1,4 @@
+DIST DBD-Pg-3.10.0.tar.gz 268414 BLAKE2B 
da6ac65519632aa95ee2554607d5e26820527042873ab78a9e40e671902b1b8e2fe39f37e44b15cf3db8eda243e57c7fab9077d4a08ec7f3c312825609fbc805
 SHA512 
46c985bbdeeed4ef60d6fe06034fa0959df288f2b9bbd434e2716676a3cb7a1ded168a3cf87a6a82eb397eb8edcc023c0b85483e948ce31abcac64a1919580ba
 DIST DBD-Pg-3.5.3.tar.gz 256570 BLAKE2B 

[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2019-07-28 Thread Aaron Bauman
commit: 40f0cc8ee228ed8d3206c6c1a7ebcdd9c22fa78e
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Jul 28 16:57:43 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Jul 28 17:02:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40f0cc8e

dev-perl/DBD-Pg: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="arm64"

 dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
index fce59f2b37c..ab585651690 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2019-04-01 Thread Andreas Sturmlechner
commit: 526145013d73d861856d735cf3eda4c41fc7138d
Author: Roy Bamford  gentoo  org>
AuthorDate: Mon Apr  1 13:34:51 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Apr  1 19:23:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52614501

dev-perl/DBD-Pg: added ~arm64

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Roy Bamford  gentoo.org>
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
index d4780a84506..fce59f2b37c 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2018-12-27 Thread Fabian Groffen
commit: 60d7aa500e73aee18065c84b5491741ebdd36b13
Author: Fabian Groffen  gentoo  org>
AuthorDate: Thu Dec 27 12:46:19 2018 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Thu Dec 27 12:47:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60d7aa50

dev-perl/DBD-Pg: added prefix keywords, bug #667266

Signed-off-by: Fabian Groffen  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
index f0fac631857..ccbcc9454ad 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2018-10-14 Thread Mikle Kolyada
commit: f857c7c0fe15c883bd323fb9da15ba66799838f6
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Oct 14 15:14:11 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Oct 14 15:15:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f857c7c0

dev-perl/DBD-Pg: mark s390 stable

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11

 dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
index 5c25b81e75c..f0fac631857 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2018-07-14 Thread Sergei Trofimovich
commit: 877fa31d1c0f314584ffd289104c4a4094b9b7e1
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat Jul 14 17:25:25 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jul 14 17:53:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=877fa31d

dev-perl/DBD-Pg: stable 3.7.0 for sparc

Bug: https://bugs.gentoo.org/657210
Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="sparc"

 dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
index a2c12797c24..5c25b81e75c 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2018-06-26 Thread Mikle Kolyada
commit: 2457c3691c85a0594dad604a87f9617369415ea1
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jun 26 15:50:10 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jun 26 15:51:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2457c369

dev-perl/DBD-Pg: arm stable wrt bug #657210

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
index 8a866306829..a2c12797c24 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2018-06-25 Thread Tobias Klausmann
commit: 7b352f703d281e792b5ba5d59c8d24581e631d90
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Mon Jun 25 18:21:00 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Mon Jun 25 18:56:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b352f70

dev-perl/DBD-Pg-3.7.0-r0: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/657210

 dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
index 130635ab12b..8a866306829 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2018-06-03 Thread Sergei Trofimovich
commit: 16b9455cfe8f7f345a7295c944cb77a9fbd090fd
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun  3 07:27:55 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun  3 07:41:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16b9455c

dev-perl/DBD-Pg: stable 3.7.0 for ia64, bug #657210

Bug: https://bugs.gentoo.org/657210
Package-Manager: Portage-2.3.38, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

 dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
index b7338a37775..277c928d38d 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2017-10-08 Thread Kent Fredric
commit: 6037da503870310a3ee85b7a3c823ce085d3c56c
Author: Kent Fredric  gentoo  org>
AuthorDate: Sun Oct  8 10:27:22 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sun Oct  8 10:28:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6037da50

dev-perl/DBD-Pg: Bump to version 3.7.0

- Radically improve test coverage
  - Previously ran no tests
  - Now runs basic tests and compile tests without needing a database
  - checks for database being configured
  - if database is configured for testing, tests run
  - See https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/dev-perl/DBD-Pg

Upstream:
- Use PQexec instead of PQexecParams when no placeholders
- Fix tests w/ server w/o UTF8
- Fix crash with missing client_encoding
- Fix crash with missing server_version
- Fix leak in ->state methods
- Add pg_async_status field in statement handles.

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild | 97 +
 dev-perl/DBD-Pg/Manifest|  1 +
 2 files changed, 98 insertions(+)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
new file mode 100644
index 000..b7338a37775
--- /dev/null
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.7.0.ebuild
@@ -0,0 +1,97 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=TURNSTEP
+inherit perl-module
+
+DESCRIPTION="PostgreSQL database driver for the DBI module"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+IUSE=""
+
+RDEPEND="
+   virtual/perl-version
+   >=dev-perl/DBI-1.614.0
+   dev-db/postgresql:*
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+"
+src_prepare() {
+   postgres_include="$(readlink -f "${EPREFIX}"/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_prepare
+}
+
+src_test() {
+   local MODULES=(
+   # Compile failure: 
https://rt.cpan.org/Ticket/Display.html?id=123218
+   # "Bundle::DBD::Pg v${PV}"
+   "DBD::Pg v${PV}"
+   )
+   local failed=()
+   for dep in "${MODULES[@]}"; do
+   ebegin "Compile testing ${dep}"
+   perl -Mblib="${S}" -M"${dep} ()" -e1 #||
+   #die "Could not load ${dep}"
+   eend $? || failed+=( "$dep" )
+   done
+   if [[ ${failed[@]} ]]; then
+   echo
+   eerror "One or more modules failed compile:";
+   for dep in "${failed[@]}"; do
+   eerror "  ${dep}"
+   done
+   die "Failing due to module compilation errors";
+   fi
+
+   local LIVEDB_TESTS=(
+   "t/01connect.t"
+   "t/02attribs.t"
+   "t/03dbmethod.t"
+   "t/03smethod.t"
+   "t/04misc.t"
+   "t/06bytea.t"
+   "t/07copy.t"
+   "t/08async.t"
+   "t/09arrays.t"
+   "t/12placeholders.t"
+   "t/20savepoints.t"
+   "t/30unicode.t"
+   )
+   local SKIP_TESTS=(
+   "t/00_signature.t"
+   );
+   if [[ ! -v DBI_DSN ]]; then
+   ewarn "Functional database tests disabled due to lack of 
configuration."
+   ewarn "Please set the following environment variables values 
pertaining to a"
+   ewarn "pre-configured Postgres installation in order for tests 
to work:"
+   ewarn "  DBI_DSN  - A DBI-compatible connection string for a 
Postgres Database"
+   ewarn " ( eg: dbi:Pg:dbname=testdb )"
+   ewarn "  DBI_USER - A Postgres Database Username"
+   ewarn "  DBI_PASS - A Postgres Database Password"
+   ewarn ""
+   ewarn "For details, visit:"
+   ewarn 
"https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/dev-perl/DBD-Pg;
+   SKIP_TESTS+=( "${LIVEDB_TESTS[@]}" )
+   fi
+   perl_rm_files "${SKIP_TESTS[@]}"
+   # Parallel testing breaks database access
+   DBDPG_TEST_ALWAYS_ENV=1 DIST_TEST="do" perl-module_src_test
+
+}

diff --git a/dev-perl/DBD-Pg/Manifest b/dev-perl/DBD-Pg/Manifest
index 0d26187baee..81e5232e7c0 100644
--- a/dev-perl/DBD-Pg/Manifest
+++ 

[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2017-07-15 Thread Aaron Swenson
commit: 89d0e9b74f73355e0b26187db60c1f1d182494cc
Author: Aaron W. Swenson  gentoo  org>
AuthorDate: Sat Jul 15 11:13:45 2017 +
Commit: Aaron Swenson  gentoo  org>
CommitDate: Sat Jul 15 11:13:45 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89d0e9b7

dev-perl/DBD-Pg: Version Bump to 3.6.2

Version bump enables building against >=dev-db/postgresql-10.

Bugs: 624974

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-perl/DBD-Pg/DBD-Pg-3.6.2.ebuild | 44 +
 dev-perl/DBD-Pg/Manifest|  1 +
 2 files changed, 45 insertions(+)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.6.2.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.6.2.ebuild
new file mode 100644
index 000..da68ebc2ce4
--- /dev/null
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.6.2.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=TURNSTEP
+inherit perl-module
+
+DESCRIPTION="PostgreSQL database driver for the DBI module"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+IUSE=""
+
+RDEPEND="
+   virtual/perl-version
+   >=dev-perl/DBI-1.614.0
+   dev-db/postgresql:*
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+"
+
+# testcases require a local database with an
+# open password for the postgres user.
+DIST_TEST="skip"
+
+src_prepare() {
+   postgres_include="$(readlink -f "${EPREFIX}"/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_prepare
+}

diff --git a/dev-perl/DBD-Pg/Manifest b/dev-perl/DBD-Pg/Manifest
index 7a9805e758f..0d26187baee 100644
--- a/dev-perl/DBD-Pg/Manifest
+++ b/dev-perl/DBD-Pg/Manifest
@@ -1 +1,2 @@
 DIST DBD-Pg-3.5.3.tar.gz 256570 SHA256 
7e98a9b975256a4733db1c0e974cad5ad5cb821489323e395ed97bd058e0a90e SHA512 
7a564e5c86fa41719289f6e391f0cd39f01df7d088892fca11175c60fec8a3af884f9204ae834caac2024ff0d45dcc013e314ec0c09a07fe7ee76170ec3a634f
 WHIRLPOOL 
6f4091284c2c91b8c2126e06a2727b65e672db91ce5f265841ef3c02b977f48712e84ad013980bbe4a2e127f5003906bf315d7b6a86787440a9cc6688aa14cd8
+DIST DBD-Pg-3.6.2.tar.gz 258640 SHA256 
4b1d2edea07cfaadbb710ac138f41346752bb62f5d29cd0363f11cb4f7c3c4ae SHA512 
1f55bd463d90cd0d9933acde0a79462a57f11e7ed9519943cc2cb4487b4b69edd7d16ffa3d666c50aca797f9756ff4e6a0d67b58bc100f4920da36169d73b7b4
 WHIRLPOOL 
8d28fe8f64b952f57ede925d20a88aca1631462e85b59112ddf073753892053fd59b4802d293fdd745a1c047ff436bb7192b5cf5839436c5d288d4b1b403bc73



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2017-02-04 Thread Andreas Hüttel
commit: 9f1507d008096f152bbd63b72ffea807b5d7476f
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Feb  4 17:06:54 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Feb  4 17:32:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f1507d0

dev-perl/DBD-Pg: Remove old

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild | 42 -
 dev-perl/DBD-Pg/Manifest|  1 -
 2 files changed, 43 deletions(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild
deleted file mode 100644
index 205cfcb..
--- a/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=TURNSTEP
-MODULE_VERSION=3.4.2
-inherit perl-module
-
-DESCRIPTION="PostgreSQL database driver for the DBI module"
-
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE=""
-
-RDEPEND="virtual/perl-version
-   >=dev-perl/DBI-1.614.0
-   dev-db/postgresql:*"
-DEPEND="${RDEPEND}"
-
-# testcases require a local database with an
-# open password for the postgres user.
-SRC_TEST="skip"
-
-src_prepare() {
-   postgres_include="$(readlink -f "${EPREFIX}"/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_prepare
-}

diff --git a/dev-perl/DBD-Pg/Manifest b/dev-perl/DBD-Pg/Manifest
index a37b53d..7a9805e 100644
--- a/dev-perl/DBD-Pg/Manifest
+++ b/dev-perl/DBD-Pg/Manifest
@@ -1,2 +1 @@
-DIST DBD-Pg-3.4.2.tar.gz 253346 SHA256 
7b76930cec143b90a068e1e64a3beb6f640c10b22d0a41f9a032516683892f24 SHA512 
290f8e19d6920c1a514305a943ec4f63da14dd321e93a6e9cc4f6fce6737f308a3931135ec9ed0d4577f1ab97358106ca2def7ccb28a7c5c169a80ca5cda1d85
 WHIRLPOOL 
a177efa5cd07c3064528329a9be72cd464671e55ac19ec564b75f8fe5e757c960a89d83d09a65e7e327bb88d9322465c0cdc320ddb33eb85a59bb29c9fe1dfbe
 DIST DBD-Pg-3.5.3.tar.gz 256570 SHA256 
7e98a9b975256a4733db1c0e974cad5ad5cb821489323e395ed97bd058e0a90e SHA512 
7a564e5c86fa41719289f6e391f0cd39f01df7d088892fca11175c60fec8a3af884f9204ae834caac2024ff0d45dcc013e314ec0c09a07fe7ee76170ec3a634f
 WHIRLPOOL 
6f4091284c2c91b8c2126e06a2727b65e672db91ce5f265841ef3c02b977f48712e84ad013980bbe4a2e127f5003906bf315d7b6a86787440a9cc6688aa14cd8



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2017-02-03 Thread Jeroen Roovers
commit: 1e9fe811d30e4a1e19b495d502ff6dee5c042697
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Fri Feb  3 21:46:41 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Fri Feb  3 21:48:48 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e9fe811

dev-perl/DBD-Pg: Stable for HPPA (bug #595954).

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches

 dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
index ad44388..d7d6bbf 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2017-01-03 Thread Agostino Sarubbo
commit: 520bef4558a393e7873746fc457369aef5db6e6c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jan  3 10:37:02 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jan  3 10:38:32 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=520bef45

dev-perl/DBD-Pg: ppc64 stable wrt bug #595954

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
index 14d615c..d94d5fa 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2017-01-01 Thread Agostino Sarubbo
commit: f209c75f9769b241e2cd45eae3c44143d23716b8
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Jan  1 12:42:45 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Jan  1 12:42:45 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f209c75f

dev-perl/DBD-Pg: ppc stable wrt bug #595954

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
index f503a42..14d615c 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2016-12-30 Thread Agostino Sarubbo
commit: f8316b6271a94a98e449b1f1a4a189b5ee4df42f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Dec 30 09:38:03 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Dec 30 09:38:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8316b62

dev-perl/DBD-Pg: sparc stable wrt bug #595954

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
index 870ea8b..89fdffd 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2016-12-30 Thread Agostino Sarubbo
commit: 98f053d037784726cb00aea7d89737ae52a44898
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Dec 30 11:11:03 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Dec 30 11:11:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98f053d0

dev-perl/DBD-Pg: ia64 stable wrt bug #595954

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
index 89fdffd..f503a42 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2016-12-29 Thread Agostino Sarubbo
commit: a7cd70409474059f0321d6cceea53a005bb02eae
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Dec 29 10:43:34 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Dec 29 10:44:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7cd7040

dev-perl/DBD-Pg: x86 stable wrt bug #595954

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
index df54003..870ea8b 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2016-12-20 Thread Tobias Klausmann
commit: fe333952e2f54f7404f86a08a1bb4623f8cbd1cd
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Tue Dec 20 19:15:39 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Tue Dec 20 19:15:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe333952

dev-perl/DBD-Pg-3.5.3-r0: stable on amd64

Gentoo-Bug: 595954

 dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
index 262074a..df54003 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="alpha ~amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2016-10-26 Thread Markus Meier
commit: 8c075177ea03ecda5418c72110626dd87648f18b
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Oct 26 16:55:03 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Oct 26 16:55:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c075177

dev-perl/DBD-Pg: arm stable, bug #595954

Package-Manager: portage-2.3.2
RepoMan-Options: --include-arches="arm"

 dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
index f78dccb..262074a 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
+KEYWORDS="alpha ~amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2016-10-03 Thread Tobias Klausmann
commit: 9ddfff72595b3442313e2b93795efd91c3bd4bb7
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Mon Oct  3 12:15:33 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Mon Oct  3 12:15:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ddfff72

dev-perl/DBD-Pg-3.5.3-r0: stable on alpha

Gentoo-Bug: 595954

 dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
index 5a0d863..f78dccb 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
+KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2016-03-06 Thread Andreas Hüttel
commit: 93d56ed88a60768cfc56a990d4a04a7af667afd9
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Mar  5 19:36:46 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Mar  5 19:36:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93d56ed8

dev-perl/DBD-Pg: Remove old

Package-Manager: portage-2.2.27

 dev-perl/DBD-Pg/DBD-Pg-2.19.3-r1.ebuild | 42 -
 dev-perl/DBD-Pg/Manifest|  1 -
 2 files changed, 43 deletions(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-2.19.3-r1.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-2.19.3-r1.ebuild
deleted file mode 100644
index 3df33bc..000
--- a/dev-perl/DBD-Pg/DBD-Pg-2.19.3-r1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=TURNSTEP
-MODULE_VERSION=2.19.3
-inherit perl-module
-
-DESCRIPTION="The Perl DBD::Pg Module"
-
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix 
~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE=""
-
-RDEPEND="virtual/perl-version
-   >=dev-perl/DBI-1.52
-   dev-db/postgresql:*"
-DEPEND="${RDEPEND}"
-
-# testcases require a local database with an
-# open password for the postgres user.
-SRC_TEST="skip"
-
-src_prepare() {
-   postgres_include="$(readlink -f "${EPREFIX}"/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_prepare
-}

diff --git a/dev-perl/DBD-Pg/Manifest b/dev-perl/DBD-Pg/Manifest
index c360fe2..a37b53d 100644
--- a/dev-perl/DBD-Pg/Manifest
+++ b/dev-perl/DBD-Pg/Manifest
@@ -1,3 +1,2 @@
-DIST DBD-Pg-2.19.3.tar.gz 237399 SHA256 
37350d134b7fa88fb3b9432d92991e0a73f405bf5b3a4ee53430439280b8262a SHA512 
e1183fda7abcd2ee05491fe269172e5fb09dba6cb329c6f6f1a5abb9dc9a98c414a0b67f3465b938b197bbe34e3ebc9ec6a4e810e1f9e2316753845ac5416fec
 WHIRLPOOL 
427b1705a3d8e69032b2db5d7ad1d1c6de6353c44b5b6294352abfb28f100f2f572356a2402e285bfbb373384bff18fef7355c545ceb21fbffea07d5de75ec24
 DIST DBD-Pg-3.4.2.tar.gz 253346 SHA256 
7b76930cec143b90a068e1e64a3beb6f640c10b22d0a41f9a032516683892f24 SHA512 
290f8e19d6920c1a514305a943ec4f63da14dd321e93a6e9cc4f6fce6737f308a3931135ec9ed0d4577f1ab97358106ca2def7ccb28a7c5c169a80ca5cda1d85
 WHIRLPOOL 
a177efa5cd07c3064528329a9be72cd464671e55ac19ec564b75f8fe5e757c960a89d83d09a65e7e327bb88d9322465c0cdc320ddb33eb85a59bb29c9fe1dfbe
 DIST DBD-Pg-3.5.3.tar.gz 256570 SHA256 
7e98a9b975256a4733db1c0e974cad5ad5cb821489323e395ed97bd058e0a90e SHA512 
7a564e5c86fa41719289f6e391f0cd39f01df7d088892fca11175c60fec8a3af884f9204ae834caac2024ff0d45dcc013e314ec0c09a07fe7ee76170ec3a634f
 WHIRLPOOL 
6f4091284c2c91b8c2126e06a2727b65e672db91ce5f265841ef3c02b977f48712e84ad013980bbe4a2e127f5003906bf315d7b6a86787440a9cc6688aa14cd8



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2016-03-06 Thread Mikle Kolyada
commit: 98a837a1b4fc586749b4a34ef47aba778870e570
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Mar  5 17:31:41 2016 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Mar  5 17:31:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98a837a1

dev-perl/DBD-Pg: ppc64 stable wrt bug #570644

Package-Manager: portage-2.2.26

 dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild
index 0b14a41..2a78396 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND="virtual/perl-version



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2016-01-23 Thread Jeroen Roovers
commit: 9c9f0309a8a70929c3d1d4abb654366d63c3b659
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sun Jan 24 07:10:29 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sun Jan 24 07:10:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c9f0309

dev-perl/DBD-Pg: Stable for HPPA (bug #570644).

Package-Manager: portage-2.2.27
RepoMan-Options: --ignore-arches

 dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild
index 80edd83..0b14a41 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND="virtual/perl-version



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2016-01-17 Thread Mikle Kolyada
commit: 98f04334bf9cb9b587c85138ad18595202684f71
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Jan 17 13:45:10 2016 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Jan 17 13:45:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98f04334

dev-perl/DBD-Pg: ppc stable wrt bug #570644

Package-Manager: portage-2.2.26

 dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild
index 9d52b14..80edd83 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND="virtual/perl-version



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2016-01-12 Thread Markus Meier
commit: 1ef2c9a51c683fe3a9af2bce9d1c203347425e7e
Author: Markus Meier  gentoo  org>
AuthorDate: Tue Jan 12 20:15:40 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Tue Jan 12 20:15:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ef2c9a5

dev-perl/DBD-Pg: arm stable, bug #570644

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="arm"

 dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild
index ced1230..9d52b14 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND="virtual/perl-version



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2016-01-10 Thread Agostino Sarubbo
commit: 1ff4949bcf83e6972850a551d20d2ff4e6a84313
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Jan 10 10:34:31 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Jan 10 10:34:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ff4949b

dev-perl/DBD-Pg: alpha stable wrt bug #570644

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="alpha"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild
index 8cb6a7d..1cb6966 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND="virtual/perl-version



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2016-01-08 Thread Agostino Sarubbo
commit: b31eff53b43a460024fc1213dacd7179328c8775
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Jan  9 06:43:38 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Jan  9 06:43:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b31eff53

dev-perl/DBD-Pg: sparc stable wrt bug #570644

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild
index b95dea6..8cb6a7d 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 RDEPEND="virtual/perl-version



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2016-01-03 Thread Agostino Sarubbo
commit: c28fab795308fbd8400b5faedbf05e3731d650cd
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Jan  3 11:53:35 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Jan  3 11:53:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c28fab79

dev-perl/DBD-Pg: amd64 stable wrt bug #570644

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild
index f61da82..97a60ff 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="PostgreSQL database driver for the DBI module"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
 IUSE=""
 
 RDEPEND="virtual/perl-version



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2016-01-02 Thread Andreas Hüttel
commit: 3edf662709b2839ddbf822576f686b5b99d74c5b
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Jan  2 19:37:04 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Jan  2 19:42:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3edf6627

dev-perl/DBD-Pg: Remove old

Package-Manager: portage-2.2.26

 dev-perl/DBD-Pg/DBD-Pg-3.3.0.ebuild | 42 -
 dev-perl/DBD-Pg/Manifest|  1 -
 2 files changed, 43 deletions(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.3.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.3.0.ebuild
deleted file mode 100644
index 9dd3c90..000
--- a/dev-perl/DBD-Pg/DBD-Pg-3.3.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=TURNSTEP
-MODULE_VERSION=3.3.0
-inherit perl-module
-
-DESCRIPTION="The Perl DBD::Pg Module"
-
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
-IUSE=""
-
-RDEPEND="virtual/perl-version
-   >=dev-perl/DBI-1.52
-   dev-db/postgresql"
-DEPEND="${RDEPEND}"
-
-# testcases require a local database with an
-# open password for the postgres user.
-SRC_TEST="skip"
-
-src_prepare() {
-   postgres_include="$(readlink -f "${EPREFIX}"/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_prepare
-}

diff --git a/dev-perl/DBD-Pg/Manifest b/dev-perl/DBD-Pg/Manifest
index 7cc5495..c360fe2 100644
--- a/dev-perl/DBD-Pg/Manifest
+++ b/dev-perl/DBD-Pg/Manifest
@@ -1,4 +1,3 @@
 DIST DBD-Pg-2.19.3.tar.gz 237399 SHA256 
37350d134b7fa88fb3b9432d92991e0a73f405bf5b3a4ee53430439280b8262a SHA512 
e1183fda7abcd2ee05491fe269172e5fb09dba6cb329c6f6f1a5abb9dc9a98c414a0b67f3465b938b197bbe34e3ebc9ec6a4e810e1f9e2316753845ac5416fec
 WHIRLPOOL 
427b1705a3d8e69032b2db5d7ad1d1c6de6353c44b5b6294352abfb28f100f2f572356a2402e285bfbb373384bff18fef7355c545ceb21fbffea07d5de75ec24
-DIST DBD-Pg-3.3.0.tar.gz 251408 SHA256 
52f43de5b2d916d447d7ed252b127f728b226dc88db57d4fe9712e21d3586ffe SHA512 
eb8fbc2e9ad3a846ee4ee580ad2d18cb99b8df48b1c30595d0ffc6ab6e0ff91c36f61e98120968285bd3818f0e565a43189066eda8f93a2972e1df3258ed4f8e
 WHIRLPOOL 
b0143c95422ca7e8566b7bf7b63ff8d83e5304a0a83b93a5acff30a3d2140243fb580fa36ac70aeebf8226d7990d56fd85b0ae942310944c21564b7b933b662a
 DIST DBD-Pg-3.4.2.tar.gz 253346 SHA256 
7b76930cec143b90a068e1e64a3beb6f640c10b22d0a41f9a032516683892f24 SHA512 
290f8e19d6920c1a514305a943ec4f63da14dd321e93a6e9cc4f6fce6737f308a3931135ec9ed0d4577f1ab97358106ca2def7ccb28a7c5c169a80ca5cda1d85
 WHIRLPOOL 
a177efa5cd07c3064528329a9be72cd464671e55ac19ec564b75f8fe5e757c960a89d83d09a65e7e327bb88d9322465c0cdc320ddb33eb85a59bb29c9fe1dfbe
 DIST DBD-Pg-3.5.3.tar.gz 256570 SHA256 
7e98a9b975256a4733db1c0e974cad5ad5cb821489323e395ed97bd058e0a90e SHA512 
7a564e5c86fa41719289f6e391f0cd39f01df7d088892fca11175c60fec8a3af884f9204ae834caac2024ff0d45dcc013e314ec0c09a07fe7ee76170ec3a634f
 WHIRLPOOL 
6f4091284c2c91b8c2126e06a2727b65e672db91ce5f265841ef3c02b977f48712e84ad013980bbe4a2e127f5003906bf315d7b6a86787440a9cc6688aa14cd8



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2016-01-02 Thread Andreas Hüttel
commit: d334334850afb8f62fdf2cc7b2ee9c6264e69b41
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Jan  2 19:36:12 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Jan  2 19:42:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3343348

dev-perl/DBD-Pg: Version bump

Package-Manager: portage-2.2.26

 dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild | 45 +
 dev-perl/DBD-Pg/Manifest|  1 +
 2 files changed, 46 insertions(+)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
new file mode 100644
index 000..4fac940
--- /dev/null
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=TURNSTEP
+inherit perl-module
+
+DESCRIPTION="PostgreSQL database driver for the DBI module"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
+IUSE=""
+
+RDEPEND="
+   virtual/perl-version
+   >=dev-perl/DBI-1.614.0
+   dev-db/postgresql
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+"
+
+# testcases require a local database with an
+# open password for the postgres user.
+DIST_TEST="skip"
+
+src_prepare() {
+   postgres_include="$(readlink -f "${EPREFIX}"/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_prepare
+}

diff --git a/dev-perl/DBD-Pg/Manifest b/dev-perl/DBD-Pg/Manifest
index 2ad0cb1..7cc5495 100644
--- a/dev-perl/DBD-Pg/Manifest
+++ b/dev-perl/DBD-Pg/Manifest
@@ -1,3 +1,4 @@
 DIST DBD-Pg-2.19.3.tar.gz 237399 SHA256 
37350d134b7fa88fb3b9432d92991e0a73f405bf5b3a4ee53430439280b8262a SHA512 
e1183fda7abcd2ee05491fe269172e5fb09dba6cb329c6f6f1a5abb9dc9a98c414a0b67f3465b938b197bbe34e3ebc9ec6a4e810e1f9e2316753845ac5416fec
 WHIRLPOOL 
427b1705a3d8e69032b2db5d7ad1d1c6de6353c44b5b6294352abfb28f100f2f572356a2402e285bfbb373384bff18fef7355c545ceb21fbffea07d5de75ec24
 DIST DBD-Pg-3.3.0.tar.gz 251408 SHA256 
52f43de5b2d916d447d7ed252b127f728b226dc88db57d4fe9712e21d3586ffe SHA512 
eb8fbc2e9ad3a846ee4ee580ad2d18cb99b8df48b1c30595d0ffc6ab6e0ff91c36f61e98120968285bd3818f0e565a43189066eda8f93a2972e1df3258ed4f8e
 WHIRLPOOL 
b0143c95422ca7e8566b7bf7b63ff8d83e5304a0a83b93a5acff30a3d2140243fb580fa36ac70aeebf8226d7990d56fd85b0ae942310944c21564b7b933b662a
 DIST DBD-Pg-3.4.2.tar.gz 253346 SHA256 
7b76930cec143b90a068e1e64a3beb6f640c10b22d0a41f9a032516683892f24 SHA512 
290f8e19d6920c1a514305a943ec4f63da14dd321e93a6e9cc4f6fce6737f308a3931135ec9ed0d4577f1ab97358106ca2def7ccb28a7c5c169a80ca5cda1d85
 WHIRLPOOL 
a177efa5cd07c3064528329a9be72cd464671e55ac19ec564b75f8fe5e757c960a89d83d09a65e7e327bb88d9322465c0cdc320ddb33eb85a59bb29c9fe1dfbe
+DIST DBD-Pg-3.5.3.tar.gz 256570 SHA256 
7e98a9b975256a4733db1c0e974cad5ad5cb821489323e395ed97bd058e0a90e SHA512 
7a564e5c86fa41719289f6e391f0cd39f01df7d088892fca11175c60fec8a3af884f9204ae834caac2024ff0d45dcc013e314ec0c09a07fe7ee76170ec3a634f
 WHIRLPOOL 
6f4091284c2c91b8c2126e06a2727b65e672db91ce5f265841ef3c02b977f48712e84ad013980bbe4a2e127f5003906bf315d7b6a86787440a9cc6688aa14cd8



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-Pg/

2016-01-02 Thread Andreas Hüttel
commit: 8a334d42ba7d67d41aecafa4a6c0f66e220a0438
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Jan  2 19:38:59 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Jan  2 19:42:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a334d42

dev-perl/DBD-Pg: Specify postgresql slot (any)

Package-Manager: portage-2.2.26

 dev-perl/DBD-Pg/DBD-Pg-2.19.3-r1.ebuild | 4 ++--
 dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild | 4 ++--
 dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-2.19.3-r1.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-2.19.3-r1.ebuild
index 9da3981..3df33bc 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-2.19.3-r1.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-2.19.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -16,7 +16,7 @@ IUSE=""
 
 RDEPEND="virtual/perl-version
>=dev-perl/DBI-1.52
-   dev-db/postgresql"
+   dev-db/postgresql:*"
 DEPEND="${RDEPEND}"
 
 # testcases require a local database with an

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild
index 7f74837..f61da82 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.4.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -16,7 +16,7 @@ IUSE=""
 
 RDEPEND="virtual/perl-version
>=dev-perl/DBI-1.614.0
-   dev-db/postgresql"
+   dev-db/postgresql:*"
 DEPEND="${RDEPEND}"
 
 # testcases require a local database with an

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
index 4fac940..5a0d863 100644
--- a/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.5.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -16,7 +16,7 @@ IUSE=""
 RDEPEND="
virtual/perl-version
>=dev-perl/DBI-1.614.0
-   dev-db/postgresql
+   dev-db/postgresql:*
 "
 DEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker