[oe-commits] [openembedded-core] 21/32: patch.py: Use git format-patch with --no-signature --no-numbered params

git at git.openembedded.org git at git.openembedded.org
Mon Mar 19 23:05:55 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit fb662fcde7e471413fc14ed01125d5ece9d9d260
Author: Martin Jansa <martin.jansa at gmail.com>
AuthorDate: Thu Mar 15 22:50:10 2018 +0000

    patch.py: Use git format-patch with --no-signature --no-numbered params
    
    * --no-signature saves unnecessary .patch modifications when executed on
      host with different git version
    * --no-numbered saves unnecessary .patch modifications when number of the
      applied patches is changed (the number is still in the filename so the
      order how they should be applied is still preserved)
    * both options exist for very long time, I've tested them with git 1.9.1
      from Ubuntu 14.04 and I'm quite sure they were available even in much
      older releases, so there shouldn't be any issue on relatively new sanity
      tested distros
    
    Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 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 bfa7d21..af7aa52 100644
--- a/meta/lib/oe/patch.py
+++ b/meta/lib/oe/patch.py
@@ -448,7 +448,7 @@ class GitApplyTree(PatchTree):
         import re
         tempdir = tempfile.mkdtemp(prefix='oepatch')
         try:
-            shellcmd = ["git", "format-patch", startcommit, "-o", tempdir]
+            shellcmd = ["git", "format-patch", "--no-signature", "--no-numbered", startcommit, "-o", tempdir]
             if paths:
                 shellcmd.append('--')
                 shellcmd.extend(paths)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list