]> arthur.barton.de Git - bup.git/blob - lib/cmd/version-cmd.py
version: fix --date argument for py3
[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")/../../config/bin/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 from bup.io import byte_stream
24
25 version_rx = re.compile(r'^[0-9]+\.[0-9]+(\.[0-9]+)?(-[0-9]+-g[0-9abcdef]+)?$')
26
27 optspec = """
28 bup version [--date|--commit]
29 --
30 date    display the date this version of bup was created
31 commit  display the git commit id of this version of bup
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)
38 if total > 1:
39     o.fatal('at most one option expected')
40
41 sys.stdout.flush()
42 out = byte_stream(sys.stdout)
43
44 if opt.date:
45     out.write(version.date.split(b' ')[0] + b'\n')
46 elif opt.commit:
47     out.write(version.commit + b'\n')
48 else:
49     out.write(version.version + b'\n')