From e1df15794b8e72dc24a8855c696f17009d647fa8 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 6 Apr 2022 12:37:10 +0200 Subject: gnu: python-latexcodec: Update to 2.0.1. * gnu/packages/python-xyz.scm (python-latexcodec): Update to 2.0.1. [inputs]: Move python-six from here... [propagated-inputs]: ...to here. --- gnu/packages/python-xyz.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu/packages/python-xyz.scm') diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 30cab6a113..2e3f766113 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -21984,15 +21984,15 @@ working with iterables.") (define-public python-latexcodec (package (name "python-latexcodec") - (version "1.0.7") + (version "2.0.1") (source (origin (method url-fetch) (uri (pypi-uri "latexcodec" version)) (sha256 - (base32 "0wnp3yqcgx0rpy8dz51vh75lbp2qif67da19zi7m3ca98n887hgb")))) + (base32 "16pynfnn8y8xp55yp06i721fccv5dlx9ba6k5bzcwq9j6wf5b8ia")))) (build-system python-build-system) - (inputs + (propagated-inputs (list python-six)) (home-page "https://readthedocs.org/projects/latexcodec/") (synopsis "Work with LaTeX code in Python") -- cgit v1.2.3 a href='/guix/tree/gnu/packages/lean.scm?id=cc331ad7eb27d31c597cf1857a2f5fe4ced0f01d'>treecommitdiff
path: root/gnu/packages/lean.scm
uix-pack.sh, tests/guix-package-aliases.sh, tests/guix-package-net.sh, tests/guix-package.sh, tests/guix-refresh.sh, tests/guix-shell.sh, tests/guix-style.sh, tests/guix-system.sh: Replace uses of '! ...' with '... && false' or `test ! ...` as appropriate. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
AgeCommit message (Expand)Author
2020-11-26gnu: lean: Trim synopsis....* gnu/packages/lean.scm (lean)[synopsis]: Remove article & package name. Tobias Geerinckx-Rice
2020-11-26gnu: lean: Update to 3.23.0....* gnu/packages/lean.scm (lean): Update to 3.23.0. Tobias Geerinckx-Rice
Eric Bavier
2020-12-15serialization: 'restore-file' sets canonical timestamp and permissions....* guix/serialization.scm (restore-file): Set the permissions and mtime of FILE. * guix/nar.scm (finalize-store-file): Pass #:reset-timestamps? #f to 'register-items'. * tests/nar.scm (rm-rf): Add 'chmod' calls to ensure files are writable. ("write-file + restore-file with symlinks"): Ensure every file in OUTPUT passes 'canonical-file?'. * tests/guix-archive.sh: Run "chmod -R +w" before "rm -rf". Ludovic Courtès