[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: tcpdump: Fetch source from tcpdump.org.
From: |
Leo Famulari |
Subject: |
01/01: gnu: tcpdump: Fetch source from tcpdump.org. |
Date: |
Mon, 6 Feb 2017 12:09:58 +0000 (UTC) |
lfam pushed a commit to branch master
in repository guix.
commit 6edc15798df14145c154b91c29847eb5a77f6b43
Author: Leo Famulari <address@hidden>
Date: Mon Feb 6 13:02:20 2017 +0100
gnu: tcpdump: Fetch source from tcpdump.org.
* gnu/packages/admin.scm (tcpdump)[source]: Remove temporary alternate URL.
---
gnu/packages/admin.scm | 14 ++------------
1 file changed, 2 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index be03f64..16cecd9 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -636,18 +636,8 @@ network statistics collection, security monitoring,
network debugging, etc.")
(version "4.9.0")
(source (origin
(method url-fetch)
- ;; We use this Debian URL while the upstream URL is still
- ;; officially private. This is the result of a botched
- ;; coordinated release of tcpdump 4.9.0. I verified with
- ;; the tcpdump maintainers that the upstream URL provides
- ;; the same data as this Debian URL.
- (uri
- (list
- (string-append "http://http.debian.net/debian/pool/main/t/"
- name "/" name "_" version ".orig.tar.gz")
- (string-append "http://www.tcpdump.org/release/tcpdump-"
- version ".tar.gz")))
- (file-name (string-append name "-" version ".tar.gz"))
+ (uri (string-append "http://www.tcpdump.org/release/tcpdump-"
+ version ".tar.gz"))
(sha256
(base32
"0pjsxsy8l71i813sa934cwf1ryp9xbr7nxwsvnzavjdirchq3sga"))))