OBS User unknown 2008-01-07 01:48:08 +00:00 committed by Git OBS Bridge
parent 33433e292f
commit 23463ebfc8
4 changed files with 48 additions and 33 deletions

View File

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

3
fribidi-0.10.9.tar.bz2 Normal file
View File

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

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Sun Jan 6 05:22:51 CET 2008 - crrodriguez@suse.de
- update to version 0.10.9
* Fixed type sizes when stdint.h is not available.
* Update to Unicode Character Database 5.0.0
* Fixed type sizes on 64-bit architectures.
- disable static libraries
- remove libtool archive with empty dependency_libs
- do not require gtk2-devel for build as it is unused
- spec file cleanups
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 28 19:27:55 CET 2006 - mfabian@suse.de Tue Feb 28 19:27:55 CET 2006 - mfabian@suse.de

View File

@ -1,7 +1,7 @@
# #
# spec file for package fribidi (Version 0.10.4) # spec file for package fribidi (Version 0.10.9)
# #
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine # This file and all modifications and additions to the pristine
# package are under the same license as the package itself. # package are under the same license as the package itself.
# #
@ -11,15 +11,13 @@
# norootforbuild # norootforbuild
Name: fribidi Name: fribidi
BuildRequires: gtk-devel Version: 0.10.9
%define prefix /usr Release: 1
Version: 0.10.4
Release: 491
Summary: Free Implementation of BiDi Algorithm Summary: Free Implementation of BiDi Algorithm
License: GPL License: GPL v2 or later
Group: System/Libraries Group: System/Libraries
URL: http://fribidi.sourceforge.net/ Url: http://fribidi.sourceforge.net/
Autoreqprov: on AutoReqProv: on
Provides: locale(ar;he) Provides: locale(ar;he)
Source: fribidi-%{version}.tar.bz2 Source: fribidi-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -28,12 +26,12 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build
This library implements the algorithm as described in the "Unicode This library implements the algorithm as described in the "Unicode
Standard Annex #9, the Bidirectional Algorithm, Standard Annex #9, the Bidirectional Algorithm,
http://www.unicode.org/unicode/reports/tr9/". FriBidi is exhaustively http://www.unicode.org/unicode/reports/tr9/". FriBidi is exhaustively
tested against Bidi Reference Code and, to the best of our knowledge, tested against the Bidi Reference Code and, to the best of the
does not contain any conformance bugs. developers' knowledge, does notcontain any conformance bugs.
In the API, we were inspired by the document "Bi-Di languages support - The API was inspired by the document "Bi-Di languages support - BiDi
BiDi API proposal" by Franck Portaneri, which he wrote as a proposal API proposal" by Franck Portaneri, which he wrote as a proposal for
for adding BiDi support to Mozilla. adding BiDi support to Mozilla.
@ -45,7 +43,6 @@ Authors:
Summary: Static Libraries and Header Files for FriBiDi Summary: Static Libraries and Header Files for FriBiDi
Group: Development/Libraries/C and C++ Group: Development/Libraries/C and C++
Requires: %name = %version Requires: %name = %version
%description devel %description devel
This package provides the static libraries and header files for This package provides the static libraries and header files for
@ -58,45 +55,51 @@ Authors:
Dov Grobgeld <dov@imagic.weizmann.ac.il> Dov Grobgeld <dov@imagic.weizmann.ac.il>
%prep %prep
%setup -q %setup -q
%{?suse_update_config:%{suse_update_config}}
rm -f acinclude.m4
touch acinclude.m4
autoreconf -i -f
%build %build
CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing " ./configure --prefix=%{prefix} --libdir=%{_libdir} autoreconf -i -f
make export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
%configure --disable-static --with-pic
%{__make} %{?jobs:-j%jobs}
%check
make check make check
%install %install
rm -rf $RPM_BUILD_ROOT
make DESTDIR=$RPM_BUILD_ROOT install make DESTDIR=$RPM_BUILD_ROOT install
%clean %clean
rm -rf $RPM_BUILD_ROOT rm -rf $RPM_BUILD_ROOT
%post %post -p /sbin/ldconfig
%run_ldconfig
%postun %postun -p /sbin/ldconfig
%run_ldconfig
%files %files
%defattr(-,root,root) %defattr(-,root,root)
%doc ANNOUNCE AUTHORS COPYING* ChangeLog INSTALL NEWS README THANKS TODO tests run.tests %doc AUTHORS COPYING* ChangeLog INSTALL NEWS README THANKS TODO tests run.tests
%_bindir/fribidi %_bindir/fribidi
%_libdir/libfribidi.so.* %_libdir/libfribidi.so.*
%files devel %files devel
%defattr(-, root, root) %defattr(-, root, root)
%_libdir/lib*.so %_libdir/lib*.so
%_libdir/lib*.*a
%_libdir/pkgconfig/*.pc %_libdir/pkgconfig/*.pc
%_includedir/fribidi %_includedir/fribidi
%_bindir/fribidi-config %_bindir/fribidi-config
%exclude %_libdir/lib*.la
%changelog -n fribidi %changelog
* Sun Jan 06 2008 - crrodriguez@suse.de
- update to version 0.10.9
* Fixed type sizes when stdint.h is not available.
* Update to Unicode Character Database 5.0.0
* Fixed type sizes on 64-bit architectures.
- disable static libraries
- remove libtool archive with empty dependency_libs
- do not require gtk2-devel for build as it is unused
- spec file cleanups
* Tue Feb 28 2006 - mfabian@suse.de * Tue Feb 28 2006 - mfabian@suse.de
- add "Provides: locale(ar,he)". - add "Provides: locale(ar,he)".
* Wed Jan 25 2006 - mls@suse.de * Wed Jan 25 2006 - mls@suse.de