[oe-commits] [openembedded-core] branch master-next updated: sanity: Increase minimum git version to 1.8.3.1

git at git.openembedded.org git at git.openembedded.org
Tue Apr 5 14:48:42 UTC 2016


rpurdie pushed a commit to branch master-next
in repository openembedded-core.

The following commit(s) were added to refs/heads/master-next by this push:
       new  dbae075   sanity: Increase minimum git version to 1.8.3.1
dbae075 is described below

commit dbae075f62ecceadacc6d847e5697b9f3339b168
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Tue Apr 5 15:46:21 2016 +0100

    sanity: Increase minimum git version to 1.8.3.1
    
    The kernel tools assume git > 1.7.9.5, I'm unsure of the exact version but
    the oldest in our infrastructure is 1.8.3.1. The git fetcher also currently
    has nasty workarounds for git < 1.7.9.2.
    
    Moving to 1.8.3.1 as our minimum version seems sane at this point as the oldest
    we're testing/supporting.
    
    [YOCTO #6162]
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/sanity.bbclass | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index 662f764..d229938 100644
--- a/meta/classes/sanity.bbclass
+++ b/meta/classes/sanity.bbclass
@@ -531,14 +531,16 @@ def check_tar_version(sanity_data):
     return None
 
 # We use git parameters and functionality only found in 1.7.8 or later
+# The kernel tools assume git >= 1.8.3.1 (verified needed > 1.7.9.5) see #6162 
+# The git fetcher also had workarounds for git < 1.7.9.2 which we've dropped
 def check_git_version(sanity_data):
     from distutils.version import LooseVersion
     status, result = oe.utils.getstatusoutput("git --version 2> /dev/null")
     if status != 0:
         return "Unable to execute git --version, exit code %s\n" % status
     version = result.split()[2]
-    if LooseVersion(version) < LooseVersion("1.7.8"):
-        return "Your version of git is older than 1.7.8 and has bugs which will break builds. Please install a newer version of git.\n"
+    if LooseVersion(version) < LooseVersion("1.8.3.1"):
+        return "Your version of git is older than 1.8.3.1 and has bugs which will break builds. Please install a newer version of git.\n"
     return None
 
 # Check the required perl modules which may not be installed by default

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list