DhMakePerl

 view release on metacpan or  search on metacpan

Build.PL  view on Meta::CPAN

        'WWW::Mechanize'            => 0,
        'YAML'                      => 0,
        'YAML::XS'                  => 0,
    },
    build_requires      => {
        'IPC::Run'          => 0,
        'File::DirCompare'  => 0,
        'File::Touch'       => 0,
        'Test::Compile'     => 0,
        'Test::Deep'        => 0,
        'Test::Differences' => 0,
        'Test::Exception'   => 0,
        'Test::More'        => 0,
    },
    no_index => { directory => [qw(privinc t xt share)] },
    add_to_cleanup      => [ 'DhMakePerl-*', 'Build', '_build' ],
    script_files        => [ 'dh-make-perl' ],
    install_path        => {
        share   => '/usr/share/dh-make-perl',
    },
    share_files         => { map( ( $_ => $_ ), glob 'share/*' ) },

META.json  view on Meta::CPAN

      ]
   },
   "prereqs" : {
      "build" : {
         "requires" : {
            "File::DirCompare" : "0",
            "File::Touch" : "0",
            "IPC::Run" : "0",
            "Test::Compile" : "0",
            "Test::Deep" : "0",
            "Test::Differences" : "0",
            "Test::Exception" : "0",
            "Test::More" : "0"
         }
      },
      "configure" : {
         "requires" : {
            "Module::Build" : "0.38"
         }
      },
      "runtime" : {

META.yml  view on Meta::CPAN

---
abstract: 'create Debian source package from CPAN dist'
author:
  - unknown
build_requires:
  File::DirCompare: '0'
  File::Touch: '0'
  IPC::Run: '0'
  Test::Compile: '0'
  Test::Deep: '0'
  Test::Differences: '0'
  Test::Exception: '0'
  Test::More: '0'
configure_requires:
  Module::Build: '0.38'
dynamic_config: 1
generated_by: 'Module::Build version 0.4224, CPAN::Meta::Converter version 2.150010'
keywords:
  - debian
  - package
  - helper

t/CommaSeparated.t  view on Meta::CPAN

#!/usr/bin/perl -w

use strict;
use warnings;

use Test::More tests => 7;
use Test::Exception;
use Test::Differences;

use Debian::Control::Stanza::CommaSeparated;

my $s = Debian::Control::Stanza::CommaSeparated->new('foo bar, "one, two", three');

is_deeply(
    [@$s],
    [ 'foo bar', '"one, two"', 'three' ],
    'constructor parses ok'
);

t/Control.t  view on Meta::CPAN

#!/usr/bin/perl -w

use strict;
use warnings;

use Test::More;
use Test::Exception;
use Test::Differences;

BEGIN {
    use_ok('Debian::Control');
    use_ok('Debian::Control::Stanza::Source');
};

my $s;
lives_ok { $s = Debian::Control::Stanza::Source->new } 'Source constructs';
lives_ok { $s->Source('foo') } 'Source: set';



( run in 1.738 second using v1.01-cache-2.11-cpan-39bf76dae61 )