Accepting request 935284 from home:luc14n0:branches:Base:System
Update to version 2.9.4. OBS-URL: https://build.opensuse.org/request/show/935284 OBS-URL: https://build.opensuse.org/package/show/Base:System/udisks2?expand=0&rev=91
This commit is contained in:
parent
5fdaba6df0
commit
20b11ead9f
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bda6f9d7edc632c57e55862731a8ffeff2413fa4346708a22bf31ed72b0fe058
|
||||
size 1701377
|
BIN
udisks-2.9.4.tar.bz2
(Stored with Git LFS)
Normal file
BIN
udisks-2.9.4.tar.bz2
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 17 18:30:14 UTC 2021 - Luciano Santos <luc14n0@linuxmail.org>
|
||||
|
||||
- Update to version 2.9.4:
|
||||
+ Many fixes, improvements, and additions to the code.
|
||||
+ Mount options:
|
||||
- Always use errors=remount-ro for ext filesystems;
|
||||
- Add ntfs3 kernel driver options.
|
||||
+ Build: Remove warnings unknown to clang.
|
||||
+ Tests: Adapt to clang differences when causing a segfault.
|
||||
|
||||
- Changes from version 2.9.3:
|
||||
+ Many fixes, improvements, and additions to the code and test.
|
||||
- Add "%tmpfiles_create %{_tmpfilesdir}/udisks2.conf" call in %post
|
||||
section to make sure /run/media will be created right after the
|
||||
instalation of udisks2.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 12 00:00:13 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
@ -7,18 +24,24 @@ Fri Feb 12 00:00:13 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
* tests: Test modules that are actually enabled during build
|
||||
* build: Exclude VDO module from distcheck build
|
||||
* udisksfstabentry: Add udisks_fstab_entry_has_opt()
|
||||
* udiskslinuxblock: Reflect fstab "noauto" mount option in HintAuto
|
||||
* udiskslinuxblock: Reflect fstab "noauto" mount option in
|
||||
HintAuto
|
||||
* udiskslinuxblock: Update hints after fstab change
|
||||
* tests: Add tests for Block hints
|
||||
* udiskslinuxfilesystemhelpers: Make TakeOwnership() race free
|
||||
* tests: Extend filesystem test_take_ownership tests with symlinks
|
||||
* mount options: Allow 'nosymfollow' mount option for unprivileged mounts
|
||||
* udisksstate: Silence the block device busy messages on cleanup lock
|
||||
* tests: Extend filesystem test_take_ownership tests with
|
||||
symlinks
|
||||
* mount options: Allow 'nosymfollow' mount option for
|
||||
unprivileged mounts
|
||||
* udisksstate: Silence the block device busy messages on cleanup
|
||||
lock
|
||||
* udev: Distinguish mmcblk-class device types
|
||||
* udev: Propagate mmcblk disk attributes to mmcblk_boot devices
|
||||
* udiskslinuxdrive: Tweak the 'removable'/'ejectable' hints for mmcblk-class devices
|
||||
* udiskslinuxdrive: Tweak the 'removable'/'ejectable' hints for
|
||||
mmcblk-class devices
|
||||
* udiskslinuxblock: Tweak the hints for mmcblk-class devices
|
||||
* udisksdaemonutil: Refactor udisks_daemon_util_trigger_uevent() out of UDisksLinuxBlockObject
|
||||
* udisksdaemonutil: Refactor udisks_daemon_util_trigger_uevent()
|
||||
out of UDisksLinuxBlockObject
|
||||
* udiskslinuxmanager: Trigger uevent after loop device setup
|
||||
* tests: Remove scsi_debug serial number checks
|
||||
* tests: Skip zram tests if zram module is already loaded
|
||||
@ -27,7 +50,8 @@ Fri Feb 12 00:00:13 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
* tests: Do not use nilfs2 as an example of non-resizable FS
|
||||
* Memory leak fixes
|
||||
* doc: Update config file path
|
||||
- drop udisks2-Fix-memory-leaks.patch, udisks2-lvm2-Fix-leaking-BDLVMVDOPooldata.patch (upstream)
|
||||
- Drop udisks2-Fix-memory-leaks.patch, and
|
||||
udisks2-lvm2-Fix-leaking-BDLVMVDOPooldata.patch (upstream).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 19 16:16:59 UTC 2020 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||
|
@ -21,7 +21,7 @@
|
||||
%define libblockdev_version 2.19
|
||||
|
||||
Name: udisks2
|
||||
Version: 2.9.2
|
||||
Version: 2.9.4
|
||||
Release: 0
|
||||
Summary: Disk Manager
|
||||
License: GPL-2.0-or-later AND LGPL-2.0-or-later
|
||||
@ -242,6 +242,7 @@ ln -sf %{_sbindir}/service %{buildroot}/%{_sbindir}/rc%{name}
|
||||
%post -n %{name}
|
||||
%{?udev_rules_update:%udev_rules_update}
|
||||
%service_add_post udisks2.service
|
||||
%tmpfiles_create %{_tmpfilesdir}/udisks2.conf
|
||||
|
||||
%preun -n %{name}
|
||||
%service_del_preun udisks2.service
|
||||
@ -265,7 +266,7 @@ ln -sf %{_sbindir}/service %{buildroot}/%{_sbindir}/rc%{name}
|
||||
%doc AUTHORS NEWS
|
||||
%{_bindir}/udisksctl
|
||||
%config %{_datadir}/dbus-1/system.d/org.freedesktop.UDisks2.conf
|
||||
%{_prefix}/lib/tmpfiles.d/udisks2.conf
|
||||
%{_tmpfilesdir}/udisks2.conf
|
||||
%{_datadir}/bash-completion/completions/udisksctl
|
||||
%{_unitdir}/udisks2.service
|
||||
%dir %{_udevrulesdir}
|
||||
|
Loading…
Reference in New Issue
Block a user