diff --git a/net-p2p/stig/Manifest b/net-p2p/stig/Manifest index f91bac46b5fdd..e2bcba971c340 100644 --- a/net-p2p/stig/Manifest +++ b/net-p2p/stig/Manifest @@ -1 +1,2 @@ DIST stig-0.13.0a_p0.tar.gz 405359 BLAKE2B 1f6d92e1596481aa0dcbb711079d5bee517049525e7c7c5f0cd3d4fbf809ad67997a6a9261cb85c8c3c973420d028cd901db03fddabf2bd2a03b8c57964359c2 SHA512 2b3a8e585d3c7145446beeba8ecbc96178e3b061beee6ef2e74f38a530863b25c3dba9a48021fcb52080d5adb18d95340bc6f6475534c468bf5b2b08c16d394f +DIST stig-0.14.0a_p0.tar.gz 405694 BLAKE2B e4a8e23654238e9920f76d634174194245db3b46dba0a6106a8229dc6e2b01334adb8541166f2bdecbe79c8015dd715f76d7688419639d4161f15ae2d3f69ab8 SHA512 ff1c93b91526907c3f3d36d4a62cb94839192d0363ddadabe5e3d30f73183491c369a2c9318255080959b9b81c0e7edba20f02c60458644ffcf8146e31674880 diff --git a/net-p2p/stig/stig-0.14.0a_p0.ebuild b/net-p2p/stig/stig-0.14.0a_p0.ebuild new file mode 100644 index 0000000000000..793e6f3dba530 --- /dev/null +++ b/net-p2p/stig/stig-0.14.0a_p0.ebuild @@ -0,0 +1,39 @@ +# Copyright 2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{11..14} ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 optfeature + +MY_PV="${PV//_p}" + +DESCRIPTION="TUI and CLI for the BitTorrent client Transmission" +HOMEPAGE="https://github.com/rndusr/stig" +SRC_URI="https://github.com/rndusr/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz" + +S="${WORKDIR}/${PN}-${MY_PV}" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + ${PYTHON_DEPS} + dev-python/natsort[${PYTHON_USEDEP}] + >=dev-python/urwid-2.0.0[${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/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 +}