Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] Revert "package/uuu: fix build failure with host gcc 13.x"
@ 2024-01-27 17:29 Fabrice Fontaine
  2024-01-27 18:06 ` Yann E. MORIN
  0 siblings, 1 reply; 2+ messages in thread
From: Fabrice Fontaine @ 2024-01-27 17:29 UTC (permalink / raw)
  To: buildroot; +Cc: Dario Binacchi, Fabrice Fontaine

This reverts commit 04dfeff6242516a1061973fc7af2cc9c5e3dd4e2 as it
raises the following build failure because patch has been merged since
version 1.5.104:

Applying 0001-Fix-missing-references.patch using patch:
patching file libuuu/libcomm.h
Reversed (or previously applied) patch detected!  Skipping patch.
1 out of 1 hunk ignored -- saving rejects to file libuuu/libcomm.h.rej
patching file uuu/buildincmd.h
Reversed (or previously applied) patch detected!  Skipping patch.
1 out of 1 hunk ignored -- saving rejects to file uuu/buildincmd.h.rej

Fixes:
 - http://autobuild.buildroot.org/results/bf7b2206261e3385c567ae4359b0379b03161e3a

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/uuu/0001-Fix-missing-references.patch | 40 -------------------
 1 file changed, 40 deletions(-)
 delete mode 100644 package/uuu/0001-Fix-missing-references.patch

diff --git a/package/uuu/0001-Fix-missing-references.patch b/package/uuu/0001-Fix-missing-references.patch
deleted file mode 100644
index 140c9755c7..0000000000
--- a/package/uuu/0001-Fix-missing-references.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-From 24fd043225903247f71ac10666d820277c0b10b1 Mon Sep 17 00:00:00 2001
-From: nixgnauhcuy <nixgnauhcuy@gmail.com>
-Date: Tue, 9 May 2023 14:32:33 +0800
-Subject: [PATCH] Fix missing references
-
-Upstream: https://github.com/nxp-imx/mfgtools/commit/24fd043225903247f71ac10666d820277c0b10b1
-
-Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
----
- libuuu/libcomm.h | 1 +
- uuu/buildincmd.h | 1 +
- 2 files changed, 2 insertions(+)
-
-diff --git a/libuuu/libcomm.h b/libuuu/libcomm.h
-index 0afdfa3..38d622d 100644
---- a/libuuu/libcomm.h
-+++ b/libuuu/libcomm.h
-@@ -28,6 +28,7 @@
- * POSSIBILITY OF SUCH DAMAGE.
- *
- */
-+#include <stdint.h>
- #include <string>
- #include <stdarg.h>
- #include <locale>
-diff --git a/uuu/buildincmd.h b/uuu/buildincmd.h
-index 9415117..46286cc 100644
---- a/uuu/buildincmd.h
-+++ b/uuu/buildincmd.h
-@@ -31,6 +31,7 @@
- 
- #pragma once
- 
-+#include <stdint.h>
- #include <map>
- #include <string>
- #include <vector>
--- 
-2.34.1
-
-- 
2.43.0

_______________________________________________
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 1/1] Revert "package/uuu: fix build failure with host gcc 13.x"
  2024-01-27 17:29 [Buildroot] [PATCH 1/1] Revert "package/uuu: fix build failure with host gcc 13.x" Fabrice Fontaine
@ 2024-01-27 18:06 ` Yann E. MORIN
  0 siblings, 0 replies; 2+ messages in thread
From: Yann E. MORIN @ 2024-01-27 18:06 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Dario Binacchi, buildroot

Fabrice, All,

On 2024-01-27 18:29 +0100, Fabrice Fontaine spake thusly:
> This reverts commit 04dfeff6242516a1061973fc7af2cc9c5e3dd4e2 as it
> raises the following build failure because patch has been merged since
> version 1.5.104:

Ah, good catch. I applied that old patch without checking first if the
version was updated since then. My bad...

> Applying 0001-Fix-missing-references.patch using patch:
> patching file libuuu/libcomm.h
> Reversed (or previously applied) patch detected!  Skipping patch.
> 1 out of 1 hunk ignored -- saving rejects to file libuuu/libcomm.h.rej
> patching file uuu/buildincmd.h
> Reversed (or previously applied) patch detected!  Skipping patch.
> 1 out of 1 hunk ignored -- saving rejects to file uuu/buildincmd.h.rej
> 
> Fixes:
>  - http://autobuild.buildroot.org/results/bf7b2206261e3385c567ae4359b0379b03161e3a
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  package/uuu/0001-Fix-missing-references.patch | 40 -------------------
>  1 file changed, 40 deletions(-)
>  delete mode 100644 package/uuu/0001-Fix-missing-references.patch
> 
> diff --git a/package/uuu/0001-Fix-missing-references.patch b/package/uuu/0001-Fix-missing-references.patch
> deleted file mode 100644
> index 140c9755c7..0000000000
> --- a/package/uuu/0001-Fix-missing-references.patch
> +++ /dev/null
> @@ -1,40 +0,0 @@
> -From 24fd043225903247f71ac10666d820277c0b10b1 Mon Sep 17 00:00:00 2001
> -From: nixgnauhcuy <nixgnauhcuy@gmail.com>
> -Date: Tue, 9 May 2023 14:32:33 +0800
> -Subject: [PATCH] Fix missing references
> -
> -Upstream: https://github.com/nxp-imx/mfgtools/commit/24fd043225903247f71ac10666d820277c0b10b1
> -
> -Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
> ----
> - libuuu/libcomm.h | 1 +
> - uuu/buildincmd.h | 1 +
> - 2 files changed, 2 insertions(+)
> -
> -diff --git a/libuuu/libcomm.h b/libuuu/libcomm.h
> -index 0afdfa3..38d622d 100644
> ---- a/libuuu/libcomm.h
> -+++ b/libuuu/libcomm.h
> -@@ -28,6 +28,7 @@
> - * POSSIBILITY OF SUCH DAMAGE.
> - *
> - */
> -+#include <stdint.h>
> - #include <string>
> - #include <stdarg.h>
> - #include <locale>
> -diff --git a/uuu/buildincmd.h b/uuu/buildincmd.h
> -index 9415117..46286cc 100644
> ---- a/uuu/buildincmd.h
> -+++ b/uuu/buildincmd.h
> -@@ -31,6 +31,7 @@
> - 
> - #pragma once
> - 
> -+#include <stdint.h>
> - #include <map>
> - #include <string>
> - #include <vector>
> --- 
> -2.34.1
> -
> -- 
> 2.43.0
> 
> _______________________________________________
> 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

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

end of thread, other threads:[~2024-01-27 18:06 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-27 17:29 [Buildroot] [PATCH 1/1] Revert "package/uuu: fix build failure with host gcc 13.x" Fabrice Fontaine
2024-01-27 18:06 ` Yann E. MORIN

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