summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/udisks
diff options
context:
space:
mode:
authorAndreas Müller <schnitzeltony@gmail.com>2019-04-09 00:42:54 +0200
committerKhem Raj <raj.khem@gmail.com>2019-04-09 21:31:36 -0700
commite8db74cfb1525e412d2c5a2cd7f85f3fbdbe79b2 (patch)
tree0e19a8dc5b80ce6f6bc97c8d2bcb5dad11248da1 /meta-oe/recipes-support/udisks
parentb3f296ae68aae994d2e368787708bc0b70791826 (diff)
downloadmeta-openembedded-e8db74cfb1525e412d2c5a2cd7f85f3fbdbe79b2.tar.gz
udisks2: upgrade 2.8.1 -> 2.8.2
>From release shortlog [1]: | The 2.8.2 release brings mostly bugfixes without any changes to the public API. Notable changes include: | | * migration from intltool to gettext, udisks no longer depends on gnome-common | * added 'windows_names' as a default mount option for ntfs-3g | * fixed an issue potentially leading to open filedescriptors exhaustion OE-Notes: * Follow changes mentioned in announcement * Rename recipe and move PV into recipe [1] https://github.com/storaged-project/udisks/releases Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/udisks')
-rw-r--r--meta-oe/recipes-support/udisks/udisks2_git.bb (renamed from meta-oe/recipes-support/udisks/udisks2_2.8.1.bb)13
1 files changed, 9 insertions, 4 deletions
diff --git a/meta-oe/recipes-support/udisks/udisks2_2.8.1.bb b/meta-oe/recipes-support/udisks/udisks2_git.bb
index 3f2130ecd..9c9e5e52a 100644
--- a/meta-oe/recipes-support/udisks/udisks2_2.8.1.bb
+++ b/meta-oe/recipes-support/udisks/udisks2_git.bb
@@ -10,8 +10,6 @@ DEPENDS = " \
10 dbus-glib \ 10 dbus-glib \
11 glib-2.0 \ 11 glib-2.0 \
12 libblockdev \ 12 libblockdev \
13 intltool-native \
14 gnome-common-native \
15 libxslt-native \ 13 libxslt-native \
16" 14"
17DEPENDS += "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}" 15DEPENDS += "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}"
@@ -22,17 +20,24 @@ SRC_URI = " \
22 git://github.com/storaged-project/udisks.git;branch=master \ 20 git://github.com/storaged-project/udisks.git;branch=master \
23 file://non-gnu-libc.patch \ 21 file://non-gnu-libc.patch \
24" 22"
25SRCREV = "05ae471be3c2adf2255b3a01edb00bba06e02afb" 23PV = "2.8.2"
24SRCREV = "7a787aa3b340fc7f1ca72d748635d6c5445edc58"
26S = "${WORKDIR}/git" 25S = "${WORKDIR}/git"
27 26
28CVE_PRODUCT = "udisks" 27CVE_PRODUCT = "udisks"
29 28
30inherit autotools systemd gtk-doc gobject-introspection distro_features_check 29inherit autotools systemd gtk-doc gobject-introspection gettext distro_features_check
31 30
32REQUIRED_DISTRO_FEATURES = "polkit" 31REQUIRED_DISTRO_FEATURES = "polkit"
33 32
34EXTRA_OECONF = "--disable-man --disable-gtk-doc" 33EXTRA_OECONF = "--disable-man --disable-gtk-doc"
35 34
35do_configure_prepend() {
36 # | configure.ac:656: error: required file 'build-aux/config.rpath' not found
37 mkdir -p ${S}/build-aux
38 touch ${S}/build-aux/config.rpath
39}
40
36FILES_${PN} += " \ 41FILES_${PN} += " \
37 ${datadir}/dbus-1/ \ 42 ${datadir}/dbus-1/ \
38 ${datadir}/polkit-1 \ 43 ${datadir}/polkit-1 \