Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/wget: bump to version 1.20.1
@ 2018-12-28  6:04 Baruch Siach
  2018-12-28  6:04 ` [Buildroot] [PATCH 2/2] package/wget: add optional dependency on pcre/pcre2 Baruch Siach
  2018-12-30 16:09 ` [Buildroot] [PATCH 1/2] package/wget: bump to version 1.20.1 Thomas Petazzoni
  0 siblings, 2 replies; 4+ messages in thread
From: Baruch Siach @ 2018-12-28  6:04 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 package/wget/wget.hash | 5 +++--
 package/wget/wget.mk   | 2 +-
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/package/wget/wget.hash b/package/wget/wget.hash
index eee4a5194ec9..7d1a1c5521f2 100644
--- a/package/wget/wget.hash
+++ b/package/wget/wget.hash
@@ -1,5 +1,6 @@
 # Locally calculated after checking pgp signature
-# https://ftp.gnu.org/gnu/wget/wget-1.19.5.tar.lz.sig
-sha256 29fbe6f3d5408430c572a63fe32bd43d5860f32691173dfd84edc06869edca75  wget-1.19.5.tar.lz
+# https://ftp.gnu.org/gnu/wget/wget-1.20.1.tar.lz.sig
+# with key 1CB27DBC98614B2D5841646D08302DB6A2670428
+sha256 0f63e84dd23dc53ab3ab6f483c3afff8301e54c165783f772101cdd9b1c64928  wget-1.20.1.tar.lz
 # Locally calculated
 sha256 e79e9c8a0c85d735ff98185918ec94ed7d175efc377012787aebcf3b80f0d90b  COPYING
diff --git a/package/wget/wget.mk b/package/wget/wget.mk
index 28bd0a264fdd..8d65364016b2 100644
--- a/package/wget/wget.mk
+++ b/package/wget/wget.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-WGET_VERSION = 1.19.5
+WGET_VERSION = 1.20.1
 WGET_SOURCE = wget-$(WGET_VERSION).tar.lz
 WGET_SITE = $(BR2_GNU_MIRROR)/wget
 WGET_DEPENDENCIES = host-pkgconf
-- 
2.19.2

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

* [Buildroot] [PATCH 2/2] package/wget: add optional dependency on pcre/pcre2
  2018-12-28  6:04 [Buildroot] [PATCH 1/2] package/wget: bump to version 1.20.1 Baruch Siach
@ 2018-12-28  6:04 ` Baruch Siach
  2018-12-30 16:10   ` Thomas Petazzoni
  2018-12-30 16:09 ` [Buildroot] [PATCH 1/2] package/wget: bump to version 1.20.1 Thomas Petazzoni
  1 sibling, 1 reply; 4+ messages in thread
From: Baruch Siach @ 2018-12-28  6:04 UTC (permalink / raw)
  To: buildroot

Default to pcre2 to mimic upstream configure.ac.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 package/wget/wget.mk | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/package/wget/wget.mk b/package/wget/wget.mk
index 8d65364016b2..5cdecbcc81a8 100644
--- a/package/wget/wget.mk
+++ b/package/wget/wget.mk
@@ -39,4 +39,14 @@ else
 WGET_CONF_OPTS += --without-zlib
 endif
 
+ifeq ($(BR2_PACKAGE_PCRE2),y)
+WGET_CONF_OPTS += --disable-pcre --enable-pcre2
+WGET_DEPENDENCIES += pcre2
+else ifeq ($(BR2_PACKAGE_PCRE),y)
+WGET_CONF_OPTS += --enable-pcre --disable-pcre2
+WGET_DEPENDENCIES += pcre
+else
+WGET_CONF_OPTS += --disable-pcre --disable-pcre2
+endif
+
 $(eval $(autotools-package))
-- 
2.19.2

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

* [Buildroot] [PATCH 1/2] package/wget: bump to version 1.20.1
  2018-12-28  6:04 [Buildroot] [PATCH 1/2] package/wget: bump to version 1.20.1 Baruch Siach
  2018-12-28  6:04 ` [Buildroot] [PATCH 2/2] package/wget: add optional dependency on pcre/pcre2 Baruch Siach
@ 2018-12-30 16:09 ` Thomas Petazzoni
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2018-12-30 16:09 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 28 Dec 2018 08:04:19 +0200, Baruch Siach wrote:
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>
> ---
>  package/wget/wget.hash | 5 +++--
>  package/wget/wget.mk   | 2 +-
>  2 files changed, 4 insertions(+), 3 deletions(-)

Applied to master, thanks.

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

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

* [Buildroot] [PATCH 2/2] package/wget: add optional dependency on pcre/pcre2
  2018-12-28  6:04 ` [Buildroot] [PATCH 2/2] package/wget: add optional dependency on pcre/pcre2 Baruch Siach
@ 2018-12-30 16:10   ` Thomas Petazzoni
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2018-12-30 16:10 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 28 Dec 2018 08:04:20 +0200, Baruch Siach wrote:
> Default to pcre2 to mimic upstream configure.ac.
> 
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>
> ---
>  package/wget/wget.mk | 10 ++++++++++
>  1 file changed, 10 insertions(+)

Applied to master, thanks.

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

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

end of thread, other threads:[~2018-12-30 16:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-12-28  6:04 [Buildroot] [PATCH 1/2] package/wget: bump to version 1.20.1 Baruch Siach
2018-12-28  6:04 ` [Buildroot] [PATCH 2/2] package/wget: add optional dependency on pcre/pcre2 Baruch Siach
2018-12-30 16:10   ` Thomas Petazzoni
2018-12-30 16:09 ` [Buildroot] [PATCH 1/2] package/wget: bump to version 1.20.1 Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox