From 137ae8e496c49a9bf69427234a149a513bc22dab Mon Sep 17 00:00:00 2001 From: Anton Fischl Date: Thu, 19 Mar 2026 04:35:14 +0100 Subject: [PATCH] app-text/xlsx2csv: add 0.8.6 Signed-off-by: Anton Fischl Part-of: https://codeberg.org/gentoo/gentoo/pulls/457 Signed-off-by: Sam James --- app-text/xlsx2csv/Manifest | 1 + app-text/xlsx2csv/xlsx2csv-0.8.6.ebuild | 32 +++++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 app-text/xlsx2csv/xlsx2csv-0.8.6.ebuild diff --git a/app-text/xlsx2csv/Manifest b/app-text/xlsx2csv/Manifest index e5e98c94a4f5d..2e86e1864be0d 100644 --- a/app-text/xlsx2csv/Manifest +++ b/app-text/xlsx2csv/Manifest @@ -1 +1,2 @@ DIST xlsx2csv-0.8.4.tar.gz 221390 BLAKE2B b986207375a4104e6c29d9a5ee8c7d0011e4c1be595750d5739408bec8694509fdd05bc9e54e8fa6065a1f91db5e6b2447ab721132e93ce26743aef3ab379af8 SHA512 4ef235344b5e20f6e6df721e1acb77b40b7b8fc8bf7512c245fe6b52ca58208da118241a6fe64aab674cccab1e17ac659f86786d83b34b3d66d433f01b5765fe +DIST xlsx2csv-0.8.6.tar.gz 228308 BLAKE2B 35e658d563d68f85f4a658c832e8c9dce6bf7186eb685bbf5c1342559fa7e3692f37f087ef821cfe0c8055aa29d441a4a06a2f64866d60d19e72eee87b8a219d SHA512 d8d8aad85deaf75b3b18760c9a2a837142d26870866f2ae3d63ec3181447e838501ae1d017ca6e1e05a32b37401fc4dd0e938a51f75f75a7527dfa7c92a59d4f diff --git a/app-text/xlsx2csv/xlsx2csv-0.8.6.ebuild b/app-text/xlsx2csv/xlsx2csv-0.8.6.ebuild new file mode 100644 index 0000000000000..e2774b5064351 --- /dev/null +++ b/app-text/xlsx2csv/xlsx2csv-0.8.6.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..14} ) +PYTHON_REQ_USE="xml(+)" +DISTUTILS_USE_PEP517=setuptools + +inherit distutils-r1 pypi + +DESCRIPTION="Convert MS Office xlsx files to CSV" +HOMEPAGE="https://github.com/dilshod/xlsx2csv/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND="dev-lang/perl" + +python_compile_all() { + emake -C man +} + +python_test() { + "${EPYTHON}" test/run || die "tests failed with ${EPYTHON}" +} + +python_install_all() { + distutils-r1_python_install_all + doman "man/${PN}.1" +}