aboutsummaryrefslogtreecommitdiffstats
path: root/make-version.pl
diff options
context:
space:
mode:
authorGerald Combs <gerald@zing.org>2015-01-10 14:41:55 -0800
committerGerald Combs <gerald@wireshark.org>2015-01-10 22:57:53 +0000
commitb2f03cb7db611a469741904012d742d27209dc84 (patch)
tree717ef116aa88ca1567413ebfd6b57b34e22f4ac3 /make-version.pl
parent2219f78426b4522b6acec6c18f98c3c0156f110a (diff)
make-version.pl updates.
Set the version variables in CMakeLists.txt directly from make-version.pl instead of pulling them from configure.ac. Use the correct default value for VERSION_EXTRA in config.nmake. wireshark-common.files was removed in g97e1491. We don't need to update it any more. Change-Id: I751b6df9ac16e19090712aa79a68e308397c1d25 Reviewed-on: https://code.wireshark.org/review/6483 Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'make-version.pl')
-rwxr-xr-xmake-version.pl71
1 files changed, 41 insertions, 30 deletions
diff --git a/make-version.pl b/make-version.pl
index e735a6a712..f2d2c4d927 100755
--- a/make-version.pl
+++ b/make-version.pl
@@ -372,6 +372,41 @@ Fin
}
+# Read CMakeLists.txt, then write it back out with updated "set(PROJECT_..._VERSION ...)
+# lines
+# set(PROJECT_MAJOR_VERSION 1)
+# set(PROJECT_MINOR_VERSION 99)
+# set(PROJECT_PATCH_VERSION 0)
+# set(PROJECT_VERSION_EXTENSION "-rc5")
+sub update_cmakelists_txt
+{
+ my $line;
+ my $contents = "";
+ my $version = "";
+ my $filepath = "$srcdir/CMakeLists.txt";
+
+ return if (!$set_version && $package_string eq "");
+
+ open(CFGIN, "< $filepath") || die "Can't read $filepath!";
+ while ($line = <CFGIN>) {
+ if ($line =~ /^set *\( *PROJECT_MAJOR_VERSION .*([\r\n]+)$/) {
+ $line = sprintf("set(PROJECT_MAJOR_VERSION %d)$1", $version_pref{"version_major"});
+ } elsif ($line =~ /^set *\( *PROJECT_MINOR_VERSION .*([\r\n]+)$/) {
+ $line = sprintf("set(PROJECT_MINOR_VERSION %d)$1", $version_pref{"version_minor"});
+ } elsif ($line =~ /^set *\( *PROJECT_PATCH_VERSION .*([\r\n]+)$/) {
+ $line = sprintf("set(PROJECT_PATCH_VERSION %d)$1", $version_pref{"version_micro"});
+ } elsif ($line =~ /^set *\( *PROJECT_VERSION_EXTENSION.*([\r\n]+)$/) {
+ $line = sprintf("set(PROJECT_VERSION_EXTENSION \"%s\")$1", $package_string);
+ }
+ $contents .= $line
+ }
+
+ open(CFGIN, "> $filepath") || die "Can't write $filepath!";
+ print(CFGIN $contents);
+ close(CFGIN);
+ print "$filepath has been updated.\n";
+}
+
# Read configure.ac, then write it back out with an updated
# "AC_INIT" line.
sub update_configure_ac
@@ -411,6 +446,10 @@ sub update_config_nmake
my $contents = "";
my $version = "";
my $filepath = "$srcdir/config.nmake";
+ my $win_package_string = "\$(WIRESHARK_VERSION_EXTRA)";
+
+ if ($package_string ne "") { $win_package_string = $package_string; }
+
open(CFGNMAKE, "< $filepath") || die "Can't read $filepath!";
while ($line = <CFGNMAKE>) {
@@ -423,7 +462,7 @@ sub update_config_nmake
} elsif ($set_version && $line =~ /^VERSION_MICRO=.*([\r\n]+)$/) {
$line = sprintf("VERSION_MICRO=%d$1", $version_pref{"version_micro"});
} elsif ($line =~ /^VERSION_EXTRA=.*([\r\n]+)$/) {
- $line = "VERSION_EXTRA=$package_string$1";
+ $line = "VERSION_EXTRA=$win_package_string$1";
}
$contents .= $line
}
@@ -493,34 +532,6 @@ sub update_debian_changelog
print "$filepath has been updated.\n";
}
-# Read debian/wireshark-common.files, then write back out an updated version.
-# The libraries updated here MUST match the updates made by update_lib_releases
-# below. We should do this automatically.
-sub update_debian_wcf
-{
- my $line;
- my $contents = "";
- my $version = "";
- my $filepath = "$srcdir/debian/wireshark-common.files";
-
- return if (!$set_version);
-
- open(DWCF, "< $filepath") || die "Can't read $filepath!";
- while ($line = <DWCF>) {
- # /usr/lib/wireshark/libwireshark.so.1.1.0
-
- if ($line =~ qr{^(/usr/lib/wireshark/lib(wireshark|wiretap).so\.\d+\.\d+\.)\d+$}) {
- $line = sprintf("$1%d\n", $version_pref{"version_micro"});
- }
- $contents .= $line
- }
-
- open(DWCF, "> $filepath") || die "Can't write $filepath!";
- print(DWCF $contents);
- close(DWCF);
- print "$filepath has been updated.\n";
-}
-
# Read Makefile.am for each library, then write back out an updated version.
sub update_lib_releases
{
@@ -562,11 +573,11 @@ sub update_lib_releases
# Update distributed files that contain any version information
sub update_versioned_files
{
+ &update_cmakelists_txt;
&update_configure_ac;
&update_config_nmake;
&update_release_notes;
&update_debian_changelog;
- &update_debian_wcf;
&update_lib_releases;
}