2014-07-03 12:07:09 +00:00
|
|
|
Name: libdatrie
|
2021-02-01 08:10:15 +00:00
|
|
|
Version: 0.2.13
|
2023-05-17 07:55:07 +00:00
|
|
|
Release: 6%{?dist}
|
2014-07-03 12:07:09 +00:00
|
|
|
Summary: Implementation of Double-Array structure for representing trie
|
2023-05-17 07:55:07 +00:00
|
|
|
License: LGPL-2.1-or-later
|
2014-07-03 12:07:09 +00:00
|
|
|
URL: http://linux.thai.net/projects/datrie
|
|
|
|
Source0: http://linux.thai.net/pub/thailinux/software/libthai/%{name}-%{version}.tar.xz
|
2016-04-06 06:49:08 +00:00
|
|
|
BuildRequires: autoconf, automake, libtool
|
2021-02-01 08:10:15 +00:00
|
|
|
BuildRequires: autoconf-archive
|
2014-07-03 12:07:09 +00:00
|
|
|
BuildRequires: doxygen
|
2023-05-17 07:55:07 +00:00
|
|
|
BuildRequires: make
|
2014-07-03 12:07:09 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
datrie is an implementation of double-array structure for representing trie.
|
|
|
|
|
|
|
|
Trie is a kind of digital search tree, an efficient indexing method with O(1)
|
|
|
|
time complexity for searching. Comparably as efficient as hashing, trie also
|
|
|
|
provides flexibility on incremental matching and key spelling manipulation.
|
|
|
|
This makes it ideal for lexical analyzers, as well as spelling dictionaries.
|
|
|
|
|
|
|
|
Details of the implementation: http://linux.thai.net/~thep/datrie/datrie.html
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
This package contains libraries and header files for
|
|
|
|
developing applications that use %{name}.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
%build
|
2016-04-06 06:49:08 +00:00
|
|
|
autoreconf -f -i -v
|
2014-07-03 12:07:09 +00:00
|
|
|
#sed -i '/sys_lib_dlsearch_path_spec/s|/usr/lib |/usr/lib /usr/lib64|' configure
|
|
|
|
%configure --disable-static \
|
|
|
|
--with-html-docdir=%{_pkgdocdir}-devel
|
|
|
|
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
|
2014-07-04 03:03:03 +00:00
|
|
|
%make_build
|
2014-07-03 12:07:09 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
%make_install
|
|
|
|
rm -frv %{buildroot}%{_pkgdocdir}
|
|
|
|
find %{buildroot} -name '*.*a' -delete -print
|
|
|
|
|
|
|
|
%check
|
2015-08-25 09:40:20 +00:00
|
|
|
LD_LIBRARY_PATH=../datrie/.libs %make_build check
|
2014-07-03 12:07:09 +00:00
|
|
|
|
|
|
|
%files
|
2015-08-25 09:40:20 +00:00
|
|
|
%license COPYING
|
2014-07-03 12:07:09 +00:00
|
|
|
%{_libdir}/libdatrie.so.*
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%doc AUTHORS ChangeLog NEWS README*
|
|
|
|
%{_includedir}/datrie/
|
|
|
|
%{_libdir}/libdatrie.so
|
|
|
|
%{_libdir}/pkgconfig/datrie-0.2.pc
|
2016-01-15 04:30:38 +00:00
|
|
|
%{_bindir}/trietool*
|
|
|
|
%{_mandir}/man1/trietool*
|
2020-10-14 04:05:28 +00:00
|
|
|
%{_pkgdocdir}-devel/*.{html,css,png,js,svg}
|
2014-07-03 12:07:09 +00:00
|
|
|
|
|
|
|
%changelog
|
2023-05-17 07:55:07 +00:00
|
|
|
* Wed May 17 2023 Peng Wu <pwu@redhat.com> - 0.2.13-6
|
|
|
|
- Migrate to SPDX license
|
|
|
|
|
2023-01-19 16:05:05 +00:00
|
|
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.13-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
2022-07-21 17:33:22 +00:00
|
|
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.13-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-01-20 15:59:25 +00:00
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.13-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2021-07-22 11:10:17 +00:00
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.13-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-02-01 08:10:15 +00:00
|
|
|
* Mon Feb 1 2021 Peng Wu <pwu@redhat.com> - 0.2.13-1
|
|
|
|
- Update to 0.2.13
|
|
|
|
|
2021-01-26 16:52:18 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.9-14
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-10-14 04:05:28 +00:00
|
|
|
* Wed Oct 14 2020 Peng Wu <pwu@redhat.com> - 0.2.9-13
|
|
|
|
- Fixes FTBFS
|
|
|
|
|
2020-07-28 04:27:14 +00:00
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.9-12
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-01-29 08:51:42 +00:00
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.9-11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-07-25 13:02:15 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.9-10
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-02-01 06:54:22 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.9-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-07-13 07:57:44 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.9-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-02-07 21:25:13 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.9-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-08-03 01:19:38 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.9-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 18:41:38 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.9-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-02-10 18:30:59 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.9-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-04-06 06:49:08 +00:00
|
|
|
* Wed Apr 6 2016 Peng Wu <pwu@redhat.com> - 0.2.9-3
|
|
|
|
- Fixes docs build
|
|
|
|
|
2016-02-04 03:01:56 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.9-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-08-25 09:40:20 +00:00
|
|
|
* Thu Jun 18 2015 Christopher Meng <rpm@cicku.me> - 0.2.9-1
|
|
|
|
- Update to 0.2.9
|
|
|
|
|
2015-06-17 15:06:19 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.8-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2014-08-17 02:49:09 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.8-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-07-03 12:07:09 +00:00
|
|
|
* Wed Jun 18 2014 Christopher Meng <rpm@cicku.me> - 0.2.8-4
|
|
|
|
- Move docs to %%_pkgdocdir
|
|
|
|
|
|
|
|
* Mon Feb 24 2014 Christopher Meng <rpm@cicku.me> - 0.2.8-3
|
|
|
|
- Disable rpath.
|
|
|
|
|
|
|
|
* Sat Feb 08 2014 Christopher Meng <rpm@cicku.me> - 0.2.8-2
|
|
|
|
- Reform the subpackages.
|
|
|
|
- Add check section to ensure the availability.
|
|
|
|
|
|
|
|
* Tue Jan 07 2014 Christopher Meng <rpm@cicku.me> - 0.2.8-1
|
|
|
|
- Initial Package.
|