mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-09 04:53:04 +00:00
Changes since 2.9.2: * Ignore "Extended Boot Loader" GPT partition * Use the mkfs command to format exfat partitions * udiskslinuxblockobject: Add safety checks for UDisksLinuxBlock interface * udiskslinuxfsinfo: Add dosfstools >= 4.2 quirks * udiskslinuxblock: Re-read partition table after creating FAT filesystem * udiskslinuxdriveata: Use GTask to apply configuration in a thread * udiskslinuxfilesystemhelpers: Fix leaking string in case g_mkdtemp() fails * udiskslinuxmdraidobject: Optimize unused data out from the g_io_channel_read_to_end() call * udiskslinuxmdraidobject: Handle source attach failure gracefully * udiskslinuxmanager: Trigger uevent on a newly created mdraid array * udiskslinuxswapspace: Trigger uevent after setting label * udiskslinuxblock: Handle missing parent device while looking up drive for block * modules: Limit module name to alphanumeric characters and -_ separators * tests: Mark Drive.ATA tests as unstable * tests: Handle missing /dev/disk/by-path gracefully * tests: Respect custom method call timeouts * tests: Extend iscsi method call timeouts * tests: Extend module tests with invalid characters * tests: Do not dist config_h.py * spec: Do not build udisks2-zram for any RHEL release * udiskslinuxpartition: Trigger uevent after changing partition type * dbus_tests: Fix including non-existing tests based on tags * Add (no)autodefrag to list of allowed btrfs mount options * udisksclient: Make get_block_for_drive deterministic * Fix two comments (one copy'o, one typo) Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
54 lines
1.4 KiB
BlitzBasic
54 lines
1.4 KiB
BlitzBasic
SUMMARY = "udisks provides dbus interfaces for disks and storage devices"
|
|
LICENSE = "GPLv2+ & LGPLv2+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=dd79f6dbbffdbc8e86b086a8f0c0ef43"
|
|
|
|
DEPENDS = " \
|
|
glib-2.0-native \
|
|
libxslt-native \
|
|
acl \
|
|
libatasmart \
|
|
polkit \
|
|
libgudev \
|
|
glib-2.0 \
|
|
dbus-glib \
|
|
libblockdev \
|
|
"
|
|
DEPENDS += "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}"
|
|
|
|
RDEPENDS:${PN} = "acl"
|
|
|
|
SRC_URI = "git://github.com/storaged-project/udisks.git;branch=2.9.x-branch"
|
|
SRCREV = "c430dd9a27e158693cc783e9ee91bf6e5b2a8819"
|
|
S = "${WORKDIR}/git"
|
|
|
|
CVE_PRODUCT = "udisks"
|
|
|
|
inherit autotools-brokensep systemd gtk-doc gobject-introspection gettext features_check
|
|
|
|
REQUIRED_DISTRO_FEATURES = "polkit"
|
|
|
|
EXTRA_OECONF = "--disable-man --disable-gtk-doc"
|
|
|
|
do_configure:prepend() {
|
|
# | configure.ac:656: error: required file 'build-aux/config.rpath' not found
|
|
mkdir -p ${S}/build-aux
|
|
touch ${S}/build-aux/config.rpath
|
|
}
|
|
|
|
FILES:${PN} += " \
|
|
${datadir}/dbus-1/ \
|
|
${datadir}/polkit-1 \
|
|
${datadir}/bash-completion \
|
|
${libdir}/polkit-1/extensions/*.so \
|
|
${nonarch_base_libdir}/udev/* \
|
|
${exec_prefix}${nonarch_base_libdir}/udisks2/* \
|
|
${systemd_system_unitdir} \
|
|
"
|
|
|
|
PACKAGES =+ "${PN}-libs"
|
|
FILES:${PN}-libs = "${libdir}/lib*${SOLIBS}"
|
|
FILES:${PN} += "${nonarch_libdir}/tmpfiles.d"
|
|
|
|
SYSTEMD_SERVICE:${PN} = "${BPN}.service"
|
|
SYSTEMD_AUTO_ENABLE = "disable"
|