orc/orc.spec
Dominique Leuenberger 1a0a2b8eb5 Accepting request 1146760 from home:pgajdos
- version update to 0.4.37
  0.4.37
  ======
  - enable neon instructions on Apple ARM64 (Aleix Conchillo Flaqué)
  - orcc: Fix regression, was hard-coded to use "sse" as default target (Sebastian Dröge)
  - MMX backend fixes (L. E. Segovia, Jorge Zapata)
  - testsuite: Build fixes for Clang (L. E. Segovia)
  - testsuite, tools: Fix warning caused by inserting unneeded source operands (L. E. Segovia)
  - orccompiler: call sys_icache_invalidate() to invalidate macos inst cache (Aleix Conchillo Flaqué)
  - macOS/iOS version/target check build fixes (Aleix Conchillo Flaqué)
  0.4.36
  ======
  - Only use AVX / AVX2 instructions on CPUs that support both AVX and AVX2
    (fixes crash on machines that only support AVX) (L. E. Segovia)
  0.4.35
  ======
  - Add support for AVX / AVX2 (L. E. Segovia)
  - SSE backend improvements (L. E. Segovia)
  - New `orf` and `andf` opcodes for bitwise AND and OR for single precision floats (Jorge Zapata)
  - Add support for `convwf`, int16 to float conversion (Jorge Zapata)
  - Allow backend selection through ORC_TARGET environment variable (L. E. Segovia)
  - Documentation improvements (Jorge Zapata, L. E. Segovia, Tim-Philipp Müller)
  - orconce: Use Win32 once implementation with MSVC (Seungha Yang, L. E. Segovia)
  - orcc: add --binary option to output raw machine code for functions (L. E. Segovia)
  - orcprofile: Implement Windows high-resolution timestamp for MSVC
    to allow benchmarking on MSVC builds (L. E. Segovia)

OBS-URL: https://build.opensuse.org/request/show/1146760
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/orc?expand=0&rev=83
2024-02-15 10:33:20 +00:00

97 lines
3.0 KiB
RPMSpec

#
# spec file for package orc
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2010 Dominique Leuenberger, Amsterdam, Netherlands.
#
# 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 https://bugs.opensuse.org/
#
Name: orc
Version: 0.4.37
Release: 0
Summary: The Oil Runtime Compiler
License: BSD-3-Clause
Group: Productivity/Multimedia/Other
URL: https://gitlab.freedesktop.org/gstreamer/orc
Source: https://gstreamer.freedesktop.org/src/orc/%{name}-%{version}.tar.xz
Source99: baselibs.conf
BuildRequires: gtk-doc >= 1.12
BuildRequires: meson >= 0.47.0
BuildRequires: pkgconfig
BuildRequires: pkgconfig(glib-2.0)
Provides: %{name}-devel = %{version}
%description
Orc is a library and set of tools for compiling and executing very simple
programs that operate on arrays of data. The “language” is a generic
assembly language that represents many of the features available in SIMD
architectures, including saturated addition and subtraction, and many
arithmetic operations.
%package -n liborc-0_4-0
Summary: The Oil Runtime Compiler Library
Group: System/Libraries
%description -n liborc-0_4-0
Orc is a library and set of tools for compiling and executing very simple
programs that operate on arrays of data. The “language” is a generic
assembly language that represents many of the features available in SIMD
architectures, including saturated addition and subtraction, and many
arithmetic operations.
%package doc
Summary: The Oil Runtime Compiler Library - Documentation
Group: Documentation/HTML
%description doc
Orc is a library and set of tools for compiling and executing very simple
programs that operate on arrays of data. The “language” is a generic
assembly language that represents many of the features available in SIMD
architectures, including saturated addition and subtraction, and many
arithmetic operations.
%prep
%autosetup -p1
%build
%meson \
-Dorc-test=disabled \
-Dexamples=disabled \
-Dtests=disabled \
%{nil}
%meson_build
%install
%meson_install
%post -n liborc-0_4-0 -p /sbin/ldconfig
%postun -n liborc-0_4-0 -p /sbin/ldconfig
%files
%{_bindir}/orcc
%{_includedir}/orc-0.4/
%{_libdir}/*.so
%{_libdir}/pkgconfig/orc-0.4.pc
%{_datadir}/aclocal/orc.m4
%files doc
%dir %{_datadir}/gtk-doc
%dir %{_datadir}/gtk-doc/html
%{_datadir}/gtk-doc/html/orc/
%files -n liborc-0_4-0
%{_libdir}/liborc*-0.4.so.*
%changelog