From 4daf16b17a7c163ec964c595591b9fa72de5e44b Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 04:14:58 +0100 Subject: [PATCH] rebuilt as legacy package [release 3.0.10-2mamba;Tue Feb 19 2013] --- README.md | 5 +++ libffi5.spec | 96 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 101 insertions(+) create mode 100644 libffi5.spec diff --git a/README.md b/README.md index baded6b..fffa9aa 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,7 @@ # libffi5 +Compilers for high level languages generate code that follows certain conventions. These conventions are necessary, in part, for separate compilation to work. One such convention is the "calling convention". The "calling convention" is a set of assumptions made by the compiler about where function arguments will be found on entry to a function. A "calling convention" also specifies where the return value for a function is found. +Some programs may not know at the time of compilation what arguments are to be passed to a function. For instance, an interpreter may be told at run-time about the number and types of arguments used to call a given function. Libffi can be used in such programs to provide a bridge from the interpreter program to compiled code. +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. +FFI stands for Foreign Function Interface. A foreign function interface is the popular name for the interface that allows code written in one language to call code written in another language. The libffi library really only provides the lowest, machine dependent layer of a fully featured foreign function interface. A layer must exist above libffi that handles type conversions for values passed between the two languages. + diff --git a/libffi5.spec b/libffi5.spec new file mode 100644 index 0000000..c912152 --- /dev/null +++ b/libffi5.spec @@ -0,0 +1,96 @@ +Name: libffi5 +Epoch: 1 +Version: 3.0.10 +Release: 2mamba +Summary: A Portable Foreign Function Interface Library +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://sourceware.org/libffi/ +Source: ftp://sourceware.org/pub/libffi/libffi-%{version}.tar.gz +License: MIT +Requires(post):%{__install_info} +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +Compilers for high level languages generate code that follows certain conventions. These conventions are necessary, in part, for separate compilation to work. One such convention is the "calling convention". The "calling convention" is a set of assumptions made by the compiler about where function arguments will be found on entry to a function. A "calling convention" also specifies where the return value for a function is found. +Some programs may not know at the time of compilation what arguments are to be passed to a function. For instance, an interpreter may be told at run-time about the number and types of arguments used to call a given function. Libffi can be used in such programs to provide a bridge from the interpreter program to compiled code. +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. +FFI stands for Foreign Function Interface. A foreign function interface is the popular name for the interface that allows code written in one language to call code written in another language. The libffi library really only provides the lowest, machine dependent layer of a fully featured foreign function interface. A layer must exist above libffi that handles type conversions for values passed between the two languages. + +%package devel +Summary: Devel package for %{name} +Group: Development/Libraries +Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release} + +%description devel +Compilers for high level languages generate code that follows certain conventions. These conventions are necessary, in part, for separate compilation to work. One such convention is the "calling convention". The "calling convention" is a set of assumptions made by the compiler about where function arguments will be found on entry to a function. A "calling convention" also specifies where the return value for a function is found. +Some programs may not know at the time of compilation what arguments are to be passed to a function. For instance, an interpreter may be told at run-time about the number and types of arguments used to call a given function. Libffi can be used in such programs to provide a bridge from the interpreter program to compiled code. +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. +FFI stands for Foreign Function Interface. A foreign function interface is the popular name for the interface that allows code written in one language to call code written in another language. The libffi library really only provides the lowest, machine dependent layer of a fully featured foreign function interface. A layer must exist above libffi that handles type conversions for values passed between the two languages. +This package contains static libraries and header files need for development. + +%prep +%setup -q -n libffi-%{version} + +%build +%configure +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + + +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig + +%post devel +%install_info %{name}.info +exit 0 + +%preun devel +%uninstall_info %{name}.info +exit 0 + +%files +%defattr(-,root,root) +%{_libdir}/libffi.so.* +%doc LICENSE + +%files devel +%defattr(-,root,root) +%{_libdir}/libffi-%{version}/include/ffi.h +%{_libdir}/libffi-%{version}/include/ffitarget.h +%{_libdir}/libffi.a +%{_libdir}/libffi.la +%{_libdir}/libffi.so +%{_libdir}/pkgconfig/*.pc +%{_mandir}/man3/ffi.3.gz +%{_mandir}/man3/ffi_call.3.gz +%{_mandir}/man3/ffi_prep_cif.3.gz +%{_infodir}/libffi.info.gz +%doc ChangeLog ChangeLog.libffi ChangeLog.libgcj ChangeLog.v1 README + +%changelog +* Tue Feb 19 2013 Silvan Calarco 3.0.10-2mamba +- rebuilt as legacy package + +* Tue Apr 03 2012 Silvan Calarco 3.0.10-1mamba +- update to 3.0.10 + +* Fri Jul 22 2011 Automatic Build System 3.0.10rc8-1mamba +- automatic update to 3.0.3.0 by autodist + +* Tue Dec 07 2010 Automatic Build System 3.0.9rc9-1mamba +- update to 3.0.9rc9 + +* Fri Sep 24 2010 Silvan Calarco 3.0.9-1mamba +- package created by autospec