1
0
OBS User unknown 2007-08-02 20:50:38 +00:00 committed by Git OBS Bridge
parent 7f701d7470
commit ba8402c144
5 changed files with 5872 additions and 5840 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Thu Aug 2 11:10:35 CEST 2007 - hare@suse.de
- Merge in latest fixes from upstream
- Remove local patches; merge with upstream
- Fix kpartx handling of extended partitions
- Use underscores for partition names (#293792)
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 21 15:34:07 CEST 2007 - hare@suse.de Mon May 21 15:34:07 CEST 2007 - hare@suse.de

View File

@ -11,22 +11,19 @@
# norootforbuild # norootforbuild
Name: multipath-tools Name: multipath-tools
BuildRequires: device-mapper-devel readline-devel BuildRequires: device-mapper-devel libaio-devel readline-devel
URL: http://christophe.varoqui.free.fr/ URL: http://christophe.varoqui.free.fr/
License: BSD License and BSD-like, GNU General Public License (GPL) License: BSD 3-Clause, GPL v2 or later
Group: System/Base Group: System/Base
Requires: device-mapper kpartx Requires: device-mapper kpartx
%if %suse_version > 800
PreReq: %insserv_prereq PreReq: %insserv_prereq
%endif
Autoreqprov: on Autoreqprov: on
Version: 0.4.7 Version: 0.4.7
Release: 50 Release: 65
Summary: Tools to Manage Multipathed Devices with the device-mapper Summary: Tools to Manage Multipathed Devices with the device-mapper
Source: multipath-tools-%{version}.tar.bz2 Source: multipath-tools-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
Patch0: %{name}-git-update.patch Patch0: %{name}-git-update.patch
Patch1: %{name}-local-fixes
Patch10: %{name}-suse-update Patch10: %{name}-suse-update
%description %description
@ -53,6 +50,7 @@ Authors:
%package -n kpartx %package -n kpartx
Summary: Manages partition tables on device-mapper devices Summary: Manages partition tables on device-mapper devices
Group: System/Base Group: System/Base
Requires: device-mapper
%description -n kpartx %description -n kpartx
The kpartx program maps linear devmaps to device partitions, which The kpartx program maps linear devmaps to device partitions, which
@ -67,7 +65,6 @@ Authors:
%prep %prep
%setup -n multipath-tools-%{version} %setup -n multipath-tools-%{version}
%patch0 -p1 %patch0 -p1
%patch1 -p1
%patch10 -p1 %patch10 -p1
%build %build
@ -89,6 +86,9 @@ mkdir -p $RPM_BUILD_ROOT/var/cache/multipath/
#%{insserv /etc/init.d/multipathd} #%{insserv /etc/init.d/multipathd}
#%{fillup_and_insserv boot.multipath} #%{fillup_and_insserv boot.multipath}
%preun
%stop_on_removal multipathd
%postun %postun
%{insserv_cleanup} %{insserv_cleanup}
@ -109,7 +109,7 @@ mkdir -p $RPM_BUILD_ROOT/var/cache/multipath/
/sbin/mpath_prio_random /sbin/mpath_prio_random
/sbin/mpath_prio_alua /sbin/mpath_prio_alua
/sbin/mpath_prio_emc /sbin/mpath_prio_emc
/sbin/mpath_prio_tpc /sbin/mpath_prio_rdac
/sbin/mpath_prio_hds_modular /sbin/mpath_prio_hds_modular
/sbin/mpath_prio_hp_sw /sbin/mpath_prio_hp_sw
%attr (0700, root, root) /var/cache/multipath %attr (0700, root, root) /var/cache/multipath
@ -123,12 +123,18 @@ mkdir -p $RPM_BUILD_ROOT/var/cache/multipath/
%defattr(-,root,root) %defattr(-,root,root)
%dir /etc/udev %dir /etc/udev
%dir /etc/udev/rules.d %dir /etc/udev/rules.d
%dir /lib/udev
%config /etc/udev/rules.d/70-kpartx.rules %config /etc/udev/rules.d/70-kpartx.rules
/sbin/kpartx /sbin/kpartx
/sbin/kpartx_id /lib/udev/kpartx_id
%{_mandir}/man8/kpartx.8* %{_mandir}/man8/kpartx.8*
%changelog %changelog
* Thu Aug 02 2007 - hare@suse.de
- Merge in latest fixes from upstream
- Remove local patches; merge with upstream
- Fix kpartx handling of extended partitions
- Use underscores for partition names (#293792)
* Mon May 21 2007 - hare@suse.de * Mon May 21 2007 - hare@suse.de
- Rework udev handling - Rework udev handling
- Split off kpartx package - Split off kpartx package