* [gentoo-commits] repo/gentoo:master commit in: dev-perl/DBIx-Class-InflateColumn-IP/
@ 2017-06-25 9:58 Kent Fredric
0 siblings, 0 replies; 5+ messages in thread
From: Kent Fredric @ 2017-06-25 9:58 UTC (permalink / raw
To: gentoo-commits
commit: dd1bd00c99aff0e4406ba5f868c66f6eb1147099
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 25 09:57:33 2017 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Sun Jun 25 09:57:50 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd1bd00c
dev-perl/DBIx-Class-InflateColumn-IP: Fix for '.' in @INC re bug #615716
Generic Module::Install fix for Perl 5.26
Bug: https://bugs.gentoo.org/615716
Package-Manager: Portage-2.3.6, Repoman-2.3.2
.../DBIx-Class-InflateColumn-IP-0.20.30.ebuild | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/dev-perl/DBIx-Class-InflateColumn-IP/DBIx-Class-InflateColumn-IP-0.20.30.ebuild b/dev-perl/DBIx-Class-InflateColumn-IP/DBIx-Class-InflateColumn-IP-0.20.30.ebuild
index 97e8e8e66df..86e6177d9c6 100644
--- a/dev-perl/DBIx-Class-InflateColumn-IP/DBIx-Class-InflateColumn-IP-0.20.30.ebuild
+++ b/dev-perl/DBIx-Class-InflateColumn-IP/DBIx-Class-InflateColumn-IP-0.20.30.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -18,3 +18,9 @@ RDEPEND="
>=dev-perl/DBIx-Class-0.81.70
"
DEPEND="${RDEPEND}"
+
+src_prepare() {
+ sed -i -e 's/use inc::Module::Install /use lib q[.];\nuse inc::Module::Install /' Makefile.PL ||
+ die "Can't patch Makefile.PL for 5.26 dot-in-inc"
+ perl-module_src_prepare
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/DBIx-Class-InflateColumn-IP/
@ 2017-10-20 7:40 Kent Fredric
0 siblings, 0 replies; 5+ messages in thread
From: Kent Fredric @ 2017-10-20 7:40 UTC (permalink / raw
To: gentoo-commits
commit: e20ffb86df15b97b61796372c3ba06b56cda8d97
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 20 00:32:05 2017 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Fri Oct 20 07:39:41 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e20ffb86
dev-perl/DBIx-Class-InflateColumn-IP: EAPI6 + Tests
- EAPI6
- Enable tests
Package-Manager: Portage-2.3.8, Repoman-2.3.3
.../DBIx-Class-InflateColumn-IP-0.20.30-r1.ebuild | 31 ++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/dev-perl/DBIx-Class-InflateColumn-IP/DBIx-Class-InflateColumn-IP-0.20.30-r1.ebuild b/dev-perl/DBIx-Class-InflateColumn-IP/DBIx-Class-InflateColumn-IP-0.20.30-r1.ebuild
new file mode 100644
index 00000000000..479c54e5bac
--- /dev/null
+++ b/dev-perl/DBIx-Class-InflateColumn-IP/DBIx-Class-InflateColumn-IP-0.20.30-r1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=ILMARI
+DIST_VERSION=0.02003
+inherit perl-module
+
+DESCRIPTION="Auto-create NetAddr::IP objects from columns"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+ dev-perl/NetAddr-IP
+ >=dev-perl/DBIx-Class-0.81.70
+"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+ sed -i -e 's/use inc::Module::Install /use lib q[.];\nuse inc::Module::Install /' Makefile.PL ||
+ die "Can't patch Makefile.PL for 5.26 dot-in-inc"
+ perl-module_src_prepare
+}
+
+src_test() {
+ perl_rm_files t/pod-coverage.t t/pod.t t/style-notabs.t
+ perl-module_src_test
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/DBIx-Class-InflateColumn-IP/
@ 2017-10-20 8:41 Kent Fredric
0 siblings, 0 replies; 5+ messages in thread
From: Kent Fredric @ 2017-10-20 8:41 UTC (permalink / raw
To: gentoo-commits
commit: 2ab873b0e20d50402d79860d9d6ea8f07f684535
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 20 08:39:38 2017 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Fri Oct 20 08:41:51 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ab873b0
dev-perl/DBIx-Class-InflateColumn-IP: Fix missing test dep on DBD-SQLite
Package-Manager: Portage-2.3.8, Repoman-2.3.3
.../DBIx-Class-InflateColumn-IP-0.20.30-r1.ebuild | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/dev-perl/DBIx-Class-InflateColumn-IP/DBIx-Class-InflateColumn-IP-0.20.30-r1.ebuild b/dev-perl/DBIx-Class-InflateColumn-IP/DBIx-Class-InflateColumn-IP-0.20.30-r1.ebuild
index 479c54e5bac..ef520397ac6 100644
--- a/dev-perl/DBIx-Class-InflateColumn-IP/DBIx-Class-InflateColumn-IP-0.20.30-r1.ebuild
+++ b/dev-perl/DBIx-Class-InflateColumn-IP/DBIx-Class-InflateColumn-IP-0.20.30-r1.ebuild
@@ -11,13 +11,15 @@ DESCRIPTION="Auto-create NetAddr::IP objects from columns"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE=""
+IUSE="test"
RDEPEND="
dev-perl/NetAddr-IP
>=dev-perl/DBIx-Class-0.81.70
"
-DEPEND="${RDEPEND}"
+DEPEND="${RDEPEND}
+ test? ( dev-perl/DBD-SQLite )
+"
src_prepare() {
sed -i -e 's/use inc::Module::Install /use lib q[.];\nuse inc::Module::Install /' Makefile.PL ||
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/DBIx-Class-InflateColumn-IP/
@ 2018-04-15 8:36 Kent Fredric
0 siblings, 0 replies; 5+ messages in thread
From: Kent Fredric @ 2018-04-15 8:36 UTC (permalink / raw
To: gentoo-commits
commit: 4fd745dab3bd74aa90d2a48e5f449ddd48385577
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 12 08:13:15 2018 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Sun Apr 15 08:36:02 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fd745da
dev-perl/DBIx-Class-InflateColumn-IP: Cleanup old
Package-Manager: Portage-2.3.24, Repoman-2.3.6
.../DBIx-Class-InflateColumn-IP-0.20.30.ebuild | 26 ----------------------
1 file changed, 26 deletions(-)
diff --git a/dev-perl/DBIx-Class-InflateColumn-IP/DBIx-Class-InflateColumn-IP-0.20.30.ebuild b/dev-perl/DBIx-Class-InflateColumn-IP/DBIx-Class-InflateColumn-IP-0.20.30.ebuild
deleted file mode 100644
index 86e6177d9c6..00000000000
--- a/dev-perl/DBIx-Class-InflateColumn-IP/DBIx-Class-InflateColumn-IP-0.20.30.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=ILMARI
-MODULE_VERSION=0.02003
-inherit perl-module
-
-DESCRIPTION="Auto-create NetAddr::IP objects from columns"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
- dev-perl/NetAddr-IP
- >=dev-perl/DBIx-Class-0.81.70
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- sed -i -e 's/use inc::Module::Install /use lib q[.];\nuse inc::Module::Install /' Makefile.PL ||
- die "Can't patch Makefile.PL for 5.26 dot-in-inc"
- perl-module_src_prepare
-}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/DBIx-Class-InflateColumn-IP/
@ 2020-08-14 9:02 Kent Fredric
0 siblings, 0 replies; 5+ messages in thread
From: Kent Fredric @ 2020-08-14 9:02 UTC (permalink / raw
To: gentoo-commits
commit: 04911b12cfb7681f7eb86bc1e24792089721b051
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 14 08:52:24 2020 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Fri Aug 14 09:01:35 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04911b12
dev-perl/DBIx-Class-InflateColumn-IP: Cleanup old 0.20.30-r1
Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
.../DBIx-Class-InflateColumn-IP-0.20.30-r1.ebuild | 34 ----------------------
1 file changed, 34 deletions(-)
diff --git a/dev-perl/DBIx-Class-InflateColumn-IP/DBIx-Class-InflateColumn-IP-0.20.30-r1.ebuild b/dev-perl/DBIx-Class-InflateColumn-IP/DBIx-Class-InflateColumn-IP-0.20.30-r1.ebuild
deleted file mode 100644
index a6a213a602f..00000000000
--- a/dev-perl/DBIx-Class-InflateColumn-IP/DBIx-Class-InflateColumn-IP-0.20.30-r1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=ILMARI
-DIST_VERSION=0.02003
-inherit perl-module
-
-DESCRIPTION="Auto-create NetAddr::IP objects from columns"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-perl/NetAddr-IP
- >=dev-perl/DBIx-Class-0.81.70
-"
-DEPEND="${RDEPEND}
- test? ( dev-perl/DBD-SQLite )
-"
-
-src_prepare() {
- sed -i -e 's/use inc::Module::Install /use lib q[.];\nuse inc::Module::Install /' Makefile.PL ||
- die "Can't patch Makefile.PL for 5.26 dot-in-inc"
- perl-module_src_prepare
-}
-
-src_test() {
- perl_rm_files t/pod-coverage.t t/pod.t t/style-notabs.t
- perl-module_src_test
-}
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-08-14 9:02 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-20 8:41 [gentoo-commits] repo/gentoo:master commit in: dev-perl/DBIx-Class-InflateColumn-IP/ Kent Fredric
-- strict thread matches above, loose matches on Subject: below --
2020-08-14 9:02 Kent Fredric
2018-04-15 8:36 Kent Fredric
2017-10-20 7:40 Kent Fredric
2017-06-25 9:58 Kent Fredric
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox