pull truncate out of the loop and move it after it; all tests pass
[rersyncrecent.git] / Makefile.PL
blob335ce42c409b120fa8f1ccb2399b5ac90097df66
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
4 $ExtUtils::MakeMaker::VERSION =~ s/_//g;
5 my @sign = (MM->can("signature_target") ? (SIGN => 1) : ());
6 my $version_diff = 0; # we'll have to die if this becomes true
7 my $version_from = 'lib/File/Rsync/Mirror/Recent.pm';
8 my $version = MM->parse_version($version_from);
9 if ($ARGV[0] && $ARGV[0] eq "--setversion") {
10     die "Your perl is a bit dated[$]].\nDo not make a release with it\n" if $] < 5.008;
11     die "Your MakeMaker is a bit dated[$ExtUtils::MakeMaker::VERSION].\nYou should get a new one\n"
12         if $ExtUtils::MakeMaker::VERSION < 6.4502;
13     use lib "lib";
14     eval {  require $version_from; }; die $@ if $@;
15     my $makefile = "Makefile";
16     unless (-f $makefile) {
17         $makefile = "Makefile.old";
18     }
19     unless (-f $makefile) {
20         die "no Makefile and no Makefile.old found";
21     }
22     open my $fh, "make -f $makefile the-release-name|" or die "Could not fork: $!";
23     local $/;
24     my ($have_version) = <$fh> =~ /^version\s+([\d\._]+)/m;
25     close $fh or die "Could not close: $!";
26     my ($namespace) = $version_from;
27     $namespace =~ s|^lib/(.+)\.pm$|$1|;
28     $namespace =~ s|/|::|g;
29     eval qq{ if (\$$namespace\::VERSION != \$version) {
30         warn "Not equal: $namespace\\::VERSION[\$$namespace\::VERSION] MM generated version[\$version]";
31         \$version_diff = 1;
32     }};
35 my $provides = {
36                 "File::Rsync::Mirror::Recent" =>
37                 {
38                  version => $version,
39                  file => $version_from,
40                 }
41                };
42 for my $m (qw(Recentfile Recentfile::Done Recentfile::FakeBigFloat )) {
43     my $fullm = "File::Rsync::Mirror::$m";
44     my $file = $fullm;
45     $file =~ s/::/\//g;
46     $file = "lib/$file.pm";
47     my $v = MM->parse_version($file);
48     $provides->{$fullm} = {
49                            version => $v,
50                            file => $file,
51                           };
54 my $preferzip = "bzip2"; # bzip2 | gzip
55 WriteMakefile
56     (
57      NAME                => 'File::Rsync::Mirror::Recent',
58      VERSION             => $version,
59      AUTHOR              => 'Andreas König <andreas.koenig.7os6VVqR@franz.ak.mind.de>',
60      PL_FILES            => {},
61      PREREQ_PM =>
62      {
63       # 'Data::Serializer' => 0.46, # restricted to YAML without it
64       'accessors'        => 0,
65       'Data::Float'      => 0,
66       'File::Rsync'      => 0,
67       'Test::More'       => 0,
68       'File::Basename'   => 0,
69       'File::Find::Rule' => 0,
70       'File::Path'       => 0,
71       'File::Temp'       => 0.21, # removes bogus test on parent directory
72       'List::MoreUtils'  => 0,
73       'List::Pairwise'   => 0,
74       'Scalar::Util'     => 0,
75       'Data::Serializer' => 0,
76       'Time::HiRes'      => 0,
77       'YAML::Syck'       => 0,
78       'version'          => 0,
79      },
80      EXE_FILES    => [
81                       grep { !/~/ } glob("bin/rrr bin/rrr-*")
82                      ],
83      dist => {
84               DIST_DEFAULT => join(" ", # note: order matters!
85                                    "verify-changes-date",
86                                    "Makefile",
87                                    "META.yml",
88                                    "setversion",
89                                    "all",
90                                    "tardist",
91                                    "memo-howto-release",
92                                   ),
93               $preferzip eq "bzip2" ?
94               (COMPRESS => 'bzip2 -9f',
95                SUFFIX => ".bz2") :
96               (COMPRESS => 'gzip -9f',
97                SUFFIX => ".gz"),
98              },
99      ($ExtUtils::MakeMaker::VERSION >= 6.4502 ?
100       (META_MERGE => {
101                       # write: git push git+ssh://repo.or.cz/srv/git/rersyncrecent.git master
102                       repository => "git://repo.or.cz/rersyncrecent.git",
103                       provides => $provides,
104                      }) : ()),
105      @sign,
106      clean               => { FILES => 'File-Rsync-Mirror-Recent-*' },
107     );
109 if ($version_diff){
110   die "
111 ==> I had to update some \$VERSIONs <==
112 ==> Your Makefile has been rebuilt. <==
113 ==> Please rerun the make command.  <==
117 package MY;
118 sub postamble {
119   my @m;
120   push @m, q{
121 Makefile: }.$version_from.q{
123 META.yml: metafile
124         $(CP) $(DISTVNAME)/META.yml  ./META.yml
126 setversion:
127         $(PERL) Makefile.PL --setversion
129 verify-changes-date:
130         @$(PERL) -ne 'BEGIN{my@t=(localtime)[5,4,3];$$t[0]+=1900;$$t[1]++;$$t=sprintf"%04d-%02d-%02d",@t}' \
131                 -e '$$ok++,exit if /^$$t\s/; END{die "Alert: did not find <$$t> in Changes file" unless $$ok}' Changes
133 verify-no-subdir:
134         @$(PERL) -e 'my$$s=join",",grep{!/^($(OKDIRS))\z/x&&-d($$_)}glob"*";' \
135                 -e 'die"unexpected dir:$$s"if$$s'
137 the-release-name :
138         $(NOECHO) $(ECHO) 'version ' $(VERSION)
139         $(NOECHO) $(ECHO) 'release-name ' $(DISTVNAME).tar$(SUFFIX)
141 memo-howto-release:
142         $(NOECHO) $(ECHO) 'after successful make dist and upload do not forget to'
143         $(NOECHO) $(ECHO) ' make tag'
144         $(NOECHO) $(ECHO) ' git push --tags'
145         $(NOECHO) $(ECHO) 'before writing Changes do not forget to'
146         $(NOECHO) $(ECHO) ' git --no-pager log --no-merges --pretty=format:" %x20%x20 - %s (%an)" | less'
148 tag ::
149         git tag -m 'This is $(VERSION)' "$(VERSION)"
151 sign:
152         cpansign -s
154   join "", @m;
157 sub dist_test {
158   return q{
159 # if we depend on $(DISTVNAME).tar$(SUFFIX), then the rest of the
160 # Makefile breaks our intent to NOT remake dist
161 disttest :
162         rm -rf $(DISTVNAME)
163         tar xvjf $(DISTVNAME).tar$(SUFFIX)
164         cd $(DISTVNAME) && $(ABSPERLRUN) Makefile.PL
165         cd $(DISTVNAME) && $(MAKE) $(PASTHRU)
166         cd $(DISTVNAME) && $(MAKE) test $(PASTHRU)
168 distdir ::
169         touch $(DISTVNAME)/SIGNATURE && $(CP) $(DISTVNAME)/SIGNATURE ./SIGNATURE
170         $(CP) $(DISTVNAME)/META.yml  ./META.yml
171         $(CP) $(DISTVNAME)/MANIFEST  ./MANIFEST
176 sub distdir {
177   my $self = shift;
178   my $out = $self->SUPER::distdir;
179   $out =~ s/distdir :/distdir ::/g;
180   return $out;
183 # dist_dir was the name in very old MakeMaker as of 5.005_04
184 sub dist_dir {
185   my $self = shift;
186   my $out = $self->SUPER::dist_dir;
187   $out =~ s/distdir :/distdir ::/g;
188   return $out;