dev-python/prettytable: Bump to 3.18.0

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2026-06-23 04:01:02 +02:00
parent 54782e75ba
commit c99fb5ebfe
2 changed files with 42 additions and 0 deletions

View File

@@ -1,2 +1,4 @@
DIST prettytable-3.17.0.tar.gz 67892 BLAKE2B e0537f62c28989323a95e3920e730a59101c506dfc4b3d24a472ee635dcca03894eaf4c9f846183e827178a57b3fe41aafb16d306c06e6c3ab79400257753002 SHA512 89598bd1b92e1ade6289c929dffe6979d18cfbd6931d4f93a12e0140d1361a207a9eb9de743a31fbde623277c95fdcb2cf5469eac7f0a8fdad744a71ff4688a6
DIST prettytable-3.17.0.tar.gz.provenance 9356 BLAKE2B 9f34f3c8df5b565291e2ad296052511453701454d88c0e904e3aacecd7a8fd1a0ed1282267ced266f1e75e28efce846674b79688abdb09c34374392fae557152 SHA512 78a78518bb3a7a0c375d5e0bb783ba8d3612e6d3a5528728603730e205d4de1cfa510162e8eb0314ac12d4fc97bd9b114cf177b2a980a39a9ace56fda7c10238
DIST prettytable-3.18.0.tar.gz 76373 BLAKE2B c065a487d1ad2ed0b00fd8637943da43a2ddc39e8b54d691721e71e9cfbee7fdf45888239899f73ab8c36ac88dcd76b2ff6fec72a5db24e4e0205e64a2742f5f SHA512 c705bbd49d41d5fcbbbc81ad2e74b9daeecec0fea6f525c6bfcea7261cce1280e31cfe719459c447a61170531b4f80f53c27366ffa7cfb54693c2062fd924940
DIST prettytable-3.18.0.tar.gz.provenance 9953 BLAKE2B d6cd18a25b35a8d2d89e8eaf8a694e2fb887e6a3823682c7236c0006185a053136557606d52ad3a1283dc89304d4d5cfe564e001c9d0bc1a0cb0add72899533a SHA512 f70bfedc17cb514ec6b9f600ecda00bb58971534b9da075884303647a1624ec56f412ef84682b670c87c2f825345ad259213c010bf4890a57e922d5d85b80a6f

View File

@@ -0,0 +1,40 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=hatchling
PYPI_VERIFY_REPO=https://github.com/prettytable/prettytable
PYTHON_COMPAT=( python3_{12..14} )
inherit distutils-r1 pypi
DESCRIPTION="Easily displaying tabular data in a visually appealing ASCII table format"
HOMEPAGE="
https://github.com/prettytable/prettytable/
https://pypi.org/project/prettytable/
"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc64 ~riscv ~s390 ~sparc ~x86"
RDEPEND="
>=dev-python/wcwidth-0.3.5[${PYTHON_USEDEP}]
"
BDEPEND="
dev-python/hatch-vcs[${PYTHON_USEDEP}]
test? (
$(python_gen_impl_dep sqlite)
)
"
EPYTEST_PLUGINS=( pytest-lazy-fixtures )
distutils_enable_tests pytest
src_prepare() {
distutils-r1_src_prepare
# remove the implicit dep on coverage
sed -i -e '/coverage/d' pyproject.toml || die
}