X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=build-aux%2Fbzr-version-gen;fp=build-aux%2Fbzr-version-gen;h=0000000000000000000000000000000000000000;hp=f22d14fd4228c8040e1809d7bb9be9546d5443f8;hb=f4122c50949f5bd5a9867a6074d39b56d29c660f;hpb=0b4c04b5836badc480b4bfb90a5bbf0ec897afc5 diff --git a/build-aux/bzr-version-gen b/build-aux/bzr-version-gen deleted file mode 100755 index f22d14fd..00000000 --- a/build-aux/bzr-version-gen +++ /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 . - -# 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: