sanlock/sanlock.spec

163 lines
4.4 KiB
RPMSpec
Raw Normal View History

2011-02-15 23:38:07 +00:00
Name: sanlock
2011-06-14 22:26:27 +00:00
Version: 1.3
2011-06-15 15:50:20 +00:00
Release: 7%{?dist}
2011-02-15 23:38:07 +00:00
Summary: A shared disk lock manager
Group: System Environment/Base
License: GPLv2+
URL: https://fedorahosted.org/sanlock/
2011-06-14 22:26:27 +00:00
Source0: https://fedorahosted.org/releases/s/a/sanlock/%{name}-%{version}.tar.gz
Patch0: sanlock-wdmd-shut-up-warnings.patch
Patch1: sanlock-fix-libwdmd-linking.patch
2011-02-15 23:38:07 +00:00
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
2011-06-14 22:26:27 +00:00
ExclusiveArch: i686 x86_64
BuildRequires: libblkid-devel libaio-devel python python-devel
2011-02-15 23:38:07 +00:00
2011-05-09 20:34:42 +00:00
Requires: %{name}-lib = %{version}-%{release}
2011-02-15 23:38:07 +00:00
%description
sanlock uses disk paxos to manage leases on shared storage.
Hosts connected to a common SAN can use this to synchronize their
access to the shared disks.
%prep
%setup -q
2011-06-14 22:26:27 +00:00
%patch0 -p1 -b .sanlock-wdmd-shut-up-warnings
%patch1 -p1 -b .sanlock-fix-libwdmd-linking
2011-02-15 23:38:07 +00:00
%build
# upstream does not require configure
# upstream does not support _smp_mflags
2011-02-17 16:53:23 +00:00
CFLAGS=$RPM_OPT_FLAGS make -C wdmd
CFLAGS=$RPM_OPT_FLAGS make -C src
2011-05-09 20:34:42 +00:00
CFLAGS=$RPM_OPT_FLAGS make -C python
2011-02-15 23:38:07 +00:00
%install
rm -rf $RPM_BUILD_ROOT
2011-02-17 16:53:23 +00:00
make -C src \
2011-02-15 23:38:07 +00:00
install LIB_LIBDIR=%{_libdir} \
DESTDIR=$RPM_BUILD_ROOT
2011-02-18 15:04:41 +00:00
make -C wdmd \
install LIB_LIBDIR=%{_libdir} \
DESTDIR=$RPM_BUILD_ROOT
2011-05-09 20:34:42 +00:00
make -C python \
install LIB_LIBDIR=%{_libdir} \
DESTDIR=$RPM_BUILD_ROOT
install -D -m 755 init.d/sanlock $RPM_BUILD_ROOT/%{_initddir}/sanlock
install -D -m 755 init.d/wdmd $RPM_BUILD_ROOT/%{_initddir}/wdmd
2011-02-15 23:38:07 +00:00
%clean
rm -rf $RPM_BUILD_ROOT
2011-05-09 20:34:42 +00:00
%pre
2011-06-14 22:26:27 +00:00
/usr/sbin/useradd -c "sanlock" -s /sbin/nologin -r \
2011-05-09 20:34:42 +00:00
-d /var/run/sanlock sanlock 2> /dev/null || :
%post
/sbin/chkconfig --add sanlock
/sbin/chkconfig --add wdmd
2011-02-15 23:38:07 +00:00
2011-05-09 20:34:42 +00:00
%preun
if [ $1 = 0 ]; then
/sbin/service sanlock stop > /dev/null 2>&1
/sbin/service wdmd stop > /dev/null 2>&1
/sbin/chkconfig --del sanlock
/sbin/chkconfig --del wdmd
fi
%postun
#/sbin/service sanlock condrestart >/dev/null 2>&1 || :
#/sbin/service wdmd condrestart >/dev/null 2>&1 || :
2011-02-15 23:38:07 +00:00
%files
%defattr(-,root,root,-)
2011-02-17 16:53:23 +00:00
%doc COPYING
2011-05-09 20:34:42 +00:00
%{_initddir}/sanlock
%{_initddir}/wdmd
2011-02-15 23:38:07 +00:00
%{_sbindir}/sanlock
2011-02-18 15:04:41 +00:00
%{_sbindir}/wdmd
2011-05-09 20:34:42 +00:00
%package lib
Summary: A shared disk lock manager library
Group: System Environment/Libraries
%description lib
The %{name}-lib package contains the runtime libraries for sanlock,
a shared disk lock manager.
Hosts connected to a common SAN can use this to synchronize their
access to the shared disks.
%post lib -p /sbin/ldconfig
%postun lib -p /sbin/ldconfig
%files lib
%defattr(-,root,root,-)
%doc COPYING
2011-02-15 23:38:07 +00:00
%{_libdir}/libsanlock.so.*
2011-05-09 20:34:42 +00:00
%{_libdir}/libwdmd.so.*
%package python
Summary: Python bindings for the sanlock library
Group: Development/Libraries
%description python
The %{name}-python package contains a module that permits applications
written in the Python programming language to use the interface
supplied by the sanlock library.
%files python
%defattr(-,root,root,-)
%doc COPYING
%{python_sitearch}/SANLock-1.0-py2.7.egg-info
%{python_sitearch}/sanlock.py*
%{python_sitearch}/sanlockmod.so
2011-02-15 23:38:07 +00:00
%package devel
Summary: Development files for %{name}
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
%description devel
The %{name}-devel package contains libraries and header files for
developing applications that use %{name}.
%files devel
%defattr(-,root,root,-)
2011-02-17 16:53:23 +00:00
%doc COPYING
2011-05-09 20:34:42 +00:00
%{_libdir}/libwdmd.so
%{_includedir}/wdmd.h
2011-02-15 23:38:07 +00:00
%{_libdir}/libsanlock.so
%{_includedir}/sanlock.h
2011-05-09 20:34:42 +00:00
%{_includedir}/sanlock_rv.h
%{_includedir}/sanlock_admin.h
2011-02-15 23:38:07 +00:00
%{_includedir}/sanlock_resource.h
2011-05-09 20:34:42 +00:00
%{_includedir}/sanlock_direct.h
2011-02-15 23:38:07 +00:00
%changelog
2011-06-14 22:26:27 +00:00
* Tue Jun 14 2011 Chris Feist <cfeist@redhat.com> - 1.3.0-6
- Update to 1.3.0
2011-05-09 20:53:35 +00:00
* Mon May 09 2011 Chris Feist <cfeist@redhat.com> - 1.2.0-3
- Add python and python-devel to build requires
2011-05-09 20:47:40 +00:00
2011-05-09 20:34:42 +00:00
* Mon May 09 2011 Chris Feist <cfeist@redhat.com> - 1.2.0-1
- Use latest sources
- Sync .spec file
* Mon Apr 4 2011 Federico Simoncelli <fsimonce@redhat.com> - 1.1.0-3
- Add sanlock_admin.h header
2011-02-18 15:04:41 +00:00
* Fri Feb 18 2011 Chris Feist <cfeist@redhat.com> - 1.1.0-2
- Fixed install for wdmd
2011-02-17 16:53:23 +00:00
* Thu Feb 17 2011 Chris Feist <cfeist@redhat.com> - 1.1.0-1
- Updated to latest sources
- Now include wdmd
2011-02-15 23:38:07 +00:00
* Tue Feb 8 2011 Angus Salkeld <asalkeld@redhat.com> - 1.0-2
2011-05-09 20:34:42 +00:00
- SPEC: Add docs and make more consistent with the fedora template
2011-02-15 23:38:07 +00:00
* Mon Jan 10 2011 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.0-1
- first cut at rpm packaging