Re: [OE-core] [PATCH v2] python3: package tkinter's shared objects

2024-11-26 Thread Dan McGregor via lists.openembedded.org
On Tue, 26 Nov 2024 at 11:11, Alexander Kanavin wrote: > > On Tue, 26 Nov 2024 at 18:06, Dan McGregor wrote: > > > You need to find out why is that. FILES setting in a recipe should not > > > be replaced by what's in the manifest but only added to it. > > > > Okay, that's actually obvious. It's r

Re: [OE-core] [PATCH v2] python3: package tkinter's shared objects

2024-11-26 Thread Alexander Kanavin via lists.openembedded.org
On Tue, 26 Nov 2024 at 18:06, Dan McGregor wrote: > > You need to find out why is that. FILES setting in a recipe should not > > be replaced by what's in the manifest but only added to it. > > Okay, that's actually obvious. It's resetting the FILES:${PN}... > variables explicitly in the manifest p

Re: [OE-core] [PATCH v2] python3: package tkinter's shared objects

2024-11-26 Thread Dan McGregor via lists.openembedded.org
On Tue, 26 Nov 2024 at 10:48, Alexander Kanavin via lists.openembedded.org wrote: > > You need to find out why is that. FILES setting in a recipe should not > be replaced by what's in the manifest but only added to it. Okay, that's actually obvious. It's resetting the FILES:${PN}... variables exp

Re: [OE-core] [PATCH v2] python3: package tkinter's shared objects

2024-11-26 Thread Dan McGregor via lists.openembedded.org
Nevermind, this didn't work, my initial optimistic test was wrong, I had disabled the tk packageconfig again before I ran this :( The original patch so far is the only one that I have that's working. On Tue, 26 Nov 2024 at 10:31, Dan McGregor via lists.openembedded.org wrote: > > From: Dan McGreg

Re: [OE-core] [PATCH v2] python3: package tkinter's shared objects

2024-11-26 Thread Alexander Kanavin via lists.openembedded.org
You need to find out why is that. FILES setting in a recipe should not be replaced by what's in the manifest but only added to it. Alex On Tue, 26 Nov 2024 at 17:45, Dan McGregor via lists.openembedded.org wrote: > > Nevermind, this didn't work, my initial optimistic test was wrong, I > had disab

[OE-core] [PATCH v2] python3: package tkinter's shared objects

2024-11-26 Thread Dan McGregor via lists.openembedded.org
From: Dan McGregor Seems every time python is updated this gets removed. That's likely because the tk option can't be enabled in python3-native without creating a dependency loop. Instead of manually editing the manifest every time, explicitly add it in the recipe as suggested by Alexander Kanav