[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
13/13: gnu: pidentd: Don't use unstable tarball.
From: |
guix-commits |
Subject: |
13/13: gnu: pidentd: Don't use unstable tarball. |
Date: |
Tue, 23 Jun 2020 10:14:01 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 6562a3883f4a6f23e98f4800043397918a1fbafd
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Jun 23 17:12:58 2020 +0300
gnu: pidentd: Don't use unstable tarball.
* gnu/packages/networking.scm (pidentd)[source]: Download using
git-fetch.
---
gnu/packages/networking.scm | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 6113061..a847af5 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -2037,13 +2037,14 @@ enabled due to license conflicts between the BSD
advertising clause and the GPL.
(version "3.0.19")
(source
(origin
- (method url-fetch)
- (uri (string-append "https://github.com/ptrrkssn/pidentd/archive/"
- "v" version ".tar.gz"))
- (file-name (string-append name "-" version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ptrrkssn/pidentd")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
(base32
- "0y3kd1bkydqkpc1qdff24yswysamsqivvadjy0468qri5730izgc"))))
+ "1k4rr0b4ygxssbnsykzjvz4hjhazzz4j5arlilyc1iq7b1wzsk7i"))))
(build-system gnu-build-system)
(arguments
`(#:tests? #f)) ; No tests are included
@@ -2052,7 +2053,7 @@ enabled due to license conflicts between the BSD
advertising clause and the GPL.
(home-page "https://www.lysator.liu.se/~pen/pidentd/")
(synopsis "Small Ident Daemon")
(description
- "@dfn{Pidentd} (Peter's Ident Daemon) is a identd, which implements a
+ "@dfn{Pidentd} (Peter's Ident Daemon) is an identd, which implements a
identification server. Pidentd looks up specific TCP/IP connections and
returns the user name and other information about the connection.")
(license license:public-domain)))
- 02/13: gnu: xaos: Add a source file-name., (continued)
- 02/13: gnu: xaos: Add a source file-name., guix-commits, 2020/06/23
- 05/13: gnu: miniasm: Don't use unstable tarball., guix-commits, 2020/06/23
- 04/13: gnu: stumpwm-contrib: Add a source file-name., guix-commits, 2020/06/23
- 11/13: gnu: lightgbm: Don't use unstable tarball., guix-commits, 2020/06/23
- 06/13: gnu: miniasm: Make sure all phases return #t., guix-commits, 2020/06/23
- 07/13: gnu: fntsample: Don't use unstable tarball., guix-commits, 2020/06/23
- 08/13: gnu: nototools: Don't use unstable tarball., guix-commits, 2020/06/23
- 09/13: gnu: sbcl-md5: Don't use unstable tarball., guix-commits, 2020/06/23
- 10/13: gnu: sonata: Don't use unstable tarball., guix-commits, 2020/06/23
- 12/13: gnu: nzbget: Don't use unstable tarball., guix-commits, 2020/06/23
- 13/13: gnu: pidentd: Don't use unstable tarball.,
guix-commits <=