GNU bug report logs - #63301
[PATCH] gnu: python-sphinx-4: Fix sanity-check failure

Previous Next

Package: guix-patches;

Reported by: Zongyuan Li <zongyuan.li <at> c0x0o.me>

Date: Fri, 5 May 2023 11:16:02 UTC

Severity: normal

Tags: patch

Done: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>

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 63301 in the body.
You can then email your comments to 63301 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#63301; Package guix-patches. (Fri, 05 May 2023 11:16:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Zongyuan Li <zongyuan.li <at> c0x0o.me>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 05 May 2023 11:16:02 GMT) Full text and rfc822 format available.

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

From: Zongyuan Li <zongyuan.li <at> c0x0o.me>
To: guix-patches <at> gnu.org
Cc: Zongyuan Li <zongyuan.li <at> c0x0o.me>
Subject: [PATCH] gnu: python-sphinx-4: Fix sanity-check failure
Date: Fri, 05 May 2023 11:15:03 +0000
* gnu/packages/sphinx.scm (python-sphinx-4)[propagated-inputs]:
  Downgrades python-docutils to v0.15
---
 gnu/packages/sphinx.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index ff124717e8..d0170a0bef 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -155,7 +155,9 @@ (define-public python-sphinx-4
               (uri (pypi-uri "Sphinx" version))
               (sha256
                (base32
-                "1rp28jryxwy24y8vpacclqihbizyi6b1s6id86pibvm46ybcmy3v"))))))
+                "1rp28jryxwy24y8vpacclqihbizyi6b1s6id86pibvm46ybcmy3v"))))
+    (inputs (modify-inputs (package-propagated-inputs python-sphinx)
+              (replace "python-docutils" python-docutils-0.15)))))
 
 (define-public python-sphinxcontrib-apidoc
   (package
-- 
2.39.2 (Apple Git-143)






Information forwarded to guix-patches <at> gnu.org:
bug#63301; Package guix-patches. (Sat, 06 May 2023 03:24:01 GMT) Full text and rfc822 format available.

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

From: Zongyuan Li <zongyuan.li <at> c0x0o.me>
To: 63301 <at> debbugs.gnu.org
Cc: Zongyuan Li <zongyuan.li <at> c0x0o.me>
Subject: [PATCH v2] gnu: python-sphinx-4: Fix sanity-check failure
Date: Sat, 06 May 2023 03:23:05 +0000
* gnu/packages/sphinx.scm (python-sphinx-4)[propagated-inputs]:
  Downgrades python-docutils to v0.15

Changes since v1:
* Use 'propagated-inputs' rather than 'inputs'
---
 gnu/packages/sphinx.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index ff124717e8..c0bf088daa 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -155,7 +155,9 @@ (define-public python-sphinx-4
               (uri (pypi-uri "Sphinx" version))
               (sha256
                (base32
-                "1rp28jryxwy24y8vpacclqihbizyi6b1s6id86pibvm46ybcmy3v"))))))
+                "1rp28jryxwy24y8vpacclqihbizyi6b1s6id86pibvm46ybcmy3v"))))
+    (propagated-inputs (modify-inputs (package-propagated-inputs python-sphinx)
+                         (replace "python-docutils" python-docutils-0.15)))))
 
 (define-public python-sphinxcontrib-apidoc
   (package
-- 
2.39.2 (Apple Git-143)






Reply sent to Maxim Cournoyer <maxim.cournoyer <at> gmail.com>:
You have taken responsibility. (Sun, 07 May 2023 15:42:02 GMT) Full text and rfc822 format available.

Notification sent to Zongyuan Li <zongyuan.li <at> c0x0o.me>:
bug acknowledged by developer. (Sun, 07 May 2023 15:42:02 GMT) Full text and rfc822 format available.

Message #13 received at 63301-done <at> debbugs.gnu.org (full text, mbox):

From: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
To: Zongyuan Li <zongyuan.li <at> c0x0o.me>
Cc: 63301-done <at> debbugs.gnu.org
Subject: Re: bug#63301: [PATCH] gnu: python-sphinx-4: Fix sanity-check failure
Date: Sun, 07 May 2023 11:41:41 -0400
Hi,

Zongyuan Li <zongyuan.li <at> c0x0o.me> writes:

> * gnu/packages/sphinx.scm (python-sphinx-4)[propagated-inputs]:
>   Downgrades python-docutils to v0.15
>
> Changes since v1:
> * Use 'propagated-inputs' rather than 'inputs'
> ---
>  gnu/packages/sphinx.scm | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
> index ff124717e8..c0bf088daa 100644
> --- a/gnu/packages/sphinx.scm
> +++ b/gnu/packages/sphinx.scm
> @@ -155,7 +155,9 @@ (define-public python-sphinx-4
>                (uri (pypi-uri "Sphinx" version))
>                (sha256
>                 (base32
> -                "1rp28jryxwy24y8vpacclqihbizyi6b1s6id86pibvm46ybcmy3v"))))))
> +                "1rp28jryxwy24y8vpacclqihbizyi6b1s6id86pibvm46ybcmy3v"))))
> +    (propagated-inputs (modify-inputs (package-propagated-inputs python-sphinx)
> +                         (replace "python-docutils" python-docutils-0.15)))))
>  

Installed, thank you!

-- 
Thanks,
Maxim




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Mon, 05 Jun 2023 11:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 324 days ago.

Previous Next


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