Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libffi/
Date: Sat, 02 May 2020 17:51:51
Message-Id: 1588441890.015285606bd6feb745d7f556277297869101020e.slyfox@gentoo
1 commit: 015285606bd6feb745d7f556277297869101020e
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 2 17:45:21 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Sat May 2 17:51:30 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01528560
7
8 dev-libs/libffi: drop old
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
12
13 dev-libs/libffi/Manifest | 1 -
14 dev-libs/libffi/libffi-3.3_rc0.ebuild | 64 -----------------------------------
15 2 files changed, 65 deletions(-)
16
17 diff --git a/dev-libs/libffi/Manifest b/dev-libs/libffi/Manifest
18 index 0ac0d4827f2..a1c499b413f 100644
19 --- a/dev-libs/libffi/Manifest
20 +++ b/dev-libs/libffi/Manifest
21 @@ -1,2 +1 @@
22 -DIST libffi-3.3-rc0.tar.gz 1084854 BLAKE2B 2c38d60f17ef52bcf270178c13c218f6ee320c9785091621d4689bcf6cee31d07eaaca12790965e1ae3ad71ad2c408342743968bf1d23f81a07fbdf6cfd55b90 SHA512 e6e695d32cd6eb7d65983f32986fccdfc786a593d2ea18af30ce741f58cfa1eb264b1a8d09df5084cb916001aea15187b005c2149a0620a44397a4453b6137d4
23 DIST libffi-3.3.tar.gz 1305466 BLAKE2B cddc40729a30a9bd34d675809f51f8d1b4ccaffa54bc6dd6f7e965f4e260edd34754719f9f6247c8957aeb7cf154d56ce1fe16a54c3f1ad39afbebdf41d23caa SHA512 61513801a156f11420f541d325de697131846487122d6bdcf5491b18b4da788589f5c0bb07e88e396495d3be5830d74e9135595e2b8ddbfe95c448d8597fbd6f
24
25 diff --git a/dev-libs/libffi/libffi-3.3_rc0.ebuild b/dev-libs/libffi/libffi-3.3_rc0.ebuild
26 deleted file mode 100644
27 index 3ddac01cf74..00000000000
28 --- a/dev-libs/libffi/libffi-3.3_rc0.ebuild
29 +++ /dev/null
30 @@ -1,64 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -inherit multilib multilib-minimal toolchain-funcs
36 -
37 -MY_PV=${PV/_rc/-rc}
38 -MY_P=${PN}-${MY_PV}
39 -
40 -DESCRIPTION="a portable, high level programming interface to various calling conventions"
41 -HOMEPAGE="https://sourceware.org/libffi/"
42 -SRC_URI="https://github.com/libffi/libffi/releases/download/v${MY_PV}/${MY_P}.tar.gz"
43 -
44 -LICENSE="MIT"
45 -SLOT="0/7" # SONAME=libffi.so.7
46 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
47 -IUSE="debug pax_kernel static-libs test"
48 -
49 -RESTRICT="!test? ( test )"
50 -
51 -RDEPEND=""
52 -DEPEND=""
53 -BDEPEND="test? ( dev-util/dejagnu )"
54 -
55 -DOCS="ChangeLog* README.md"
56 -
57 -PATCHES=(
58 - "${FILESDIR}"/${PN}-3.2.1-o-tmpfile-eacces.patch #529044
59 - "${FILESDIR}"/${PN}-3.3_rc0-hppa-no-TEXTREL.patch
60 - "${FILESDIR}"/${PN}-3.3_rc0-ppc-macos-go.patch
61 -)
62 -
63 -S=${WORKDIR}/${MY_P}
64 -
65 -ECONF_SOURCE=${S}
66 -
67 -pkg_setup() {
68 - # Check for orphaned libffi, see https://bugs.gentoo.org/354903 for example
69 - if [[ ${ROOT} == "/" && ${EPREFIX} == "" ]] && ! has_version ${CATEGORY}/${PN}; then
70 - local base="${T}"/conftest
71 - echo 'int main() { }' > "${base}".c
72 - $(tc-getCC) -o "${base}" "${base}".c -lffi >&/dev/null
73 - if [ $? -eq 0 ]; then
74 - eerror "The linker reported linking against -lffi to be working while it shouldn't have."
75 - eerror "This is wrong and you should find and delete the old copy of libffi before continuing."
76 - die "The system is in inconsistent state with unknown libffi installed."
77 - fi
78 - fi
79 -}
80 -
81 -multilib_src_configure() {
82 - use userland_BSD && export HOST="${CHOST}"
83 - econf \
84 - --includedir="${EPREFIX}"/usr/$(get_libdir)/${P}/include \
85 - --disable-multi-os-directory \
86 - $(use_enable static-libs static) \
87 - $(use_enable pax_kernel pax_emutramp) \
88 - $(use_enable debug)
89 -}
90 -
91 -multilib_src_install_all() {
92 - find "${ED}" -name "*.la" -delete || die
93 - einstalldocs
94 -}