mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
A lot of our recipes had short one-line DESCRIPTION values and no SUMMARY value set. In this case it's much better to just set SUMMARY since DESCRIPTION is defaulted from SUMMARY anyway and then the SUMMARY is at least useful. I also took the opportunity to fix up a lot of the new SUMMARY values, making them concisely explain the function of the recipe / package where possible. (From OE-Core rev: b8feee3cf21f70ba4ec3b822d2f596d4fc02a292) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
26 lines
835 B
BlitzBasic
26 lines
835 B
BlitzBasic
SUMMARY = "Python bindings for the DBus inter-process communication system"
|
|
SECTION = "devel/python"
|
|
HOMEPAGE = "http://www.freedesktop.org/Software/dbus"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=0b83047ce9e948b67c0facc5f233476a"
|
|
DEPENDS = "expat dbus dbus-glib virtual/libintl python-pyrex-native"
|
|
|
|
SRC_URI = "http://dbus.freedesktop.org/releases/dbus-python/dbus-python-${PV}.tar.gz \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "b09cd2d1a057cc432ce944de3fc06bf7"
|
|
SRC_URI[sha256sum] = "e12c6c8b2bf3a9302f75166952cbe41d6b38c3441bbc6767dbd498942316c6df"
|
|
S = "${WORKDIR}/dbus-python-${PV}"
|
|
|
|
inherit distutils-base autotools pkgconfig
|
|
|
|
export BUILD_SYS
|
|
export HOST_SYS
|
|
|
|
export STAGING_LIBDIR
|
|
export STAGING_INCDIR
|
|
|
|
RDEPENDS_${PN} = "python-io python-logging python-stringold python-threading python-xml"
|
|
|
|
FILES_${PN}-dev += "${libdir}/pkgconfig"
|