From d844f7ecdcb5edbc94f562890e6a9f3eb9c79a80da2f149139001daa5b16e6e6 Mon Sep 17 00:00:00 2001 From: OBS User autobuild Date: Mon, 20 Sep 2010 13:38:35 +0000 Subject: [PATCH 1/2] Accepting request 48507 from devel:libraries:c_c++ checked in (request 48507) OBS-URL: https://build.opensuse.org/request/show/48507 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libdatrie?expand=0&rev=9 --- libdatrie-0.2.2.tar.bz2 | 3 +++ libdatrie-0.2.4.tar.bz2 | 3 --- libdatrie.changes | 15 --------------- libdatrie.spec | 6 +++--- 4 files changed, 6 insertions(+), 21 deletions(-) create mode 100644 libdatrie-0.2.2.tar.bz2 delete mode 100644 libdatrie-0.2.4.tar.bz2 diff --git a/libdatrie-0.2.2.tar.bz2 b/libdatrie-0.2.2.tar.bz2 new file mode 100644 index 0000000..872062c --- /dev/null +++ b/libdatrie-0.2.2.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5decf7a01b8dde4d944c4b9e7a6e9bdc654cb566ca294f3a81f2682655a8787 +size 281395 diff --git a/libdatrie-0.2.4.tar.bz2 b/libdatrie-0.2.4.tar.bz2 deleted file mode 100644 index 0dd713b..0000000 --- a/libdatrie-0.2.4.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ab03f619df709971888dd80f50ce9193a6d960eb9756edf4d093fa6ab3058b84 -size 282302 diff --git a/libdatrie.changes b/libdatrie.changes index 464c015..7059996 100644 --- a/libdatrie.changes +++ b/libdatrie.changes @@ -1,18 +1,3 @@ -------------------------------------------------------------------- -Sun Sep 19 11:51:01 CEST 2010 - vuntz@opensuse.org - -- Update to version 0.2.4: - + Close file on saving trie. - + Add trie_store_if_absent() API which fails on adding duplicated - key. This is useful for preventing race condition in - multi-thread applications. - + Add trie_fread() and trie_fwrite() APIs for reading/writing - trie data in an open file, allowing trie to be embeded as part - of a bigger file. -- Changes from version 0.2.3: - + More robustness against corrupted trie files. - + License clarification in individual source files. - ------------------------------------------------------------------- Sat Apr 24 10:32:55 UTC 2010 - coolo@novell.com diff --git a/libdatrie.spec b/libdatrie.spec index 256fb4c..4c73d0e 100644 --- a/libdatrie.spec +++ b/libdatrie.spec @@ -1,5 +1,5 @@ # -# spec file for package libdatrie (Version 0.2.4) +# spec file for package libdatrie (Version 0.2.2) # # Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -18,8 +18,8 @@ Name: libdatrie -Version: 0.2.4 -Release: 1 +Version: 0.2.2 +Release: 2 License: LGPLv2.1 Summary: Double-Array Trie Library Url: http://linux.thai.net/~thep/datrie/datrie.html From 9d56253099ec98b990b458ff7d7b05a42c47fcd60ead358849e41206cc1d1932 Mon Sep 17 00:00:00 2001 From: Stephan Kulow Date: Wed, 23 Feb 2011 04:36:44 +0000 Subject: [PATCH 2/2] Accepting request 62594 from home:vuntz:branches:devel:libraries:c_c++ OBS-URL: https://build.opensuse.org/request/show/62594 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libdatrie?expand=0&rev=10 --- baselibs.conf | 1 + libdatrie-0.2.2.tar.bz2 | 3 --- libdatrie-0.2.4.tar.bz2 | 3 +++ libdatrie.changes | 20 ++++++++++++++++++++ libdatrie.spec | 7 ++++--- 5 files changed, 28 insertions(+), 6 deletions(-) create mode 100644 baselibs.conf delete mode 100644 libdatrie-0.2.2.tar.bz2 create mode 100644 libdatrie-0.2.4.tar.bz2 diff --git a/baselibs.conf b/baselibs.conf new file mode 100644 index 0000000..7c62fcd --- /dev/null +++ b/baselibs.conf @@ -0,0 +1 @@ +libdatrie1 diff --git a/libdatrie-0.2.2.tar.bz2 b/libdatrie-0.2.2.tar.bz2 deleted file mode 100644 index 872062c..0000000 --- a/libdatrie-0.2.2.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b5decf7a01b8dde4d944c4b9e7a6e9bdc654cb566ca294f3a81f2682655a8787 -size 281395 diff --git a/libdatrie-0.2.4.tar.bz2 b/libdatrie-0.2.4.tar.bz2 new file mode 100644 index 0000000..0dd713b --- /dev/null +++ b/libdatrie-0.2.4.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab03f619df709971888dd80f50ce9193a6d960eb9756edf4d093fa6ab3058b84 +size 282302 diff --git a/libdatrie.changes b/libdatrie.changes index 7059996..7b71dfa 100644 --- a/libdatrie.changes +++ b/libdatrie.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Wed Feb 23 02:18:55 CET 2011 - vuntz@opensuse.org + +- Add missing baselibs.conf. + +------------------------------------------------------------------- +Sun Sep 19 11:51:01 CEST 2010 - vuntz@opensuse.org + +- Update to version 0.2.4: + + Close file on saving trie. + + Add trie_store_if_absent() API which fails on adding duplicated + key. This is useful for preventing race condition in + multi-thread applications. + + Add trie_fread() and trie_fwrite() APIs for reading/writing + trie data in an open file, allowing trie to be embeded as part + of a bigger file. +- Changes from version 0.2.3: + + More robustness against corrupted trie files. + + License clarification in individual source files. + ------------------------------------------------------------------- Sat Apr 24 10:32:55 UTC 2010 - coolo@novell.com diff --git a/libdatrie.spec b/libdatrie.spec index 4c73d0e..494f2ff 100644 --- a/libdatrie.spec +++ b/libdatrie.spec @@ -1,5 +1,5 @@ # -# spec file for package libdatrie (Version 0.2.2) +# spec file for package libdatrie (Version 0.2.4) # # Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -18,13 +18,14 @@ Name: libdatrie -Version: 0.2.2 -Release: 2 +Version: 0.2.4 +Release: 1 License: LGPLv2.1 Summary: Double-Array Trie Library Url: http://linux.thai.net/~thep/datrie/datrie.html Group: System/Libraries Source: %{name}-%{version}.tar.bz2 +Source99: baselibs.conf BuildRequires: doxygen pkg-config BuildRoot: %{_tmppath}/%{name}-%{version}-build