mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-16 20:21:58 +02:00
Add UPSTREAM_CHECK_GITTAGREGEX to check the correct latest version. Before the patch: $ devtool latest-version upower INFO: Current version: 0.99.13 INFO: Latest version: 014 INFO: Latest version's commit: 8cbaa7f70b1bc8aa96f420f9061b20e5d8839ea7 After the patch: $ devtool latest-version upower INFO: Current version: 0.99.13 INFO: Latest version: 0.99.13 INFO: Latest version's commit: 0f6cc0a10be22d7ddd684e1cd851e4364a440494 Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
39 lines
1.5 KiB
BlitzBasic
39 lines
1.5 KiB
BlitzBasic
DESCRIPTION = "UPower is an abstraction for enumerating power devices, listening to device events and querying history and statistics. "
|
|
LICENSE = "GPLv2+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=0de8fbf1d97a140d1d93b9f14dcfbf08"
|
|
|
|
DEPENDS = "intltool-native libusb1 libgudev glib-2.0 dbus-glib"
|
|
|
|
SRC_URI = "git://gitlab.freedesktop.org/upower/upower.git;protocol=https;branch=master"
|
|
SRCREV = "0f6cc0a10be22d7ddd684e1cd851e4364a440494"
|
|
S = "${WORKDIR}/git"
|
|
|
|
UPSTREAM_CHECK_GITTAGREGEX = "UPOWER_(?P<pver>\d+(\_\d+)+)"
|
|
|
|
inherit autotools pkgconfig gtk-doc gettext gobject-introspection systemd
|
|
|
|
PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}"
|
|
PACKAGECONFIG[idevice] = "--with-idevice,--without-idevice,libimobiledevice libplist"
|
|
PACKAGECONFIG[systemd] = "--with-systemdutildir=${systemd_unitdir} --with-systemdsystemunitdir=${systemd_system_unitdir}, \
|
|
--without-systemdutildir --without-systemdsystemunitdir,systemd"
|
|
|
|
EXTRA_OECONF = " --with-backend=linux"
|
|
|
|
SYSTEMD_SERVICE:${PN} = "upower.service"
|
|
# don't start on boot by default - dbus does that on demand
|
|
SYSTEMD_AUTO_ENABLE = "disable"
|
|
|
|
do_configure:prepend() {
|
|
touch ${S}/ABOUT-NLS
|
|
mkdir -p ${S}/build-aux
|
|
touch ${S}/build-aux/config.rpath
|
|
sed -i -e s:-nonet:\:g ${S}/doc/man/Makefile.am
|
|
sed -i -e 's: doc : :g' ${S}/Makefile.am
|
|
}
|
|
|
|
RDEPENDS:${PN} += "dbus"
|
|
RRECOMMENDS:${PN} += "pm-utils"
|
|
FILES:${PN} += "${datadir}/dbus-1/ \
|
|
${base_libdir}/udev/* \
|
|
"
|