New upstream release
Signed-off-by: Jan Friesse <jfriesse@redhat.com>
This commit is contained in:
parent
8306a57384
commit
64e30d76c2
1
.gitignore
vendored
1
.gitignore
vendored
@ -30,3 +30,4 @@ corosync-1.2.7.tar.gz
|
|||||||
/corosync-2.4.0.tar.gz
|
/corosync-2.4.0.tar.gz
|
||||||
/corosync-2.4.1.tar.gz
|
/corosync-2.4.1.tar.gz
|
||||||
/corosync-2.4.2.tar.gz
|
/corosync-2.4.2.tar.gz
|
||||||
|
/corosync-2.4.3.tar.gz
|
||||||
|
@ -16,14 +16,15 @@
|
|||||||
%bcond_without runautogen
|
%bcond_without runautogen
|
||||||
%bcond_without qdevices
|
%bcond_without qdevices
|
||||||
%bcond_without qnetd
|
%bcond_without qnetd
|
||||||
|
%bcond_without libcgroup
|
||||||
|
|
||||||
%global gitver %{?numcomm:.%{numcomm}}%{?alphatag:.%{alphatag}}%{?dirty:.%{dirty}}
|
%global gitver %{?numcomm:.%{numcomm}}%{?alphatag:.%{alphatag}}%{?dirty:.%{dirty}}
|
||||||
%global gittarver %{?numcomm:.%{numcomm}}%{?alphatag:-%{alphatag}}%{?dirty:-%{dirty}}
|
%global gittarver %{?numcomm:.%{numcomm}}%{?alphatag:-%{alphatag}}%{?dirty:-%{dirty}}
|
||||||
|
|
||||||
Name: corosync
|
Name: corosync
|
||||||
Summary: The Corosync Cluster Engine and Application Programming Interfaces
|
Summary: The Corosync Cluster Engine and Application Programming Interfaces
|
||||||
Version: 2.4.2
|
Version: 2.4.3
|
||||||
Release: 7%{?gitver}%{?dist}
|
Release: 1%{?gitver}%{?dist}
|
||||||
License: BSD
|
License: BSD
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
URL: http://corosync.github.io/corosync/
|
URL: http://corosync.github.io/corosync/
|
||||||
@ -34,7 +35,8 @@ ExclusiveArch: i686 x86_64
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
# Runtime bits
|
# Runtime bits
|
||||||
Requires: corosynclib = %{version}-%{release}
|
# The automatic dependency overridden in favor of explicit version lock
|
||||||
|
Requires: corosynclib%{?_isa} = %{version}-%{release}
|
||||||
Requires(pre): /usr/sbin/useradd
|
Requires(pre): /usr/sbin/useradd
|
||||||
Requires(post): /sbin/chkconfig
|
Requires(post): /sbin/chkconfig
|
||||||
Requires(preun): /sbin/chkconfig
|
Requires(preun): /sbin/chkconfig
|
||||||
@ -77,6 +79,9 @@ Requires: nss-tools
|
|||||||
%if %{with qnetd}
|
%if %{with qnetd}
|
||||||
BuildRequires: sed
|
BuildRequires: sed
|
||||||
%endif
|
%endif
|
||||||
|
%if %{with libcgroup}
|
||||||
|
BuildRequires: libcgroup-devel
|
||||||
|
%endif
|
||||||
|
|
||||||
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
||||||
|
|
||||||
@ -127,6 +132,9 @@ export rdmacm_LIBS=-lrdmacm \
|
|||||||
%endif
|
%endif
|
||||||
%if %{with qnetd}
|
%if %{with qnetd}
|
||||||
--enable-qnetd \
|
--enable-qnetd \
|
||||||
|
%endif
|
||||||
|
%if %{with libcgroup}
|
||||||
|
--enable-libcgroup \
|
||||||
%endif
|
%endif
|
||||||
--with-initddir=%{_initrddir} \
|
--with-initddir=%{_initrddir} \
|
||||||
--with-systemddir=%{_unitdir} \
|
--with-systemddir=%{_unitdir} \
|
||||||
@ -302,7 +310,6 @@ This package contains corosync test agents.
|
|||||||
%package -n corosynclib
|
%package -n corosynclib
|
||||||
Summary: The Corosync Cluster Engine Libraries
|
Summary: The Corosync Cluster Engine Libraries
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
Requires: %{name} = %{version}-%{release}
|
|
||||||
|
|
||||||
%description -n corosynclib
|
%description -n corosynclib
|
||||||
This package contains corosync libraries.
|
This package contains corosync libraries.
|
||||||
@ -326,7 +333,7 @@ This package contains corosync libraries.
|
|||||||
%package -n corosynclib-devel
|
%package -n corosynclib-devel
|
||||||
Summary: The Corosync Cluster Engine Development Kit
|
Summary: The Corosync Cluster Engine Development Kit
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
Requires: corosynclib = %{version}-%{release}
|
Requires: corosynclib%{?_isa} = %{version}-%{release}
|
||||||
Requires: pkgconfig
|
Requires: pkgconfig
|
||||||
Provides: corosync-devel = %{version}
|
Provides: corosync-devel = %{version}
|
||||||
Obsoletes: corosync-devel < 0.92-7
|
Obsoletes: corosync-devel < 0.92-7
|
||||||
@ -380,7 +387,8 @@ The Corosync Cluster Engine APIs.
|
|||||||
Summary: The Corosync Cluster Engine Qdevice
|
Summary: The Corosync Cluster Engine Qdevice
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
Requires: %{name} = %{version}-%{release}
|
Requires: %{name} = %{version}-%{release}
|
||||||
Requires: corosynclib = %{version}-%{release}
|
# The automatic dependency overridden in favor of explicit version lock
|
||||||
|
Requires: corosynclib%{?_isa} = %{version}-%{release}
|
||||||
Requires: nss-tools
|
Requires: nss-tools
|
||||||
|
|
||||||
%if %{with systemd}
|
%if %{with systemd}
|
||||||
@ -510,6 +518,9 @@ fi
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Oct 20 2017 Jan Friesse <jfriesse@redhat.com> - 2.4.3-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
* Mon Oct 09 2017 Troy Dawson <tdawson@redhat.com> - 2.4.2-7
|
* Mon Oct 09 2017 Troy Dawson <tdawson@redhat.com> - 2.4.2-7
|
||||||
- Cleanup spec file conditionals
|
- Cleanup spec file conditionals
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user