From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1199611-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 5863E138359 for <garchives@archives.gentoo.org>; Mon, 24 Aug 2020 22:34:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CAEEAE08E8; Mon, 24 Aug 2020 22:33:59 +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 B1E8FE08EC for <gentoo-commits@lists.gentoo.org>; Mon, 24 Aug 2020 22:33:59 +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 18F89340DA8 for <gentoo-commits@lists.gentoo.org>; Mon, 24 Aug 2020 22:33:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6DCCF344 for <gentoo-commits@lists.gentoo.org>; Mon, 24 Aug 2020 22:33:54 +0000 (UTC) From: "Conrad Kostecki" <conikost@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, "Conrad Kostecki" <conikost@gentoo.org> Message-ID: <1598308377.628d820500492e2e478e2b38adbb08bbc6fa53ef.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/configargparse/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/configargparse/configargparse-1.2.3.ebuild X-VCS-Directories: dev-python/configargparse/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 628d820500492e2e478e2b38adbb08bbc6fa53ef X-VCS-Branch: master Date: Mon, 24 Aug 2020 22:33:54 +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: c46bfbf6-bae1-4f09-9ffe-5837e81a4e58 X-Archives-Hash: 9fbe6d0feead0ec9bea0ba14995b361d commit: 628d820500492e2e478e2b38adbb08bbc6fa53ef Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org> AuthorDate: Mon Aug 24 21:19:54 2020 +0000 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org> CommitDate: Mon Aug 24 22:32:57 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=628d8205 dev-python/configargparse: add python3.9 support Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org> dev-python/configargparse/configargparse-1.2.3.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-python/configargparse/configargparse-1.2.3.ebuild b/dev-python/configargparse/configargparse-1.2.3.ebuild index a71a650a588..1ba3a66344f 100644 --- a/dev-python/configargparse/configargparse-1.2.3.ebuild +++ b/dev-python/configargparse/configargparse-1.2.3.ebuild @@ -6,14 +6,13 @@ EAPI=7 MY_PN="ConfigArgParse" MY_P="${MY_PN}-${PV}" -PYTHON_COMPAT=( python3_{6,7,8} ) +PYTHON_COMPAT=( python3_{6..9} ) inherit distutils-r1 DESCRIPTION="Drop-in replacement for argparse supporting config files and env variables" HOMEPAGE="https://github.com/bw2/ConfigArgParse https://pypi.org/project/ConfigArgParse/" SRC_URI="https://github.com/bw2/ConfigArgParse/archive/${PV}.tar.gz -> ${MY_P}.gh.tar.gz" -S="${WORKDIR}/${MY_P}" LICENSE="MIT" SLOT="0" @@ -21,8 +20,9 @@ KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86" IUSE="test" RESTRICT="!test? ( test )" -BDEPEND=" - test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )" +BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )" + +S="${WORKDIR}/${MY_P}" python_test() { local -x COLUMNS=80