]> arthur.barton.de Git - bup.git/blob - lib/cmd/version-cmd.py
Stop forcing LC_CTYPE=ISO-8859-1
[bup.git] / lib / cmd / version-cmd.py
1 #!/bin/sh
2 """": # -*-python-*-
3 # https://sourceware.org/bugzilla/show_bug.cgi?id=26034
4 export "BUP_ARGV_0"="$0"
5 arg_i=1
6 for arg in "$@"; do
7     export "BUP_ARGV_${arg_i}"="$arg"
8     shift
9     arg_i=$((arg_i + 1))
10 done
11 # Here to end of preamble replaced during install
12 bup_python="$(dirname "$0")/bup-python" || exit $?
13 exec "$bup_python" "$0"
14 """
15 # end of bup preamble
16
17 from __future__ import absolute_import, print_function
18 import os.path, re, sys
19
20 sys.path[:0] = [os.path.dirname(os.path.realpath(__file__)) + '/..']
21
22 from bup import compat, options, version
23
24 version_rx = re.compile(r'^[0-9]+\.[0-9]+(\.[0-9]+)?(-[0-9]+-g[0-9abcdef]+)?$')
25
26 optspec = """
27 bup version [--date|--commit|--tag]
28 --
29 date    display the date this version of bup was created
30 commit  display the git commit id of this version of bup
31 tag     display the tag name of this version.  If no tag is available, display the commit id
32 """
33 o = options.Options(optspec)
34 opt, flags, extra = o.parse(compat.argv[1:])
35
36
37 total = (opt.date or 0) + (opt.commit or 0) + (opt.tag or 0)
38 if total > 1:
39     o.fatal('at most one option expected')
40
41
42 def version_date():
43     """Format bup's version date string for output."""
44     return version.DATE.split(' ')[0]
45
46
47 def version_commit():
48     """Get the commit hash of bup's current version."""
49     return version.COMMIT
50
51
52 def version_tag():
53     """Format bup's version tag (the official version number).
54
55     When generated from a commit other than one pointed to with a tag, the
56     returned string will be "unknown-" followed by the first seven positions of
57     the commit hash.
58     """
59     names = version.NAMES.strip()
60     assert(names[0] == '(')
61     assert(names[-1] == ')')
62     names = names[1:-1]
63     l = [n.strip() for n in names.split(',')]
64     for n in l:
65         if n.startswith('tag: ') and version_rx.match(n[5:]):
66             return n[5:]
67     return 'unknown-%s' % version.COMMIT[:7]
68
69
70 if opt.date:
71     print(version_date())
72 elif opt.commit:
73     print(version_commit())
74 else:
75     print(version_tag())