All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][gatesgarth][PATCH 1/3] uml-utilities: fix installed-vs-shipped with usrmerge
@ 2021-04-06 18:42 Martin Jansa
  2021-04-06 18:42 ` [meta-oe][gatesgarth][PATCH 2/3] telepathy-glib: respect GI_DATA_ENABLED when enabling vala-bindings Martin Jansa
  2021-04-06 18:42 ` [meta-oe][gatesgarth][PATCH 3/3] libyui: switch to libyui-old repo which still has this SRCREV Martin Jansa
  0 siblings, 2 replies; 3+ messages in thread
From: Martin Jansa @ 2021-04-06 18:42 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Martin Jansa

* fixes:
  ERROR: uml-utilities-20040406-r1 do_package: QA Issue: uml-utilities: Files/directories were installed but not shipped in any package:
    /usr/lib/uml/port-helper
  Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install.
  uml-utilities: 1 installed and not shipped files. [installed-vs-shipped]

* pass LIB_DIR instead of using default value from Makefile:
  $ grep LIB_DIR.*= tools/port-helper/Makefile
  LIB_DIR ?= /usr/lib/uml

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 .../recipes-extended/uml-utilities/uml-utilities_20040406.bb | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/meta-oe/recipes-extended/uml-utilities/uml-utilities_20040406.bb b/meta-oe/recipes-extended/uml-utilities/uml-utilities_20040406.bb
index 8e00cb3ea4..f86b2b912e 100644
--- a/meta-oe/recipes-extended/uml-utilities/uml-utilities_20040406.bb
+++ b/meta-oe/recipes-extended/uml-utilities/uml-utilities_20040406.bb
@@ -18,15 +18,14 @@ S = "${WORKDIR}/tools"
 inherit update-alternatives
 
 do_compile() {
-    oe_runmake
+    oe_runmake LIB_DIR=${libdir}/uml
 }
 
 do_install() {
     oe_runmake install DESTDIR=${D}
 }
 
-FILES_${PN} += "${exec_prefix}${nonarch_base_libdir}"
-FILES_${PN}-dbg += "${exec_prefix}${nonarch_base_libdir}/uml/.debug"
+FILES_${PN} += "${libdir}/uml"
 
 ALTERNATIVE_${PN} = "tunctl"
 ALTERNATIVE_LINK_NAME[tunctl] = "${bindir}/tunctl"
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [meta-oe][gatesgarth][PATCH 2/3] telepathy-glib: respect GI_DATA_ENABLED when enabling vala-bindings
  2021-04-06 18:42 [meta-oe][gatesgarth][PATCH 1/3] uml-utilities: fix installed-vs-shipped with usrmerge Martin Jansa
@ 2021-04-06 18:42 ` Martin Jansa
  2021-04-06 18:42 ` [meta-oe][gatesgarth][PATCH 3/3] libyui: switch to libyui-old repo which still has this SRCREV Martin Jansa
  1 sibling, 0 replies; 3+ messages in thread
From: Martin Jansa @ 2021-04-06 18:42 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Martin Jansa, Khem Raj

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 .../recipes-connectivity/telepathy/telepathy-glib_0.24.1.bb   | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/meta-oe/recipes-connectivity/telepathy/telepathy-glib_0.24.1.bb b/meta-oe/recipes-connectivity/telepathy/telepathy-glib_0.24.1.bb
index 2b05c61a0d..4d4e841f62 100644
--- a/meta-oe/recipes-connectivity/telepathy/telepathy-glib_0.24.1.bb
+++ b/meta-oe/recipes-connectivity/telepathy/telepathy-glib_0.24.1.bb
@@ -12,7 +12,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=e413d83db6ee8f2c8e6055719096a48e"
 
 inherit autotools pkgconfig gettext gobject-introspection vala
 
-EXTRA_OECONF = "--enable-vala-bindings"
+# Respect GI_DATA_ENABLED value when enabling vala-bindings:
+# configure: error: GObject-Introspection must be enabled for Vala bindings
+EXTRA_OECONF = "${@bb.utils.contains('GI_DATA_ENABLED', 'True', '--enable-vala-bindings', '--disable-vala-bindings', d)}"
 
 FILES_${PN} += "${datadir}/telepathy \
                 ${datadir}/dbus-1"
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [meta-oe][gatesgarth][PATCH 3/3] libyui: switch to libyui-old repo which still has this SRCREV
  2021-04-06 18:42 [meta-oe][gatesgarth][PATCH 1/3] uml-utilities: fix installed-vs-shipped with usrmerge Martin Jansa
  2021-04-06 18:42 ` [meta-oe][gatesgarth][PATCH 2/3] telepathy-glib: respect GI_DATA_ENABLED when enabling vala-bindings Martin Jansa
@ 2021-04-06 18:42 ` Martin Jansa
  1 sibling, 0 replies; 3+ messages in thread
From: Martin Jansa @ 2021-04-06 18:42 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Martin Jansa

* de9134007d2d029fe5809ce48f57fe218e6ffe16 doesn't exist in current repo:
  libyui$ git branch -a --contains de9134007d2d029fe5809ce48f57fe218e6ffe16
  error: no such commit de9134007d2d029fe5809ce48f57fe218e6ffe16

* there are no common commits in the new libyui repo, but luckily old
  repo is kept as
  https://github.com/libyui/libyui-old
  similarly libyui-ncurses now contains only README about being obsolete in:
  https://github.com/libyui/libyui-ncurses
  but at least it wasn't rewritten to have the new content

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-oe/recipes-graphics/libyui/libyui_3.10.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-graphics/libyui/libyui_3.10.0.bb b/meta-oe/recipes-graphics/libyui/libyui_3.10.0.bb
index d7f529e313..286d3ac911 100644
--- a/meta-oe/recipes-graphics/libyui/libyui_3.10.0.bb
+++ b/meta-oe/recipes-graphics/libyui/libyui_3.10.0.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://COPYING.gpl-3;md5=d32239bcb673463ab874e80d47fae504 \
                     file://COPYING.lgpl-3;md5=e6a600fd5e1d9cbde2d983680233ad02 \
                    "
 
-SRC_URI = "git://github.com/libyui/libyui.git \
+SRC_URI = "git://github.com/libyui/libyui-old.git \
            file://0001-Fix-build-with-clang.patch \
            file://0001-Use-relative-install-paths-for-CMake.patch \
            "
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-04-06 18:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-06 18:42 [meta-oe][gatesgarth][PATCH 1/3] uml-utilities: fix installed-vs-shipped with usrmerge Martin Jansa
2021-04-06 18:42 ` [meta-oe][gatesgarth][PATCH 2/3] telepathy-glib: respect GI_DATA_ENABLED when enabling vala-bindings Martin Jansa
2021-04-06 18:42 ` [meta-oe][gatesgarth][PATCH 3/3] libyui: switch to libyui-old repo which still has this SRCREV Martin Jansa

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.