* [PATCH 1/2] subversion: add packageconfig boost
@ 2019-07-26 9:34 kai.kang
2019-07-26 9:34 ` [PATCH 2/2] epiphany: set imcompatible with tune mips kai.kang
0 siblings, 1 reply; 5+ messages in thread
From: kai.kang @ 2019-07-26 9:34 UTC (permalink / raw)
To: openembedded-core
From: Kai Kang <kai.kang@windriver.com>
subversion checks whether build with boost during do_configure. If boost
exists on build machine, it causes configure-unsafe QA issue:
| ERROR: subversion-1.12.0-r0 do_configure: QA Issue: This autoconf log
| indicates errors, it looked at host include and/or library paths
| while determining system capabilities.
| Rerun configure task after fixing this. [configure-unsafe]
Add a PACKAGECONFIG 'boost' to fix the issue.
Signed-off-by: Kai Kang <kai.kang@windriver.com>
---
meta/recipes-devtools/subversion/subversion_1.12.0.bb | 1 +
1 file changed, 1 insertion(+)
diff --git a/meta/recipes-devtools/subversion/subversion_1.12.0.bb b/meta/recipes-devtools/subversion/subversion_1.12.0.bb
index 3d0f3e688d..f1ac1dcfdc 100644
--- a/meta/recipes-devtools/subversion/subversion_1.12.0.bb
+++ b/meta/recipes-devtools/subversion/subversion_1.12.0.bb
@@ -23,6 +23,7 @@ CVE_PRODUCT = "apache:subversion"
PACKAGECONFIG ?= ""
+PACKAGECONFIG[boost] = "--with-boost=${RECIPE_SYSROOT}${exec_prefix},--without-boost,boost"
PACKAGECONFIG[sasl] = "--with-sasl,--without-sasl,cyrus-sasl"
PACKAGECONFIG[gnome-keyring] = "--with-gnome-keyring,--without-gnome-keyring,glib-2.0 gnome-keyring"
--
2.20.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/2] epiphany: set imcompatible with tune mips
2019-07-26 9:34 [PATCH 1/2] subversion: add packageconfig boost kai.kang
@ 2019-07-26 9:34 ` kai.kang
2019-07-26 10:09 ` Alexander Kanavin
0 siblings, 1 reply; 5+ messages in thread
From: kai.kang @ 2019-07-26 9:34 UTC (permalink / raw)
To: openembedded-core
From: Kai Kang <kai.kang@windriver.com>
webkitgtk doesn't work with tune mips and set imcompatible with it.
epiphany depends on webkitgtk and mask it too.
Signed-off-by: Kai Kang <kai.kang@windriver.com>
---
meta/recipes-gnome/epiphany/epiphany_3.32.3.bb | 3 +++
1 file changed, 3 insertions(+)
diff --git a/meta/recipes-gnome/epiphany/epiphany_3.32.3.bb b/meta/recipes-gnome/epiphany/epiphany_3.32.3.bb
index de1b6e2f84..d1c6af52ed 100644
--- a/meta/recipes-gnome/epiphany/epiphany_3.32.3.bb
+++ b/meta/recipes-gnome/epiphany/epiphany_3.32.3.bb
@@ -16,5 +16,8 @@ SRC_URI = "${GNOME_MIRROR}/${GNOMEBN}/${@gnome_verdir("${PV}")}/${GNOMEBN}-${PV}
SRC_URI[archive.md5sum] = "c4976507bf3de69f27a050ad09531f5a"
SRC_URI[archive.sha256sum] = "3ccb6859a43b839b714aa425cb185056f1e8604adbaab6a1bc179d1ba641a33f"
+# webkitgtk doesn't work with tune 'mips'
+COMPATIBLE_HOST_mipsarch = "${@bb.utils.contains('DEFAULTTUNE', 'mips', 'null', 'mips.*-linux', d)}"
+
FILES_${PN} += "${datadir}/dbus-1 ${datadir}/gnome-shell/search-providers ${datadir}/metainfo"
RDEPENDS_${PN} = "iso-codes adwaita-icon-theme gsettings-desktop-schemas"
--
2.20.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] epiphany: set imcompatible with tune mips
2019-07-26 9:34 ` [PATCH 2/2] epiphany: set imcompatible with tune mips kai.kang
@ 2019-07-26 10:09 ` Alexander Kanavin
2019-07-27 1:23 ` Kang Kai
0 siblings, 1 reply; 5+ messages in thread
From: Alexander Kanavin @ 2019-07-26 10:09 UTC (permalink / raw)
To: Kai Kang; +Cc: OE-core
[-- Attachment #1: Type: text/plain, Size: 1688 bytes --]
Wait, does this mean that the line must be inserted into all of the recipes
that depend on webkitgtk (wihch is very awkward)? Shouldn't just the
webkitgtk recipe fix be enough?
Alex
On Fri, 26 Jul 2019 at 12:35, <kai.kang@windriver.com> wrote:
> From: Kai Kang <kai.kang@windriver.com>
>
> webkitgtk doesn't work with tune mips and set imcompatible with it.
> epiphany depends on webkitgtk and mask it too.
>
> Signed-off-by: Kai Kang <kai.kang@windriver.com>
> ---
> meta/recipes-gnome/epiphany/epiphany_3.32.3.bb | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/meta/recipes-gnome/epiphany/epiphany_3.32.3.bb
> b/meta/recipes-gnome/epiphany/epiphany_3.32.3.bb
> index de1b6e2f84..d1c6af52ed 100644
> --- a/meta/recipes-gnome/epiphany/epiphany_3.32.3.bb
> +++ b/meta/recipes-gnome/epiphany/epiphany_3.32.3.bb
> @@ -16,5 +16,8 @@ SRC_URI =
> "${GNOME_MIRROR}/${GNOMEBN}/${@gnome_verdir("${PV}")}/${GNOMEBN}-${PV}
> SRC_URI[archive.md5sum] = "c4976507bf3de69f27a050ad09531f5a"
> SRC_URI[archive.sha256sum] =
> "3ccb6859a43b839b714aa425cb185056f1e8604adbaab6a1bc179d1ba641a33f"
>
> +# webkitgtk doesn't work with tune 'mips'
> +COMPATIBLE_HOST_mipsarch = "${@bb.utils.contains('DEFAULTTUNE', 'mips',
> 'null', 'mips.*-linux', d)}"
> +
> FILES_${PN} += "${datadir}/dbus-1 ${datadir}/gnome-shell/search-providers
> ${datadir}/metainfo"
> RDEPENDS_${PN} = "iso-codes adwaita-icon-theme gsettings-desktop-schemas"
> --
> 2.20.0
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>
[-- Attachment #2: Type: text/html, Size: 2889 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] epiphany: set imcompatible with tune mips
2019-07-26 10:09 ` Alexander Kanavin
@ 2019-07-27 1:23 ` Kang Kai
2019-07-29 11:37 ` Adrian Bunk
0 siblings, 1 reply; 5+ messages in thread
From: Kang Kai @ 2019-07-27 1:23 UTC (permalink / raw)
To: Alexander Kanavin; +Cc: OE-core
[-- Attachment #1: Type: text/plain, Size: 2411 bytes --]
On 2019/7/26 下午6:09, Alexander Kanavin wrote:
> Wait, does this mean that the line must be inserted into all of the
> recipes that depend on webkitgtk (wihch is very awkward)? Shouldn't
> just the webkitgtk recipe fix be enough?
Unfortunately, yes. But there is only one recipe epiphany in oe-core. I
think it doesn't need to pay too much attention for mips arch too.
Kai
>
> Alex
>
> On Fri, 26 Jul 2019 at 12:35, <kai.kang@windriver.com
> <mailto:kai.kang@windriver.com>> wrote:
>
> From: Kai Kang <kai.kang@windriver.com
> <mailto:kai.kang@windriver.com>>
>
> webkitgtk doesn't work with tune mips and set imcompatible with it.
> epiphany depends on webkitgtk and mask it too.
>
> Signed-off-by: Kai Kang <kai.kang@windriver.com
> <mailto:kai.kang@windriver.com>>
> ---
> meta/recipes-gnome/epiphany/epiphany_3.32.3.bb
> <http://epiphany_3.32.3.bb> | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/meta/recipes-gnome/epiphany/epiphany_3.32.3.bb
> <http://epiphany_3.32.3.bb>
> b/meta/recipes-gnome/epiphany/epiphany_3.32.3.bb
> <http://epiphany_3.32.3.bb>
> index de1b6e2f84..d1c6af52ed 100644
> --- a/meta/recipes-gnome/epiphany/epiphany_3.32.3.bb
> <http://epiphany_3.32.3.bb>
> +++ b/meta/recipes-gnome/epiphany/epiphany_3.32.3.bb
> <http://epiphany_3.32.3.bb>
> @@ -16,5 +16,8 @@ SRC_URI =
> "${GNOME_MIRROR}/${GNOMEBN}/${@gnome_verdir("${PV}")}/${GNOMEBN}-${PV}
> SRC_URI[archive.md5sum] = "c4976507bf3de69f27a050ad09531f5a"
> SRC_URI[archive.sha256sum] =
> "3ccb6859a43b839b714aa425cb185056f1e8604adbaab6a1bc179d1ba641a33f"
>
> +# webkitgtk doesn't work with tune 'mips'
> +COMPATIBLE_HOST_mipsarch = "${@bb.utils.contains('DEFAULTTUNE',
> 'mips', 'null', 'mips.*-linux', d)}"
> +
> FILES_${PN} += "${datadir}/dbus-1
> ${datadir}/gnome-shell/search-providers ${datadir}/metainfo"
> RDEPENDS_${PN} = "iso-codes adwaita-icon-theme
> gsettings-desktop-schemas"
> --
> 2.20.0
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> <mailto:Openembedded-core@lists.openembedded.org>
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>
--
Kai Kang
[-- Attachment #2: Type: text/html, Size: 4796 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] epiphany: set imcompatible with tune mips
2019-07-27 1:23 ` Kang Kai
@ 2019-07-29 11:37 ` Adrian Bunk
0 siblings, 0 replies; 5+ messages in thread
From: Adrian Bunk @ 2019-07-29 11:37 UTC (permalink / raw)
To: Kang Kai; +Cc: OE-core
On Sat, Jul 27, 2019 at 09:23:01AM +0800, Kang Kai wrote:
> On 2019/7/26 下午6:09, Alexander Kanavin wrote:
> > Wait, does this mean that the line must be inserted into all of the
> > recipes that depend on webkitgtk (wihch is very awkward)? Shouldn't just
> > the webkitgtk recipe fix be enough?
>
> Unfortunately, yes. But there is only one recipe epiphany in oe-core. I
> think it doesn't need to pay too much attention for mips arch too.
I just sent a patch to re-enable building webkitgtk on mips.
Any objection to that approach?
> Kai
cu
Adrian
--
"Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
"Only a promise," Lao Er said.
Pearl S. Buck - Dragon Seed
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2019-07-29 11:37 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-07-26 9:34 [PATCH 1/2] subversion: add packageconfig boost kai.kang
2019-07-26 9:34 ` [PATCH 2/2] epiphany: set imcompatible with tune mips kai.kang
2019-07-26 10:09 ` Alexander Kanavin
2019-07-27 1:23 ` Kang Kai
2019-07-29 11:37 ` Adrian Bunk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox