From e1a9ae4b22fba4f37362ac9fcff0e028e060c7d4 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Mon, 22 Dec 2025 18:09:50 +0100 Subject: [PATCH] gnu: stig: Update to 0.14.1a0. * gnu/packages/bittorrent.scm (stig): Update to 0.14.1a0. [build-system]: Relocate field, switch to pyproject-build-system. [arguments]: Relocate field, improve style. [native-inputs]: Add python-setuptools. [description]: Improve style. Change-Id: I12a868709901cf874c2795c71ed81c6198cfd75b Signed-off-by: Sharlatan Hellseher --- gnu/packages/bittorrent.scm | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm index 7003feec77d019786984ff87b5399425e6f33b5c..506800d441aba0fc29d7da7a0b2d5464f989dd42 100644 --- a/gnu/packages/bittorrent.scm +++ b/gnu/packages/bittorrent.scm @@ -226,7 +226,7 @@ of the Transmission BitTorrent client, using its HTTP RPC protocol.") (define-public stig (package (name "stig") - (version "0.14.0a0") + (version "0.14.1a0") (source (origin (method git-fetch) @@ -235,7 +235,18 @@ of the Transmission BitTorrent client, using its HTTP RPC protocol.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1jfcgncva94pyzjifar1l6wlmb7aylg0l4fxljc83rkbj1a2aan0")))) + (base32 "0196brcasdyn0mx3h2cqlgrx8x9fyv2n7bmx13nj58vnf3y4c1hg")))) + (build-system pyproject-build-system) + (arguments + (list + #:tests? #f ;tests require network access + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'loosen-version-restrictions + (lambda _ + (substitute* "setup.py" + (("urwidtrees==1.0.3") + "urwidtrees>=1.0.3"))))))) (propagated-inputs (list python-urwid python-urwidtrees @@ -246,20 +257,12 @@ of the Transmission BitTorrent client, using its HTTP RPC protocol.") python-natsort python-async-timeout python-setproctitle)) - (arguments - (list - #:tests? #f ;tests require network access - #:phases #~(modify-phases %standard-phases - (add-after 'unpack 'loosen-version-restrictions - (lambda _ - (substitute* "setup.py" - (("urwidtrees==1.0.3") "urwidtrees>=1.0.3"))))))) (inputs (list python)) - (build-system python-build-system) + (native-inputs (list python-setuptools)) (synopsis "TUI and CLI for the BitTorrent client Transmission") (description - "Stig is a @acronym{TUI, Text User Interface} and @acronym{CLI, Command Line -Interface} client for the BitTorrent client Transmission.") + "Stig is a @acronym{TUI, Text User Interface} and @acronym{CLI, Command +Line Interface} client for the BitTorrent client Transmission.") (home-page "https://github.com/rndusr/stig") (license l:gpl3)))