From bde22cbbc4c95892899178dd6f8a1f2636acb960 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 10 Sep 2018 21:43:40 +0100 Subject: [PATCH] Add GPL boilerplate; move to non-committed versioning. --- wscript | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/wscript b/wscript index f01b53c..1c68725 100644 --- a/wscript +++ b/wscript @@ -1,9 +1,40 @@ +# +# Copyright (C) 2012-2018 Carl Hetherington +# +# 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 . + 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: -- 2.30.2