]> git.vpit.fr Git - perl/modules/CPANPLUS-Dist-Gentoo.git/commitdiff
Switch to <> for qw delimiters
authorVincent Pit <vince@profvince.com>
Thu, 16 Dec 2010 00:03:31 +0000 (01:03 +0100)
committerVincent Pit <vince@profvince.com>
Thu, 16 Dec 2010 00:05:50 +0000 (01:05 +0100)
lib/CPANPLUS/Dist/Gentoo.pm
lib/CPANPLUS/Dist/Gentoo/Atom.pm
lib/CPANPLUS/Dist/Gentoo/Maps.pm
lib/CPANPLUS/Dist/Gentoo/Version.pm
samples/gengentooisms
t/12-maps-version.t
t/13-maps-license.t
t/30-atom-new.t
t/92-pod-coverage.t

index 3c6d883ae76652ab8d84b346133b1f4008279300..474dce6efcdc4ab6f054880ffcdcf31c8f702823 100644 (file)
@@ -4,7 +4,7 @@ use strict;
 use warnings;
 
 use Cwd        ();
-use List::Util qw/reduce/;
+use List::Util qw<reduce>;
 use File::Copy ();
 use File::Path ();
 use File::Spec;
@@ -14,7 +14,7 @@ use Parse::CPAN::Meta ();
 
 use CPANPLUS::Error ();
 
-use base qw/CPANPLUS::Dist::Base/;
+use base qw<CPANPLUS::Dist::Base>;
 
 use CPANPLUS::Dist::Gentoo::Atom;
 use CPANPLUS::Dist::Gentoo::Guard;
@@ -131,7 +131,7 @@ my $format_available;
 sub format_available {
  return $format_available if defined $format_available;
 
- for my $prog (qw/emerge ebuild/) {
+ for my $prog (qw<emerge ebuild>) {
   unless (IPC::Cmd::can_run($prog)) {
    __PACKAGE__->_abort("$prog is required to write ebuilds");
    return $format_available = 0;
@@ -141,7 +141,7 @@ sub format_available {
  if (IPC::Cmd->can_capture_buffer) {
   my $buffers;
   my ($success, $errmsg) = IPC::Cmd::run(
-   command => [ qw/emerge --info/ ],
+   command => [ qw<emerge --info> ],
    verbose => 0,
    buffer  => \$buffers,
   );
@@ -174,14 +174,15 @@ sub init {
  my $stat = $self->status;
  my $conf = $self->parent->parent->configure_object;
 
- $stat->mk_accessors(qw/name version author distribution desc uri src license
-                        meta min_perl
-                        fetched_arch
-                        requires configure_requires recursive_requires
-                        ebuild_name ebuild_version ebuild_dir ebuild_file
-                        portdir_overlay
-                        overlay distdir keywords do_manifest header footer
-                        force verbose/);
+ $stat->mk_accessors(qw<
+  name version author distribution desc uri src license
+  meta min_perl
+  fetched_arch
+  requires configure_requires recursive_requires
+  ebuild_name ebuild_version ebuild_dir ebuild_file
+  portdir_overlay overlay distdir keywords do_manifest header footer
+  force verbose
+ >);
 
  $stat->force($conf->get_conf('force'));
  $stat->verbose($conf->get_conf('verbose'));
@@ -378,7 +379,7 @@ sub meta {
 
  my $extract_dir = $mod->status->extract;
 
- for my $name (qw/META.json META.yml/) {
+ for my $name (qw<META.json META.yml>) {
   my $meta_file = File::Spec->catdir($extract_dir, $name);
   next unless -e $meta_file;
 
@@ -645,7 +646,7 @@ sub _cpan2portage {
 
  my @portdirs = ($main_portdir, @{$self->status->portdir_overlay});
 
- for my $category (qw/virtual perl-core dev-perl perl-gcpan/, CATEGORY) {
+ for my $category (qw<virtual perl-core dev-perl perl-gcpan>, CATEGORY) {
   my $name = ($category eq 'virtual' ? 'perl-' : '') . $name;
 
   for my $portdir (@portdirs) {
index 59f1d6ac959c4430a8207ad493a95d70f87f0408..543ece4f61f0dd3aa35aa4afb5ccd62c2d29678c 100644 (file)
@@ -53,7 +53,7 @@ sub new {
 
  my ($range, $category, $name, $version);
  if (defined $args{name}) {
-  ($range, $category, $name, $version) = @args{qw/range category name version/};
+  ($range, $category, $name, $version) = @args{qw<range category name version>};
   Carp::confess('Category unspecified') unless defined $category;
   Carp::confess('Invalid category')     unless $category =~ /^$category_rx$/o;
   Carp::confess('Invalid name')         unless $name     =~ /^$name_rx$/o;
@@ -119,7 +119,7 @@ sub new_from_ebuild {
 }
 
 BEGIN {
- eval "sub $_ { \$_[0]->{$_} }" for qw/category name version range ebuild/;
+ eval "sub $_ { \$_[0]->{$_} }" for qw<category name version range ebuild>;
 }
 
 =head2 C<category>
index 9c91f8525cda2e3776f0d44bfe2cb6876a7386e3..f9c478ca684fb0ad4d4146a1e5233ef61ccf4164 100644 (file)
@@ -173,11 +173,11 @@ my $letters_as_suffix = sub {
 
 my %version_mismatch;
 
-$version_mismatch{$_} = $insert_dot_at_1 for qw/
+$version_mismatch{$_} = $insert_dot_at_1 for qw<
  CGI-Simple
-/;
+>;
 
-$version_mismatch{$_} = $insert_dot_at_all_1 for qw/
+$version_mismatch{$_} = $insert_dot_at_all_1 for qw<
  AnyEvent
  Archive-Rar
  IO-AIO
@@ -187,13 +187,13 @@ $version_mismatch{$_} = $insert_dot_at_all_1 for qw/
  Tie-Array-Sorted
  Tk-TableMatrix
  XML-RSS-Feed
-/;
+>;
 
-$version_mismatch{$_} = $insert_dot_at_2 for qw/
+$version_mismatch{$_} = $insert_dot_at_2 for qw<
  Error
-/;
+>;
 
-$version_mismatch{$_} = $insert_dot_at_all_2 for qw/
+$version_mismatch{$_} = $insert_dot_at_all_2 for qw<
  Authen-Htpasswd
  BSD-Resource
  CDDB
@@ -216,35 +216,35 @@ $version_mismatch{$_} = $insert_dot_at_all_2 for qw/
  Time-HiRes
  Time-Local
  perl-ldap
-/;
+>;
 
-$version_mismatch{$_} = $insert_dot_at_all_3 for qw/
+$version_mismatch{$_} = $insert_dot_at_all_3 for qw<
  Parse-RecDescent
  Return-Value
-/;
+>;
 
-$version_mismatch{$_} = $pad_decimals_to_2 for qw/
+$version_mismatch{$_} = $pad_decimals_to_2 for qw<
  Nmap-Parser
  XML-AutoWriter
-/;
+>;
 
-$version_mismatch{$_} = $pad_decimals_to_4 for qw/
+$version_mismatch{$_} = $pad_decimals_to_4 for qw<
  Convert-BER
-/;
+>;
 
-$version_mismatch{$_} = $correct_suffixes for qw/
+$version_mismatch{$_} = $correct_suffixes for qw<
  Gimp
  XML-Grove
-/;
+>;
 
-$version_mismatch{$_} = $strip_letters for qw/
+$version_mismatch{$_} = $strip_letters for qw<
  DelimMatch
  SGMLSpm
-/;
+>;
 
-$version_mismatch{$_} = $letters_as_suffix for qw/
+$version_mismatch{$_} = $letters_as_suffix for qw<
  Frontier-RPC
-/;
+>;
 
 sub version_c2g {
  my ($n, $v) = @_;
index bce74eadd906bac4f472bf34817035d8a1016682..752fe97f7349c5c4eff71ed48d8e97cfc2772660 100644 (file)
@@ -33,7 +33,7 @@ my $positive_int_rx = qr/0*[1-9][0-9]*/;
 my $letter_rx       = qr/[a-zA-Z]/;
 my $dotted_num_rx   = qr/$int_rx(?:\.$int_rx)*/o;
 
-my @suffixes  = qw(alpha beta pre rc normal p);
+my @suffixes  = qw<alpha beta pre rc normal p>;
 my $suffix_rx = join '|', grep !/^normal$/, @suffixes;
 $suffix_rx    = qr/(?:$suffix_rx)/o;
 
@@ -86,7 +86,7 @@ sub new {
 
 my @parts;
 BEGIN {
- @parts = qw/version letter suffixes revision/;
+ @parts = qw<version letter suffixes revision>;
  eval "sub $_ { \$_[0]->{$_} }" for @parts;
 }
 
index 34d5869fea17a58492a11f0ba268c76641fd3465..fcd656a12aa5b52b18ac80783ae650fea7079a56 100755 (executable)
@@ -5,14 +5,14 @@ use warnings;
 
 use Fatal;
 use File::Spec;
-use File::Copy qw/copy/;
-use List::Util qw/max reduce/;
+use File::Copy qw<copy>;
+use List::Util qw<max reduce>;
 use Storable ();
 use Term::ANSIColor;
 
 use CPAN::DistnameInfo 0.11;
 
-use Capture::Tiny qw/capture/;
+use Capture::Tiny qw<capture>;
 use LWP::UserAgent;
 use Parse::CPAN::Packages::Fast;
 
@@ -74,7 +74,7 @@ my (@not_on_cpan, @unfindable, @missing, %name_mismatch, %version);
 sub parse_portage_tree {
  my $pcp = Parse::CPAN::Packages::Fast->new(PACKAGES);
 
- for my $category (qw/perl-core dev-perl/) {
+ for my $category (qw<perl-core dev-perl>) {
   p(0, "Browsing the $category category.\n");
 
   my $cat_dir = File::Spec->catdir(PORTAGE, $category);
@@ -88,7 +88,7 @@ sub parse_portage_tree {
                map [ $_, CPANPLUS::Dist::Gentoo::Atom->new_from_ebuild($_) ],
                 glob File::Spec->catfile($pkg_dir, "$pkg_name-*");
    my ($ebuild, $atom) = @$last;
-   p(1, "%s/%s-%s\n", map $atom->$_, qw/category name version/);
+   p(1, "%s/%s-%s\n", map $atom->$_, qw<category name version>);
 
    if (exists $is_on_cpan{$pkg_name} and not $is_on_cpan{$pkg_name}) {
     p(2, colored("$pkg_name is not a CPAN distribution (forced)", 'bright_red')
index da28c3286c320440993341d378437e98ebe32878..823e98c85988b730c23442273564adb56dd54bd1 100644 (file)
@@ -25,13 +25,13 @@ is vc2g('1_.1_2'),  '1_p12',  "version_c2g('1_.1_2')";
 is vc2g('1_.1_.2'), '1_p12',  "version_c2g('1_.1_.2')";
 
 for my $test ([ '0.12' => '0.12' ], [ '0.1234' => '0.12.34' ]) {
- my @dists = qw/
+ my @dists = qw<
   ExtUtils-CBuilder
   ExtUtils-ParseXS
   Module-Build
   Time-HiRes
   Time-Local
/;
>;
  for my $dist (@dists) {
   is vc2g($dist, $test->[0]), $test->[1], "'version_c2g('$dist', '$test->[0]')";
  }
index e3119dc01bef04f14c48af9f05bc96de2b0519c4..a63afa7a9d06e7c954a64e2418d039ad128510fb 100644 (file)
@@ -15,6 +15,6 @@ sub check_licenses {
 check_licenses [ ],               [ ],                        'empty';
 check_licenses [ undef ],         [ ],                        'undef';
 check_licenses [ 'woo' ],         [ ],                        'nonexistent';
-check_licenses [ 'perl' ],        [ qw/Artistic GPL-2/ ],     'perl';
-check_licenses [ qw/perl gpl2/ ], [ qw/Artistic GPL-2/ ],     'perl + gpl2';
-check_licenses [ qw/perl bsd/ ],  [ qw/Artistic GPL-2 BSD/ ], 'perl + bsd';
+check_licenses [ 'perl' ],        [ qw<Artistic GPL-2> ],     'perl';
+check_licenses [ qw<perl gpl2> ], [ qw<Artistic GPL-2> ],     'perl + gpl2';
+check_licenses [ qw<perl bsd> ],  [ qw<Artistic GPL-2 BSD> ], 'perl + bsd';
index c51175e60abe6b5440b5a43adf7d46c40bddaaaf..0a14f6f6f56c5294e808e77e60851b18e8779927 100644 (file)
@@ -56,7 +56,7 @@ my @tests = (
  [ { ebuild => '/wat/test+/a+b/a+b-1.2.3.ebuild' } => { %$a2, range => '>=' } ],
 );
 
-my @fields = qw/range category name version ebuild/;
+my @fields = qw<range category name version ebuild>;
 
 for my $t (@tests) {
  my ($args, $exp) = @$t;
index 27e0cf8f59fd3fc8a43e52c50908a5dbdb0daac5..3a705edc7f2fe1b4570fe44876c535ea9684a200 100644 (file)
@@ -13,4 +13,6 @@ my $min_pc = 0.18;
 eval "use Pod::Coverage $min_pc";
 plan skip_all => "Pod::Coverage $min_pc required for testing POD coverage" if $@;
 
-all_pod_coverage_ok( { also_private => [ qw/format_available init prepare create install uninstall/ ] });
+all_pod_coverage_ok({
+ also_private => [ qw<format_available init prepare create install uninstall> ],
+});