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);
10 if ($ARGV[0] eq "--setversion") {
11 die "Your perl is a bit dated[$]].\nDo not make a release with it\n" if $] < 5.008;
12 die "Your MakeMaker is a bit dated[$ExtUtils::MakeMaker::VERSION].\nYou should get a new one\n"
13 if $ExtUtils::MakeMaker::VERSION < 6.4502;
15 eval { require $version_from; }; die $@ if $@;
16 my $makefile = "Makefile";
17 unless (-f $makefile) {
18 $makefile = "Makefile.old";
20 unless (-f $makefile) {
21 die "no Makefile and no Makefile.old found";
23 open my $fh, "make -f $makefile the-release-name|" or die "Could not fork: $!";
25 my ($have_version) = <$fh> =~ /^version\s+([\d\._]+)/m;
26 close $fh or die "Could not close: $!";
27 my ($namespace) = $version_from;
28 $namespace =~ s|^lib/(.+)\.pm$|$1|;
29 $namespace =~ s|/|::|g;
30 eval qq{ if (\$$namespace\::VERSION != \$version) {
31 warn "Not equal: $namespace\\::VERSION[\$$namespace\::VERSION] MM generated version[\$version]";
34 } elsif ($ARGV[0] eq "--trial") {
35 die "FIXME: --trial does not seem to work";
39 # $version .= "-TRIAL";
42 "File::Rsync::Mirror::Recent" =>
45 file => $version_from,
48 for my $m (qw(Recentfile Recentfile::Done Recentfile::FakeBigFloat )) {
49 my $fullm = "File::Rsync::Mirror::$m";
52 $file = "lib/$file.pm";
53 my $v = MM->parse_version($file);
54 $provides->{$fullm} = {
60 my $preferzip = "bzip2"; # bzip2 | gzip
63 NAME => 'File::Rsync::Mirror::Recent',
65 AUTHOR => 'Andreas König <andreas.koenig.7os6VVqR@franz.ak.mind.de>',
69 # 'Data::Serializer' => 0.46, # restricted to YAML without it
74 'File::Basename' => 0,
75 'File::Find::Rule' => 0,
78 'File::Temp' => 0.21, # removes bogus test on parent directory
79 'List::MoreUtils' => 0,
80 'List::Pairwise' => 0,
82 'Data::Serializer' => 0,
89 grep { !/~/ } glob("bin/rrr bin/rrr-*")
92 DIST_DEFAULT => join(" ", # note: order matters!
93 "verify-changes-date",
101 $preferzip eq "bzip2" ?
102 (COMPRESS => 'bzip2 -9f',
104 (COMPRESS => 'gzip -9f',
107 ($ExtUtils::MakeMaker::VERSION >= 6.4502 ?
109 # write: git push git+ssh://repo.or.cz/srv/git/rersyncrecent.git master
111 repository => "git://repo.or.cz/rersyncrecent.git",
113 provides => $provides,
116 clean => { FILES => 'File-Rsync-Mirror-Recent-*' },
121 ==> I had to update some \$VERSIONs <==
122 ==> Your Makefile has been rebuilt. <==
123 ==> Please rerun the make command. <==
131 Makefile: }.$version_from.q{
134 $(CP) $(DISTVNAME)/META.yml ./META.yml
137 $(PERL) Makefile.PL --setversion
140 @$(PERL) -ne 'BEGIN{my@t=(localtime)[5,4,3];$$t[0]+=1900;$$t[1]++;$$t=sprintf"%04d-%02d-%02d",@t}' \
141 -e '$$ok++,exit if /^$$t\s/; END{die "Alert: did not find <$$t> in Changes file" unless $$ok}' Changes
144 @$(PERL) -e 'my$$s=join",",grep{!/^($(OKDIRS))\z/x&&-d($$_)}glob"*";' \
145 -e 'die"unexpected dir:$$s"if$$s'
148 $(NOECHO) $(ECHO) 'version ' $(VERSION)
149 $(NOECHO) $(ECHO) 'release-name ' $(DISTVNAME).tar$(SUFFIX)
152 $(NOECHO) $(ECHO) 'after successful make dist and upload do not forget to'
153 $(NOECHO) $(ECHO) ' make tag'
154 $(NOECHO) $(ECHO) ' git push --tags'
155 $(NOECHO) $(ECHO) 'before writing Changes do not forget to'
156 $(NOECHO) $(ECHO) ' git --no-pager log --no-merges --pretty=format:" %x20%x20 - %s (%an)" | less'
159 git tag -m 'This is $(VERSION)' "$(VERSION)"
165 $(PERL) bin/rrr-init --force t/testserver
166 $(PERL) bin/rrr-server t/testserver/RECENT-1h.yaml &
167 $(PERL) bin/rrr-init --force t/testserver
174 # if we depend on $(DISTVNAME).tar$(SUFFIX), then the rest of the
175 # Makefile breaks our intent to NOT remake dist
178 tar xvjf $(DISTVNAME).tar$(SUFFIX)
179 cd $(DISTVNAME) && $(ABSPERLRUN) Makefile.PL
180 cd $(DISTVNAME) && $(MAKE) $(PASTHRU)
181 cd $(DISTVNAME) && $(MAKE) test $(PASTHRU)
184 touch $(DISTVNAME)/SIGNATURE && $(CP) $(DISTVNAME)/SIGNATURE ./SIGNATURE
185 $(CP) $(DISTVNAME)/META.yml ./META.yml
186 $(CP) $(DISTVNAME)/MANIFEST ./MANIFEST
193 my $out = $self->SUPER::distdir;
194 $out =~ s/distdir :/distdir ::/g;
198 # dist_dir was the name in very old MakeMaker as of 5.005_04
201 my $out = $self->SUPER::dist_dir;
202 $out =~ s/distdir :/distdir ::/g;