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/cryptography/
Date: Sun, 17 Nov 2019 14:24:03
Message-Id: 1574000632.b723f4331e032ac59ca2502b738838d35f01c394.mgorny@gentoo
1 commit: b723f4331e032ac59ca2502b738838d35f01c394
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 17 14:22:14 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 17 14:23:52 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b723f433
7
8 dev-python/cryptography: Inline cryptography_vectors
9
10 Closes: https://bugs.gentoo.org/700342
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 dev-python/cryptography/Manifest | 1 +
14 dev-python/cryptography/cryptography-2.8.ebuild | 16 +++++++++++-----
15 2 files changed, 12 insertions(+), 5 deletions(-)
16
17 diff --git a/dev-python/cryptography/Manifest b/dev-python/cryptography/Manifest
18 index ee134edad07..e95ee2ffaf8 100644
19 --- a/dev-python/cryptography/Manifest
20 +++ b/dev-python/cryptography/Manifest
21 @@ -1,2 +1,3 @@
22 DIST cryptography-2.6.1.tar.gz 491580 BLAKE2B b81114b57e9973c80fe999a63a3b1269d6289ac67851fedc263927b74e9e5ec4f35356cf5d46e4a27a994d5a3b2b3b599fea264b3ebce3a0cac27abfde3ef046 SHA512 f14319e24d9dca52e74548cada5b78a6235f089ef875dbff4799e862f94da8b087f1b6e03e84dcef9fc7d7693c4a349c5f0cd54b8535806da777420ce8757d39
23 DIST cryptography-2.8.tar.gz 504516 BLAKE2B 3a853bf59a752acee9e9607f3f35f3815701c6068a1ffa5b6604ec648a31a5d4e31f13a1b19f3156c703313800242d8b06dd71a54a4eb0cc68481dea894002f3 SHA512 bf3ca44123c693b0602be19445925f9efebd46c469909e47b7907d57141fb6bd99268c33e1fe3f42a08ab8b4edd4f98f21b6a682f530352313334dfd31ba91e7
24 +DIST cryptography_vectors-2.8.tar.gz 35102030 BLAKE2B 8e98e12bab31a2097a72c849f52ee93b9b684a8923c140722419154471bd695c6287ff4498c9fe326662c7d9a9f5d9ebaa55dc4d5a0d8180a6827ae244464006 SHA512 d328082d3a65b8036d396172d7e42c753c842e9310850a77c6ccd99c9905d48bbc3e3319d216013c1370b8439f0f8056749ae94b1abf9a5b7088435acdeed7fb
25
26 diff --git a/dev-python/cryptography/cryptography-2.8.ebuild b/dev-python/cryptography/cryptography-2.8.ebuild
27 index 0a68d221c48..777545258fb 100644
28 --- a/dev-python/cryptography/cryptography-2.8.ebuild
29 +++ b/dev-python/cryptography/cryptography-2.8.ebuild
30 @@ -8,14 +8,17 @@ PYTHON_REQ_USE="threads(+)"
31
32 inherit distutils-r1 flag-o-matic
33
34 +VEC_P=cryptography_vectors-${PV}
35 DESCRIPTION="Library providing cryptographic recipes and primitives"
36 HOMEPAGE="https://github.com/pyca/cryptography/ https://pypi.org/project/cryptography/"
37 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
38 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
39 + test? ( mirror://pypi/c/cryptography_vectors/${VEC_P}.tar.gz )"
40
41 LICENSE="|| ( Apache-2.0 BSD )"
42 SLOT="0"
43 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
44 -IUSE="libressl idna"
45 +IUSE="libressl idna test"
46 +RESTRICT="!test? ( test )"
47
48 # the openssl 1.0.2l-r1 needs to be updated again :(
49 # It'd theb be able to go into the || section again
50 @@ -43,19 +46,22 @@ DEPEND="${RDEPEND}
51 $(python_gen_cond_dep '>=dev-python/cffi-1.8:=[${PYTHON_USEDEP}]' 'python*')
52 $(python_gen_cond_dep '!~dev-python/cffi-1.11.3[${PYTHON_USEDEP}]' 'python*')
53 test? (
54 - ~dev-python/cryptography-vectors-${PV}[${PYTHON_USEDEP}]
55 dev-python/pretend[${PYTHON_USEDEP}]
56 dev-python/iso8601[${PYTHON_USEDEP}]
57 dev-python/pytz[${PYTHON_USEDEP}]
58 >=dev-python/hypothesis-1.11.4[${PYTHON_USEDEP}]
59 !~dev-python/hypothesis-3.79.2[${PYTHON_USEDEP}]
60 dev-python/pyasn1-modules[${PYTHON_USEDEP}]
61 + dev-python/pytest[${PYTHON_USEDEP}]
62 )"
63
64 DOCS=( AUTHORS.rst CONTRIBUTING.rst README.rst )
65
66 -distutils_enable_tests pytest
67 -
68 python_configure_all() {
69 append-cflags $(test-flags-CC -pthread)
70 }
71 +
72 +python_test() {
73 + local -x PYTHONPATH=${PYTHONPATH}:${WORKDIR}/${VEC_P}
74 + pytest -vv || die "Tests fail with ${EPYTHON}"
75 +}