All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH] python3-txdbus: cleanup RDEPENDS
@ 2024-04-18  9:25 Guðni Már Gilbert
  2024-04-19 18:25 ` Alper Ak
  0 siblings, 1 reply; 3+ messages in thread
From: Guðni Már Gilbert @ 2024-04-18  9:25 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Guðni Már Gilbert

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

python3-six is no longer a dependency and Python 2 support has already been dropped.

Change python3-twisted to python3-twisted-core such that only required modules
are installed.

Signed-off-by: Guðni Már Gilbert <gudnimar@noxmedical.com>
---
 meta-python/recipes-devtools/python/python3-txdbus_1.1.2.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-python/recipes-devtools/python/python3-txdbus_1.1.2.bb b/meta-python/recipes-devtools/python/python3-txdbus_1.1.2.bb
index d579ca044..1232f5e99 100644
--- a/meta-python/recipes-devtools/python/python3-txdbus_1.1.2.bb
+++ b/meta-python/recipes-devtools/python/python3-txdbus_1.1.2.bb
@@ -9,4 +9,4 @@ SRC_URI[sha256sum] = "8375a5fb68a12054f0def91af800c821fb2232949337756ed975f88d8e
 
 inherit pypi setuptools3
 
-RDEPENDS:${PN} += "python3-six python3-twisted"
+RDEPENDS:${PN} += "python3-twisted-core"
-- 
2.34.1

Disclaimer

The information contained in this communication from the sender is confidential. It is intended solely for use by the recipient and others authorized to receive it. If you are not the recipient, you are hereby notified that any disclosure, copying, distribution or taking action in relation of the contents of this information is strictly prohibited and may be unlawful.

This email has been scanned for viruses and malware, and may have been automatically archived by Mimecast, a leader in email security and cyber resilience. Mimecast integrates email defenses with brand protection, security awareness training, web security, compliance and other essential capabilities. Mimecast helps protect large and small organizations from malicious activity, human error and technology failure; and to lead the movement toward building a more resilient world. To find out more, visit our website.

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

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

* Re: [meta-python][PATCH] python3-txdbus: cleanup RDEPENDS
  2024-04-18  9:25 [meta-python][PATCH] python3-txdbus: cleanup RDEPENDS Guðni Már Gilbert
@ 2024-04-19 18:25 ` Alper Ak
  2024-04-23  6:44   ` Guðni Már Gilbert
  0 siblings, 1 reply; 3+ messages in thread
From: Alper Ak @ 2024-04-19 18:25 UTC (permalink / raw)
  To: openembedded-devel

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

Getting the similar error when I build this recipe too. Output:

ERROR: Nothing RPROVIDES 'python3-twisted-core-native' (but virtual:native:/opt/yocto_co/sources/meta-openembedded/meta-python/recipes-devtools/python/python3-incremental_22.10.0.bb RDEPENDS on or otherwise requires it)

NOTE: Runtime target 'python3-twisted-core-native' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['python3-twisted-core-native']

NOTE: Runtime target 'python3-twisted-core' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['python3-twisted-core', 'python3-incremental-native', 'python3-twisted-core-native']

ERROR: Required build target 'python3-txdbus' has no buildable providers.
Missing or unbuildable dependency chain was: ['python3-txdbus', 'python3-twisted-core', 'python3-incremental-native', 'python3-twisted-core-native']

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

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

* Re: [meta-python][PATCH] python3-txdbus: cleanup RDEPENDS
  2024-04-19 18:25 ` Alper Ak
@ 2024-04-23  6:44   ` Guðni Már Gilbert
  0 siblings, 0 replies; 3+ messages in thread
From: Guðni Már Gilbert @ 2024-04-23  6:44 UTC (permalink / raw)
  To: openembedded-devel

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

On Fri, Apr 19, 2024 at 06:25 PM, Alper Ak wrote:

> 
> 
> 
> Getting the similar error when I build this recipe too. Output:
> 
> 
> 
> ERROR: Nothing RPROVIDES 'python3-twisted-core-native' (but
> virtual:native:/opt/yocto_co/sources/meta-openembedded/meta-python/recipes-devtools/python/python3-incremental_22.10.0.bb
> RDEPENDS on or otherwise requires it)
> 
> NOTE: Runtime target 'python3-twisted-core-native' is unbuildable,
> removing...
> Missing or unbuildable dependency chain was:
> ['python3-twisted-core-native']
> 
> NOTE: Runtime target 'python3-twisted-core' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['python3-twisted-core',
> 'python3-incremental-native', 'python3-twisted-core-native']
> 
> ERROR: Required build target 'python3-txdbus' has no buildable providers.
> Missing or unbuildable dependency chain was: ['python3-txdbus',
> 'python3-twisted-core', 'python3-incremental-native',
> 'python3-twisted-core-native']
> 
> 

Hi Alper, sorry for the double email, I forgot to send to 'Group'.

I could reproduce this on my side and 've fixed this issue by correcting the python3-incremental patch here:https://lists.openembedded.org/g/openembedded-devel/topic/meta_python_patch_v2/105685490 on my end this resolves the issue with building the python3-txdbus recipe. I tested on the master branch.

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

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

end of thread, other threads:[~2024-04-23  6:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-18  9:25 [meta-python][PATCH] python3-txdbus: cleanup RDEPENDS Guðni Már Gilbert
2024-04-19 18:25 ` Alper Ak
2024-04-23  6:44   ` Guðni Már Gilbert

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.