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 805C81581C1 for ; Tue, 9 Jul 2024 12:30:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A4FD92BC013; Tue, 9 Jul 2024 12:30:54 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 81BC02BC013 for ; Tue, 9 Jul 2024 12:30:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4B4C2342FF7 for ; Tue, 9 Jul 2024 12:30:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6849DDC4 for ; Tue, 9 Jul 2024 12:30:50 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1720528213.9c92cf6c30d975c45cbacde0d968735e390e918e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/gemato/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/gemato/gemato-20.6.ebuild app-portage/gemato/gemato-9999.ebuild X-VCS-Directories: app-portage/gemato/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9c92cf6c30d975c45cbacde0d968735e390e918e X-VCS-Branch: master Date: Tue, 9 Jul 2024 12:30:50 +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: ef7e0c13-54d4-409c-9c70-7438a7b451f0 X-Archives-Hash: fc75cca21520f5d135ff7d40098e02c8 commit: 9c92cf6c30d975c45cbacde0d968735e390e918e Author: Sam James gentoo org> AuthorDate: Tue Jul 9 12:29:33 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Jul 9 12:30:13 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c92cf6c app-portage/gemato: require USE=ssl on Python Needed for WKD key refresh. Avoid users destroying their systems. Signed-off-by: Sam James gentoo.org> app-portage/gemato/gemato-20.6.ebuild | 2 +- app-portage/gemato/gemato-9999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app-portage/gemato/gemato-20.6.ebuild b/app-portage/gemato/gemato-20.6.ebuild index 17170f893db1..a389edfa15e4 100644 --- a/app-portage/gemato/gemato-20.6.ebuild +++ b/app-portage/gemato/gemato-20.6.ebuild @@ -5,7 +5,7 @@ EAPI=8 DISTUTILS_USE_PEP517=flit PYTHON_COMPAT=( python3_{10..13} pypy3 ) -PYTHON_REQ_USE='threads(+)' +PYTHON_REQ_USE='threads(+),ssl(+)' inherit distutils-r1 pypi diff --git a/app-portage/gemato/gemato-9999.ebuild b/app-portage/gemato/gemato-9999.ebuild index 0a4f52cf18cb..c5261323ede9 100644 --- a/app-portage/gemato/gemato-9999.ebuild +++ b/app-portage/gemato/gemato-9999.ebuild @@ -5,7 +5,7 @@ EAPI=8 DISTUTILS_USE_PEP517=flit PYTHON_COMPAT=( python3_{10..13} pypy3 ) -PYTHON_REQ_USE='threads(+)' +PYTHON_REQ_USE='threads(+),ssl(+)' inherit distutils-r1 git-r3