summaryrefslogtreecommitdiff
path: root/dev-python/terminaltables3
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/terminaltables3')
-rw-r--r--dev-python/terminaltables3/Manifest1
-rw-r--r--dev-python/terminaltables3/metadata.xml12
-rw-r--r--dev-python/terminaltables3/terminaltables3-4.0.0.ebuild40
3 files changed, 0 insertions, 53 deletions
diff --git a/dev-python/terminaltables3/Manifest b/dev-python/terminaltables3/Manifest
deleted file mode 100644
index e273e6f9d03a..000000000000
--- a/dev-python/terminaltables3/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-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
deleted file mode 100644
index 349b07363031..000000000000
--- a/dev-python/terminaltables3/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>python@gentoo.org</email>
- </maintainer>
- <stabilize-allarches/>
- <upstream>
- <remote-id type="github">matthewdeanmartin/terminaltables3</remote-id>
- <remote-id type="pypi">terminaltables3</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/terminaltables3/terminaltables3-4.0.0.ebuild b/dev-python/terminaltables3/terminaltables3-4.0.0.ebuild
deleted file mode 100644
index d06232ffbd51..000000000000
--- a/dev-python/terminaltables3/terminaltables3-4.0.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# 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
-}