* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-C3-Componentised/
@ 2016-08-06 11:54 Kent Fredric
0 siblings, 0 replies; 4+ messages in thread
From: Kent Fredric @ 2016-08-06 11:54 UTC (permalink / raw
To: gentoo-commits
commit: eecfe5028497d0562bc41eca6a90e7d403f28377
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 6 11:45:42 2016 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Sat Aug 6 11:53:39 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eecfe502
dev-perl/Class-C3-Componentised: Remove POD author tests.
Not useful on gentoo.
Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="alpha amd64 amd64-fbsd arm arm64 hppa ia64 m68k mips nios2 ppc ppc64 riscv s390 sh sparc sparc-fbsd x86 x86-fbsd"
.../Class-C3-Componentised-1.1.0-r1.ebuild | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/dev-perl/Class-C3-Componentised/Class-C3-Componentised-1.1.0-r1.ebuild b/dev-perl/Class-C3-Componentised/Class-C3-Componentised-1.1.0-r1.ebuild
index ba57dc1..475faa8 100644
--- a/dev-perl/Class-C3-Componentised/Class-C3-Componentised-1.1.0-r1.ebuild
+++ b/dev-perl/Class-C3-Componentised/Class-C3-Componentised-1.1.0-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$
@@ -19,9 +19,12 @@ RDEPEND="dev-perl/MRO-Compat
>=dev-perl/Class-C3-0.20"
DEPEND="${RDEPEND}
test? (
- dev-perl/Test-Pod
- dev-perl/Test-Pod-Coverage
dev-perl/Test-Exception
)"
SRC_TEST=do
+
+src_test() {
+ perl_rm_files t/pod.t t/pod-coverage.t
+ perl-module_src_test
+}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-C3-Componentised/
@ 2017-06-24 22:46 Kent Fredric
0 siblings, 0 replies; 4+ messages in thread
From: Kent Fredric @ 2017-06-24 22:46 UTC (permalink / raw
To: gentoo-commits
commit: e630944224cf576070350621bef27b403e2f7bd8
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 24 22:46:19 2017 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Sat Jun 24 22:46:19 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6309442
dev-perl/Class-C3-Componentised: Fix for '.' in @INC re bug #615508
Generic 5.26 Module::Install Fix
Bug: https://bugs.gentoo.org/615508
Package-Manager: Portage-2.3.6, Repoman-2.3.2
.../Class-C3-Componentised/Class-C3-Componentised-1.1.0-r1.ebuild | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/dev-perl/Class-C3-Componentised/Class-C3-Componentised-1.1.0-r1.ebuild b/dev-perl/Class-C3-Componentised/Class-C3-Componentised-1.1.0-r1.ebuild
index 74f80a5e584..f995f441671 100644
--- a/dev-perl/Class-C3-Componentised/Class-C3-Componentised-1.1.0-r1.ebuild
+++ b/dev-perl/Class-C3-Componentised/Class-C3-Componentised-1.1.0-r1.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
EAPI=5
@@ -23,6 +23,12 @@ DEPEND="${RDEPEND}
SRC_TEST=do
+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.t t/pod-coverage.t
perl-module_src_test
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-C3-Componentised/
@ 2020-06-18 11:17 Kent Fredric
0 siblings, 0 replies; 4+ messages in thread
From: Kent Fredric @ 2020-06-18 11:17 UTC (permalink / raw
To: gentoo-commits
commit: 7c79e92bc441590baa4fdbac22ff07c58c8f9685
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 18 11:17:07 2020 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Thu Jun 18 11:17:27 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c79e92b
dev-perl/Class-C3-Componentised: Bump to version 1.1.1
- EAPI7
- Parallel tests
Upstream:
- Properly organize prereqs
- Stop using Class::C3 in tests
- Re-work packaging to not use Module::Install, fixing perl 5.26+
no-dot-inc problems
- Fix minimum dependencies in multiple places
- Add a few extra metadata fields
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
.../Class-C3-Componentised-1.1.2.ebuild | 28 ++++++++++++++++++++++
dev-perl/Class-C3-Componentised/Manifest | 1 +
2 files changed, 29 insertions(+)
diff --git a/dev-perl/Class-C3-Componentised/Class-C3-Componentised-1.1.2.ebuild b/dev-perl/Class-C3-Componentised/Class-C3-Componentised-1.1.2.ebuild
new file mode 100644
index 00000000000..5dab3db5647
--- /dev/null
+++ b/dev-perl/Class-C3-Componentised/Class-C3-Componentised-1.1.2.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=HAARG
+DIST_VERSION=1.001002
+inherit perl-module
+
+DESCRIPTION="Load mix-ins or components to your C3-based class"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~ppc-aix ~x86-solaris"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ >=dev-perl/MRO-Compat-0.90.0
+ >=dev-perl/Class-Inspector-1.320.0
+ >=dev-perl/Class-C3-0.200.0
+"
+BDEPEND="${RDEPEND}
+ virtual/perl-ExtUtils-MakeMaker
+ test? (
+ >=dev-perl/Test-Exception-0.310.0
+ >=virtual/perl-Test-Simple-0.960.0
+ )
+"
diff --git a/dev-perl/Class-C3-Componentised/Manifest b/dev-perl/Class-C3-Componentised/Manifest
index 22e6606cc2e..f2a1d2fa0f0 100644
--- a/dev-perl/Class-C3-Componentised/Manifest
+++ b/dev-perl/Class-C3-Componentised/Manifest
@@ -1 +1,2 @@
DIST Class-C3-Componentised-1.001000.tar.gz 24335 BLAKE2B e9208a66e60fa57b8e1668c4d5faa4c761b5b56b674c97269d0a7542bc00ffb50ace8bd0ccb279252d92a12acd6415384e3f544fd178c48fef5b9af38fe244ac SHA512 860b7cd09b1add6f252fddc0934e9f542231be90a57cf36afcab55684aca2fdb667777248c3583ad955ce0b76db44297515f56194ed2ec444dd8c801a01b5713
+DIST Class-C3-Componentised-1.001002.tar.gz 9742 BLAKE2B 8a3afce9a62ad54daaa81e6f312c80537ba4c54b30b39275506efeac4ed86f18deda11ecb4da97b6693fa34e7c57ee8dd27916316a7657cefc8f20cb73be4277 SHA512 11f7d752fec271e0e1274fcfe56dadece07e79b0986bbad86fff569e74900d9fb2e68a3aeb1e465073f01e3e4dda3f4644117084880321f8213ef05ec7e2bdc0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-C3-Componentised/
@ 2020-07-23 23:32 Kent Fredric
0 siblings, 0 replies; 4+ messages in thread
From: Kent Fredric @ 2020-07-23 23:32 UTC (permalink / raw
To: gentoo-commits
commit: eb56ff59127b22b18905f273db9e410f6358d513
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 23 23:20:43 2020 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Thu Jul 23 23:29:40 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb56ff59
dev-perl/Class-C3-Componentised: Cleanup old 1.1.0-r1
Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
.../Class-C3-Componentised-1.1.0-r1.ebuild | 36 ----------------------
dev-perl/Class-C3-Componentised/Manifest | 1 -
2 files changed, 37 deletions(-)
diff --git a/dev-perl/Class-C3-Componentised/Class-C3-Componentised-1.1.0-r1.ebuild b/dev-perl/Class-C3-Componentised/Class-C3-Componentised-1.1.0-r1.ebuild
deleted file mode 100644
index c843690ce51..00000000000
--- a/dev-perl/Class-C3-Componentised/Class-C3-Componentised-1.1.0-r1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=FREW
-MODULE_VERSION=1.001000
-inherit perl-module
-
-DESCRIPTION="Load mix-ins or components to your C3-based class"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~ppc-aix ~x86-solaris"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-perl/MRO-Compat
- dev-perl/Class-Inspector
- >=dev-perl/Class-C3-0.20"
-DEPEND="${RDEPEND}
- test? (
- dev-perl/Test-Exception
- )"
-
-SRC_TEST=do
-
-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.t t/pod-coverage.t
- perl-module_src_test
-}
diff --git a/dev-perl/Class-C3-Componentised/Manifest b/dev-perl/Class-C3-Componentised/Manifest
index f2a1d2fa0f0..22aa0b42e66 100644
--- a/dev-perl/Class-C3-Componentised/Manifest
+++ b/dev-perl/Class-C3-Componentised/Manifest
@@ -1,2 +1 @@
-DIST Class-C3-Componentised-1.001000.tar.gz 24335 BLAKE2B e9208a66e60fa57b8e1668c4d5faa4c761b5b56b674c97269d0a7542bc00ffb50ace8bd0ccb279252d92a12acd6415384e3f544fd178c48fef5b9af38fe244ac SHA512 860b7cd09b1add6f252fddc0934e9f542231be90a57cf36afcab55684aca2fdb667777248c3583ad955ce0b76db44297515f56194ed2ec444dd8c801a01b5713
DIST Class-C3-Componentised-1.001002.tar.gz 9742 BLAKE2B 8a3afce9a62ad54daaa81e6f312c80537ba4c54b30b39275506efeac4ed86f18deda11ecb4da97b6693fa34e7c57ee8dd27916316a7657cefc8f20cb73be4277 SHA512 11f7d752fec271e0e1274fcfe56dadece07e79b0986bbad86fff569e74900d9fb2e68a3aeb1e465073f01e3e4dda3f4644117084880321f8213ef05ec7e2bdc0
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-07-23 23:32 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-24 22:46 [gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-C3-Componentised/ Kent Fredric
-- strict thread matches above, loose matches on Subject: below --
2020-07-23 23:32 Kent Fredric
2020-06-18 11:17 Kent Fredric
2016-08-06 11:54 Kent Fredric
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox