all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#75033] [PATCH] gnu: python-pypandoc: Fix build.
@ 2024-12-22 19:16 Aaron Covrig via Guix-patches via
  2024-12-22 19:21 ` Sharlatan Hellseher
  2024-12-23 13:30 ` [bug#75033] [PATCH v3] " Aaron Covrig via Guix-patches via
  0 siblings, 2 replies; 4+ messages in thread
From: Aaron Covrig via Guix-patches via @ 2024-12-22 19:16 UTC (permalink / raw)
  To: 75033; +Cc: Aaron Covrig, lars, marius, me, sharlatanus, tanguy, jgart

* gnu/packages/python-xyz.scm (python-pypandoc): Fix build
---
 gnu/packages/python-xyz.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 7cf44d6b6b..217cb93fe7 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -33714,7 +33714,7 @@ (define-public python-pypandoc
        (uri (pypi-uri "pypandoc" version))
        (sha256
         (base32 "15x161bxr7hky7rvq0jlgf1kxg6vdf069487casmpyxry7slak3b"))))
-    (build-system pyproject-build-system)
+    (build-system python-build-system)
     (arguments
      `(#:phases (modify-phases %standard-phases
                   (add-before 'check 'disable-tests

base-commit: 1ca065fe68d68a2fa9c3d747f23fd11c8ecfd85b
-- 
2.46.0





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#75033] [PATCH] gnu: python-pypandoc: Fix build.
  2024-12-22 19:16 [bug#75033] [PATCH] gnu: python-pypandoc: Fix build Aaron Covrig via Guix-patches via
@ 2024-12-22 19:21 ` Sharlatan Hellseher
  2024-12-23 13:30 ` [bug#75033] [PATCH v3] " Aaron Covrig via Guix-patches via
  1 sibling, 0 replies; 4+ messages in thread
From: Sharlatan Hellseher @ 2024-12-22 19:21 UTC (permalink / raw)
  To: Aaron Covrig; +Cc: tanguy, me, lars, jgart, marius, 75033

[-- Attachment #1: Type: text/plain, Size: 1079 bytes --]

Hi,

Please do not revert to the python build system, just add
missing inputs - python-setuptools and python-wheel.

Check similar cases on the master branch.

Thanks,
Oleg

On Sun, 22 Dec 2024, 19:18 Aaron Covrig, <aaron.covrig.us@ieee.org> wrote:

> * gnu/packages/python-xyz.scm (python-pypandoc): Fix build
> ---
>  gnu/packages/python-xyz.scm | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
> index 7cf44d6b6b..217cb93fe7 100644
> --- a/gnu/packages/python-xyz.scm
> +++ b/gnu/packages/python-xyz.scm
> @@ -33714,7 +33714,7 @@ (define-public python-pypandoc
>         (uri (pypi-uri "pypandoc" version))
>         (sha256
>          (base32 "15x161bxr7hky7rvq0jlgf1kxg6vdf069487casmpyxry7slak3b"))))
> -    (build-system pyproject-build-system)
> +    (build-system python-build-system)
>      (arguments
>       `(#:phases (modify-phases %standard-phases
>                    (add-before 'check 'disable-tests
>
> base-commit: 1ca065fe68d68a2fa9c3d747f23fd11c8ecfd85b
> --
> 2.46.0
>
>
>
>

[-- Attachment #2: Type: text/html, Size: 1568 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#75033] [PATCH v3] gnu: python-pypandoc: Fix build
  2024-12-22 19:16 [bug#75033] [PATCH] gnu: python-pypandoc: Fix build Aaron Covrig via Guix-patches via
  2024-12-22 19:21 ` Sharlatan Hellseher
@ 2024-12-23 13:30 ` Aaron Covrig via Guix-patches via
  2024-12-23 17:02   ` bug#75033: [PATCH] " jgart via Guix-patches via
  1 sibling, 1 reply; 4+ messages in thread
From: Aaron Covrig via Guix-patches via @ 2024-12-23 13:30 UTC (permalink / raw)
  To: 75033; +Cc: Aaron Covrig

* gnu/packages/python-xyz.scm (python-pypandoc): Fix build
---
Fixing extra space in previous commit (which adds pyproject required
dependencies and updates the project homepage to remove the redirection)

 gnu/packages/python-xyz.scm | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index fe2b4b6d56..0b978b1537 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -33730,12 +33730,15 @@ (define-public python-pypandoc
                          "skip_test_conversion_with_data_files")) #t)))))
     ;; Ideally, we would supersede texlive-xpatch with texlive-regexpatch once
     ;; the missing etoolbox.sty file is added
-    (native-inputs (list python-poetry-core
-                         (texlive-updmap.cfg (list texlive-xpatch texlive-lm
-                                                   texlive-xcolor))))
+    (native-inputs (list (texlive-updmap.cfg (list texlive-xpatch texlive-lm
+                                                   texlive-xcolor))
+                         ;; Dependencies required by pyproject-build-system
+                         python-poetry-core
+                         python-setuptools
+                         python-pip))
     (inputs (list pandoc python-pandocfilters))
     (propagated-inputs (list python-wheel))
-    (home-page "https://github.com/bebraw/pypandoc")
+    (home-page "https://github.com/JessicaTegner/pypandoc")
     (synopsis "Python wrapper for pandoc")
     (description "pypandoc is a thin Python wrapper around pandoc
 and pandoc-citeproc.")

base-commit: 30fdffc4b5605431b28a23b03330e850b2184a76
-- 
2.46.0





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#75033: [PATCH] gnu: python-pypandoc: Fix build.
  2024-12-23 13:30 ` [bug#75033] [PATCH v3] " Aaron Covrig via Guix-patches via
@ 2024-12-23 17:02   ` jgart via Guix-patches via
  0 siblings, 0 replies; 4+ messages in thread
From: jgart via Guix-patches via @ 2024-12-23 17:02 UTC (permalink / raw)
  To: 75033-done; +Cc: Aaron Covrig, Sharlatan Hellseher


Hi all,

I applied this.

Hi Aaron,

Yes, I think we are moving to the pyproject-build-system.

That documentation should probably be updated.

I'll try to take a look or feel free to update it and Cc the python
team for review.

-- 
all the best,
jgart

https://whereis.social/




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-12-23 17:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-22 19:16 [bug#75033] [PATCH] gnu: python-pypandoc: Fix build Aaron Covrig via Guix-patches via
2024-12-22 19:21 ` Sharlatan Hellseher
2024-12-23 13:30 ` [bug#75033] [PATCH v3] " Aaron Covrig via Guix-patches via
2024-12-23 17:02   ` bug#75033: [PATCH] " jgart via Guix-patches via

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.