From 76e0fd53cf3061b0f9cccd7bf92a0a81257185c2 Mon Sep 17 00:00:00 2001 From: "Jonathan D.A. Jewell" <6759885+hyperpolymath@users.noreply.github.com> Date: Wed, 29 Jul 2026 00:16:38 +0100 Subject: [PATCH] fix(guix): restore live-files identity in guix.scm guix.scm declared (name \"squisher-corpus\") - the squisher clobber, which copied one package definition into many repos carrying the wrong project's identity. Measured across all 418 estate repos: 45 affected. Fixes IDENTITY ONLY: name, synopsis, description, home-page, header comment. The (license ...) form is deliberately untouched - the licence drift (58 repos asserting PMPL) is a separate owner decision. Verified byte-identical. Co-Authored-By: Claude Opus 5 --- guix.scm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/guix.scm b/guix.scm index c6dd7be..3059a11 100644 --- a/guix.scm +++ b/guix.scm @@ -1,5 +1,5 @@ ; SPDX-License-Identifier: MPL-2.0 -;; guix.scm — GNU Guix package definition for squisher-corpus +;; guix.scm — GNU Guix package definition for live-files ;; Usage: guix shell -f guix.scm (use-modules (guix packages) @@ -7,12 +7,12 @@ (guix licenses)) (package - (name "squisher-corpus") + (name "live-files") (version "0.1.0") (source #f) (build-system gnu-build-system) - (synopsis "squisher-corpus") - (description "squisher-corpus — part of the hyperpolymath ecosystem.") - (home-page "https://github.com/hyperpolymath/squisher-corpus") + (synopsis "live-files") + (description "live-files — part of the hyperpolymath ecosystem.") + (home-page "https://github.com/hyperpolymath/live-files") (license ((@@ (guix licenses) license) "PMPL-1.0-or-later" "https://github.com/hyperpolymath/palimpsest-license")))