Accepting request 44758 from multimedia:libs
Copy from multimedia:libs/orc based on submit request 44758 from user vuntz OBS-URL: https://build.opensuse.org/request/show/44758 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/orc?expand=0&rev=5
This commit is contained in:
commit
1bc7e37378
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:a35bbd13d904da049674b9da2449b9d4dc8e3bc970ce77431b4d1ce52485cb93
|
|
||||||
size 428610
|
|
3
orc-0.4.6.tar.bz2
Normal file
3
orc-0.4.6.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:9c1f7e0f13fdf55fea24d3e2a5c13def5b7b55bec5bac591238ad2976ee34ef4
|
||||||
|
size 427675
|
34
orc.changes
34
orc.changes
@ -1,3 +1,37 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Aug 6 17:45:52 CEST 2010 - vuntz@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 0.4.6:
|
||||||
|
+ Various fixes to make Orc more portable
|
||||||
|
+ Major performance improvements to NEON backend
|
||||||
|
+ Minor performance improvements to SSE backend
|
||||||
|
+ Major improvements to ARM backend, now passes regression tests.
|
||||||
|
+ The defaults for floating point operations have been changed
|
||||||
|
somewhat: NANs are handled more like the IEEE 754 standard, and
|
||||||
|
denormals in operations are treated as zeros. The NAN changes
|
||||||
|
causes certain SSE operations to be slightly slower, but produce
|
||||||
|
less surprising results. Treating denormals as zero has effects
|
||||||
|
ranging from “slightly faster” to “now possible”.
|
||||||
|
+ New tool: orc-bugreport. Mainly this is to provide a limited
|
||||||
|
testing tool in the field, especially for embedded targets
|
||||||
|
which would not have access to the testsuite that is not
|
||||||
|
installed.
|
||||||
|
+ The environment variable ORC_CODE can now be used to adjust
|
||||||
|
some code generation. See orc-bugreport -help for details.
|
||||||
|
+ orcc has a new option to generate code that is compatible with
|
||||||
|
older versions of Orc.
|
||||||
|
+ New NEON detection relies on Linux 2.6.29 or later.
|
||||||
|
- Changes from version 0.4.5:
|
||||||
|
+ Many small improvements related to converting GStreamer from
|
||||||
|
liboil to Orc.
|
||||||
|
+ The major addition in this release is the mainstreaming of
|
||||||
|
the NEON backend, made possible by Nokia.
|
||||||
|
+ There is a new experimental option to ./configure,
|
||||||
|
--enable-backend, which allows you to choose a single code
|
||||||
|
generation backend to include in the library. This is mostly
|
||||||
|
useful for embedded systems, and is not recommended in general.
|
||||||
|
- Do not call autogen.sh and remove workaround for doc generation.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue May 25 15:09:05 UTC 2010 - chris@computersalat.de
|
Tue May 25 15:09:05 UTC 2010 - chris@computersalat.de
|
||||||
|
|
||||||
|
10
orc.spec
10
orc.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package orc (Version 0.4.4)
|
# spec file for package orc (Version 0.4.6)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2010 Dominique Leuenberger, Amsterdam, Netherlands.
|
# Copyright (c) 2010 Dominique Leuenberger, Amsterdam, Netherlands.
|
||||||
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: orc
|
Name: orc
|
||||||
Version: 0.4.4
|
Version: 0.4.6
|
||||||
Release: 1
|
Release: 1
|
||||||
License: BSD and Motorola License (please mark changes)
|
License: BSD and Motorola License (please mark changes)
|
||||||
Summary: The Oil Runtime Compiler
|
Summary: The Oil Runtime Compiler
|
||||||
@ -67,12 +67,9 @@ arithmetic operations.
|
|||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
./autogen.sh
|
|
||||||
%configure \
|
%configure \
|
||||||
--disable-static \
|
--disable-static \
|
||||||
--enable-gtk-doc
|
--enable-gtk-doc
|
||||||
# Fix the documentation the easy way
|
|
||||||
cp doc/version.entities doc/xml/version.entities
|
|
||||||
%{__make} %{?jobs:-j%jobs}
|
%{__make} %{?jobs:-j%jobs}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
@ -83,7 +80,7 @@ rm -rf %{buildroot}%{_libdir}/orc
|
|||||||
find %{buildroot}%{_libdir} -name '*.la' -delete -print
|
find %{buildroot}%{_libdir} -name '*.la' -delete -print
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
#rm -rf %{buildroot}
|
rm -rf %{buildroot}
|
||||||
|
|
||||||
%post -n liborc-0_4-0 -p /sbin/ldconfig
|
%post -n liborc-0_4-0 -p /sbin/ldconfig
|
||||||
|
|
||||||
@ -91,6 +88,7 @@ find %{buildroot}%{_libdir} -name '*.la' -delete -print
|
|||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
|
%{_bindir}/orc-bugreport
|
||||||
%{_bindir}/orcc
|
%{_bindir}/orcc
|
||||||
%{_includedir}/orc-0.4
|
%{_includedir}/orc-0.4
|
||||||
%{_libdir}/*.so
|
%{_libdir}/*.so
|
||||||
|
Loading…
Reference in New Issue
Block a user