summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>2017-03-03 14:37:24 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-14 15:21:07 +0000
commitfd78c35086036bc3fd981bc25a51fc9ce6cc66f5 (patch)
tree37faf02212f3482dac4a5ad41064c624c3c47fbc /meta/lib
parent1038cb98e65b142f36a13cf83ddb787f29b4d6e0 (diff)
downloadpoky-fd78c35086036bc3fd981bc25a51fc9ce6cc66f5.tar.gz
lib/oe/gpg_sign: sign rpm packages in chunks of 100
Split the file list into chunks in order to avoid "OSError: [Errno 7] Argument list too long" This would happend when a package has huge amount of subpackages, e.g. glibc-locale. [YOCTO #11069] (From OE-Core rev: 786eafd7b1080eccfe1c7d417eede20d75d80cb0) Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> (cherry picked from commit 874f5016fd4dc76bc867b68470297fe59e78a9e6) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oe/gpg_sign.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/meta/lib/oe/gpg_sign.py b/meta/lib/oe/gpg_sign.py
index 38eb0cb137..683ae5bf43 100644
--- a/meta/lib/oe/gpg_sign.py
+++ b/meta/lib/oe/gpg_sign.py
@@ -35,11 +35,12 @@ class LocalSigner(object):
35 cmd += "--define '%%__gpg %s' " % self.gpg_bin 35 cmd += "--define '%%__gpg %s' " % self.gpg_bin
36 if self.gpg_path: 36 if self.gpg_path:
37 cmd += "--define '_gpg_path %s' " % self.gpg_path 37 cmd += "--define '_gpg_path %s' " % self.gpg_path
38 cmd += ' '.join(files)
39 38
40 status, output = oe.utils.getstatusoutput(cmd) 39 # Sign in chunks of 100 packages
41 if status: 40 for i in range(0, len(files), 100):
42 raise bb.build.FuncFailed("Failed to sign RPM packages: %s" % output) 41 status, output = oe.utils.getstatusoutput(cmd + ' '.join(files[i:i+100]))
42 if status:
43 raise bb.build.FuncFailed("Failed to sign RPM packages: %s" % output)
43 44
44 def detach_sign(self, input_file, keyid, passphrase_file, passphrase=None, armor=True): 45 def detach_sign(self, input_file, keyid, passphrase_file, passphrase=None, armor=True):
45 """Create a detached signature of a file""" 46 """Create a detached signature of a file"""