Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cffi/
Date: Tue, 10 May 2022 21:53:01
Message-Id: 1652217300.8e730db80c19c32643ec25b5b7a20cec7a987646.mgorny@gentoo
1 commit: 8e730db80c19c32643ec25b5b7a20cec7a987646
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 10 21:15:00 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue May 10 21:15:00 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e730db8
7
8 dev-python/cffi: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/cffi/Manifest | 1 -
13 dev-python/cffi/cffi-1.14.6.ebuild | 51 --------------------------------------
14 2 files changed, 52 deletions(-)
15
16 diff --git a/dev-python/cffi/Manifest b/dev-python/cffi/Manifest
17 index 1ef47710c4b5..d02ce8a9359e 100644
18 --- a/dev-python/cffi/Manifest
19 +++ b/dev-python/cffi/Manifest
20 @@ -1,2 +1 @@
21 -DIST cffi-1.14.6.tar.gz 475744 BLAKE2B 46e3f1f61746f659c066d83fdb07b83c289eda68056c6f9e364ea6f30cd56c190e4fdb35586c064b2402483704a7c1e9399d7f30cb49a78eec21797146da36f2 SHA512 30a8b25b74921a90a1fa96d05de1f25437d0fbbf73b7de0bb9ce22dfcaccbd78376b605525fe970212221d3e598357a9b1da420bfbd1a3e513263ed2b789e813
22 DIST cffi-1.15.0.tar.gz 484058 BLAKE2B 0d2d470c7eb11b8a9526be816b153c4483a5cfb529d3d220a804842facae1f06e2a822aa2be9abb1b5648cb36a97033bffc1dd235d83bdf8c075d67a907aa7d9 SHA512 ee83efde6f77f4a0c5889088c4c208ed7b9071fe06dfc16a8d2396de07f78fe859e1e39866760198a9d700f3b7359e8715e8a3e4907feb81d3fc4b8dd0dbaca1
23
24 diff --git a/dev-python/cffi/cffi-1.14.6.ebuild b/dev-python/cffi/cffi-1.14.6.ebuild
25 deleted file mode 100644
26 index 0f6aaa574f93..000000000000
27 --- a/dev-python/cffi/cffi-1.14.6.ebuild
28 +++ /dev/null
29 @@ -1,51 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -# please keep this ebuild at EAPI 7 -- sys-apps/portage dep
34 -EAPI=7
35 -
36 -# DO NOT ADD pypy to PYTHON_COMPAT
37 -# pypy bundles a modified version of cffi. Use python_gen_cond_dep instead.
38 -PYTHON_COMPAT=( python3_{8..10} )
39 -inherit distutils-r1 toolchain-funcs
40 -
41 -DESCRIPTION="Foreign Function Interface for Python calling C code"
42 -HOMEPAGE="https://cffi.readthedocs.io/ https://pypi.org/project/cffi/"
43 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 -
45 -LICENSE="MIT"
46 -SLOT="0/${PV}"
47 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
48 -
49 -DEPEND="dev-libs/libffi:="
50 -RDEPEND="${DEPEND}
51 - dev-python/pycparser[${PYTHON_USEDEP}]"
52 -BDEPEND="${RDEPEND}
53 - virtual/pkgconfig"
54 -
55 -distutils_enable_sphinx doc/source
56 -distutils_enable_tests pytest
57 -
58 -PATCHES=(
59 - "${FILESDIR}"/cffi-1.14.0-darwin-no-brew.patch
60 -)
61 -
62 -src_prepare() {
63 - if [[ ${CHOST} == *darwin* ]] ; then
64 - # Don't obsessively try to find libffi
65 - sed -i -e "s/.*\-iwithsysroot\/usr\/include\/ffi.*/\tpass/" setup.py || die
66 - fi
67 - distutils-r1_src_prepare
68 -}
69 -
70 -src_configure() {
71 - tc-export PKG_CONFIG
72 -}
73 -
74 -python_test() {
75 - "${EPYTHON}" -c "import _cffi_backend as backend" || die
76 - epytest \
77 - --ignore testing/test_zintegration.py \
78 - --ignore testing/embedding \
79 - c/ testing/
80 -}