This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 12d17eccd9 emacs-setup: Update repository.
12d17eccd9 is described below

commit 12d17eccd917ac701b6e16e5922056ab1d302148
Author: Anderson Torres <[email protected]>
AuthorDate: Sun Dec 7 17:09:44 2025 -0300

    emacs-setup: Update repository.
    
    The old repository and home-page no longer exists, since the project
    migrated to Codeberg.
    
    * gnu/packages/emacs-xyz.scm (emacs-setup)[source]: Switch to git-fetch.
    [arguments]<#:tests?>: Disable.
    [home-page]: Update.
    
    Change-Id: I0bb1c270151bec5e2a4a3942d73b7c9485555d93
    Modified-by: Cayetano Santos <[email protected]>
    Signed-off-by: Cayetano Santos <[email protected]>
---
 gnu/packages/emacs-xyz.scm | 50 +++++++++++++++++++++++++++-------------------
 1 file changed, 29 insertions(+), 21 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 61fdab476e..afa2ece5a7 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -45600,27 +45600,35 @@ buffer.")
     (license license:gpl3+)))
 
 (define-public emacs-setup
-  (package
-    (name "emacs-setup")
-    (version "1.5.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append "https://elpa.gnu.org/packages/setup-";
-                            version ".tar"))
-        (sha256
-          (base32 "184g3kd9caxyhwq41w94spkjs1j45vblg4sqfb5h5pqb5h9p95n5"))))
-    (build-system emacs-build-system)
-    (home-page "https://git.sr.ht/~pkal/setup";)
-    (synopsis "Helpful configuration macro")
-    (description
-"The @code{setup} macro simplifies repetitive configuration patterns, by
-providing context-sensitive local macros in @code{setup} bodies.  These macros
-can be mixed with regular elisp code without any issues, allowing for
-flexible and terse configurations.  The list of local macros can be
-extended by the user via @code{setup-define}.  A list of currently known
-local macros are documented in the docstring for @code{setup}.")
-    (license license:gpl3+)))
+  ;; No tagged releases; this commit reflects the version bump on the source
+  (let ((commit "5a69dab9bb79d8bebaaa9bc14795cbaafd1c2423"))
+    (package
+      (name "emacs-setup")
+      (version "1.5.0")
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+                (url "https://codeberg.org/pkal/setup.el";)
+                (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "1pa5k36pkgvp8als0ngxgy17x0gja9j26qydw3wwawkslssl5kbx"))))
+      (build-system emacs-build-system)
+      (arguments
+       (list
+        #:tests? #f))                   ; No tests.
+      (home-page "https://codeberg.org/pkal/setup.el";)
+      (synopsis "Helpful configuration macro")
+      (description
+       "The @code{setup} macro simplifies repetitive configuration patterns,
+by providing context-sensitive local macros in @code{setup} bodies.  These
+macros can be mixed with regular elisp code without any issues, allowing for
+flexible and terse configurations.  The list of local macros can be extended
+by the user via @code{setup-define}.  A list of currently known local macros
+are documented in the docstring for @code{setup}.")
+      (license license:gpl3+))))
 
 (define-public emacs-tomelr
   (package

Reply via email to