965cd4
965cd4
%define git_long  e8e3d20f20da5ee3e37d347207b01890829a5475
965cd4
%define git_short e8e3d20
965cd4
%define snap 20130812
965cd4
965cd4
Summary:	A C++ port of Lucene
965cd4
Name:		clucene
965cd4
Version:	2.3.3.4
965cd4
Release:	31.%{snap}.%{git_short}git%{?dist}
965cd4
License:	LGPLv2+ or ASL 2.0
965cd4
Group:		Development/System
965cd4
URL:		http://www.sourceforge.net/projects/clucene
965cd4
%if 0%{?snap}
965cd4
#  git archive e8e3d20f20da5ee3e37d347207b01890829a5475 --prefix=clucene-core-2.3.3.4/ | xz -9 > ../clucene-core-2.3.3.4-e8e3d20.tar.xz
965cd4
Source0:	clucene-core-2.3.3.4-%{git_short}.tar.xz
965cd4
965cd4
%else
965cd4
Source0:	http://downloads.sourceforge.net/clucene/clucene-core-%{version}.tar.gz
965cd4
%endif
965cd4
965cd4
BuildRequires:	boost-devel
965cd4
BuildRequires:	cmake
965cd4
BuildRequires:  gawk
965cd4
BuildRequires:	zlib-devel
965cd4
965cd4
## upstreamable patches
965cd4
# include LUCENE_SYS_INCLUDES in pkgconfig --cflags output
965cd4
# https://bugzilla.redhat.com/748196
965cd4
# and
965cd4
# https://sourceforge.net/tracker/?func=detail&aid=3461512&group_id=80013&atid=558446
965cd4
# pkgconfig file is missing clucene-shared
965cd4
Patch50: clucene-core-2.3.3.4-pkgconfig.patch
965cd4
# https://bugzilla.redhat.com/794795
965cd4
# https://sourceforge.net/tracker/index.php?func=detail&aid=3392466&group_id=80013&atid=558446
965cd4
# contribs-lib is not built and installed even with config
965cd4
Patch51: clucene-core-2.3.3.4-install_contribs_lib.patch  
965cd4
# Don't install CLuceneConfig.cmake twice
965cd4
Patch52: clucene-core-2.3.3.4-CLuceneConfig.patch
965cd4
# Fix tests for undefined usleep
965cd4
Patch53: clucene-core-2.3.3.4-usleep.patch
965cd4
965cd4
%description
965cd4
CLucene is a C++ port of the popular Apache Lucene search engine
965cd4
(http://lucene.apache.org/java). 
965cd4
CLucene aims to be a high-speed alternative to Java Lucene, its API is very
965cd4
similar to that of the Java version. CLucene has recently been brought up to
965cd4
date with Lucene 2.3.2. It contains most of the same functionality as the Java version.
965cd4
965cd4
%package core
965cd4
Summary:	Core clucene module
965cd4
Group:		Development/System
965cd4
Provides:	clucene = %{version}-%{release}
965cd4
#Requires: %{name} = %{version}-%{release}
965cd4
%description core
965cd4
CLucene is a C++ port of the popular Apache Lucene search engine
965cd4
(http://lucene.apache.org/java).
965cd4
CLucene aims to be a high-speed alternative to Java Lucene, its API is very
965cd4
similar to that of the Java version. CLucene has recently been brought up to
965cd4
date with Lucene 2.3.2. It contains most of the same functionality as the Java version.
965cd4
965cd4
%package core-devel
965cd4
Summary:	Headers for developing programs that will use %{name}
965cd4
Group:		Development/Libraries
965cd4
Requires:	%{name}-core%{?_isa} = %{version}-%{release}
965cd4
Requires:	%{name}-contribs-lib%{?_isa} = %{version}-%{release}
965cd4
%description core-devel
965cd4
This package contains the libraries and header files needed for
965cd4
developing with clucene
965cd4
965cd4
%package contribs-lib
965cd4
Summary:	Language specific text analyzers for %{name}
965cd4
Group:  	Development/System
965cd4
Requires:	%{name}-core%{?_isa} = %{version}-%{release}
965cd4
%description contribs-lib
965cd4
%{summary}.
965cd4
965cd4
965cd4
%prep
965cd4
%setup -n %{name}-core-%{version}
965cd4
965cd4
%patch50 -p1 -b .pkgconfig
965cd4
%patch51 -p1 -b .install_contribs_lib
965cd4
%patch52 -p1 -b .CLuceneConfig
965cd4
%patch53 -p1 -b .usleep
965cd4
965cd4
# nuke bundled code
965cd4
rm -rfv src/ext/{boost/,zlib/}
965cd4
965cd4
965cd4
%build
965cd4
mkdir -p %{_target_platform}
965cd4
pushd %{_target_platform}
965cd4
%{cmake} \
965cd4
  -DBUILD_CONTRIBS_LIB:BOOL=ON \
965cd4
  -DLIB_DESTINATION:PATH=%{_libdir} \
965cd4
  -DLUCENE_SYS_INCLUDES:PATH=%{_libdir} \
965cd4
  ..
965cd4
popd
965cd4
965cd4
make %{?_smp_mflags} -C %{_target_platform}
965cd4
965cd4
965cd4
%install
965cd4
make install/fast DESTDIR=%{buildroot} -C %{_target_platform}
965cd4
965cd4
965cd4
%check
965cd4
export PKG_CONFIG_PATH=%{buildroot}%{_libdir}/pkgconfig
965cd4
test "$(pkg-config --modversion libclucene-core)" = "%{version}"
965cd4
# FIXME: make tests non-fatal for ppc and s390 (big endian 32 bit archs) until we have a proper fix
965cd4
#ifnarch ppc s390
965cd4
export CTEST_OUTPUT_ON_FAILURE=1
965cd4
# needing the 'touch' here seems an odd workaroudn for missing dependency, race condition or cache requirement
965cd4
touch src/test/CMakeLists.txt && \
965cd4
make -C %{_target_platform} cl_test && \
965cd4
time make -C %{_target_platform} test ARGS="--timeout 300 --output-on-failure" ||:
965cd4
#endif
965cd4
965cd4
%ldconfig_scriptlets core
965cd4
965cd4
%files core
965cd4
%defattr(-, root, root, -)
965cd4
%doc APACHE.license AUTHORS ChangeLog COPYING LGPL.license README
965cd4
%{_libdir}/libclucene-core.so.1*
965cd4
%{_libdir}/libclucene-core.so.%{version}
965cd4
%{_libdir}/libclucene-shared.so.1*
965cd4
%{_libdir}/libclucene-shared.so.%{version}
965cd4
965cd4
%ldconfig_scriptlets contribs-lib
965cd4
965cd4
%files contribs-lib
965cd4
%defattr(-, root, root, -)
965cd4
%{_libdir}/libclucene-contribs-lib.so.1*
965cd4
%{_libdir}/libclucene-contribs-lib.so.%{version}
965cd4
965cd4
%files core-devel
965cd4
%defattr(-, root, root, -)
965cd4
%dir %{_libdir}/CLucene
965cd4
%{_includedir}/CLucene/
965cd4
%{_includedir}/CLucene.h
965cd4
%{_libdir}/libclucene*.so
965cd4
%{_libdir}/CLucene/clucene-config.h
965cd4
%{_libdir}/CLucene/CLuceneConfig.cmake
965cd4
%{_libdir}/pkgconfig/libclucene-core.pc
965cd4
965cd4
965cd4
%changelog
965cd4
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.3.4-31.20130812.e8e3d20git
965cd4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
965cd4
965cd4
* Sun Feb 04 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.3.3.4-30.20130812.e8e3d20git
965cd4
- Switch to %%ldconfig_scriptlets
965cd4
965cd4
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.3.4-29.20130812.e8e3d20git
965cd4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
965cd4
965cd4
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.3.4-28.20130812.e8e3d20git
965cd4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
965cd4
965cd4
* Mon Jul 03 2017 Jonathan Wakely <jwakely@redhat.com> - 2.3.3.4-27.20130812.e8e3d20git
965cd4
- Rebuilt for Boost 1.64
965cd4
965cd4
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.3.4-26.20130812.e8e3d20git
965cd4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
965cd4
965cd4
* Fri Jan 27 2017 Jonathan Wakely <jwakely@redhat.com> - 2.3.3.4-25.20130812.e8e3d20git
965cd4
- Rebuilt for Boost 1.63
965cd4
965cd4
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.3.4-24.20130812.e8e3d20git
965cd4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
965cd4
965cd4
* Fri Jan 15 2016 Jonathan Wakely <jwakely@redhat.com> - 2.3.3.4-23.20130812.e8e3d20git
965cd4
- Rebuilt for Boost 1.60
965cd4
965cd4
* Thu Aug 27 2015 Jonathan Wakely <jwakely@redhat.com> - 2.3.3.4-22.20130812.e8e3d20git
965cd4
- Rebuilt for Boost 1.59
965cd4
965cd4
* Wed Jul 29 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.3.4-21.20130812.e8e3d20git
965cd4
- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159
965cd4
965cd4
* Wed Jul 22 2015 David Tardon <dtardon@redhat.com> - 2.3.3.4-20.20130812.e8e3d20git
965cd4
- rebuild for Boost 1.58
965cd4
965cd4
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.3.4-19.20130812.e8e3d20git
965cd4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
965cd4
965cd4
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 2.3.3.4-18.20130812.e8e3d20git
965cd4
- Rebuilt for GCC 5 C++11 ABI change
965cd4
965cd4
* Mon Jan 26 2015 Petr Machata <pmachata@redhat.com> - 2.3.3.4-17.20130812.e8e3d20git
965cd4
- Rebuild for boost 1.57.0
965cd4
965cd4
* Thu Oct 09 2014 Rex Dieter <rdieter@fedoraproject.org> 2.3.3.4-16.20130812.e8e3d20git
965cd4
- %%check: more love
965cd4
965cd4
* Thu Oct 09 2014 Rex Dieter <rdieter@fedoraproject.org> 2.3.3.4-15.20130812.e8e3d20git
965cd4
- fix minor cmake macro syntax error
965cd4
965cd4
* Tue Oct 07 2014 Rex Dieter <rdieter@fedoraproject.org> - 2.3.3.4-14.20130812.e8e3d20git
965cd4
- 20130812 git snapshot
965cd4
- fix tests
965cd4
- %%prep: explicitly delete bundled boost,zlib
965cd4
965cd4
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.3.4-13
965cd4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
965cd4
965cd4
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.3.4-12
965cd4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
965cd4
965cd4
* Thu May 22 2014 Petr Machata <pmachata@redhat.com> - 2.3.3.4-11
965cd4
- Rebuild for boost 1.55.0
965cd4
965cd4
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.3.4-10
965cd4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
965cd4
965cd4
* Tue Jul 30 2013 Petr Machata <pmachata@redhat.com> - 2.3.3.4-9
965cd4
- Rebuild for boost 1.54.0
965cd4
965cd4
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.3.4-8
965cd4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
965cd4
965cd4
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.3.4-7
965cd4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
965cd4
965cd4
* Mon Mar 19 2012 Rex Dieter <rdieter@fedoraproject.org> 2.3.3.4-6
965cd4
- contribs-lib is not built and installed even with config (#794795, upstream ID: 3392466)
965cd4
- pkgconfig file is missing clucene-shared (upstream ID: 3461512)
965cd4
- non-descriptive descripton (#757319)
965cd4
965cd4
* Sat Feb 25 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 2.3.3.4-5
965cd4
- Temporarily disable make check as it fails on all arches
965cd4
965cd4
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.3.4-4
965cd4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
965cd4
965cd4
* Sun Oct 23 2011 Rex Dieter <rdieter@fedoraproject.org> 2.3.3.4-3
965cd4
- include LUCENE_SYS_INCLUDES in pkgconfig --cflags output (#748196)
965cd4
965cd4
* Wed Jun 08 2011 Rex Dieter <rdieter@fedoraproject.org> 2.3.3.4-2
965cd4
- cleanup cmake usage
965cd4
- fix scriptlets
965cd4
- track sonames
965cd4
965cd4
* Thu Jun 02 2011 Deji Akingunola <dakingun@gmail.com> - 2.3.3.4-1
965cd4
- Update to version 2.3.3.4
965cd4
965cd4
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.21b-3
965cd4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
965cd4
965cd4
* Thu Jul 08 2010 Deji Akingunola <dakingun@gmail.com> 0.9.21b-2
965cd4
- Include the license text in the -core subpackage.
965cd4
965cd4
* Sun Jun 06 2010 Robert Scheck <robert@fedoraproject.org> 0.9.21b-1
965cd4
- Update to 0.9.21b
965cd4
965cd4
* Wed Nov 04 2009 Dennis Gilmore <dennis@ausil.us> - 0.9.21-5
965cd4
- disable 'make check on sparc64 along with ppc64 and s390x
965cd4
965cd4
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.21-4
965cd4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
965cd4
965cd4
* Tue Apr 14 2009 Karsten Hopp <karsten@redhat.com> 0.9.21-3
965cd4
- bypass 'make check' on s390x, similar to ppc64
965cd4
965cd4
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.21-2
965cd4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
965cd4
965cd4
* Wed Aug 27 2008 Deji Akingunola <dakingun@gmail.com> - 0.9.21-1
965cd4
- Update to version 0.9.21
965cd4
965cd4
* Sun Feb 10 2008 Deji Akingunola <dakingun@gmail.com> - 0.9.20-4
965cd4
- Rebuild for gcc43
965cd4
965cd4
* Wed Oct 25 2007 Deji Akingunola <dakingun@gmail.com> - 0.9.20-3
965cd4
- Fix a typo in the License field
965cd4
965cd4
* Wed Oct 25 2007 Deji Akingunola <dakingun@gmail.com> - 0.9.20-2
965cd4
- Fix multiarch conflicts (BZ #340891)
965cd4
- Bypass 'make check' for ppc64, its failing two tests there
965cd4
965cd4
* Tue Aug 21 2007 Deji Akingunola <dakingun@gmail.com> - 0.9.20-1
965cd4
- Update to version 0.9.20
965cd4
965cd4
* Sat Aug 11 2007 Deji Akingunola <dakingun@gmail.com> - 0.9.19-1
965cd4
- Latest release update
965cd4
965cd4
* Fri Aug 03 2007 Deji Akingunola <dakingun@gmail.com> - 0.9.16a-2
965cd4
- License tag update
965cd4
965cd4
* Thu Feb 22 2007 Deji Akingunola <dakingun@gmail.com> - 0.9.16a-2
965cd4
- Add -contrib subpackage 
965cd4
965cd4
* Thu Dec 07 2006 Deji Akingunola <dakingun@gmail.com> - 0.9.16a-1
965cd4
- Update to latest stable release 
965cd4
- Run make check during build
965cd4
965cd4
* Mon Nov 20 2006 Deji Akingunola <dakingun@gmail.com> - 0.9.15-3
965cd4
- Don't package APACHE.license since we've LGPL instead 
965cd4
- Package documentation in devel subpackage
965cd4
965cd4
* Mon Nov 13 2006 Deji Akingunola <dakingun@gmail.com> - 0.9.15-2
965cd4
- Fix a bunch of issues with the spec (#215258)
965cd4
- Moved the header file away from lib dir
965cd4
965cd4
* Sat Nov 04 2006 Deji Akingunola <dakingun@gmail.com> - 0.9.15-1
965cd4
- Initial packaging for Fedora Extras