Description: fix version mangling in meson.build
  meson.build will chck if it is running in git repo and mangle the version
  based on this repository, if found. We don't want that since the git repo is
  not the upstream repository.
Author: Krzysztof Adamski <krzysztof.adamski@canonical.com>
Origin: other
Forwarded: not-needed
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/meson.build
+++ b/meson.build
@@ -12,18 +12,6 @@
 )
 
 version = '"@0@"'.format(meson.project_version())
-git = find_program('git', native: true, required: false)
-if git.found()
-	git_commit = run_command([git, 'rev-parse', '--short', 'HEAD'])
-	git_branch = run_command([git, 'rev-parse', '--abbrev-ref', 'HEAD'])
-	if git_commit.returncode() == 0 and git_branch.returncode() == 0
-		version = '"@0@-@1@ (" __DATE__ ", branch \'@2@\')"'.format(
-			meson.project_version(),
-			git_commit.stdout().strip(),
-			git_branch.stdout().strip(),
-		)
-	endif
-endif
 add_project_arguments('-DSWAPPY_VERSION=@0@'.format(version), language: 'c')
 
 add_project_arguments('-Wno-unused-parameter', language: 'c')
