* [PATCH 0/1] Fix gsettings-data-convert seg fault @ 2011-12-27 13:06 edwin.zhai 2011-12-27 13:06 ` [PATCH 1/1] gnome-keyring: fix gsettings_data_convert " edwin.zhai 0 siblings, 1 reply; 3+ messages in thread From: edwin.zhai @ 2011-12-27 13:06 UTC (permalink / raw) To: openembedded-core From: Zhai Edwin <edwin.zhai@intel.com> All, This is the fix for [YOCTO #1779]. Seg fault comes from missing of "gschemas.compiled" made by glib-compile-schemas. Pls. help to pull. Thanks, Edwin The following changes since commit 0ef108a0152bb4893741ac95857525fc50b8d3a6: self-hosted-image: Add builder user and mini X (2011-12-22 19:28:56 +0800) are available in the git repository at: git://git.pokylinux.org/poky-contrib gzhai/build-appliance2 http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=gzhai/build-appliance2 Zhai Edwin (1): gnome-keyring: fix gsettings_data_convert seg fault meta/recipes-gnome/gnome/gnome-keyring_2.32.1.bb | 12 ++++++++++-- 1 files changed, 10 insertions(+), 2 deletions(-) ^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 1/1] gnome-keyring: fix gsettings_data_convert seg fault 2011-12-27 13:06 [PATCH 0/1] Fix gsettings-data-convert seg fault edwin.zhai @ 2011-12-27 13:06 ` edwin.zhai 2011-12-27 18:42 ` Saul Wold 0 siblings, 1 reply; 3+ messages in thread From: edwin.zhai @ 2011-12-27 13:06 UTC (permalink / raw) To: openembedded-core From: Zhai Edwin <edwin.zhai@intel.com> gsttings_data_convert cause seg fault as gnome-keyring's schema is not installed properly. As a fix, running glib-compile-schemas from glib-utils to made "gschemas.compiled". [YOCTO #1779] got fixed. Signed-off-by: Zhai Edwin <edwin.zhai@intel.com> --- meta/recipes-gnome/gnome/gnome-keyring_2.32.1.bb | 12 ++++++++++-- 1 files changed, 10 insertions(+), 2 deletions(-) diff --git a/meta/recipes-gnome/gnome/gnome-keyring_2.32.1.bb b/meta/recipes-gnome/gnome/gnome-keyring_2.32.1.bb index cc97225..a92ac4d 100644 --- a/meta/recipes-gnome/gnome/gnome-keyring_2.32.1.bb +++ b/meta/recipes-gnome/gnome/gnome-keyring_2.32.1.bb @@ -11,12 +11,12 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ SECTION = "x11/gnome" -PR = "r3" +PR = "r4" inherit autotools gnome pkgconfig DEPENDS = "gtk+ libgcrypt libtasn1 libtasn1-native gconf ${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}" -RDEPENDS_${PN} = "libgnome-keyring" +RDEPENDS_${PN} = "libgnome-keyring glib-2.0-utils" EXTRA_OECONF = "--disable-gtk-doc ${@base_contains('DISTRO_FEATURES', 'pam', '--enable-pam --with-pam-dir=${base_libdir}/security', '--disable-pam', d)}" @@ -30,6 +30,14 @@ do_install_append () { install -m 0644 ${WORKDIR}/org.gnome.keyring.service ${D}${datadir}/dbus-1/services } +pkg_postinst_gnome-keyring () { +if [ "x$D" != "x" ]; then + exit 1 +fi + +test -x ${bindir}/glib-compile-schemas && glib-compile-schemas ${datadir}/glib-2.0/schemas +} + FILES_${PN} += "${datadir}/dbus-1/services ${datadir}/gcr ${base_libdir}/security/*.so" FILES_${PN}-dbg += "${libdir}/gnome-keyring/standalone/.debug/ ${base_libdir}/security/*.la" FILES_${PN}-dbg += "${libdir}/gnome-keyring/devel/.debug/ ${base_libdir}/security/.debug" -- 1.7.1 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/1] gnome-keyring: fix gsettings_data_convert seg fault 2011-12-27 13:06 ` [PATCH 1/1] gnome-keyring: fix gsettings_data_convert " edwin.zhai @ 2011-12-27 18:42 ` Saul Wold 0 siblings, 0 replies; 3+ messages in thread From: Saul Wold @ 2011-12-27 18:42 UTC (permalink / raw) To: Patches and discussions about the oe-core layer On 12/27/2011 05:06 AM, edwin.zhai@intel.com wrote: > From: Zhai Edwin<edwin.zhai@intel.com> > > gsttings_data_convert cause seg fault as gnome-keyring's schema is not > installed properly. As a fix, running glib-compile-schemas from glib-utils to > made "gschemas.compiled". > > [YOCTO #1779] got fixed. > > Signed-off-by: Zhai Edwin<edwin.zhai@intel.com> > --- > meta/recipes-gnome/gnome/gnome-keyring_2.32.1.bb | 12 ++++++++++-- > 1 files changed, 10 insertions(+), 2 deletions(-) > > diff --git a/meta/recipes-gnome/gnome/gnome-keyring_2.32.1.bb b/meta/recipes-gnome/gnome/gnome-keyring_2.32.1.bb > index cc97225..a92ac4d 100644 > --- a/meta/recipes-gnome/gnome/gnome-keyring_2.32.1.bb > +++ b/meta/recipes-gnome/gnome/gnome-keyring_2.32.1.bb > @@ -11,12 +11,12 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ > > SECTION = "x11/gnome" > > -PR = "r3" > +PR = "r4" > > inherit autotools gnome pkgconfig > > DEPENDS = "gtk+ libgcrypt libtasn1 libtasn1-native gconf ${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}" > -RDEPENDS_${PN} = "libgnome-keyring" > +RDEPENDS_${PN} = "libgnome-keyring glib-2.0-utils" > > EXTRA_OECONF = "--disable-gtk-doc ${@base_contains('DISTRO_FEATURES', 'pam', '--enable-pam --with-pam-dir=${base_libdir}/security', '--disable-pam', d)}" > > @@ -30,6 +30,14 @@ do_install_append () { > install -m 0644 ${WORKDIR}/org.gnome.keyring.service ${D}${datadir}/dbus-1/services > } > > +pkg_postinst_gnome-keyring () { I think you can use pkg_postinst_${PN} > +if [ "x$D" != "x" ]; then > + exit 1 > +fi > + > +test -x ${bindir}/glib-compile-schemas&& glib-compile-schemas ${datadir}/glib-2.0/schemas > +} > + I think you are missing tabs here, I believe the standard for script functions is to have tabs not spaces also. Sau! > FILES_${PN} += "${datadir}/dbus-1/services ${datadir}/gcr ${base_libdir}/security/*.so" > FILES_${PN}-dbg += "${libdir}/gnome-keyring/standalone/.debug/ ${base_libdir}/security/*.la" > FILES_${PN}-dbg += "${libdir}/gnome-keyring/devel/.debug/ ${base_libdir}/security/.debug" ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-12-27 18:49 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2011-12-27 13:06 [PATCH 0/1] Fix gsettings-data-convert seg fault edwin.zhai 2011-12-27 13:06 ` [PATCH 1/1] gnome-keyring: fix gsettings_data_convert " edwin.zhai 2011-12-27 18:42 ` Saul Wold
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox