summaryrefslogtreecommitdiff
path: root/gnu/packages/code.scm
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2021-12-05 19:17:41 +0100
committerRicardo Wurmus <rekado@elephly.net>2021-12-05 19:17:41 +0100
commit9bc0f45df5d6aed217020b1183dca54989844fb0 (patch)
treed927e89949ff7f65b5059bc94273c53fd43d0763 /gnu/packages/code.scm
parent6db3c536e89deb8a204e756f427614925a7d2582 (diff)
parent10554e0a57feeea470127a1d0441957d1776b0bd (diff)
Merge remote-tracking branch 'origin/master' into core-updates-frozen
Diffstat (limited to 'gnu/packages/code.scm')
-rw-r--r--gnu/packages/code.scm25
1 files changed, 13 insertions, 12 deletions
diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm
index cdd9e3306b1..37203836647 100644
--- a/gnu/packages/code.scm
+++ b/gnu/packages/code.scm
@@ -68,6 +68,7 @@
68 #:use-module (gnu packages serialization) 68 #:use-module (gnu packages serialization)
69 #:use-module (gnu packages sqlite) 69 #:use-module (gnu packages sqlite)
70 #:use-module (gnu packages texinfo) 70 #:use-module (gnu packages texinfo)
71 #:use-module (gnu packages tls)
71 #:use-module (gnu packages web) 72 #:use-module (gnu packages web)
72 #:use-module (gnu packages xml)) 73 #:use-module (gnu packages xml))
73 74
@@ -575,31 +576,32 @@ results and determine build stability.")
575(define-public kcov 576(define-public kcov
576 (package 577 (package
577 (name "kcov") 578 (name "kcov")
578 (version "38") 579 (version "39")
579 (source (origin 580 (source (origin
580 (method git-fetch) 581 (method git-fetch)
581 (uri (git-reference 582 (uri (git-reference
582 (url "https://github.com/SimonKagstrom/kcov") 583 (url "https://github.com/SimonKagstrom/kcov")
583 (commit version))) 584 (commit (string-append "v" version))))
584 (file-name (git-file-name name version)) 585 (file-name (git-file-name name version))
585 (sha256 586 (sha256
586 (base32 587 (base32
587 "0zqg21xwivi16csl6a5wby6679ny01bjaw4am3y4qcgjdyihifp8")))) 588 "09wf1k4dlpdhqjjgq2bibmgy8i3z32wf0zxhd2px2dvg92m4zwqr"))))
588 (build-system cmake-build-system) 589 (build-system cmake-build-system)
589 (arguments 590 (arguments
590 `(#:tests? #f ;no test target 591 `(#:tests? #f ; no test target
591 #:phases 592 #:phases
592 (modify-phases %standard-phases 593 (modify-phases %standard-phases
593 (add-after 'unpack 'fix-/bin/bash-references 594 (add-after 'unpack 'fix-/bin/bash-references
594 (lambda _ 595 (lambda* (#:key inputs #:allow-other-keys)
596 (let ((bash (assoc-ref inputs "bash")))
595 (substitute* (find-files "src" ".*\\.cc?$") 597 (substitute* (find-files "src" ".*\\.cc?$")
596 (("/bin/bash") (which "bash")) 598 (("/bin/(bash|sh)" shell)
597 (("/bin/sh") (which "sh"))) 599 (string-append (assoc-ref inputs "bash") shell)))))))))
598 #t)))))
599 (inputs 600 (inputs
600 `(("curl" ,curl) 601 `(("curl" ,curl)
601 ("elfutils" ,elfutils) 602 ("elfutils" ,elfutils)
602 ("libelf" ,libelf) 603 ("libelf" ,libelf)
604 ("openssl" ,openssl)
603 ("zlib" ,zlib))) 605 ("zlib" ,zlib)))
604 (native-inputs 606 (native-inputs
605 `(("python" ,python))) 607 `(("python" ,python)))
@@ -748,7 +750,7 @@ independent targets.")
748(define-public uncrustify 750(define-public uncrustify
749 (package 751 (package
750 (name "uncrustify") 752 (name "uncrustify")
751 (version "0.69.0") 753 (version "0.74.0")
752 (source (origin 754 (source (origin
753 (method git-fetch) 755 (method git-fetch)
754 (uri (git-reference 756 (uri (git-reference
@@ -757,11 +759,10 @@ independent targets.")
757 (file-name (git-file-name name version)) 759 (file-name (git-file-name name version))
758 (sha256 760 (sha256
759 (base32 761 (base32
760 "0sqrg13kp8fwymq40976bq380bzw40g4ss7ihlbq45d0f90ifa1k")))) 762 "0v48vhmzxjzysbf0vhxzayl2pkassvbabvwg84xd6b8n5i74ijxd"))))
761 (build-system cmake-build-system) 763 (build-system cmake-build-system)
762 (native-inputs 764 (native-inputs
763 `(("unzip" ,unzip) 765 `(("python" ,python-wrapper)))
764 ("python" ,python-wrapper)))
765 (arguments 766 (arguments
766 `(#:phases 767 `(#:phases
767 (modify-phases %standard-phases 768 (modify-phases %standard-phases