SHA256
1
0
forked from pool/lvm2

Accepting request 670483 from Base:System

OBS-URL: https://build.opensuse.org/request/show/670483
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/lvm2?expand=0&rev=122
This commit is contained in:
Stephan Kulow 2019-02-08 12:45:07 +00:00 committed by Git OBS Bridge
commit 87e38faae3
6 changed files with 52 additions and 7 deletions

View File

@ -1,3 +1,14 @@
-------------------------------------------------------------------
Fri Feb 1 08:20:15 UTC 2019 - ghe@suse.com
- Disable the LVM lock daemon using sanlock, in order to avoid the
dependence on sanlock related packages (bsc#1121382)
-------------------------------------------------------------------
Mon Jan 14 14:23:52 CET 2019 - kukuk@suse.de
- Use %license instead of %doc [bsc#1082318]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 5 08:10:05 UTC 2018 - ghe@suse.com Mon Nov 5 08:10:05 UTC 2018 - ghe@suse.com

View File

@ -1,7 +1,7 @@
# #
# spec file for package device-mapper # spec file for package device-mapper
# #
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. # Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@ -12,7 +12,7 @@
# license that conforms to the Open Source Definition (Version 1.9) # license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative. # published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/ # Please submit bugfixes or comments via https://bugs.opensuse.org/
# #
@ -156,7 +156,8 @@ ln -s %{_sbindir}/dmsetup %{buildroot}/sbin/dmsetup
%files %files
%defattr(-,root,root) %defattr(-,root,root)
%doc COPYING COPYING.LIB README %license COPYING COPYING.LIB
%doc README
%doc udev/12-dm-permissions.rules %doc udev/12-dm-permissions.rules
/sbin/dmsetup /sbin/dmsetup
%{_sbindir}/dmsetup %{_sbindir}/dmsetup

View File

@ -1,3 +1,14 @@
-------------------------------------------------------------------
Fri Feb 1 08:20:15 UTC 2019 - ghe@suse.com
- Disable the LVM lock daemon using sanlock, in order to avoid the
dependence on sanlock related packages (bsc#1121382)
-------------------------------------------------------------------
Mon Jan 14 14:23:52 CET 2019 - kukuk@suse.de
- Use %license instead of %doc [bsc#1082318]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 5 08:10:05 UTC 2018 - ghe@suse.com Mon Nov 5 08:10:05 UTC 2018 - ghe@suse.com

View File

@ -1,7 +1,7 @@
# #
# spec file for package lvm2-clvm # spec file for package lvm2-clvm
# #
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. # Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@ -12,12 +12,17 @@
# license that conforms to the Open Source Definition (Version 1.9) # license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative. # published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/ # Please submit bugfixes or comments via https://bugs.opensuse.org/
# #
%define _supportsanlock 0
%define dlm_version 3.99.1 %define dlm_version 3.99.1
%if 0%{_supportsanlock} == 1
%define sanlock_version 3.3.0 %define sanlock_version 3.3.0
%endif
### COMMON-DEF-BEGIN ### ### COMMON-DEF-BEGIN ###
%define lvm2_version 2.02.180 %define lvm2_version 2.02.180
%define device_mapper_version 1.02.149 %define device_mapper_version 1.02.149
@ -38,7 +43,9 @@ BuildRequires: libaio-devel
BuildRequires: libcorosync-devel BuildRequires: libcorosync-devel
BuildRequires: libdlm-devel >= %{dlm_version} BuildRequires: libdlm-devel >= %{dlm_version}
BuildRequires: pkgconfig BuildRequires: pkgconfig
%if 0%{_supportsanlock} == 1
BuildRequires: sanlock-devel >= %{sanlock_version} BuildRequires: sanlock-devel >= %{sanlock_version}
%endif
BuildRequires: thin-provisioning-tools >= %{thin_provisioning_version} BuildRequires: thin-provisioning-tools >= %{thin_provisioning_version}
BuildRequires: pkgconfig(blkid) BuildRequires: pkgconfig(blkid)
BuildRequires: pkgconfig(devmapper) BuildRequires: pkgconfig(devmapper)
@ -103,7 +110,9 @@ extra_opts="
--with-cluster=internal --with-cluster=internal
--enable-cmirrord --enable-cmirrord
--enable-lvmlockd-dlm --enable-lvmlockd-dlm
%if 0%{_supportsanlock} == 1
--enable-lvmlockd-sanlock --enable-lvmlockd-sanlock
%endif
" "
### COMMON-CONFIG-BEGIN ### ### COMMON-CONFIG-BEGIN ###
@ -199,7 +208,9 @@ Summary: LVM locking daemon
Group: Productivity/Clustering/HA Group: Productivity/Clustering/HA
Recommends: libdlm >= %{dlm_version} Recommends: libdlm >= %{dlm_version}
Requires: lvm2 = %{version} Requires: lvm2 = %{version}
%if 0%{_supportsanlock} == 1
Requires: sanlock >= %{sanlock_version} Requires: sanlock >= %{sanlock_version}
%endif
%{?systemd_requires} %{?systemd_requires}
%description -n lvm2-lockd %description -n lvm2-lockd

View File

@ -1,3 +1,14 @@
-------------------------------------------------------------------
Fri Feb 1 08:20:15 UTC 2019 - ghe@suse.com
- Disable the LVM lock daemon using sanlock, in order to avoid the
dependence on sanlock related packages (bsc#1121382)
-------------------------------------------------------------------
Mon Jan 14 14:23:52 CET 2019 - kukuk@suse.de
- Use %license instead of %doc [bsc#1082318]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Nov 5 08:10:05 UTC 2018 - ghe@suse.com Mon Nov 5 08:10:05 UTC 2018 - ghe@suse.com

View File

@ -1,7 +1,7 @@
# #
# spec file for package lvm2 # spec file for package lvm2
# #
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. # Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@ -12,7 +12,7 @@
# license that conforms to the Open Source Definition (Version 1.9) # license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative. # published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/ # Please submit bugfixes or comments via https://bugs.opensuse.org/
# #