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/cryptography/
Date: Sun, 17 Feb 2019 18:39:06
Message-Id: 1550428669.b5de26cc6f9eb84678647069cdb825f7e2d0da3e.prometheanfire@gentoo
1 commit: b5de26cc6f9eb84678647069cdb825f7e2d0da3e
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 16 20:46:30 2019 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 17 18:37:49 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5de26cc
7
8 dev-python/cryptography: 2.5 version bump
9
10 Closes: https://bugs.gentoo.org/678176
11 Package-Manager: Portage-2.3.60, Repoman-2.3.12
12 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
13 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
14
15 dev-python/cryptography/Manifest | 1 +
16 dev-python/cryptography/cryptography-2.5.ebuild | 67 +++++++++++++++++++++++++
17 dev-python/cryptography/metadata.xml | 3 ++
18 3 files changed, 71 insertions(+)
19
20 diff --git a/dev-python/cryptography/Manifest b/dev-python/cryptography/Manifest
21 index 6256a1bf6c3..119d7bd1fa6 100644
22 --- a/dev-python/cryptography/Manifest
23 +++ b/dev-python/cryptography/Manifest
24 @@ -2,3 +2,4 @@ DIST cryptography-2.2.2.tar.gz 443822 BLAKE2B d0fbaad78d172f1ba1bfa6edd64d2d5a0e
25 DIST cryptography-2.3.1.tar.gz 449577 BLAKE2B 66a94f68a6f5c14ff1e3316ea740bda8c34135bc4614a6a36880d4970d54cb72d69374555a6a89dd9a6794e35feed8fc4598ad071cce33b9515da1ada4c38d53 SHA512 384581238b5669dbf31fd1b1385ec2ff9c6d76e2b7612efb15f255e17a11a38474f84668e62ceaa39a146260f46cac743575c0a8ffedc1e40c7b2f90d7cb00b1
26 DIST cryptography-2.3.tar.gz 449464 BLAKE2B 7485c745f9c6512a5efce42181970deff19bd4420e91230d84b070cd77450a6805c56a2e37cda73b45c90ed969c8fdbb866a7cc9e53a6828a1ca6e45befd9de8 SHA512 75e14020da500fdbbd578f004b22ef3237844185329adf59288b29f1b3ee9dd2005a2c4a933fe8609a59d168012a9f687bab0f31ab39ed6ca325198aa9295e52
27 DIST cryptography-2.4.2.tar.gz 468645 BLAKE2B 80ecde87cf1568239977fbe4f835db98f689a7dc3646d44229b5b33932885c288d4274427f5d04eb74e9e064b01b11b7eac40fc6221ea2241371bca618cc66df SHA512 800735fa86e9ad0f8517328d47e55dc79a2b86d8c7539ee2921c526085782d8dad5559bbee84f7effb42275503fa9a984b099a688c530c92f5672c423c0f1a28
28 +DIST cryptography-2.5.tar.gz 487694 BLAKE2B 9502e7b7987ee0101ad8e5fcd09208034222a7f20b6b3bc3126c8b59081c9d8ecf872985d5fca191fc132dd6759afd4d11c0e0d39268627f35990c005a2095d3 SHA512 5e8f8818fcaa8143526006b027107b8afbdc925d40c846701e65b2c7ee02235b7e0918246515520ef2030b1c87bb157d0d403c28ad68c31459d677af7e2d0b3f
29
30 diff --git a/dev-python/cryptography/cryptography-2.5.ebuild b/dev-python/cryptography/cryptography-2.5.ebuild
31 new file mode 100644
32 index 00000000000..c6cccef62a5
33 --- /dev/null
34 +++ b/dev-python/cryptography/cryptography-2.5.ebuild
35 @@ -0,0 +1,67 @@
36 +# Copyright 1999-2019 Gentoo Authors
37 +# Distributed under the terms of the GNU General Public License v2
38 +
39 +EAPI=6
40 +
41 +PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy{,3} )
42 +PYTHON_REQ_USE="threads(+)"
43 +
44 +inherit distutils-r1 flag-o-matic
45 +
46 +DESCRIPTION="Library providing cryptographic recipes and primitives"
47 +HOMEPAGE="https://github.com/pyca/cryptography/ https://pypi.org/project/cryptography/"
48 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
49 +
50 +LICENSE="|| ( Apache-2.0 BSD )"
51 +SLOT="0"
52 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
53 +IUSE="libressl idna test"
54 +
55 +# the openssl 1.0.2l-r1 needs to be updated again :(
56 +# It'd theb be able to go into the || section again
57 +#=dev-libs/openssl-1.0.2l-r1:0
58 +# the following is the original section, disallowing bindist entirely
59 +#!libressl? ( >=dev-libs/openssl-1.0.2:0=[-bindist(-)] )
60 +RDEPEND="
61 + !libressl? (
62 + dev-libs/openssl:0= (
63 + || (
64 + dev-libs/openssl:0[-bindist(-)]
65 + >=dev-libs/openssl-1.0.2o-r6:0
66 + )
67 + )
68 + )
69 + libressl? ( dev-libs/libressl:0= )
70 + $(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' python2_7 pypy{,3})
71 + idna? ( >=dev-python/idna-2.1[${PYTHON_USEDEP}] )
72 + >=dev-python/asn1crypto-0.21.0[${PYTHON_USEDEP}]
73 + dev-python/setuptools[${PYTHON_USEDEP}]
74 + >=dev-python/six-1.4.1[${PYTHON_USEDEP}]
75 + virtual/python-ipaddress[${PYTHON_USEDEP}]
76 + "
77 +DEPEND="${RDEPEND}
78 + >=dev-python/setuptools-1.0[${PYTHON_USEDEP}]
79 + $(python_gen_cond_dep '>=dev-python/cffi-1.8:=[${PYTHON_USEDEP}]' 'python*')
80 + $(python_gen_cond_dep '!~dev-python/cffi-1.11.3[${PYTHON_USEDEP}]' 'python*')
81 + test? (
82 + ~dev-python/cryptography-vectors-${PV}[${PYTHON_USEDEP}]
83 + dev-python/hypothesis[${PYTHON_USEDEP}]
84 + dev-python/iso8601[${PYTHON_USEDEP}]
85 + dev-python/pretend[${PYTHON_USEDEP}]
86 + dev-python/pyasn1-modules[${PYTHON_USEDEP}]
87 + >=dev-python/pytest-2.9.0[${PYTHON_USEDEP}]
88 + dev-python/pytz[${PYTHON_USEDEP}]
89 + )"
90 +
91 +DOCS=( AUTHORS.rst CONTRIBUTING.rst README.rst )
92 +
93 +PATCHES=(
94 +)
95 +
96 +python_configure_all() {
97 + append-cflags $(test-flags-CC -pthread)
98 +}
99 +
100 +python_test() {
101 + py.test -v -v -x || die "Tests fail with ${EPYTHON}"
102 +}
103
104 diff --git a/dev-python/cryptography/metadata.xml b/dev-python/cryptography/metadata.xml
105 index 2dfa57bc0fb..ff02c2b32ae 100644
106 --- a/dev-python/cryptography/metadata.xml
107 +++ b/dev-python/cryptography/metadata.xml
108 @@ -5,6 +5,9 @@
109 <email>python@g.o</email>
110 <name>Python</name>
111 </maintainer>
112 + <use>
113 + <flag name="idna">enable support for the old, deprecated IDNA specification (RFC 3490)</flag>
114 + </use>
115 <upstream>
116 <remote-id type="pypi">cryptography</remote-id>
117 <remote-id type="github">pyca/cryptography</remote-id>