Build for latest sanlock (1.8)
This commit is contained in:
parent
6f0b9fce24
commit
fcd8b9e024
1
.gitignore
vendored
1
.gitignore
vendored
@ -4,3 +4,4 @@
|
|||||||
/sanlock-1.3.tar.gz
|
/sanlock-1.3.tar.gz
|
||||||
/sanlock-1.4.tar.gz
|
/sanlock-1.4.tar.gz
|
||||||
/sanlock-1.6.tar.gz
|
/sanlock-1.6.tar.gz
|
||||||
|
/sanlock-1.8.tar.gz
|
||||||
|
38
sanlock.spec
38
sanlock.spec
@ -1,17 +1,15 @@
|
|||||||
Name: sanlock
|
Name: sanlock
|
||||||
Version: 1.6
|
Version: 1.8
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A shared disk lock manager
|
Summary: A shared disk lock manager
|
||||||
|
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
License: GPLv2+
|
License: GPLv2, GPLv2+, LGPLv2+
|
||||||
URL: https://fedorahosted.org/sanlock/
|
URL: https://fedorahosted.org/sanlock/
|
||||||
Source0: https://fedorahosted.org/releases/s/a/sanlock/%{name}-%{version}.tar.gz
|
|
||||||
Patch0: uuid.patch
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
BuildRequires: libblkid-devel libaio-devel python python-devel
|
BuildRequires: libblkid-devel libaio-devel python python-devel
|
||||||
|
|
||||||
Requires: %{name}-lib = %{version}-%{release}
|
Requires: %{name}-lib = %{version}-%{release}
|
||||||
|
Source0: https://fedorahosted.org/releases/s/a/sanlock/%{name}-%{version}.tar.gz
|
||||||
|
|
||||||
%description
|
%description
|
||||||
sanlock uses disk paxos to manage leases on shared storage.
|
sanlock uses disk paxos to manage leases on shared storage.
|
||||||
@ -20,7 +18,6 @@ access to the shared disks.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch0 -p1 -b .uuid
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# upstream does not require configure
|
# upstream does not require configure
|
||||||
@ -32,13 +29,13 @@ CFLAGS=$RPM_OPT_FLAGS make -C python
|
|||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
make -C src \
|
make -C src \
|
||||||
install LIB_LIBDIR=%{_libdir} \
|
install LIBDIR=%{_libdir} \
|
||||||
DESTDIR=$RPM_BUILD_ROOT
|
DESTDIR=$RPM_BUILD_ROOT
|
||||||
make -C wdmd \
|
make -C wdmd \
|
||||||
install LIB_LIBDIR=%{_libdir} \
|
install LIBDIR=%{_libdir} \
|
||||||
DESTDIR=$RPM_BUILD_ROOT
|
DESTDIR=$RPM_BUILD_ROOT
|
||||||
make -C python \
|
make -C python \
|
||||||
install LIB_LIBDIR=%{_libdir} \
|
install LIBDIR=%{_libdir} \
|
||||||
DESTDIR=$RPM_BUILD_ROOT
|
DESTDIR=$RPM_BUILD_ROOT
|
||||||
install -D -m 755 init.d/sanlock $RPM_BUILD_ROOT/%{_initddir}/sanlock
|
install -D -m 755 init.d/sanlock $RPM_BUILD_ROOT/%{_initddir}/sanlock
|
||||||
install -D -m 755 init.d/wdmd $RPM_BUILD_ROOT/%{_initddir}/wdmd
|
install -D -m 755 init.d/wdmd $RPM_BUILD_ROOT/%{_initddir}/wdmd
|
||||||
@ -47,7 +44,7 @@ install -D -m 755 init.d/wdmd $RPM_BUILD_ROOT/%{_initddir}/wdmd
|
|||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
%pre
|
%pre
|
||||||
/usr/sbin/useradd -c "sanlock" -s /sbin/nologin -r \
|
/usr/sbin/useradd -u 179 -g 179 -c "sanlock" -s /sbin/nologin -r \
|
||||||
-d /var/run/sanlock sanlock 2> /dev/null || :
|
-d /var/run/sanlock sanlock 2> /dev/null || :
|
||||||
|
|
||||||
%post
|
%post
|
||||||
@ -68,11 +65,12 @@ fi
|
|||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc COPYING
|
|
||||||
%{_initddir}/sanlock
|
%{_initddir}/sanlock
|
||||||
%{_initddir}/wdmd
|
%{_initddir}/wdmd
|
||||||
%{_sbindir}/sanlock
|
%{_sbindir}/sanlock
|
||||||
%{_sbindir}/wdmd
|
%{_sbindir}/wdmd
|
||||||
|
%{_mandir}/man8/wdmd*
|
||||||
|
%{_mandir}/man8/sanlock*
|
||||||
|
|
||||||
%package lib
|
%package lib
|
||||||
Summary: A shared disk lock manager library
|
Summary: A shared disk lock manager library
|
||||||
@ -90,13 +88,14 @@ access to the shared disks.
|
|||||||
|
|
||||||
%files lib
|
%files lib
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc COPYING
|
|
||||||
%{_libdir}/libsanlock.so.*
|
%{_libdir}/libsanlock.so.*
|
||||||
|
%{_libdir}/libsanlock_client.so.*
|
||||||
%{_libdir}/libwdmd.so.*
|
%{_libdir}/libwdmd.so.*
|
||||||
|
|
||||||
%package python
|
%package python
|
||||||
Summary: Python bindings for the sanlock library
|
Summary: Python bindings for the sanlock library
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
|
Requires: %{name}-lib = %{version}-%{release}
|
||||||
|
|
||||||
%description python
|
%description python
|
||||||
The %{name}-python package contains a module that permits applications
|
The %{name}-python package contains a module that permits applications
|
||||||
@ -105,15 +104,13 @@ supplied by the sanlock library.
|
|||||||
|
|
||||||
%files python
|
%files python
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc COPYING
|
%{python_sitearch}/Sanlock-1.0-py2.7.egg-info
|
||||||
%{python_sitearch}/SANLock-1.0-py2.7.egg-info
|
%{python_sitearch}/sanlock.so
|
||||||
%{python_sitearch}/sanlock.py*
|
|
||||||
%{python_sitearch}/sanlockmod.so
|
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Development files for %{name}
|
Summary: Development files for %{name}
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
Requires: %{name} = %{version}-%{release}
|
Requires: %{name}-lib = %{version}-%{release}
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
The %{name}-devel package contains libraries and header files for
|
The %{name}-devel package contains libraries and header files for
|
||||||
@ -121,10 +118,10 @@ developing applications that use %{name}.
|
|||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc COPYING
|
|
||||||
%{_libdir}/libwdmd.so
|
%{_libdir}/libwdmd.so
|
||||||
%{_includedir}/wdmd.h
|
%{_includedir}/wdmd.h
|
||||||
%{_libdir}/libsanlock.so
|
%{_libdir}/libsanlock.so
|
||||||
|
%{_libdir}/libsanlock_client.so
|
||||||
%{_includedir}/sanlock.h
|
%{_includedir}/sanlock.h
|
||||||
%{_includedir}/sanlock_rv.h
|
%{_includedir}/sanlock_rv.h
|
||||||
%{_includedir}/sanlock_admin.h
|
%{_includedir}/sanlock_admin.h
|
||||||
@ -132,6 +129,9 @@ developing applications that use %{name}.
|
|||||||
%{_includedir}/sanlock_direct.h
|
%{_includedir}/sanlock_direct.h
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Sep 16 2011 Chris Feist <cfeist@redhat.com - 1.8-1
|
||||||
|
- Update to sanlock-1.8
|
||||||
|
|
||||||
* Fri Aug 19 2011 Dan Horák <dan[at]danny.cz> - 1.6-2
|
* Fri Aug 19 2011 Dan Horák <dan[at]danny.cz> - 1.6-2
|
||||||
- build on all arches again
|
- build on all arches again
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user