Marcus Meissner
a5d648edaf
- Fix Makefiles so they support DESTDIR - add tmpfiles.d so runtime directories are properly created - Remove sysvinit support and replace it for native systemd support. OBS-URL: https://build.opensuse.org/request/show/199021 OBS-URL: https://build.opensuse.org/package/show/Base:System/dmraid?expand=0&rev=32
149 lines
4.1 KiB
RPMSpec
149 lines
4.1 KiB
RPMSpec
#
|
|
# spec file for package dmraid
|
|
#
|
|
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: dmraid
|
|
BuildRequires: autoconf
|
|
BuildRequires: automake
|
|
BuildRequires: device-mapper-devel
|
|
BuildRequires: libselinux-devel
|
|
BuildRequires: systemd-rpm-macros
|
|
BuildRequires: zlib-devel
|
|
Requires: aaa_base
|
|
Requires: kpartx
|
|
Url: http://people.redhat.com/~heinzm/sw/dmraid/src/
|
|
Summary: A Device-Mapper Software RAID Support Tool
|
|
License: GPL-2.0
|
|
Group: System/Base
|
|
Version: 1.0.0.rc16
|
|
Release: 0
|
|
Source: ftp://people.redhat.com/heinzm/sw/dmraid/src/dmraid-%{version}.tar.bz2
|
|
Source1: sysconfig.dmraid
|
|
Source3: README.SuSE
|
|
Source4: mkinitrd-setup.sh
|
|
Source5: mkinitrd-boot.sh
|
|
Source6: dmraid-activation.service
|
|
Patch1: dmraid-1.0.0.rc16-cvs-2010-02-02.patch
|
|
Patch2: dmraid-1.0.0.rc13-geometry.patch
|
|
Patch3: lib-install.patch
|
|
Patch4: handle_spaces
|
|
Patch5: remove_trylock
|
|
Patch6: rebuild.fix
|
|
Patch7: ddf-erase
|
|
Patch8: dmraid-move-var-lock-to-run-lock.patch
|
|
Patch9: dmraid-destdir.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
PreReq: %fillup_prereq
|
|
%{systemd_requires}
|
|
|
|
%description
|
|
This software discovers, activates, deactivates, and displays
|
|
properties of software RAID sets, such as ATARAID, and contained DOS
|
|
partitions.
|
|
|
|
dmraid uses libdevmapper and the device-mapper kernel runtime to create
|
|
devices with respective mappings for the ATARAID sets discovered.
|
|
|
|
The following ATARAID types are supported:
|
|
|
|
- Highpoint HPT37X
|
|
|
|
- Highpoint HPT45X
|
|
|
|
- Intel Software RAID
|
|
|
|
- Promise FastTrak
|
|
|
|
- Silicon Image Medley
|
|
|
|
|
|
|
|
Authors:
|
|
--------
|
|
Heinz Mauelshagen
|
|
|
|
%prep
|
|
%setup -n dmraid/%{version}
|
|
%patch1 -p1
|
|
%patch2 -p1
|
|
%patch3 -p1
|
|
%patch4 -p1
|
|
%patch5 -p2
|
|
%patch6 -p1
|
|
%patch7 -p1
|
|
%patch8 -p1
|
|
%patch9 -p1
|
|
cp %{SOURCE3} .
|
|
|
|
%build
|
|
#rm -f aclocal.m4
|
|
autoreconf -fi
|
|
rm -r autom4te.cache
|
|
%configure \
|
|
--libdir=/%_lib \
|
|
--sbindir=/sbin \
|
|
--with-user=`id -nu` --with-group=`id -ng` \
|
|
--enable-libselinux --enable-libsepol
|
|
make
|
|
|
|
%install
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
rm -rf $RPM_BUILD_ROOT/usr/include/dmraid
|
|
rm $RPM_BUILD_ROOT/%_lib/libdmraid.a
|
|
rm $RPM_BUILD_ROOT/%_lib/libdmraid.so
|
|
mkdir -p $RPM_BUILD_ROOT/var/adm/fillup-templates
|
|
install -m644 %{SOURCE1} $RPM_BUILD_ROOT/var/adm/fillup-templates/sysconfig.dmraid
|
|
mkdir -p $RPM_BUILD_ROOT/etc/init.d
|
|
install -d $RPM_BUILD_ROOT/lib/mkinitrd/scripts
|
|
install -m 755 %{S:4} $RPM_BUILD_ROOT/lib/mkinitrd/scripts/setup-dmraid.sh
|
|
install -m 755 %{S:5} $RPM_BUILD_ROOT/lib/mkinitrd/scripts/boot-dmraid.sh
|
|
install -D -m 0644 %{S:6} %{buildroot}%{_unitdir}/dmraid-activation.service
|
|
install -d %{buildroot}%{_tmpfilesdir}
|
|
echo 'd /run/lock/dmraid 0700 root root -' > %{buildroot}%{_tmpfilesdir}/dmraid.conf
|
|
|
|
%preun
|
|
%service_del_preun dmraid-activation.service
|
|
|
|
%post
|
|
/sbin/ldconfig
|
|
%service_add_post dmraid-activation.service
|
|
[ -x /sbin/mkinitrd_setup ] && mkinitrd_setup
|
|
%{fillup_only}
|
|
|
|
%postun
|
|
/sbin/ldconfig
|
|
[ -x /sbin/mkinitrd_setup ] && mkinitrd_setup
|
|
%{insserv_cleanup}
|
|
|
|
%files
|
|
%defattr(-, root, root)
|
|
/sbin/dmraid
|
|
/sbin/dmevent_tool
|
|
%{_mandir}/man8/*
|
|
%doc LICENSE LICENSE_GPL LICENSE_LGPL README README.SuSE TODO doc/*
|
|
/var/adm/fillup-templates/sysconfig.dmraid
|
|
%dir /lib/mkinitrd
|
|
%dir /lib/mkinitrd/scripts
|
|
/lib/mkinitrd/scripts/setup-dmraid.sh
|
|
/lib/mkinitrd/scripts/boot-dmraid.sh
|
|
/%{_lib}/libdmraid-events-isw.so
|
|
/%{_lib}/libdmraid.so.1.0.0.rc16-3
|
|
%{_tmpfilesdir}/dmraid.conf
|
|
%{_unitdir}/dmraid-activation.service
|
|
|
|
%changelog
|