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/trustme/
Date: Fri, 13 May 2022 09:32:29
Message-Id: 1652434338.92336a8e568d682b69217e09bb807cac387e5050.mgorny@gentoo
1 commit: 92336a8e568d682b69217e09bb807cac387e5050
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 13 09:13:43 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri May 13 09:32:18 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92336a8e
7
8 dev-python/trustme: Use PEP517 build
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/trustme/trustme-0.9.0-r1.ebuild | 39 ++++++++++++++++++++++++++++++
13 1 file changed, 39 insertions(+)
14
15 diff --git a/dev-python/trustme/trustme-0.9.0-r1.ebuild b/dev-python/trustme/trustme-0.9.0-r1.ebuild
16 new file mode 100644
17 index 000000000000..ccec9efd90ee
18 --- /dev/null
19 +++ b/dev-python/trustme/trustme-0.9.0-r1.ebuild
20 @@ -0,0 +1,39 @@
21 +# Copyright 1999-2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +
26 +DISTUTILS_USE_PEP517=setuptools
27 +PYTHON_COMPAT=( python3_{8..10} pypy3 )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="#1 quality TLS certs while you wait, for the discerning tester"
32 +HOMEPAGE="
33 + https://github.com/python-trio/trustme/
34 + https://pypi.org/project/trustme/
35 +"
36 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
37 +
38 +LICENSE="|| ( Apache-2.0 MIT )"
39 +SLOT="0"
40 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
41 +
42 +RDEPEND="
43 + dev-python/cryptography[${PYTHON_USEDEP}]
44 + dev-python/idna[${PYTHON_USEDEP}]
45 +"
46 +BDEPEND="
47 + test? (
48 + dev-python/pyopenssl[${PYTHON_USEDEP}]
49 + dev-python/service_identity[${PYTHON_USEDEP}]
50 + )
51 +"
52 +
53 +distutils_enable_tests pytest
54 +
55 +EPYTEST_DESELECT=(
56 + # unhappy with new tls defaults?
57 + tests/test_trustme.py::test_stdlib_end_to_end
58 + tests/test_trustme.py::test_pyopenssl_end_to_end
59 +)