[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
13/34: gnu: spiped: Use G-expressions.
From: |
guix-commits |
Subject: |
13/34: gnu: spiped: Use G-expressions. |
Date: |
Tue, 18 Jul 2023 21:11:57 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit a18d57d1f8ae6a39941a84998bddaf361053aa07
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Jul 16 02:00:03 2023 +0200
gnu: spiped: Use G-expressions.
* gnu/packages/networking.scm (spiped)[arguments]:
Rewrite as G-expressions.
---
gnu/packages/networking.scm | 44 +++++++++++++++++++++-----------------------
1 file changed, 21 insertions(+), 23 deletions(-)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index b885e73dcd..a490fafb5c 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -2985,30 +2985,28 @@ enabled due to license conflicts between the BSD
advertising clause and the GPL.
"0rs5403bp48wyy2x0f3hk0f75ds1qn03sgyli2c7y7fi29ynim05"))))
(build-system gnu-build-system)
(arguments
- `(#:test-target "test"
- #:make-flags (let* ((out (assoc-ref %outputs "out"))
- (bindir (string-append out "/bin"))
- (man1dir (string-append out "/share/man/man1")))
- (list ,(string-append "CC=" (cc-for-target)) ; It tries
to invoke `c99`.
- (string-append "BINDIR=" bindir)
- (string-append "MAN1DIR=" man1dir)))
- #:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'patch-command-invocations
- (lambda _
- (substitute* '("Makefile"
- "libcperciva/cpusupport/Build/cpusupport.sh"
- "libcperciva/POSIX/posix-cflags.sh"
- "libcperciva/POSIX/posix-l.sh")
- (("command -p") ""))))
- (delete 'configure) ; No ./configure script.
- (add-after 'install 'install-more-docs
- (lambda* (#:key outputs #:allow-other-keys)
- (let* ((out (assoc-ref %outputs "out"))
- (misc (string-append out "/share/doc/spiped")))
- (install-file "DESIGN.md" misc)))))))
+ (list
+ #:test-target "test"
+ #:make-flags
+ #~(list (string-append "CC=" #$(cc-for-target))
+ (string-append "BINDIR=" #$output "/bin")
+ (string-append "MAN1DIR=" #$output "/share/man/man1"))
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'patch-command-invocations
+ (lambda _
+ (substitute* '("Makefile"
+ "libcperciva/cpusupport/Build/cpusupport.sh"
+ "libcperciva/POSIX/posix-cflags.sh"
+ "libcperciva/POSIX/posix-l.sh")
+ (("command -p") ""))))
+ (delete 'configure) ; no ./configure script
+ (add-after 'install 'install-more-docs
+ (lambda _
+ (install-file "DESIGN.md"
+ (string-append #$output "/share/doc/spiped")))))))
(native-inputs
- (list procps)) ; `ps` is used by the test suite.
+ (list procps)) ; `ps` is used by the test suite
(inputs
(list openssl))
(home-page "https://www.tarsnap.com/spiped.html")
- 05/34: gnu: whois: Update to 5.5.17., (continued)
- 05/34: gnu: whois: Update to 5.5.17., guix-commits, 2023/07/18
- 03/34: gnu: evince: Parameterise source URI., guix-commits, 2023/07/18
- 07/34: gnu: whois: Use G-expressions., guix-commits, 2023/07/18
- 11/34: gnu: iperf: Update to 3.14., guix-commits, 2023/07/18
- 02/34: gnu: xtensor: Update to 0.24.6., guix-commits, 2023/07/18
- 06/34: gnu: whois: Remove input labels., guix-commits, 2023/07/18
- 08/34: gnu: ntp: Update to 4.2.8p17., guix-commits, 2023/07/18
- 09/34: gnu: ntp: Remove input labels., guix-commits, 2023/07/18
- 12/34: gnu: spiped: Update to 1.6.2., guix-commits, 2023/07/18
- 10/34: gnu: ntp: Use G-expressions., guix-commits, 2023/07/18
- 13/34: gnu: spiped: Use G-expressions.,
guix-commits <=
- 15/34: gnu: traceroute: Use G-expressions., guix-commits, 2023/07/18
- 19/34: gnu: liblxi: Update to 1.20., guix-commits, 2023/07/18
- 29/34: gnu: libqb: Fix cross-compilation., guix-commits, 2023/07/18
- 26/34: gnu: hwinfo: Make with flags., guix-commits, 2023/07/18
- 30/34: gnu: libqb: Update to 2.0.7., guix-commits, 2023/07/18
- 33/34: gnu: bcachefs-tools: Update to 0.1-17.c8bec83., guix-commits, 2023/07/18
- 34/34: gnu: python-wand: Fix build., guix-commits, 2023/07/18
- 23/34: gnu: hwinfo: Update to 23.1., guix-commits, 2023/07/18
- 25/34: gnu: hwinfo: Factorise 'install-man-pages., guix-commits, 2023/07/18
- 14/34: gnu: traceroute: Update to 2.1.2., guix-commits, 2023/07/18