Fix ancient bug in handling of to_char modifier 'TH', when used with HH.
[PostgreSQL.git] / src / tools / version_stamp.pl
blob07915bebb7f0fa6bd8ef9f23959a93baed3c14ea
1 #! /usr/bin/perl -w
3 #################################################################
4 # version_stamp.pl -- update version stamps throughout the source tree
6 # Copyright (c) 2008-2009, PostgreSQL Global Development Group
8 # $PostgreSQL$
9 #################################################################
12 # This script updates the version stamp in configure.in, and also in assorted
13 # other files wherein it's not convenient to obtain the version number from
14 # configure's output. Note that you still have to run autoconf afterward
15 # to regenerate configure from the updated configure.in.
17 # Usage: cd to top of source tree and issue
18 # src/tools/version_stamp.pl MINORVERSION
19 # where MINORVERSION can be a minor release number (0, 1, etc), or
20 # "devel", "betaN", "rcN".
23 # Major version is hard-wired into the script. We update it when we branch
24 # a new development version.
25 $major1 = 8;
26 $major2 = 5;
28 # Validate argument and compute derived variables
29 $minor = shift;
30 defined($minor) || die "$0: missing required argument: minor-version\n";
32 if ($minor =~ m/^\d+$/) {
33 $dotneeded = 1;
34 $numericminor = $minor;
35 } elsif ($minor eq "devel") {
36 $dotneeded = 0;
37 $numericminor = 0;
38 } elsif ($minor =~ m/^beta\d+$/) {
39 $dotneeded = 0;
40 $numericminor = 0;
41 } elsif ($minor =~ m/^rc\d+$/) {
42 $dotneeded = 0;
43 $numericminor = 0;
44 } else {
45 die "$0: minor-version must be N, devel, betaN, or rcN\n";
48 # Create various required forms of the version number
49 $majorversion = $major1 . "." . $major2;
50 if ($dotneeded) {
51 $fullversion = $majorversion . "." . $minor;
52 } else {
53 $fullversion = $majorversion . $minor;
55 $numericversion = $majorversion . "." . $numericminor;
56 $padnumericversion = sprintf("%d%02d%02d", $major1, $major2, $numericminor);
58 # Get the autoconf version number for eventual nag message
59 # (this also ensures we're in the right directory)
61 $aconfver = "";
62 open(FILE, "configure.in") || die "could not read configure.in: $!\n";
63 while (<FILE>) {
64 if (m/^m4_if\(m4_defn\(\[m4_PACKAGE_VERSION\]\), \[(.*)\], \[\], \[m4_fatal/) {
65 $aconfver = $1;
66 last;
69 close(FILE);
70 $aconfver ne "" || die "could not find autoconf version number in configure.in\n";
72 # Update configure.in and other files that contain version numbers
74 $fixedfiles = "";
76 sed_file("configure.in",
77 "-e 's/AC_INIT(\\[PostgreSQL\\], \\[[0-9a-z.]*\\]/AC_INIT([PostgreSQL], [$fullversion]/'");
79 sed_file("doc/bug.template",
80 "-e 's/PostgreSQL version (example: PostgreSQL .*) *: PostgreSQL .*/PostgreSQL version (example: PostgreSQL $fullversion): PostgreSQL $fullversion/'");
82 sed_file("src/include/pg_config.h.win32",
83 "-e 's/#define PACKAGE_STRING \"PostgreSQL .*\"/#define PACKAGE_STRING \"PostgreSQL $fullversion\"/' " .
84 "-e 's/#define PACKAGE_VERSION \".*\"/#define PACKAGE_VERSION \"$fullversion\"/' " .
85 "-e 's/#define PG_VERSION \".*\"/#define PG_VERSION \"$fullversion\"/' " .
86 "-e 's/#define PG_VERSION_NUM .*/#define PG_VERSION_NUM $padnumericversion/'");
88 sed_file("src/interfaces/libpq/libpq.rc.in",
89 "-e 's/FILEVERSION [0-9]*,[0-9]*,[0-9]*,0/FILEVERSION $major1,$major2,$numericminor,0/' " .
90 "-e 's/PRODUCTVERSION [0-9]*,[0-9]*,[0-9]*,0/PRODUCTVERSION $major1,$major2,$numericminor,0/' " .
91 "-e 's/VALUE \"FileVersion\", \"[0-9.]*/VALUE \"FileVersion\", \"$numericversion/' " .
92 "-e 's/VALUE \"ProductVersion\", \"[0-9.]*/VALUE \"ProductVersion\", \"$numericversion/'");
94 sed_file("src/port/win32ver.rc",
95 "-e 's/FILEVERSION [0-9]*,[0-9]*,[0-9]*,0/FILEVERSION $major1,$major2,$numericminor,0/' " .
96 "-e 's/PRODUCTVERSION [0-9]*,[0-9]*,[0-9]*,0/PRODUCTVERSION $major1,$major2,$numericminor,0/'");
98 print "Stamped these files with version number $fullversion:\n$fixedfiles";
99 print "Don't forget to run autoconf $aconfver before committing.\n";
101 exit 0;
103 sub sed_file {
104 my($filename, $sedargs) = @_;
105 my($tmpfilename) = $filename . ".tmp";
107 system("sed $sedargs $filename >$tmpfilename") == 0
108 or die "sed failed: $?";
109 system("mv $tmpfilename $filename") == 0
110 or die "mv failed: $?";
112 $fixedfiles .= "\t$filename\n";