From 96899cdf89463b884b16a3c0bc2f5b698c4c221c Mon Sep 17 00:00:00 2001 From: drebs Date: Mon, 13 Nov 2017 10:52:57 -0200 Subject: [pkg] make debian package report the correct version The Soledad python source currently makes use of versioneer to calculate versions dynamically and hardcode versions upon creation of the python package. Unfortunatlly, this procedure does not behave well with debian packaging, and we need to manually generate/replace the _version.py file so the code that ends up in the debian package reports the correct version of the software. This commit adds a script to replace the _version.py file with a static one and rules during packaging to run that script during preparation stage of debian helper. --- scripts/packaging/replace-version-file.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 scripts/packaging/replace-version-file.py (limited to 'scripts') diff --git a/scripts/packaging/replace-version-file.py b/scripts/packaging/replace-version-file.py new file mode 100755 index 00000000..8c9e046c --- /dev/null +++ b/scripts/packaging/replace-version-file.py @@ -0,0 +1,19 @@ +#!/usr/bin/env python + +# This script will replace the versioneer source version file configured in +# `setup.cfg` with a file containing the hardcoded version generated by +# versioneer. It is meant to be used before building the debian package, so the +# generated package reports the correct version, as would be generated by +# versioneer if this was a python package. + +import ConfigParser +import versioneer + +# get the path to the version file +config = ConfigParser.RawConfigParser() +config.read('setup.cfg') +source_file = config.get('versioneer', 'versionfile_source') + +# replace version file in source tree +versions = versioneer.get_versions() +versioneer.write_to_version_file(source_file, versions) -- cgit v1.2.3