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 8A0CE15800F for ; Tue, 10 Jan 2023 14:23:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9677AE07EA; Tue, 10 Jan 2023 14:23:06 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 60E37E07EA for ; Tue, 10 Jan 2023 14:23:06 +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 70A0633C6B6 for ; Tue, 10 Jan 2023 14:23:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D0A9A824 for ; Tue, 10 Jan 2023 14:23:03 +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: <1673360507.dae4d55f147c233adf692a0efa1028d601125b31.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/gcalcli/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/gcalcli/gcalcli-4.2.0-r1.ebuild app-misc/gcalcli/gcalcli-4.3.0.ebuild X-VCS-Directories: app-misc/gcalcli/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: dae4d55f147c233adf692a0efa1028d601125b31 X-VCS-Branch: master Date: Tue, 10 Jan 2023 14:23:03 +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: a66b48a6-0e9d-4730-8ce9-4704ed1dc2ea X-Archives-Hash: 208a386ef99067b41e9ae8a5f4c0e1cd commit: dae4d55f147c233adf692a0efa1028d601125b31 Author: Michał Górny gentoo org> AuthorDate: Tue Jan 10 14:17:32 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Jan 10 14:21:47 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dae4d55f app-misc/gcalcli: Remove Python < 3.10 Signed-off-by: Michał Górny gentoo.org> app-misc/gcalcli/gcalcli-4.2.0-r1.ebuild | 4 ++-- app-misc/gcalcli/gcalcli-4.3.0.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app-misc/gcalcli/gcalcli-4.2.0-r1.ebuild b/app-misc/gcalcli/gcalcli-4.2.0-r1.ebuild index 8fce85bd388c..78922029329c 100644 --- a/app-misc/gcalcli/gcalcli-4.2.0-r1.ebuild +++ b/app-misc/gcalcli/gcalcli-4.2.0-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_COMPAT=( python3_10 ) DISTUTILS_USE_SETUPTOOLS=rdepend inherit distutils-r1 diff --git a/app-misc/gcalcli/gcalcli-4.3.0.ebuild b/app-misc/gcalcli/gcalcli-4.3.0.ebuild index b0ff10b2fe22..9011c82b338f 100644 --- a/app-misc/gcalcli/gcalcli-4.3.0.ebuild +++ b/app-misc/gcalcli/gcalcli-4.3.0.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 DESCRIPTION="Google Calendar Command Line Interface"