All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/samba4: add required python deps for AD DC support
@ 2021-04-04 16:58 Bernd Kuhls
  2021-04-05  9:00 ` Thomas Petazzoni
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Bernd Kuhls @ 2021-04-04 16:58 UTC (permalink / raw)
  To: buildroot

Needed due to upstream commit:
https://gitlab.com/samba-team/samba/-/commit/2420b7c6d2038aca33759ca3a7d41240c5f19bf7

Fixes:
http://autobuild.buildroot.net/results/12a/12a74665a2349eacb28c3035bb36a4dce1d740d1/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/samba4/Config.in | 2 ++
 package/samba4/samba4.mk | 7 ++++++-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/package/samba4/Config.in b/package/samba4/Config.in
index a34eaa8088..e890313b71 100644
--- a/package/samba4/Config.in
+++ b/package/samba4/Config.in
@@ -32,6 +32,8 @@ config BR2_PACKAGE_SAMBA4_AD_DC
 	bool "AD DC"
 	depends on BR2_PACKAGE_PYTHON3
 	select BR2_PACKAGE_JANSSON
+	select BR2_PACKAGE_PYTHON_DNSPYTHON
+	select BR2_PACKAGE_PYTHON_MARKDOWN
 	help
 	  Enable Active Directory Domain Controller functionality.
 
diff --git a/package/samba4/samba4.mk b/package/samba4/samba4.mk
index 99c8af9ab2..ed38af020c 100644
--- a/package/samba4/samba4.mk
+++ b/package/samba4/samba4.mk
@@ -149,7 +149,12 @@ define SAMBA4_INSTALL_TARGET_CMDS
 endef
 
 ifeq ($(BR2_PACKAGE_SAMBA4_AD_DC),y)
-SAMBA4_DEPENDENCIES += jansson
+SAMBA4_DEPENDENCIES += \
+	jansson \
+	host-python-dnspython \
+	host-python-markdown \
+	python-dnspython \
+	python-markdown
 else
 SAMBA4_CONF_OPTS += --without-ad-dc --without-json
 endif
-- 
2.29.2

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

* [Buildroot] [PATCH 1/1] package/samba4: add required python deps for AD DC support
  2021-04-04 16:58 [Buildroot] [PATCH 1/1] package/samba4: add required python deps for AD DC support Bernd Kuhls
@ 2021-04-05  9:00 ` Thomas Petazzoni
  2021-04-06  7:52   ` Bernd Kuhls
  2021-04-26 13:26 ` Peter Korsgaard
  2021-04-26 18:06 ` Peter Korsgaard
  2 siblings, 1 reply; 6+ messages in thread
From: Thomas Petazzoni @ 2021-04-05  9:00 UTC (permalink / raw)
  To: buildroot

On Sun,  4 Apr 2021 18:58:23 +0200
Bernd Kuhls <bernd.kuhls@t-online.de> wrote:

>  ifeq ($(BR2_PACKAGE_SAMBA4_AD_DC),y)
> -SAMBA4_DEPENDENCIES += jansson
> +SAMBA4_DEPENDENCIES += \
> +	jansson \
> +	host-python-dnspython \
> +	host-python-markdown \

I'm curious: why are the host packages needed? Is it because the
configuration stuff checks on the host that they are available, while
in fact they are only needed on the target ?

Thomas
-- 
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH 1/1] package/samba4: add required python deps for AD DC support
  2021-04-05  9:00 ` Thomas Petazzoni
@ 2021-04-06  7:52   ` Bernd Kuhls
  0 siblings, 0 replies; 6+ messages in thread
From: Bernd Kuhls @ 2021-04-06  7:52 UTC (permalink / raw)
  To: buildroot

Am Mon, 05 Apr 2021 11:00:03 +0200 schrieb Thomas Petazzoni:

> On Sun,  4 Apr 2021 18:58:23 +0200 Bernd Kuhls
> <bernd.kuhls@t-online.de> wrote:
> 
>>  ifeq ($(BR2_PACKAGE_SAMBA4_AD_DC),y)
>> -SAMBA4_DEPENDENCIES += jansson +SAMBA4_DEPENDENCIES += \ +	jansson \ 
+
>> host-python-dnspython \ +	host-python-markdown \
> 
> I'm curious: why are the host packages needed? Is it because the
> configuration stuff checks on the host that they are available, while in
> fact they are only needed on the target ?
> 
> Thomas

Hi Thomas,

yes, it seems to. The configure error could only be solved by also adding 
the host packages.

Regards, Bernd

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

* [Buildroot] [PATCH 1/1] package/samba4: add required python deps for AD DC support
  2021-04-04 16:58 [Buildroot] [PATCH 1/1] package/samba4: add required python deps for AD DC support Bernd Kuhls
  2021-04-05  9:00 ` Thomas Petazzoni
@ 2021-04-26 13:26 ` Peter Korsgaard
  2021-04-26 16:57   ` Bernd Kuhls
  2021-04-26 18:06 ` Peter Korsgaard
  2 siblings, 1 reply; 6+ messages in thread
From: Peter Korsgaard @ 2021-04-26 13:26 UTC (permalink / raw)
  To: buildroot

>>>>> "Bernd" == Bernd Kuhls <bernd.kuhls@t-online.de> writes:

 > Needed due to upstream commit:
 > https://gitlab.com/samba-team/samba/-/commit/2420b7c6d2038aca33759ca3a7d41240c5f19bf7

 > Fixes:
 > http://autobuild.buildroot.net/results/12a/12a74665a2349eacb28c3035bb36a4dce1d740d1/

 > Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
 > ---
 >  package/samba4/Config.in | 2 ++
 >  package/samba4/samba4.mk | 7 ++++++-
 >  2 files changed, 8 insertions(+), 1 deletion(-)

 > diff --git a/package/samba4/Config.in b/package/samba4/Config.in
 > index a34eaa8088..e890313b71 100644
 > --- a/package/samba4/Config.in
 > +++ b/package/samba4/Config.in
 > @@ -32,6 +32,8 @@ config BR2_PACKAGE_SAMBA4_AD_DC
 >  	bool "AD DC"
 >  	depends on BR2_PACKAGE_PYTHON3
 >  	select BR2_PACKAGE_JANSSON
 > +	select BR2_PACKAGE_PYTHON_DNSPYTHON
 > +	select BR2_PACKAGE_PYTHON_MARKDOWN
 >  	help
 >  	  Enable Active Directory Domain Controller functionality.
 
 > diff --git a/package/samba4/samba4.mk b/package/samba4/samba4.mk
 > index 99c8af9ab2..ed38af020c 100644
 > --- a/package/samba4/samba4.mk
 > +++ b/package/samba4/samba4.mk
 > @@ -149,7 +149,12 @@ define SAMBA4_INSTALL_TARGET_CMDS
 >  endef
 
 >  ifeq ($(BR2_PACKAGE_SAMBA4_AD_DC),y)
 > -SAMBA4_DEPENDENCIES += jansson
 > +SAMBA4_DEPENDENCIES += \
 > +	jansson \
 > +	host-python-dnspython \

How can this work? We don't currently have a host-python-dnspython
package.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 1/1] package/samba4: add required python deps for AD DC support
  2021-04-26 13:26 ` Peter Korsgaard
@ 2021-04-26 16:57   ` Bernd Kuhls
  0 siblings, 0 replies; 6+ messages in thread
From: Bernd Kuhls @ 2021-04-26 16:57 UTC (permalink / raw)
  To: buildroot

Am Mon, 26 Apr 2021 15:26:01 +0200 schrieb Peter Korsgaard:

> How can this work? We don't currently have a host-python-dnspython
> package.

Hi Peter,

it could not work because I forgot to send the patch adding host-python-
dnspython:

http://patchwork.ozlabs.org/project/buildroot/patch/
20210426165557.18477-1-bernd.kuhls at t-online.de/

Regards, Bernd

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

* [Buildroot] [PATCH 1/1] package/samba4: add required python deps for AD DC support
  2021-04-04 16:58 [Buildroot] [PATCH 1/1] package/samba4: add required python deps for AD DC support Bernd Kuhls
  2021-04-05  9:00 ` Thomas Petazzoni
  2021-04-26 13:26 ` Peter Korsgaard
@ 2021-04-26 18:06 ` Peter Korsgaard
  2 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2021-04-26 18:06 UTC (permalink / raw)
  To: buildroot

>>>>> "Bernd" == Bernd Kuhls <bernd.kuhls@t-online.de> writes:

 > Needed due to upstream commit:
 > https://gitlab.com/samba-team/samba/-/commit/2420b7c6d2038aca33759ca3a7d41240c5f19bf7

 > Fixes:
 > http://autobuild.buildroot.net/results/12a/12a74665a2349eacb28c3035bb36a4dce1d740d1/

 > Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Committed to 2021.02.x, thanks.

-- 
Bye, Peter Korsgaard

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

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

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-04 16:58 [Buildroot] [PATCH 1/1] package/samba4: add required python deps for AD DC support Bernd Kuhls
2021-04-05  9:00 ` Thomas Petazzoni
2021-04-06  7:52   ` Bernd Kuhls
2021-04-26 13:26 ` Peter Korsgaard
2021-04-26 16:57   ` Bernd Kuhls
2021-04-26 18:06 ` Peter Korsgaard

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.