Archived
1
0
Fork 0

gnu: tealdeer: Update to 1.6.1.

* gnu/packages/rust-apps.scm (tealdeer): Update to 1.6.1.
[source]: Download using git-fetch.
[arguments]: Adjust 'install-completions phase to install zsh
completions also. Skip 2 more tests.
[cargo-inputs]: Add rust-anyhow-1, rust-clap-3, rust-yansi-0.5,
rust-zip-0.6.  Remove rust-ansi-term-0.12, rust-docopt-1, rust-flate-2,
rust-tar-0.4, rust-xdg-2.  Replace rust-env-logger-0.7 with 0.9,
rust-pager-0.15 with 0.16, rust-reqwest-0.10 with 0.11.
[cargo-development-inputs]: Remove rust-remove-dir-all-0.5.2. Replace
rust-assert-cmd-1 with 2, rust-predicates-1 with 2.
* gnu/packages/crates-io.scm (rust-remove-dir-all-0.5.2): Remove
variable.
This commit is contained in:
Efraim Flashner 2023-02-22 20:07:03 +02:00
parent dfa0832702
commit 2635c3527f
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351
2 changed files with 27 additions and 47 deletions

View file

@ -48530,29 +48530,6 @@ uses finite automata and guarantees linear time matching on all inputs.")
(license (list license:asl2.0 (license (list license:asl2.0
license:expat)))) license:expat))))
;; rust-remove-dir-all-0.5.2 is only needed for tealdeer at 1.4.1
;; Remove rust-remove-dir-all-0.5.2 when tealdeer is updated
(define-public rust-remove-dir-all-0.5.2
(package
(inherit rust-remove-dir-all-0.5)
(name "rust-remove-dir-all")
(version "0.5.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "remove_dir_all" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0bkrlyg26mgizpiy1yb2hhpgscxcag8r5fnckqsvk25608vzm0sa"))))
(arguments
`(#:tests? #f ; README.md is missing.
#:cargo-inputs
(("rust-winapi" ,rust-winapi-0.3))
#:cargo-development-inputs
(("rust-doc-comment" ,rust-doc-comment-0.3))))))
(define-public rust-rend-0.3 (define-public rust-rend-0.3
(package (package
(name "rust-rend") (name "rust-rend")

View file

@ -2125,16 +2125,18 @@ daemon which executes them.")
(define-public tealdeer (define-public tealdeer
(package (package
(name "tealdeer") (name "tealdeer")
(version "1.4.1") (version "1.6.1")
(source (source
(origin (origin
(method url-fetch) ;; Completions aren't in the release tarball.
(uri (crate-uri "tealdeer" version)) (method git-fetch)
(file-name (uri (git-reference
(string-append name "-" version ".tar.gz")) (url "https://github.com/dbrgn/tealdeer")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"0cwf46k2rszcpydrqajnm4dvhggr3ms7sjma0jx02ch4fjicxch7")))) "0ipd23b30pqvyh20mxfd13ps0rnvg7zfpysv7wambfbb92xdh36d"))))
(build-system cargo-build-system) (build-system cargo-build-system)
(arguments (arguments
`(#:phases `(#:phases
@ -2143,13 +2145,17 @@ daemon which executes them.")
(lambda* (#:key outputs #:allow-other-keys) (lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out")) (let* ((out (assoc-ref outputs "out"))
(bash (string-append out "/etc/bash_completion.d/")) (bash (string-append out "/etc/bash_completion.d/"))
(fish (string-append out "/share/fish/vendor_completions.d/"))) (fish (string-append out "/share/fish/vendor_completions.d/"))
(zsh (string-append out "/share/zsh/site-functions/")))
(mkdir-p bash) (mkdir-p bash)
(mkdir-p fish) (mkdir-p fish)
(copy-file "bash_tealdeer" (mkdir-p zsh)
(copy-file "completion/bash_tealdeer"
(string-append bash "tealdeer")) (string-append bash "tealdeer"))
(copy-file "fish_tealdeer" (copy-file "completion/fish_tealdeer"
(string-append fish "tealdeer.fish")))))) (string-append fish "tealdeer.fish"))
(copy-file "completion/zsh_tealdeer"
(string-append zsh "_tealdeer"))))))
#:install-source? #f #:install-source? #f
#:cargo-test-flags #:cargo-test-flags
'("--release" "--" '("--release" "--"
@ -2161,31 +2167,28 @@ daemon which executes them.")
"--skip=test_markdown_rendering" "--skip=test_markdown_rendering"
"--skip=test_spaces_find_command" "--skip=test_spaces_find_command"
"--skip=test_autoupdate_cache" "--skip=test_autoupdate_cache"
"--skip=test_update_cache") "--skip=test_update_cache"
"--skip=test_create_cache_directory_path")
#:cargo-inputs #:cargo-inputs
(("rust-ansi-term" ,rust-ansi-term-0.12) (("rust-anyhow" ,rust-anyhow-1)
("rust-app-dirs2" ,rust-app-dirs2-2) ("rust-app-dirs2" ,rust-app-dirs2-2)
("rust-atty" ,rust-atty-0.2) ("rust-atty" ,rust-atty-0.2)
("rust-docopt" ,rust-docopt-1) ("rust-clap" ,rust-clap-3)
("rust-env-logger" ,rust-env-logger-0.7) ("rust-env-logger" ,rust-env-logger-0.9)
("rust-flate2" ,rust-flate2-1)
("rust-log" ,rust-log-0.4) ("rust-log" ,rust-log-0.4)
("rust-pager" ,rust-pager-0.15) ("rust-pager" ,rust-pager-0.16)
("rust-reqwest" ,rust-reqwest-0.10) ("rust-reqwest" ,rust-reqwest-0.11)
("rust-serde" ,rust-serde-1) ("rust-serde" ,rust-serde-1)
("rust-serde-derive" ,rust-serde-derive-1) ("rust-serde-derive" ,rust-serde-derive-1)
("rust-tar" ,rust-tar-0.4)
("rust-toml" ,rust-toml-0.5) ("rust-toml" ,rust-toml-0.5)
("rust-walkdir" ,rust-walkdir-2) ("rust-walkdir" ,rust-walkdir-2)
("rust-xdg" ,rust-xdg-2)) ("rust-yansi" ,rust-yansi-0.5)
("rust-zip" ,rust-zip-0.6))
#:cargo-development-inputs #:cargo-development-inputs
(("rust-assert-cmd" ,rust-assert-cmd-1) (("rust-assert-cmd" ,rust-assert-cmd-2)
("rust-escargot" ,rust-escargot-0.5) ("rust-escargot" ,rust-escargot-0.5)
("rust-filetime" ,rust-filetime-0.2) ("rust-filetime" ,rust-filetime-0.2)
("rust-predicates" ,rust-predicates-1) ("rust-predicates" ,rust-predicates-2)
;; This earlier version is required to fix a bug.
;; Remove rust-remove-dir-all-0.5.2 when tealdeer gets upgraded
("rust-remove-dir-all" ,rust-remove-dir-all-0.5.2)
("rust-tempfile" ,rust-tempfile-3)))) ("rust-tempfile" ,rust-tempfile-3))))
(native-inputs (native-inputs
(list pkg-config)) (list pkg-config))