GNU bug report logs - #74899
[PATCH 0/2] Fix some failing Python pacakge builds

Previous Next

Package: guix-patches;

Reported by: Juliana Sims <juli <at> incana.org>

Date: Sun, 15 Dec 2024 19:49:02 UTC

Severity: normal

Tags: patch

Done: Sharlatan Hellseher <sharlatanus <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 74899 in the body.
You can then email your comments to 74899 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 lars <at> 6xq.net, marius <at> gnu.org, me <at> bonfacemunyoki.com, sharlatanus <at> gmail.com, tanguy <at> bioneland.org, jgart <at> dismail.de, guix-patches <at> gnu.org:
bug#74899; Package guix-patches. (Sun, 15 Dec 2024 19:49:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Juliana Sims <juli <at> incana.org>:
New bug report received and forwarded. Copy sent to lars <at> 6xq.net, marius <at> gnu.org, me <at> bonfacemunyoki.com, sharlatanus <at> gmail.com, tanguy <at> bioneland.org, jgart <at> dismail.de, guix-patches <at> gnu.org. (Sun, 15 Dec 2024 19:49:02 GMT) Full text and rfc822 format available.

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

From: Juliana Sims <juli <at> incana.org>
To: guix-patches <at> gnu.org
Cc: Juliana Sims <juli <at> incana.org>
Subject: [PATCH 0/2] Fix some failing Python pacakge builds
Date: Sun, 15 Dec 2024 14:47:18 -0500
Hello,

After the python-team merge, some package builds failed.  It seems they need
python-setuptools and python-wheel as native inputs.  These packages were
failing to build and, by extension, causing komikku, caja-extensions, poezio,
and gajim, at least, to fail to build.  These patches fix both.

Thanks,
Juli

Juliana Sims (2):
  gnu: python-emoji: Add missing native inputs.
  gnu: python-colorthief: Add missing native inputs.

 gnu/packages/python-xyz.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)


base-commit: de4ab8c7705a2ba7f84c3d0c8577ed9cc7ccf614
-- 
2.46.0





Information forwarded to lars <at> 6xq.net, marius <at> gnu.org, me <at> bonfacemunyoki.com, sharlatanus <at> gmail.com, tanguy <at> bioneland.org, jgart <at> dismail.de, guix-patches <at> gnu.org:
bug#74899; Package guix-patches. (Sun, 15 Dec 2024 19:51:01 GMT) Full text and rfc822 format available.

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

From: Juliana Sims <juli <at> incana.org>
To: 74899 <at> debbugs.gnu.org
Cc: Juliana Sims <juli <at> incana.org>
Subject: [PATCH 1/2] gnu: python-emoji: Add missing native inputs.
Date: Sun, 15 Dec 2024 14:49:39 -0500
* gnu/packages/python-xyz (python-emoji)[native-inputs]: Add
python-setuptools, python-wheel.

Change-Id: Iac4383c33df71b089340154876cb614bff3bac72
---
 gnu/packages/python-xyz.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 5aaaf5faec..ed5cf6dd55 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -14901,7 +14901,10 @@ (define-public python-emoji
        (sha256
         (base32 "1svk94pad8gcvjwd329zmfrw09wakwh6qjvnhf6sa6k92y44i82a"))))
     (build-system pyproject-build-system)
-    (native-inputs (list python-pytest python-typing-extensions))
+    (native-inputs (list python-pytest
+                         python-setuptools
+                         python-typing-extensions
+                         python-wheel))
     (home-page "https://github.com/carpedm20/emoji/")
     (synopsis "Emoji terminal output for Python")
     (description
-- 
2.46.0





Information forwarded to lars <at> 6xq.net, marius <at> gnu.org, me <at> bonfacemunyoki.com, sharlatanus <at> gmail.com, tanguy <at> bioneland.org, jgart <at> dismail.de, guix-patches <at> gnu.org:
bug#74899; Package guix-patches. (Sun, 15 Dec 2024 19:51:02 GMT) Full text and rfc822 format available.

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

From: Juliana Sims <juli <at> incana.org>
To: 74899 <at> debbugs.gnu.org
Cc: Juliana Sims <juli <at> incana.org>
Subject: [PATCH 2/2] gnu: python-colorthief: Add missing native inputs.
Date: Sun, 15 Dec 2024 14:49:40 -0500
* gnu/packages/python-xyz.scm (python-colorthief)[native-inputs]: Add
python-setuptools, python-wheel.

Change-Id: Ic725b97a40718ab1c22dde7e5342947ff5ebd99c
---
 gnu/packages/python-xyz.scm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ed5cf6dd55..19903470da 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1290,6 +1290,7 @@ (define-public python-colorthief
        (sha256
         (base32 "08bjsmmkihyksms2vgndslln02rvw56lkxz28d39qrnxbg4v1707"))))
     (build-system pyproject-build-system)
+    (native-inputs (list python-setuptools python-wheel))
     (propagated-inputs (list python-pillow))
     (home-page "https://github.com/fengsp/color-thief-py")
     (synopsis "Grab the color palette of an image")
-- 
2.46.0





Reply sent to Sharlatan Hellseher <sharlatanus <at> gmail.com>:
You have taken responsibility. (Mon, 16 Dec 2024 11:35:02 GMT) Full text and rfc822 format available.

Notification sent to Juliana Sims <juli <at> incana.org>:
bug acknowledged by developer. (Mon, 16 Dec 2024 11:35:02 GMT) Full text and rfc822 format available.

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

From: Sharlatan Hellseher <sharlatanus <at> gmail.com>
To: 74899-done <at> debbugs.gnu.org
Subject: [PATCH 0/2] Fix some failing Python pacakge builds
Date: Mon, 16 Dec 2024 11:33:19 +0000
[Message part 1 (text/plain, inline)]
Hi,

Thanks for covering it.

Pushed as

5179e70366 * master gnu: python-colorthief: Fix build.
1a89e7d65f * gnu: python-emoji: Fix build.

to master.

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

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Mon, 13 Jan 2025 12:24:16 GMT) Full text and rfc822 format available.

This bug report was last modified 159 days ago.

Previous Next


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