Add captype and tfshark binaries to .gitignore
[metze/wireshark/wip.git] / make-version.pl
index ab98c496bae75dd6dc87f16a44b1c9eae1cc5034..9c0cd25769c7477bdb53a5a17bb026b908b3eb5e 100755 (executable)
@@ -55,6 +55,7 @@
 use strict;
 
 use Time::Local;
+use File::Basename;
 use POSIX qw(strftime);
 use Getopt::Long;
 use Pod::Usage;
@@ -68,29 +69,31 @@ my $tortoise_file = "tortoise_template";
 my $last_change = 0;
 my $revision = 0;
 my $repo_path = "unknown";
+my $git_description = undef;
 my $get_svn = 0;
 my $set_svn = 0;
 my $set_version = 0;
 my $set_release = 0;
 my %version_pref = (
        "version_major" => 1,
-       "version_minor" => 9,
-       "version_micro" => 2,
+       "version_minor" => 11,
+       "version_micro" => 3,
        "version_build" => 0,
 
        "enable"        => 1,
+       "git_client"    => 0,
        "svn_client"    => 1,
        "tortoise_svn"  => 0,
        "format"        => "SVN %Y%m%d%H%M%S",
        "is_release"    => 0,
 
        # Normal development builds
-       #"pkg_enable" => 1,
-       #"pkg_format" => "-SVN-%#",
+       "pkg_enable" => 1,
+       "pkg_format" => "-SVN-%#",
 
        # Development releases
-       "pkg_enable" => 0,
-       "pkg_format" => "",
+       #"pkg_enable" => 0,
+       #"pkg_format" => "",
        );
 my $srcdir = ".";
 my $info_cmd = "";
@@ -98,10 +101,11 @@ my $info_cmd = "";
 # Ensure we run with correct locale
 $ENV{LANG} = "C";
 $ENV{LC_ALL} = "C";
+$ENV{GIT_PAGER} = "";
 
 # Run "svn info".  Parse out the most recent modification time and the
 # revision number.
-sub read_svn_info {
+sub read_repo_info {
        my $line;
        my $version_format = $version_pref{"format"};
        my $package_format = "";
@@ -117,7 +121,10 @@ sub read_svn_info {
                $package_format = $version_pref{"pkg_format"};
        }
 
-       if (-d "$srcdir/.svn") {
+       if (-d "$srcdir/.git" && ! -d "$srcdir/.git/svn") {
+               $info_source = "Command line (git)";
+               $version_pref{"git_client"} = 1;
+       } elsif (-d "$srcdir/.svn" or -d "$srcdir/../.svn") {
                $info_source = "Command line (svn info)";
                $info_cmd = "svn info $srcdir";
        } elsif (-d "$srcdir/.git/svn") {
@@ -125,7 +132,75 @@ sub read_svn_info {
                $info_cmd = "(cd $srcdir; git svn info)";
        }
 
-       if ($version_pref{"svn_client"}) {
+       #Git can give us:
+       #
+       # A big ugly hash: git rev-parse HEAD
+       # 1ddc83849075addb0cac69a6fe3782f4325337b9
+       #
+       # A small ugly hash: git rev-parse --short HEAD
+       # 1ddc838
+       #
+       # The upstream branch path: git rev-parse --abbrev-ref --symbolic-full-name @{upstream}
+       # origin/master-1.8
+       #
+       # A version description: git describe --tags --dirty
+       # wireshark-1.8.12-15-g1ddc838
+       #
+       # Number of commits in this branch: git rev-list --count HEAD
+       # 48879
+       #
+       # Number of commits since 1.8.0: git rev-list --count 5e212d72ce098a7fec4332cbe6c22fcda796a018..HEAD
+       # 320
+       #
+       # Refs: git ls-remote code.wireshark.org:wireshark
+       # ea19c7f952ce9fc53fe4c223f1d9d6797346258b (r48972, changed version to 1.11.0)
+
+       if ($version_pref{"git_client"}) {
+               eval {
+                       use warnings "all";
+                       no warnings "all";
+
+                       chomp($line = qx{git log -1 --pretty=format:%at});
+                       if (defined($line)) {
+                               $last_change = $line;
+                       }
+
+                       # Commits in current (master-1.8) branch. We may want to use
+                       # a different number.
+                       chomp($line = qx{git rev-list --count ea19c7f952ce9fc53fe4c223f1d9d6797346258b..HEAD});
+                       if (defined($line)) {
+                               $revision = $line;
+                       }
+
+                       chomp($line = qx{git ls-remote --get-url origin});
+                       if (defined($line)) {
+                               $repo_url = $line;
+                       }
+
+                       # Probably not quite what we're looking for
+                       chomp($line = qx{git rev-parse --abbrev-ref --symbolic-full-name \@\{upstream\}});
+                       if (defined($line)) {
+                               $repo_path = basename($line);
+                       }
+
+
+                       # XXX After the SVN->git migration we'll create tags for 1.11.x.
+                       # Until then we'll fake it.
+                       #chomp($line = qx{git describe --tags --dirty});
+                       chomp($line = qx{git rev-parse --short HEAD});
+                       if (defined($line)) {
+                               #$git_description = $line;
+                               $git_description = "wireshark-1.11." . $version_pref{"version_minor"} .
+                                       "-$revision-g$line";
+                       }
+
+                       1;
+               };
+
+               if ($last_change && $revision && $repo_url && $repo_path) {
+                       $do_hack = 0;
+               }
+       } elsif ($version_pref{"svn_client"}) {
                eval {
                        use warnings "all";
                        no warnings "all";
@@ -442,7 +517,7 @@ sub update_debian_wcf
        while ($line = <DWCF>) {
                # /usr/lib/wireshark/libwireshark.so.1.1.0
 
-               if ($line =~ qr{^(/usr/lib/wireshark/lib(wireshark|wiretap).so\.\d+\.\d+\.)\d+$}) {
+               if ($line =~ qr{^(/usr/lib/wireshark/lib(wireshark|wiretap|filetap).so\.\d+\.\d+\.)\d+$}) {
                        $line = sprintf("$1%d\n", $version_pref{"version_micro"});
                }
                $contents .= $line
@@ -469,10 +544,10 @@ sub update_lib_releases
        #   "If the library source code has changed at all since the last
        #    update, then increment revision (‘c:r:a’ becomes ‘c:r+1:a’)."
        # epan changes with each minor release, almost by definition. wiretap
-       # changes with *most* releases.
+       # and filetap changes with *most* releases.
        #
        # http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info
-       for $filedir ("epan", "wiretap") {      # "wsutil"
+       for $filedir ("epan", "wiretap", "filetap") {   # "wsutil"
                $contents = "";
                $filepath = $filedir . "/Makefile.am";
                open(MAKEFILE_AM, "< $filepath") || die "Can't read $filepath!";
@@ -510,7 +585,11 @@ sub print_svn_revision
        my $svn_revision;
        my $needs_update = 1;
 
-       if ($last_change && $revision) {
+       if ($git_description) {
+               $svn_revision = "#define SVNVERSION \"" .
+                       $git_description . "\"\n" .
+                       "#define SVNPATH \"" . $repo_path . "\"\n";
+       } elsif ($last_change && $revision) {
                $svn_revision = "#define SVNVERSION \"SVN Rev " .
                        $revision . "\"\n" .
                        "#define SVNPATH \"" . $repo_path . "\"\n";
@@ -586,7 +665,7 @@ sub get_config {
 
 &get_config();
 
-&read_svn_info();
+&read_repo_info();
 
 &print_svn_revision;
 
@@ -628,7 +707,7 @@ make-version.pl [options] [source directory]
     --set-svn, -s              Set the information in svnversion.h
     --set-version, -v          Set the major, minor, and micro versions in
                                configure.ac, config.nmake, debian/changelog,
-                              and docbook/release_notes.xml.
+                              and docbook/asciidoc.conf.
                                Resets the release information when used by
                               itself.
     --set-release, -r          Set the release information in configure.ac