diff options
author | David Seifert <soap@gentoo.org> | 2020-09-12 14:47:20 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2020-09-12 14:47:20 +0200 |
commit | eb9307fd9c142144f563837932b80c87cb0a53c7 (patch) | |
tree | f18f039c778090f10b4fb314d32e168567dbaf79 /app-text/xlsx2csv | |
parent | kde-frameworks/kxmlrpcclient: 5.74.0 version bump (diff) | |
download | gentoo-eb9307fd9c142144f563837932b80c87cb0a53c7.tar.gz gentoo-eb9307fd9c142144f563837932b80c87cb0a53c7.tar.bz2 gentoo-eb9307fd9c142144f563837932b80c87cb0a53c7.zip |
app-text/xlsx2csv: Add python 3.8/3.9
Package-Manager: Portage-3.0.6, Repoman-3.0.1
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-text/xlsx2csv')
-rw-r--r-- | app-text/xlsx2csv/xlsx2csv-0.7.6.ebuild | 9 |
1 files 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 39cdd163b0eb..804e56281aff 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() { |