From f891fb96e591964e9394f6c1464eaf6ce49e3a2a869cc14ffdd4f5388d6b71b8 Mon Sep 17 00:00:00 2001 From: OBS User autobuild Date: Thu, 18 Feb 2010 14:51:11 +0000 Subject: [PATCH] Accepting request 32407 from devel:libraries:c_c++ Copy from devel:libraries:c_c++/libdatrie based on submit request 32407 from user darix OBS-URL: https://build.opensuse.org/request/show/32407 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libdatrie?expand=0&rev=1 --- .gitattributes | 23 +++++++++++ .gitignore | 1 + libdatrie-0.2.2.tar.bz2 | 3 ++ libdatrie.changes | 43 ++++++++++++++++++++ libdatrie.spec | 89 +++++++++++++++++++++++++++++++++++++++++ ready | 0 6 files changed, 159 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 libdatrie-0.2.2.tar.bz2 create mode 100644 libdatrie.changes create mode 100644 libdatrie.spec create mode 100644 ready diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc 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.changes b/libdatrie.changes new file mode 100644 index 0000000..5e551d3 --- /dev/null +++ b/libdatrie.changes @@ -0,0 +1,43 @@ +------------------------------------------------------------------- +Mon Jan 4 16:59:23 CET 2010 - vuntz@opensuse.org + +- Update to version 0.2.2: + + Support building with linkers without symbol versioning + supports, including Mac, Cygwin, MinGW. + + Support other iconv implementations than that's in glibc, for + Mac and MinGW. +- Changes from version 0.2.1: + + Fix errors in documentation + + Symbol versioning to ease upgrade across SONAME + + Minor cleanups +- Changes from version 0.2.0: + + New APIs for performance: trie_state_copy(), + trie_state_is_single() + + Clean-ups +- Changes from version 0.1.99.2: + + More robust handling of alphabet ranges + + Allow co-existence with libdatrie0 +- Changes from version 0.1.99.1: + + Breaking ABI with libdatrie0 + + More capacity with 32-bit node index + + Adjusted API for non-file trie usage + + All data in one file, no more *.br and *.tl split + + Drop SBTrie wrapper; all features are merged into Trie + + Domain characters are now Unicode + +------------------------------------------------------------------- +Thu Feb 19 22:22:08 CET 2009 - crrodriguez@suse.de + +- remove static libraries + +------------------------------------------------------------------- +Mon Apr 7 15:23:59 CEST 2008 - uli@suse.de + +- update -> 0.1.3 (fixes bug that keeps new libthai from + building, bnc #326002) + +------------------------------------------------------------------- +Tue Oct 30 17:06:40 CET 2007 - uli@suse.de + +- initial package + diff --git a/libdatrie.spec b/libdatrie.spec new file mode 100644 index 0000000..4a84195 --- /dev/null +++ b/libdatrie.spec @@ -0,0 +1,89 @@ +# +# spec file for package libdatrie (Version 0.2.2) +# +# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# 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/ +# + + + +Name: libdatrie +Version: 0.2.2 +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 +BuildRequires: doxygen +BuildRoot: %{_tmppath}/%{name}-%{version}-build + +%description +This is an implementation of double-array structure for representing +trie, as proposed by Junichi Aoe. + +%package -n libdatrie1 +License: LGPLv2.1 +Group: Development/Libraries/C and C++ +Summary: Double-Array Trie Library + +%description -n libdatrie1 +This is an implementation of double-array structure for representing +trie, as proposed by Junichi Aoe. + +%package devel +License: LGPLv2.1 +Group: Development/Libraries/C and C++ +Summary: Double-Array Trie Library (development) +Requires: libdatrie1 = %{version} + +%description devel +This is an implementation of double-array structure for representing +trie, as proposed by Junichi Aoe. + +This package contains the development files for libdatrie. + +%prep +%setup -q + +%build +%configure \ + --disable-static --with-pic \ + --with-html-docdir=%{_docdir}/libdatrie/html +make %{?jobs:-j%jobs} + +%install +%makeinstall +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 + +%files -n libdatrie1 +%defattr(-,root,root) +%doc AUTHORS ChangeLog COPYING README +%{_libdir}/libdatrie.so.1* + +%files devel +%defattr(-,root,root) +%{_bindir}/trietool-0.2 +%doc %{_mandir}/man*/trietool-0.2.* +%{_includedir}/datrie/ +%{_libdir}/libdatrie.so +%{_libdir}/pkgconfig/datrie-0.2.pc +%doc %{_docdir}/libdatrie/ + +%changelog diff --git a/ready b/ready new file mode 100644 index 0000000..473a0f4