diff options
author | Kent Fredric <kentnl@gentoo.org> | 2017-04-18 01:58:02 +1200 |
---|---|---|
committer | Kent Fredric <kentnl@gentoo.org> | 2017-04-18 01:58:46 +1200 |
commit | be4e3a8512f8c1dfe9ac65abf58f71c4660aa13b (patch) | |
tree | 426c5a321b91bc40fcb48e5ee65b8367a306962d /dev-perl/Test-File/Test-File-1.443.0.ebuild | |
parent | net-im/skypeforlinux: version bump to 5.1.0.1 (diff) | |
download | gentoo-be4e3a8512f8c1dfe9ac65abf58f71c4660aa13b.tar.gz gentoo-be4e3a8512f8c1dfe9ac65abf58f71c4660aa13b.tar.bz2 gentoo-be4e3a8512f8c1dfe9ac65abf58f71c4660aa13b.zip |
dev-perl/Test-File: Bump to version 1.443.0
- Nuke bad tests
Upstream:
- Fix more '.' in @INC issues ( invisible without
Test::Manifest installed )
Package-Manager: Portage-2.3.4, Repoman-2.3.2
Diffstat (limited to 'dev-perl/Test-File/Test-File-1.443.0.ebuild')
-rw-r--r-- | dev-perl/Test-File/Test-File-1.443.0.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/dev-perl/Test-File/Test-File-1.443.0.ebuild b/dev-perl/Test-File/Test-File-1.443.0.ebuild new file mode 100644 index 000000000000..99e676a737ad --- /dev/null +++ b/dev-perl/Test-File/Test-File-1.443.0.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=BDFOY +DIST_VERSION=1.443 +inherit perl-module + +DESCRIPTION="Test file attributes" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=" +" +DEPEND="${RDEPEND} + >=virtual/perl-ExtUtils-MakeMaker-6.640.0 + test? ( + >=virtual/perl-Test-Simple-0.950.0 + dev-perl/Test-utf8 + ) +" +src_prepare() { + if use test; then + perl_rm_files t/pod.t t/pod_coverage.t t/test_manifest + sed -i -e '/Test::Manifest/d' Makefile.PL || die "Can't patch Makefile.PL" + fi + perl-module_src_prepare +} |