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: Thu, 14 Oct 2021 07:51:17
Message-Id: 1634197860.69112e61fe5517d5b69b1e71d47864ae89a660a8.mgorny@gentoo
1 commit: 69112e61fe5517d5b69b1e71d47864ae89a660a8
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 14 06:07:54 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 14 07:51:00 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69112e61
7
8 dev-python/cffi: Bump to 1.15.0
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.15.0.ebuild | 54 ++++++++++++++++++++++++++++++++++++++
14 2 files changed, 55 insertions(+)
15
16 diff --git a/dev-python/cffi/Manifest b/dev-python/cffi/Manifest
17 index 6eeb020fec8..1ef47710c4b 100644
18 --- a/dev-python/cffi/Manifest
19 +++ b/dev-python/cffi/Manifest
20 @@ -1 +1,2 @@
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.15.0.ebuild b/dev-python/cffi/cffi-1.15.0.ebuild
25 new file mode 100644
26 index 00000000000..8bf3a0a6b6e
27 --- /dev/null
28 +++ b/dev-python/cffi/cffi-1.15.0.ebuild
29 @@ -0,0 +1,54 @@
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 + local EPYTEST_IGNORE=(
76 + # these tests call pip
77 + testing/cffi0/test_zintegration.py
78 + )
79 +
80 + "${EPYTHON}" -c "import _cffi_backend as backend" || die
81 + epytest \
82 + c/ testing/
83 +}