csync2/csync2.spec
Tim Serong d8029d8215 Accepting request 123455 from network:ha-clustering
Drop requirement on libgnutls-extra-devel (unnecessary on openSUSE, and indeed breaks the build on 12.2)

OBS-URL: https://build.opensuse.org/request/show/123455
OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/csync2?expand=0&rev=15
2012-06-04 11:00:38 +00:00

128 lines
3.9 KiB
RPMSpec

#
# spec file for package csync2
#
# Copyright (c) 2012 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/
#
Summary: Cluster synchronization tool
License: GPL-2.0+ ; LGPL-2.1+
Group: Productivity/Clustering/HA
Name: csync2
Version: 1.34
Release: 0
Url: http://oss.linbit.com/csync2/
Source0: http://oss.linbit.com/csync2/%{name}-%{version}.tar.gz
Source1: csync2-README.quickstart
Source2: csync2-rm-ssl-cert
Patch0: csync2-fix-xinetd.patch
Patch1: fix-missing-sentinels.diff
%if 0%{?suse_version} > 1120
Patch2: csync2-1.34-pure-gnutls-r2.patch
BuildRequires: pkg-config
%endif
Patch3: force-debug-stderr-off-inetd.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires(post): openssl
Requires: gnutls
Requires: sqlite2
Requires: xinetd
BuildRequires: bison
BuildRequires: flex
BuildRequires: libgnutls-devel
%if 0%{?sles_version} == 11
BuildRequires: libgnutls-extra-devel
%endif
BuildRequires: libtasn1-devel
BuildRequires: sqlite2-devel
%if 0%{?suse_version} > 1210
BuildRequires: librsync-devel
%else
BuildRequires: librsync
%endif
%description
Csync2 is a cluster synchronization tool. It can be used to keep files
on multiple hosts in a cluster in sync. Csync2 can handle complex
setups with much more than just 2 hosts, handle file deletions and can
detect conflicts. It is expedient for HA-clusters, HPC-clusters, COWs
and server farms.
%prep
%setup -q
%patch0 -p1 -b .fix-xinetd
%patch1 -p1
%if 0%{?suse_version} > 1120
%patch2 -p1
%endif
%patch3 -p1
install -p -m 644 %{SOURCE1} README.quickstart
%build
%configure --sysconfdir=%{_sysconfdir}/csync2
make %{?_smp_mflags}
%install
make install DESTDIR=%{buildroot}
mkdir -p %{buildroot}%{_var}/lib/csync2
install -p -D -m 644 csync2.xinetd %{buildroot}%{_sysconfdir}/xinetd.d/csync2
install -p -m 755 %{SOURCE2} %{buildroot}%{_sbindir}/csync2-rm-ssl-cert
# We need these empty files to be able to %%ghost them
touch %{buildroot}%{_sysconfdir}/csync2/csync2_ssl_key.pem
touch %{buildroot}%{_sysconfdir}/csync2/csync2_ssl_cert.pem
%post
umask 077
if [ ! -f %{_sysconfdir}/csync2/csync2_ssl_key.pem ]; then
/usr/bin/openssl genrsa -rand /proc/apm:/proc/cpuinfo:/proc/dma:/proc/filesystems:/proc/interrupts:/proc/ioports:/proc/pci:/proc/rtc:/proc/uptime 1024 > %{_sysconfdir}/csync2/csync2_ssl_key.pem 2>/dev/null
fi
FQDN=`hostname`
if [ "x${FQDN}" = "x" ]; then
FQDN=localhost.localdomain
fi
if [ ! -f %{_sysconfdir}/csync2/csync2_ssl_cert.pem ]; then
cat << EOF | /usr/bin/openssl req -new -key %{_sysconfdir}/csync2/csync2_ssl_key.pem -x509 -days 3000 -out %{_sysconfdir}/csync2/csync2_ssl_cert.pem 2>/dev/null
--
SomeState
SomeCity
SomeOrganization
SomeOrganization
SomeName
name@example.com
EOF
fi
%preun
# Cleanup all databases upon last removal
if [ $1 -eq 0 ]; then
%{__rm} -f %{_var}/lib/csync2/*
fi
%files
%defattr(-,root,root,-)
%doc README README.quickstart AUTHORS COPYING paper.pdf
%dir %{_sysconfdir}/csync2/
%config(noreplace) %{_sysconfdir}/csync2/csync2.cfg
%config(noreplace) %{_sysconfdir}/xinetd.d/csync2
%ghost %config %{_sysconfdir}/csync2/csync2_ssl_key.pem
%ghost %config %{_sysconfdir}/csync2/csync2_ssl_cert.pem
%{_sbindir}/csync2
%{_sbindir}/csync2-compare
%{_sbindir}/csync2-rm-ssl-cert
%{_mandir}/man1/csync2.1*
%dir %{_var}/lib/csync2/
%changelog