diff options
| -rw-r--r-- | meta-oe/recipes-support/upower/upower_0.99.13.bb | 38 | ||||
| -rw-r--r-- | meta-oe/recipes-support/upower/upower_0.99.17.bb | 44 |
2 files changed, 44 insertions, 38 deletions
diff --git a/meta-oe/recipes-support/upower/upower_0.99.13.bb b/meta-oe/recipes-support/upower/upower_0.99.13.bb deleted file mode 100644 index 55a7354820..0000000000 --- a/meta-oe/recipes-support/upower/upower_0.99.13.bb +++ /dev/null | |||
| @@ -1,38 +0,0 @@ | |||
| 1 | DESCRIPTION = "UPower is an abstraction for enumerating power devices, listening to device events and querying history and statistics. " | ||
| 2 | LICENSE = "GPL-2.0-or-later" | ||
| 3 | LIC_FILES_CHKSUM = "file://COPYING;md5=0de8fbf1d97a140d1d93b9f14dcfbf08" | ||
| 4 | |||
| 5 | DEPENDS = "intltool-native libusb1 libgudev glib-2.0 dbus-glib" | ||
| 6 | |||
| 7 | SRC_URI = "git://gitlab.freedesktop.org/upower/upower.git;protocol=https;branch=master" | ||
| 8 | SRCREV = "0f6cc0a10be22d7ddd684e1cd851e4364a440494" | ||
| 9 | S = "${WORKDIR}/git" | ||
| 10 | |||
| 11 | UPSTREAM_CHECK_GITTAGREGEX = "UPOWER_(?P<pver>\d+(\_\d+)+)" | ||
| 12 | |||
| 13 | inherit autotools pkgconfig gtk-doc gettext gobject-introspection systemd | ||
| 14 | |||
| 15 | PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}" | ||
| 16 | PACKAGECONFIG[idevice] = "--with-idevice,--without-idevice,libimobiledevice libplist" | ||
| 17 | PACKAGECONFIG[systemd] = "--with-systemdutildir=${systemd_unitdir} --with-systemdsystemunitdir=${systemd_system_unitdir}, \ | ||
| 18 | --without-systemdutildir --without-systemdsystemunitdir,systemd" | ||
| 19 | |||
| 20 | EXTRA_OECONF = " --with-backend=linux" | ||
| 21 | |||
| 22 | SYSTEMD_SERVICE:${PN} = "upower.service" | ||
| 23 | # don't start on boot by default - dbus does that on demand | ||
| 24 | SYSTEMD_AUTO_ENABLE = "disable" | ||
| 25 | |||
| 26 | do_configure:prepend() { | ||
| 27 | touch ${S}/ABOUT-NLS | ||
| 28 | mkdir -p ${S}/build-aux | ||
| 29 | touch ${S}/build-aux/config.rpath | ||
| 30 | sed -i -e s:-nonet:\:g ${S}/doc/man/Makefile.am | ||
| 31 | sed -i -e 's: doc : :g' ${S}/Makefile.am | ||
| 32 | } | ||
| 33 | |||
| 34 | RDEPENDS:${PN} += "dbus" | ||
| 35 | RRECOMMENDS:${PN} += "pm-utils" | ||
| 36 | FILES:${PN} += "${datadir}/dbus-1/ \ | ||
| 37 | ${base_libdir}/udev/* \ | ||
| 38 | " | ||
diff --git a/meta-oe/recipes-support/upower/upower_0.99.17.bb b/meta-oe/recipes-support/upower/upower_0.99.17.bb new file mode 100644 index 0000000000..d30fcea871 --- /dev/null +++ b/meta-oe/recipes-support/upower/upower_0.99.17.bb | |||
| @@ -0,0 +1,44 @@ | |||
| 1 | SUMMARY = "UPower is an abstraction for enumerating power devices" | ||
| 2 | DESCRIPTION = "UPower is an abstraction for enumerating power devices, listening to device events and querying history and statistics." | ||
| 3 | LICENSE = "GPL-2.0-or-later" | ||
| 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=0de8fbf1d97a140d1d93b9f14dcfbf08" | ||
| 5 | |||
| 6 | DEPENDS = " \ | ||
| 7 | intltool-native \ | ||
| 8 | libusb1 \ | ||
| 9 | libgudev \ | ||
| 10 | glib-2.0 \ | ||
| 11 | dbus-glib \ | ||
| 12 | " | ||
| 13 | |||
| 14 | SRC_URI = "git://gitlab.freedesktop.org/upower/upower.git;protocol=https;branch=master" | ||
| 15 | SRCREV = "c889154ec8e3e2239db9260d48b2e198d72ba002" | ||
| 16 | S = "${WORKDIR}/git" | ||
| 17 | |||
| 18 | UPSTREAM_CHECK_GITTAGREGEX = "UPOWER_(?P<pver>\d+(\_\d+)+)" | ||
| 19 | |||
| 20 | GIR_MESON_ENABLE_FLAG = "enabled" | ||
| 21 | GIR_MESON_DISABLE_FLAG = "disabled" | ||
| 22 | GTKDOC_MESON_OPTION = "gtk-doc" | ||
| 23 | |||
| 24 | inherit meson pkgconfig gtk-doc gettext gobject-introspection systemd | ||
| 25 | |||
| 26 | PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}" | ||
| 27 | PACKAGECONFIG[idevice] = "-Didevice=enabled,-Didevice=disabled,libimobiledevice libplist" | ||
| 28 | PACKAGECONFIG[systemd] = "-Dsystemdsystemunitdir=${systemd_system_unitdir},-Dsystemdsystemunitdir=no,systemd" | ||
| 29 | |||
| 30 | EXTRA_OEMESON = " \ | ||
| 31 | -Dos_backend=linux \ | ||
| 32 | -Dman=false \ | ||
| 33 | " | ||
| 34 | |||
| 35 | SYSTEMD_SERVICE:${PN} = "upower.service" | ||
| 36 | # don't start on boot by default - dbus does that on demand | ||
| 37 | SYSTEMD_AUTO_ENABLE = "disable" | ||
| 38 | |||
| 39 | RDEPENDS:${PN} += "dbus" | ||
| 40 | RRECOMMENDS:${PN} += "pm-utils" | ||
| 41 | FILES:${PN} += " \ | ||
| 42 | ${datadir}/dbus-1/ \ | ||
| 43 | ${base_libdir}/udev/* \ | ||
| 44 | " | ||
