From 1cdf28d1443d639163e8363e85f2e72699108651 Mon Sep 17 00:00:00 2001 From: gryf Date: Fri, 26 Sep 2025 18:57:49 +0200 Subject: [PATCH] Added latest stig --- net-p2p/stig/Manifest | 1 + net-p2p/stig/stig-9999.ebuild | 40 +++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 net-p2p/stig/Manifest create mode 100644 net-p2p/stig/stig-9999.ebuild diff --git a/net-p2p/stig/Manifest b/net-p2p/stig/Manifest new file mode 100644 index 0000000..470e8a8 --- /dev/null +++ b/net-p2p/stig/Manifest @@ -0,0 +1 @@ +EBUILD stig-9999.ebuild 1149 BLAKE2B d85db64b650f324ae783e8a2490cd0f85083e8650205ea9ada73333f9884040fa3bd7c1020ac8a8077c6cbaf3a978c31f9d344cf75db6f2feadca58419754a88 SHA512 7bd75081c36b1026988c7ef67d4d3ee7c996cd8b92dd5503545fc47c6139ea146c3691ef8fed8f69830f6270c86f78f14492adf73a55a121b02314714226a47b diff --git a/net-p2p/stig/stig-9999.ebuild b/net-p2p/stig/stig-9999.ebuild new file mode 100644 index 0000000..19a2791 --- /dev/null +++ b/net-p2p/stig/stig-9999.ebuild @@ -0,0 +1,40 @@ +# Copyright 2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{11..13} ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 optfeature git-r3 + +MY_PV="${PV//_p}" + +DESCRIPTION="TUI and CLI for the BitTorrent client Transmission" +HOMEPAGE="https://github.com/rndusr/stig" +EGIT_REPO_URI="https://github.com/rndusr/stig.git" + +S="${WORKDIR}/${PN}-${MY_PV}" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + ${PYTHON_DEPS} + dev-python/natsort[${PYTHON_USEDEP}] + >=dev-python/urwid-2.6.12[${PYTHON_USEDEP}] + >=dev-python/urwidtrees-1.0.3[${PYTHON_USEDEP}] + dev-python/aiohttp[${PYTHON_USEDEP}] + dev-python/async-timeout[${PYTHON_USEDEP}] + dev-python/pyxdg[${PYTHON_USEDEP}] + dev-python/blinker[${PYTHON_USEDEP}] + dev-python/natsort[${PYTHON_USEDEP}] + dev-python/wcwidth[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + dev-python/multidict[${PYTHON_USEDEP}] +" + +pkg_postinst() { + optfeature "stripping arguments from process title when running in tmux sessions" dev-python/setproctitle + optfeature "SOCKS5, SOCKS4, or HTTP proxy tunneling support" dev-python/aiohttp-socks +}