From: "Yann E. MORIN" <yann.morin.1998@free.fr>
To: Bernd Kuhls <bernd@kuhls.net>
Cc: buildroot@buildroot.org
Subject: Re: [Buildroot] [PATCH 1/1] package/rrdtool: fix patch fuzz
Date: Fri, 28 Jun 2024 22:25:03 +0200 [thread overview]
Message-ID: <Zn8cHy5ehdIU7OJU@landeda> (raw)
In-Reply-To: <20240627220653.3626619-1-bernd@kuhls.net>
Bernd, All,
On 2024-06-28 00:06 +0200, Bernd Kuhls spake thusly:
> Commit 8f88a644ed "support/scripts/apply-patches.sh: set the maximum
> fuzz factor to 0" reduced the fuzz factor.
>
> Due to this change, rrdtool fails to build with output:
>
> patching file src/rrd_tool.c
> Hunk #2 FAILED at 42.
> Hunk #3 succeeded at 435 (offset -8 lines).
> Hunk #4 succeeded at 518 (offset -8 lines).
> Hunk #5 succeeded at 564 (offset -8 lines).
> Hunk #6 succeeded at 879 (offset -8 lines).
> 1 out of 6 hunks FAILED -- saving rejects to file src/rrd_tool.c.rej
>
> Because this was caused by an upstream patch we do not change it but add
> another upstream patch to be applied before our current patch to avoid
> the problem.
>
> Fixes:
> http://autobuild.buildroot.net/results/6996dbd764b0066da49dd009f1385196342c89dc/
>
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Applied to master, after expanding the existing comment as suggested,
thanks.
Regards,
Yann E. MORIN.
> ---
> ...ix-BUILD_DATE-in-rrdtool-help-output.patch | 57 +++++++++++++++++++
> ... => 0002-Constify-argv-fix-warnings.patch} | 0
> 2 files changed, 57 insertions(+)
> create mode 100644 package/rrdtool/0001-Fix-BUILD_DATE-in-rrdtool-help-output.patch
> rename package/rrdtool/{0001-Constify-argv-fix-warnings.patch => 0002-Constify-argv-fix-warnings.patch} (100%)
>
> diff --git a/package/rrdtool/0001-Fix-BUILD_DATE-in-rrdtool-help-output.patch b/package/rrdtool/0001-Fix-BUILD_DATE-in-rrdtool-help-output.patch
> new file mode 100644
> index 0000000000..9e5af9c148
> --- /dev/null
> +++ b/package/rrdtool/0001-Fix-BUILD_DATE-in-rrdtool-help-output.patch
> @@ -0,0 +1,57 @@
> +From e59f703bbcc0af949ee365206426b6394c340c6f Mon Sep 17 00:00:00 2001
> +From: =?UTF-8?q?Wolfgang=20St=C3=B6ggl?= <c72578@yahoo.de>
> +Date: Wed, 23 Mar 2022 17:58:45 +0100
> +Subject: [PATCH] Fix BUILD_DATE in rrdtool help output
> +
> +- This is a followup to #1102
> +- Fixes segfault when running "rrdtool --help"
> +- Change DATE_FMT to the same date format as the __DATE__ macro [1]:
> + mmm dd yyyy
> +
> +[1] https://gcc.gnu.org/onlinedocs/cpp/Standard-Predefined-Macros.html
> +
> +Upstream: https://github.com/oetiker/rrdtool-1.x/commit/e59f703bbcc0af949ee365206426b6394c340c6f
> +
> +Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
> +---
> + configure.ac | 2 +-
> + src/rrd_tool.c | 8 ++++++++
> + 2 files changed, 9 insertions(+), 1 deletion(-)
> +
> +diff --git a/configure.ac b/configure.ac
> +index 4d2345855..5169b0d49 100644
> +--- a/configure.ac
> ++++ b/configure.ac
> +@@ -695,7 +695,7 @@ AC_MSG_RESULT(${COMP_PERL:-No Perl Modules will be built})
> +
> + # Use reproducible build date and time
> + if test "$SOURCE_DATE_EPOCH"; then
> +- DATE_FMT="%d %b %Y %H:%M:%S"
> ++ DATE_FMT="%b %d %Y %H:%M:%S"
> + BUILD_DATE=$(LC_ALL=C date -u -d "@$SOURCE_DATE_EPOCH" "+$DATE_FMT")
> + AC_DEFINE_UNQUOTED([BUILD_DATE], ["$BUILD_DATE"], [Use reproducible build date])
> + fi
> +diff --git a/src/rrd_tool.c b/src/rrd_tool.c
> +index 930d08272..cc6119d9a 100644
> +--- a/src/rrd_tool.c
> ++++ b/src/rrd_tool.c
> +@@ -45,11 +45,19 @@ static void PrintUsage(
> + char *cmd)
> + {
> +
> ++#ifdef BUILD_DATE
> ++ const char *help_main =
> ++ N_("RRDtool %s"
> ++ " Copyright by Tobias Oetiker <tobi@oetiker.ch>\n"
> ++ " Compiled %s\n\n"
> ++ "Usage: rrdtool [options] command command_options\n");
> ++#else
> + const char *help_main =
> + N_("RRDtool %s"
> + " Copyright by Tobias Oetiker <tobi@oetiker.ch>\n"
> + " Compiled %s %s\n\n"
> + "Usage: rrdtool [options] command command_options\n");
> ++#endif
> +
> + const char *help_list =
> + N_
> diff --git a/package/rrdtool/0001-Constify-argv-fix-warnings.patch b/package/rrdtool/0002-Constify-argv-fix-warnings.patch
> similarity index 100%
> rename from package/rrdtool/0001-Constify-argv-fix-warnings.patch
> rename to package/rrdtool/0002-Constify-argv-fix-warnings.patch
> --
> 2.39.2
>
> _______________________________________________
> 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
prev parent reply other threads:[~2024-06-28 20:25 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-27 22:06 [Buildroot] [PATCH 1/1] package/rrdtool: fix patch fuzz Bernd Kuhls
2024-06-28 5:50 ` yann.morin
2024-06-28 20:25 ` Yann E. MORIN [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Zn8cHy5ehdIU7OJU@landeda \
--to=yann.morin.1998@free.fr \
--cc=bernd@kuhls.net \
--cc=buildroot@buildroot.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.