Commit 46a615bb authored by Vicente Olivert Riera's avatar Vicente Olivert Riera Committed by Peter Korsgaard
Browse files

udisks: bump to version 1.0.5



This version depends on libgudev when using systemd, otherwise it fails
with an error like this one:

checking for GUDEV... no
configure: error: Package requirements (gudev-1.0 >= 147) were not met:

[Peter: add to _DEPENDENCIES, not _CONF_OPTS]
Signed-off-by: default avatarVicente Olivert Riera <Vincent.Riera@imgtec.com>
Reviewed-by: default avatarArnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent 3cd209bf
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -12,6 +12,12 @@ config BR2_PACKAGE_UDISKS
	select BR2_PACKAGE_PARTED
	select BR2_PACKAGE_LVM2
	select BR2_PACKAGE_LIBATASMART
	# When eudev is used as the udev provider, libgudev is automatically
	# provided as it is part of eudev. However, when systemd is used as
	# the udev provider, libgudev is not provided, and needs to be built
	# separately. This is why we select the libgudev package only if
	# systemd is used.
	select BR2_PACKAGE_LIBGUDEV if BR2_PACKAGE_SYSTEMD
	help
	  The udisks project provides

+1 −1
Original line number Diff line number Diff line
# Locally calculated
sha256	854b89368733b9c3a577101b761ad5397ae75a05110c8698ac5b29de9a8bf8f5	udisks-1.0.4.tar.gz
sha256 f2ec82eb0ea7e01dc299b5b29b3c18cdf861236ec43dcff66b3552b4b31c6f71  udisks-1.0.5.tar.gz
+10 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
#
################################################################################

UDISKS_VERSION = 1.0.4
UDISKS_VERSION = 1.0.5
UDISKS_SITE = http://hal.freedesktop.org/releases
UDISKS_LICENSE = GPLv2+
UDISKS_LICENSE_FILES = COPYING
@@ -22,6 +22,15 @@ UDISKS_DEPENDENCIES = \

UDISKS_CONF_OPTS = --disable-remote-access --disable-man-pages

# When eudev is used as the udev provider, libgudev is automatically
# provided as it is part of eudev. However, when systemd is used as the
# udev provider, libgudev is not provided, and needs to be built
# separately. This is why we select the libgudev package only if systemd
# is used.
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
UDISKS_DEPENDENCIES += libgudev
endif

ifeq ($(BR2_PACKAGE_UDISKS_LVM2),y)
UDISKS_CONF_OPTS += --enable-lvm2
endif