GNU bug report logs - #73791
[PATCH] gnu: latex2html: Update to v2024

Previous Next

Package: guix-patches;

Reported by: Aaron Covrig <aaron.covrig.us <at> ieee.org>

Date: Sun, 13 Oct 2024 13:54:01 UTC

Severity: normal

Tags: patch

Done: Zheng Junjie <zhengjunjie <at> iscas.ac.cn>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 73791 in the body.
You can then email your comments to 73791 AT debbugs.gnu.org in the normal way.

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

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


Report forwarded to guix-patches <at> gnu.org:
bug#73791; Package guix-patches. (Sun, 13 Oct 2024 13:54:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Aaron Covrig <aaron.covrig.us <at> ieee.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sun, 13 Oct 2024 13:54:02 GMT) Full text and rfc822 format available.

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

From: Aaron Covrig <aaron.covrig.us <at> ieee.org>
To: guix-patches <at> gnu.org
Cc: Aaron Covrig <aaron.covrig.us <at> ieee.org>
Subject: [PATCH] gnu: latex2html: Update to v2024
Date: Sun, 13 Oct 2024 09:52:27 -0400
* gnu/packages/documentation.scm (latex2html): Update to v2024
---
 gnu/packages/documentation.scm | 48 ++++++++++++++++------------------
 1 file changed, 23 insertions(+), 25 deletions(-)

diff --git a/gnu/packages/documentation.scm b/gnu/packages/documentation.scm
index 47cdc9668b..f0e37561f7 100644
--- a/gnu/packages/documentation.scm
+++ b/gnu/packages/documentation.scm
@@ -72,38 +72,36 @@ (define-module (gnu packages documentation)
 (define-public latex2html
   (package
     (name "latex2html")
-    (version "2022.2")
+    (version "2024")
     (source
      (origin
        (method git-fetch)
-       (uri
-        (git-reference
-         (url "https://github.com/latex2html/latex2html")
-         (commit (string-append "v" version))))
+       (uri (git-reference
+             (url "https://github.com/latex2html/latex2html")
+             (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1z71anjzxy5jsdlaqba4w9spncc6iycldarnr2z1dq8xmk6yhpjn"))))
+        (base32 "1h5ya6pvh87y7xf5c05plbvm35qnn5qd0fllnhp5kym43zmr4prh"))))
     (build-system gnu-build-system)
     (arguments
-     (list #:phases
-           #~(modify-phases %standard-phases
-               (add-after 'unpack 'patch-configure
-                 (lambda* (#:key outputs #:allow-other-keys)
-                   (substitute* "configure"
-                     (("/usr/local")
-                      #$output)
-                     (("\\$\\{CONFIG_SHELL-/bin/sh\\}")
-                      (which "bash")))))
-               (replace 'configure
-                 (lambda _
-                   (invoke "./configure")))
-               (add-after 'configure 'patch-cfgcache
-                 (lambda* (#:key outputs #:allow-other-keys)
-                   (substitute* "cfgcache.pm"
-                     (("/usr/local")
-                      #$output)))))))
-    (inputs
-     (list perl))
+     (list
+      #:phases #~(modify-phases %standard-phases
+                   (add-after 'unpack 'patch-configure
+                     (lambda* (#:key outputs #:allow-other-keys)
+                       (substitute* "configure"
+                         (("/usr/local")
+                          #$output)
+                         (("\\$\\{CONFIG_SHELL-/bin/sh\\}")
+                          (which "bash")))))
+                   (replace 'configure
+                     (lambda _
+                       (invoke "./configure")))
+                   (add-after 'configure 'patch-cfgcache
+                     (lambda* (#:key outputs #:allow-other-keys)
+                       (substitute* "cfgcache.pm"
+                         (("/usr/local")
+                          #$output)))))))
+    (inputs (list perl))
     (synopsis "LaTeX documents to HTML")
     (description "LaTeX2HTML is a utility that converts LaTeX documents to web
 pages in HTML.")

base-commit: e032a0f38ff3394816fdc29554933ce77c545eff
-- 
2.46.0





Information forwarded to guix-patches <at> gnu.org:
bug#73791; Package guix-patches. (Mon, 14 Oct 2024 14:53:01 GMT) Full text and rfc822 format available.

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

From: Zheng Junjie <zhengjunjie <at> iscas.ac.cn>
To: Aaron Covrig via Guix-patches via <guix-patches <at> gnu.org>
Cc: Aaron Covrig <aaron.covrig.us <at> ieee.org>, 73791-done <at> debbugs.gnu.org
Subject: Re: [bug#73791] [PATCH] gnu: latex2html: Update to v2024
Date: Mon, 14 Oct 2024 22:52:08 +0800
[Message part 1 (text/plain, inline)]
Aaron Covrig via Guix-patches via <guix-patches <at> gnu.org> writes:

> * gnu/packages/documentation.scm (latex2html): Update to v2024
> ---
>  gnu/packages/documentation.scm | 48 ++++++++++++++++------------------
>  1 file changed, 23 insertions(+), 25 deletions(-)
>
> diff --git a/gnu/packages/documentation.scm b/gnu/packages/documentation.scm
> index 47cdc9668b..f0e37561f7 100644
> --- a/gnu/packages/documentation.scm
> +++ b/gnu/packages/documentation.scm
> @@ -72,38 +72,36 @@ (define-module (gnu packages documentation)
>  (define-public latex2html
>    (package
>      (name "latex2html")
> -    (version "2022.2")
> +    (version "2024")
>      (source
>       (origin
>         (method git-fetch)
> -       (uri
> -        (git-reference
> -         (url "https://github.com/latex2html/latex2html")
> -         (commit (string-append "v" version))))
> +       (uri (git-reference
> +             (url "https://github.com/latex2html/latex2html")
> +             (commit (string-append "v" version))))
>         (file-name (git-file-name name version))
>         (sha256
> -        (base32 "1z71anjzxy5jsdlaqba4w9spncc6iycldarnr2z1dq8xmk6yhpjn"))))
> +        (base32 "1h5ya6pvh87y7xf5c05plbvm35qnn5qd0fllnhp5kym43zmr4prh"))))
>      (build-system gnu-build-system)
>      (arguments
> -     (list #:phases
> -           #~(modify-phases %standard-phases
> -               (add-after 'unpack 'patch-configure
> -                 (lambda* (#:key outputs #:allow-other-keys)
> -                   (substitute* "configure"
> -                     (("/usr/local")
> -                      #$output)
> -                     (("\\$\\{CONFIG_SHELL-/bin/sh\\}")
> -                      (which "bash")))))
> -               (replace 'configure
> -                 (lambda _
> -                   (invoke "./configure")))
> -               (add-after 'configure 'patch-cfgcache
> -                 (lambda* (#:key outputs #:allow-other-keys)
> -                   (substitute* "cfgcache.pm"
> -                     (("/usr/local")
> -                      #$output)))))))
> -    (inputs
> -     (list perl))
> +     (list
> +      #:phases #~(modify-phases %standard-phases
> +                   (add-after 'unpack 'patch-configure
> +                     (lambda* (#:key outputs #:allow-other-keys)
> +                       (substitute* "configure"
> +                         (("/usr/local")
> +                          #$output)
> +                         (("\\$\\{CONFIG_SHELL-/bin/sh\\}")
> +                          (which "bash")))))
> +                   (replace 'configure
> +                     (lambda _
> +                       (invoke "./configure")))
> +                   (add-after 'configure 'patch-cfgcache
> +                     (lambda* (#:key outputs #:allow-other-keys)
> +                       (substitute* "cfgcache.pm"
> +                         (("/usr/local")
> +                          #$output)))))))
> +    (inputs (list perl))
>      (synopsis "LaTeX documents to HTML")
>      (description "LaTeX2HTML is a utility that converts LaTeX documents to web
>  pages in HTML.")
>
> base-commit: e032a0f38ff3394816fdc29554933ce77c545eff

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

Reply sent to Zheng Junjie <zhengjunjie <at> iscas.ac.cn>:
You have taken responsibility. (Mon, 14 Oct 2024 14:53:02 GMT) Full text and rfc822 format available.

Notification sent to Aaron Covrig <aaron.covrig.us <at> ieee.org>:
bug acknowledged by developer. (Mon, 14 Oct 2024 14:53:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 12 Nov 2024 12:24:18 GMT) Full text and rfc822 format available.

This bug report was last modified 215 days ago.

Previous Next


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