From 40bc9c9c42168a91cfa0069234590e8b0a889939 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Wed, 13 Nov 2024 17:22:26 +0200 Subject: gnu: nsncd: Update to 1.5.1. * gnu/packages/nss.scm (nsncd): Update to 1.5.1. [arguments]: Update the cargo-test-flags. Change-Id: Idfd2ca6e27f0f9ca8a57e32614f63ff35823ffd1 --- gnu/packages/nss.scm | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/gnu/packages/nss.scm b/gnu/packages/nss.scm index 86b3743656..0cfa920490 100644 --- a/gnu/packages/nss.scm +++ b/gnu/packages/nss.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013-2019, 2023 Ludovic Courtès ;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2021 Mark H Weaver -;;; Copyright © 2016-2019, 2021-2023 Efraim Flashner +;;; Copyright © 2016-2019, 2021-2024 Efraim Flashner ;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice ;;; Copyright © 2020, 2021 Marius Bakke ;;; Copyright © 2020 Jonathan Brielmaier @@ -387,26 +387,32 @@ PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other security standards. This package tracks the Rapid Release channel, which updates frequently."))) + (define-public nsncd (package (name "nsncd") - (version "2024-04-09") + (version "1.5.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/twosigma/nsncd") - (commit "7605e330d5a313a8656e6fcaf1c10cd6b5cdd427"))) + (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1hk8bh2a02nyk3rpzbjx1a2iiz15d0vx3ysa180wmr8gsc9ymph5")))) + (base32 "1qiphwlwbnni2vfqjbdzv2a1qgqv2ycmygmyrbx8pgaak9gl5hfi")))) (build-system cargo-build-system) (arguments `(#:cargo-test-flags - '("--" + '("--release" "--" ;; These tests fail with the current builder network setup "--skip=ffi::test_gethostbyaddr_r" - "--skip=ffi::test_gethostbyname2_r") + "--skip=ffi::test_gethostbyname2_r" + "--skip=handlers::test::test_handle_getservbyname_name" + "--skip=handlers::test::test_handle_getservbyname_name_proto" + "--skip=handlers::test::test_handle_getservbyport_port" + "--skip=handlers::test::test_handle_getservbyport_port_proto" + "--skip=handlers::test::test_handle_getservbyport_port_proto_aliases") #:install-source? #f #:cargo-inputs (("rust-anyhow" ,rust-anyhow-1) -- cgit v1.2.3