diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2022-02-04 15:03:07 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-02-04 15:05:13 +0200 |
commit | 84ca88e7563b7034c253b82628344b538ec5a370 (patch) | |
tree | 5ca30eda2efdeeaa1e576275105ce26ddde25a60 /gnu/packages/version-control.scm | |
parent | 3d969e230dde14aac8368e517f95386cd7583464 (diff) | |
download | guix-84ca88e7563b7034c253b82628344b538ec5a370.tar.gz |
gnu: rcs: Update to 5.10.1.
* gnu/packages/version-control.scm (rcs): Update to 5.10.1. [source]: Remove patch. * gnu/packages/patches/rcs-5.10.0-no-stdin.patch: Remove file. * gnu/local.mk (dist_patch_DATA): Remove it.
Diffstat (limited to 'gnu/packages/version-control.scm')
-rw-r--r-- | gnu/packages/version-control.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index c29de9cf2a..aa7076b02d 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -2011,15 +2011,14 @@ projects, from individuals to large-scale enterprise operations.") (define-public rcs (package (name "rcs") - (version "5.10.0") + (version "5.10.1") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/rcs/rcs-" - version ".tar.xz")) + version ".tar.lz")) (sha256 (base32 - "1if5pa4iip2p70gljm54nggfdnsfjxa4cqz8fpj07lvsijary39s")) - (patches (search-patches "rcs-5.10.0-no-stdin.patch")))) + "1iac4d1dhsfy5zb0n3p605pihdq702v06r4g8vi8b2saf88gxpa3")))) (build-system gnu-build-system) (arguments `(#:phases (modify-phases %standard-phases @@ -2031,7 +2030,7 @@ projects, from individuals to large-scale enterprise operations.") (chmod "src/rcsfreeze" #o755) (install-file "src/rcsfreeze" bin) (install-file "man/rcsfreeze.1" man1))))))) - (native-inputs (list ed)) + (native-inputs (list ed lzip)) (home-page "https://www.gnu.org/software/rcs/") (synopsis "Per-file local revision control system") (description |