2014-06-06 11:50:54 +00:00
|
|
|
%global multilib_arches %{ix86} ppc ppc64 ppc64p7 s390 s390x x86_64
|
2013-05-27 19:55:41 +00:00
|
|
|
|
2008-02-15 17:40:58 +00:00
|
|
|
Name: libffi
|
2014-05-19 17:10:53 +00:00
|
|
|
Version: 3.1
|
2014-06-07 03:20:13 +00:00
|
|
|
Release: 2%{?dist}
|
2008-02-15 17:40:58 +00:00
|
|
|
Summary: A portable foreign function interface library
|
|
|
|
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
License: BSD
|
|
|
|
URL: http://sourceware.org/libffi
|
2012-11-02 13:53:09 +00:00
|
|
|
Source0: ftp://sourceware.org/pub/libffi/libffi-%{version}.tar.gz
|
2013-05-27 19:55:41 +00:00
|
|
|
Source1: ffi-multilib.h
|
|
|
|
Source2: ffitarget-multilib.h
|
2014-05-19 17:10:53 +00:00
|
|
|
Patch0: libffi-3.1-fix-include-path.patch
|
2008-02-15 17:40:58 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
Compilers for high level languages generate code that follow 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: Development files for %{name}
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Requires: pkgconfig
|
|
|
|
Requires(post): /sbin/install-info
|
|
|
|
Requires(preun): /sbin/install-info
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
The %{name}-devel package contains libraries and header files for
|
|
|
|
developing applications that use %{name}.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
2014-05-19 17:10:53 +00:00
|
|
|
%patch0 -p0 -b .fixpath
|
2008-02-15 17:40:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
%configure --disable-static
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_infodir}/dir
|
|
|
|
|
2013-05-27 19:55:41 +00:00
|
|
|
# Determine generic arch target name for multilib wrapper
|
|
|
|
basearch=%{_arch}
|
|
|
|
%ifarch %{ix86}
|
|
|
|
basearch=i386
|
|
|
|
%endif
|
|
|
|
|
2014-06-06 11:50:54 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_includedir}
|
2013-05-27 19:55:41 +00:00
|
|
|
%ifarch %{multilib_arches}
|
|
|
|
# Do header file switcheroo to avoid file conflicts on systems where you
|
|
|
|
# can have both a 32- and 64-bit version of the library, and they each need
|
|
|
|
# their own correct-but-different versions of the headers to be usable.
|
|
|
|
for i in ffi ffitarget; do
|
2014-05-19 17:10:53 +00:00
|
|
|
mv $RPM_BUILD_ROOT%{_libdir}/libffi-%{version}/include/$i.h $RPM_BUILD_ROOT%{_includedir}/$i-${basearch}.h
|
2013-05-27 19:55:41 +00:00
|
|
|
done
|
|
|
|
install -m644 %{SOURCE1} $RPM_BUILD_ROOT%{_includedir}/ffi.h
|
|
|
|
install -m644 %{SOURCE2} $RPM_BUILD_ROOT%{_includedir}/ffitarget.h
|
2014-05-19 18:41:16 +00:00
|
|
|
%else
|
2014-06-06 11:50:54 +00:00
|
|
|
mv $RPM_BUILD_ROOT%{_libdir}/libffi-%{version}/include/{ffi,ffitarget}.h $RPM_BUILD_ROOT%{_includedir}
|
2013-05-27 19:55:41 +00:00
|
|
|
%endif
|
2014-05-19 18:41:16 +00:00
|
|
|
rm -rf $RPM_BUILD_ROOT%{_libdir}/libffi-%{version}
|
2008-02-15 17:40:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%post devel
|
|
|
|
/sbin/install-info --info-dir=%{_infodir} %{_infodir}/libffi.info.gz
|
|
|
|
|
|
|
|
%preun devel
|
|
|
|
if [ $1 = 0 ] ;then
|
|
|
|
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/libffi.info.gz
|
|
|
|
fi
|
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%doc LICENSE README
|
|
|
|
%{_libdir}/*.so.*
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%{_libdir}/pkgconfig/*.pc
|
2013-05-26 02:18:14 +00:00
|
|
|
%{_includedir}/ffi*.h
|
2008-02-15 17:40:58 +00:00
|
|
|
%{_libdir}/*.so
|
|
|
|
%{_mandir}/man3/*.gz
|
|
|
|
%{_infodir}/libffi.info.gz
|
|
|
|
|
|
|
|
%changelog
|
2014-06-07 03:20:13 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-19 18:41:16 +00:00
|
|
|
* Mon May 19 2014 Anthony Green <green@redhat.com> - 3.1-1
|
|
|
|
- fix non-multiarch builds (arm).
|
|
|
|
|
2014-05-19 17:10:53 +00:00
|
|
|
* Mon May 19 2014 Anthony Green <green@redhat.com> - 3.1-0
|
|
|
|
- update to 3.1.
|
|
|
|
|
2013-08-03 05:24:42 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.13-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-05-28 20:18:14 +00:00
|
|
|
* Tue May 28 2013 Tom Callaway <spot@fedoraproject.org> - 3.0.13-4
|
|
|
|
- fix typos in wrapper headers
|
|
|
|
|
2013-05-27 19:55:41 +00:00
|
|
|
* Mon May 27 2013 Tom Callaway <spot@fedoraproject.org> - 3.0.13-3
|
|
|
|
- make header files multilib safe
|
|
|
|
|
2013-05-26 02:18:14 +00:00
|
|
|
* Sat May 25 2013 Tom Callaway <spot@fedoraproject.org> - 3.0.13-2
|
|
|
|
- fix incorrect header pathing (and .pc file)
|
|
|
|
|
2013-03-20 16:28:21 +00:00
|
|
|
* Wed Mar 20 2013 Anthony Green <green@redhat.com> - 3.0.13-1
|
|
|
|
- update to 3.0.13
|
|
|
|
|
2013-02-14 04:19:34 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.11-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2013-01-14 18:48:30 +00:00
|
|
|
* Mon Jan 14 2013 Dennis Gilmore <dennis@ausil.us> - 3.0.11-1
|
|
|
|
- update to 3.0.11
|
|
|
|
|
2012-11-02 13:53:09 +00:00
|
|
|
* Fri Nov 02 2012 Deepak Bhole <dbhole@redhat.com> - 3.0.10-4
|
|
|
|
- Fixed source location
|
|
|
|
|
2012-08-10 05:21:42 +00:00
|
|
|
* Fri Aug 10 2012 Dennis Gilmore <dennis@ausil.us> - 3.0.10-3
|
|
|
|
- drop back to 3.0.10, 3.0.11 was never pushed anywhere as the soname bump broke buildroots
|
|
|
|
- as 3.0.11 never went out no epoch needed.
|
|
|
|
|
2012-07-19 19:44:38 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.11-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-04-13 20:05:07 +00:00
|
|
|
* Fri Apr 13 2012 Anthony Green <green@redhat.com> - 3.0.11-1
|
|
|
|
- Upgrade to 3.0.11.
|
|
|
|
|
2012-01-13 07:39:42 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.10-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-08-23 15:00:57 +00:00
|
|
|
* Tue Aug 23 2011 Anthony Green <green@redhat.com> - 3.0.10-1
|
|
|
|
- Upgrade to 3.0.10.
|
|
|
|
|
2011-06-23 09:06:24 +00:00
|
|
|
* Fri Mar 18 2011 Dan Horák <dan[at]danny.cz> - 3.0.9-3
|
|
|
|
- added patch for being careful when defining relatively generic symbols
|
|
|
|
|
2011-02-08 05:41:20 +00:00
|
|
|
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.9-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2009-12-31 20:45:31 +00:00
|
|
|
* Tue Dec 29 2009 Anthony Green <green@redhat.com> - 3.0.9-1
|
|
|
|
- Upgrade
|
|
|
|
|
2009-07-25 05:36:47 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.5-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-02-25 14:42:48 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-07-08 13:34:17 +00:00
|
|
|
* Tue Jul 08 2008 Anthony Green <green@redhat.com> 3.0.5-1
|
|
|
|
- Upgrade to 3.0.5
|
|
|
|
|
2008-02-16 01:07:40 +00:00
|
|
|
* Fri Feb 15 2008 Anthony Green <green@redhat.com> 3.0.1-1
|
|
|
|
- Upgrade to 3.0.1
|
|
|
|
|
2008-02-15 17:40:58 +00:00
|
|
|
* Fri Feb 15 2008 Anthony Green <green@redhat.com> 2.99.9-1
|
|
|
|
- Upgrade to 2.99.9
|
|
|
|
- Require pkgconfig for the devel package.
|
|
|
|
- Update summary.
|
|
|
|
|
|
|
|
* Fri Feb 15 2008 Anthony Green <green@redhat.com> 2.99.8-1
|
|
|
|
- Upgrade to 2.99.8
|
|
|
|
|
|
|
|
* Thu Feb 14 2008 Anthony Green <green@redhat.com> 2.99.7-1
|
|
|
|
- Upgrade to 2.99.7
|
|
|
|
|
|
|
|
* Thu Feb 14 2008 Anthony Green <green@redhat.com> 2.99.6-1
|
|
|
|
- Upgrade to 2.99.6
|
|
|
|
|
|
|
|
* Thu Feb 14 2008 Anthony Green <green@redhat.com> 2.99.4-1
|
|
|
|
- Upgrade to 2.99.4
|
|
|
|
|
|
|
|
* Thu Feb 14 2008 Anthony Green <green@redhat.com> 2.99.3-1
|
|
|
|
- Upgrade to 2.99.3
|
|
|
|
|
|
|
|
* Thu Feb 14 2008 Anthony Green <green@redhat.com> 2.99.2-1
|
|
|
|
- Created.
|