- update to 3.4.2: * Add static trampoline support for Linux on x86_64 and ARM64. * Add support for Alibaba's CSKY architecture. * Add support for Kalray's KVX architecture. * Add support for Intel Control-flow Enforcement Technology (CET). * Add support for ARM Pointer Authentication (PA). * Fix 32-bit PPC regression. * Fix MIPS soft-float problem. * Enable tmpdir override with the $LIBFFI_TMPDIR environment variable. * Enable compatibility with MSVC runtime stack checking. * Reject float and small integer argument in ffi_prep_cif_var(). * Callers must promote these types themselves. - drop aarch64.patch: fixed upstream differently - drop info dependency, uses file triggers now OBS-URL: https://build.opensuse.org/request/show/934175 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libffi?expand=0&rev=21
99 lines
2.9 KiB
RPMSpec
99 lines
2.9 KiB
RPMSpec
#
|
|
# spec file for package libffi
|
|
#
|
|
# Copyright (c) 2021 SUSE LLC
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
%define libffi_sover 8
|
|
Name: libffi
|
|
Version: 3.4.2
|
|
Release: 0
|
|
Summary: Foreign Function Interface Library
|
|
License: MIT
|
|
Group: Development/Languages/C and C++
|
|
URL: https://sourceware.org/libffi/
|
|
Source: https://github.com/libffi/libffi/releases/download/v%{version}/libffi-%{version}.tar.gz
|
|
Source99: baselibs.conf
|
|
# for make check
|
|
BuildRequires: dejagnu
|
|
BuildRequires: expect
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: makeinfo
|
|
BuildRequires: pkgconfig
|
|
|
|
%description
|
|
The libffi library provides a portable, high level programming
|
|
interface to various calling conventions. This allows a programmer to
|
|
call any function specified by a call interface description at run
|
|
time.
|
|
|
|
%package devel
|
|
Summary: Include files for development with libffi
|
|
Group: Development/Languages/C and C++
|
|
Requires: libffi%{libffi_sover} = %{version}
|
|
|
|
%description devel
|
|
The libffi library provides a portable, high level programming
|
|
interface to various calling conventions. This allows a programmer to
|
|
call any function specified by a call interface description at run
|
|
time.
|
|
|
|
%package -n libffi%{libffi_sover}
|
|
Summary: Foreign Function Interface Library
|
|
Group: System/Libraries
|
|
|
|
%description -n libffi%{libffi_sover}
|
|
The libffi library provides a portable, high level programming
|
|
interface to various calling conventions. This allows a programmer to
|
|
call any function specified by a call interface description at run
|
|
time.
|
|
|
|
%post -n libffi%{libffi_sover} -p /sbin/ldconfig
|
|
%postun -n libffi%{libffi_sover} -p /sbin/ldconfig
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%configure
|
|
%make_build
|
|
|
|
%check
|
|
# do not disable "make check", FIX THE BUGS!
|
|
%make_build check
|
|
|
|
%install
|
|
%make_install
|
|
# do not package the static library
|
|
rm %{buildroot}%{_libdir}/libffi.a
|
|
rm %{buildroot}%{_libdir}/libffi.la
|
|
|
|
%files devel
|
|
%{_libdir}/libffi.so
|
|
%{_includedir}/ffi.h
|
|
%{_includedir}/ffitarget.h
|
|
%{_libdir}/pkgconfig/libffi.pc
|
|
%{_mandir}/man3/ffi.3%{?ext_man}
|
|
%{_mandir}/man3/ffi_call.3%{?ext_man}
|
|
%{_mandir}/man3/ffi_prep_cif.3%{?ext_man}
|
|
%{_mandir}/man3/ffi_prep_cif_var.3%{?ext_man}
|
|
%{_infodir}/libffi.info%{?ext_info}
|
|
|
|
%files -n libffi%{libffi_sover}
|
|
%license LICENSE
|
|
%{_libdir}/libffi.so.%{libffi_sover}*
|
|
|
|
%changelog
|