From: band-a-prend Date: Wed, 17 Jul 2019 15:03:27 +0000 (+0300) Subject: sci-libs/cantera: 2.4.0-r1. Fix 'fatal' warning X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=fa0bc77060e83768e5e5620fdf6ecbfd6546bd99;p=gentoo.git sci-libs/cantera: 2.4.0-r1. Fix 'fatal' warning The SConstruct script contains block that tries to evaluate 'git rev-parse --short HEAD` comand and returns the "fatal: not a git repository (or any parent up to mount point /var/tmp)" warning from git command itself if git is installed in system. It occurs because the release package archive doesn't contain ".git" directory. This behaviour doesn't affect emerge process but can confuse in the case of other issues. Closes: https://bugs.gentoo.org/689998 Signed-off-by: Sergey Torokhov Signed-off-by: Michał Górny --- diff --git a/sci-libs/cantera/files/cantera_2.4.0_env.patch b/sci-libs/cantera/files/cantera_2.4.0_env.patch index 1be40dfe0446..bc018a53f898 100644 --- a/sci-libs/cantera/files/cantera_2.4.0_env.patch +++ b/sci-libs/cantera/files/cantera_2.4.0_env.patch @@ -10,7 +10,20 @@ diff -Nur old/cantera-2.4.0/SConstruct new/cantera-2.4.0/SConstruct toolchain=toolchain, **extraEnvArgs) -@@ -1061,7 +1061,7 @@ +@@ -727,11 +727,8 @@ + env['cantera_pure_version'] = '.'.join(str(x) for x in ctversion.version) + env['cantera_short_version'] = '.'.join(str(x) for x in ctversion.version[:2]) + +-try: +- env['git_commit'] = getCommandOutput('git', 'rev-parse', '--short', 'HEAD') +-except Exception: +- env['git_commit'] = 'unknown' ++env['git_commit'] = 'unknown' + + # Print values of all build options: + print("Configuration variables read from 'cantera.conf' and command line:") + for line in open('cantera.conf'): +@@ -1062,7 +1062,7 @@ # Ignore the minor version, e.g. 2.4.x -> 2.4 env['sundials_version'] = '.'.join(sundials_version.split('.')[:2])