[oe-commits] [openembedded-core] 27/47: buildhistory-diff: suggest correct version of PythonGit

git at git.openembedded.org git at git.openembedded.org
Sun Jun 12 22:48:09 UTC 2016


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

commit 0632c3e69070e340218c1c1c835b2343cd143d8d
Author: Ed Bartosh <ed.bartosh at linux.intel.com>
AuthorDate: Fri Jun 10 10:43:52 2016 +0300

    buildhistory-diff: suggest correct version of PythonGit
    
    If buildhistory-diff can't import git module it throws error
    message suggesting to install it.
    
    Due to the move to Python 3 the suggested package name and
    version became outdated.
    
    Changed package name to python3-git and version to >= 0.3.4
    as GitPython supports Python 3 starting from 0.3.4.
    
    [YOCTO #9741]
    
    Signed-off-by: Ed Bartosh <ed.bartosh at linux.intel.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 scripts/buildhistory-diff | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/buildhistory-diff b/scripts/buildhistory-diff
index dc8b8f2..d8ca12d 100755
--- a/scripts/buildhistory-diff
+++ b/scripts/buildhistory-diff
@@ -14,7 +14,7 @@ from distutils.version import LooseVersion
 try:
     import git
 except ImportError:
-    print("Please install GitPython (python-git) 0.3.1 or later in order to use this script")
+    print("Please install GitPython (python3-git) 0.3.4 or later in order to use this script")
     sys.exit(1)
 
 def main():

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


More information about the Openembedded-commits mailing list