From e5a5b1d66aa3a6d54b28c91f83ea2986ac84fcc6 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 19 Oct 2025 11:43:32 +0100 Subject: [PATCH] gnu: sicp: Deprecate in favor of book-sicp. * gnu/packages/books.scm (book-sicp): New variable. (sicp): Deprecate in favor of book-sicp. Change-Id: I8484424c324fdf82a22adc0c6f01d7b376c2a309 --- gnu/packages/books.scm | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/gnu/packages/books.scm b/gnu/packages/books.scm index 4365787746df907baa5faa54b29badaa3acd3b17..75ef1620cf01402fda78e1aa245b3262cee01b44 100644 --- a/gnu/packages/books.scm +++ b/gnu/packages/books.scm @@ -11,6 +11,7 @@ ;;; Copyright © 2023 宋文武 ;;; Copyright © 2023-2025 Artyom V. Poptsov ;;; Copyright © 2025 Gabriel Santos +;;; Copyright © 2025 Sharlatan Hellseher ;;; ;;; This file is part of GNU Guix. ;;; @@ -32,6 +33,7 @@ #:use-module (guix build-system cmake) #:use-module (guix build-system copy) #:use-module (guix build-system gnu) + #:use-module (guix deprecation) #:use-module (guix download) #:use-module (guix gexp) #:use-module (guix git-download) @@ -113,11 +115,11 @@ biography, where the reader has the benefit of both the biographer's original words and the subject's response.") (license license:fdl1.3+))) -(define-public sicp +(define-public book-sicp (let ((commit "bda03f79d6e2e8899ac2b5ca6a3732210e290a79") (revision "3")) (package - (name "sicp") + (name "book-sicp") (version (git-version "20180718" revision commit)) (source (origin (method git-fetch) @@ -156,6 +158,9 @@ core computer science concepts such as abstraction in programming, metalinguistic abstraction, recursion, interpreters, and modular programming.") (license license:cc-by-sa4.0)))) +;; It may be removed after 2025-12-19. +(define-deprecated/public-alias sicp book-sicp) + (define-public book-sparc (package (name "book-sparc")