Changed (Δ1.7 KB):

raw changeset »

Build.PL (4 lines added, 45 lines removed)

Changes (3 lines added, 0 lines removed)

MANIFEST (1 lines added, 4 lines removed)

META.yml

Makefile.PL

SPEC (16 lines added, 0 lines removed)

lib/Acme/CPANAuthors/Turkish.pm (1 lines added, 1 lines removed)

t/003-basic.t (7 lines added, 0 lines removed)

t/01-pod.t

t/02-pod-coverage.t

t/03-basic.t

tools/Build.pm

Up to file-list Build.PL:

1
1
use strict;
2
use warnings;
3
use Module::Build;
4
use File::Spec;
5
use IO::File;
2
use lib qw( builder );
3
use Build;
6
4
7
my $class = Module::Build->subclass(
8
                class => 'MBSubclass',
9
                code  => raw_subclass(),
10
            );
11
12
my $mb = $class->new(
13
    module_name    => 'Acme::CPANAuthors::Turkish',
14
    license        => 'perl',
15
    requires       => {
16
        'Acme::CPANAuthors' => 0,
17
    },
18
    build_requires => {
19
        'Test::More' => '0.40',
20
    },
21
    recommends     => {},
22
    sign           => 0,
23
    dist_author    => 'Burak Gursoy <burak@cpan.org>',
24
    create_license => 1,
25
    no_index       => {
26
        directory => [
27
            'tools',
28
            't',
29
        ]
30
    },
31
    meta_merge => {
32
        resources => {
33
            repository => 'http://bitbucket.org/burak/cpan-acme-cpanauthors-turkish/',
34
        },
35
    },
36
    create_makefile_pl => 'traditional',
37
);
38
5
my $mb = Build->new;
6
$mb->change_versions(1);
39
7
$mb->create_build_script;
40
41
sub raw_subclass {
42
    my $file = File::Spec->catfile( 'tools', 'Build.pm' );
43
    my $FH   = IO::File->new;
44
    $FH->open( $file, 'r' ) or die "Can not open($file): $!";
45
    my $rv = do { local $/; <$FH> };
46
    close $FH;
47
    return $rv;
48
}

Up to file-list Changes:

1
1
Revision history for Acme::CPANAuthors::Turkish
2
2
3
0.13 Wed Apr 22 03:28:38 2009
4
    => Update build tools.
5
3
6
0.12 Sat Apr 18 20:58:52 2009
4
7
    => Bump version. CPAN did not seem to get 0.11.
5
8

Up to file-list MANIFEST:

1
1
Build.PL
2
2
Changes
3
3
lib/Acme/CPANAuthors/Turkish.pm
4
Makefile.PL
5
MANIFEST			This list of files
6
META.yml
4
MANIFEST
7
5
README
8
6
t/01-pod.t
9
7
t/02-pod-coverage.t
10
8
t/03-basic.t
11
tools/Build.pm

Up to file-list SPEC:

1
{
2
    module_name    => 'Acme::CPANAuthors::Turkish',
3
    requires       => {
4
        'Acme::CPANAuthors' => 0,
5
    },
6
    build_requires => {
7
        'Test::More' => '0.40',
8
    },
9
    recommends     => {},
10
    dist_author    => 'Burak Gursoy <burak@cpan.org>',
11
    meta_merge     => {
12
        resources => {
13
            repository => 'http://bitbucket.org/burak/cpan-acme-cpanauthors-turkish/',
14
        },
15
    },
16
}

Up to file-list lib/Acme/CPANAuthors/Turkish.pm:

@@ -3,7 +3,7 @@ use strict;
3
3
use vars qw( $VERSION );
4
4
use warnings;
5
5
6
$VERSION = '0.12';
6
$VERSION = '0.13';
7
7
8
8
use Acme::CPANAuthors::Register (
9
9
    BURAK => 'Burak Gürsoy',

Up to file-list t/003-basic.t:

1
#!/usr/bin/env perl -w
2
use strict;
3
use Test::More qw( no_plan );
4
5
BEGIN {
6
    use_ok('Acme::CPANAuthors::Turkish');
7
}