diff options
author | Andreas Müller <schnitzeltony@gmail.com> | 2019-04-09 00:42:54 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-04-09 21:31:36 -0700 |
commit | e8db74cfb1525e412d2c5a2cd7f85f3fbdbe79b2 (patch) | |
tree | 0e19a8dc5b80ce6f6bc97c8d2bcb5dad11248da1 /meta-oe/recipes-support/udisks | |
parent | b3f296ae68aae994d2e368787708bc0b70791826 (diff) | |
download | meta-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 | " |
17 | DEPENDS += "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}" | 15 | DEPENDS += "${@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 | " |
25 | SRCREV = "05ae471be3c2adf2255b3a01edb00bba06e02afb" | 23 | PV = "2.8.2" |
24 | SRCREV = "7a787aa3b340fc7f1ca72d748635d6c5445edc58" | ||
26 | S = "${WORKDIR}/git" | 25 | S = "${WORKDIR}/git" |
27 | 26 | ||
28 | CVE_PRODUCT = "udisks" | 27 | CVE_PRODUCT = "udisks" |
29 | 28 | ||
30 | inherit autotools systemd gtk-doc gobject-introspection distro_features_check | 29 | inherit autotools systemd gtk-doc gobject-introspection gettext distro_features_check |
31 | 30 | ||
32 | REQUIRED_DISTRO_FEATURES = "polkit" | 31 | REQUIRED_DISTRO_FEATURES = "polkit" |
33 | 32 | ||
34 | EXTRA_OECONF = "--disable-man --disable-gtk-doc" | 33 | EXTRA_OECONF = "--disable-man --disable-gtk-doc" |
35 | 34 | ||
35 | do_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 | |||
36 | FILES_${PN} += " \ | 41 | FILES_${PN} += " \ |
37 | ${datadir}/dbus-1/ \ | 42 | ${datadir}/dbus-1/ \ |
38 | ${datadir}/polkit-1 \ | 43 | ${datadir}/polkit-1 \ |