From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 35D83158093 for ; Mon, 4 Jul 2022 06:57:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C1DC0E088F; Mon, 4 Jul 2022 06:57:39 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A2EF2E088F for ; Mon, 4 Jul 2022 06:57:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BA61D341F49 for ; Mon, 4 Jul 2022 06:57:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 439B4526 for ; Mon, 4 Jul 2022 06:57:37 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1656917838.4ff1f6379d946e61c7818c74db67502e9a2a68b0.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/twisted/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/twisted/twisted-22.4.0-r1.ebuild dev-python/twisted/twisted-22.4.0-r2.ebuild X-VCS-Directories: dev-python/twisted/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4ff1f6379d946e61c7818c74db67502e9a2a68b0 X-VCS-Branch: master Date: Mon, 4 Jul 2022 06:57:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 54f9d1da-a0ac-4d03-9b6c-2825234f2383 X-Archives-Hash: b7e0435ac34147b547acaa9a2ab3c958 commit: 4ff1f6379d946e61c7818c74db67502e9a2a68b0 Author: Michał Górny gentoo org> AuthorDate: Sun Jun 26 09:52:26 2022 +0000 Commit: Michał Górny gentoo 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 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/priority-1.1.0[${PYTHON_USEDEP}] =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}]