View | Details | Raw Unified | Return to bug 282578
Collapse All | Expand All

(-)b/net-p2p/Makefile (+1 lines)
Lines 91-96 Link Here
91
    SUBDIR += rtorrent
91
    SUBDIR += rtorrent
92
    SUBDIR += shx
92
    SUBDIR += shx
93
    SUBDIR += sonarr
93
    SUBDIR += sonarr
94
    SUBDIR += stig
94
    SUBDIR += torrent-file-editor
95
    SUBDIR += torrent-file-editor
95
    SUBDIR += torrentcheck
96
    SUBDIR += torrentcheck
96
    SUBDIR += torrentsniff
97
    SUBDIR += torrentsniff
(-)b/net-p2p/stig/Makefile (+29 lines)
Added Link Here
1
PORTNAME=	stig
2
DISTVERSION=	0.12.11a0
3
CATEGORIES=	net-p2p
4
MASTER_SITES=	PYPI
5
6
MAINTAINER=	alster@vinterdalen.se
7
COMMENT=	TUI and CLI client for the BitTorrent Transmission daemon
8
WWW=		https://github.com/rndusr/stig/
9
10
LICENSE=	GPLv3+
11
LICENSE_FILE=	${WRKSRC}/LICENSE
12
13
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}aiohttp-socks>0:net/py-aiohttp-socks@${PY_FLAVOR} \
14
		${PYTHON_PKGNAMEPREFIX}async_timeout>0:devel/py-async_timeout@${PY_FLAVOR} \
15
		${PYTHON_PKGNAMEPREFIX}blinker>0:devel/py-blinker@${PY_FLAVOR} \
16
		${PYTHON_PKGNAMEPREFIX}natsort>0:devel/py-natsort@${PY_FLAVOR} \
17
		${PYTHON_PKGNAMEPREFIX}xdg>0:devel/py-xdg@${PY_FLAVOR} \
18
		${PYTHON_PKGNAMEPREFIX}setproctitle>0:devel/py-setproctitle@${PY_FLAVOR} \
19
		${PYTHON_PKGNAMEPREFIX}urwidtrees>0:devel/py-urwidtrees@${PY_FLAVOR}
20
TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}asynctest>0:devel/py-asynctest@${PY_FLAVOR}
21
22
USES=		python
23
USE_PYTHON=	autoplist distutils pytest
24
25
NO_ARCH=	yes
26
27
TESTING_UNSAFE=	yes
28
29
.include <bsd.port.mk>
(-)b/net-p2p/stig/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1730839977
2
SHA256 (stig-0.12.11a0.tar.gz) = 25b98a3e3a67e6757cf48864e4bc2a3fc6397d4faf6440a536aad57f777c8e27
3
SIZE (stig-0.12.11a0.tar.gz) = 234990
(-)b/net-p2p/stig/pkg-descr (-1 / +20 lines)
Added Link Here
0
- 
1
Stig features:
2
3
* Filters are used to select torrents for listing, starting/stopping, deleting,
4
etc
5
6
* Tabs allow you to open and switch between multiple lists (torrents, peers,
7
files, etc)
8
9
* Commands do almost everything, and they can be invoked:
10
- through single- or multi-key (think GNU/EMACS) keybindings,
11
- by entering them in a command prompt in the TUI (think vi) with tab completion
12
- by providing them as CLI arguments when invoking stig (think Git),
13
- or by listing them in an rc file which is automatically loaded.
14
15
* Color themes support 16 and 256 colors
16
17
* Complete built-in documentation with help command or --help argument
18
19
* Full API abstraction layer makes it possible to add support for other
20
BitTorrent clients with RPC interfaces (contributors are welcome)

Return to bug 282578