update to 1.4.16 [release 1.4.16-1mamba;Wed Aug 19 2020]
This commit is contained in:
parent
eb03f81f2e
commit
3f5d97dd63
@ -1,5 +1,5 @@
|
|||||||
Name: libxapian
|
Name: libxapian
|
||||||
Version: 1.2.22
|
Version: 1.4.16
|
||||||
Release: 1mamba
|
Release: 1mamba
|
||||||
Summary: An Open Source Search Engine Library released under the GPL
|
Summary: An Open Source Search Engine Library released under the GPL
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
@ -11,6 +11,7 @@ Source: http://www.oligarchy.co.uk/xapian/%{version}/xapian-core-%{versio
|
|||||||
License: GPL
|
License: GPL
|
||||||
## AUTOBUILDREQ-BEGIN
|
## AUTOBUILDREQ-BEGIN
|
||||||
BuildRequires: glibc-devel
|
BuildRequires: glibc-devel
|
||||||
|
BuildRequires: ldconfig
|
||||||
BuildRequires: libgcc
|
BuildRequires: libgcc
|
||||||
BuildRequires: libstdc++6-devel
|
BuildRequires: libstdc++6-devel
|
||||||
BuildRequires: libuuid-devel
|
BuildRequires: libuuid-devel
|
||||||
@ -32,19 +33,29 @@ It supports the Probabilistic Information Retrieval model and also supports a ri
|
|||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
Summary: Static libraries and headers for %{name}
|
Summary: Static libraries and headers for %{name}
|
||||||
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||||
|
Requires: %{name}-tools = %{?epoch:%epoch:}%{version}-%{release}
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
Xapian is a highly adaptable toolkit which allows developers to easily add advanced indexing and search facilities to their own applications. It supports
|
Xapian is a highly adaptable toolkit which allows developers to easily add advanced indexing and search facilities to their own applications. It supports
|
||||||
the Probabilistic Information Retrieval model and also supports a rich set of boolean query operators,
|
the Probabilistic Information Retrieval model and also supports a rich set of boolean query operators,
|
||||||
|
This package contains static libraries and header files needed for development.
|
||||||
|
|
||||||
This package contains static libraries and header files need for development.
|
%package tools
|
||||||
|
Group: System/Tools
|
||||||
|
Summary: Tools provided by %{name}
|
||||||
|
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||||
|
|
||||||
|
%description tools
|
||||||
|
Xapian is a highly adaptable toolkit which allows developers to easily add advanced indexing and search facilities to their own applications. It supports
|
||||||
|
the Probabilistic Information Retrieval model and also supports a rich set of boolean query operators,
|
||||||
|
This package contains tools provided by %{name}.
|
||||||
|
|
||||||
|
%debug_package
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n xapian-core-%{version}
|
%setup -q -n xapian-core-%{version}
|
||||||
#-D -T
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
#:<< _EOF
|
|
||||||
%configure
|
%configure
|
||||||
%make
|
%make
|
||||||
|
|
||||||
@ -64,18 +75,24 @@ rm -fr %{buildroot}%{_datadir}/doc
|
|||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_libdir}/*.so.*
|
%{_libdir}/libxapian.so.*
|
||||||
|
%dir %{_datadir}/xapian-core
|
||||||
|
%dir %{_datadir}/xapian-core/stopwords
|
||||||
|
%{_datadir}/xapian-core/stopwords/*.list
|
||||||
%doc AUTHORS COPYING
|
%doc AUTHORS COPYING
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_bindir}/*
|
%{_bindir}/copydatabase
|
||||||
|
%{_bindir}/quest
|
||||||
|
%{_bindir}/simpleexpand
|
||||||
|
%{_bindir}/simpleindex
|
||||||
|
%{_bindir}/simplesearch
|
||||||
%dir %{_includedir}/xapian
|
%dir %{_includedir}/xapian
|
||||||
%{_includedir}/xapian/*.h
|
%{_includedir}/xapian/*.h
|
||||||
%{_includedir}/*.h
|
%{_includedir}/*.h
|
||||||
%{_libdir}/*.a
|
%{_libdir}/libxapian.la
|
||||||
%{_libdir}/*.la
|
%{_libdir}/libxapian.so
|
||||||
%{_libdir}/*.so
|
|
||||||
%{_datadir}/aclocal/*.m4
|
%{_datadir}/aclocal/*.m4
|
||||||
%dir %{_libdir}/cmake/xapian
|
%dir %{_libdir}/cmake/xapian
|
||||||
%{_libdir}/cmake/xapian/xapian-config-version.cmake
|
%{_libdir}/cmake/xapian/xapian-config-version.cmake
|
||||||
@ -83,9 +100,16 @@ rm -fr %{buildroot}%{_datadir}/doc
|
|||||||
%{_libdir}/pkgconfig/xapian-core.pc
|
%{_libdir}/pkgconfig/xapian-core.pc
|
||||||
%{_mandir}/man1/*
|
%{_mandir}/man1/*
|
||||||
%doc ChangeLog NEWS README
|
%doc ChangeLog NEWS README
|
||||||
%doc ChangeLog.examples docs/*.html docs/*.pdf docs/apidoc/html HACKING
|
%doc docs/*.html docs/apidoc/html HACKING
|
||||||
|
|
||||||
|
%files tools
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{_bindir}/xapian-*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Aug 19 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.16-1mamba
|
||||||
|
- update to 1.4.16
|
||||||
|
|
||||||
* Sat Feb 06 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.22-1mamba
|
* Sat Feb 06 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.22-1mamba
|
||||||
- update to 1.2.22
|
- update to 1.2.22
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user