[oe-commits] [meta-openembedded] 05/26: python-pygobject: Fix invalid install path

git at git.openembedded.org git at git.openembedded.org
Tue Dec 4 17:43:57 UTC 2018


This is an automated email from the git hooks/post-receive script.

khem pushed a commit to branch master-next
in repository meta-openembedded.

commit 500434ccbaba7e9ab617f269f67bd42b7076c16e
Author: Niko Mauno <niko.mauno at iki.fi>
AuthorDate: Sat Dec 1 19:57:08 2018 +0200

    python-pygobject: Fix invalid install path
    
    http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/meta?id=1dccb37d89f54d7284b6a81957ab228906f24e1c
    has replaced PYTHON_PN references with hardcoded 'python' and 'python3'
    strings in pythonnative.bbclass and python3native.bbclass, respectively.
    Associated commit message states: "If both are inherited then both
    native Pythons are available, but the last to be inherited will be the
    one to set PYTHON."
    
    Since after the above-mentioned commit this Pythonv2 recipe installs
    wrongly into /usr/lib/python3.5/ directory, move inherit of
    distutils-base.bbclass (which inherits pythonnative.bbclass) to right
    hand side of gobject-introspection.bbclass (which inherits
    python3native.bbclass) which changes the install path back to
    /usr/lib/python2.7/ mitigating the issue.
    
    Signed-off-by: Niko Mauno <niko.mauno at iki.fi>
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 meta-oe/recipes-devtools/python/python-pygobject_3.28.3.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-devtools/python/python-pygobject_3.28.3.bb b/meta-oe/recipes-devtools/python/python-pygobject_3.28.3.bb
index c444fbf..70c7b9e 100644
--- a/meta-oe/recipes-devtools/python/python-pygobject_3.28.3.bb
+++ b/meta-oe/recipes-devtools/python/python-pygobject_3.28.3.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "LGPLv2.1"
 LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7"
 
-inherit autotools pkgconfig gnomebase distutils-base gobject-introspection
+inherit autotools pkgconfig gnomebase gobject-introspection distutils-base
 
 PYTHON_BASEVERSION = "2.7"
 PYTHON_PN = "python"

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


More information about the Openembedded-commits mailing list