4bc84fc04d
Changes from previous: [Changes for 1.04 - 2011-07-21] * Brown paper bag bug: fix option -x (execute) (broken by changes for -c) * While we're at it: honor option -I with -c [Changes for 1.03 - 2011-07-18] * RT #69213: ScanDeps incompatible with AnyEvent (Perl 5.14, AnyEvent 5.34, PAR 1.00.2) For option -c (compile) M:SD used to wrap the file in one big sub and appended an END block where it dumps %INC etc; the outer sub causes problems with certain contructs. Instead we now use an INIT block prepended to the file. * RT #69471: Problem with "eval { require SomeModule }" constructions Module::ScanDeps::DataFeed now omits %INC pairs with an undefined value (these may be created by an unsuccessful "require" under certain conditions). Also omit CODE refs from @INC. * Fix for failing CPAN Testers report http://www.cpantesters.org/cpan/report/4208fa16-a5d1-11e0-a0bc-c71a7862a918: Perl 5.15.0 got rid of Shell.pm * Fix for failing CPAN Testers report http://www.cpantesters.org/cpan/report/772147dc-6c1f-1014-baf2-318eb63ba09a: - regex meta characters in filenames break consistency check * Simplify Module::ScanDeps::DataFeed somewhat by localizing %INC around "require Module::ScanDeps::DataFeed" and by using Data::Dumper for the actual dump. * Don't create the tempfiles for DataFeed in the working directory. * Purge all pod from Module::ScanDeps::DataFeed, advise the CPAN indexer not to bother with it; same for Module::ScanDeps::Cache. [Changes for 1.02 - 2011-04-03] * %Preload: add _all_ *.pl file below .../unicore for utf8.pm [Changes for 1.01 - 2011-03-26] * %Preload: add "unicore/version" for Unicode/UCD.pm (because it contains a call openunicode(..., "version")) [Changes for 1.00 - 2011-02-19] * RT #65855: Special handling for POSIX requested (Roderich Schupp) * RT #65252: Temp files left when execute fails (Roderich Schupp) * add a %Preload rule for Log::Report::Dispatcher (Roderich Schupp) cf. http://www.nntp.perl.org/group/perl.par/2011/01/msg4871.html * add %Preload rule for Date::Manip (Roderich Schupp) * speed up scanning *significantly* by not re-constructing regexen for every line of input and reducing the no. of sub calls (Steffen Mueller) * add Eric Roode to AUTHORS (Steffen Mueller) * RT #61027: "use lib" does not work (Roderich Schupp) scan_line(): When handling "use lib '/some/dir'" we add "/some/dir/ARCHNAME", "/some/dir/VER" and "/some/dir/VER/ARCHNAME", but forgot to add "/some/dir" itself. While we're at it, improve parsing the argument list of "use lib". Simply eval the string, this should at least make all forms of quoted strings work correctly. * fix URI special case (clkao) * fix a regression reported by CPAN Testers (Roderich Schupp) * finally: bump version to 1.00
25 lines
676 B
Makefile
25 lines
676 B
Makefile
# $NetBSD: Makefile,v 1.26 2011/10/29 20:26:37 hiramatsu Exp $
|
|
#
|
|
|
|
DISTNAME= Module-ScanDeps-1.04
|
|
PKGNAME= p5-${DISTNAME}
|
|
SVR4_PKGNAME= p5msd
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Module/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/dist/Module-ScanDeps/
|
|
COMMENT= Perl 5 module to recursively scan Perl code for dependencies
|
|
LICENSE= ${PERL5_LICENSE}
|
|
|
|
USE_LANGUAGES= # empty
|
|
PERL5_PACKLIST= auto/Module/ScanDeps/.packlist
|
|
#PERL5_MODULE_TYPE= Module::Install
|
|
MAKE_PARAMS+= --skipdeps
|
|
|
|
REPLACE_PERL+= script/scandeps.pl
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|