diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2015-10-16 13:37:32 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-10-27 07:24:25 +0000 |
commit | 787253fd4efcd18d46b3bcf794e3d54a93ef9f19 (patch) | |
tree | 6df91b6462ed8abd0eef94ad0f6f896eecc6e695 /meta/classes/sign_package_feed.bbclass | |
parent | 579e2547b857e2973c5fff3b14066ea4d79b1268 (diff) | |
download | poky-787253fd4efcd18d46b3bcf794e3d54a93ef9f19.tar.gz |
package signing: automatically export public keys
Automatically export public key(s) of the signing key(s) from the gpg
keyring. Adds a new simple recipe that does the actual task of exporting
the keys. This patch makes the RPM_GPG_PUBKEY and PACKAGE_FEED_GPG
PUBKEY settings obsolete.
(From OE-Core rev: 23b30c34581948e1ea02c25cbf7b9194d7e49fb8)
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/sign_package_feed.bbclass')
-rw-r--r-- | meta/classes/sign_package_feed.bbclass | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/meta/classes/sign_package_feed.bbclass b/meta/classes/sign_package_feed.bbclass index 8877d905f7..4263810028 100644 --- a/meta/classes/sign_package_feed.bbclass +++ b/meta/classes/sign_package_feed.bbclass | |||
@@ -21,4 +21,11 @@ python () { | |||
21 | for var in ('PACKAGE_FEED_GPG_NAME', 'PACKAGE_FEED_GPG_PASSPHRASE_FILE'): | 21 | for var in ('PACKAGE_FEED_GPG_NAME', 'PACKAGE_FEED_GPG_PASSPHRASE_FILE'): |
22 | if not d.getVar(var, True): | 22 | if not d.getVar(var, True): |
23 | raise_sanity_error("You need to define %s in the config" % var, d) | 23 | raise_sanity_error("You need to define %s in the config" % var, d) |
24 | |||
25 | # Set expected location of the public key | ||
26 | d.setVar('PACKAGE_FEED_GPG_PUBKEY', | ||
27 | os.path.join(d.getVar('STAGING_ETCDIR_NATIVE'), | ||
28 | 'PACKAGE-FEED-GPG-PUBKEY')) | ||
24 | } | 29 | } |
30 | |||
31 | do_package_index[depends] += "signing-keys:do_export_public_keys" | ||