gnu: strace: Update to 5.15.
* gnu/packages/linux.scm (strace): Update to 5.15. [arguments]: Remove trailing #T from build phases; disable one more test.master
parent
c0c878856e
commit
dce3415a74
|
@ -12,7 +12,7 @@
|
||||||
;;; Copyright © 2016 Raymond Nicholson <rain1@openmailbox.org>
|
;;; Copyright © 2016 Raymond Nicholson <rain1@openmailbox.org>
|
||||||
;;; Copyright © 2016 Mathieu Lirzin <mthl@gnu.org>
|
;;; Copyright © 2016 Mathieu Lirzin <mthl@gnu.org>
|
||||||
;;; Copyright © 2016, 2018, 2019, 2020, 2021 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
;;; Copyright © 2016, 2018, 2019, 2020, 2021 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||||
;;; Copyright © 2016, 2018, 2019, 2020 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2016, 2018, 2019, 2020, 2021 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2016 David Craven <david@craven.ch>
|
;;; Copyright © 2016 David Craven <david@craven.ch>
|
||||||
;;; Copyright © 2016 John Darrington <jmd@gnu.org>
|
;;; Copyright © 2016 John Darrington <jmd@gnu.org>
|
||||||
;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021 Marius Bakke <marius@gnu.org>
|
;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021 Marius Bakke <marius@gnu.org>
|
||||||
|
@ -2340,7 +2340,7 @@ Zerofree requires the file system to be unmounted or mounted read-only.")
|
||||||
(define-public strace
|
(define-public strace
|
||||||
(package
|
(package
|
||||||
(name "strace")
|
(name "strace")
|
||||||
(version "5.13")
|
(version "5.15")
|
||||||
(home-page "https://strace.io")
|
(home-page "https://strace.io")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -2348,7 +2348,7 @@ Zerofree requires the file system to be unmounted or mounted read-only.")
|
||||||
"/strace-" version ".tar.xz"))
|
"/strace-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0mmns22bjjvakxj29si0x4dcylcgy26llpcimkb0llcxif439k2s"))
|
"1p3jipp6mj5fwfcjdnp6xhxk84z07jy5qhjlqr6jjdbk54pw5jpb"))
|
||||||
(patches (search-patches "strace-readlink-tests.patch"))))
|
(patches (search-patches "strace-readlink-tests.patch"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
|
@ -2357,8 +2357,7 @@ Zerofree requires the file system to be unmounted or mounted read-only.")
|
||||||
(add-after 'unpack 'patch-/bin/sh
|
(add-after 'unpack 'patch-/bin/sh
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "src/strace.c"
|
(substitute* "src/strace.c"
|
||||||
(("/bin/sh") (which "sh")))
|
(("/bin/sh") (which "sh")))))
|
||||||
#t))
|
|
||||||
(add-after 'unpack 'disable-failing-tests
|
(add-after 'unpack 'disable-failing-tests
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "tests/Makefile.in"
|
(substitute* "tests/Makefile.in"
|
||||||
|
@ -2366,8 +2365,9 @@ Zerofree requires the file system to be unmounted or mounted read-only.")
|
||||||
;; extended.
|
;; extended.
|
||||||
(("^\tstrace-DD?D?\\.test \\\\.*") "")
|
(("^\tstrace-DD?D?\\.test \\\\.*") "")
|
||||||
(("^\tpidns-cache.test \\\\.*") "")
|
(("^\tpidns-cache.test \\\\.*") "")
|
||||||
(("^\t.*--pidns-translation.test \\\\.*") ""))
|
(("^\t.*--pidns-translation.test \\\\.*") "")
|
||||||
#t)))
|
;; This one fails with an encoding error.
|
||||||
|
(("^\t.*net-yy-unix.test \\\\.*") "")))))
|
||||||
;; Don't fail if the architecture doesn't support different
|
;; Don't fail if the architecture doesn't support different
|
||||||
;; personalities.
|
;; personalities.
|
||||||
#:configure-flags '("--enable-mpers=check")
|
#:configure-flags '("--enable-mpers=check")
|
||||||
|
|
Reference in New Issue