summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-04-24 19:28:05 -0400
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-04-24 19:28:05 -0400
commitdd6ab3df749172e0b85de00338b485d8f4e24fa1 (patch)
tree77d7bbfe22d937d9ba8eeaec7bf7c9830ce6d728
parentad68714d5cc6a5b68a7ae0fcacfbef5f621c45b7 (diff)
meson: add git-snapshot target
The output is systemd-<sha1abbrev>.tar.gz in source root.
-rw-r--r--meson.build19
1 files changed, 19 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 59318a9a5d..991836a976 100644
--- a/meson.build
+++ b/meson.build
@@ -2321,3 +2321,22 @@ if git.found()
'git-contrib',
command : [meson_git_contrib_sh])
endif
+
+if git.found()
+ git_head = run_command(
+ git,
+ ['--git-dir=@0@/.git'.format(meson.source_root()),
+ 'rev-parse', 'HEAD']).stdout().strip()
+ git_head_short = run_command(
+ git,
+ ['--git-dir=@0@/.git'.format(meson.source_root()),
+ 'rev-parse', '--short=7', 'HEAD']).stdout().strip()
+
+ run_target(
+ 'git-snapshot',
+ command : ['git', 'archive',
+ '-o', '@0@/systemd-@1@.tar.gz'.format(meson.source_root(),
+ git_head_short),
+ '--prefix', 'systemd-@0@/'.format(git_head),
+ 'HEAD'])
+endif