[Spice-devel] [PATCH spice-gtk] build-sys: Make git-version-gen work again with Meson
Frediano Ziglio
fziglio at redhat.com
Wed Jan 23 09:48:43 UTC 2019
d0cbd9618f0b removed the ability to use git-version-gen to
generate proper version string.
Generate .tarball-version file in the distribution file to
allow building from tarball.
Do not use MESON_SOURCE_ROOT calling git-version-gen command
as this won't be expanded.
Change directory in git-version-gen script to allow the
script to be called from a different directory.
Signed-off-by: Frediano Ziglio <fziglio at redhat.com>
---
build-aux/git-version-gen | 1 +
meson.build | 4 +++-
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/build-aux/git-version-gen b/build-aux/git-version-gen
index 5617eb8d..00c4a55a 100755
--- a/build-aux/git-version-gen
+++ b/build-aux/git-version-gen
@@ -95,6 +95,7 @@ then
&& echo "$0: WARNING: $tarball_version_file seems to be damaged" 1>&2
fi
+cd "`dirname $0`/.."
if test -n "$v"
then
: # use $v
diff --git a/meson.build b/meson.build
index 70dd3188..dcfa4763 100644
--- a/meson.build
+++ b/meson.build
@@ -2,13 +2,15 @@
# project definition
#
project('spice-gtk', 'c',
- version : '0.36',
+ version : run_command('build-aux/git-version-gen', '@0@/.tarball-version'.format(meson.source_root()), check : true).stdout().strip(),
license : 'LGPLv2.1',
meson_version : '>= 0.49')
message('Updating submodules')
run_command('build-aux/meson/check-spice-common', check : true)
+meson.add_dist_script('sh', '-c', 'echo @0@>"$MESON_DIST_ROOT/.tarball-version"'.format(meson.project_version()))
+
#
# global C defines
#
--
2.20.1
More information about the Spice-devel
mailing list