Accepting request 829642 from devel:libraries:c_c++

- update to 0.2.12:
  - More C90 (ANSI C) compliance.
  - Prevent some compiling conflicts with other sources.
  - Fix miscellaneous compiler warnings.
  - Prevent trimming on extremely long dictionary path names.
  - Detect iconv() error more correctly in trietool.
  - Clarify package description that search time is O(m), where m is
    key length, not O(1), while still claiming that it's independent
    of database size.
  - Fix trie_state_get_data() on a prefix key.
  - Fix reported segfault on full-range alpha map.

OBS-URL: https://build.opensuse.org/request/show/829642
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libdatrie?expand=0&rev=21
This commit is contained in:
Dominique Leuenberger 2020-09-01 18:05:35 +00:00 committed by Git OBS Bridge
commit bb06bbf770
4 changed files with 27 additions and 11 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:180eff7b0309ca19a02d5864e744185d715f021398a096fec6cf960f8ebfaa2b
size 294380

3
libdatrie-0.2.12.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:452dcc4d3a96c01f80f7c291b42be11863cd1554ff78b93e110becce6e00b149
size 310236

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Tue Aug 25 21:45:14 UTC 2020 - Dirk Mueller <dmueller@suse.com>
- update to 0.2.12:
- More C90 (ANSI C) compliance.
- Prevent some compiling conflicts with other sources.
- Fix miscellaneous compiler warnings.
- Prevent trimming on extremely long dictionary path names.
- Detect iconv() error more correctly in trietool.
- Clarify package description that search time is O(m), where m is
key length, not O(1), while still claiming that it's independent
of database size.
- Fix trie_state_get_data() on a prefix key.
- Fix reported segfault on full-range alpha map.
-------------------------------------------------------------------
Mon Feb 19 11:29:35 UTC 2018 - jengelh@inai.de

View File

@ -1,7 +1,7 @@
#
# spec file for package libdatrie
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -12,17 +12,17 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: libdatrie
Version: 0.2.10
Version: 0.2.12
Release: 0
Summary: Double-Array Trie Library
License: LGPL-2.1
License: LGPL-2.1-only
Group: Development/Libraries/C and C++
Url: https://linux.thai.net/~thep/datrie/datrie.html
URL: https://linux.thai.net/~thep/datrie/datrie.html
Source: https://linux.thai.net/pub/thailinux/software/libthai/%{name}-%{version}.tar.xz
Source99: baselibs.conf
BuildRequires: autoconf-archive
@ -62,7 +62,7 @@ autoreconf -fiv
%configure \
--disable-static \
--with-html-docdir=%{_docdir}/libdatrie/html
make %{?_smp_mflags}
%make_build
%install
%make_install
@ -74,12 +74,13 @@ mv %{buildroot}%{_datadir}/doc/libdatrie/README.migration %{buildroot}%{_docdir}
%postun -n libdatrie1 -p /sbin/ldconfig
%files -n libdatrie1
%doc AUTHORS ChangeLog COPYING README
%license COPYING
%doc AUTHORS ChangeLog README
%{_libdir}/libdatrie.so.1*
%files devel
%{_bindir}/trietool*
%{_mandir}/man*/trietool*.1%{ext_man}
%{_mandir}/man*/trietool*.1%{?ext_man}
%{_includedir}/datrie/
%{_libdir}/libdatrie.so
%{_libdir}/pkgconfig/datrie-0.2.pc