* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-Accessor-Lite/
@ 2016-07-23 3:20 Kent Fredric
0 siblings, 0 replies; 11+ messages in thread
From: Kent Fredric @ 2016-07-23 3:20 UTC (permalink / raw
To: gentoo-commits
commit: a3e5d6a9065a31cd2e226984a96cd41693931bec
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 23 03:19:20 2016 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Sat Jul 23 03:19:20 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3e5d6a9
dev-perl/Class-Accessor-Lite: Bump to version 0.80.0
- EAPI6
Upstream:
- Lazily load Carp
- use GNU Tar
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-Accessor-Lite-0.80.0.ebuild | 18 ++++++++++++++++++
dev-perl/Class-Accessor-Lite/Manifest | 1 +
2 files changed, 19 insertions(+)
diff --git a/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0.ebuild b/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0.ebuild
new file mode 100644
index 0000000..a13d76d
--- /dev/null
+++ b/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=KAZUHO
+DIST_VERSION=0.08
+inherit perl-module
+
+DESCRIPTION="A minimalistic variant of Class::Accessor"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=""
+DEPEND=">=virtual/perl-ExtUtils-MakeMaker-6.360.0"
diff --git a/dev-perl/Class-Accessor-Lite/Manifest b/dev-perl/Class-Accessor-Lite/Manifest
index 36d4ebd..9498606 100644
--- a/dev-perl/Class-Accessor-Lite/Manifest
+++ b/dev-perl/Class-Accessor-Lite/Manifest
@@ -1 +1,2 @@
DIST Class-Accessor-Lite-0.05.tar.gz 27991 SHA256 d8e84d05adcd7d62af1f70f499b8d1875bc13b0e44a47ae85f472ad23240767a SHA512 cee27783cc8c367a066cf941d034216fd4d70482825734d15bf4db818f83e0d96a9a4c5d171f1ceccb63ce7175e4df8cf42da58f413915c6190dde301ce738b2 WHIRLPOOL 7004205f09e61c0d698db57e490d151b02dd99f51b0be96d37995142b7943cbdaac105961f3d23aaf68c4d1d4598b40c2f0d70c5397a86fb6c57cfacae3b597d
+DIST Class-Accessor-Lite-0.08.tar.gz 30014 SHA256 75b3b8ec8efe687677b63f0a10eef966e01f60735c56656ce75cbb44caba335a SHA512 e23afed2c0c7eb887d23c80dca1b8b0cc42d38c86f8fcceb87d384b10403e0d74d3ae3b41a9654f4fcb58462ec138f0266a0b7e94d389ecb91d271600c6e293b WHIRLPOOL 44d5ed635ecbd20cddcb4aff78622d992e727beac4266bceb8613464d2da1fadae830ee16b382307874b5ebca811f94f7281775f383b6d60adc1de4185392641
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-Accessor-Lite/
@ 2017-06-11 3:16 Kent Fredric
0 siblings, 0 replies; 11+ messages in thread
From: Kent Fredric @ 2017-06-11 3:16 UTC (permalink / raw
To: gentoo-commits
commit: 2b4d23136129185d43ea5fe935b87e1b0316f187
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 11 03:15:41 2017 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Sun Jun 11 03:15:41 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b4d2313
dev-perl/Class-Accessor-Lite: Fix for '.' in @INC re bug #613708
Trivial fix to restore legacy Module::Install to working order
Bug: https://bugs.gentoo.org/613708
Package-Manager: Portage-2.3.6, Repoman-2.3.2
dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.50.0-r1.ebuild | 8 +++++++-
dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0.ebuild | 6 ++++++
2 files changed, 13 insertions(+), 1 deletion(-)
diff --git a/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.50.0-r1.ebuild b/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.50.0-r1.ebuild
index a3a7cf75b90..049dda9b7cb 100644
--- a/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.50.0-r1.ebuild
+++ b/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.50.0-r1.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
@@ -14,3 +14,9 @@ KEYWORDS="~amd64 ~x86"
IUSE=""
SRC_TEST=do
+
+src_prepare() {
+ sed -i -e 's/use inc::Module::Install;/use lib q[.]; use inc::Module::Install;/' Makefile.PL ||
+ die "Can't patch Makefile.PL for 5.26 dot-in-inc"
+ perl-module_src_prepare
+}
diff --git a/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0.ebuild b/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0.ebuild
index 644fc904c1b..9a9203291eb 100644
--- a/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0.ebuild
+++ b/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0.ebuild
@@ -15,3 +15,9 @@ IUSE=""
RDEPEND=""
DEPEND=">=virtual/perl-ExtUtils-MakeMaker-6.360.0"
+
+src_prepare() {
+ sed -i -e 's/use inc::Module::Install;/use lib q[.]; use 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] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-Accessor-Lite/
@ 2018-06-10 17:43 Thomas Deutschmann
0 siblings, 0 replies; 11+ messages in thread
From: Thomas Deutschmann @ 2018-06-10 17:43 UTC (permalink / raw
To: gentoo-commits
commit: fcb1de3014caf7160e7c64bf89359fcbe5c34c74
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 10 17:40:01 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun Jun 10 17:43:04 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcb1de30
dev-perl/Class-Accessor-Lite: x86 stable (bug #657690)
Package-Manager: Portage-2.3.40, Repoman-2.3.9
dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0.ebuild b/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0.ebuild
index 9a9203291eb..527d1b2c0eb 100644
--- a/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0.ebuild
+++ b/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.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
@@ -10,7 +10,7 @@ inherit perl-module
DESCRIPTION="A minimalistic variant of Class::Accessor"
SLOT="0"
-KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc x86"
IUSE=""
RDEPEND=""
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-Accessor-Lite/
@ 2018-06-11 17:09 Sergei Trofimovich
0 siblings, 0 replies; 11+ messages in thread
From: Sergei Trofimovich @ 2018-06-11 17:09 UTC (permalink / raw
To: gentoo-commits
commit: 3eb2946a67edfd5c5c834a68f9655c7cb16d45b6
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Mon Jun 11 16:57:14 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Jun 11 17:08:50 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3eb2946a
dev-perl/Class-Accessor-Lite: stable 0.80.0 for sparc
Bug: https://bugs.gentoo.org/657690
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"
dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0.ebuild b/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0.ebuild
index a82c80b657b..589c77b02ee 100644
--- a/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0.ebuild
+++ b/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
DESCRIPTION="A minimalistic variant of Class::Accessor"
SLOT="0"
-KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 sparc x86"
IUSE=""
RDEPEND=""
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-Accessor-Lite/
@ 2020-08-21 19:00 Sergei Trofimovich
0 siblings, 0 replies; 11+ messages in thread
From: Sergei Trofimovich @ 2020-08-21 19:00 UTC (permalink / raw
To: gentoo-commits
commit: 075407307abdd3cb5a90752455467bc1e410da16
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Fri Aug 21 18:21:37 2020 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Fri Aug 21 19:00:20 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07540730
dev-perl/Class-Accessor-Lite: stable 0.80.0-r1 for sparc, bug #738212
Package-Manager: Portage-2.3.103, Repoman-2.3.23
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild b/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild
index 88d790529c8..4b33f27e90c 100644
--- a/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild
+++ b/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="A minimalistic variant of Class::Accessor"
# License note: perl X.y or later perl X
# https://bugs.gentoo.org/718946#c5
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 sparc ~x86"
BDEPEND=">=virtual/perl-ExtUtils-MakeMaker-6.360.0"
PATCHES=(
"${FILESDIR}/${PN}-0.08-no-dot-inc.patch"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-Accessor-Lite/
@ 2020-08-24 0:08 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2020-08-24 0:08 UTC (permalink / raw
To: gentoo-commits
commit: f60daf1b2b39494f733e4bdee33d1c57ba0a5cf1
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 23 23:33:25 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 24 00:06:52 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f60daf1b
dev-perl/Class-Accessor-Lite: Stabilize 0.80.0-r1 x86, #738212
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild b/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild
index 4b33f27e90c..d6898c5ee3b 100644
--- a/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild
+++ b/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="A minimalistic variant of Class::Accessor"
# License note: perl X.y or later perl X
# https://bugs.gentoo.org/718946#c5
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 sparc x86"
BDEPEND=">=virtual/perl-ExtUtils-MakeMaker-6.360.0"
PATCHES=(
"${FILESDIR}/${PN}-0.08-no-dot-inc.patch"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-Accessor-Lite/
@ 2020-08-24 19:06 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2020-08-24 19:06 UTC (permalink / raw
To: gentoo-commits
commit: 456aa9b97636b96e400c2b5e7398df3fc7bee1f9
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 24 18:41:12 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 24 19:06:24 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=456aa9b9
dev-perl/Class-Accessor-Lite: Stabilize 0.80.0-r1 amd64, #738212
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild b/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild
index d6898c5ee3b..e471d3141ec 100644
--- a/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild
+++ b/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="A minimalistic variant of Class::Accessor"
# License note: perl X.y or later perl X
# https://bugs.gentoo.org/718946#c5
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 sparc x86"
+KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 sparc x86"
BDEPEND=">=virtual/perl-ExtUtils-MakeMaker-6.360.0"
PATCHES=(
"${FILESDIR}/${PN}-0.08-no-dot-inc.patch"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-Accessor-Lite/
@ 2020-08-25 10:14 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2020-08-25 10:14 UTC (permalink / raw
To: gentoo-commits
commit: 12679ee73251f1157c1e63b608b20d412e1235f5
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 25 09:58:49 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Aug 25 09:58:49 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12679ee7
dev-perl/Class-Accessor-Lite: Stabilize 0.80.0-r1 ppc64, #738212
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild b/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild
index e471d3141ec..6a10393a993 100644
--- a/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild
+++ b/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="A minimalistic variant of Class::Accessor"
# License note: perl X.y or later perl X
# https://bugs.gentoo.org/718946#c5
SLOT="0"
-KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 sparc x86"
+KEYWORDS="~alpha amd64 ~ia64 ~ppc ppc64 sparc x86"
BDEPEND=">=virtual/perl-ExtUtils-MakeMaker-6.360.0"
PATCHES=(
"${FILESDIR}/${PN}-0.08-no-dot-inc.patch"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-Accessor-Lite/
@ 2020-08-31 14:11 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2020-08-31 14:11 UTC (permalink / raw
To: gentoo-commits
commit: 982172596db34e167818ebe37f5387c4b4c44e78
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 31 13:50:05 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 31 14:11:19 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98217259
dev-perl/Class-Accessor-Lite: Stabilize 0.80.0-r1 ppc, #738212
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild b/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild
index 6a10393a993..6c52d287505 100644
--- a/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild
+++ b/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="A minimalistic variant of Class::Accessor"
# License note: perl X.y or later perl X
# https://bugs.gentoo.org/718946#c5
SLOT="0"
-KEYWORDS="~alpha amd64 ~ia64 ~ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 sparc x86"
BDEPEND=">=virtual/perl-ExtUtils-MakeMaker-6.360.0"
PATCHES=(
"${FILESDIR}/${PN}-0.08-no-dot-inc.patch"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-Accessor-Lite/
@ 2020-10-04 4:59 Kent Fredric
0 siblings, 0 replies; 11+ messages in thread
From: Kent Fredric @ 2020-10-04 4:59 UTC (permalink / raw
To: gentoo-commits
commit: a9f88a0ea6afac1bd5b36f7860082b7f551348e7
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 4 04:51:22 2020 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Sun Oct 4 04:51:22 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9f88a0e
dev-perl/Class-Accessor-Lite: Cleanup old 0.80.0
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
.../Class-Accessor-Lite-0.80.0.ebuild | 23 ----------------------
1 file changed, 23 deletions(-)
diff --git a/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0.ebuild b/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0.ebuild
deleted file mode 100644
index 2e99b0ce5e3..00000000000
--- a/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=KAZUHO
-DIST_VERSION=0.08
-inherit perl-module
-
-DESCRIPTION="A minimalistic variant of Class::Accessor"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 sparc x86"
-IUSE=""
-
-RDEPEND=""
-DEPEND=">=virtual/perl-ExtUtils-MakeMaker-6.360.0"
-
-src_prepare() {
- sed -i -e 's/use inc::Module::Install;/use lib q[.]; use 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] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-Accessor-Lite/
@ 2021-10-10 17:44 Andreas K. Hüttel
0 siblings, 0 replies; 11+ messages in thread
From: Andreas K. Hüttel @ 2021-10-10 17:44 UTC (permalink / raw
To: gentoo-commits
commit: 28eba21d634cadb5ba680c55c95d60f13f26d606
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 10 17:28:49 2021 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sun Oct 10 17:44:03 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28eba21d
dev-perl/Class-Accessor-Lite: EAPI=8 bump
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
....80.0-r1.ebuild => Class-Accessor-Lite-0.80.0-r2.ebuild} | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild b/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r2.ebuild
similarity index 63%
rename from dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild
rename to dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r2.ebuild
index 6c52d287505..ad872c3c907 100644
--- a/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r1.ebuild
+++ b/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0-r2.ebuild
@@ -1,18 +1,21 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=8
DIST_AUTHOR=KAZUHO
DIST_VERSION=0.08
inherit perl-module
DESCRIPTION="A minimalistic variant of Class::Accessor"
-# License note: perl X.y or later perl X
-# https://bugs.gentoo.org/718946#c5
+
SLOT="0"
KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 sparc x86"
-BDEPEND=">=virtual/perl-ExtUtils-MakeMaker-6.360.0"
+
+BDEPEND="
+ >=virtual/perl-ExtUtils-MakeMaker-6.360.0
+"
+
PATCHES=(
"${FILESDIR}/${PN}-0.08-no-dot-inc.patch"
)
^ permalink raw reply related [flat|nested] 11+ messages in thread
end of thread, other threads:[~2021-10-10 17:44 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-08-24 19:06 [gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-Accessor-Lite/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2021-10-10 17:44 Andreas K. Hüttel
2020-10-04 4:59 Kent Fredric
2020-08-31 14:11 Sam James
2020-08-25 10:14 Sam James
2020-08-24 0:08 Sam James
2020-08-21 19:00 Sergei Trofimovich
2018-06-11 17:09 Sergei Trofimovich
2018-06-10 17:43 Thomas Deutschmann
2017-06-11 3:16 Kent Fredric
2016-07-23 3:20 Kent Fredric
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox