summaryrefslogtreecommitdiff
path: root/app-benchmarks
diff options
context:
space:
mode:
authorGravatar Chris Xiong <chirs241097@gmail.com> 2021-10-14 19:01:18 -0400
committerGravatar Chris Xiong <chirs241097@gmail.com> 2021-10-14 19:01:18 -0400
commit846cdbdbf965fc50478bcc4c6436e3dc6a489f3f (patch)
tree4a39385c982291a110f513871aba340f0a7a061e /app-benchmarks
downloadppo-846cdbdbf965fc50478bcc4c6436e3dc6a489f3f.tar.xz
Initial commit.
Diffstat (limited to 'app-benchmarks')
-rw-r--r--app-benchmarks/s-tui/Manifest6
-rw-r--r--app-benchmarks/s-tui/s-tui-1.0.0.ebuild29
-rw-r--r--app-benchmarks/s-tui/s-tui-1.0.2.ebuild39
3 files changed, 74 insertions, 0 deletions
diff --git a/app-benchmarks/s-tui/Manifest b/app-benchmarks/s-tui/Manifest
new file mode 100644
index 0000000..743e2fa
--- /dev/null
+++ b/app-benchmarks/s-tui/Manifest
@@ -0,0 +1,6 @@
+DIST s-tui-0.8.2.tar.gz 2231439 BLAKE2B 528144c449bd8c517421d8eac4ce4b45d212adfdbfb038fea7a3e224e89cfc9ff6c4a60edb7464f47fc2fe6996ea13142ee923957b7a83132281c641b7d2a02c SHA512 1e9f815083d23edb8d31a64537d2029c52de7e8ebefad6de6c3100727abc27775103749ce93d1b49df24997ea42240b85ec9983cbfa286087453e471c978c71b
+DIST s-tui-1.0.0.tar.gz 2607169 BLAKE2B cc1bc151bb54ef4b4d844e0f090cc801aade109d35a20f581d21587f90d7b25e69375b19c88bd662a7b094535848d77eb23df10ec9d2c1133e79e7dd1cf71c41 SHA512 feb659d731c10bacb666043148664e29359e90558970f145fae063fb3b4c1301c73d3437f92ca9439a1c6029c087f5be9afdcb3f4ad45e057795b1c959c74602
+DIST s-tui-1.0.2.tar.gz 2607552 BLAKE2B 8ed54c44aeab0ccf5806e8fa1cb566b23d9f27f82a281882b36de85c4800515385c558da59b1ba8f039da15d08696865d5ac201c85c1b74316a7757fc2f02125 SHA512 7b475a4be69b702bd0a916e5c4fbec2dc9976e5033d6afb24af0583eba62292d5f7ab26779e1b55d8adaa113c32984a15311d050e9457d791778734b9236d530
+EBUILD s-tui-0.8.2.ebuild 758 BLAKE2B ef60b5c3ac73e7f544b9d2f54213e1f75ae1156b512118ff71024a6b0f72f7c62f58eec0a1d3cab87e36ce159ebf6bdc9b93d0d5e093bdea1e65c696300aa454 SHA512 a4d1f5d307aff5edf1df747afb239214b11e8f8c75590979ad30333a990a21d16d3bf04fff844d044e88c631c8fa8426e38ac296905d8e007adcc45dad848cf2
+EBUILD s-tui-1.0.0.ebuild 675 BLAKE2B 76d8526ce4f363fe1e047ad58edf0a5423c94a8f14a48d844bf81d939942569f84c0d4ab6062f6ca2a7014cee3e874df0c36cea88c54db1175deec305a8fae04 SHA512 c69110313fe3f7f8bd666a559265fec4812bf9f62ea139a6636de3813df0d6594ad51ce7a0239e60bb4226779ba99c5a8544d38d5c13853699658ceafd014d6d
+EBUILD s-tui-1.0.2.ebuild 926 BLAKE2B 8293586b2ad6752a6447a81a5a4f434fcc4223710fdc3e8536e0eaadf681c6850d51a13ca886a016eff81d80fd4bc34bec2fbfc5e243a4c47efa0ee4e163af50 SHA512 ac0ef439723a86da6230467e69f82d69b1f15a22629db8de70861a8822604f10c2d164d5c14292c147a9ab1685f33054ec1d28894039d1916f90dadadb61ff93
diff --git a/app-benchmarks/s-tui/s-tui-1.0.0.ebuild b/app-benchmarks/s-tui/s-tui-1.0.0.ebuild
new file mode 100644
index 0000000..005cb68
--- /dev/null
+++ b/app-benchmarks/s-tui/s-tui-1.0.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit distutils-r1
+
+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/s-tui"
+else
+ SRC_URI="https://github.com/amanusk/s-tui/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+stress"
+
+DEPEND="${PYTHON_DEPS}"
+RDEPEND="${DEPEND}
+ >=dev-python/urwid-2.0.1[${PYTHON_USEDEP}]
+ dev-python/psutil[${PYTHON_USEDEP}]
+ stress? ( app-benchmarks/stress )"
diff --git a/app-benchmarks/s-tui/s-tui-1.0.2.ebuild b/app-benchmarks/s-tui/s-tui-1.0.2.ebuild
new file mode 100644
index 0000000..53f18e0
--- /dev/null
+++ b/app-benchmarks/s-tui/s-tui-1.0.2.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8,9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit eutils distutils-r1
+
+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
+ # Pypi source doesn't include tests
+ SRC_URI="https://github.com/amanusk/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+
+RDEPEND="
+ >=dev-python/urwid-2.0.1[${PYTHON_USEDEP}]
+ >=dev-python/psutil-5.6.0[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests unittest
+
+pkg_postinst() {
+ elog "To get additional features, some optional runtime dependencies"
+ elog "may be installed:"
+ elog ""
+ optfeature "Stress options in program menu" app-benchmarks/stress
+}