[gnome-continuous-yocto/gnomeostree-3.28-rocko: 203/218] ca-certificates: run postinst script only for -target package



commit d3c573ee1adda7e5535ef77b8c3e17c94db5ed24
Author: Alexander Kanavin <alexander kanavin linux intel com>
Date:   Thu Mar 15 13:27:06 2018 +0200

    ca-certificates: run postinst script only for -target package
    
    Nativesdk package has a special arrangement where the same thing is done
    in do_install(). It was assumed (in the comment) that postinsts don't run when
    installing nativesdk packages, but this was incorrect: they are run, but
    any failures were previously silently ignored. Now this missing failure reporting has
    been fixed, and so we get to see the failures.
    
    (From OE-Core rev: 8ebb695c1429f8d57d655072a362a4f176258699)
    
    (From OE-Core rev: 31f69f8fd8a08fadee0ea288214aa33c33ad6912)
    
    Signed-off-by: Alexander Kanavin <alexander kanavin linux intel com>
    Signed-off-by: Ross Burton <ross burton intel com>
    Signed-off-by: Richard Purdie <richard purdie linuxfoundation org>
    Signed-off-by: Armin Kuster <akuster808 gmail com>
    Signed-off-by: Richard Purdie <richard purdie linuxfoundation org>

 .../ca-certificates/ca-certificates_20170717.bb    |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)
---
diff --git a/meta/recipes-support/ca-certificates/ca-certificates_20170717.bb 
b/meta/recipes-support/ca-certificates/ca-certificates_20170717.bb
index 7d59fa6..e4ffbd3 100644
--- a/meta/recipes-support/ca-certificates/ca-certificates_20170717.bb
+++ b/meta/recipes-support/ca-certificates/ca-certificates_20170717.bb
@@ -64,13 +64,14 @@ do_install_append_class-target () {
         ${D}${mandir}/man8/update-ca-certificates.8
 }
 
-pkg_postinst_${PN} () {
+pkg_postinst_${PN}_class-target () {
     SYSROOT="$D" $D${sbindir}/update-ca-certificates
 }
 
 CONFFILES_${PN} += "${sysconfdir}/ca-certificates.conf"
 
-# Postinsts don't seem to be run for nativesdk packages when populating SDKs.
+# Rather than make a postinst script that works for both target and nativesdk,
+# we just run update-ca-certificate from do_install() for nativesdk.
 CONFFILES_${PN}_append_class-nativesdk = " ${sysconfdir}/ssl/certs/ca-certificates.crt"
 do_install_append_class-nativesdk () {
     SYSROOT="${D}${SDKPATHNATIVE}" ${D}${sbindir}/update-ca-certificates


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]