b400e5e375
Upstream changes: - v0.3.0 Wed May 9 09:11:35 CDT 2018 Bump version number to try and find out why this fails for lack of a module that isn't required. Failure notices call out File::Copy::Recursive, which is not used in the Makefile.PL, module, or test code. File::Copy::Recursive is not installed here and the tests all pass... but the tests fail for lack of it on the smoke systems. Only thing I can figure is that they are testing a stale copy of the module. Hopefully bumping the version will solve the issue. Add test to use File::Find to walk down the tree grep-ing "File::Copy::Recursive" and dumping the result along with the module version to try and see what is going on.
22 lines
749 B
Makefile
22 lines
749 B
Makefile
# $NetBSD: Makefile,v 1.12 2018/05/20 11:12:36 wen Exp $
|
|
|
|
DISTNAME= Module-FromPerlVer-0.030000
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Module/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/dist/Module-FromPerlVer/
|
|
COMMENT= Install modules compatible with the running perl
|
|
LICENSE= ${PERL5_LICENSE}
|
|
|
|
DEPENDS+= p5-File-Copy-Recursive-[0-9]*:../../sysutils/p5-File-Copy-Recursive
|
|
DEPENDS+= p5-List-MoreUtils-[0-9]*:../../devel/p5-List-MoreUtils
|
|
# TEST_DEPENDS
|
|
BUILD_DEPENDS+= p5-Test-Deep-[0-9]*:../../devel/p5-Test-Deep
|
|
|
|
PERL5_PACKLIST= auto/Module/FromPerlVer/.packlist
|
|
USE_TOOLS+= perl
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|