Accepting request 813238 from Base:System
- Update to version 0.8.4+43+suse.908383f: * enable negated regular expression syntax in conf file * change default devnode blacklist to '!^(sd[a-z]|dasd[a-z]|nvme[0-9])' (forwarded request 813227 from mwilck) OBS-URL: https://build.opensuse.org/request/show/813238 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/multipath-tools?expand=0&rev=123
This commit is contained in:
commit
250d12958b
@ -1,4 +1,4 @@
|
|||||||
<servicedata>
|
<servicedata>
|
||||||
<service name="tar_scm">
|
<service name="tar_scm">
|
||||||
<param name="url">https://github.com/openSUSE/multipath-tools.git</param>
|
<param name="url">https://github.com/openSUSE/multipath-tools.git</param>
|
||||||
<param name="changesrevision">8f5376473185e79aa7b2a68746a4ec83d870d02f</param></service></servicedata>
|
<param name="changesrevision">908383f93b525ce0a07beb974ee6f2bcf8f6ee4c</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:408d1eef227bfe5dbf14b66f515ca345e1cfe33962c2477e06ab62c1945335de
|
|
||||||
size 2424332
|
|
3
multipath-tools-0.8.4+43+suse.908383f.obscpio
Normal file
3
multipath-tools-0.8.4+43+suse.908383f.obscpio
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:dc86714e8c637b62bc16467b8b3168666b5636230d6a8f0a2d9699a419e4a2b8
|
||||||
|
size 2449932
|
@ -1,3 +1,25 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 10 10:56:49 UTC 2020 - mwilck@suse.com
|
||||||
|
|
||||||
|
- Update to version 0.8.4+43+suse.908383f:
|
||||||
|
* enable negated regular expression syntax in conf file
|
||||||
|
* change default devnode blacklist to
|
||||||
|
'!^(sd[a-z]|dasd[a-z]|nvme[0-9])'
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 08 16:13:31 UTC 2020 - mwilck@suse.com
|
||||||
|
|
||||||
|
- Update to version 0.8.4+40+suse.b06c2e5a:
|
||||||
|
- Fix udev rule processing during coldplug (bsc#1172157)
|
||||||
|
* 11-dm-mpath.rules: Fix udev rule processing during coldplug
|
||||||
|
- Fix compilation with gcc-10
|
||||||
|
* fix boolean value with json-c 0.14
|
||||||
|
* libmultipath: fix condlog NULL argument in uevent_get_env_var
|
||||||
|
- Reviewed upstream changes:
|
||||||
|
* simplify failed_wwid code
|
||||||
|
* centralize path validation code
|
||||||
|
- Use pkgconfig for BuildRequires
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue May 12 20:17:49 UTC 2020 - mwilck@suse.com
|
Tue May 12 20:17:49 UTC 2020 - mwilck@suse.com
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
name: multipath-tools
|
name: multipath-tools
|
||||||
version: 0.8.4+31+suse.8f53764
|
version: 0.8.4+43+suse.908383f
|
||||||
mtime: 1589314526
|
mtime: 1591786519
|
||||||
commit: 8f5376473185e79aa7b2a68746a4ec83d870d02f
|
commit: 908383f93b525ce0a07beb974ee6f2bcf8f6ee4c
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@
|
|||||||
%define _sysdir usr/lib
|
%define _sysdir usr/lib
|
||||||
|
|
||||||
Name: multipath-tools
|
Name: multipath-tools
|
||||||
Version: 0.8.4+31+suse.8f53764
|
Version: 0.8.4+43+suse.908383f
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Tools to Manage Multipathed Devices with the device-mapper
|
Summary: Tools to Manage Multipathed Devices with the device-mapper
|
||||||
License: GPL-2.0-only
|
License: GPL-2.0-only
|
||||||
@ -53,12 +53,12 @@ Source3: dm-parts.conf
|
|||||||
Source4: libmpathpersist-example.c
|
Source4: libmpathpersist-example.c
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%{?systemd_requires}
|
%{?systemd_requires}
|
||||||
BuildRequires: device-mapper-devel
|
BuildRequires: pkgconfig(devmapper)
|
||||||
BuildRequires: libaio-devel
|
BuildRequires: libaio-devel
|
||||||
%if 0%{?with_libdmmp} == 1
|
%if 0%{?with_libdmmp} == 1
|
||||||
BuildRequires: libjson-c-devel
|
BuildRequires: pkgconfig(json-c)
|
||||||
%endif
|
%endif
|
||||||
BuildRequires: liburcu-devel
|
BuildRequires: pkgconfig(liburcu)
|
||||||
BuildRequires: readline-devel
|
BuildRequires: readline-devel
|
||||||
BuildRequires: pkgconfig(libsystemd)
|
BuildRequires: pkgconfig(libsystemd)
|
||||||
BuildRequires: pkgconfig(libudev)
|
BuildRequires: pkgconfig(libudev)
|
||||||
@ -67,9 +67,10 @@ BuildRequires: pkgconfig(udev)
|
|||||||
%if 0%{?with_check} == 1
|
%if 0%{?with_check} == 1
|
||||||
BuildRequires: pkgconfig(cmocka)
|
BuildRequires: pkgconfig(cmocka)
|
||||||
%endif
|
%endif
|
||||||
# For regenerate_initrd_posttrans macro
|
|
||||||
BuildRequires: suse-module-tools
|
|
||||||
# For regenerate-initrd-posttrans
|
# For regenerate-initrd-posttrans
|
||||||
|
# For now, we still need to require suse-module-tools
|
||||||
|
# See https://github.com/openSUSE/rpm-config-SUSE/pull/6
|
||||||
|
BuildRequires: suse-module-tools
|
||||||
Requires(post): suse-module-tools
|
Requires(post): suse-module-tools
|
||||||
Requires: device-mapper >= 1.2.78
|
Requires: device-mapper >= 1.2.78
|
||||||
Requires: kpartx
|
Requires: kpartx
|
||||||
|
Loading…
x
Reference in New Issue
Block a user