[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: librdkafka: Update to 1.4.2.
From: |
guix-commits |
Subject: |
branch master updated: gnu: librdkafka: Update to 1.4.2. |
Date: |
Wed, 03 Jun 2020 06:37:57 -0400 |
This is an automated email from the git hooks/post-receive script.
iyzsong pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 7277baf gnu: librdkafka: Update to 1.4.2.
7277baf is described below
commit 7277baf50d348a11cd824379f1bb32beb83e7ffb
Author: Katherine Cox-Buday <cox.katherine.e@gmail.com>
AuthorDate: Tue Jun 2 16:02:13 2020 -0500
gnu: librdkafka: Update to 1.4.2.
* gnu/packages/networking.scm (librdkafka): Update to 1.4.2.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
---
gnu/packages/networking.scm | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 8f650b1..df996d8 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -532,16 +532,16 @@ written in the C programming language.")
(define-public librdkafka
(package
(name "librdkafka")
- (version "0.9.1")
+ (version "1.4.2")
(source (origin
- (method url-fetch)
- (uri (string-append
- "https://github.com/edenhill/librdkafka/archive/"
- version ".tar.gz"))
- (file-name (string-append name "-" version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/edenhill/librdkafka.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
(base32
- "10ldx7g7ymmg17snzx78vy4n8ma1rjx0agzi34g15j2fk867xmas"))))
+ "05mgrdzacn9kdpr68r5j0cvsvl54s52glnsc1ww9rcxx6p7hq1ly"))))
(build-system gnu-build-system)
(arguments
'(#:phases
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: librdkafka: Update to 1.4.2.,
guix-commits <=