guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch core-updates updated: gnu: gnutls: Remove dependency on the Autot


From: guix-commits
Subject: branch core-updates updated: gnu: gnutls: Remove dependency on the Autotools.
Date: Fri, 25 Sep 2020 09:17:18 -0400

This is an automated email from the git hooks/post-receive script.

civodul pushed a commit to branch core-updates
in repository guix.

The following commit(s) were added to refs/heads/core-updates by this push:
     new 0b40d1a  gnu: gnutls: Remove dependency on the Autotools.
0b40d1a is described below

commit 0b40d1a3b414857e708944f821f250098cb9c125
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Fri Sep 25 15:15:59 2020 +0200

    gnu: gnutls: Remove dependency on the Autotools.
    
    This is a followup to 5cf6f6fe7b610e50d4f723f345799092d2b518ba.
    
    * gnu/packages/tls.scm (gnutls)[arguments]: In 'disable-failing-tests'
    phase, change 'tests/fastopen.sh' instead of 'tests/Makefile.am'.
    [native-inputs]: Remove AUTOCONF, AUTOMAKE, GETTEXT-MINIMAL, and
    LIBTOOL.
---
 gnu/packages/tls.scm | 13 +++----------
 1 file changed, 3 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index 74cd17f..510f057 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -46,13 +46,11 @@
   #:use-module (guix build-system trivial)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages)
-  #:use-module (gnu packages autotools)
   #:use-module (gnu packages bash)
   #:use-module (gnu packages check)
   #:use-module (gnu packages curl)
   #:use-module (gnu packages dns)
   #:use-module (gnu packages gawk)
-  #:use-module (gnu packages gettext)
   #:use-module (gnu packages guile)
   #:use-module (gnu packages hurd)
   #:use-module (gnu packages libbsd)
@@ -221,9 +219,9 @@ living in the same process.")
                   ;; https://gitlab.com/gnutls/gnutls/-/issues/1095).
                   (add-after 'unpack 'disable-failing-tests
                     (lambda _
-                      (delete-file "configure")
-                      (substitute* "tests/Makefile.am"
-                        (("fastopen.sh") ""))
+                      (substitute* "tests/fastopen.sh"
+                        (("^unset RETCODE")
+                         "exit 77\n"))            ;skip
                       #t))
                   (add-after 'install 'move-doc
                    (lambda* (#:key outputs #:allow-other-keys)
@@ -245,11 +243,6 @@ living in the same process.")
              `(("net-tools" ,net-tools)
                ("iproute" ,iproute)               ;for 'ss'
                ("socat" ,socat)))                 ;several tests rely on it
-       ("autoconf" ,autoconf)
-       ("automake" ,automake)
-       ("gettext" ,gettext-minimal)
-       ("libtool" ,libtool)
-
        ("pkg-config" ,pkg-config)
        ("texinfo" ,texinfo)
        ("which" ,which)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]