* [ptxdist] [PATCH] wget: version bump 1.21.3 -> 1.25.0
@ 2025-10-13 10:34 Sven Püschel
2025-10-17 8:20 ` [ptxdist] [APPLIED] " Michael Olbrich
0 siblings, 1 reply; 2+ messages in thread
From: Sven Püschel @ 2025-10-13 10:34 UTC (permalink / raw)
To: ptxdist; +Cc: Sven Püschel
The copyright year was updated to 2024 in main.c.
Also 2023 was added to the copyright year of the GPL license in COPYING,
which was part of a global copyright bump commit [1].
[1] https://gitlab.com/gnuwget/wget/-/commit/42239969300cae065e38781df3d157483897ff6b#6156cd6ac57d8b88e473d9202392ec064b623c93
Signed-off-by: Sven Püschel <s.pueschel@pengutronix.de>
---
rules/wget.make | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/rules/wget.make b/rules/wget.make
index f5fc23291..38aa18176 100644
--- a/rules/wget.make
+++ b/rules/wget.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_WGET) += wget
#
# Paths and names
#
-WGET_VERSION := 1.21.3
-WGET_MD5 := e89496b15f8bf039d723926fae4d91f5
+WGET_VERSION := 1.25.0
+WGET_MD5 := c70ba58b36f944e8ba1d655ace552881
WGET := wget-$(WGET_VERSION)
WGET_SUFFIX := tar.gz
WGET_URL := $(call ptx/mirror, GNU, wget/$(WGET).$(WGET_SUFFIX))
@@ -23,8 +23,8 @@ WGET_SOURCE := $(SRCDIR)/$(WGET).$(WGET_SUFFIX)
WGET_DIR := $(BUILDDIR)/$(WGET)
WGET_LICENSE := GPL-3.0-or-later
WGET_LICENSE_FILES := \
- file://COPYING;md5=c678957b0c8e964aa6c70fd77641a71e \
- file://src/main.c;startline=1;endline=28;md5=369c109d52f213d2396ac45b9d884c39
+ file://COPYING;md5=6f65012d1daf98cb09b386cfb68df26b \
+ file://src/main.c;startline=1;endline=28;md5=b7f089e6003b1636b334da3f6cfbeaec
# ----------------------------------------------------------------------------
# Prepare
@@ -57,6 +57,7 @@ WGET_CONF_OPT := \
--disable-iri \
--disable-pcre2 \
--disable-pcre \
+ --disable-libproxy \
--disable-xattr \
--without-libpsl \
--with-ssl=$(call remove_quotes, $(PTXCONF_WGET_SSL)) \
--
2.47.3
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [ptxdist] [APPLIED] wget: version bump 1.21.3 -> 1.25.0
2025-10-13 10:34 [ptxdist] [PATCH] wget: version bump 1.21.3 -> 1.25.0 Sven Püschel
@ 2025-10-17 8:20 ` Michael Olbrich
0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2025-10-17 8:20 UTC (permalink / raw)
To: ptxdist; +Cc: Sven Püschel
Thanks, applied as 818d3636bf57d44e2f510bf14601cd047709a5d1.
Michael
[sent from post-receive hook]
On Fri, 17 Oct 2025 10:20:58 +0200, Sven Püschel <s.pueschel@pengutronix.de> wrote:
> The copyright year was updated to 2024 in main.c.
> Also 2023 was added to the copyright year of the GPL license in COPYING,
> which was part of a global copyright bump commit [1].
>
> [1] https://gitlab.com/gnuwget/wget/-/commit/42239969300cae065e38781df3d157483897ff6b#6156cd6ac57d8b88e473d9202392ec064b623c93
>
> Signed-off-by: Sven Püschel <s.pueschel@pengutronix.de>
> Message-Id: <20251013103429.1575390-1-s.pueschel@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/wget.make b/rules/wget.make
> index f5fc23291500..38aa18176aeb 100644
> --- a/rules/wget.make
> +++ b/rules/wget.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_WGET) += wget
> #
> # Paths and names
> #
> -WGET_VERSION := 1.21.3
> -WGET_MD5 := e89496b15f8bf039d723926fae4d91f5
> +WGET_VERSION := 1.25.0
> +WGET_MD5 := c70ba58b36f944e8ba1d655ace552881
> WGET := wget-$(WGET_VERSION)
> WGET_SUFFIX := tar.gz
> WGET_URL := $(call ptx/mirror, GNU, wget/$(WGET).$(WGET_SUFFIX))
> @@ -23,8 +23,8 @@ WGET_SOURCE := $(SRCDIR)/$(WGET).$(WGET_SUFFIX)
> WGET_DIR := $(BUILDDIR)/$(WGET)
> WGET_LICENSE := GPL-3.0-or-later
> WGET_LICENSE_FILES := \
> - file://COPYING;md5=c678957b0c8e964aa6c70fd77641a71e \
> - file://src/main.c;startline=1;endline=28;md5=369c109d52f213d2396ac45b9d884c39
> + file://COPYING;md5=6f65012d1daf98cb09b386cfb68df26b \
> + file://src/main.c;startline=1;endline=28;md5=b7f089e6003b1636b334da3f6cfbeaec
>
> # ----------------------------------------------------------------------------
> # Prepare
> @@ -57,6 +57,7 @@ WGET_CONF_OPT := \
> --disable-iri \
> --disable-pcre2 \
> --disable-pcre \
> + --disable-libproxy \
> --disable-xattr \
> --without-libpsl \
> --with-ssl=$(call remove_quotes, $(PTXCONF_WGET_SSL)) \
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-10-17 8:28 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-10-13 10:34 [ptxdist] [PATCH] wget: version bump 1.21.3 -> 1.25.0 Sven Püschel
2025-10-17 8:20 ` [ptxdist] [APPLIED] " Michael Olbrich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox