All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] lib/oe/patch: handle creating patches for CRLF sources
@ 2023-11-27 13:49 Yoann Congal
  2023-12-05  7:48 ` [OE-core] " Alexandre Belloni
  0 siblings, 1 reply; 3+ messages in thread
From: Yoann Congal @ 2023-11-27 13:49 UTC (permalink / raw)
  To: openembedded-core; +Cc: Yoann Congal

Using devtool to patch CRLF based sources creates patch files which have
mixed end of lines : LF for headers and CRLF for source context and
modified lines.

Python open(..., newline=None) (default for newline arg)does detect
end-of-line in this mixed file but only outputs LF EOL data. This
result in patch files that does not apply on the original sources.

Switching to open(..., newline='') allows to detect end-of-line but keep
the original end-of-line intact. This generate correct patches for CRLF
based sources.

Fixes [YOCTO #15285]

Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
---
 meta/lib/oe/patch.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oe/patch.py b/meta/lib/oe/patch.py
index ff9afc9df9..7bf660978e 100644
--- a/meta/lib/oe/patch.py
+++ b/meta/lib/oe/patch.py
@@ -477,7 +477,7 @@ class GitApplyTree(PatchTree):
                         patchlines = []
                         outfile = None
                         try:
-                            with open(srcfile, 'r', encoding=encoding) as f:
+                            with open(srcfile, 'r', encoding=encoding, newline='') as f:
                                 for line in f:
                                     if line.startswith(GitApplyTree.patch_line_prefix):
                                         outfile = line.split()[-1].strip()
-- 
2.30.2



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

end of thread, other threads:[~2023-12-05  8:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-27 13:49 [PATCH] lib/oe/patch: handle creating patches for CRLF sources Yoann Congal
2023-12-05  7:48 ` [OE-core] " Alexandre Belloni
2023-12-05  8:11   ` Yoann CONGAL

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.