Archived
1
0
Fork 0

gnu: universal-ctags: Update to 5.9.20220605.0.

* gnu/packages/code.scm (universal-ctags): Update to 5.9.20220605.0.
[source]: Adjust snippet to preserve newline.
[inputs]: Add pcre2.
This commit is contained in:
Efraim Flashner 2022-06-09 20:39:13 +03:00
parent e3de5d6701
commit e1383bfa6a
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -390,7 +390,7 @@ features that are not supported by the standard @code{stdio} implementation.")
(define-public universal-ctags (define-public universal-ctags
(package (package
(name "universal-ctags") (name "universal-ctags")
(version "5.9.20210509.0") (version "5.9.20220605.0")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
@ -400,14 +400,14 @@ features that are not supported by the standard @code{stdio} implementation.")
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"1sq94bnbzr40zwihfnsna759bbak0lw27j0yn12iwpg4xgb4hhwp")) "0mri7m2qsw5pyq1ajapawvxn2cdrzg1vi4w2bdq0z4ws4q03lj7k"))
(modules '((guix build utils))) (modules '((guix build utils)))
(snippet (snippet
'(begin '(begin
;; Remove the bundled PackCC and associated build rules. ;; Remove the bundled PackCC and associated build rules.
(substitute* "Makefile.am" (substitute* "Makefile.am"
(("^PACKCC = .*") (("^PACKCC = .*")
"PACKCC = packcc") "PACKCC = packcc\n")
(("\\$\\(PACKCC_FILES\\)") (("\\$\\(PACKCC_FILES\\)")
"") "")
(("\\$\\(PEG_SRCS\\) \\$\\(PEG_HEADS\\): \\$\\(PACKCC\\)") (("\\$\\(PEG_SRCS\\) \\$\\(PEG_HEADS\\): \\$\\(PACKCC\\)")
@ -437,7 +437,7 @@ features that are not supported by the standard @code{stdio} implementation.")
(native-inputs (native-inputs
(list autoconf automake packcc perl pkg-config)) (list autoconf automake packcc perl pkg-config))
(inputs (inputs
(list jansson libseccomp libxml2 libyaml)) (list jansson libseccomp libxml2 libyaml pcre2))
(home-page "https://ctags.io/") (home-page "https://ctags.io/")
(synopsis "Generate tag files for source code") (synopsis "Generate tag files for source code")
(description (description