commit: 4ff1f6379d946e61c7818c74db67502e9a2a68b0
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 26 09:52:26 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Jul 4 06:57:18 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ff1f637
dev-python/twisted: Rename USE={crypt → ssl}
The 'crypt' flag is a complete misnomer, as it is used to enable TLS
support in Twisted. Rename it to USE=ssl for consistency with other
packages and to avoid further confusion.
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
.../{twisted-22.4.0-r1.ebuild => twisted-22.4.0-r2.ebuild} | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/dev-python/twisted/twisted-22.4.0-r1.ebuild
b/dev-python/twisted/twisted-22.4.0-r2.ebuild
similarity index 99%
rename from dev-python/twisted/twisted-22.4.0-r1.ebuild
rename to dev-python/twisted/twisted-22.4.0-r2.ebuild
index 9863bb3ab1f5..d610a52c6ac3 100644
--- a/dev-python/twisted/twisted-22.4.0-r1.ebuild
+++ b/dev-python/twisted/twisted-22.4.0-r2.ebuild
@@ -20,7 +20,7 @@ S=${WORKDIR}/${PN}-${P}
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv
~s390 sparc x86"
-IUSE="conch crypt http2 serial test"
+IUSE="conch http2 serial ssl test"
RESTRICT="!test? ( test )"
RDEPEND="
@@ -38,18 +38,18 @@ RDEPEND="
>=dev-python/cryptography-1.5.0[${PYTHON_USEDEP}]
dev-python/pyasn1[${PYTHON_USEDEP}]
)
- crypt? (
- >=dev-python/pyopenssl-16.0.0[${PYTHON_USEDEP}]
- dev-python/service_identity[${PYTHON_USEDEP}]
- >=dev-python/idna-0.6[${PYTHON_USEDEP}]
- )
- serial? ( >=dev-python/pyserial-3.0[${PYTHON_USEDEP}] )
http2? (
>=dev-python/h2-3.0.0[${PYTHON_USEDEP}]
<dev-python/h2-5.0.0[${PYTHON_USEDEP}]
>=dev-python/priority-1.1.0[${PYTHON_USEDEP}]
<dev-python/priority-2.0[${PYTHON_USEDEP}]
)
+ serial? ( >=dev-python/pyserial-3.0[${PYTHON_USEDEP}] )
+ ssl? (
+ >=dev-python/pyopenssl-16.0.0[${PYTHON_USEDEP}]
+ dev-python/service_identity[${PYTHON_USEDEP}]
+ >=dev-python/idna-0.6[${PYTHON_USEDEP}]
+ )
"
BDEPEND="
>=dev-python/incremental-21.3.0[${PYTHON_USEDEP}]