[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
14/16: gnu: ipcalc: Update to 0.51.
From: |
guix-commits |
Subject: |
14/16: gnu: ipcalc: Update to 0.51. |
Date: |
Thu, 28 Jul 2022 20:46:15 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 2ac922a8ec7b76f1d22ed5b0fd4fe6ff592931b7
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Jul 24 02:00:05 2022 +0200
gnu: ipcalc: Update to 0.51.
* gnu/packages/networking.scm (ipcalc): Update to 0.51.
[source]: Use GIT-FETCH and GIT-FILE-NAME.
[inputs]: Remove tar, gzip, and the bogus ‘tarball’.
[arguments]: Adjust to build from Git.
[home-page]: Update.
---
gnu/packages/networking.scm | 37 +++++++++++++++++--------------------
1 file changed, 17 insertions(+), 20 deletions(-)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 70efe33a74..f6a49b9da9 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -3807,18 +3807,19 @@ service is available at @url{https://pagekite.net/}, or
you can run your own.")
(define-public ipcalc
(package
(name "ipcalc")
- (version "0.41")
- (source (origin
- (method url-fetch)
- (uri (string-append "http://jodies.de/ipcalc-archive/"
- name "-" version ".tar.gz"))
- (sha256
- (base32
- "12if9sm8h2ac0pgwkw835cgyqjxm6h27k4kfn2vfas9krrqwbafx"))))
- (inputs `(("perl" ,perl)
- ("tar" ,tar)
- ("gzip" ,gzip)
- ("tarball" ,source)))
+ (version "0.51")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ ;; This is the IPv6-capable continuation of the unmaintained
+ ;; <https://jodies.de/ipcalc-archive/>.
+ (url "https://github.com/kjokjo/ipcalc")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0cnygb69vjmp3by75jcd2z4y3ybp1s7x4nl3d32xa49h8lkhdbfv"))))
+ (inputs `(("perl" ,perl)))
(build-system trivial-build-system) ;no Makefile.PL
(arguments
`(#:modules ((guix build utils))
@@ -3829,25 +3830,21 @@ service is available at @url{https://pagekite.net/}, or
you can run your own.")
(let* ((source (assoc-ref %build-inputs "source"))
(perl (string-append (assoc-ref %build-inputs "perl")
"/bin"))
- (tar (assoc-ref %build-inputs "tar"))
- (gz (assoc-ref %build-inputs "gzip"))
(out (assoc-ref %outputs "out"))
(bin (string-append out "/bin"))
(doc (string-append out "/share/doc/ipcalc")))
- (setenv "PATH" (string-append gz "/bin"))
- (invoke (string-append tar "/bin/tar") "xvf" source)
- (chdir (string-append ,name "-" ,version))
+ (copy-recursively source "source")
+ (chdir "source")
(install-file "ipcalc" bin)
- (patch-shebang (string-append bin "/ipcalc") (list perl))
- #t))))
+ (patch-shebang (string-append bin "/ipcalc") (list perl))))))
(synopsis "Simple IP network calculator")
(description "ipcalc takes an IP address and netmask and calculates the
resulting broadcast, network, Cisco wildcard mask, and host range. By giving
a second netmask, you can design subnets and supernets. It is also intended
to be a teaching tool and presents the subnetting results as
easy-to-understand binary values.")
- (home-page "http://jodies.de/ipcalc")
+ (home-page "https://github.com/kjokjo/ipcalc")
(license license:gpl2+)))
(define-public tunctl
- branch master updated (e6bdd94c38 -> 42c99f282c), guix-commits, 2022/07/28
- 11/16: gnu: libsocketcan: Omit duplicate LICENSE file., guix-commits, 2022/07/28
- 16/16: gnu: mtools: Update to 4.0.40., guix-commits, 2022/07/28
- 14/16: gnu: ipcalc: Update to 0.51.,
guix-commits <=
- 09/16: gnu: nnn: Update to 4.6., guix-commits, 2022/07/28
- 06/16: gnu: pamixer: Update to 1.6., guix-commits, 2022/07/28
- 05/16: gnu: paprefs: Update to 1.2., guix-commits, 2022/07/28
- 01/16: gnu: hugin: Update to 2021.0.0., guix-commits, 2022/07/28
- 03/16: gnu: eid-mw: Update to 5.1.6., guix-commits, 2022/07/28
- 08/16: gnu: lldpd: Use G-expressions., guix-commits, 2022/07/28
- 10/16: gnu: libsocketcan: Update to 0.0.12., guix-commits, 2022/07/28
- 07/16: gnu: lldpd: Update to 1.0.14., guix-commits, 2022/07/28
- 02/16: gnu: hugin: Remove input labels., guix-commits, 2022/07/28
- 04/16: gnu: eid-mw: Remove input labels., guix-commits, 2022/07/28