summaryrefslogtreecommitdiff
path: root/dev-python/prettytable
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-11-15 19:06:47 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-11-15 19:06:47 +0000
commit415def438c52aa0f9284059ef6748bab59e8837b (patch)
tree9f025d53d148959f855481208161ad1bc21bc7a4 /dev-python/prettytable
parent786111411d262be682eaf3367d6c0c22e59d270d (diff)
downloadbaldeagleos-repo-415def438c52aa0f9284059ef6748bab59e8837b.tar.gz
baldeagleos-repo-415def438c52aa0f9284059ef6748bab59e8837b.tar.xz
baldeagleos-repo-415def438c52aa0f9284059ef6748bab59e8837b.zip
Adding metadata
Diffstat (limited to 'dev-python/prettytable')
-rw-r--r--dev-python/prettytable/Manifest2
-rw-r--r--dev-python/prettytable/prettytable-3.17.0.ebuild40
2 files changed, 42 insertions, 0 deletions
diff --git a/dev-python/prettytable/Manifest b/dev-python/prettytable/Manifest
index 1d023d1c6fd5..b572f52d524c 100644
--- a/dev-python/prettytable/Manifest
+++ b/dev-python/prettytable/Manifest
@@ -1 +1,3 @@
DIST prettytable-3.16.0.tar.gz 66276 BLAKE2B 1e5e69705fd4db5a2bffddd8bac7c8c7e8794a28f25ed54b133f95ec3fd936b7e7121d1016b6293b456a0bda6787cbb4b8446abcf358feff0c23af716ab9d760 SHA512 2c63cf56267ddda4454c330925d818b690acaf651fff1f101c93dd49a590825419bb327d027da7405318da581cf678141347d0a496972e3a6d2404844958f5ca
+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
diff --git a/dev-python/prettytable/prettytable-3.17.0.ebuild b/dev-python/prettytable/prettytable-3.17.0.ebuild
new file mode 100644
index 000000000000..07ef00ac3407
--- /dev/null
+++ b/dev-python/prettytable/prettytable-3.17.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2025 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_{10..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[${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
+}