summaryrefslogtreecommitdiff
path: root/support/mkjobtexmf/version.pl
blob: 84223030c7400bec7d2f1d5832f9b985e62fb00e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#!/usr/bin/env perl
use strict;
$^W=1;

my $infile = 'mkjobtexmf.pl';
my $acfile = 'configure.ac';
my $ltxfile = 'mkjobtexmf.ltx';
my $readmefile = 'README';
my $datefile = 'date-version.txt';
my $tmpfile = "version.tmp";

my $date = '';
my $version = '';
my $copyright_years = '';
my $pl_date_version = '';

open(IN, '<', $infile) or die "!!! Error: Cannot open `$infile'!\n";
while (<IN>) {
    if (/my \$date\s*=\s*'([0-9\/]+)'/) {
        $date = $1;
        next;
    }
    if (/my \$version\s*=\s*'([0-9\.]+)'/) {
        $version = $1;
        next;
    }
    if (/my \$copyright\s*=\s*"Copyright (.*) \$author"/) {
        $copyright_years = $1;
        next;
    }
    if (/^(\d{4}-\d{2}-\d{2} v\d+\.\d+)\s*$/) {
        $pl_date_version = $1;
        next;
    }
}

$date or die "!!! Error: Date not found!\n";
$version or die "!!! Error: Version not found!\n";
$copyright_years or die "!!! Error: Copyright years not found!\n";
my $isodate = $date;
$isodate =~ s|/|-|g;
my $date_version = "$isodate v$version";
$pl_date_version or die "!!! Error: VERSION/POD not found!\n";
$pl_date_version eq $date_version or die "!!! Error: Fix VERSION in pod section!\n";

open(OUT, '>', $tmpfile) or die "!!! Error: Cannot open `$tmpfile'!\n";
open(IN, '<', $acfile) or die "!!! Error: Cannot open `$acfile'!\n";
my $found = 0;
my $update = 0;
while (<IN>) {
    if (/^(dnl Copyright )(.*)( by .*)$/) {
        $found |= 1;
        $_ = "$1$copyright_years$3\n";
        $update = 1 unless $2 eq $copyright_years;
    }
    if (/^(AC_INIT\(mkjobtexmf, )([^,]*)(,.*|\).*)$/) {
        $found |= 2;
        $_ = "$1$version$3\n";
        $update = 1 unless $2 eq $version;
    }
    print OUT;
}
die "!!! Error: COPYRIGHT or AC_INIT line not found!\n" unless $found = 3;
unlink $acfile or die "!!! Error: Cannot delete `$acfile'!\n";
rename $tmpfile, $acfile
        or die "!!! Error: Cannot rename `$tmpfile' to `$acfile'!\n";
print "--> `$acfile' updated\n" if $update;

open(OUT, '>', $tmpfile) or die "!!! Error: Cannot open `$tmpfile'!\n";
open(IN, '<', $ltxfile) or die "!!! Error: Cannot open `$ltxfile'!\n";
$found = 0;
$update = 0;
while (<IN>) {
    if (/^(% Copyright )(.*)( by .*)$/) {
        $found |= 1;
        $_ = "$1$copyright_years$3\n";
        $update = 1 unless $2 eq $copyright_years;
    }
    if (/^(\\providecommand\*{\\DATE}{)(.*)(})$/) {
        $found |= 2;
        $_ = "$1$date$3\n";
        $update = 1 unless $2 eq $date;
    }
    if (/^(\\providecommand\*{\\VERSION}{)(.*)(})$/) {
        $found |= 4;
        $_ = "$1$version$3\n";
        $update = 1 unless $2 eq $version;
    }
    print OUT;
}
close(IN);
close(OUT);
die "!!! Error: COPYRIGHT or DATE or VERSION line not found!\n"
        unless $found == 7;
unlink $ltxfile or die "!!! Error: Cannot delete `$ltxfile'!\n";
rename $tmpfile, $ltxfile
        or die "!!! Error: Cannot rename `$tmpfile' to `$ltxfile'!\n";
print "--> `$ltxfile' updated\n" if $update;

open(OUT, '>', $tmpfile) or die "!!! Error: Cannot open `$tmpfile'!\n";
open(IN, '<', $readmefile) or die "!!! Error: Cannot open `$readmefile'!\n";
$found = 0;
$update = 0;
while (<IN>) {
    if (/^(Copyright )(.*)( by .*)$/) {
        $found |= 1;
        $_ = "$1$copyright_years$3\n";
        $update = 1 unless $2 eq $copyright_years;
    }
    if (/^(README for mkjobtexmf )([0-9\/]+) v([0-9\.]+)$/) {
        $found |= 2;
        $_ = "$1$date v$version\n";
        $update = 1 unless $2 eq $date and $3 eq $version;
    }
    print OUT;
}
close(IN);
close(OUT);
die "!!! Error: COPYRIGHT or DATE/VERSION line not found!\n"
        unless $found == 3;
unlink $readmefile or die "!!! Error: Cannot delete `$readmefile'!\n";
rename $tmpfile, $readmefile
        or die "!!! Error: Cannot rename `$tmpfile' to `$readmefile'!\n";
print "--> `$readmefile' updated.\n" if $update;

my $old_date_version = '';
if (-f $datefile) {
    open(IN, '<', $datefile) or die "!!! Error: Cannot open `$datefile'!\n";
    my @lines = <IN>;
    $old_date_version = "@lines";
    close(IN);
}
if ($old_date_version eq $date_version) {
    # print "--> `$datefile' is already uptodate.\n";
}
else {
    open(OUT, '>', $datefile) or die "!!! Error: Cannot open `$datefile'!\n";
    print OUT $date_version;
    close(OUT);
    print "--> `$datefile' updated.\n";
}

1;
__END__