Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe(s) *wget* to *1.25.0* has Succeeded.
Next steps:
- apply the patch: git am 0001-wget-upgrade-1.24.5-1.25.0.patch
- check the changes to upstream patches and summarize them in the commit
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list
Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.
Please review the attached files for further information and build/update
failures.
Any problem please file a bug at
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler
Regards,
The Upgrade Helper
-- >8 --
>From cd12402da929b4bf6f34d7bc903f7283d98dc0a0 Mon Sep 17 00:00:00 2001
From: Upgrade Helper <[email protected]>
Date: Sun, 17 Nov 2024 13:54:00 +0000
Subject: [PATCH] wget: upgrade 1.24.5 -> 1.25.0
---
.../wget/0002-improve-reproducibility.patch | 6 +-
.../wget/wget/CVE-2024-38428.patch | 79 -------------------
.../wget/{wget_1.24.5.bb => wget_1.25.0.bb} | 5 +-
3 files changed, 5 insertions(+), 85 deletions(-)
delete mode 100644 meta/recipes-extended/wget/wget/CVE-2024-38428.patch
rename meta/recipes-extended/wget/{wget_1.24.5.bb => wget_1.25.0.bb} (46%)
diff --git a/meta/recipes-extended/wget/wget/0002-improve-reproducibility.patch
b/meta/recipes-extended/wget/wget/0002-improve-reproducibility.patch
index 5438bafdcb..6ecb9ef289 100644
--- a/meta/recipes-extended/wget/wget/0002-improve-reproducibility.patch
+++ b/meta/recipes-extended/wget/wget/0002-improve-reproducibility.patch
@@ -1,4 +1,4 @@
-From b86e57b68363d108fe77c6fd588a275d2696cabe Mon Sep 17 00:00:00 2001
+From 304f55a3e2689154d829938d29e43d808ca6298a Mon Sep 17 00:00:00 2001
From: Hongxu Jia <[email protected]>
Date: Wed, 10 Jan 2018 14:43:20 +0800
Subject: [PATCH] src/Makefile.am: improve reproducibility
@@ -44,10 +44,10 @@ Signed-off-by: Joe Slater <[email protected]>
1 file changed, 4 insertions(+)
diff --git a/src/Makefile.am b/src/Makefile.am
-index 18ec622..38d252d 100644
+index 86be533..721a401 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
-@@ -108,9 +108,13 @@ version.c: $(wget_SOURCES) ../lib/libgnu.a
+@@ -126,9 +126,13 @@ version.c: $(wget_SOURCES) ../lib/libgnu.a
echo '#include "version.h"' >> $@
echo 'const char *version_string = "@VERSION@";' >> $@
echo 'const char *compilation_string = "'$(COMPILE)'";' \
diff --git a/meta/recipes-extended/wget/wget/CVE-2024-38428.patch
b/meta/recipes-extended/wget/wget/CVE-2024-38428.patch
deleted file mode 100644
index ed99a05464..0000000000
--- a/meta/recipes-extended/wget/wget/CVE-2024-38428.patch
+++ /dev/null
@@ -1,79 +0,0 @@
-From ed0c7c7e0e8f7298352646b2fd6e06a11e242ace Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Tim=20R=C3=BChsen?= <[email protected]>
-Date: Sun, 2 Jun 2024 12:40:16 +0200
-Subject: Properly re-implement userinfo parsing (rfc2396)
-
-* src/url.c (url_skip_credentials): Properly re-implement userinfo parsing
(rfc2396)
-
-The reason why the implementation is based on RFC 2396, an outdated standard,
-is that the whole file is based on that RFC, and mixing standard here might be
-dangerous.
-
-Upstream-Status: Backport
[https://git.savannah.gnu.org/cgit/wget.git/commit/?id=ed0c7c7e0e8f7298352646b2fd6e06a11e242ace]
-CVE: CVE-2024-38428
-Signed-off-by: Vijay Anusuri <[email protected]>
----
- src/url.c | 40 ++++++++++++++++++++++++++++++++++------
- 1 file changed, 34 insertions(+), 6 deletions(-)
-
-diff --git a/src/url.c b/src/url.c
-index 69e948b..07c3bc8 100644
---- a/src/url.c
-+++ b/src/url.c
-@@ -41,6 +41,7 @@ as that of the covered work. */
- #include "url.h"
- #include "host.h" /* for is_valid_ipv6_address */
- #include "c-strcase.h"
-+#include "c-ctype.h"
-
- #ifdef HAVE_ICONV
- # include <iconv.h>
-@@ -526,12 +527,39 @@ scheme_leading_string (enum url_scheme scheme)
- static const char *
- url_skip_credentials (const char *url)
- {
-- /* Look for '@' that comes before terminators, such as '/', '?',
-- '#', or ';'. */
-- const char *p = (const char *)strpbrk (url, "@/?#;");
-- if (!p || *p != '@')
-- return url;
-- return p + 1;
-+ /*
-+ * This whole file implements https://www.rfc-editor.org/rfc/rfc2396 .
-+ * RFC 2396 is outdated since 2005 and needs a rewrite or a thorough
re-visit.
-+ *
-+ * The RFC says
-+ * server = [ [ userinfo "@" ] hostport ]
-+ * userinfo = *( unreserved | escaped | ";" | ":" | "&" | "=" | "+" |
"$" | "," )
-+ * unreserved = alphanum | mark
-+ * mark = "-" | "_" | "." | "!" | "~" | "*" | "'" | "(" | ")"
-+ */
-+ static const char *allowed = "-_.!~*'();:&=+$,";
-+
-+ for (const char *p = url; *p; p++)
-+ {
-+ if (c_isalnum(*p))
-+ continue;
-+
-+ if (strchr(allowed, *p))
-+ continue;
-+
-+ if (*p == '%' && c_isxdigit(p[1]) && c_isxdigit(p[2]))
-+ {
-+ p += 2;
-+ continue;
-+ }
-+
-+ if (*p == '@')
-+ return p + 1;
-+
-+ break;
-+ }
-+
-+ return url;
- }
-
- /* Parse credentials contained in [BEG, END). The region is expected
---
-cgit v1.1
-
diff --git a/meta/recipes-extended/wget/wget_1.24.5.bb
b/meta/recipes-extended/wget/wget_1.25.0.bb
similarity index 46%
rename from meta/recipes-extended/wget/wget_1.24.5.bb
rename to meta/recipes-extended/wget/wget_1.25.0.bb
index 602fc9e627..93fefc9092 100644
--- a/meta/recipes-extended/wget/wget_1.24.5.bb
+++ b/meta/recipes-extended/wget/wget_1.25.0.bb
@@ -1,8 +1,7 @@
SRC_URI = "${GNU_MIRROR}/wget/wget-${PV}.tar.gz \
file://0002-improve-reproducibility.patch \
- file://CVE-2024-38428.patch \
- "
+ "
-SRC_URI[sha256sum] =
"fa2dc35bab5184ecbc46a9ef83def2aaaa3f4c9f3c97d4bd19dcb07d4da637de"
+SRC_URI[sha256sum] =
"766e48423e79359ea31e41db9e5c289675947a7fcf2efdcedb726ac9d0da3784"
require wget.inc
--
2.44.1
0001-wget-upgrade-1.24.5-1.25.0.patch
Description: Binary data
packages/core2-64-poky-linux/wget/wget-locale-id: PKGSIZE changed from 61462 to 78658 (+28%)
packages/core2-64-poky-linux/wget: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget: SRC_URI changed from "https://ftp.gnu.org/gnu/wget/wget-1.24.5.tar.gz file://0002-improve-reproducibility.patch file://CVE-2024-38428.patch" to "https://ftp.gnu.org/gnu/wget/wget-1.25.0.tar.gz file://0002-improve-reproducibility.patch" packages/core2-64-poky-linux/wget: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-dbg: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-dbg: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-dbg: PKGSIZE changed from 1597456 to 1602520 (+0%) packages/core2-64-poky-linux/wget/wget-dev: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-dev: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-doc: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-doc: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-doc: PKGSIZE changed from 232841 to 233106 (+0%) packages/core2-64-poky-linux/wget/wget-locale-af: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-af: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-be: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-be: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-be: PKGSIZE changed from 98965 to 99060 (+0%) packages/core2-64-poky-linux/wget/wget-locale-bg: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-bg: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-ca: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-ca: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-cs: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-cs: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-da: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-da: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-de: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-de: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-el: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-el: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-en-gb: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-en-gb: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-eo: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-eo: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-es: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-es: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-et: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-et: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-eu: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-eu: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-fi: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-fi: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-fr: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-fr: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-ga: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-ga: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-gl: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-gl: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-he: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-he: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-hr: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-hr: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-hr: PKGSIZE changed from 82194 to 82888 (+1%) packages/core2-64-poky-linux/wget/wget-locale-hu: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-hu: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-id: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-id: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-id: PKGSIZE changed from 61462 to 78658 (+28%) packages/core2-64-poky-linux/wget/wget-locale-it: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-it: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-ja: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-ja: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-ka: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-ka: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-ko: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-ko: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-lt: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-lt: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-ms: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-ms: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-nb: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-nb: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-nl: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-nl: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-pl: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-pl: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-pt-br: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-pt-br: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-pt: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-pt: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-ro: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-ro: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-ru: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-ru: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-rw: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-rw: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-sk: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-sk: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-sl: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-sl: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-sr: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-sr: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-sv: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-sv: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-tr: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-tr: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-uk: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-uk: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-vi: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-vi: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-zh-cn: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-zh-cn: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-locale-zh-cn: PKGSIZE changed from 80030 to 80705 (+1%) packages/core2-64-poky-linux/wget/wget-locale-zh-tw: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-locale-zh-tw: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-src: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-src: FILELIST: directory renamed /usr/src/debug/wget/1.24.5/src -> /usr/src/debug/wget/1.25.0/src, directory renamed /usr/src/debug/wget/1.24.5/lib/malloc -> /usr/src/debug/wget/1.25.0/lib/malloc, directory renamed /usr/src/debug/wget/1.24.5/lib/sys -> /usr/src/debug/wget/1.25.0/lib/sys, removed "/usr/src/debug/wget/1.24.5/lib/idx.h /usr/src/debug/wget/1.24.5/lib/xmemdup0.c /usr/src/debug/wget/1.24.5/lib/xmemdup0.h /usr/src/debug/wget/1.24.5/lib/ioctl.c /usr/src/debug/wget/1.24.5/lib/quotearg.h /usr/src/debug/wget/1.24.5/lib/sha1-stream.c /usr/src/debug/wget/1.24.5/lib/quotearg.c /usr/src/debug/wget/1.24.5/lib/mbsrtowcs.c /usr/src/debug/wget/1.24.5/lib/mbrtoc32.c /usr/src/debug/wget/1.24.5/lib/c-strcasecmp.c /usr/src/debug/wget/1.24.5/lib/string.h /usr/src/debug/wget/1.24.5/lib/mbsrtowcs-impl.h /usr/src/debug/wget/1.24.5/lib/sha256.c /usr/src/debug/wget/1.24.5/lib/uchar.h /usr/src/debug/wget/1.24.5/lib/wchar.h /usr/src/debug/wget/1.24.5/lib/geto pt.c /usr/src/debug/wget/1.24.5/lib/sha256.h /usr/src/debug/wget/1.24.5/lib/sha1.h /usr/src/debug/wget/1.24.5/lib/fflush.c /usr/src/debug/wget/1.24.5/lib/sha1.c /usr/src/debug/wget/1.24.5/lib/c-strcaseeq.h /usr/src/debug/wget/1.24.5/lib/ialloc.h /usr/src/debug/wget/1.24.5/lib/mbiter.h /usr/src/debug/wget/1.24.5/lib/xalloc.h /usr/src/debug/wget/1.24.5/lib/fnmatch.h /usr/src/debug/wget/1.24.5/lib/getopt-core.h /usr/src/debug/wget/1.24.5/lib/dirname.h /usr/src/debug/wget/1.24.5/lib/fnmatch.c /usr/src/debug/wget/1.24.5/lib/getopt-ext.h /usr/src/debug/wget/1.24.5/lib/getopt_int.h /usr/src/debug/wget/1.24.5/lib/fseeko.c /usr/src/debug/wget/1.24.5/lib/memchr.c /usr/src/debug/wget/1.24.5/lib/setlocale_null-unlocked.c /usr/src/debug/wget/1.24.5/lib/quote.h /usr/src/debug/wget/1.24.5/lib/md5.c /usr/src/debug/wget/1.24.5/lib/md5.h /usr/src/debug/wget/1.24.5/lib/xalloc-die.c /usr/src/debug/wget/1.24.5/lib/fcntl.c /usr/src/debug/wget/1.24.5/lib/base32.h /usr/src/debug/wget/1.24.5/lib/fcntl.h /us r/src/debug/wget/1.24.5/lib/regex.h /usr/src/debug/wget/1.24.5/lib/mbchar.h /usr/src/debug/wget/1.24.5/lib/strtol.c /usr/src/debug/wget/1.24.5/lib/base32.c /usr/src/debug/wget/1.24.5/lib/c-ctype.h /usr/src/debug/wget/1.24.5/lib/tmpdir.c /usr/src/debug/wget/1.24.5/lib/stdlib.h /usr/src/debug/wget/1.24.5/lib/tmpdir.h /usr/src/debug/wget/1.24.5/lib/xmalloc.c /usr/src/debug/wget/1.24.5/lib/c-strcase.h /usr/src/debug/wget/1.24.5/lib/regcomp.c /usr/src/debug/wget/1.24.5/lib/getopt1.c /usr/src/debug/wget/1.24.5/lib/dirent.h /usr/src/debug/wget/1.24.5/lib/hard-locale.c /usr/src/debug/wget/1.24.5/lib/hard-locale.h /usr/src/debug/wget/1.24.5/lib/localcharset.h /usr/src/debug/wget/1.24.5/lib/fseek.c /usr/src/debug/wget/1.24.5/lib/localcharset.c /usr/src/debug/wget/1.24.5/lib/c-strncasecmp.c /usr/src/debug/wget/1.24.5/lib/mbsrtowcs-state.c /usr/src/debug/wget/1.24.5/lib/strnlen1.h /usr/src/debug/wget/1.24.5/lib/regexec.c /usr/src/debug/wget/1.24.5/lib/strerror.c /usr/src/debug/wget/1.24.5/lib/s trnlen1.c /usr/src/debug/wget/1.24.5/lib/setlocale_null.h /usr/src/debug/wget/1.24.5/lib/basename.c /usr/src/debug/wget/1.24.5/lib/exitfail.h /usr/src/debug/wget/1.24.5/lib/setlocale_null.c /usr/src/debug/wget/1.24.5/lib/exitfail.c /usr/src/debug/wget/1.24.5/lib/regex_internal.c /usr/src/debug/wget/1.24.5/lib/regex_internal.h /usr/src/debug/wget/1.24.5/lib/af_alg.h /usr/src/debug/wget/1.24.5/lib/basename-lgpl.c /usr/src/debug/wget/1.24.5/lib/xstrndup.h /usr/src/debug/wget/1.24.5/lib/xstrndup.c /usr/src/debug/wget/1.24.5/lib/basename-lgpl.h /usr/src/debug/wget/1.24.5/lib/btowc.c /usr/src/debug/wget/1.24.5/lib/mbrtowc.c /usr/src/debug/wget/1.24.5/lib/fopen.c /usr/src/debug/wget/1.24.5/lib/fnmatch_loop.c /usr/src/debug/wget/1.24.5/lib/stdio.h", added "/usr/src/debug/wget/1.25.0/lib/fcntl.c /usr/src/debug/wget/1.25.0/lib/base32.h /usr/src/debug/wget/1.25.0/lib/fcntl.h /usr/src/debug/wget/1.25.0/lib/regex.h /usr/src/debug/wget/1.25.0/lib/mbchar.h /usr/src/debug/wget/1.25.0/lib/strtol.c / usr/src/debug/wget/1.25.0/lib/base32.c /usr/src/debug/wget/1.25.0/lib/c-ctype.h /usr/src/debug/wget/1.25.0/lib/tmpdir.c /usr/src/debug/wget/1.25.0/lib/stdlib.h /usr/src/debug/wget/1.25.0/lib/tmpdir.h /usr/src/debug/wget/1.25.0/lib/xmalloc.c /usr/src/debug/wget/1.25.0/lib/c-strcase.h /usr/src/debug/wget/1.25.0/lib/regcomp.c /usr/src/debug/wget/1.25.0/lib/getopt1.c /usr/src/debug/wget/1.25.0/lib/dirent.h /usr/src/debug/wget/1.25.0/lib/hard-locale.c /usr/src/debug/wget/1.25.0/lib/hard-locale.h /usr/src/debug/wget/1.25.0/lib/localcharset.h /usr/src/debug/wget/1.25.0/lib/fseek.c /usr/src/debug/wget/1.25.0/lib/localcharset.c /usr/src/debug/wget/1.25.0/lib/c-strncasecmp.c /usr/src/debug/wget/1.25.0/lib/mbsrtowcs-state.c /usr/src/debug/wget/1.25.0/lib/strnlen1.h /usr/src/debug/wget/1.25.0/lib/regexec.c /usr/src/debug/wget/1.25.0/lib/strerror.c /usr/src/debug/wget/1.25.0/lib/strnlen1.c /usr/src/debug/wget/1.25.0/lib/setlocale_null.h /usr/src/debug/wget/1.25.0/lib/basename.c /usr/src/debug/wg et/1.25.0/lib/exitfail.h /usr/src/debug/wget/1.25.0/lib/setlocale_null.c /usr/src/debug/wget/1.25.0/lib/exitfail.c /usr/src/debug/wget/1.25.0/lib/regex_internal.c /usr/src/debug/wget/1.25.0/lib/regex_internal.h /usr/src/debug/wget/1.25.0/lib/af_alg.h /usr/src/debug/wget/1.25.0/lib/basename-lgpl.c /usr/src/debug/wget/1.25.0/lib/xstrndup.h /usr/src/debug/wget/1.25.0/lib/xstrndup.c /usr/src/debug/wget/1.25.0/lib/basename-lgpl.h /usr/src/debug/wget/1.25.0/lib/btowc.c /usr/src/debug/wget/1.25.0/lib/mbrtowc.c /usr/src/debug/wget/1.25.0/lib/fopen.c /usr/src/debug/wget/1.25.0/lib/fnmatch_loop.c /usr/src/debug/wget/1.25.0/lib/stdio.h /usr/src/debug/wget/1.25.0/lib/idx.h /usr/src/debug/wget/1.25.0/lib/xmemdup0.c /usr/src/debug/wget/1.25.0/lib/xmemdup0.h /usr/src/debug/wget/1.25.0/lib/ioctl.c /usr/src/debug/wget/1.25.0/lib/quotearg.h /usr/src/debug/wget/1.25.0/lib/sha1-stream.c /usr/src/debug/wget/1.25.0/lib/quotearg.c /usr/src/debug/wget/1.25.0/lib/mbsrtowcs.c /usr/src/debug/wget/1.25.0/lib/m brtoc32.c /usr/src/debug/wget/1.25.0/lib/c-strcasecmp.c /usr/src/debug/wget/1.25.0/lib/string.h /usr/src/debug/wget/1.25.0/lib/mbsrtowcs-impl.h /usr/src/debug/wget/1.25.0/lib/sha256.c /usr/src/debug/wget/1.25.0/lib/uchar.h /usr/src/debug/wget/1.25.0/lib/wchar.h /usr/src/debug/wget/1.25.0/lib/getopt.c /usr/src/debug/wget/1.25.0/lib/sha256.h /usr/src/debug/wget/1.25.0/lib/sha1.h /usr/src/debug/wget/1.25.0/lib/fflush.c /usr/src/debug/wget/1.25.0/lib/sha1.c /usr/src/debug/wget/1.25.0/lib/c-strcaseeq.h /usr/src/debug/wget/1.25.0/lib/ialloc.h /usr/src/debug/wget/1.25.0/lib/mbiter.h /usr/src/debug/wget/1.25.0/lib/xalloc.h /usr/src/debug/wget/1.25.0/lib/fnmatch.h /usr/src/debug/wget/1.25.0/lib/getopt-core.h /usr/src/debug/wget/1.25.0/lib/dirname.h /usr/src/debug/wget/1.25.0/lib/fnmatch.c /usr/src/debug/wget/1.25.0/lib/getopt-ext.h /usr/src/debug/wget/1.25.0/lib/getopt_int.h /usr/src/debug/wget/1.25.0/lib/reallocarray.c /usr/src/debug/wget/1.25.0/lib/fseeko.c /usr/src/debug/wget/1.25.0/lib/m emchr.c /usr/src/debug/wget/1.25.0/lib/setlocale_null-unlocked.c /usr/src/debug/wget/1.25.0/lib/quote.h /usr/src/debug/wget/1.25.0/lib/md5.c /usr/src/debug/wget/1.25.0/lib/md5.h /usr/src/debug/wget/1.25.0/lib/xalloc-die.c" packages/core2-64-poky-linux/wget/wget-src: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget-src: PKGSIZE changed from 2909494 to 2943803 (+1%) packages/core2-64-poky-linux/wget/wget-staticdev: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget-staticdev: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget: PKGV changed from 1.24.5 [default] to 1.25.0 [default] packages/core2-64-poky-linux/wget/wget: PV changed from "1.24.5" to "1.25.0" packages/core2-64-poky-linux/wget/wget: PKGSIZE changed from 565401 to 569497 (+1%)
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#207319): https://lists.openembedded.org/g/openembedded-core/message/207319 Mute This Topic: https://lists.openembedded.org/mt/109653258/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
