438 lines
14 KiB
RPMSpec
438 lines
14 KiB
RPMSpec
%global _hardened_build 1
|
|
|
|
Name: zookeeper
|
|
Version: 3.4.5
|
|
Release: 15%{?dist}
|
|
Summary: A high-performance coordination service for distributed applications
|
|
#Group: Development/Libraries
|
|
License: ASL 2.0 and BSD
|
|
URL: http://zookeeper.apache.org/
|
|
Source0: http://www.apache.org/dist/%{name}/stable/%{name}-%{version}.tar.gz
|
|
Source1: %{name}-test-template.pom
|
|
Source2: %{name}-ZooInspector-template.pom
|
|
Source3: %{name}.service
|
|
# remove non free clover references
|
|
# configure ivy to use system libraries
|
|
# disable rat-lib and jdiff support
|
|
Patch0: %{name}-3.4.4-build.patch
|
|
# https://issues.apache.org/jira/browse/ZOOKEEPER-1557
|
|
Patch1: https://issues.apache.org/jira/secure/attachment/12548109/ZOOKEEPER-1557.patch
|
|
Patch2: %{name}-3.4.5-zktreeutil-gcc.patch
|
|
Patch3: %{name}-3.4.5-disable-cygwin-detection.patch
|
|
Patch4: %{name}-3.4.5-build-contrib.patch
|
|
Patch5: %{name}-3.4.5-add-PIE-and-RELRO.patch
|
|
#Patch6: %{name}-3.4.5-atomic.patch
|
|
# remove date/time from console output since journald will keep track of date/time
|
|
Patch7: %{name}-3.4.5-log4j.patch
|
|
Patch8: https://issues.apache.org/jira/secure/attachment/12570030/mt_adaptor.c.patch
|
|
|
|
BuildRequires: autoconf
|
|
BuildRequires: automake
|
|
BuildRequires: boost-devel
|
|
BuildRequires: cppunit-devel
|
|
BuildRequires: dos2unix
|
|
BuildRequires: doxygen
|
|
BuildRequires: graphviz
|
|
BuildRequires: java-devel
|
|
BuildRequires: java-javadoc
|
|
BuildRequires: jpackage-utils
|
|
BuildRequires: libtool
|
|
BuildRequires: libxml2-devel
|
|
BuildRequires: log4cxx-devel
|
|
BuildRequires: python-devel
|
|
|
|
BuildRequires: ant
|
|
BuildRequires: ant-junit
|
|
BuildRequires: apache-ivy
|
|
BuildRequires: checkstyle
|
|
BuildRequires: jline
|
|
BuildRequires: jtoaster
|
|
BuildRequires: junit
|
|
BuildRequires: log4j
|
|
BuildRequires: mockito
|
|
BuildRequires: netty3
|
|
BuildRequires: slf4j
|
|
BuildRequires: xerces-j2
|
|
BuildRequires: xml-commons-apis
|
|
|
|
# BuildRequires: rat-lib
|
|
# BuildRequires: apache-rat-tasks
|
|
# BuildRequires: apache-commons-collections
|
|
# BuildRequires: apache-commons-lang
|
|
# BuildRequires: jdiff
|
|
|
|
BuildRequires: systemd
|
|
|
|
%description
|
|
ZooKeeper is a centralized service for maintaining configuration information,
|
|
naming, providing distributed synchronization, and providing group services.
|
|
|
|
%package lib
|
|
Summary: Zookeeper C client library
|
|
#Group: System Environment/Libraries
|
|
|
|
%description lib
|
|
ZooKeeper C client library for communicating with ZooKeeper Server.
|
|
|
|
%package lib-devel
|
|
Summary: Development files for the %{name} library
|
|
#Group: Development/Libraries
|
|
Requires: %{name}-lib%{?_isa} = %{version}-%{release}
|
|
|
|
%description lib-devel
|
|
Development files for the ZooKeeper C client library.
|
|
|
|
%package lib-doc
|
|
Summary: Documentation for the %{name} library
|
|
#Group: Documentation
|
|
BuildArch: noarch
|
|
|
|
%description lib-doc
|
|
Documentation for the ZooKeeper C client library.
|
|
|
|
%package java
|
|
#Group: Development/Libraries
|
|
Summary: Zookeeper Java client library
|
|
# Requires: felix-framework
|
|
# Requires: felix-osgi-compendium
|
|
Requires: checkstyle
|
|
Requires: jline
|
|
Requires: jtoaster
|
|
Requires: junit
|
|
Requires: log4j
|
|
Requires: mockito
|
|
Requires: netty3
|
|
Requires: slf4j
|
|
|
|
Requires: java
|
|
Requires: jpackage-utils
|
|
BuildArch: noarch
|
|
|
|
%description java
|
|
This package provides a Java client interface to Zookeeper server.
|
|
|
|
%package javadoc
|
|
#Group: Documentation
|
|
Summary: Javadoc for %{name}
|
|
BuildArch: noarch
|
|
|
|
%description javadoc
|
|
This package contains javadoc for %{name}.
|
|
|
|
%package -n python-ZooKeeper
|
|
#Group: Development/Libraries
|
|
Summary: ZooKeeper python binding library
|
|
Requires: %{name}-lib%{?_isa} = %{version}-%{release}
|
|
Provides: zkpython%{?_isa} = %{version}-%{release}
|
|
|
|
%description -n python-ZooKeeper
|
|
ZooKeeper python binding library
|
|
|
|
%package server
|
|
#Group: System Environment/Daemons
|
|
Summary: ZooKeeper server
|
|
Requires: %{name}-java = %{version}-%{release}
|
|
Requires(post): systemd
|
|
Requires(preun): systemd
|
|
Requires(postun): systemd
|
|
Requires(pre): shadow-utils
|
|
BuildArch: noarch
|
|
|
|
%description server
|
|
ZooKeeper server
|
|
|
|
%prep
|
|
%setup -q
|
|
find -name "*.jar" -delete
|
|
find -name "*.class" -delete
|
|
find -name "*.cmd" -delete
|
|
find -name "*.so*" -delete
|
|
find -name "*.dll" -delete
|
|
|
|
%patch0 -p1
|
|
%patch1 -p0
|
|
%pom_remove_dep org.vafer:jdeb dist-maven/%{name}-%{version}.pom
|
|
# jdiff task deps
|
|
%pom_remove_dep jdiff:jdiff dist-maven/%{name}-%{version}.pom
|
|
%pom_remove_dep xerces:xerces dist-maven/%{name}-%{version}.pom
|
|
# rat-lib task deps
|
|
%pom_remove_dep org.apache.rat:apache-rat-tasks dist-maven/%{name}-%{version}.pom
|
|
%pom_remove_dep commons-collections:commons-collections dist-maven/%{name}-%{version}.pom
|
|
%pom_remove_dep commons-lang:commons-lang dist-maven/%{name}-%{version}.pom
|
|
|
|
%patch2 -p0
|
|
%patch3 -p0
|
|
%patch4 -p1
|
|
%patch5 -p1
|
|
#%patch6 -p1
|
|
%patch7 -p1
|
|
%patch8 -p0
|
|
|
|
sed -i "s|<version>0.9.94</version>|<version>2.10</version>|" dist-maven/%{name}-%{version}.pom
|
|
sed -i "s|<version>3.2.2.Final</version>|<version>3.6.6.Final</version>|" dist-maven/%{name}-%{version}.pom
|
|
sed -i "s|org.jboss.netty|io.netty|" dist-maven/%{name}-%{version}.pom
|
|
|
|
sed -i "s|<packaging>pom</packaging>|<packaging>jar</packaging>|" dist-maven/%{name}-%{version}.pom
|
|
sed -i "s|<groupId>checkstyle</groupId>|<groupId>com.puppycrawl.tools</groupId>|" dist-maven/%{name}-%{version}.pom
|
|
sed -i "s|<artifactId>mockito-all</artifactId>|<artifactId>mockito-core</artifactId>|" dist-maven/%{name}-%{version}.pom
|
|
|
|
cp -p %{SOURCE1} dist-maven/%{name}-%{version}-test.pom
|
|
cp -p %{SOURCE2} dist-maven/%{name}-%{version}-ZooInspector.pom
|
|
sed -i "s|@version@|%{version}|" dist-maven/%{name}-%{version}-test.pom dist-maven/%{name}-%{version}-ZooInspector.pom
|
|
|
|
iconv -f iso8859-1 -t utf-8 src/c/ChangeLog > src/c/ChangeLog.conv && mv -f src/c/ChangeLog.conv src/c/ChangeLog
|
|
sed -i 's/\r//' src/c/ChangeLog
|
|
|
|
# fix build problem on f18
|
|
sed -i 's|<exec executable="hostname" outputproperty="host.name"/>|<!--exec executable="hostname" outputproperty="host.name"/-->|' build.xml
|
|
sed -i 's|<attribute name="Built-On" value="${host.name}" />|<attribute name="Built-On" value="${user.name}" />|' build.xml
|
|
|
|
sed -i 's@^dataDir=.*$@dataDir=%{_sharedstatedir}/zookeeper/data\ndataLogDir=%{_sharedstatedir}/zookeeper/log@' conf/zoo_sample.cfg
|
|
|
|
%build
|
|
|
|
# ensure that source and target are 1.5
|
|
%ant -Dtarget.jdk=1.5 \
|
|
-Djavadoc.link.java=%{_javadocdir}/java \
|
|
-Dant.build.javac.source=1.5 \
|
|
-Dant.build.javac.target=1.5 \
|
|
build-generated jar test-jar javadoc javadoc-dev
|
|
|
|
(
|
|
cd src/contrib
|
|
%ant -Dversion=%{version} \
|
|
-Dcontribfilesetincludes="zooinspector/build.xml" \
|
|
-Dant.build.javac.source=1.5 \
|
|
-Dant.build.javac.target=1.5 \
|
|
-Dtarget.jdk=1.5 \
|
|
-DlastRevision=-1 \
|
|
-Divy.jar.exists=true \
|
|
-Divy.initialized=true \
|
|
-Ddest.dir=../../build/zookeeper
|
|
)
|
|
|
|
pushd src/c
|
|
rm -rf autom4te.cache
|
|
autoreconf -fis
|
|
|
|
%configure --disable-static --disable-rpath --with-syncapi
|
|
# Remove rpath
|
|
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
|
|
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
|
%{__make} %{?_smp_mflags}
|
|
make doxygen-doc
|
|
popd
|
|
|
|
# Compile zktreeutil
|
|
pushd src/contrib/zktreeutil
|
|
rm -rf autom4te.cache
|
|
autoreconf -if
|
|
%configure
|
|
%{__make} %{?_smp_mflags}
|
|
popd
|
|
|
|
%if 0
|
|
%check
|
|
# Execute multi-threaded test suite
|
|
mkdir -p build/lib
|
|
for jar in jline log4j xerces-j2 xml-commons-apis; do \
|
|
ln -sf %{_javadir}/$jar.jar build/lib/$jar.jar; \
|
|
done
|
|
pushd src/c
|
|
%{__make} %{?_smp_mflags} zktest-mt
|
|
./zktest-mt
|
|
popd
|
|
%ifarch i386
|
|
# Run core Java test suite against zookeeper
|
|
ant -Dversion=%{version} -DlastRevision=-1 test-core-java
|
|
%endif
|
|
%endif
|
|
|
|
%install
|
|
|
|
mkdir -p %{buildroot}%{_javadir}/%{name}
|
|
install -pm 644 build/%{name}-%{version}.jar %{buildroot}%{_javadir}/%{name}/%{name}.jar
|
|
install -pm 644 build/%{name}-%{version}-test.jar %{buildroot}%{_javadir}/%{name}/%{name}-test.jar
|
|
install -pm 644 build/contrib/ZooInspector/%{name}-ZooInspector-%{version}.jar %{buildroot}%{_javadir}/%{name}/%{name}-ZooInspector.jar
|
|
|
|
mkdir -p %{buildroot}%{_mavenpomdir}
|
|
install -pm 644 dist-maven/%{name}-%{version}.pom %{buildroot}%{_mavenpomdir}/JPP.%{name}-%{name}.pom
|
|
%add_maven_depmap JPP.%{name}-%{name}.pom %{name}/%{name}.jar
|
|
install -pm 644 dist-maven/%{name}-%{version}-test.pom %{buildroot}%{_mavenpomdir}/JPP.%{name}-%{name}-test.pom
|
|
%add_maven_depmap JPP.%{name}-%{name}-test.pom %{name}/%{name}-test.jar
|
|
install -pm 644 dist-maven/%{name}-%{version}-ZooInspector.pom %{buildroot}%{_mavenpomdir}/JPP.%{name}-%{name}-ZooInspector.pom
|
|
%add_maven_depmap JPP.%{name}-%{name}-ZooInspector.pom %{name}/%{name}-ZooInspector.jar
|
|
|
|
mkdir -p %{buildroot}%{_javadocdir}/%{name}/dev
|
|
cp -pr build/docs/api/* %{buildroot}%{_javadocdir}/%{name}/
|
|
cp -pr build/docs/dev-api/* %{buildroot}%{_javadocdir}/%{name}/dev/
|
|
|
|
pushd src/c
|
|
%{__make} install DESTDIR=%{buildroot}
|
|
# cleanup
|
|
rm -f docs/html/*.map
|
|
popd
|
|
|
|
pushd src/contrib/zktreeutil
|
|
%{__make} install DESTDIR=%{buildroot}
|
|
popd
|
|
|
|
pushd src/contrib/zkpython
|
|
%{__python} src/python/setup.py build --build-base=$PWD/build \
|
|
install --root=%{buildroot} ;\
|
|
chmod 0755 %{buildroot}%{python_sitearch}/zookeeper.so
|
|
popd
|
|
|
|
find %{buildroot} -name '*.la' -exec rm -f {} ';'
|
|
|
|
mkdir -p %{buildroot}%{_unitdir}
|
|
mkdir -p %{buildroot}%{_sysconfdir}/zookeeper
|
|
mkdir -p %{buildroot}%{_localstatedir}/log/zookeeper
|
|
mkdir -p %{buildroot}%{_sharedstatedir}/zookeeper
|
|
mkdir -p %{buildroot}%{_sharedstatedir}/zookeeper/data
|
|
mkdir -p %{buildroot}%{_sharedstatedir}/zookeeper/log
|
|
install -p -m 0644 %{SOURCE3} %{buildroot}%{_unitdir}
|
|
install -p -m 0640 conf/log4j.properties %{buildroot}%{_sysconfdir}/zookeeper
|
|
install -p -m 0640 conf/zoo_sample.cfg %{buildroot}%{_sysconfdir}/zookeeper
|
|
touch %{buildroot}%{_sysconfdir}/zookeeper/zoo.cfg
|
|
touch %{buildroot}%{_sharedstatedir}/zookeeper/data/myid
|
|
|
|
# TODO
|
|
# bin/zkCleanup.sh
|
|
# bin/zkCli.sh
|
|
# bin/zkEnv.sh
|
|
|
|
%post lib -p /sbin/ldconfig
|
|
%postun lib -p /sbin/ldconfig
|
|
|
|
%pre server
|
|
getent group zookeeper >/dev/null || groupadd -r zookeeper
|
|
getent passwd zookeeper >/dev/null || \
|
|
useradd -r -g zookeeper -d %{_sharedstatedir}/zookeeper -s /sbin/nologin \
|
|
-c "ZooKeeper service account" zookeeper
|
|
%post server
|
|
%systemd_post zookeeper.service
|
|
|
|
%preun server
|
|
%systemd_preun zookeeper.service
|
|
|
|
%postun server
|
|
%systemd_postun_with_restart zookeeper.service
|
|
|
|
%files
|
|
%{_bindir}/cli_mt
|
|
%{_bindir}/cli_st
|
|
%{_bindir}/load_gen
|
|
%{_bindir}/zktreeutil
|
|
%doc src/c/ChangeLog src/c/LICENSE src/c/NOTICE.txt src/c/README src/contrib/zktreeutil/README.txt
|
|
|
|
%files lib
|
|
%{_libdir}/lib*.so.*
|
|
%doc src/c/LICENSE src/c/NOTICE.txt
|
|
|
|
%files lib-devel
|
|
%dir %{_includedir}/%{name}
|
|
%{_includedir}/%{name}/*.h
|
|
%{_libdir}/*.so
|
|
%doc src/c/LICENSE src/c/NOTICE.txt
|
|
|
|
%files lib-doc
|
|
%doc src/c/LICENSE src/c/NOTICE.txt src/c/docs/html/*
|
|
|
|
%files java
|
|
%dir %{_javadir}/%{name}
|
|
%{_javadir}/%{name}/%{name}.jar
|
|
%{_javadir}/%{name}/%{name}-test.jar
|
|
%{_javadir}/%{name}/%{name}-ZooInspector.jar
|
|
%{_mavenpomdir}/JPP.%{name}-%{name}.pom
|
|
%{_mavenpomdir}/JPP.%{name}-%{name}-test.pom
|
|
%{_mavenpomdir}/JPP.%{name}-%{name}-ZooInspector.pom
|
|
%{_mavendepmapfragdir}/%{name}
|
|
%doc CHANGES.txt LICENSE.txt NOTICE.txt README.txt
|
|
|
|
%files javadoc
|
|
%{_javadocdir}/%{name}
|
|
%doc LICENSE.txt NOTICE.txt
|
|
|
|
%files -n python-ZooKeeper
|
|
%{python_sitearch}/ZooKeeper-?.?-py%{python_version}.egg-info
|
|
%{python_sitearch}/zookeeper.so
|
|
%doc LICENSE.txt NOTICE.txt src/contrib/zkpython/README
|
|
|
|
%files server
|
|
%attr(0755,root,root) %dir %{_sysconfdir}/zookeeper
|
|
%attr(0644,root,root) %ghost %config(noreplace) %{_sysconfdir}/zookeeper/zoo.cfg
|
|
%attr(0644,root,root) %{_sysconfdir}/zookeeper/zoo_sample.cfg
|
|
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/zookeeper/log4j.properties
|
|
|
|
%attr(0750,zookeeper,zookeeper) %dir %{_localstatedir}/log/zookeeper
|
|
%attr(0755,root,root) %dir %{_sharedstatedir}/zookeeper
|
|
%attr(0750,zookeeper,zookeeper) %dir %{_sharedstatedir}/zookeeper/data
|
|
%attr(0640,zookeeper,zookeeper) %ghost %{_sharedstatedir}/zookeeper/data/myid
|
|
%attr(0750,zookeeper,zookeeper) %dir %{_sharedstatedir}/zookeeper/log
|
|
%{_unitdir}/zookeeper.service
|
|
|
|
%changelog
|
|
* Fri Jan 24 2014 Timothy St. Clair <tstclair@redhat.com> - 3.4.5-15
|
|
- Update dependencies to jline and netty3
|
|
|
|
* Fri Oct 25 2013 Timothy St. Clair <tstclair@redhat.com> - 3.4.5-14
|
|
- Update dependencies to jline1
|
|
|
|
* Wed Sep 18 2013 Timothy St. Clair <tstclair@redhat.com> - 3.4.5-13
|
|
- Fixed the atomic patch which actually caused recursive crashing on zookeeper_close
|
|
|
|
* Tue Jul 30 2013 Petr Machata <pmachata@redhat.com> - 3.4.5-12
|
|
- Rebuild for boost 1.54.0
|
|
|
|
* Tue Jul 30 2013 gil cattaneo <puntogil@libero.it> 3.4.5-11
|
|
- fix changelog entries
|
|
|
|
* Mon Jul 22 2013 Timothy St. Clair <tstclair@redhat.com> - 3.4.5-10
|
|
- update permissions to be in line with default policies
|
|
|
|
* Mon Jul 22 2013 gil cattaneo <puntogil@libero.it> 3.4.5-9
|
|
- removed not needed %%defattr (only required for rpm < 4.4)
|
|
- removed not needed Group fields (new package guideline)
|
|
- fix directory ownership in java sub package
|
|
|
|
* Mon Jul 22 2013 Timothy St. Clair <tstclair@redhat.com> - 3.4.5-8
|
|
- cleanup file ownership properties.
|
|
|
|
* Sat Jun 15 2013 Jeffrey C. Ollie <jeff@ocjtech.us> - 3.4.5-7
|
|
- add server subpackage
|
|
|
|
* Fri Jun 14 2013 Dan Horák <dan[at]danny.cz> - 3.4.5-6
|
|
- use fetch_and_add from GCC, fixes build on non-x86 arches
|
|
|
|
* Tue Jun 11 2013 gil cattaneo <puntogil@libero.it> 3.4.5-5
|
|
- fixed zookeeper.so non-standard-executable-perm thanks to Björn Esser
|
|
|
|
* Tue Jun 11 2013 gil cattaneo <puntogil@libero.it> 3.4.5-4
|
|
- enabled hardened-builds
|
|
- fixed fully versioned dependency in subpackages (lib-devel and python)
|
|
- fixed License tag
|
|
- moved large documentation in lib-doc subpackage
|
|
|
|
* Sat Apr 27 2013 gil cattaneo <puntogil@libero.it> 3.4.5-3
|
|
- built ZooInspector
|
|
- added additional poms files
|
|
|
|
* Tue Apr 23 2013 gil cattaneo <puntogil@libero.it> 3.4.5-2
|
|
- building/packaging of the zookeeper-test.jar thanks to Robert Rati
|
|
|
|
* Sun Dec 02 2012 gil cattaneo <puntogil@libero.it> 3.4.5-1
|
|
- update to 3.4.5
|
|
|
|
* Tue Oct 30 2012 gil cattaneo <puntogil@libero.it> 3.4.4-3
|
|
- fix missing hostname
|
|
|
|
* Fri Oct 12 2012 gil cattaneo <puntogil@libero.it> 3.4.4-2
|
|
- add ant-junit as BR
|
|
|
|
* Fri Oct 12 2012 gil cattaneo <puntogil@libero.it> 3.4.4-1
|
|
- update to 3.4.4
|
|
|
|
* Fri May 18 2012 gil cattaneo <puntogil@libero.it> 3.4.3-1
|
|
- initial rpm
|