Bjørn Lie
957cff5f17
- version update to 0.4.39 0.4.39 ====== - Security: Fix error message printing buffer overflow leading to possible code execution in orcc with specific input files (CVE-2024-40897). This only affects developers and CI environments using orcc, not users of liborc (Sebastian Dröge, L. E. Segovia) (boo#1228184) - div255w: fix off-by-one error in the implementations (L. E. Segovia) - x86: only run AVX detection if xgetbv is available (L. E. Segovia) - x86: fix AVX detection by implementing the check recommended by Intel (L. E. Segovia) - Only enable JIT compilation on Apple arm64 if running on macOS, fixes crashes on iOS (Piotr Brzeziński) - Fix potential crash in emulation mode if logging is enabled (L. E. Segovia) - Handle undefined TARGET_OS_OSX correctly (Joshua Root) - orconce: Fix typo in GCC __sync-based implementation (Jakub Vaněk) - orconce: Fix usage of __STDC_NO_ATOMICS__ (Alexander Slobodeniuk) - Fix build with MSVC 17.10 + C11 (L. E. Segovia) - Support stack unwinding on Windows (L. E. Segovia) - Major opcode and instruction set code clean-ups and refactoring (Jorge Zapata) - Refactor allocation and chunk initialization of code regions (L. E. Segovia) - Fall back to emulation on Linux if JIT support is not OBS-URL: https://build.opensuse.org/request/show/1189004 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/orc?expand=0&rev=88
105 lines
3.2 KiB
RPMSpec
105 lines
3.2 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.39
|
|
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
|
|
Patch0: relax-tests.patch
|
|
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=enabled \
|
|
-Dexamples=disabled \
|
|
-Dtests=enabled \
|
|
%{nil}
|
|
%meson_build
|
|
|
|
%install
|
|
%meson_install
|
|
rm %{buildroot}%{_bindir}/orc-bugreport
|
|
rm %{buildroot}%{_libdir}/pkgconfig/orc-test-0.4.pc
|
|
|
|
%check
|
|
# Disable testsuite for almost all arches, it's only stable on x86_64
|
|
%ifnarch aarch64 %{arm} %{ix86} ppc64le
|
|
%meson_test
|
|
%endif
|
|
|
|
%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
|
|
|
|
%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
|