diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2017-03-22 14:43:36 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-23 13:19:49 +0000 |
commit | 4581e2c3e65178c3fb38cc0598382c69914abe51 (patch) | |
tree | a0bc64aa95db63e165adfa8a7b22065113686443 /meta/lib/oeqa | |
parent | 0a435c7e6ac88c5e099b12f6a90cd96155fe18f2 (diff) | |
download | poky-4581e2c3e65178c3fb38cc0598382c69914abe51.tar.gz |
sign_rpm.bbclass: do not set/use RPM_GPG_PUBKEY
This is entirely unnecessary (we can ask the signer backend to export the
key to a file when needed), and was causing confusing selftest failures
due to the variable being set from two different places.
[YOCTO #11191]
(From OE-Core rev: 74ea979044368dc28c24325e7e77471b70aa8fe8)
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r-- | meta/lib/oeqa/selftest/signing.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/signing.py b/meta/lib/oeqa/selftest/signing.py index c1dd801400..0ac3d1fac9 100644 --- a/meta/lib/oeqa/selftest/signing.py +++ b/meta/lib/oeqa/selftest/signing.py | |||
@@ -51,7 +51,6 @@ class Signing(oeSelfTest): | |||
51 | feature = 'INHERIT += "sign_rpm"\n' | 51 | feature = 'INHERIT += "sign_rpm"\n' |
52 | feature += 'RPM_GPG_PASSPHRASE = "test123"\n' | 52 | feature += 'RPM_GPG_PASSPHRASE = "test123"\n' |
53 | feature += 'RPM_GPG_NAME = "testuser"\n' | 53 | feature += 'RPM_GPG_NAME = "testuser"\n' |
54 | feature += 'RPM_GPG_PUBKEY = "%s"\n' % self.pub_key_path | ||
55 | feature += 'GPG_PATH = "%s"\n' % self.gpg_dir | 54 | feature += 'GPG_PATH = "%s"\n' % self.gpg_dir |
56 | 55 | ||
57 | self.write_config(feature) | 56 | self.write_config(feature) |