From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1239800-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 632EC13835B for <garchives@archives.gentoo.org>; Thu, 7 Jan 2021 23:19:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 67D22E083B; Thu, 7 Jan 2021 23:19:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4B1DDE083B for <gentoo-commits@lists.gentoo.org>; Thu, 7 Jan 2021 23:19:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C3E643413F8 for <gentoo-commits@lists.gentoo.org>; Thu, 7 Jan 2021 23:19:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D2C65493 for <gentoo-commits@lists.gentoo.org>; Thu, 7 Jan 2021 23:19:28 +0000 (UTC) From: "Michał Górny" <mgorny@gentoo.org> 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" <mgorny@gentoo.org> Message-ID: <1610061328.c7f5e39b2dfdf0bd390f52160bcc75c3e2cd5289.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/nattka/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/nattka/nattka-0.2.11.ebuild app-portage/nattka/nattka-9999.ebuild X-VCS-Directories: app-portage/nattka/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c7f5e39b2dfdf0bd390f52160bcc75c3e2cd5289 X-VCS-Branch: master Date: Thu, 7 Jan 2021 23:19:28 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e5b6e8f6-18d9-42d7-9c13-2e012161e0cb X-Archives-Hash: 3a31051642c5b5eec241a153bbe20010 commit: c7f5e39b2dfdf0bd390f52160bcc75c3e2cd5289 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Thu Jan 7 21:11:02 2021 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Thu Jan 7 23:15:28 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7f5e39b app-portage/nattka: Limit to py3.8+ due to pkgcore Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> app-portage/nattka/nattka-0.2.11.ebuild | 4 ++-- app-portage/nattka/nattka-9999.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app-portage/nattka/nattka-0.2.11.ebuild b/app-portage/nattka/nattka-0.2.11.ebuild index 167a6660016..6e7e53cb0dc 100644 --- a/app-portage/nattka/nattka-0.2.11.ebuild +++ b/app-portage/nattka/nattka-0.2.11.ebuild @@ -1,10 +1,10 @@ -# Copyright 2020 Gentoo Authors +# Copyright 2020-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_{6..9} ) +PYTHON_COMPAT=( python3_{8..9} ) inherit distutils-r1 diff --git a/app-portage/nattka/nattka-9999.ebuild b/app-portage/nattka/nattka-9999.ebuild index 55996068ff7..d5f99963fc5 100644 --- a/app-portage/nattka/nattka-9999.ebuild +++ b/app-portage/nattka/nattka-9999.ebuild @@ -1,10 +1,10 @@ -# Copyright 2020 Gentoo Authors +# Copyright 2020-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_{6..9} ) +PYTHON_COMPAT=( python3_{8..9} ) inherit distutils-r1 git-r3