* [Buildroot] [PATCH] package/file: bump version to 5.45
@ 2023-08-21 9:05 Waldemar Brodkorb
2023-08-21 9:10 ` Baruch Siach via buildroot
0 siblings, 1 reply; 2+ messages in thread
From: Waldemar Brodkorb @ 2023-08-21 9:05 UTC (permalink / raw)
To: buildroot
Patch is included upstream.
See here for Changes in 5.45:
https://mailman.astron.com/pipermail/file/2023-July/001205.html
See here for Changes in 5.44:
https://mailman.astron.com/pipermail/file/2022-December/001042.html
Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
---
...ile.c-fix-build-without-wide-support.patch | 39 -------------------
package/file/file.hash | 4 +-
package/file/file.mk | 2 +-
3 files changed, 3 insertions(+), 42 deletions(-)
delete mode 100644 package/file/0001-src-file.c-fix-build-without-wide-support.patch
diff --git a/package/file/0001-src-file.c-fix-build-without-wide-support.patch b/package/file/0001-src-file.c-fix-build-without-wide-support.patch
deleted file mode 100644
index 29be9fa2cd..0000000000
--- a/package/file/0001-src-file.c-fix-build-without-wide-support.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From f2ab09d0e1388657f6b7e62bacc383ebea91f5b9 Mon Sep 17 00:00:00 2001
-From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
-Date: Wed, 26 Oct 2022 00:23:32 +0200
-Subject: [PATCH] src/file.c: fix build without wide support
-
-Fix the following build failure without wide support (e.g. on uclibc)
-raised since version 5.43 and
-https://github.com/file/file/commit/c80065fe6900be5e794941e29b32440e9969b1c3:
-
-file.c: In function 'fname_print':
-file.c:605:10: error: macro "putc" requires 2 arguments, but only 1 given
- 605 | putc(c);
- | ^
-
-Fixes:
- - http://autobuild.buildroot.org/results/7ff1dd9f79408d2e6286c005302b6f3c505ab259
-
-Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
-[Upstream status: https://bugs.astron.com/view.php?id=398]
----
- src/file.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/file.c b/src/file.c
-index f5f46524..1c23defc 100644
---- a/src/file.c
-+++ b/src/file.c
-@@ -615,7 +615,7 @@ fname_print(const char *inname)
- for (i = 0; i < n; i++) {
- unsigned char c = CAST(unsigned char, inname[i]);
- if (isprint(c)) {
-- putc(c);
-+ putc(c, stdout);
- continue;
- }
- file_octal(c);
---
-2.35.1
-
diff --git a/package/file/file.hash b/package/file/file.hash
index 49fa9e1e1b..b5a38928fc 100644
--- a/package/file/file.hash
+++ b/package/file/file.hash
@@ -1,7 +1,7 @@
# Locally calculated after verifying signature
-# ftp://ftp.astron.com/pub/file/file-5.43.tar.gz.asc
+# ftp://ftp.astron.com/pub/file/file-5.45.tar.gz.asc
# using key BE04995BA8F90ED0C0C176C471112AB16CB33B3A
-sha256 8c8015e91ae0e8d0321d94c78239892ef9dbc70c4ade0008c0e95894abfb1991 file-5.43.tar.gz
+sha256 fc97f51029bb0e2c9f4e3bffefdaf678f0e039ee872b9de5c002a6d09c784d82 file-5.45.tar.gz
sha256 0bfa856a9930bddadbef95d1be1cf4e163c0be618e76ea3275caaf255283e274 COPYING
sha256 4ccb60d623884ef637af4a5bc16b2cb350163e2135e967655837336019a64462 src/mygetopt.h
sha256 cc3d8704489d08eaefcaee8c639cc6436c6f0f6b2b03986d3ba7521a1a1d2fc9 src/vasprintf.c
diff --git a/package/file/file.mk b/package/file/file.mk
index 9b751e2696..5fc540bc9d 100644
--- a/package/file/file.mk
+++ b/package/file/file.mk
@@ -4,7 +4,7 @@
#
################################################################################
-FILE_VERSION = 5.43
+FILE_VERSION = 5.45
FILE_SITE = ftp://ftp.astron.com/pub/file
FILE_LICENSE = BSD-2-Clause, BSD-4-Clause (one file), BSD-3-Clause (one file)
FILE_LICENSE_FILES = COPYING src/mygetopt.h src/vasprintf.c
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [Buildroot] [PATCH] package/file: bump version to 5.45
2023-08-21 9:05 [Buildroot] [PATCH] package/file: bump version to 5.45 Waldemar Brodkorb
@ 2023-08-21 9:10 ` Baruch Siach via buildroot
0 siblings, 0 replies; 2+ messages in thread
From: Baruch Siach via buildroot @ 2023-08-21 9:10 UTC (permalink / raw)
To: Waldemar Brodkorb; +Cc: buildroot
Hi Waldemar,
On Mon, Aug 21 2023, Waldemar Brodkorb wrote:
> Patch is included upstream.
> See here for Changes in 5.45:
> https://mailman.astron.com/pipermail/file/2023-July/001205.html
> See here for Changes in 5.44:
> https://mailman.astron.com/pipermail/file/2022-December/001042.html
>
> Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
> ---
> ...ile.c-fix-build-without-wide-support.patch | 39 -------------------
You should also remove reference to this patch from .checkpackageignore.
baruch
> package/file/file.hash | 4 +-
> package/file/file.mk | 2 +-
> 3 files changed, 3 insertions(+), 42 deletions(-)
> delete mode 100644 package/file/0001-src-file.c-fix-build-without-wide-support.patch
>
> diff --git a/package/file/0001-src-file.c-fix-build-without-wide-support.patch
> b/package/file/0001-src-file.c-fix-build-without-wide-support.patch
> deleted file mode 100644
> index 29be9fa2cd..0000000000
> --- a/package/file/0001-src-file.c-fix-build-without-wide-support.patch
> +++ /dev/null
> @@ -1,39 +0,0 @@
> -From f2ab09d0e1388657f6b7e62bacc383ebea91f5b9 Mon Sep 17 00:00:00 2001
> -From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> -Date: Wed, 26 Oct 2022 00:23:32 +0200
> -Subject: [PATCH] src/file.c: fix build without wide support
> -
> -Fix the following build failure without wide support (e.g. on uclibc)
> -raised since version 5.43 and
> -https://github.com/file/file/commit/c80065fe6900be5e794941e29b32440e9969b1c3:
> -
> -file.c: In function 'fname_print':
> -file.c:605:10: error: macro "putc" requires 2 arguments, but only 1 given
> - 605 | putc(c);
> - | ^
> -
> -Fixes:
> - - http://autobuild.buildroot.org/results/7ff1dd9f79408d2e6286c005302b6f3c505ab259
> -
> -Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> -[Upstream status: https://bugs.astron.com/view.php?id=398]
> ----
> - src/file.c | 2 +-
> - 1 file changed, 1 insertion(+), 1 deletion(-)
> -
> -diff --git a/src/file.c b/src/file.c
> -index f5f46524..1c23defc 100644
> ---- a/src/file.c
> -+++ b/src/file.c
> -@@ -615,7 +615,7 @@ fname_print(const char *inname)
> - for (i = 0; i < n; i++) {
> - unsigned char c = CAST(unsigned char, inname[i]);
> - if (isprint(c)) {
> -- putc(c);
> -+ putc(c, stdout);
> - continue;
> - }
> - file_octal(c);
> ---
> -2.35.1
> -
> diff --git a/package/file/file.hash b/package/file/file.hash
> index 49fa9e1e1b..b5a38928fc 100644
> --- a/package/file/file.hash
> +++ b/package/file/file.hash
> @@ -1,7 +1,7 @@
> # Locally calculated after verifying signature
> -# ftp://ftp.astron.com/pub/file/file-5.43.tar.gz.asc
> +# ftp://ftp.astron.com/pub/file/file-5.45.tar.gz.asc
> # using key BE04995BA8F90ED0C0C176C471112AB16CB33B3A
> -sha256 8c8015e91ae0e8d0321d94c78239892ef9dbc70c4ade0008c0e95894abfb1991 file-5.43.tar.gz
> +sha256 fc97f51029bb0e2c9f4e3bffefdaf678f0e039ee872b9de5c002a6d09c784d82 file-5.45.tar.gz
> sha256 0bfa856a9930bddadbef95d1be1cf4e163c0be618e76ea3275caaf255283e274 COPYING
> sha256 4ccb60d623884ef637af4a5bc16b2cb350163e2135e967655837336019a64462 src/mygetopt.h
> sha256 cc3d8704489d08eaefcaee8c639cc6436c6f0f6b2b03986d3ba7521a1a1d2fc9 src/vasprintf.c
> diff --git a/package/file/file.mk b/package/file/file.mk
> index 9b751e2696..5fc540bc9d 100644
> --- a/package/file/file.mk
> +++ b/package/file/file.mk
> @@ -4,7 +4,7 @@
> #
> ################################################################################
>
> -FILE_VERSION = 5.43
> +FILE_VERSION = 5.45
> FILE_SITE = ftp://ftp.astron.com/pub/file
> FILE_LICENSE = BSD-2-Clause, BSD-4-Clause (one file), BSD-3-Clause (one file)
> FILE_LICENSE_FILES = COPYING src/mygetopt.h src/vasprintf.c
--
~. .~ Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
- baruch@tkos.co.il - tel: +972.52.368.4656, http://www.tkos.co.il -
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-08-21 9:11 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-21 9:05 [Buildroot] [PATCH] package/file: bump version to 5.45 Waldemar Brodkorb
2023-08-21 9:10 ` Baruch Siach via buildroot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox