Accepting request 871303 from home:dirkmueller:branches:devel:libraries:c_c++

- update to 0.2.13:
  - Fix wrong key listing in byte trie
  - Fix cross-compiling issue caused by AC_FUNC_MALLOC
  - Fix isspace() arg problem on NetBSD.
  - Fix some documentations.
  - Really use TRIE_CHAR_TERM in TrieChar string termination.
    Changing TRIE_CHAR_TERM definition now won't break the code.
  - Fix Windows build issue by avoiding <unistd.h> include.
  - [New APIs] Add serialization of the trie into memory buffer.

OBS-URL: https://build.opensuse.org/request/show/871303
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libdatrie?expand=0&rev=27
This commit is contained in:
Marcus Meissner 2021-02-12 10:17:00 +00:00 committed by Git OBS Bridge
parent 0390a57a27
commit 5ddebefc4f
4 changed files with 20 additions and 8 deletions

View File

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

BIN
libdatrie-0.2.13.tar.xz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,3 +1,16 @@
-------------------------------------------------------------------
Thu Feb 11 22:45:51 UTC 2021 - Dirk Müller <dmueller@suse.com>
- update to 0.2.13:
- Fix wrong key listing in byte trie
- Fix cross-compiling issue caused by AC_FUNC_MALLOC
- Fix isspace() arg problem on NetBSD.
- Fix some documentations.
- Really use TRIE_CHAR_TERM in TrieChar string termination.
Changing TRIE_CHAR_TERM definition now won't break the code.
- Fix Windows build issue by avoiding <unistd.h> include.
- [New APIs] Add serialization of the trie into memory buffer.
-------------------------------------------------------------------
Tue Aug 25 21:45:14 UTC 2020 - Dirk Mueller <dmueller@suse.com>

View File

@ -1,7 +1,7 @@
#
# spec file for package libdatrie
#
# Copyright (c) 2020 SUSE LLC
# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -17,7 +17,7 @@
Name: libdatrie
Version: 0.2.12
Version: 0.2.13
Release: 0
Summary: Double-Array Trie Library
License: LGPL-2.1-only
@ -67,8 +67,6 @@ autoreconf -fiv
%install
%make_install
rm -f %{buildroot}%{_libdir}/libdatrie.la
# This is not installed where it should
mv %{buildroot}%{_datadir}/doc/libdatrie/README.migration %{buildroot}%{_docdir}/libdatrie/
%post -n libdatrie1 -p /sbin/ldconfig
%postun -n libdatrie1 -p /sbin/ldconfig
@ -79,11 +77,12 @@ mv %{buildroot}%{_datadir}/doc/libdatrie/README.migration %{buildroot}%{_docdir}
%{_libdir}/libdatrie.so.1*
%files devel
%doc README.migration
%doc %{_docdir}/libdatrie
%{_bindir}/trietool*
%{_mandir}/man*/trietool*.1%{?ext_man}
%{_includedir}/datrie/
%{_libdir}/libdatrie.so
%{_libdir}/pkgconfig/datrie-0.2.pc
%doc %{_docdir}/libdatrie/
%changelog