summaryrefslogtreecommitdiff
path: root/dev-python/terminaltables
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/terminaltables')
-rw-r--r--dev-python/terminaltables/Manifest5
-rw-r--r--dev-python/terminaltables/files/terminaltables-3.1.0-stdout.patch23
-rw-r--r--dev-python/terminaltables/metadata.xml12
-rw-r--r--dev-python/terminaltables/terminaltables-3.1.10-r1.ebuild52
-rw-r--r--dev-python/terminaltables/terminaltables-9999.ebuild40
5 files changed, 0 insertions, 132 deletions
diff --git a/dev-python/terminaltables/Manifest b/dev-python/terminaltables/Manifest
deleted file mode 100644
index c278514b0aa5..000000000000
--- a/dev-python/terminaltables/Manifest
+++ /dev/null
@@ -1,5 +0,0 @@
-AUX terminaltables-3.1.0-stdout.patch 789 BLAKE2B 2c9f166d4e303cc55bf2d6b9b0e1f9d947cd10a1a173abc5657b9dedfd637da05e374fdc9e997f9e758be9caa90f3a984032eade15e816de594d65268bb013ad SHA512 f6eb3ea11a7027886457dd720b0736fc11611d233b7971456141476a6b1d83fb0be33e14c5789a626da1ca0f0f2ca75983f496bc68660aa66d7f285a3c2be684
-DIST terminaltables-3.1.10.gh.tar.gz 282122 BLAKE2B 53d5ecde38370f5b05d3eaae4b618ada6991214feadc7e826467dafede5baaf8292e47e6b2be903eb8ae6d46e3066314fe7950d7330056cd3053e0d643ad1a9e SHA512 84fa403cee4206b6b19de0206d89535bd2965a0796e1890dd9b0a9c6593c5f41d0d24b88ee9db426067c777712a4e810d67d4d0246496239a7a96b53a24e8174
-EBUILD terminaltables-3.1.10-r1.ebuild 1138 BLAKE2B f93e5b1edb473d277f788b83a5e4cc6d6c6dccd59ac99695cb4ad12a851b8a4c829dc6cb47f7d5fcb5e2c7d58bf11207f6a5ad334ae984ad0b714298bc32ab7d SHA512 a617f7e5a2894cc7a7444ebf4fbf2de605d6ffc6bdf524479070ede963d15cc06db777c1a4fbbbf88f2254eac1e2ced1bb5d076c70e9dbccd519d51f405e51b9
-EBUILD terminaltables-9999.ebuild 912 BLAKE2B 535467bd3b29deeb683a414e73a65420048308e170280001bd10e47c99c8c5f020bc9ba52dbea19335a244c2d4587514ce6944e116602bfb43ed62fe515bf604 SHA512 eb3b75b2f4924a94cd799485399b8833de08a7680845ff3ef9e5f897aa0459a3758d2b75969375453950270f7cfe3aedbd3a6fc73ed6f9ff315a521f816d6eda
-MISC metadata.xml 392 BLAKE2B d379642c2fef04d05b752527f7c37dc47a06aeeddd6004d194e48c9b7b01f583378c9c661bf24aa385ac474493c0cfee937392791525c14d5b2c6571576ca194 SHA512 244464b7805fec480eea284f4a20a5bdd2be53c436d0fe2efa84dcd4971122bdacf9024789915c62c1ffecceca26f3da6dece8804d6eecc780ba957b0933e2af
diff --git a/dev-python/terminaltables/files/terminaltables-3.1.0-stdout.patch b/dev-python/terminaltables/files/terminaltables-3.1.0-stdout.patch
deleted file mode 100644
index e463ff66f93b..000000000000
--- a/dev-python/terminaltables/files/terminaltables-3.1.0-stdout.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From 9cb9d0ef11fac861e46776fb18cef309df28c234 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <mgorny@gentoo.org>
-Date: Thu, 30 Jul 2020 07:59:05 +0200
-Subject: [PATCH] Fix writing binary data to sys.stdout
-
----
- terminaltables/terminal_io.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/terminaltables/terminal_io.py b/terminaltables/terminal_io.py
-index 8b8c10d..310263c 100644
---- a/terminaltables/terminal_io.py
-+++ b/terminaltables/terminal_io.py
-@@ -94,5 +94,5 @@ def set_terminal_title(title, kernel32=None):
- return kernel32.SetConsoleTitleW(title) != 0
-
- # Linux/OSX.
-- sys.stdout.write(b'\033]0;' + title_bytes + b'\007')
-+ sys.stdout.buffer.write(b'\033]0;' + title_bytes + b'\007')
- return True
---
-2.28.0
-
diff --git a/dev-python/terminaltables/metadata.xml b/dev-python/terminaltables/metadata.xml
deleted file mode 100644
index 2506f3e8e71c..000000000000
--- a/dev-python/terminaltables/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/terminaltables</remote-id>
- <remote-id type="pypi">terminaltables</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/terminaltables/terminaltables-3.1.10-r1.ebuild b/dev-python/terminaltables/terminaltables-3.1.10-r1.ebuild
deleted file mode 100644
index 728d259c1a31..000000000000
--- a/dev-python/terminaltables/terminaltables-3.1.10-r1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=poetry
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1
-
-DESCRIPTION="Generate simple tables in terminals from a nested list of strings"
-HOMEPAGE="
- https://robpol86.github.io/terminaltables/
- https://github.com/matthewdeanmartin/terminaltables/
- https://pypi.org/project/terminaltables/
-"
-SRC_URI="
- https://github.com/matthewdeanmartin/terminaltables/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
-
-PATCHES=(
- "${FILESDIR}"/terminaltables-3.1.0-stdout.patch
-)
-
-src_prepare() {
- sed -e '/requires/s:poetry:&-core:' \
- -e '/backend/s:poetry:&.core:' \
- -i pyproject.toml || die
-
- distutils-r1_src_prepare
-}
-
-python_test() {
- # We override FORCE_COLOR otherwise termcolor
- # would pick it up from env. and give unexpected
- # output for tests.
- FORCE_COLOR=1 epytest
-}
diff --git a/dev-python/terminaltables/terminaltables-9999.ebuild b/dev-python/terminaltables/terminaltables-9999.ebuild
deleted file mode 100644
index ff444cb98746..000000000000
--- a/dev-python/terminaltables/terminaltables-9999.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=poetry
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 git-r3
-
-DESCRIPTION="Generate simple tables in terminals from a nested list of strings"
-HOMEPAGE="https://robpol86.github.io/terminaltables/"
-EGIT_REPO_URI="https://github.com/matthewdeanmartin/${PN}.git"
-
-LICENSE="MIT"
-SLOT="0"
-
-BDEPEND="
- test? (
- dev-python/colorama[${PYTHON_USEDEP}]
- dev-python/colorclass[${PYTHON_USEDEP}]
- dev-python/termcolor[${PYTHON_USEDEP}]
- )"
-
-distutils_enable_tests pytest
-
-src_prepare() {
- sed -e '/requires/s:poetry:&-core:' \
- -e '/backend/s:poetry:&.core:' \
- -i pyproject.toml || die
-
- distutils-r1_src_prepare
-}
-
-python_test() {
- # We override FORCE_COLOR otherwise termcolor
- # would pick it up from env. and give unexpected
- # output for tests.
- FORCE_COLOR=1 epytest
-}