GNU bug report logs - #77676
[PATCH] gnu: emacs-jinx: Update to 2.1.

Previous Next

Package: guix-patches;

Reported by: Cayetano Santos <csantosb <at> inventati.org>

Date: Wed, 9 Apr 2025 09:45:01 UTC

Severity: normal

Tags: patch

Done: Christopher Baines <mail <at> cbaines.net>

To reply to this bug, email your comments to 77676 AT debbugs.gnu.org.
There is no need to reopen the bug first.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to andrew <at> trop.in, csantosb <at> inventati.org, divya <at> subvertising.org, hako <at> ultrarare.space, ian <at> retrospec.tv, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org:
bug#77676; Package guix-patches. (Wed, 09 Apr 2025 09:45:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Cayetano Santos <csantosb <at> inventati.org>:
New bug report received and forwarded. Copy sent to andrew <at> trop.in, csantosb <at> inventati.org, divya <at> subvertising.org, hako <at> ultrarare.space, ian <at> retrospec.tv, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org. (Wed, 09 Apr 2025 09:45:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Cayetano Santos <csantosb <at> inventati.org>
To: guix-patches <at> gnu.org
Cc: Cayetano Santos <csantosb <at> inventati.org>
Subject: [PATCH] gnu: emacs-jinx: Update to 2.1.
Date: Wed,  9 Apr 2025 11:44:03 +0200
* gnu/packages/emacs-xyz.scm (emacs-jinx): Update to 2.1.

[arguments]<#:tests>: Disable.
[arguments]<#:phases>: Remove install-info, not needed.
[native-inputs]: Remove redundant inputs.

Change-Id: I98cd4dae31296b5c5805b65c35bee362d0678ee5
---
 gnu/packages/emacs-xyz.scm | 14 +++++---------
 1 file changed, 5 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 486cb24321..ee51d23ea5 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -12548,7 +12548,7 @@ (define-public emacs-jinja2-mode
 (define-public emacs-jinx
   (package
     (name "emacs-jinx")
-    (version "1.12")
+    (version "2.1")
     (source
      (origin
        (method git-fetch)
@@ -12558,10 +12558,11 @@ (define-public emacs-jinx
          (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1cxnxwbxfq29793r6f8pvvw2mb9mj7pa7g7z5k46abplkq65ds3g"))))
+        (base32 "1kfxx9657zn4sy463gxwsqqh4bcdxxaf3x7jkgasl4v18mrvid1i"))))
     (build-system emacs-build-system)
     (arguments
      (list
+      #:tests? #f ; no tests
       #:phases
       #~(modify-phases %standard-phases
           (add-after 'expand-load-path 'build-jinx-mod
@@ -12579,7 +12580,6 @@ (define-public emacs-jinx
           (add-after 'build-jinx-mod 'patch-path-to-jinx-mod
             (lambda _
               (let ((file "jinx.el"))
-                (make-file-writable file)
                 (emacs-substitute-sexps file
                   ("\"Compile and load dynamic module.\""
                    `(module-load
@@ -12588,14 +12588,10 @@ (define-public emacs-jinx
           (add-after 'install 'install-jinx-mod
             (lambda _
               (install-file "jinx-mod.so"
-                            (string-append #$output "/lib/emacs"))))
-          (add-after 'install 'install-info
-            (lambda _
-              (install-file "jinx.info"
-                            (string-append #$output "/share/info")))))))
+                            (string-append #$output "/lib/emacs")))))))
     (inputs (list enchant))
     (propagated-inputs (list emacs-compat))
-    (native-inputs (list emacs-compat enchant pkg-config texinfo))
+    (native-inputs (list pkg-config texinfo))
     (home-page "https://github.com/minad/jinx")
     (synopsis "Emacs spell checker based on Enchant library")
     (description "Jinx is a just-in-time spell-checker for Emacs

base-commit: 90357c6090de8c6befec232996dbc7415112a081
-- 
2.49.0





Information forwarded to guix-patches <at> gnu.org:
bug#77676; Package guix-patches. (Fri, 11 Apr 2025 11:39:02 GMT) Full text and rfc822 format available.

Message #8 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Christopher Baines <mail <at> cbaines.net>
To: Cayetano Santos via Guix-patches via <guix-patches <at> gnu.org>
Cc: Ian Eure <ian <at> retrospec.tv>,
 Katherine Cox-Buday <cox.katherine.e+guix <at> gmail.com>,
 Cayetano Santos <csantosb <at> inventati.org>, Andrew Tropin <andrew <at> trop.in>,
 Hilton Chain <hako <at> ultrarare.space>, 77676-done <at> debbugs.gnu.org,
 Divya Ranjan Pattanaik <divya <at> subvertising.org>,
 Liliana Marie Prikler <liliana.prikler <at> gmail.com>
Subject: Re: [bug#77676] [PATCH] gnu: emacs-jinx: Update to 2.1.
Date: Fri, 11 Apr 2025 12:38:18 +0100
[Message part 1 (text/plain, inline)]
Cayetano Santos via Guix-patches via <guix-patches <at> gnu.org> writes:

> * gnu/packages/emacs-xyz.scm (emacs-jinx): Update to 2.1.
>
> [arguments]<#:tests>: Disable.
> [arguments]<#:phases>: Remove install-info, not needed.
> [native-inputs]: Remove redundant inputs.
>
> Change-Id: I98cd4dae31296b5c5805b65c35bee362d0678ee5
> ---
>  gnu/packages/emacs-xyz.scm | 14 +++++---------
>  1 file changed, 5 insertions(+), 9 deletions(-)

Thanks for the patch, I've pushed this to master as
a775db24601f656c2b5e68d1db444755bfc12ebc.

Chris
[signature.asc (application/pgp-signature, inline)]

Reply sent to Christopher Baines <mail <at> cbaines.net>:
You have taken responsibility. (Fri, 11 Apr 2025 11:39:02 GMT) Full text and rfc822 format available.

Notification sent to Cayetano Santos <csantosb <at> inventati.org>:
bug acknowledged by developer. (Fri, 11 Apr 2025 11:39:03 GMT) Full text and rfc822 format available.

This bug report was last modified 1 day ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.