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
This commit is contained in:
OBS User autobuild 2010-02-18 14:51:11 +00:00 committed by Git OBS Bridge
commit f891fb96e5
6 changed files with 159 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -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

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

3
libdatrie-0.2.2.tar.bz2 Normal file
View File

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

43
libdatrie.changes Normal file
View File

@ -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

89
libdatrie.spec Normal file
View File

@ -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

0
ready Normal file
View File