diff options
author | Joe Kappus <joe@wt.gd> | 2024-01-14 05:20:18 -0500 |
---|---|---|
committer | Joe Kappus <joe@wt.gd> | 2024-01-14 05:20:18 -0500 |
commit | b9ce26ef04324155d9ac058a8c0923912429f927 (patch) | |
tree | 78aa26587504e9303d4a0bfed4fda0241640e4d0 /app-admin | |
parent | app-admin/s-tui: fix setuptools warnings (diff) | |
download | guru-b9ce26ef04324155d9ac058a8c0923912429f927.tar.gz guru-b9ce26ef04324155d9ac058a8c0923912429f927.tar.bz2 guru-b9ce26ef04324155d9ac058a8c0923912429f927.zip |
app-admin/s-tui: drop 1.1.3-r1
Signed-off-by: Joe Kappus <joe@wt.gd>
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/s-tui/Manifest | 1 | ||||
-rw-r--r-- | app-admin/s-tui/files/s-tui-1.1.4-setuptools-warning.patch | 22 | ||||
-rw-r--r-- | app-admin/s-tui/s-tui-1.1.3-r1.ebuild | 34 |
3 files changed, 22 insertions, 35 deletions
diff --git a/app-admin/s-tui/Manifest b/app-admin/s-tui/Manifest index a935d7167..0dc193c77 100644 --- a/app-admin/s-tui/Manifest +++ b/app-admin/s-tui/Manifest @@ -1,2 +1 @@ -DIST s-tui-1.1.3.gh.tar.gz 2608383 BLAKE2B 15e8e47acb11df816b415eca6bb67db4464054570c9435f704e51dfbb5e798cda1e5c9e5baf69dc01917c6cebb1b040f4f594d2199de7dfb0be7425320357b49 SHA512 80a746187d7d4e4581b6a7c68c3939772eed95ae16530ca38692c9fcfdb98068e60fbe401cf741e1896d8a303a240b231c27a7bf5471c24357fe06df6fdfb153 DIST s-tui-1.1.4.gh.tar.gz 2608449 BLAKE2B 80dfc8c4dbce181cf50a5fe3bf05b553401f0cd17b184b9123e61807ee1e5c06bdbdf543fc86a0aca8f7aa4aa508e76756047a121e5d6ddbce167e097938a870 SHA512 20adfb27bae6467650a901211f4b58d0351d756a5b9465922953feb3711969c6d647782f99479475499b4658ef65da6283ad4e55ce72839d36c08f8a7f244322 diff --git a/app-admin/s-tui/files/s-tui-1.1.4-setuptools-warning.patch b/app-admin/s-tui/files/s-tui-1.1.4-setuptools-warning.patch new file mode 100644 index 000000000..f8625a6b3 --- /dev/null +++ b/app-admin/s-tui/files/s-tui-1.1.4-setuptools-warning.patch @@ -0,0 +1,22 @@ +From 7507377a3571f7b1bb26dc04f471e9bd9734bd6f Mon Sep 17 00:00:00 2001 +From: Joe Kappus <joe@wt.gd> +Date: Sun, 14 Jan 2024 05:08:47 -0500 +Subject: [PATCH] Fix setuptools warning + +Resolves: https://github.com/amanusk/s-tui/issues/178 +--- + setup.cfg | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/setup.cfg b/setup.cfg +index 312e33a..bda3f26 100644 +--- a/setup.cfg ++++ b/setup.cfg +@@ -1,3 +1,3 @@ + [metadata] +-description-file = README.md ++description_file = README.md + license_files = LICENSE +-- +2.43.0 + diff --git a/app-admin/s-tui/s-tui-1.1.3-r1.ebuild b/app-admin/s-tui/s-tui-1.1.3-r1.ebuild deleted file mode 100644 index d2e55445a..000000000 --- a/app-admin/s-tui/s-tui-1.1.3-r1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..11} ) -DISTUTILS_USE_PEP517=setuptools -inherit distutils-r1 optfeature - -DESCRIPTION="Stress-Terminal UI monitoring tool" -HOMEPAGE="https://amanusk.github.io/s-tui/" - -if [[ ${PV} == *9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/amanusk/${PN}.git" - EGIT_SUBMODULES=() -else - SRC_URI="https://github.com/amanusk/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz" - KEYWORDS="~amd64" -fi - -LICENSE="GPL-2" -SLOT="0" - -RDEPEND=" - >=dev-python/psutil-5.6.0[${PYTHON_USEDEP}] - >=dev-python/urwid-2.0.1[${PYTHON_USEDEP}] -" - -distutils_enable_tests unittest - -pkg_postinst() { - optfeature "Stress options in program menu" app-benchmarks/stress -} |