All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/cifs-utils: add missing python dependencies
@ 2021-04-03 13:23 Fabrice Fontaine
  2021-04-03 14:52 ` Yann E. MORIN
  0 siblings, 1 reply; 5+ messages in thread
From: Fabrice Fontaine @ 2021-04-03 13:23 UTC (permalink / raw)
  To: buildroot

Add missing python dependencies which have been forgotten when bumping
to version 6.12 in commit b5dede7d1a03ab2b8caa0a8e79b09c8df6c62fe4

Fixes:
 - http://autobuild.buildroot.org/results/acdbf7c58ec8ae648f8048bc75650dcdcdca6285

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/cifs-utils/Config.in | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/package/cifs-utils/Config.in b/package/cifs-utils/Config.in
index 0e61243de4..55829e3dc2 100644
--- a/package/cifs-utils/Config.in
+++ b/package/cifs-utils/Config.in
@@ -18,9 +18,16 @@ if BR2_PACKAGE_CIFS_UTILS
 
 config BR2_PACKAGE_CIFS_UTILS_SMBTOOLS
 	bool "smbtools"
+	depends on BR2_USE_WCHAR # python
+	depends on BR2_TOOLCHAIN_HAS_THREADS # python
+	depends on !BR2_STATIC_LIBS # python
 	select BR2_PACKAGE_PYTHON3 if !BR2_PACKAGE_PYTHON # runtime
 	help
 	  Install the smb tools smbinfo and smb2-quota (python
 	  implementations).
 
+comment "smbtools needs a toolchain w/ wchar, threads, dynamic library"
+	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
+		BR2_STATIC_LIBS
+
 endif
-- 
2.30.2

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

* [Buildroot] [PATCH 1/1] package/cifs-utils: add missing python dependencies
  2021-04-03 13:23 [Buildroot] [PATCH 1/1] package/cifs-utils: add missing python dependencies Fabrice Fontaine
@ 2021-04-03 14:52 ` Yann E. MORIN
  2021-04-05 21:08   ` Peter Seiderer
  0 siblings, 1 reply; 5+ messages in thread
From: Yann E. MORIN @ 2021-04-03 14:52 UTC (permalink / raw)
  To: buildroot

Fabrice, All,

On 2021-04-03 15:23 +0200, Fabrice Fontaine spake thusly:
> Add missing python dependencies which have been forgotten when bumping
> to version 6.12 in commit b5dede7d1a03ab2b8caa0a8e79b09c8df6c62fe4
> 
> Fixes:
>  - http://autobuild.buildroot.org/results/acdbf7c58ec8ae648f8048bc75650dcdcdca6285
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/cifs-utils/Config.in | 7 +++++++
>  1 file changed, 7 insertions(+)
> 
> diff --git a/package/cifs-utils/Config.in b/package/cifs-utils/Config.in
> index 0e61243de4..55829e3dc2 100644
> --- a/package/cifs-utils/Config.in
> +++ b/package/cifs-utils/Config.in
> @@ -18,9 +18,16 @@ if BR2_PACKAGE_CIFS_UTILS
>  
>  config BR2_PACKAGE_CIFS_UTILS_SMBTOOLS
>  	bool "smbtools"
> +	depends on BR2_USE_WCHAR # python
> +	depends on BR2_TOOLCHAIN_HAS_THREADS # python
> +	depends on !BR2_STATIC_LIBS # python

We select python3, not python, so the added dependencies are because of
python3, not python.

Comments fixed accordingly, and patch applied to master, thanks.

Regards,
Yann E. MORIN.

>  	select BR2_PACKAGE_PYTHON3 if !BR2_PACKAGE_PYTHON # runtime
>  	help
>  	  Install the smb tools smbinfo and smb2-quota (python
>  	  implementations).
>  
> +comment "smbtools needs a toolchain w/ wchar, threads, dynamic library"
> +	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
> +		BR2_STATIC_LIBS
> +
>  endif
> -- 
> 2.30.2
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 1/1] package/cifs-utils: add missing python dependencies
  2021-04-03 14:52 ` Yann E. MORIN
@ 2021-04-05 21:08   ` Peter Seiderer
  2021-04-05 21:24     ` Fabrice Fontaine
  0 siblings, 1 reply; 5+ messages in thread
From: Peter Seiderer @ 2021-04-05 21:08 UTC (permalink / raw)
  To: buildroot

Hello Fabrice, Yann,

On Sat, 3 Apr 2021 16:52:21 +0200, "Yann E. MORIN" <yann.morin.1998@free.fr> wrote:

> Fabrice, All,
>
> On 2021-04-03 15:23 +0200, Fabrice Fontaine spake thusly:
> > Add missing python dependencies which have been forgotten when bumping
> > to version 6.12 in commit b5dede7d1a03ab2b8caa0a8e79b09c8df6c62fe4
> >
> > Fixes:
> >  - http://autobuild.buildroot.org/results/acdbf7c58ec8ae648f8048bc75650dcdcdca6285

This autobuild failure points to an libffi error...., quick search of the last
autobuild mails did not show an an cifs-utils error (or I did not find it), which
failure is this commit fixing?

> >
> > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> > ---
> >  package/cifs-utils/Config.in | 7 +++++++
> >  1 file changed, 7 insertions(+)
> >
> > diff --git a/package/cifs-utils/Config.in b/package/cifs-utils/Config.in
> > index 0e61243de4..55829e3dc2 100644
> > --- a/package/cifs-utils/Config.in
> > +++ b/package/cifs-utils/Config.in
> > @@ -18,9 +18,16 @@ if BR2_PACKAGE_CIFS_UTILS
> >
> >  config BR2_PACKAGE_CIFS_UTILS_SMBTOOLS
> >  	bool "smbtools"
> > +	depends on BR2_USE_WCHAR # python
> > +	depends on BR2_TOOLCHAIN_HAS_THREADS # python
> > +	depends on !BR2_STATIC_LIBS # python
>
> We select python3, not python, so the added dependencies are because of
> python3, not python.
>
> Comments fixed accordingly, and patch applied to master, thanks.
>
> Regards,
> Yann E. MORIN.
>
> >  	select BR2_PACKAGE_PYTHON3 if !BR2_PACKAGE_PYTHON # runtime

If this commit is fixing an error (and there is a build time dependency on
python) than, this comment 'runtime' is no longer valid...

Regards,
Peter


> >  	help
> >  	  Install the smb tools smbinfo and smb2-quota (python
> >  	  implementations).
> >
> > +comment "smbtools needs a toolchain w/ wchar, threads, dynamic library"
> > +	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
> > +		BR2_STATIC_LIBS
> > +
> >  endif
> > --
> > 2.30.2
> >
> > _______________________________________________
> > buildroot mailing list
> > buildroot at busybox.net
> > http://lists.busybox.net/mailman/listinfo/buildroot
>

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

* [Buildroot] [PATCH 1/1] package/cifs-utils: add missing python dependencies
  2021-04-05 21:08   ` Peter Seiderer
@ 2021-04-05 21:24     ` Fabrice Fontaine
  2021-04-05 22:06       ` Peter Seiderer
  0 siblings, 1 reply; 5+ messages in thread
From: Fabrice Fontaine @ 2021-04-05 21:24 UTC (permalink / raw)
  To: buildroot

Hello Peter,

Le lun. 5 avr. 2021 ? 23:08, Peter Seiderer <ps.report@gmx.net> a ?crit :
>
> Hello Fabrice, Yann,
>
> On Sat, 3 Apr 2021 16:52:21 +0200, "Yann E. MORIN" <yann.morin.1998@free.fr> wrote:
>
> > Fabrice, All,
> >
> > On 2021-04-03 15:23 +0200, Fabrice Fontaine spake thusly:
> > > Add missing python dependencies which have been forgotten when bumping
> > > to version 6.12 in commit b5dede7d1a03ab2b8caa0a8e79b09c8df6c62fe4
> > >
> > > Fixes:
> > >  - http://autobuild.buildroot.org/results/acdbf7c58ec8ae648f8048bc75650dcdcdca6285
>
> This autobuild failure points to an libffi error...., quick search of the last
> autobuild mails did not show an an cifs-utils error (or I did not find it), which
> failure is this commit fixing?
The build failure was indeed raised on libffi because we tried to
build libffi without threads.
This build failure is raised because cifs-utils selected python3 if
python was not selected even if threads were not available.
However, as python depends on threads, all python modules (such as
python-cffi) assume that threads are available resulting in the above
failure on libffi.
>
> > >
> > > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> > > ---
> > >  package/cifs-utils/Config.in | 7 +++++++
> > >  1 file changed, 7 insertions(+)
> > >
> > > diff --git a/package/cifs-utils/Config.in b/package/cifs-utils/Config.in
> > > index 0e61243de4..55829e3dc2 100644
> > > --- a/package/cifs-utils/Config.in
> > > +++ b/package/cifs-utils/Config.in
> > > @@ -18,9 +18,16 @@ if BR2_PACKAGE_CIFS_UTILS
> > >
> > >  config BR2_PACKAGE_CIFS_UTILS_SMBTOOLS
> > >     bool "smbtools"
> > > +   depends on BR2_USE_WCHAR # python
> > > +   depends on BR2_TOOLCHAIN_HAS_THREADS # python
> > > +   depends on !BR2_STATIC_LIBS # python
> >
> > We select python3, not python, so the added dependencies are because of
> > python3, not python.
> >
> > Comments fixed accordingly, and patch applied to master, thanks.
> >
> > Regards,
> > Yann E. MORIN.
> >
> > >     select BR2_PACKAGE_PYTHON3 if !BR2_PACKAGE_PYTHON # runtime
>
> If this commit is fixing an error (and there is a build time dependency on
> python) than, this comment 'runtime' is no longer valid...
The comment is still valid, python is a runtime dependency. You could
drop this select (and the python dependencies) and cifs-utils will
build perfectly fine.
However, you can't select python (or any other options) without
checking that their needed dependencies are fulfilled.
>
> Regards,
> Peter
>
>
> > >     help
> > >       Install the smb tools smbinfo and smb2-quota (python
> > >       implementations).
> > >
> > > +comment "smbtools needs a toolchain w/ wchar, threads, dynamic library"
> > > +   depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
> > > +           BR2_STATIC_LIBS
> > > +
> > >  endif
> > > --
> > > 2.30.2
> > >
> > > _______________________________________________
> > > buildroot mailing list
> > > buildroot at busybox.net
> > > http://lists.busybox.net/mailman/listinfo/buildroot
> >
>
Best Regards,

Fabrice

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

* [Buildroot] [PATCH 1/1] package/cifs-utils: add missing python dependencies
  2021-04-05 21:24     ` Fabrice Fontaine
@ 2021-04-05 22:06       ` Peter Seiderer
  0 siblings, 0 replies; 5+ messages in thread
From: Peter Seiderer @ 2021-04-05 22:06 UTC (permalink / raw)
  To: buildroot

Hello Fabrice,

On Mon, 5 Apr 2021 23:24:43 +0200, Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Hello Peter,
> 
> Le lun. 5 avr. 2021 ? 23:08, Peter Seiderer <ps.report@gmx.net> a ?crit :
> >
> > Hello Fabrice, Yann,
> >
> > On Sat, 3 Apr 2021 16:52:21 +0200, "Yann E. MORIN" <yann.morin.1998@free.fr> wrote:
> >  
> > > Fabrice, All,
> > >
> > > On 2021-04-03 15:23 +0200, Fabrice Fontaine spake thusly:  
> > > > Add missing python dependencies which have been forgotten when bumping
> > > > to version 6.12 in commit b5dede7d1a03ab2b8caa0a8e79b09c8df6c62fe4
> > > >
> > > > Fixes:
> > > >  - http://autobuild.buildroot.org/results/acdbf7c58ec8ae648f8048bc75650dcdcdca6285  
> >
> > This autobuild failure points to an libffi error...., quick search of the last
> > autobuild mails did not show an an cifs-utils error (or I did not find it), which
> > failure is this commit fixing?  
> The build failure was indeed raised on libffi because we tried to
> build libffi without threads.
> This build failure is raised because cifs-utils selected python3 if
> python was not selected even if threads were not available.
> However, as python depends on threads, all python modules (such as
> python-cffi) assume that threads are available resulting in the above
> failure on libffi.

....o.k. makes sense...

> >  
> > > >
> > > > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> > > > ---
> > > >  package/cifs-utils/Config.in | 7 +++++++
> > > >  1 file changed, 7 insertions(+)
> > > >
> > > > diff --git a/package/cifs-utils/Config.in b/package/cifs-utils/Config.in
> > > > index 0e61243de4..55829e3dc2 100644
> > > > --- a/package/cifs-utils/Config.in
> > > > +++ b/package/cifs-utils/Config.in
> > > > @@ -18,9 +18,16 @@ if BR2_PACKAGE_CIFS_UTILS
> > > >
> > > >  config BR2_PACKAGE_CIFS_UTILS_SMBTOOLS
> > > >     bool "smbtools"
> > > > +   depends on BR2_USE_WCHAR # python
> > > > +   depends on BR2_TOOLCHAIN_HAS_THREADS # python
> > > > +   depends on !BR2_STATIC_LIBS # python  
> > >
> > > We select python3, not python, so the added dependencies are because of
> > > python3, not python.
> > >
> > > Comments fixed accordingly, and patch applied to master, thanks.
> > >
> > > Regards,
> > > Yann E. MORIN.
> > >  
> > > >     select BR2_PACKAGE_PYTHON3 if !BR2_PACKAGE_PYTHON # runtime  
> >
> > If this commit is fixing an error (and there is a build time dependency on
> > python) than, this comment 'runtime' is no longer valid...  
> The comment is still valid, python is a runtime dependency. You could
> drop this select (and the python dependencies) and cifs-utils will
> build perfectly fine.
> However, you can't select python (or any other options) without
> checking that their needed dependencies are fulfilled.

Yup, got it ;-), thanks for insight (and for fixing it)!

Regards,
Peter

> >
> > Regards,
> > Peter
> >
> >  
> > > >     help
> > > >       Install the smb tools smbinfo and smb2-quota (python
> > > >       implementations).
> > > >
> > > > +comment "smbtools needs a toolchain w/ wchar, threads, dynamic library"
> > > > +   depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
> > > > +           BR2_STATIC_LIBS
> > > > +
> > > >  endif
> > > > --
> > > > 2.30.2
> > > >
> > > > _______________________________________________
> > > > buildroot mailing list
> > > > buildroot at busybox.net
> > > > http://lists.busybox.net/mailman/listinfo/buildroot  
> > >  
> >  
> Best Regards,
> 
> Fabrice
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

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

end of thread, other threads:[~2021-04-05 22:06 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-03 13:23 [Buildroot] [PATCH 1/1] package/cifs-utils: add missing python dependencies Fabrice Fontaine
2021-04-03 14:52 ` Yann E. MORIN
2021-04-05 21:08   ` Peter Seiderer
2021-04-05 21:24     ` Fabrice Fontaine
2021-04-05 22:06       ` Peter Seiderer

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.