Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cffi/
Date: Mon, 18 Feb 2019 15:19:11
Message-Id: 1550503127.d2da7893dbee9b5c1f035978c4ff6da5ac97776c.prometheanfire@gentoo
1 commit: d2da7893dbee9b5c1f035978c4ff6da5ac97776c
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 16 20:52:28 2019 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 18 15:18:47 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2da7893
7
8 dev-python/cffi: 1.12.1 version bump
9
10 Closes: https://bugs.gentoo.org/678174
11
12 Package-Manager: Portage-2.3.60, Repoman-2.3.12
13 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
14 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
15
16 dev-python/cffi/Manifest | 1 +
17 dev-python/cffi/cffi-1.12.1.ebuild | 54 ++++++++++++++++++++++++++++++++++++++
18 2 files changed, 55 insertions(+)
19
20 diff --git a/dev-python/cffi/Manifest b/dev-python/cffi/Manifest
21 index d3e907fed7d..1a541e62a92 100644
22 --- a/dev-python/cffi/Manifest
23 +++ b/dev-python/cffi/Manifest
24 @@ -1,4 +1,5 @@
25 DIST cffi-1.11.2.tar.gz 435142 BLAKE2B ba90cc377261a75557cef626f1c6b8c0c625c67212b546d42ca56c3360496d01c59984f72d5ce61b1160aa6117b869e567b17df8458de2c88a42dc5e653f6129 SHA512 8ccd8988bb6b4beb760abe5d8cac7cbf65a7dcfad5a535343e5961912751f426fdf6e602a983430e6aa9f56f2f623855b0cfb5ed8e5294a95d122866a4533eda
26 DIST cffi-1.11.4.tar.gz 436857 BLAKE2B 46b5d1adf4aca2a75ea02ba01ae934821d0e864accd9c355745a681d11a08ed34c33c473204c78ecb2113b2d59fbc762ca0607ff92f6cd2dc411907844bbdaf3 SHA512 184572ab8c1f7a72f00084c23894efe1691aa20f9e822a3f7184ebbed16e757586ac47e7f1d12dd7b14b4322bf5b88e35465dc3bc8b0caf0dc8e2b626a52615e
27 DIST cffi-1.11.5.tar.gz 438498 BLAKE2B 2e22cf3c2d50d76f8f25b7ac31a77fac8a49e2b2f4952e3b1a1da79c0ad2ca5c6e450000cadd1efa06df53d14f711e0acd73a075bea45ebd61e667fb650a10ab SHA512 6770d5293cfd7405e733d60c96655641b5bcc5878fc66a737f4a8308f465d459ee0e3fcaa47893d8f57fb195e5534dd7e4728c868f33d7e657688f45e1fb1880
28 +DIST cffi-1.12.1.tar.gz 453584 BLAKE2B fb0fee63f5cc4dacd1055036ed6e7882452e848dfece99adadad7ebb1f0cc4171d1be5370fda5552da45127e374382b29cdc8e1f5122081d2551604630774cac SHA512 1863ad26d730d629e1397ba155bebd3f9edc881d661fda5301a5acb080c8e006925317c1b092f054c46834d693c437d6e91a687f379c9ab029223a9a159eaf48
29 DIST cffi-1.9.1.tar.gz 407108 BLAKE2B f95e99cbb7a10aacb714d6ddbe85755e24d4fbdebb9ada0ab87c95b58aa56b364df612fbdfbf6fcc3a9dfff6e96fe5e979ee37b1c6c9b62b6ba8d3a9565def2f SHA512 6e76f181b6b7b760a14ad70338edd104a8b8e2eac5680e336d3868e0bd031a1665608e29a65dc0c56806afb8a8c03811586f151f3acef11e54e60c1bfcf902e3
30
31 diff --git a/dev-python/cffi/cffi-1.12.1.ebuild b/dev-python/cffi/cffi-1.12.1.ebuild
32 new file mode 100644
33 index 00000000000..c24d74972d8
34 --- /dev/null
35 +++ b/dev-python/cffi/cffi-1.12.1.ebuild
36 @@ -0,0 +1,54 @@
37 +# Copyright 1999-2019 Gentoo Authors
38 +# Distributed under the terms of the GNU General Public License v2
39 +
40 +EAPI=6
41 +
42 +# DO NOT ADD pypy to PYTHON_COMPAT
43 +# pypy bundles a modified version of cffi. Use python_gen_cond_dep instead.
44 +PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} )
45 +
46 +inherit distutils-r1 toolchain-funcs
47 +
48 +DESCRIPTION="Foreign Function Interface for Python calling C code"
49 +HOMEPAGE="https://cffi.readthedocs.io/ https://pypi.org/project/cffi/"
50 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
51 +
52 +LICENSE="MIT"
53 +SLOT="0/${PV}"
54 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
55 +IUSE="doc test"
56 +
57 +RDEPEND="
58 + virtual/libffi:=
59 + dev-python/pycparser[${PYTHON_USEDEP}]"
60 +DEPEND="${RDEPEND}
61 + virtual/pkgconfig
62 + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
63 + test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
64 +
65 +# Avoid race on _configtest.c (distutils/command/config.py:_gen_temp_sourcefile)
66 +DISTUTILS_IN_SOURCE_BUILD=1
67 +
68 +src_configure() {
69 + tc-export PKG_CONFIG
70 +}
71 +
72 +python_compile_all() {
73 + use doc && emake -C doc html
74 +}
75 +
76 +python_test() {
77 + einfo "$PYTHONPATH"
78 + $PYTHON -c "import _cffi_backend as backend" || die
79 + PYTHONPATH="${PYTHONPATH}" \
80 + py.test -x -v \
81 + --ignore testing/test_zintegration.py \
82 + --ignore testing/embedding \
83 + c/ testing/ \
84 + || die "Testing failed with ${EPYTHON}"
85 +}
86 +
87 +python_install_all() {
88 + use doc && local HTML_DOCS=( doc/build/html/. )
89 + distutils-r1_python_install_all
90 +}