summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-09-10 21:43:40 +0100
committerCarl Hetherington <cth@carlh.net>2018-09-10 21:43:40 +0100
commitbde22cbbc4c95892899178dd6f8a1f2636acb960 (patch)
tree7cf17dfed48976b5fa385538a8f4d62478a403e2 /wscript
parent7adea716d12396c8ecdc30e22bf24622778268ee (diff)
Add GPL boilerplate; move to non-committed versioning.
Diffstat (limited to 'wscript')
-rw-r--r--wscript33
1 files changed, 32 insertions, 1 deletions
diff --git a/wscript b/wscript
index f01b53c..1c68725 100644
--- a/wscript
+++ b/wscript
@@ -1,9 +1,40 @@
+#
+# Copyright (C) 2012-2018 Carl Hetherington <cth@carlh.net>
+#
+# This file is part of libsub.
+#
+# libsub 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 2 of the License, or
+# (at your option) any later version.
+#
+# libsub 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 libsub. If not, see <http://www.gnu.org/licenses/>.
+
import subprocess
import os
from waflib import Context
APPNAME = 'libsub'
-VERSION = '1.3.0devel'
+
+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 = '-1.0'
try: