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

git at git.openembedded.org git at git.openembedded.org
Tue Mar 20 10:01:00 UTC 2018


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

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

commit ad76fa92c3a5be38962aff09df070ffd9756f777
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