mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
The installation of __glib.so is invoked by install-data-am target which are generated by automake. installing libpyglib-2.0-python is invoked by install-exec-am. "make install" will firstly install libpyglib-2.0-python, then install __glib.so, the sequence should not be broken, since _glib.so has dependence on libpyglib-2.0-python. But when enable parallel install, the sequence maybe break then installation fails with: "/usr/bin/ld: cannot find -lpyglib-2.0-python" Disable parallel install to fix this issue. (From OE-Core rev: e87a0c81c77d11f892a34c2d14ffbeb4342d32dd) Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
42 lines
1.2 KiB
BlitzBasic
42 lines
1.2 KiB
BlitzBasic
DESCRIPTION = "Python GObject bindings"
|
|
SECTION = "devel/python"
|
|
LICENSE = "LGPLv2.1"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7"
|
|
DEPENDS = "python python-pygobject-native glib-2.0"
|
|
DEPENDS_class-native = "python-native glib-2.0-native"
|
|
RDEPENDS_class-native = ""
|
|
PR = "r6"
|
|
|
|
MAJ_VER = "${@d.getVar('PV',1).split('.')[0]}.${@d.getVar('PV',1).split('.')[1]}"
|
|
|
|
SRC_URI = "${GNOME_MIRROR}/pygobject/${MAJ_VER}/pygobject-${PV}.tar.bz2 \
|
|
file://obsolete_automake_macros.patch \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "2b11a3050264721aac83188224b093a8"
|
|
SRC_URI[sha256sum] = "a1dffbe2a8e0d490594554ed8d06f0ee4a371acb6c210e7f35158e9ae77e0df4"
|
|
S = "${WORKDIR}/pygobject-${PV}"
|
|
|
|
FILESPATH = "${FILE_DIRNAME}/python-pygobject:${FILE_DIRNAME}/files"
|
|
EXTRA_OECONF += "--disable-introspection"
|
|
|
|
PARALLEL_MAKEINST = ""
|
|
|
|
inherit autotools distutils-base pkgconfig
|
|
|
|
# necessary to let the call for python-config succeed
|
|
export BUILD_SYS
|
|
export HOST_SYS
|
|
export STAGING_INCDIR
|
|
export STAGING_LIBDIR
|
|
|
|
PACKAGES += "${PN}-lib"
|
|
|
|
RDEPENDS_${PN} += "python-textutils"
|
|
|
|
FILES_${PN} = "${libdir}/python*"
|
|
FILES_${PN}-lib = "${libdir}/lib*.so.*"
|
|
FILES_${PN}-dev += "${bindir} ${datadir}"
|
|
|
|
BBCLASSEXTEND = "native"
|