All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] Fix some dependencies and QA Issues
@ 2016-04-26  8:48 Maxin B. John
  2016-04-26  8:48 ` [PATCH 1/3] popt: fix dependencies and QA Issue Maxin B. John
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Maxin B. John @ 2016-04-26  8:48 UTC (permalink / raw)
  To: openembedded-core

Fix for some QA issues observed while building core-image-minimal with uclibc

Maxin B. John (3):
  popt: fix dependencies and QA Issue
  bash: fix dependencies and QA Issue
  libxml2: fix dependencies and QA Issues

 meta/recipes-core/libxml/libxml2_2.9.3.bb | 2 +-
 meta/recipes-extended/bash/bash.inc       | 2 +-
 meta/recipes-support/popt/popt_1.16.bb    | 2 ++
 3 files changed, 4 insertions(+), 2 deletions(-)

-- 
2.4.0



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

* [PATCH 1/3] popt: fix dependencies and QA Issue
  2016-04-26  8:48 [PATCH 0/3] Fix some dependencies and QA Issues Maxin B. John
@ 2016-04-26  8:48 ` Maxin B. John
  2016-04-26  8:48 ` [PATCH 2/3] bash: " Maxin B. John
  2016-04-26  8:48 ` [PATCH 3/3] libxml2: fix dependencies and QA Issues Maxin B. John
  2 siblings, 0 replies; 4+ messages in thread
From: Maxin B. John @ 2016-04-26  8:48 UTC (permalink / raw)
  To: openembedded-core

Fix the following QA warning:

WARNING: popt-1.16-r3 do_package_qa: QA Issue: popt rdepends on
libiconv, but it isn't a build dependency, missing libiconv in DEPENDS
or PACKAGECONFIG? [build-deps]

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/recipes-support/popt/popt_1.16.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/recipes-support/popt/popt_1.16.bb b/meta/recipes-support/popt/popt_1.16.bb
index cb13a815..478288f 100644
--- a/meta/recipes-support/popt/popt_1.16.bb
+++ b/meta/recipes-support/popt/popt_1.16.bb
@@ -6,6 +6,8 @@ LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=cb0613c30af2a8249b8dcc67d3edb06d"
 PR = "r3"
 
+DEPENDS = "virtual/libiconv"
+
 SRC_URI = "http://rpm5.org/files/popt/popt-${PV}.tar.gz \
            file://pkgconfig_fix.patch \
            file://popt_fix_for_automake-1.12.patch \
-- 
2.4.0



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

* [PATCH 2/3] bash: fix dependencies and QA Issue
  2016-04-26  8:48 [PATCH 0/3] Fix some dependencies and QA Issues Maxin B. John
  2016-04-26  8:48 ` [PATCH 1/3] popt: fix dependencies and QA Issue Maxin B. John
@ 2016-04-26  8:48 ` Maxin B. John
  2016-04-26  8:48 ` [PATCH 3/3] libxml2: fix dependencies and QA Issues Maxin B. John
  2 siblings, 0 replies; 4+ messages in thread
From: Maxin B. John @ 2016-04-26  8:48 UTC (permalink / raw)
  To: openembedded-core

Fix the following QA warning:

WARNING: bash-4.3.30-r0 do_package_qa: QA Issue: bash rdepends on libiconv,
but it isn't a build dependency, missing libiconv in DEPENDS
or PACKAGECONFIG? [build-deps]

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/recipes-extended/bash/bash.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-extended/bash/bash.inc b/meta/recipes-extended/bash/bash.inc
index 93ca00b..1d08526 100644
--- a/meta/recipes-extended/bash/bash.inc
+++ b/meta/recipes-extended/bash/bash.inc
@@ -2,7 +2,7 @@ SUMMARY = "An sh-compatible command language interpreter"
 HOMEPAGE = "http://tiswww.case.edu/php/chet/bash/bashtop.html"
 SECTION = "base/shell"
 
-DEPENDS = "ncurses bison-native"
+DEPENDS = "ncurses bison-native virtual/libiconv"
 
 inherit autotools gettext texinfo update-alternatives ptest
 
-- 
2.4.0



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

* [PATCH 3/3] libxml2: fix dependencies and QA Issues
  2016-04-26  8:48 [PATCH 0/3] Fix some dependencies and QA Issues Maxin B. John
  2016-04-26  8:48 ` [PATCH 1/3] popt: fix dependencies and QA Issue Maxin B. John
  2016-04-26  8:48 ` [PATCH 2/3] bash: " Maxin B. John
@ 2016-04-26  8:48 ` Maxin B. John
  2 siblings, 0 replies; 4+ messages in thread
From: Maxin B. John @ 2016-04-26  8:48 UTC (permalink / raw)
  To: openembedded-core

Fix the following QA warnings:

WARNING: libxml2-2.9.3-r0 do_package_qa: QA Issue: libxml2 rdepends on
libiconv, but it isn't a build dependency, missing libiconv in DEPENDS
or PACKAGECONFIG? [build-deps]

WARNING: libxml2-2.9.3-r0 do_package_qa: QA Issue: libxml2-python
rdepends on libiconv, but it isn't a build dependency, missing libiconv
in DEPENDS or PACKAGECONFIG? [build-deps]

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/recipes-core/libxml/libxml2_2.9.3.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-core/libxml/libxml2_2.9.3.bb b/meta/recipes-core/libxml/libxml2_2.9.3.bb
index 9c9873f..481346c 100644
--- a/meta/recipes-core/libxml/libxml2_2.9.3.bb
+++ b/meta/recipes-core/libxml/libxml2_2.9.3.bb
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://Copyright;md5=2044417e2e5006b65a8b9067b683fcf1 \
                     file://list.c;beginline=4;endline=13;md5=cdbfa3dee51c099edb04e39f762ee907 \
                     file://trio.c;beginline=5;endline=14;md5=6c025753c86d958722ec76e94cae932e"
 
-DEPENDS = "zlib"
+DEPENDS = "zlib virtual/libiconv"
 
 SRC_URI = "ftp://xmlsoft.org/libxml2/libxml2-${PV}.tar.gz;name=libtar \
            http://www.w3.org/XML/Test/xmlts20080827.tar.gz;name=testtar \
-- 
2.4.0



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

end of thread, other threads:[~2016-04-26  8:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-26  8:48 [PATCH 0/3] Fix some dependencies and QA Issues Maxin B. John
2016-04-26  8:48 ` [PATCH 1/3] popt: fix dependencies and QA Issue Maxin B. John
2016-04-26  8:48 ` [PATCH 2/3] bash: " Maxin B. John
2016-04-26  8:48 ` [PATCH 3/3] libxml2: fix dependencies and QA Issues Maxin B. John

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.