diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-06-26 11:52:26 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-07-04 08:57:18 +0200 |
commit | 4ff1f6379d946e61c7818c74db67502e9a2a68b0 (patch) | |
tree | cb0551fd149d199c39cb9c3a53f8246474c00710 | |
parent | net-p2p/deluge: Account for dev-python/twisted USE={crypt → ssl} (diff) | |
download | gentoo-4ff1f6379d946e61c7818c74db67502e9a2a68b0.tar.gz gentoo-4ff1f6379d946e61c7818c74db67502e9a2a68b0.tar.bz2 gentoo-4ff1f6379d946e61c7818c74db67502e9a2a68b0.zip |
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@gentoo.org>
-rw-r--r-- | dev-python/twisted/twisted-22.4.0-r2.ebuild (renamed from dev-python/twisted/twisted-22.4.0-r1.ebuild) | 14 |
1 files 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 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}] |