dlm/dlm.spec

227 lines
7.3 KiB
RPMSpec
Raw Normal View History

2012-02-01 07:13:13 +00:00
Name: dlm
2016-06-10 16:51:32 +00:00
Version: 4.0.6
2017-10-10 15:32:01 +00:00
Release: 6%{?dist}
2012-02-01 07:13:13 +00:00
License: GPLv2 and GPLv2+ and LGPLv2+
# For a breakdown of the licensing, see README.license
Group: System Environment/Kernel
2013-03-06 19:41:33 +00:00
Summary: dlm control daemon and tool
2012-02-01 07:13:13 +00:00
URL: https://fedorahosted.org/cluster
BuildRequires: glibc-kernheaders
BuildRequires: corosynclib-devel >= 1.99.9
2012-03-21 20:53:13 +00:00
BuildRequires: pacemaker-libs-devel >= 1.1.7
BuildRequires: libxml2-devel
2012-02-01 07:13:13 +00:00
BuildRequires: systemd-units
2012-11-06 19:51:43 +00:00
BuildRequires: systemd-devel
2012-02-01 07:13:13 +00:00
Source0: http://people.redhat.com/teigland/%{name}-%{version}.tar.gz
2016-06-10 18:16:35 +00:00
Patch0: 0001-dlm_controld-libsystemd-broke-itself.patch
2017-10-10 15:32:01 +00:00
%if 0%{?rhel} && 0%{?rhel} <= 7
2012-05-30 20:58:03 +00:00
ExclusiveArch: i686 x86_64
%endif
Requires: %{name}-lib = %{version}-%{release}
Requires: corosync >= 1.99.9
%{?fedora:Requires: kernel-modules-extra}
2012-02-01 07:13:13 +00:00
Requires(post): systemd-units
Requires(preun): systemd-units
Requires(postun): systemd-units
Conflicts: cman
2012-02-01 07:13:13 +00:00
%description
2013-03-06 19:41:33 +00:00
The kernel dlm requires a user daemon to control membership.
2012-02-01 07:13:13 +00:00
%prep
%setup -q
2016-06-10 18:16:35 +00:00
%patch0 -p1 -b .0001-dlm_controld-libsystemd-broke-itself.patch
2012-02-01 07:13:13 +00:00
%build
# upstream does not require configure
# upstream does not support _smp_mflags
CFLAGS=$RPM_OPT_FLAGS make
2012-03-21 20:33:42 +00:00
CFLAGS=$RPM_OPT_FLAGS make -C fence
2012-02-01 07:13:13 +00:00
%install
rm -rf $RPM_BUILD_ROOT
make install LIBDIR=%{_libdir} DESTDIR=$RPM_BUILD_ROOT
2012-03-21 20:33:42 +00:00
make -C fence install LIBDIR=%{_libdir} DESTDIR=$RPM_BUILD_ROOT
2012-02-01 07:13:13 +00:00
install -Dm 0644 init/dlm.service %{buildroot}%{_unitdir}/dlm.service
2012-06-21 21:59:20 +00:00
install -Dm 0644 init/dlm.sysconfig %{buildroot}/etc/sysconfig/dlm
2012-02-01 07:13:13 +00:00
%post
%systemd_post dlm.service
2012-02-01 07:13:13 +00:00
%preun
%systemd_preun dlm.service
2012-02-01 07:13:13 +00:00
%postun
%systemd_postun_with_restart dlm.service
2012-02-01 07:13:13 +00:00
%files
%defattr(-,root,root,-)
%doc README.license
%{_unitdir}/dlm.service
%{_sbindir}/dlm_controld
%{_sbindir}/dlm_tool
2012-03-21 20:33:42 +00:00
%{_sbindir}/dlm_stonith
2012-02-01 07:13:13 +00:00
%{_mandir}/man8/dlm*
%{_mandir}/man5/dlm*
2012-02-01 07:13:13 +00:00
%{_mandir}/man3/*dlm*
2012-06-21 21:59:20 +00:00
%config(noreplace) %{_sysconfdir}/sysconfig/dlm
2012-02-01 07:13:13 +00:00
%package lib
Summary: Library for %{name}
Group: System Environment/Libraries
Conflicts: clusterlib
2012-02-01 07:13:13 +00:00
%description lib
The %{name}-lib package contains the libraries needed to use the dlm
from userland applications.
%post lib -p /sbin/ldconfig
%postun lib -p /sbin/ldconfig
%files lib
%defattr(-,root,root,-)
2016-02-22 20:24:07 +00:00
/usr/lib/udev/rules.d/*-dlm.rules
2012-02-01 07:13:13 +00:00
%{_libdir}/libdlm*.so.*
%package devel
Summary: Development files for %{name}
Group: Development/Libraries
Requires: %{name}-lib = %{version}-%{release}
Conflicts: clusterlib-devel
2012-02-01 07:13:13 +00:00
%description devel
The %{name}-devel package contains libraries and header files for
developing applications that use %{name}.
%files devel
%defattr(-,root,root,-)
%{_libdir}/libdlm*.so
%{_includedir}/libdlm*.h
%{_libdir}/pkgconfig/*.pc
%changelog
2017-10-10 15:32:01 +00:00
* Tue Oct 10 2017 Troy Dawson <tdawson@redhat.com> - 4.0.6-5
- Cleanup spec file conditionals
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.6-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.6-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.6-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2016-06-10 18:16:35 +00:00
* Fri Jun 10 2016 David Teigland <teigland@redhat.com> - 4.0.6-2
- try fixing broken libsystemd
2016-06-10 16:51:32 +00:00
* Fri Jun 10 2016 David Teigland <teigland@redhat.com> - 4.0.6-1
- New upstream release
2016-04-26 20:20:41 +00:00
* Tue Apr 26 2016 David Teigland <teigland@redhat.com> - 4.0.5-1
- New upstream release
2016-02-22 19:53:57 +00:00
* Mon Feb 22 2016 David Teigland <teigland@redhat.com> - 4.0.4-1
- New upstream release dlm-4.0.4
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.1-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.1-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.1-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2013-03-06 19:41:33 +00:00
* Wed Mar 06 2013 David Teigland <teigland@redhat.com> - 4.0.1-1
- New usptream release, fencing fixes
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.0-8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2012-11-06 19:51:43 +00:00
* Tue Nov 06 2012 David Teigland <teigland@redhat.com> - 4.0.0-1
- New upstream release, systemd fixes
* Wed Sep 05 2012 Václav Pavlín <vpavlin@redhat.com> - 3.99.5-7
- Scriptlets replaced with new systemd macros (#850093)
* Tue Aug 28 2012 David Teigland <teigland@redhat.com> - 3.99.5-6
- only fedora requires kernel-modules-extra
* Thu Aug 16 2012 David Teigland <teigland@redhat.com> - 3.99.5-5
- dlm_controld: remove fence_all from cli
2012-08-16 18:22:38 +00:00
* Thu Aug 16 2012 David Teigland <teigland@redhat.com> - 3.99.5-4
- dlm_stonith: include errno.h
* Thu Aug 16 2012 David Teigland <teigland@redhat.com> - 3.99.5-3
- dlm_controld: fix uninitialized mem for fence_all config
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.99.5-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2012-06-21 21:59:20 +00:00
* Thu Jun 21 2012 David Teigland <teigland@redhat.com> - 3.99.5-1
- New upstream release
2012-05-30 20:58:03 +00:00
* Wed May 30 2012 David Teigland <teigland@redhat.com> - 3.99.4-2
- Limit rhel arches
2012-05-21 18:11:44 +00:00
* Mon May 21 2012 David Teigland <teigland@redhat.com> - 3.99.4-1
- New upstream release
2012-05-14 19:04:11 +00:00
* Mon May 14 2012 David Teigland <teigland@redhat.com> - 3.99.3-1
- New upstream release
* Wed Apr 11 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 3.99.2-1
- New upstream release
* Thu Mar 29 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 3.99.1-4
- Merge back from F17
2012-03-21 21:12:53 +00:00
* Wed Mar 21 2012 David Teigland <teigland@redhat.com> - 3.99.1-3
- Fix dlm_stonith linking
2012-03-21 20:53:13 +00:00
* Wed Mar 21 2012 David Teigland <teigland@redhat.com> - 3.99.1-2
- Require pacemaker-libs-devel to build dlm_stonith
2012-03-21 20:33:42 +00:00
* Wed Mar 21 2012 David Teigland <teigland@redhat.com> - 3.99.1-1
- Update to 3.99.1
* Fri Mar 16 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 3.99.0-8
- Rebuild against new corosync (soname change).
* Thu Feb 16 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 3.99.0-7
- Update to upstream HEAD 2ad89c869git.
- Bump BuildRequires and Requires to new corosync
* Mon Feb 13 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 3.99.0-6
- Fix init/systemd service to use /etc/sysconfig/dlm
* Mon Feb 6 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 3.99.0-5
- Fix systemd service to recognize /etc/sysconfig/dlm_controld
* Fri Feb 3 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 3.99.0-4
- Fix systemd service to modprobe dlm
* Fri Feb 3 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 3.99.0-3
- Add patch to fix udev rules and make sure dlm_controld can find
its devices
* Thu Feb 2 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 3.99.0-2
- Add Conflicts with clusterlib/cman as necessary
2012-02-01 07:13:13 +00:00
* Tue Jan 24 2012 David Teigland <teigland@redhat.com> - 3.99.0-1
- initial package