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/twisted/
Date: Mon, 04 Jul 2022 06:57:41
Message-Id: 1656917838.4ff1f6379d946e61c7818c74db67502e9a2a68b0.mgorny@gentoo
1 commit: 4ff1f6379d946e61c7818c74db67502e9a2a68b0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 26 09:52:26 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 4 06:57:18 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ff1f637
7
8 dev-python/twisted: Rename USE={crypt → ssl}
9
10 The 'crypt' flag is a complete misnomer, as it is used to enable TLS
11 support in Twisted. Rename it to USE=ssl for consistency with other
12 packages and to avoid further confusion.
13
14 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
15
16 .../{twisted-22.4.0-r1.ebuild => twisted-22.4.0-r2.ebuild} | 14 +++++++-------
17 1 file changed, 7 insertions(+), 7 deletions(-)
18
19 diff --git a/dev-python/twisted/twisted-22.4.0-r1.ebuild b/dev-python/twisted/twisted-22.4.0-r2.ebuild
20 similarity index 99%
21 rename from dev-python/twisted/twisted-22.4.0-r1.ebuild
22 rename to dev-python/twisted/twisted-22.4.0-r2.ebuild
23 index 9863bb3ab1f5..d610a52c6ac3 100644
24 --- a/dev-python/twisted/twisted-22.4.0-r1.ebuild
25 +++ b/dev-python/twisted/twisted-22.4.0-r2.ebuild
26 @@ -20,7 +20,7 @@ S=${WORKDIR}/${PN}-${P}
27 LICENSE="MIT"
28 SLOT="0"
29 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv ~s390 sparc x86"
30 -IUSE="conch crypt http2 serial test"
31 +IUSE="conch http2 serial ssl test"
32 RESTRICT="!test? ( test )"
33
34 RDEPEND="
35 @@ -38,18 +38,18 @@ RDEPEND="
36 >=dev-python/cryptography-1.5.0[${PYTHON_USEDEP}]
37 dev-python/pyasn1[${PYTHON_USEDEP}]
38 )
39 - crypt? (
40 - >=dev-python/pyopenssl-16.0.0[${PYTHON_USEDEP}]
41 - dev-python/service_identity[${PYTHON_USEDEP}]
42 - >=dev-python/idna-0.6[${PYTHON_USEDEP}]
43 - )
44 - serial? ( >=dev-python/pyserial-3.0[${PYTHON_USEDEP}] )
45 http2? (
46 >=dev-python/h2-3.0.0[${PYTHON_USEDEP}]
47 <dev-python/h2-5.0.0[${PYTHON_USEDEP}]
48 >=dev-python/priority-1.1.0[${PYTHON_USEDEP}]
49 <dev-python/priority-2.0[${PYTHON_USEDEP}]
50 )
51 + serial? ( >=dev-python/pyserial-3.0[${PYTHON_USEDEP}] )
52 + ssl? (
53 + >=dev-python/pyopenssl-16.0.0[${PYTHON_USEDEP}]
54 + dev-python/service_identity[${PYTHON_USEDEP}]
55 + >=dev-python/idna-0.6[${PYTHON_USEDEP}]
56 + )
57 "
58 BDEPEND="
59 >=dev-python/incremental-21.3.0[${PYTHON_USEDEP}]