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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 233181581EC for ; Sat, 23 Nov 2024 07:25:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 73A65E0815; Sat, 23 Nov 2024 07:25:41 +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 57C05E0815 for ; Sat, 23 Nov 2024 07:25:41 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 70461335D72 for ; Sat, 23 Nov 2024 07:25:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 04642130F for ; Sat, 23 Nov 2024 07:25:39 +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: <1732346724.96e6a699466760c97eccea63a00a298090cd8057.mgorny@gentoo> Subject: [gentoo-commits] proj/docker-images:master commit in: / X-VCS-Repository: proj/docker-images X-VCS-Files: python.Dockerfile X-VCS-Directories: / X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 96e6a699466760c97eccea63a00a298090cd8057 X-VCS-Branch: master Date: Sat, 23 Nov 2024 07:25:39 +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: bd53f9ea-d319-4af0-bc7e-1e32e2758b21 X-Archives-Hash: 3afb92a0c0c059ac93b2bd27a559d10d commit: 96e6a699466760c97eccea63a00a298090cd8057 Author: Michał Górny gentoo org> AuthorDate: Sat Nov 23 07:25:24 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Nov 23 07:25:24 2024 +0000 URL: https://gitweb.gentoo.org/proj/docker-images.git/commit/?id=96e6a699 python: Add keywords for Python 3.14 Signed-off-by: Michał Górny gentoo.org> python.Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/python.Dockerfile b/python.Dockerfile index ad577ce..2ba9b41 100644 --- a/python.Dockerfile +++ b/python.Dockerfile @@ -11,8 +11,9 @@ RUN <<-EOF # configure portage echo '*/* ~amd64' >> /etc/portage/package.accept_keywords/base.conf - echo '*/* full-stdlib sqlite' >> /etc/portage/package.use/python - echo 'dev-vcs/git -perl' >> /etc/portage/package.use/git + echo 'dev-lang/python **' >> /etc/portage/package.accept_keywords/python.conf + echo '*/* full-stdlib sqlite' >> /etc/portage/package.use/python.conf + echo 'dev-vcs/git -perl' >> /etc/portage/package.use/git.conf # install ::gentoo wget --progress=dot:mega -O - https://github.com/gentoo-mirror/gentoo/archive/master.tar.gz | tar -xz