mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 16:28:43 +01:00
Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
31 lines
874 B
BlitzBasic
31 lines
874 B
BlitzBasic
DESCRIPTION = "Python GObject bindings"
|
|
SECTION = "devel/python"
|
|
LICENSE = "LGPL"
|
|
DEPENDS = "python-pygobject-native-${PV} glib-2.0"
|
|
PR = "ml0"
|
|
|
|
MAJ_VER = "${@bb.data.getVar('PV',d,1).split('.')[0]}.${@bb.data.getVar('PV',d,1).split('.')[1]}"
|
|
|
|
SRC_URI = "ftp://ftp.gnome.org/pub/GNOME/sources/pygobject/${MAJ_VER}/pygobject-${PV}.tar.bz2 \
|
|
file://generate-constants.patch"
|
|
S = "${WORKDIR}/pygobject-${PV}"
|
|
|
|
FILESPATH = "${FILE_DIRNAME}/python-pygobject:${FILE_DIRNAME}/files"
|
|
|
|
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}"
|
|
FILES_${PN}-dbg += "${libdir}/.debug"
|