mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-23 16:49:10 -07:00
dev-perl/Class-Container: Cleanup old 0.120.0-r2
Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Kent Fredric <kentnl@gentoo.org>
This commit is contained in:
@@ -1,20 +0,0 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
DIST_AUTHOR=KWILLIAMS
|
||||
DIST_VERSION=0.12
|
||||
inherit perl-module
|
||||
|
||||
DESCRIPTION="Glue object frameworks together transparently"
|
||||
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha amd64 ~ia64 ppc sparc x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=dev-perl/Params-Validate-0.24-r1
|
||||
>=virtual/perl-Scalar-List-Utils-1.08"
|
||||
DEPEND="${RDEPEND}
|
||||
>=dev-perl/Module-Build-0.28"
|
||||
PATCHES=( "${FILESDIR}/${P}-dot-inc.patch" )
|
||||
@@ -1,2 +1 @@
|
||||
DIST Class-Container-0.12.tar.gz 19401 BLAKE2B 67cdb657fe28eef84c2bad95cf6fdb8cbe5d3d6e5199582cf13ec0f07a26390ef3ea0007472412b9bbd9d9b875ac9c3db234c025e237413769308a4f01663fed SHA512 7342154422de316c10fbc78d894e999dbcd8097f67fe9a5aafcf27a407c08988dde8d42dac89f535140c44a52892435da15c77fb43a1d7c3558d273e00244720
|
||||
DIST Class-Container-0.13.tar.gz 25768 BLAKE2B 8f1cd12f86b6cb513ce99c79244e211db998aaac8605cd9db8010e6422acf458a7e9fa22d60ed4aca7776fe9e63594b2bf02f5bcc93d54d988467a3725b1a3f9 SHA512 c51284e377942930384e22ff8d17489fa279eecc87a68acd88bffd8a134d2f2930b40008df98d12bddc46845175d2ce9f630522379692c2f630f2618928c6acd
|
||||
|
||||
@@ -1,40 +0,0 @@
|
||||
From 430b1922a9eade34d61e7d962e34b68a167528c2 Mon Sep 17 00:00:00 2001
|
||||
From: Kent Fredric <kentnl@gentoo.org>
|
||||
Date: Wed, 18 Oct 2017 09:37:56 +1300
|
||||
Subject: Fix tests failing on Perl 5.26 w/o '.' in @INC
|
||||
|
||||
Bug: https://rt.cpan.org/Ticket/Display.html?id=123312
|
||||
---
|
||||
t/01-basic.t | 2 +-
|
||||
t/02-decorator.t | 2 +-
|
||||
2 files changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/t/01-basic.t b/t/01-basic.t
|
||||
index 931073b..a458303 100644
|
||||
--- a/t/01-basic.t
|
||||
+++ b/t/01-basic.t
|
||||
@@ -12,7 +12,7 @@ use Test;
|
||||
use Class::Container;
|
||||
use Params::Validate qw(:types);
|
||||
use File::Spec;
|
||||
-require File::Spec->catfile('t', 'classes.pl');
|
||||
+require File::Spec->rel2abs(File::Spec->catfile('t', 'classes.pl'));
|
||||
|
||||
my $HAVE_WEAKEN = 0 + exists $INC{'Scalar/Util.pm'};
|
||||
|
||||
diff --git a/t/02-decorator.t b/t/02-decorator.t
|
||||
index ea75057..0e2ca83 100644
|
||||
--- a/t/02-decorator.t
|
||||
+++ b/t/02-decorator.t
|
||||
@@ -6,7 +6,7 @@ BEGIN { plan tests => 24 }
|
||||
use Class::Container;
|
||||
use Params::Validate qw(:types);
|
||||
use File::Spec;
|
||||
-require File::Spec->catfile('t', 'classes.pl');
|
||||
+require File::Spec->rel2abs(File::Spec->catfile('t', 'classes.pl'));
|
||||
|
||||
|
||||
|
||||
--
|
||||
2.14.2
|
||||
|
||||
Reference in New Issue
Block a user