mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
patchutils: Update to 0.3.4.
* gnu/packages/patchutils.scm (patchutils): Update to 0.3.4. [arguments]: Simplify 'patch-test-scripts' phase. * gnu/packages/patches/patchutils-xfail-gendiff-tests.patch: Rename to... * gnu/packages/patches/patchutils-test-perms.patch: ...this. * gnu/local.mk (dist_patch_DATA): Adjust accordingly.
This commit is contained in:
parent
7b05e957fa
commit
5f230fb279
4 changed files with 20 additions and 34 deletions
|
@ -43,7 +43,7 @@
|
|||
(define-public patchutils
|
||||
(package
|
||||
(name "patchutils")
|
||||
(version "0.3.3")
|
||||
(version "0.3.4")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
|
@ -51,8 +51,8 @@
|
|||
name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0g5df00cj4nczrmr4k791l7la0sq2wnf8rn981fsrz1f3d2yix4i"))
|
||||
(patches (search-patches "patchutils-xfail-gendiff-tests.patch"))))
|
||||
"0xp8mcfyi5nmb5a2zi5ibmyshxkb1zv1dgmnyn413m7ahgdx8mfg"))
|
||||
(patches (search-patches "patchutils-test-perms.patch"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs `(("perl" ,perl)))
|
||||
(arguments
|
||||
|
@ -61,10 +61,8 @@
|
|||
(modify-phases %standard-phases
|
||||
(add-before 'check 'patch-test-scripts
|
||||
(lambda _
|
||||
(let ((echo (which "echo")))
|
||||
(substitute*
|
||||
(find-files "tests" "^run-test$")
|
||||
(("/bin/echo") echo)))
|
||||
(substitute* (find-files "tests" "^run-test$")
|
||||
(("/bin/echo") (which "echo")))
|
||||
#t))
|
||||
(add-after 'install 'wrap-program
|
||||
;; Point installed scripts to the utilities they need.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue