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 24B70138359 for ; Sat, 12 Sep 2020 12:47:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 61953E0839; Sat, 12 Sep 2020 12:47:47 +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 4B8E1E0839 for ; Sat, 12 Sep 2020 12:47:47 +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 6FB54340D1D for ; Sat, 12 Sep 2020 12:47:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D746E342 for ; Sat, 12 Sep 2020 12:47:44 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1599914840.eb9307fd9c142144f563837932b80c87cb0a53c7.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/xlsx2csv/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/xlsx2csv/xlsx2csv-0.7.6.ebuild X-VCS-Directories: app-text/xlsx2csv/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: eb9307fd9c142144f563837932b80c87cb0a53c7 X-VCS-Branch: master Date: Sat, 12 Sep 2020 12:47:44 +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: 5bf5ee71-cc30-4f4f-bb6e-c38dc1417e32 X-Archives-Hash: 77dcd88733addca64eda9198e548b248 commit: eb9307fd9c142144f563837932b80c87cb0a53c7 Author: David Seifert gentoo org> AuthorDate: Sat Sep 12 12:47:20 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Sep 12 12:47:20 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb9307fd app-text/xlsx2csv: Add python 3.8/3.9 Package-Manager: Portage-3.0.6, Repoman-3.0.1 Signed-off-by: David Seifert gentoo.org> app-text/xlsx2csv/xlsx2csv-0.7.6.ebuild | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/app-text/xlsx2csv/xlsx2csv-0.7.6.ebuild b/app-text/xlsx2csv/xlsx2csv-0.7.6.ebuild index 39cdd163b0e..804e56281af 100644 --- a/app-text/xlsx2csv/xlsx2csv-0.7.6.ebuild +++ b/app-text/xlsx2csv/xlsx2csv-0.7.6.ebuild @@ -1,8 +1,9 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="7" -PYTHON_COMPAT=( python{3_6,3_7} ) +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} ) PYTHON_REQ_USE="xml" inherit distutils-r1 @@ -15,7 +16,7 @@ LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" -DEPEND="dev-lang/perl" +BDEPEND="dev-lang/perl" PATCHES=( "${FILESDIR}"/${P}-tests.patch ) @@ -24,7 +25,7 @@ python_compile_all() { } python_test() { - "${PYTHON}" test/run || die "tests failed with ${EPYTHON}" + "${EPYTHON}" test/run || die "tests failed with ${EPYTHON}" } python_install_all() {