public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-Adapter/
@ 2017-06-24 22:40 Kent Fredric
  0 siblings, 0 replies; 3+ messages in thread
From: Kent Fredric @ 2017-06-24 22:40 UTC (permalink / raw
  To: gentoo-commits

commit:     79d096ebfc2db2e0f5215ba25736cce5b8106ec8
Author:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 24 22:39:37 2017 +0000
Commit:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Sat Jun 24 22:39:37 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79d096eb

dev-perl/Class-Adapter: Fix for '.' in @INC re bug #615506

Generic Module::Install::DSL fix for 5.26

Bug: https://bugs.gentoo.org/615506
Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-perl/Class-Adapter/Class-Adapter-1.80.0-r1.ebuild | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/dev-perl/Class-Adapter/Class-Adapter-1.80.0-r1.ebuild b/dev-perl/Class-Adapter/Class-Adapter-1.80.0-r1.ebuild
index 067c1d1f94c..c7fa7698bf0 100644
--- a/dev-perl/Class-Adapter/Class-Adapter-1.80.0-r1.ebuild
+++ b/dev-perl/Class-Adapter/Class-Adapter-1.80.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -19,3 +19,9 @@ DEPEND="${RDEPEND}
 	test? ( virtual/perl-Test-Simple )"
 
 SRC_TEST=do
+
+src_prepare() {
+	sed -i -e 's/use inc::Module::Install::DSL /use lib q[.];\nuse inc::Module::Install::DSL /' Makefile.PL ||
+		die "Can't patch Makefile.PL for 5.26 dot-in-inc"
+	perl-module_src_prepare
+}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-Adapter/
@ 2020-05-23 11:55 Kent Fredric
  0 siblings, 0 replies; 3+ messages in thread
From: Kent Fredric @ 2020-05-23 11:55 UTC (permalink / raw
  To: gentoo-commits

commit:     4d9889014a99429756671caf0aa3544689c4be7f
Author:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Sat May 23 11:53:51 2020 +0000
Commit:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Sat May 23 11:54:54 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d988901

dev-perl/Class-Adapter: Bump to version 1.90.0

- EAPI7
- Parallel tests

Upstream:
- Fix '.' in @INC, by migrating code to EUMM w/ Dist::Zilla

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>

 dev-perl/Class-Adapter/Class-Adapter-1.90.0.ebuild | 27 ++++++++++++++++++++++
 dev-perl/Class-Adapter/Manifest                    |  1 +
 2 files changed, 28 insertions(+)

diff --git a/dev-perl/Class-Adapter/Class-Adapter-1.90.0.ebuild b/dev-perl/Class-Adapter/Class-Adapter-1.90.0.ebuild
new file mode 100644
index 00000000000..64e42b1d6de
--- /dev/null
+++ b/dev-perl/Class-Adapter/Class-Adapter-1.90.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=ETHER
+DIST_VERSION=1.09
+inherit perl-module
+
+DESCRIPTION="Implementation of the 'Adapter' Design Pattern"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	virtual/perl-Carp
+	>=virtual/perl-Scalar-List-Utils-1.100.0
+"
+BDEPEND="${RDEPEND}
+	virtual/perl-ExtUtils-MakeMaker
+	test? (
+		virtual/perl-File-Spec
+		virtual/perl-Test-Simple
+	)
+"

diff --git a/dev-perl/Class-Adapter/Manifest b/dev-perl/Class-Adapter/Manifest
index 962600a0282..60ae7d255cd 100644
--- a/dev-perl/Class-Adapter/Manifest
+++ b/dev-perl/Class-Adapter/Manifest
@@ -1 +1,2 @@
 DIST Class-Adapter-1.08.tar.gz 35843 BLAKE2B fcd7d556ea249b10a1aeb94de7c291c7d07c3144f93b726bf19c7d0f33549074bf2ea8794370ddae23889f467cae7a67362e5e58bde32a7423c2fcb3fb222bb5 SHA512 84053834561d058a38744e556d3573dfc91b5972a6329f3e7660cb422e4b680c76502c3ee3a2c80b6a135d67713502428a541a9e7b2c22991df8d7aab3de0408
+DIST Class-Adapter-1.09.tar.gz 33256 BLAKE2B 894e33a673747aee6e37e48868e72faf6dd5adf0ce223ed179ebf0b7b59108fd9dffb7798fb76bb8918d40ee650c6704302663ce7e87e9dded68dae6f268d5be SHA512 e6b7bde685683fa733e3002cf815aca6e298b2200a3fedbef93345284507023cdeed0cda4232c53d4dfd89239271a871db44616606d88ff5d03ac7c3e33a992a


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-Adapter/
@ 2020-07-17 11:17 Kent Fredric
  0 siblings, 0 replies; 3+ messages in thread
From: Kent Fredric @ 2020-07-17 11:17 UTC (permalink / raw
  To: gentoo-commits

commit:     168d961436815baa86e183fb06704d42614cf157
Author:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 17 11:07:34 2020 +0000
Commit:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Fri Jul 17 11:16:50 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=168d9614

dev-perl/Class-Adapter: Cleanup old 1.80.0-r1

Eclipsed by newer unstable for >1 month

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

 .../Class-Adapter/Class-Adapter-1.80.0-r1.ebuild   | 28 ----------------------
 dev-perl/Class-Adapter/Manifest                    |  1 -
 2 files changed, 29 deletions(-)

diff --git a/dev-perl/Class-Adapter/Class-Adapter-1.80.0-r1.ebuild b/dev-perl/Class-Adapter/Class-Adapter-1.80.0-r1.ebuild
deleted file mode 100644
index 417d7d03dfe..00000000000
--- a/dev-perl/Class-Adapter/Class-Adapter-1.80.0-r1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=ADAMK
-MODULE_VERSION=1.08
-inherit perl-module
-
-DESCRIPTION='Implementation of the "Adapter" Design Pattern'
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	>=virtual/perl-Scalar-List-Utils-1.10"
-DEPEND="${RDEPEND}
-	test? ( virtual/perl-Test-Simple )"
-
-SRC_TEST=do
-
-src_prepare() {
-	sed -i -e 's/use inc::Module::Install::DSL /use lib q[.];\nuse inc::Module::Install::DSL /' Makefile.PL ||
-		die "Can't patch Makefile.PL for 5.26 dot-in-inc"
-	perl-module_src_prepare
-}

diff --git a/dev-perl/Class-Adapter/Manifest b/dev-perl/Class-Adapter/Manifest
index 60ae7d255cd..e14d58d5264 100644
--- a/dev-perl/Class-Adapter/Manifest
+++ b/dev-perl/Class-Adapter/Manifest
@@ -1,2 +1 @@
-DIST Class-Adapter-1.08.tar.gz 35843 BLAKE2B fcd7d556ea249b10a1aeb94de7c291c7d07c3144f93b726bf19c7d0f33549074bf2ea8794370ddae23889f467cae7a67362e5e58bde32a7423c2fcb3fb222bb5 SHA512 84053834561d058a38744e556d3573dfc91b5972a6329f3e7660cb422e4b680c76502c3ee3a2c80b6a135d67713502428a541a9e7b2c22991df8d7aab3de0408
 DIST Class-Adapter-1.09.tar.gz 33256 BLAKE2B 894e33a673747aee6e37e48868e72faf6dd5adf0ce223ed179ebf0b7b59108fd9dffb7798fb76bb8918d40ee650c6704302663ce7e87e9dded68dae6f268d5be SHA512 e6b7bde685683fa733e3002cf815aca6e298b2200a3fedbef93345284507023cdeed0cda4232c53d4dfd89239271a871db44616606d88ff5d03ac7c3e33a992a


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-07-17 11:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-07-17 11:17 [gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-Adapter/ Kent Fredric
  -- strict thread matches above, loose matches on Subject: below --
2020-05-23 11:55 Kent Fredric
2017-06-24 22:40 Kent Fredric

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox