This repository has been archived by the owner on Jan 25, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimportant_changes.pl
122 lines (101 loc) · 3.15 KB
/
important_changes.pl
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
# important_changes.pl - This script prints important changes in Sympa since
# last install
# It is based on the NEWS ***** entries
# RCS Identication ; $Revision$ ; $Date$
#
# Sympa - SYsteme de Multi-Postage Automatique
#
# Copyright (c) 1997, 1998, 1999 Institut Pasteur & Christophe Wolfhugel
# Copyright (c) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
# 2006, 2007, 2008, 2009, 2010, 2011 Comite Reseau des Universites
# Copyright (c) 2011, 2012, 2013, 2014, 2015, 2016, 2017 GIP RENATER
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
## Print important changes in Sympa since last install
## It is based on the NEWS ***** entries
use strict;
use Getopt::Long;
my %options;
GetOptions(\%options, 'current=s', 'previous=s',);
die "no current given version, aborting" unless $options{current};
if (!$options{previous}) {
print STDERR "No previous version given, assuming first installation";
exit 0;
}
my $previous_version = $options{previous};
my $current_version = $options{current};
# exit immediatly if previous version is higher or equal
if (($previous_version eq $current_version)
|| &higher($previous_version, $current_version)) {
exit 0;
}
print <<EOF;
You are upgrading from Sympa $previous_version
You should read CAREFULLY the changes listed below
They might be incompatible changes:
<RETURN>
EOF
my $wait = <STDIN>;
## Extracting Important changes from release notes
open NOTES, 'NEWS';
my ($current, $ok);
while (<NOTES>) {
if (/^([\w_.]+)\s/) {
my $v = $1;
if ( $v eq $previous_version
|| &higher($previous_version, $v)) {
last;
} else {
$ok = 1;
}
}
next unless $ok;
if (/^\*{4}/) {
print "\n" unless $current;
$current = 1;
print;
} else {
$current = 0;
}
}
close NOTES;
print "<RETURN>";
my $wait = <STDIN>;
sub higher {
my ($v1, $v2) = @_;
my @tab1 = split /\./, $v1;
my @tab2 = split /\./, $v2;
my $max = $#tab1;
$max = $#tab2 if ($#tab2 > $#tab1);
for my $i (0 .. $max) {
if ($tab1[0] =~ /^(\d*)a$/) {
$tab1[0] = $1 - 0.5;
} elsif ($tab1[0] =~ /^(\d*)b$/) {
$tab1[0] = $1 - 0.25;
}
if ($tab2[0] =~ /^(\d*)a$/) {
$tab2[0] = $1 - 0.5;
} elsif ($tab2[0] =~ /^(\d*)b$/) {
$tab2[0] = $1 - 0.25;
}
if ($tab1[0] eq $tab2[0]) {
#printf "\t%s = %s\n",$tab1[0],$tab2[0];
shift @tab1;
shift @tab2;
next;
}
return ($tab1[0] > $tab2[0]);
}
return 0;
}