diff options
author | Ludovic Courtès <ludo@gnu.org> | 2023-12-20 16:55:09 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:44:13 +0200 |
commit | 9ebaf6518a4f4fb556adec05a4ac6c1c92f6076d (patch) | |
tree | a33906008f5c65cb2452c60b06c25a11cefbbe70 /gnu | |
parent | 671db7471e9430fcb5f17217fe85d0aa708854c4 (diff) | |
download | guix-9ebaf6518a4f4fb556adec05a4ac6c1c92f6076d.tar.gz guix-9ebaf6518a4f4fb556adec05a4ac6c1c92f6076d.zip |
gnu: cups-minimal: Ungraft.
* gnu/packages/cups.scm (cups-minimal): Update to 2.4.7.
[replacement]: Remove.
(cups-minimal/fixed): Remove.
Change-Id: I6359cec26fc5c1fa134c61c76f2fe8581d646ad6
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cups.scm | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/gnu/packages/cups.scm b/gnu/packages/cups.scm index 2447475cb6..12d9f9102c 100644 --- a/gnu/packages/cups.scm +++ b/gnu/packages/cups.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015, 2019, 2021 Ricardo Wurmus <rekado@elephly.net> -;;; Copyright © 2015, 2016, 2017, 2019, 2021 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2015, 2016, 2017, 2019, 2021, 2023 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2015-2018, 2023 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016 Danny Milosavljevic <dannym@scratchpost.org> ;;; Copyright © 2017 Leo Famulari <leo@famulari.name> @@ -255,8 +255,7 @@ filters for the PDF-centric printing workflow introduced by OpenPrinting.") (define-public cups-minimal (package (name "cups-minimal") - (version "2.4.2") - (replacement cups-minimal/fixed) + (version "2.4.7") (source (origin (method git-fetch) @@ -266,7 +265,7 @@ filters for the PDF-centric printing workflow introduced by OpenPrinting.") ;; Avoid NAME confusion: these are the complete CUPS sources. (file-name (git-file-name "cups" version)) (sha256 - (base32 "01nn6ij7kpf2vzikinn7mk4crjx4ab8m4pplvsccc8gg30a2q9y9")))) + (base32 "0cj3gs7ki9v0drj19l326s8f1kxrpq7jkzrdfdk7ykrlk7sj645f")))) (build-system gnu-build-system) (arguments (list #:configure-flags @@ -346,20 +345,6 @@ applications''. These must be installed separately.") ;; CUPS is Apache 2.0 with exceptions, see the NOTICE file. (license license:asl2.0))) -(define cups-minimal/fixed - (package - (inherit cups-minimal) - (version "2.4.9") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/OpenPrinting/cups") - (commit (string-append "v" version)))) - (file-name (git-file-name "cups" version)) - (sha256 - (base32 "08wjd1flyaslhnwvxl39403qi3g675rk532ysiyk6cda4r8ks1g1")))))) - (define-public cups (package/inherit cups-minimal (name "cups") |