summaryrefslogtreecommitdiff
path: root/dev-python/terminaltables3
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 19:09:37 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 19:09:37 -0500
commitb590c8d7572b727d565cc0b8ff660d43569845de (patch)
tree06f7a4102ea4e845df8b66660f252920d52952f9 /dev-python/terminaltables3
parent24f9cbfc4c34fdb6a6e03311674414e881ceab47 (diff)
downloadbaldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.gz
baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.xz
baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.zip
Adding metadata
Diffstat (limited to 'dev-python/terminaltables3')
-rw-r--r--dev-python/terminaltables3/Manifest1
-rw-r--r--dev-python/terminaltables3/metadata.xml9
-rw-r--r--dev-python/terminaltables3/terminaltables3-4.0.0.ebuild40
3 files changed, 50 insertions, 0 deletions
diff --git a/dev-python/terminaltables3/Manifest b/dev-python/terminaltables3/Manifest
new file mode 100644
index 000000000000..e273e6f9d03a
--- /dev/null
+++ b/dev-python/terminaltables3/Manifest
@@ -0,0 +1 @@
+DIST terminaltables3-4.0.0.gh.tar.gz 311975 BLAKE2B 5a89b46c2357905a7029f7ca3ecabf08cd7c4b5ab3a82dd239242939c98a1ff495be73451bc4a0f75c0aff27bdd3c6ab087de8da7ac3a989b9e26493fd497dc2 SHA512 9d7641f5c0225661a2d4f1c4374aa18bf2abc26e33455015a414b1684f6ec85dd032453637416e1e36273c43b78acaff1da8228a13a2cf393b429d6fa7328923
diff --git a/dev-python/terminaltables3/metadata.xml b/dev-python/terminaltables3/metadata.xml
new file mode 100644
index 000000000000..d34971a915e9
--- /dev/null
+++ b/dev-python/terminaltables3/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>python@gentoo.org</email>
+ </maintainer>
+ <stabilize-allarches />
+ <origin>baldeagleos-repo</origin>
+</pkgmetadata>
diff --git a/dev-python/terminaltables3/terminaltables3-4.0.0.ebuild b/dev-python/terminaltables3/terminaltables3-4.0.0.ebuild
new file mode 100644
index 000000000000..d06232ffbd51
--- /dev/null
+++ b/dev-python/terminaltables3/terminaltables3-4.0.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=poetry
+PYTHON_COMPAT=( python3_{13..14} )
+
+inherit distutils-r1
+
+DESCRIPTION="Generate simple tables in terminals from a nested list of strings"
+HOMEPAGE="
+ https://github.com/matthewdeanmartin/terminaltables3/
+ https://pypi.org/project/terminaltables3/
+"
+SRC_URI="
+ https://github.com/matthewdeanmartin/terminaltables3/archive/v${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="amd64 ~arm64 x86"
+
+BDEPEND="
+ test? (
+ dev-python/colorama[${PYTHON_USEDEP}]
+ dev-python/colorclass[${PYTHON_USEDEP}]
+ dev-python/termcolor[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+ # We override FORCE_COLOR otherwise termcolor
+ # would pick it up from env. and give unexpected
+ # output for tests.
+ FORCE_COLOR=1 epytest
+}