forked from pool/multipath-tools
- Update to version 0.9.9+90+suse.f1d2f20:
* Fix unit tests on Tumbleweed/armv7l - Update to 0.9.9 upstream (see NEWS.md for details) * Update udev rules to be compliant with device-mapper udev rules update in LVM2 >= 2.03.24. * Limit real-time scheduling priority to 10 by default. This can now be configured in multipathd.service using "LimitRTPRIO=" * Set max_sectors_kb only on map creation, or when a new path is added, to avoid IO errors * The configuration option "flush_on_last_del" now takes the values "always" (="yes"), "unused" (="no"), and "never". "yes" and "no" are still supported * Add wildcard %k for max_sectors_kb for CLI commands like "multipath show {paths,maps} format" * Accept WWID value in CLI commands that take a map name, like "resize map $map" * Removed support for CLI wildcards for pathgroups, which were not function anyway. * Fix map failure count for no_path_retry > 0 OBS-URL: https://build.opensuse.org/package/show/Base:System/multipath-tools?expand=0&rev=339
This commit is contained in:
parent
e54a0cbcfc
commit
ffcabc7377
4
_service
4
_service
@ -6,7 +6,9 @@
|
||||
<param name="filename">multipath-tools</param>
|
||||
<param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@+suse.%h</param>
|
||||
<param name="revision">factory</param>
|
||||
<param name="match-tag">0.[0-9].[0-9]</param>
|
||||
<param name="match-tag">0.[0-9].[0-9]*</param>
|
||||
<param name="versionrewrite-pattern">[-]pre\.([0-9])</param>
|
||||
<param name="versionrewrite-replacement">~\1</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
</service>
|
||||
<service name="set_version" mode="manual"/>
|
||||
|
@ -1,4 +1,4 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">https://github.com/openSUSE/multipath-tools.git</param>
|
||||
<param name="changesrevision">d504d833c678c52886e7762254658896ce6a8e7b</param></service></servicedata>
|
||||
<param name="changesrevision">f1d2f2079f7e337dffec1a9ea78fe0085d7be35e</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2d4f1ea53704195d452dfed2b4e19564f13b242bca3ba97da8da1414abeaac06
|
||||
size 2868236
|
3
multipath-tools-0.9.9+90+suse.f1d2f20.obscpio
Normal file
3
multipath-tools-0.9.9+90+suse.f1d2f20.obscpio
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:03d88f7c26f6375662fc7a25c5532794294fe5cc5b94c5b4c4834851bcac5cf6
|
||||
size 2893836
|
@ -1,9 +1,28 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 11 15:22:02 UTC 2024 - Martin Wilck <mwilck@suse.com>
|
||||
Tue Jun 25 13:19:58 UTC 2024 - Martin Wilck <mwilck@suse.com>
|
||||
|
||||
- Update to version 0.9.8+88+suse.d504d83:
|
||||
- Update to version 0.9.9+90+suse.f1d2f20:
|
||||
* Fix unit tests on Tumbleweed/armv7l
|
||||
|
||||
- Update to 0.9.9 upstream (see NEWS.md for details)
|
||||
* Update udev rules to be compliant with device-mapper udev
|
||||
rules update in LVM2 >= 2.03.24.
|
||||
* Limit real-time scheduling priority to 10 by default. This
|
||||
can now be configured in multipathd.service using "LimitRTPRIO="
|
||||
* Set max_sectors_kb only on map creation, or when a new path
|
||||
is added, to avoid IO errors
|
||||
* Revert "libmultipath: fix max_sectors_kb on adding path"
|
||||
(bsc#1222458)
|
||||
* The configuration option "flush_on_last_del" now takes the
|
||||
values "always" (="yes"), "unused" (="no"), and "never". "yes"
|
||||
and "no" are still supported
|
||||
* Add wildcard %k for max_sectors_kb for CLI commands like
|
||||
"multipath show {paths,maps} format"
|
||||
* Accept WWID value in CLI commands that take a map name, like
|
||||
"resize map $map"
|
||||
* Removed support for CLI wildcards for pathgroups, which were
|
||||
not function anyway.
|
||||
* Fix map failure count for no_path_retry > 0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 5 20:19:12 UTC 2024 - Martin Wilck <mwilck@suse.com>
|
||||
|
@ -1,4 +1,4 @@
|
||||
name: multipath-tools
|
||||
version: 0.9.8+88+suse.d504d83
|
||||
mtime: 1712848814
|
||||
commit: d504d833c678c52886e7762254658896ce6a8e7b
|
||||
version: 0.9.9+90+suse.f1d2f20
|
||||
mtime: 1719321085
|
||||
commit: f1d2f2079f7e337dffec1a9ea78fe0085d7be35e
|
||||
|
@ -35,7 +35,7 @@
|
||||
%define libdmmp_version %(echo %{_libdmmp_version} | tr . _)
|
||||
|
||||
Name: multipath-tools
|
||||
Version: 0.9.8+88+suse.d504d83
|
||||
Version: 0.9.9+90+suse.f1d2f20
|
||||
Release: 0
|
||||
Summary: Tools to Manage Multipathed Devices with the device-mapper
|
||||
License: GPL-2.0-only AND GPL-3.0-or-later
|
||||
@ -169,9 +169,11 @@ cp %{SOURCE4} .
|
||||
%{make_build} OPTFLAGS="%{mp_optflags}" %{dirflags} %{makeflags} V=1
|
||||
|
||||
%if 0%{?with_check} == 1
|
||||
%ifnarch armv7l
|
||||
%check
|
||||
%{make_build} OPTFLAGS="%{mp_optflags}" %{dirflags} %{makeflags} V=1 test
|
||||
%endif
|
||||
%endif
|
||||
|
||||
%install
|
||||
%make_install %{dirflags} %{makeflags} V=1
|
||||
|
Loading…
x
Reference in New Issue
Block a user