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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9D39A1382C5 for ; Tue, 1 Jun 2021 13:14:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EE9AFE07A7; Tue, 1 Jun 2021 13:14:20 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 D48EEE07A7 for ; Tue, 1 Jun 2021 13:14:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 80C45340FC7 for ; Tue, 1 Jun 2021 13:14:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 023B1793 for ; Tue, 1 Jun 2021 13:14:18 +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: <1622553245.d70f744013ced961b7e1aaa8ac6ae7b67ebb4dc4.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/netpaint/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/netpaint/netpaint-1.1.2.ebuild X-VCS-Directories: media-gfx/netpaint/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d70f744013ced961b7e1aaa8ac6ae7b67ebb4dc4 X-VCS-Branch: master Date: Tue, 1 Jun 2021 13:14:18 +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: 0a35decc-08bd-4fe0-812d-a75dde045f4f X-Archives-Hash: 7c3097b48b91b056778b16bc702fa7bc commit: d70f744013ced961b7e1aaa8ac6ae7b67ebb4dc4 Author: Sam James gentoo org> AuthorDate: Tue Jun 1 13:14:05 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Jun 1 13:14:05 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d70f7440 media-gfx/netpaint: add Python 3.9 Signed-off-by: Sam James gentoo.org> media-gfx/netpaint/netpaint-1.1.2.ebuild | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/media-gfx/netpaint/netpaint-1.1.2.ebuild b/media-gfx/netpaint/netpaint-1.1.2.ebuild index 46c0f02e9d4..e44b6241f74 100644 --- a/media-gfx/netpaint/netpaint-1.1.2.ebuild +++ b/media-gfx/netpaint/netpaint-1.1.2.ebuild @@ -1,32 +1,28 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{7,8} ) +PYTHON_COMPAT=( python3_{7,8,9} ) inherit distutils-r1 +MY_PN="NetPaint" +MY_P="${MY_PN}-${PV}" + DESCRIPTION="curses-based drawing tool" HOMEPAGE="https://github.com/SyntheticDreams/NetPaint" SRC_URI="https://github.com/SyntheticDreams/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MY_P}" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" -MY_PN="NetPaint" -MY_P="${MY_PN}-${PV}" - RDEPEND=" dev-python/urwid[${PYTHON_USEDEP}] dev-python/pillow[${PYTHON_USEDEP}]" - -DEPEND=" - ${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}]" - -S="${WORKDIR}/${MY_P}" +DEPEND="${RDEPEND}" src_prepare() { default