# # spec file for package ffcall # # Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. # # 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 http://bugs.opensuse.org/ # # Only a static library is provided, so no debug information can be extracted. %global debug_package %{nil} %global debug yes # This package uses assembly to do its work. This is the entire list of # supported architectures understood by RPM, even those not currently supported # by Fedora. RPM hasn't heard about line continuations, hence the mess. %global ffcall_arches %ix86 x86_64 %alpha %arm aarch64 parisc hppa1.0 hppa1.1 hppa1.2 hppa2.0 ia64 m68k mips mipsel ppc ppc64 ppc64le ppc8260 ppc8560 ppc32dy4 ppciseries ppcpseries s390 s390x %sparc sparc64 Name: ffcall Version: 1.13 Release: 0 Summary: Libraries for foreign function call interfaces # As this package only provides a static library together with the header files License: GPL-2.0+ Group: Development/Libraries/Other Provides: %{name}-devel = %version-%release Url: http://www.gnu.org/software/libffcall/ # https://git.savannah.gnu.org/cgit/libffcall.git/snapshot/libffcall-%{version}.tar.gz Source0: https://ftp.gnu.org/gnu/libffcall/libffcall-%{version}.tar.gz Patch0: ffcall-trampoline.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build ExclusiveArch: %{ffcall_arches} %description This is a collection of four libraries which can be used to build foreign function call interfaces in embedded interpreters. The four packages are: - avcall: calling C functions with variable arguments - vacall: C functions accepting variable argument prototypes - trampoline: closures as first-class C functions - callback: closures with variable arguments as first-class C functions (a reentrant combination of vacall and trampoline) %prep %setup -q -n libffcall-%{version} %patch0 if ! test -e /usr/include/asm/cachectl.h then # FIX-OPENSUSE -- Remove this if there is no for c in callback/trampoline_r/trampoline.c trampoline/trampoline.c do echo 'No on this architecture %arch' sed -ri '/^#ifdef linux/,/^#else/{ \@#include @d }' $c done fi # Remove prebuilt object files find . -name \*.o | xargs rm -f %build export CFLAGS="%{optflags} -fPIC -DMAP_VARIABLE=MAP_PRIVATE" %configure --disable-rpath --with-gnu-ld if test -e /.build.log then grep -E '^#define (CODE|HAVE)' config.h sed -rn '/checking whether code in malloc\(\)ed memory is executable/,/result: /p' config.log fi make # %{?_smp_mflags} %install mkdir -p %{buildroot}%{_libdir} mkdir -p %{buildroot}%{_mandir} mkdir -p %{buildroot}%{_defaultdocdir}/%{name} make install DESTDIR=%{buildroot} rm -fr %{buildroot}%{_datadir}/html rm -f %{buildroot}%{_libdir}/*.la if test %debug = yes ; then install config.log %{buildroot}%{_defaultdocdir}/%{name} echo %{_defaultdocdir}/%{name}/config.log > list else > list fi cd %{buildroot}%{_mandir}/man3 # Advertise supported architectures mkdir -p %{buildroot}%{_sysconfdir}/rpm cat > %{buildroot}%{_sysconfdir}/rpm/macros.ffcall << EOF # arches that ffcall supports %%ffcall_arches %{ffcall_arches} EOF # Fix man pages with overly generic names (bz 800360) for page in *; do mv $page %{name}-$page done %files -f list %defattr(-,root,root,-) %doc README NEWS COPYING %doc avcall/avcall.html %doc callback/callback.html %doc callback/trampoline_r/trampoline_r.html %doc trampoline/trampoline.html %doc vacall/vacall.html %{_libdir}/*.a %{_includedir}/* %doc %{_mandir}/man*/* %config %{_sysconfdir}/rpm/macros.%{name} %changelog