All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v2 1/5] package/wget: explicit set some default options
@ 2022-03-18 20:20 Peter Seiderer
  2022-03-18 20:20 ` [Buildroot] [PATCH v2 2/5] package/wget: use explicit --with/without-libuuid option Peter Seiderer
                   ` (4 more replies)
  0 siblings, 5 replies; 13+ messages in thread
From: Peter Seiderer @ 2022-03-18 20:20 UTC (permalink / raw)
  To: buildroot

- explicit set some default options (--without-metalink, --enable-opie,
  --enable-digest, --enable-ntlm, --disable-debug, --disable-valgrind-tests,
  --disable-assert)

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
Changes v1 -> v2:
  - split out from original patch
---
 package/wget/wget.mk | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/package/wget/wget.mk b/package/wget/wget.mk
index f30fa39917..d100a59eae 100644
--- a/package/wget/wget.mk
+++ b/package/wget/wget.mk
@@ -12,6 +12,15 @@ WGET_LICENSE = GPL-3.0+
 WGET_LICENSE_FILES = COPYING
 WGET_CPE_ID_VENDOR = gnu
 
+WGET_CONF_OPTS = \
+	--without-metalink \
+	--enable-opie \
+	--enable-digest \
+	--enable-ntlm \
+	--disable-debug \
+	--disable-valgrind-tests \
+	--disable-assert
+
 ifeq ($(BR2_PACKAGE_GNUTLS),y)
 WGET_CONF_OPTS += --with-ssl=gnutls
 WGET_DEPENDENCIES += gnutls
-- 
2.35.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH v2 2/5] package/wget: use explicit --with/without-libuuid option
  2022-03-18 20:20 [Buildroot] [PATCH v2 1/5] package/wget: explicit set some default options Peter Seiderer
@ 2022-03-18 20:20 ` Peter Seiderer
  2022-03-18 21:27   ` Yann E. MORIN
  2022-03-21 12:21   ` Peter Korsgaard
  2022-03-18 20:20 ` [Buildroot] [PATCH v2 3/5] package/wget: add optional libpsl dependency Peter Seiderer
                   ` (3 subsequent siblings)
  4 siblings, 2 replies; 13+ messages in thread
From: Peter Seiderer @ 2022-03-18 20:20 UTC (permalink / raw)
  To: buildroot

- use explicit --with/without-libuuid option

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
Changes v1 -> v2:
  - split out from original patch
---
 package/wget/wget.mk | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/package/wget/wget.mk b/package/wget/wget.mk
index d100a59eae..7fda36f1f5 100644
--- a/package/wget/wget.mk
+++ b/package/wget/wget.mk
@@ -43,7 +43,10 @@ WGET_CONF_OPTS += --without-libidn
 endif
 
 ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBUUID),y)
+WGET_CONF_OPTS += --with-libuuid
 WGET_DEPENDENCIES += util-linux
+else
+WGET_CONF_OPTS += --without-libuuid
 endif
 
 ifeq ($(BR2_PACKAGE_ZLIB),y)
-- 
2.35.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH v2 3/5] package/wget: add optional libpsl dependency
  2022-03-18 20:20 [Buildroot] [PATCH v2 1/5] package/wget: explicit set some default options Peter Seiderer
  2022-03-18 20:20 ` [Buildroot] [PATCH v2 2/5] package/wget: use explicit --with/without-libuuid option Peter Seiderer
@ 2022-03-18 20:20 ` Peter Seiderer
  2022-03-18 21:34   ` Yann E. MORIN
  2022-03-21 12:21   ` Peter Korsgaard
  2022-03-18 20:20 ` [Buildroot] [PATCH v2 4/5] package/wget: add optional c-ares dependency Peter Seiderer
                   ` (2 subsequent siblings)
  4 siblings, 2 replies; 13+ messages in thread
From: Peter Seiderer @ 2022-03-18 20:20 UTC (permalink / raw)
  To: buildroot

- add optional libpsl dependency

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
Changes v1 -> v2:
  - split out from original patch
---
 package/wget/wget.mk | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/package/wget/wget.mk b/package/wget/wget.mk
index 7fda36f1f5..d0556e323c 100644
--- a/package/wget/wget.mk
+++ b/package/wget/wget.mk
@@ -21,6 +21,13 @@ WGET_CONF_OPTS = \
 	--disable-valgrind-tests \
 	--disable-assert
 
+ifeq ($(BR2_PACKAGE_LIBPSL),y)
+WGET_CONF_OPTS += --with-libpsl
+WGET_DEPENDENCIES += libpsl
+else
+WGET_CONF_OPTS += --without-libpsl
+endif
+
 ifeq ($(BR2_PACKAGE_GNUTLS),y)
 WGET_CONF_OPTS += --with-ssl=gnutls
 WGET_DEPENDENCIES += gnutls
-- 
2.35.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH v2 4/5] package/wget: add optional c-ares dependency
  2022-03-18 20:20 [Buildroot] [PATCH v2 1/5] package/wget: explicit set some default options Peter Seiderer
  2022-03-18 20:20 ` [Buildroot] [PATCH v2 2/5] package/wget: use explicit --with/without-libuuid option Peter Seiderer
  2022-03-18 20:20 ` [Buildroot] [PATCH v2 3/5] package/wget: add optional libpsl dependency Peter Seiderer
@ 2022-03-18 20:20 ` Peter Seiderer
  2022-03-18 21:33   ` Yann E. MORIN
  2022-03-21 12:22   ` Peter Korsgaard
  2022-03-18 20:20 ` [Buildroot] [PATCH v2 5/5] package/wget: bump version to 1.21.3 Peter Seiderer
  2022-03-18 21:25 ` [Buildroot] [PATCH v2 1/5] package/wget: explicit set some default options Yann E. MORIN
  4 siblings, 2 replies; 13+ messages in thread
From: Peter Seiderer @ 2022-03-18 20:20 UTC (permalink / raw)
  To: buildroot

- add optional c-ares dependency

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
Changes v1 -> v2:
  - split out from original patch
---
 package/wget/wget.mk | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/package/wget/wget.mk b/package/wget/wget.mk
index d0556e323c..69ca8f261c 100644
--- a/package/wget/wget.mk
+++ b/package/wget/wget.mk
@@ -63,6 +63,13 @@ else
 WGET_CONF_OPTS += --without-zlib
 endif
 
+ifeq ($(BR2_PACKAGE_C_ARES),y)
+WGET_CONF_OPTS += --with-cares
+WGET_DEPENDENCIES += c-ares
+else
+WGET_CONF_OPTS += --without-cares
+endif
+
 ifeq ($(BR2_PACKAGE_PCRE2),y)
 WGET_CONF_OPTS += --disable-pcre --enable-pcre2
 WGET_DEPENDENCIES += pcre2
-- 
2.35.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH v2 5/5] package/wget: bump version to 1.21.3
  2022-03-18 20:20 [Buildroot] [PATCH v2 1/5] package/wget: explicit set some default options Peter Seiderer
                   ` (2 preceding siblings ...)
  2022-03-18 20:20 ` [Buildroot] [PATCH v2 4/5] package/wget: add optional c-ares dependency Peter Seiderer
@ 2022-03-18 20:20 ` Peter Seiderer
  2022-03-18 20:50   ` Peter Seiderer
  2022-03-18 21:25 ` [Buildroot] [PATCH v2 1/5] package/wget: explicit set some default options Yann E. MORIN
  4 siblings, 1 reply; 13+ messages in thread
From: Peter Seiderer @ 2022-03-18 20:20 UTC (permalink / raw)
  To: buildroot

- bump version to 1.21.3 (for details see [1])

- remove legacy --with-libidn option (see [2]), replace with
  --enable-iri option in case locale support and libidn2 are available

[1] https://lists.gnu.org/archive/html/info-gnu/2022-02/msg00017.html
[2] https://git.savannah.gnu.org/cgit/wget.git/commit/configure.ac?id=a24e67e239ef949cc77a4c4e5a0beb703026a296

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
Changes v1 -> v2:
  - split out from original patch
  - fix iri option enable dependency
---
 package/wget/wget.hash |  4 ++--
 package/wget/wget.mk   | 14 ++++++--------
 2 files changed, 8 insertions(+), 10 deletions(-)

diff --git a/package/wget/wget.hash b/package/wget/wget.hash
index 7f89bedb88..22674650a2 100644
--- a/package/wget/wget.hash
+++ b/package/wget/wget.hash
@@ -1,6 +1,6 @@
 # Locally calculated after checking pgp signature
-# https://ftp.gnu.org/gnu/wget/wget-1.21.2.tar.lz.sig
+# https://ftp.gnu.org/gnu/wget/wget-1.21.3.tar.lz.sig
 # with key 6B98F637D879C5236E277C5C64FF90AAE8C70AF9
-sha256  1727a330a86acacb3e57615ce268f5f29978bf7adec4abe6a30d370207bc91b3  wget-1.21.2.tar.lz
+sha256  dbd2fb5e47149d4752d0eaa0dac68cc49cf20d46df4f8e326ffc8f18b2af4ea5  wget-1.21.3.tar.lz
 # Locally calculated
 sha256  e79e9c8a0c85d735ff98185918ec94ed7d175efc377012787aebcf3b80f0d90b  COPYING
diff --git a/package/wget/wget.mk b/package/wget/wget.mk
index 69ca8f261c..079afbee48 100644
--- a/package/wget/wget.mk
+++ b/package/wget/wget.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-WGET_VERSION = 1.21.2
+WGET_VERSION = 1.21.3
 WGET_SOURCE = wget-$(WGET_VERSION).tar.lz
 WGET_SITE = $(BR2_GNU_MIRROR)/wget
 WGET_DEPENDENCIES = host-pkgconf
@@ -38,15 +38,13 @@ else
 WGET_CONF_OPTS += --without-ssl
 endif
 
-ifeq ($(BR2_PACKAGE_LIBICONV),y)
-WGET_DEPENDENCIES += libiconv
-endif
-
-ifeq ($(BR2_PACKAGE_LIBIDN2),y)
-WGET_CONF_OPTS += --with-libidn
+# BR2_ENABLE_LOCALE and BR2_PACKAGE_LIBICONV are mutually exclusive
+ifeq ($(BR2_ENABLE_LOCALE)$(BR2_PACKAGE_LIBICONV)$(BR2_PACKAGE_LIBIDN2),yy)
+WGET_CONF_OPTS += --enable-iri
 WGET_DEPENDENCIES += libidn2
+WGET_DEPENDENCIES += $(if $(BR2_PACKAGE_LIBICONV),libiconv)
 else
-WGET_CONF_OPTS += --without-libidn
+WGET_CONF_OPTS += --disable-iri
 endif
 
 ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBUUID),y)
-- 
2.35.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v2 5/5] package/wget: bump version to 1.21.3
  2022-03-18 20:20 ` [Buildroot] [PATCH v2 5/5] package/wget: bump version to 1.21.3 Peter Seiderer
@ 2022-03-18 20:50   ` Peter Seiderer
  0 siblings, 0 replies; 13+ messages in thread
From: Peter Seiderer @ 2022-03-18 20:50 UTC (permalink / raw)
  To: buildroot

Hello *,

On Fri, 18 Mar 2022 21:20:44 +0100, Peter Seiderer <ps.report@gmx.net> wrote:

> - bump version to 1.21.3 (for details see [1])
>
> - remove legacy --with-libidn option (see [2]), replace with
>   --enable-iri option in case locale support and libidn2 are available
>
> [1] https://lists.gnu.org/archive/html/info-gnu/2022-02/msg00017.html
> [2] https://git.savannah.gnu.org/cgit/wget.git/commit/configure.ac?id=a24e67e239ef949cc77a4c4e5a0beb703026a296
>
> Signed-off-by: Peter Seiderer <ps.report@gmx.net>
> ---
> Changes v1 -> v2:
>   - split out from original patch
>   - fix iri option enable dependency
> ---
>  package/wget/wget.hash |  4 ++--
>  package/wget/wget.mk   | 14 ++++++--------
>  2 files changed, 8 insertions(+), 10 deletions(-)
>
> diff --git a/package/wget/wget.hash b/package/wget/wget.hash
> index 7f89bedb88..22674650a2 100644
> --- a/package/wget/wget.hash
> +++ b/package/wget/wget.hash
> @@ -1,6 +1,6 @@
>  # Locally calculated after checking pgp signature
> -# https://ftp.gnu.org/gnu/wget/wget-1.21.2.tar.lz.sig
> +# https://ftp.gnu.org/gnu/wget/wget-1.21.3.tar.lz.sig
>  # with key 6B98F637D879C5236E277C5C64FF90AAE8C70AF9
> -sha256  1727a330a86acacb3e57615ce268f5f29978bf7adec4abe6a30d370207bc91b3  wget-1.21.2.tar.lz
> +sha256  dbd2fb5e47149d4752d0eaa0dac68cc49cf20d46df4f8e326ffc8f18b2af4ea5  wget-1.21.3.tar.lz
>  # Locally calculated
>  sha256  e79e9c8a0c85d735ff98185918ec94ed7d175efc377012787aebcf3b80f0d90b  COPYING
> diff --git a/package/wget/wget.mk b/package/wget/wget.mk
> index 69ca8f261c..079afbee48 100644
> --- a/package/wget/wget.mk
> +++ b/package/wget/wget.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>
> -WGET_VERSION = 1.21.2
> +WGET_VERSION = 1.21.3
>  WGET_SOURCE = wget-$(WGET_VERSION).tar.lz
>  WGET_SITE = $(BR2_GNU_MIRROR)/wget
>  WGET_DEPENDENCIES = host-pkgconf
> @@ -38,15 +38,13 @@ else
>  WGET_CONF_OPTS += --without-ssl
>  endif
>
> -ifeq ($(BR2_PACKAGE_LIBICONV),y)
> -WGET_DEPENDENCIES += libiconv
> -endif

The above code one should be kept as there is at least one other
location in the source using iconv (protexted by '#ifdef HAVE_ICONV',
see src/url.c)...

> -
> -ifeq ($(BR2_PACKAGE_LIBIDN2),y)
> -WGET_CONF_OPTS += --with-libidn
> +# BR2_ENABLE_LOCALE and BR2_PACKAGE_LIBICONV are mutually exclusive
> +ifeq ($(BR2_ENABLE_LOCALE)$(BR2_PACKAGE_LIBICONV)$(BR2_PACKAGE_LIBIDN2),yy)
> +WGET_CONF_OPTS += --enable-iri
>  WGET_DEPENDENCIES += libidn2
> +WGET_DEPENDENCIES += $(if $(BR2_PACKAGE_LIBICONV),libiconv)

And so the above line can be removed...

Will send an updated patch set...

Regards,
Peter

>  else
> -WGET_CONF_OPTS += --without-libidn
> +WGET_CONF_OPTS += --disable-iri
>  endif
>
>  ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBUUID),y)

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v2 1/5] package/wget: explicit set some default options
  2022-03-18 20:20 [Buildroot] [PATCH v2 1/5] package/wget: explicit set some default options Peter Seiderer
                   ` (3 preceding siblings ...)
  2022-03-18 20:20 ` [Buildroot] [PATCH v2 5/5] package/wget: bump version to 1.21.3 Peter Seiderer
@ 2022-03-18 21:25 ` Yann E. MORIN
  4 siblings, 0 replies; 13+ messages in thread
From: Yann E. MORIN @ 2022-03-18 21:25 UTC (permalink / raw)
  To: Peter Seiderer; +Cc: buildroot

Peter, All,

On 2022-03-18 21:20 +0100, Peter Seiderer spake thusly:
> - explicit set some default options (--without-metalink, --enable-opie,
>   --enable-digest, --enable-ntlm, --disable-debug, --disable-valgrind-tests,
>   --disable-assert)

Repeating the title and the code in the commit message is not very
helpful.

What would be more intertesting, is to explain why you did need to set
those options, and just those, among all the others that are available,
like attr, iri... (I think that is basically what Thomas asked for in
his review of your v1).

I see that your series will also introduces some optional support
(libpsl, c-ares), but if just this first patch is applied, then that
also leaves those options unset, so this first patch should really add
defaults to all options.

Regards,
Yann E. MORIN.

> Signed-off-by: Peter Seiderer <ps.report@gmx.net>
> ---
> Changes v1 -> v2:
>   - split out from original patch
> ---
>  package/wget/wget.mk | 9 +++++++++
>  1 file changed, 9 insertions(+)
> 
> diff --git a/package/wget/wget.mk b/package/wget/wget.mk
> index f30fa39917..d100a59eae 100644
> --- a/package/wget/wget.mk
> +++ b/package/wget/wget.mk
> @@ -12,6 +12,15 @@ WGET_LICENSE = GPL-3.0+
>  WGET_LICENSE_FILES = COPYING
>  WGET_CPE_ID_VENDOR = gnu
>  
> +WGET_CONF_OPTS = \
> +	--without-metalink \
> +	--enable-opie \
> +	--enable-digest \
> +	--enable-ntlm \
> +	--disable-debug \
> +	--disable-valgrind-tests \
> +	--disable-assert
> +
>  ifeq ($(BR2_PACKAGE_GNUTLS),y)
>  WGET_CONF_OPTS += --with-ssl=gnutls
>  WGET_DEPENDENCIES += gnutls
> -- 
> 2.35.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/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.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v2 2/5] package/wget: use explicit --with/without-libuuid option
  2022-03-18 20:20 ` [Buildroot] [PATCH v2 2/5] package/wget: use explicit --with/without-libuuid option Peter Seiderer
@ 2022-03-18 21:27   ` Yann E. MORIN
  2022-03-21 12:21   ` Peter Korsgaard
  1 sibling, 0 replies; 13+ messages in thread
From: Yann E. MORIN @ 2022-03-18 21:27 UTC (permalink / raw)
  To: Peter Seiderer; +Cc: buildroot

On 2022-03-18 21:20 +0100, Peter Seiderer spake thusly:
> - use explicit --with/without-libuuid option

Repeating the commit title in the commit log is not very helpul...

Applied to master with that fixed, thanks.

Regards,
Yann E. MORIN.

> Signed-off-by: Peter Seiderer <ps.report@gmx.net>
> ---
> Changes v1 -> v2:
>   - split out from original patch
> ---
>  package/wget/wget.mk | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/package/wget/wget.mk b/package/wget/wget.mk
> index d100a59eae..7fda36f1f5 100644
> --- a/package/wget/wget.mk
> +++ b/package/wget/wget.mk
> @@ -43,7 +43,10 @@ WGET_CONF_OPTS += --without-libidn
>  endif
>  
>  ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBUUID),y)
> +WGET_CONF_OPTS += --with-libuuid
>  WGET_DEPENDENCIES += util-linux
> +else
> +WGET_CONF_OPTS += --without-libuuid
>  endif
>  
>  ifeq ($(BR2_PACKAGE_ZLIB),y)
> -- 
> 2.35.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/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.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v2 4/5] package/wget: add optional c-ares dependency
  2022-03-18 20:20 ` [Buildroot] [PATCH v2 4/5] package/wget: add optional c-ares dependency Peter Seiderer
@ 2022-03-18 21:33   ` Yann E. MORIN
  2022-03-21 12:22   ` Peter Korsgaard
  1 sibling, 0 replies; 13+ messages in thread
From: Yann E. MORIN @ 2022-03-18 21:33 UTC (permalink / raw)
  To: Peter Seiderer; +Cc: buildroot

Peter, All,

On 2022-03-18 21:20 +0100, Peter Seiderer spake thusly:
> - add optional c-ares dependency

Again, not very usefull... But there isn't much to say in this commit,
the title is far sufficient, so an empty commit log is OK.

(Who would have guessed I would ever say that? Who'd have bet? ;-) )

> Signed-off-by: Peter Seiderer <ps.report@gmx.net>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
> Changes v1 -> v2:
>   - split out from original patch
> ---
>  package/wget/wget.mk | 7 +++++++
>  1 file changed, 7 insertions(+)
> 
> diff --git a/package/wget/wget.mk b/package/wget/wget.mk
> index d0556e323c..69ca8f261c 100644
> --- a/package/wget/wget.mk
> +++ b/package/wget/wget.mk
> @@ -63,6 +63,13 @@ else
>  WGET_CONF_OPTS += --without-zlib
>  endif
>  
> +ifeq ($(BR2_PACKAGE_C_ARES),y)
> +WGET_CONF_OPTS += --with-cares
> +WGET_DEPENDENCIES += c-ares
> +else
> +WGET_CONF_OPTS += --without-cares
> +endif
> +
>  ifeq ($(BR2_PACKAGE_PCRE2),y)
>  WGET_CONF_OPTS += --disable-pcre --enable-pcre2
>  WGET_DEPENDENCIES += pcre2
> -- 
> 2.35.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/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.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v2 3/5] package/wget: add optional libpsl dependency
  2022-03-18 20:20 ` [Buildroot] [PATCH v2 3/5] package/wget: add optional libpsl dependency Peter Seiderer
@ 2022-03-18 21:34   ` Yann E. MORIN
  2022-03-21 12:21   ` Peter Korsgaard
  1 sibling, 0 replies; 13+ messages in thread
From: Yann E. MORIN @ 2022-03-18 21:34 UTC (permalink / raw)
  To: Peter Seiderer; +Cc: buildroot

On 2022-03-18 21:20 +0100, Peter Seiderer spake thusly:
> - add optional libpsl dependency
> 
> Signed-off-by: Peter Seiderer <ps.report@gmx.net>

Applied to master, commit elided, thanks.

Regards,
Yann E. MORIN.

> ---
> Changes v1 -> v2:
>   - split out from original patch
> ---
>  package/wget/wget.mk | 7 +++++++
>  1 file changed, 7 insertions(+)
> 
> diff --git a/package/wget/wget.mk b/package/wget/wget.mk
> index 7fda36f1f5..d0556e323c 100644
> --- a/package/wget/wget.mk
> +++ b/package/wget/wget.mk
> @@ -21,6 +21,13 @@ WGET_CONF_OPTS = \
>  	--disable-valgrind-tests \
>  	--disable-assert
>  
> +ifeq ($(BR2_PACKAGE_LIBPSL),y)
> +WGET_CONF_OPTS += --with-libpsl
> +WGET_DEPENDENCIES += libpsl
> +else
> +WGET_CONF_OPTS += --without-libpsl
> +endif
> +
>  ifeq ($(BR2_PACKAGE_GNUTLS),y)
>  WGET_CONF_OPTS += --with-ssl=gnutls
>  WGET_DEPENDENCIES += gnutls
> -- 
> 2.35.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/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.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v2 2/5] package/wget: use explicit --with/without-libuuid option
  2022-03-18 20:20 ` [Buildroot] [PATCH v2 2/5] package/wget: use explicit --with/without-libuuid option Peter Seiderer
  2022-03-18 21:27   ` Yann E. MORIN
@ 2022-03-21 12:21   ` Peter Korsgaard
  1 sibling, 0 replies; 13+ messages in thread
From: Peter Korsgaard @ 2022-03-21 12:21 UTC (permalink / raw)
  To: Peter Seiderer; +Cc: buildroot

>>>>> "Peter" == Peter Seiderer <ps.report@gmx.net> writes:

 > - use explicit --with/without-libuuid option
 > Signed-off-by: Peter Seiderer <ps.report@gmx.net>

Committed to 2022.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v2 3/5] package/wget: add optional libpsl dependency
  2022-03-18 20:20 ` [Buildroot] [PATCH v2 3/5] package/wget: add optional libpsl dependency Peter Seiderer
  2022-03-18 21:34   ` Yann E. MORIN
@ 2022-03-21 12:21   ` Peter Korsgaard
  1 sibling, 0 replies; 13+ messages in thread
From: Peter Korsgaard @ 2022-03-21 12:21 UTC (permalink / raw)
  To: Peter Seiderer; +Cc: buildroot

>>>>> "Peter" == Peter Seiderer <ps.report@gmx.net> writes:

 > - add optional libpsl dependency
 > Signed-off-by: Peter Seiderer <ps.report@gmx.net>
 > ---
 > Changes v1 -> v2:
 >   - split out from original patch

Committed to 2022.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v2 4/5] package/wget: add optional c-ares dependency
  2022-03-18 20:20 ` [Buildroot] [PATCH v2 4/5] package/wget: add optional c-ares dependency Peter Seiderer
  2022-03-18 21:33   ` Yann E. MORIN
@ 2022-03-21 12:22   ` Peter Korsgaard
  1 sibling, 0 replies; 13+ messages in thread
From: Peter Korsgaard @ 2022-03-21 12:22 UTC (permalink / raw)
  To: Peter Seiderer; +Cc: buildroot

>>>>> "Peter" == Peter Seiderer <ps.report@gmx.net> writes:

 > - add optional c-ares dependency
 > Signed-off-by: Peter Seiderer <ps.report@gmx.net>
 > ---
 > Changes v1 -> v2:
 >   - split out from original patch

Committed to 2022.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2022-03-21 12:22 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-18 20:20 [Buildroot] [PATCH v2 1/5] package/wget: explicit set some default options Peter Seiderer
2022-03-18 20:20 ` [Buildroot] [PATCH v2 2/5] package/wget: use explicit --with/without-libuuid option Peter Seiderer
2022-03-18 21:27   ` Yann E. MORIN
2022-03-21 12:21   ` Peter Korsgaard
2022-03-18 20:20 ` [Buildroot] [PATCH v2 3/5] package/wget: add optional libpsl dependency Peter Seiderer
2022-03-18 21:34   ` Yann E. MORIN
2022-03-21 12:21   ` Peter Korsgaard
2022-03-18 20:20 ` [Buildroot] [PATCH v2 4/5] package/wget: add optional c-ares dependency Peter Seiderer
2022-03-18 21:33   ` Yann E. MORIN
2022-03-21 12:22   ` Peter Korsgaard
2022-03-18 20:20 ` [Buildroot] [PATCH v2 5/5] package/wget: bump version to 1.21.3 Peter Seiderer
2022-03-18 20:50   ` Peter Seiderer
2022-03-18 21:25 ` [Buildroot] [PATCH v2 1/5] package/wget: explicit set some default options Yann E. MORIN

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.