2012-01-26 05:10:16 +00:00
|
|
|
Name: libexttextcat
|
2014-06-27 10:25:41 +00:00
|
|
|
Version: 3.4.4
|
2015-06-17 15:14:37 +00:00
|
|
|
Release: 3%{?dist}
|
2012-01-26 05:10:16 +00:00
|
|
|
Summary: Text categorization library
|
|
|
|
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
License: BSD
|
|
|
|
URL: http://www.freedesktop.org/wiki/Software/libexttextcat
|
|
|
|
Source: http://dev-www.libreoffice.org/src/libexttextcat/%{name}-%{version}.tar.xz
|
|
|
|
|
|
|
|
Obsoletes: libtextcat < 3.2.0
|
|
|
|
Provides: libtextcat = %{version}
|
|
|
|
|
|
|
|
%description
|
|
|
|
%{name} is an N-Gram-Based Text Categorization library primarily
|
|
|
|
intended for language guessing.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
Obsoletes: libtextcat-devel < 3.2.0
|
|
|
|
Provides: libtextcat-devel = %{version}
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
The %{name}-devel package contains libraries and header files for
|
|
|
|
developing applications that use %{name}.
|
|
|
|
|
|
|
|
%package tools
|
|
|
|
Summary: Tool for creating custom document fingerprints
|
|
|
|
Group: Applications/Publishing
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description tools
|
|
|
|
The %{name}-tools package contains the createfp program that allows
|
|
|
|
you to easily create your own document fingerprints.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
2013-05-30 05:34:54 +00:00
|
|
|
%configure --disable-silent-rules --disable-static --disable-werror
|
2012-01-26 05:10:16 +00:00
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
make install DESTDIR=%{buildroot}
|
|
|
|
rm -f %{buildroot}/%{_libdir}/*.la
|
|
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
make check
|
|
|
|
|
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
2013-05-30 05:42:16 +00:00
|
|
|
%doc ChangeLog LICENSE README*
|
2012-05-25 12:40:31 +00:00
|
|
|
%{_libdir}/%{name}*.so.*
|
2012-01-26 05:10:16 +00:00
|
|
|
%{_datadir}/%{name}
|
|
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%{_includedir}/%{name}
|
2012-05-25 12:40:31 +00:00
|
|
|
%{_libdir}/%{name}*.so
|
2012-01-26 05:10:16 +00:00
|
|
|
%{_libdir}/pkgconfig/%{name}.pc
|
2012-05-25 12:40:31 +00:00
|
|
|
%{_datadir}/vala/vapi/libexttextcat.vapi
|
2012-01-26 05:10:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
%files tools
|
|
|
|
%{_bindir}/createfp
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2015-06-17 15:14:37 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4.4-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2014-08-17 03:13:40 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-27 10:25:41 +00:00
|
|
|
* Fri Jun 27 2014 Caolán McNamara <caolanm@redhat.com> 3.4.4-1
|
|
|
|
- latest version
|
|
|
|
|
2014-06-07 03:18:10 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2013-08-03 05:22:47 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-07-05 11:55:06 +00:00
|
|
|
* Fri Jul 05 2013 Caolán McNamara <caolanm@redhat.com> 3.4.3-1
|
|
|
|
- latest version
|
|
|
|
|
2013-05-30 05:34:00 +00:00
|
|
|
* Thu May 30 2013 David Tardon <dtardon@redhat.com> - 3.4.1-1
|
|
|
|
- new release
|
|
|
|
|
2013-02-14 04:18:30 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-11-05 14:25:44 +00:00
|
|
|
* Mon Nov 05 2012 Caolán McNamara <caolanm@redhat.com> 3.4.0-1
|
|
|
|
- latest import
|
|
|
|
|
2012-07-19 19:43:07 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-07-12 05:41:41 +00:00
|
|
|
* Thu Jul 12 2012 David Tardon <dtardon@redhat.com> 3.3.1-1
|
|
|
|
- latest import
|
|
|
|
|
2012-05-25 12:26:04 +00:00
|
|
|
* Fri May 25 2012 Caolán McNamara <caolanm@redhat.com> 3.3.0-1
|
|
|
|
- latest version
|
|
|
|
|
2012-01-26 05:10:16 +00:00
|
|
|
* Tue Jan 24 2012 David Tardon <dtardon@redhat.com> 3.2.0-1
|
|
|
|
- initial import
|