From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1240323-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 5AD111382C5 for <garchives@archives.gentoo.org>; Sat, 9 Jan 2021 19:06:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 86FF3E0833; Sat, 9 Jan 2021 19:06:24 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 4B60EE0833 for <gentoo-commits@lists.gentoo.org>; Sat, 9 Jan 2021 19:06:24 +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 744463410D0 for <gentoo-commits@lists.gentoo.org>; Sat, 9 Jan 2021 19:06:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D38DE493 for <gentoo-commits@lists.gentoo.org>; Sat, 9 Jan 2021 19:06:21 +0000 (UTC) From: "Andreas Sturmlechner" <asturm@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, "Andreas Sturmlechner" <asturm@gentoo.org> Message-ID: <1610219115.c9b2a34e89f7354e6e8455cedd643a842e30ed4f.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/flask-paranoid/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/flask-paranoid/flask-paranoid-0.2.0-r1.ebuild X-VCS-Directories: dev-python/flask-paranoid/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: c9b2a34e89f7354e6e8455cedd643a842e30ed4f X-VCS-Branch: master Date: Sat, 9 Jan 2021 19:06:21 +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: 9a40830b-c488-481c-88a7-dab9cd4ecad9 X-Archives-Hash: ed10d71ca4fc7b807a5d6ce096a44d78 commit: c9b2a34e89f7354e6e8455cedd643a842e30ed4f Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Sat Jan 9 17:02:26 2021 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Sat Jan 9 19:05:15 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9b2a34e dev-python/flask-paranoid: EAPI-7, python3_9 Tests passed. Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> dev-python/flask-paranoid/flask-paranoid-0.2.0-r1.ebuild | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/dev-python/flask-paranoid/flask-paranoid-0.2.0-r1.ebuild b/dev-python/flask-paranoid/flask-paranoid-0.2.0-r1.ebuild index 611a24cad06..61e2d392220 100644 --- a/dev-python/flask-paranoid/flask-paranoid-0.2.0-r1.ebuild +++ b/dev-python/flask-paranoid/flask-paranoid-0.2.0-r1.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 DISTUTILS_IN_SOURCE_BUILD=1 -PYTHON_COMPAT=( python3_{6,7,8} ) -inherit distutils-r1 eapi7-ver +PYTHON_COMPAT=( python3_{6,7,8,9} ) +inherit distutils-r1 MY_PV=$(ver_cut 1-2) @@ -14,11 +14,10 @@ HOMEPAGE="https://github.com/miguelgrinberg/flask-paranoid/" SRC_URI="https://github.com/miguelgrinberg/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" - SLOT="0" - KEYWORDS="amd64 x86" IUSE="test" + RESTRICT="!test? ( test )" RDEPEND="dev-python/flask[${PYTHON_USEDEP}]"