summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-08-14 09:57:02 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-08-16 00:25:17 +0100
commit544ec2e2b95d4abb2290c8ac654c37a7a31cc301 (patch)
treeda885447190b3a7774d7d74859a45d73d288053c /gnu/packages
parentdd47a070d4e2350186ec1709df1d65b9cb070002 (diff)
gnu: vpn-slice: Switch to pyproject.
* gnu/packages/vpn.scm (vpn-slice): [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [arguments]: Improve style, rewrite using gexps. <#:tests>: Disable them explicitely. [native-inputs]: Add python-setuptools, python-wheel. Change-Id: I705f23279b8fb8dfa8405635f026d3aa85183226 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/vpn.scm29
1 files changed, 17 insertions, 12 deletions
diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm
index c5b45fd102a..8c4204ce8fe 100644
--- a/gnu/packages/vpn.scm
+++ b/gnu/packages/vpn.scm
@@ -1299,22 +1299,27 @@ L2TP allows you to tunnel PPP over UDP.")
(version "0.16.1")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "vpn-slice" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/dlenski/vpn-slice")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "1anfx4hn2ggm6sbwqmqx68s3l2rjcy4z4l038xqb440jnk8jvl18"))))
- (build-system python-build-system)
+ (base32 "16shhgypw78d9982r7v293h8fbmpl4wvjb6076w66baincn599ag"))))
+ (build-system pyproject-build-system)
(arguments
(list
+ #:tests? #f ; No tests.
#:phases
- '(modify-phases %standard-phases
- (add-after 'unpack 'patch-FHS-file-names
- (lambda _
- (substitute* "vpn_slice/linux.py"
- (("/sbin/iptables")
- (which "iptables"))
- (("/sbin/ip")
- (which "ip"))))))))
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'patch-FHS-file-names
+ (lambda* (#:key inputs #:allow-other-keys)
+ (substitute* "vpn_slice/linux.py"
+ (("/sbin/iptables")
+ (search-input-file inputs "/sbin/iptables"))
+ (("/sbin/ip")
+ (search-input-file inputs "/sbin/ip"))))))))
+ (native-inputs (list python-setuptools python-wheel))
(inputs (list python-dnspython python-setproctitle iproute iptables))
(home-page "https://github.com/dlenski/vpn-slice")
(synopsis "Split tunneling replacement for vpnc-script")