1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
Subject: Fix references to scandeps
Fixed references to scandeps.pl so they refer to scandeps. The name of the
program was changed to follow Debian policy.
Origin: vendor
Forwarded: not-needed
From: Gunnar Wolf <gwolf@debian.org>
Reviewed-by: Nicholas Bamber <nicholas@periapt.co.uk>
gregor herrmann <gregoa@debian.org>
Last-Update: 2021-09-11
--- a/lib/Module/ScanDeps.pm
+++ b/lib/Module/ScanDeps.pm
@@ -39,12 +39,12 @@
=head1 SYNOPSIS
-Via the command-line program L<scandeps.pl>:
+Via the command-line program L<scandeps>:
- % scandeps.pl *.pm # Print PREREQ_PM section for *.pm
- % scandeps.pl -e "use utf8" # Read script from command line
- % scandeps.pl -B *.pm # Include core modules
- % scandeps.pl -V *.pm # Show autoload/shared/data files
+ % scandeps *.pm # Print PREREQ_PM section for *.pm
+ % scandeps -e "use utf8" # Read script from command line
+ % scandeps -B *.pm # Include core modules
+ % scandeps -V *.pm # Show autoload/shared/data files
Used in a program;
@@ -1670,7 +1670,7 @@
=head1 SEE ALSO
-L<scandeps.pl> is a bundled utility that writes C<PREREQ_PM> section
+L<scandeps> is a bundled utility that writes C<PREREQ_PM> section
for a number of files.
An application of B<Module::ScanDeps> is to generate executables from
--- a/script/scandeps.pl
+++ b/script/scandeps.pl
@@ -150,20 +150,20 @@
=head1 NAME
-scandeps.pl - Scan file prerequisites
+scandeps - Scan file prerequisites
=head1 SYNOPSIS
- % scandeps.pl *.pm # Print PREREQ_PM section for *.pm
- % scandeps.pl -e 'STRING' # Scan an one-liner
- % scandeps.pl -B *.pm # Include core modules
- % scandeps.pl -V *.pm # Show autoload/shared/data files
- % scandeps.pl -R *.pm # Don't recurse
- % scandeps.pl -C CACHEFILE # use CACHEFILE to cache dependencies
+ % scandeps *.pm # Print PREREQ_PM section for *.pm
+ % scandeps -e 'STRING' # Scan an one-liner
+ % scandeps -B *.pm # Include core modules
+ % scandeps -V *.pm # Show autoload/shared/data files
+ % scandeps -R *.pm # Don't recurse
+ % scandeps -C CACHEFILE # use CACHEFILE to cache dependencies
=head1 DESCRIPTION
-F<scandeps.pl> is a simple-minded utility that prints out the
+F<scandeps> is a simple-minded utility that prints out the
C<PREREQ_PM> section needed by modules.
If the option C<-T> is specified and
|