]> sjero.net Git - wget/commitdiff
Use git-version-gen instead of bzr-version-gen.
authorGiuseppe Scrivano <gscrivano@gnu.org>
Sun, 13 May 2012 14:46:15 +0000 (16:46 +0200)
committerGiuseppe Scrivano <gscrivano@gnu.org>
Sun, 13 May 2012 14:46:15 +0000 (16:46 +0200)
ChangeLog
Makefile.am
bootstrap.conf
build-aux/bzr-version-gen [deleted file]
configure.ac

index 51632aa23ad8f39356dc4d2315e94c27d966e959..aa249b06012544dbe2a0b1a51952c67fe1060492 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2012-05-13  Giuseppe Scrivano  <gscrivano@gnu.org>
+
+       * bootstrap.conf (gnulib_modules): Add `git-version-gen'.
+       * build-aux/bzr-version-gen: Remove file.
+       * configure.ac: Invoke `build-aux/git-version-gen' to get the dist
+       version.
+       * Makefile.am (EXTRA_DIST): Distribute build-aux/git-version-gen instead
+       of build-aux/bzr-version-gen.
+
 2012-04-11  Gijs van Tulder  <gvtulder@gmail.com>
 
        * bootstrap.conf (gnulib_modules): Include module `regex'.
index 24d95e07f0e321b525dcf7b948b60885b334aa70..7a500ba0c1eecdc69d20db8bafccb63a4d6bf080 100644 (file)
@@ -46,7 +46,7 @@ SUBDIRS = lib src doc po tests util
 EXTRA_DIST = ChangeLog.README MAILING-LIST \
              msdos/ChangeLog msdos/config.h msdos/Makefile.DJ \
              msdos/Makefile.WC ABOUT-NLS \
-             build-aux/build_info.pl build-aux/bzr-version-gen .version
+             build-aux/build_info.pl build-aux/git-version-gen .version
 
 CLEANFILES = *~ *.bak $(DISTNAME).tar.gz
 
index 56b7b278c3ae8883542058947c926965579ad239..a784a9062d13710b0be4f42890173f837fe924a8 100644 (file)
@@ -43,6 +43,7 @@ getopt-gnu
 getpass-gnu
 getpeername
 getsockname
+git-version-gen
 gnupload
 ioctl
 iconv
diff --git a/build-aux/bzr-version-gen b/build-aux/bzr-version-gen
deleted file mode 100755 (executable)
index f22d14f..0000000
+++ /dev/null
@@ -1,57 +0,0 @@
-#!/bin/sh
-
-scriptversion=2011-08-11.08; # UTC
-
-# Copyright (C) 2010, 2011 Free Software Foundation, Inc.
-
-# 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 3 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/>.
-
-# Additional permission under GNU GPL version 3 section 7
-
-
-# Written by Giuseppe Scrivano.
-
-if test -f .tarball-version
-then
-    cat .tarball-version | tr -d '\n'
-    exit 0
-fi
-
-DIRTY=""
-
-test -n "`bzr diff | tr -d '\n'`" && DIRTY="-dirty"
-
-REVNO=`bzr revno`
-
-TAG=`bzr tags -r $REVNO | cut -d' ' -f1`
-if test -z "$TAG"
-then
-    TAG=`bzr tags --sort=time -r ..$REVNO | tail -n1 | cut -d' ' -f1`
-
-    # No tags yet
-    test -z "$TAG" && TAG="unknown"
-
-    TAG=$TAG-$REVNO
-fi
-
-
-printf "%s%s" "$TAG" "$DIRTY"
-
-# Local variables:
-# eval: (add-hook 'write-file-hooks 'time-stamp)
-# time-stamp-start: "scriptversion="
-# time-stamp-format: "%:y-%02m-%02d.%02H"
-# time-stamp-time-zone: "UTC"
-# time-stamp-end: "; # UTC"
-# End:
index 45cebcabf836ca6966886c8d87d9bb2d1cf88fb9..873c3c926a498f2d4d17f81a044820bdbf9d606d 100644 (file)
@@ -31,7 +31,7 @@ dnl Process this file with autoconf to produce a configure script.
 dnl
 
 AC_INIT([wget],
-  [m4_esyscmd([build-aux/bzr-version-gen])],
+        m4_esyscmd([build-aux/git-version-gen .tarball-version]),
        [bug-wget@gnu.org])
 AC_PREREQ(2.61)