Switch to no-version-commit.
authorCarl Hetherington <cth@carlh.net>
Mon, 10 Sep 2018 21:13:33 +0000 (22:13 +0100)
committerCarl Hetherington <cth@carlh.net>
Mon, 10 Sep 2018 21:13:33 +0000 (22:13 +0100)
wscript

diff --git a/wscript b/wscript
index 8493adee2c135d3e169a2169c0ebf4142c355238..ed589caa22be391c3b803f43e71711b9b2a1519a 100644 (file)
--- a/wscript
+++ b/wscript
@@ -1,6 +1,6 @@
 # -*- mode: python -*-
 #
-#    Copyright (C) 2016-2017 Carl Hetherington <cth@carlh.net>
+#    Copyright (C) 2016-2018 Carl Hetherington <cth@carlh.net>
 #
 #    This file is part of libcxml.
 #
 #    along with libcxml.  If not, see <http://www.gnu.org/licenses/>.
 #
 
+import subprocess
+import shlex
 from waflib import Context
 
 APPNAME = 'libcxml'
-VERSION = '0.15.5devel'
+
+this_version = subprocess.Popen(shlex.split('git tag -l --points-at HEAD'), stdout=subprocess.PIPE).communicate()[0]
+last_version = subprocess.Popen(shlex.split('git describe --tags --abbrev=0'), stdout=subprocess.PIPE).communicate()[0]
+
+if isinstance(this_version, bytes):
+    this_version = this_version.decode('UTF-8')
+if isinstance(last_version, bytes):
+    last_version = last_version.decode('UTF-8')
+
+if this_version == '':
+    VERSION = '%sdevel' % last_version[1:].strip()
+else:
+    VERSION = this_version[1:].strip()
+
 API_VERSION = '0.0.0'
 
 def options(opt):