All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/13] fix for dependencies issues
@ 2017-02-13 10:04 Robert Yang
  2017-02-13 10:04 ` [PATCH 01/13] dibbler: fix SRC_URI from ${P} to ${BP} Robert Yang
                   ` (13 more replies)
  0 siblings, 14 replies; 19+ messages in thread
From: Robert Yang @ 2017-02-13 10:04 UTC (permalink / raw)
  To: openembedded-devel, martin.jansa

The following changes since commit 5ecbf9bab404af0de7d0f058d1620f40dae0d2d8:

  poppler: update to 0.51.0 (2017-01-25 16:00:02 +0100)

are available in the git repository at:

  git://git.openembedded.org/meta-openembedded-contrib rbt/deps
  http://cgit.openembedded.org/meta-openembedded-contrib/log/?h=rbt/deps

Robert Yang (13):
  dibbler: fix SRC_URI from ${P} to ${BP}
  postgresql: add gettext-native and tcl-native to DEPENDS
  udisks: add dbus-glib-native to DEPENDS
  udisks2: add libxslt-native to DEPENDS
  xfdesktop: add dbus-glib-native to DEPENDS
  xfce4-notifyd: add dbus-glib-native to DEPENDS
  python-pbr: add python-setuptools-native to DEPENDS
  sthttpd: add base-passwd to DEPENDS
  nostromo: add base-passwd to DEPENDS
  openflow: inherit pkgconfig
  openconnect: add gettext-native to DEPENDS
  gnome-disk-utility: add dbus-glib-native to DEPENDS
  libnet-ssleay-perl: fix EXTRALIBS and LDLOADLIBS

 .../recipes-gnome/gnome-disk-utility/gnome-disk-utility_2.32.0.bb    | 5 ++++-
 meta-networking/recipes-connectivity/dibbler/dibbler_1.0.1.bb        | 2 +-
 meta-networking/recipes-connectivity/openconnect/openconnect_git.bb  | 2 +-
 meta-networking/recipes-protocols/openflow/openflow.inc              | 2 +-
 meta-oe/recipes-support/postgresql/postgresql.inc                    | 5 ++---
 meta-oe/recipes-support/udisks/udisks2_2.1.7.bb                      | 4 +++-
 meta-oe/recipes-support/udisks/udisks_1.0.5.bb                       | 4 +++-
 meta-perl/recipes-perl/libnet/libnet-ssleay-perl_1.65.bb             | 4 ++--
 meta-python/recipes-devtools/python/python-pbr_1.10.0.bb             | 1 +
 meta-webserver/recipes-httpd/nostromo/nostromo_1.9.6.bb              | 2 +-
 meta-webserver/recipes-httpd/sthttpd/sthttpd_2.27.0.bb               | 2 ++
 meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.3.4.bb          | 4 +++-
 meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.12.3.bb                 | 4 +++-
 13 files changed, 27 insertions(+), 14 deletions(-)

-- 
2.9.0



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

* [PATCH 01/13] dibbler: fix SRC_URI from ${P} to ${BP}
  2017-02-13 10:04 [PATCH 00/13] fix for dependencies issues Robert Yang
@ 2017-02-13 10:04 ` Robert Yang
  2017-02-13 10:04 ` [PATCH 02/13] postgresql: add gettext-native and tcl-native to DEPENDS Robert Yang
                   ` (12 subsequent siblings)
  13 siblings, 0 replies; 19+ messages in thread
From: Robert Yang @ 2017-02-13 10:04 UTC (permalink / raw)
  To: openembedded-devel, martin.jansa

Otherwise it would fail when multilib.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta-networking/recipes-connectivity/dibbler/dibbler_1.0.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-networking/recipes-connectivity/dibbler/dibbler_1.0.1.bb b/meta-networking/recipes-connectivity/dibbler/dibbler_1.0.1.bb
index a2d46db..1913d3a 100644
--- a/meta-networking/recipes-connectivity/dibbler/dibbler_1.0.1.bb
+++ b/meta-networking/recipes-connectivity/dibbler/dibbler_1.0.1.bb
@@ -5,7 +5,7 @@ HOMEPAGE = "http://klub.com.pl/dhcpv6"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=7236695bb6d4461c105d685a8b61c4e3"
 
-SRC_URI = "http://klub.com.pl/dhcpv6/${BPN}/${P}.tar.gz \
+SRC_URI = "http://klub.com.pl/dhcpv6/${BPN}/${BP}.tar.gz \
         file://dibbler_fix_getSize_crash.patch \
         file://types.patch \
 "
-- 
2.9.0



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

* [PATCH 02/13] postgresql: add gettext-native and tcl-native to DEPENDS
  2017-02-13 10:04 [PATCH 00/13] fix for dependencies issues Robert Yang
  2017-02-13 10:04 ` [PATCH 01/13] dibbler: fix SRC_URI from ${P} to ${BP} Robert Yang
@ 2017-02-13 10:04 ` Robert Yang
  2017-02-13 10:17   ` Andreas Müller
  2017-02-13 10:04 ` [PATCH 03/13] udisks: add dbus-glib-native " Robert Yang
                   ` (11 subsequent siblings)
  13 siblings, 1 reply; 19+ messages in thread
From: Robert Yang @ 2017-02-13 10:04 UTC (permalink / raw)
  To: openembedded-devel, martin.jansa

Fixed:
| checking for msgfmt... no
| configure: error: msgfmt is required for NLS

And:
| checking for tclsh83... no
| configure: error: Tcl shell not found

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta-oe/recipes-support/postgresql/postgresql.inc | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/meta-oe/recipes-support/postgresql/postgresql.inc b/meta-oe/recipes-support/postgresql/postgresql.inc
index f720cbc..0c3af0f 100644
--- a/meta-oe/recipes-support/postgresql/postgresql.inc
+++ b/meta-oe/recipes-support/postgresql/postgresql.inc
@@ -19,7 +19,7 @@ DESCRIPTION = "\
 "
 HOMEPAGE = "http://www.postgresql.com"
 LICENSE = "BSD"
-DEPENDS = "zlib readline tzcode-native"
+DEPENDS = "zlib readline tzcode-native gettext-native"
 INC_PR = "r0"
 
 ARM_INSTRUCTION_SET = "arm"
@@ -61,8 +61,7 @@ PACKAGECONFIG[pam] = "--with-pam,--without-pam,libpam,"
 PACKAGECONFIG[openssl] = "--with-openssl,--without-openssl,openssl,"
 PACKAGECONFIG[python] = "--with-python,--without-python,python,python"
 PACKAGECONFIG[uuid] = "--with-ossp-uuid,--without-ossp-uuid,ossp-uuid,"
-# when tcl native package  is fixed change WORKDIR to STAGING_BINDIR_CROSS
-PACKAGECONFIG[tcl] = "--with-tcl --with-tclconfig=${STAGING_BINDIR_CROSS},--without-tcl,tcl,"
+PACKAGECONFIG[tcl] = "--with-tcl --with-tclconfig=${STAGING_BINDIR_CROSS},--without-tcl,tcl tcl-native,"
 PACKAGECONFIG[nls] = "--enable-nls,--disable-nls,,"
 PACKAGECONFIG[libxml] = "--with-libxml,--without-libxml,libxml2,libxml2"
 PACKAGECONFIG[perl] = "--with-perl,--without-perl,perl,perl"
-- 
2.9.0



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

* [PATCH 03/13] udisks: add dbus-glib-native to DEPENDS
  2017-02-13 10:04 [PATCH 00/13] fix for dependencies issues Robert Yang
  2017-02-13 10:04 ` [PATCH 01/13] dibbler: fix SRC_URI from ${P} to ${BP} Robert Yang
  2017-02-13 10:04 ` [PATCH 02/13] postgresql: add gettext-native and tcl-native to DEPENDS Robert Yang
@ 2017-02-13 10:04 ` Robert Yang
  2017-02-13 10:04 ` [PATCH 04/13] udisks2: add libxslt-native " Robert Yang
                   ` (10 subsequent siblings)
  13 siblings, 0 replies; 19+ messages in thread
From: Robert Yang @ 2017-02-13 10:04 UTC (permalink / raw)
  To: openembedded-devel, martin.jansa

Fixed:
| dbus-binding-tool --prefix=daemon --mode=glib-server --output=daemon-glue.h ../data/org.freedesktop.UDisks.xml
| make[2]: dbus-binding-tool: Command not found

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta-oe/recipes-support/udisks/udisks_1.0.5.bb | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/meta-oe/recipes-support/udisks/udisks_1.0.5.bb b/meta-oe/recipes-support/udisks/udisks_1.0.5.bb
index eec6933..9d3716a 100644
--- a/meta-oe/recipes-support/udisks/udisks_1.0.5.bb
+++ b/meta-oe/recipes-support/udisks/udisks_1.0.5.bb
@@ -5,7 +5,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=73d83aebe7e4b62346afde80e0e94273"
 DEPENDS = "libatasmart sg3-utils polkit libgudev dbus-glib glib-2.0 intltool-native lvm2"
 # optional dependencies: device-mapper parted
 
-DEPENDS += "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}"
+DEPENDS += "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)} \
+    dbus-glib-native \
+"
 
 SRC_URI = " \
     http://hal.freedesktop.org/releases/${BPN}-${PV}.tar.gz;name=${BPN} \
-- 
2.9.0



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

* [PATCH 04/13] udisks2: add libxslt-native to DEPENDS
  2017-02-13 10:04 [PATCH 00/13] fix for dependencies issues Robert Yang
                   ` (2 preceding siblings ...)
  2017-02-13 10:04 ` [PATCH 03/13] udisks: add dbus-glib-native " Robert Yang
@ 2017-02-13 10:04 ` Robert Yang
  2017-02-13 10:04 ` [PATCH 05/13] xfdesktop: add dbus-glib-native " Robert Yang
                   ` (9 subsequent siblings)
  13 siblings, 0 replies; 19+ messages in thread
From: Robert Yang @ 2017-02-13 10:04 UTC (permalink / raw)
  To: openembedded-devel, martin.jansa

Fixed:
| checking for xsltproc... no
| configure: error: xsltproc is needed

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta-oe/recipes-support/udisks/udisks2_2.1.7.bb | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/meta-oe/recipes-support/udisks/udisks2_2.1.7.bb b/meta-oe/recipes-support/udisks/udisks2_2.1.7.bb
index fbf6701..80216ae 100644
--- a/meta-oe/recipes-support/udisks/udisks2_2.1.7.bb
+++ b/meta-oe/recipes-support/udisks/udisks2_2.1.7.bb
@@ -3,7 +3,9 @@ LICENSE = "GPLv2+ & LGPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=dd79f6dbbffdbc8e86b086a8f0c0ef43"
 
 DEPENDS = "acl libatasmart polkit libgudev dbus-glib glib-2.0 intltool-native gnome-common-native"
-DEPENDS += "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}"
+DEPENDS += "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)} \
+    libxslt-native \
+"
 
 RDEPENDS_${PN} = "acl"
 
-- 
2.9.0



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

* [PATCH 05/13] xfdesktop: add dbus-glib-native to DEPENDS
  2017-02-13 10:04 [PATCH 00/13] fix for dependencies issues Robert Yang
                   ` (3 preceding siblings ...)
  2017-02-13 10:04 ` [PATCH 04/13] udisks2: add libxslt-native " Robert Yang
@ 2017-02-13 10:04 ` Robert Yang
  2017-02-13 10:04 ` [PATCH 06/13] xfce4-notifyd: " Robert Yang
                   ` (8 subsequent siblings)
  13 siblings, 0 replies; 19+ messages in thread
From: Robert Yang @ 2017-02-13 10:04 UTC (permalink / raw)
  To: openembedded-devel, martin.jansa

Fixed:
configure:15214: checking for dbus-binding-tool
configure:15245: result: no
configure:15254: error: could not find dbus-binding-tool in $PATH. You can run
  ./configure DBUS_BINDING_TOOL=/path/to/dbus-binding-tool to define
  a custom location for it.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.12.3.bb | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.12.3.bb b/meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.12.3.bb
index e951343..8b8c400 100644
--- a/meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.12.3.bb
+++ b/meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.12.3.bb
@@ -2,7 +2,9 @@ SUMMARY = "Xfce4 Desktop Manager"
 SECTION = "x11/base"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
-DEPENDS = "glib-2.0 gtk+ libxfce4util libxfce4ui libwnck xfconf dbus-glib thunar garcon exo"
+DEPENDS = "glib-2.0 gtk+ libxfce4util libxfce4ui libwnck xfconf dbus-glib \
+    thunar garcon exo dbus-glib-native \
+"
 
 inherit xfce distro_features_check
 
-- 
2.9.0



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

* [PATCH 06/13] xfce4-notifyd: add dbus-glib-native to DEPENDS
  2017-02-13 10:04 [PATCH 00/13] fix for dependencies issues Robert Yang
                   ` (4 preceding siblings ...)
  2017-02-13 10:04 ` [PATCH 05/13] xfdesktop: add dbus-glib-native " Robert Yang
@ 2017-02-13 10:04 ` Robert Yang
  2017-02-13 10:04 ` [PATCH 07/13] python-pbr: add python-setuptools-native " Robert Yang
                   ` (7 subsequent siblings)
  13 siblings, 0 replies; 19+ messages in thread
From: Robert Yang @ 2017-02-13 10:04 UTC (permalink / raw)
  To: openembedded-devel, martin.jansa

Fixed:
configure:16468: checking for dbus-binding-tool
configure:16501: result: no

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.3.4.bb | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.3.4.bb b/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.3.4.bb
index 6310a17..9602ac8 100644
--- a/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.3.4.bb
+++ b/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.3.4.bb
@@ -2,7 +2,9 @@ SUMMARY = "Easily themable notification daemon with transparency effects"
 HOMEPAGE = "http://goodies.xfce.org/projects/applications/xfce4-notifyd"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
-DEPENDS = "libxfce4util libxfce4ui xfconf gtk+ dbus dbus-glib libnotify"
+DEPENDS = "libxfce4util libxfce4ui xfconf gtk+ dbus dbus-glib libnotify \
+    dbus-glib-native \
+"
 
 inherit xfce-app
 
-- 
2.9.0



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

* [PATCH 07/13] python-pbr: add python-setuptools-native to DEPENDS
  2017-02-13 10:04 [PATCH 00/13] fix for dependencies issues Robert Yang
                   ` (5 preceding siblings ...)
  2017-02-13 10:04 ` [PATCH 06/13] xfce4-notifyd: " Robert Yang
@ 2017-02-13 10:04 ` Robert Yang
  2017-02-13 10:04 ` [PATCH 08/13] sthttpd: add base-passwd " Robert Yang
                   ` (6 subsequent siblings)
  13 siblings, 0 replies; 19+ messages in thread
From: Robert Yang @ 2017-02-13 10:04 UTC (permalink / raw)
  To: openembedded-devel, martin.jansa

Fixed:
ERROR: python setup.py build execution failed.
Traceback (most recent call last):
  File "setup.py", line 17, in <module>
    import setuptools
ImportError: No module named setuptools

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta-python/recipes-devtools/python/python-pbr_1.10.0.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-python/recipes-devtools/python/python-pbr_1.10.0.bb b/meta-python/recipes-devtools/python/python-pbr_1.10.0.bb
index fd35197..3a57b45 100644
--- a/meta-python/recipes-devtools/python/python-pbr_1.10.0.bb
+++ b/meta-python/recipes-devtools/python/python-pbr_1.10.0.bb
@@ -11,6 +11,7 @@ inherit pypi setuptools
 
 DEPENDS_class-target += " \
         python-pip \
+        python-setuptools-native \
         "
 
 BBCLASSEXTEND = "native"
-- 
2.9.0



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

* [PATCH 08/13] sthttpd: add base-passwd to DEPENDS
  2017-02-13 10:04 [PATCH 00/13] fix for dependencies issues Robert Yang
                   ` (6 preceding siblings ...)
  2017-02-13 10:04 ` [PATCH 07/13] python-pbr: add python-setuptools-native " Robert Yang
@ 2017-02-13 10:04 ` Robert Yang
  2017-02-13 10:04 ` [PATCH 09/13] nostromo: " Robert Yang
                   ` (5 subsequent siblings)
  13 siblings, 0 replies; 19+ messages in thread
From: Robert Yang @ 2017-02-13 10:04 UTC (permalink / raw)
  To: openembedded-devel, martin.jansa

Fixed:
chgrp www-data tmp/work/i586-wrs-linux/sthttpd/2.27.0-r0/image/usr/sbin/makeweb
chgrp: invalid group: www-data
make[3]: *** [install-exec-hook] Error 1

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta-webserver/recipes-httpd/sthttpd/sthttpd_2.27.0.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-webserver/recipes-httpd/sthttpd/sthttpd_2.27.0.bb b/meta-webserver/recipes-httpd/sthttpd/sthttpd_2.27.0.bb
index efa533a..860c986 100644
--- a/meta-webserver/recipes-httpd/sthttpd/sthttpd_2.27.0.bb
+++ b/meta-webserver/recipes-httpd/sthttpd/sthttpd_2.27.0.bb
@@ -4,6 +4,8 @@ HOMEPAGE = "http://opensource.dyc.edu/sthttpd"
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://src/thttpd.c;beginline=1;endline=26;md5=0c5762c2c34dcbe9eb18815516502872"
 
+DEPENDS += "base-passwd"
+
 SRC_URI = "http://opensource.dyc.edu/pub/sthttpd/sthttpd-${PV}.tar.gz \
            file://thttpd.service \
            file://thttpd.conf \
-- 
2.9.0



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

* [PATCH 09/13] nostromo: add base-passwd to DEPENDS
  2017-02-13 10:04 [PATCH 00/13] fix for dependencies issues Robert Yang
                   ` (7 preceding siblings ...)
  2017-02-13 10:04 ` [PATCH 08/13] sthttpd: add base-passwd " Robert Yang
@ 2017-02-13 10:04 ` Robert Yang
  2017-02-13 10:04 ` [PATCH 10/13] openflow: inherit pkgconfig Robert Yang
                   ` (4 subsequent siblings)
  13 siblings, 0 replies; 19+ messages in thread
From: Robert Yang @ 2017-02-13 10:04 UTC (permalink / raw)
  To: openembedded-devel, martin.jansa

Fixed:
chown: invalid user: www-data:www-data
WARNING: tmp/work/i586-wrs-linux/nostromo/1.9.6-r0/temp/run.do_install.33423:1 exit 1 from 'chown -R www-data:www-data tmp/work/i586-wrs-linux/nostromo/1.9.6-r0/image//var/nostromo'

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta-webserver/recipes-httpd/nostromo/nostromo_1.9.6.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-webserver/recipes-httpd/nostromo/nostromo_1.9.6.bb b/meta-webserver/recipes-httpd/nostromo/nostromo_1.9.6.bb
index 5493c12..16f45ce 100644
--- a/meta-webserver/recipes-httpd/nostromo/nostromo_1.9.6.bb
+++ b/meta-webserver/recipes-httpd/nostromo/nostromo_1.9.6.bb
@@ -16,7 +16,7 @@ SRC_URI[sha256sum] = "541494ecfeafec58c0876ccc90cc23b06e0144f6f42029af44c7cdb1f4
 
 TARGET_CC_ARCH += "${LDFLAGS}"
 
-DEPENDS = "openssl groff-native"
+DEPENDS = "openssl groff-native base-passwd"
 
 inherit update-rc.d
 
-- 
2.9.0



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

* [PATCH 10/13] openflow: inherit pkgconfig
  2017-02-13 10:04 [PATCH 00/13] fix for dependencies issues Robert Yang
                   ` (8 preceding siblings ...)
  2017-02-13 10:04 ` [PATCH 09/13] nostromo: " Robert Yang
@ 2017-02-13 10:04 ` Robert Yang
  2017-02-13 10:04 ` [PATCH 11/13] openconnect: add gettext-native to DEPENDS Robert Yang
                   ` (3 subsequent siblings)
  13 siblings, 0 replies; 19+ messages in thread
From: Robert Yang @ 2017-02-13 10:04 UTC (permalink / raw)
  To: openembedded-devel, martin.jansa

Fixed:
configure:4463: error: possibly undefined macro: PKG_CHECK_MODULES
      If this token and others are legitimate, please use m4_pattern_allow.
      See the Autoconf documentation.
configure:4466: error: possibly undefined macro: AC_MSG_WARN

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta-networking/recipes-protocols/openflow/openflow.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-networking/recipes-protocols/openflow/openflow.inc b/meta-networking/recipes-protocols/openflow/openflow.inc
index d309ae1..7019bce 100644
--- a/meta-networking/recipes-protocols/openflow/openflow.inc
+++ b/meta-networking/recipes-protocols/openflow/openflow.inc
@@ -25,7 +25,7 @@ EXTRA_OECONF += " \
 
 S = "${WORKDIR}/git"
 
-inherit autotools-brokensep
+inherit autotools-brokensep pkgconfig
 
 do_configure() {
     ./boot.sh
-- 
2.9.0



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

* [PATCH 11/13] openconnect: add gettext-native to DEPENDS
  2017-02-13 10:04 [PATCH 00/13] fix for dependencies issues Robert Yang
                   ` (9 preceding siblings ...)
  2017-02-13 10:04 ` [PATCH 10/13] openflow: inherit pkgconfig Robert Yang
@ 2017-02-13 10:04 ` Robert Yang
  2017-02-13 10:04 ` [PATCH 12/13] gnome-disk-utility: add dbus-glib-native " Robert Yang
                   ` (2 subsequent siblings)
  13 siblings, 0 replies; 19+ messages in thread
From: Robert Yang @ 2017-02-13 10:04 UTC (permalink / raw)
  To: openembedded-devel, martin.jansa

Fixed:
checking for msgfmt... no
configure: error: msgfmt could not be found. Try configuring with --disable-nls

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta-networking/recipes-connectivity/openconnect/openconnect_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-networking/recipes-connectivity/openconnect/openconnect_git.bb b/meta-networking/recipes-connectivity/openconnect/openconnect_git.bb
index 60e7e6e..3a1f0f3 100644
--- a/meta-networking/recipes-connectivity/openconnect/openconnect_git.bb
+++ b/meta-networking/recipes-connectivity/openconnect/openconnect_git.bb
@@ -2,7 +2,7 @@ SUMMARY = "Open client for Cisco AnyConnect VPN"
 LICENSE = "LGPLv2.1"
 LIC_FILES_CHKSUM = "file://COPYING.LGPL;md5=243b725d71bb5df4a1e5920b344b86ad"
 
-DEPENDS = "vpnc libxml2 krb5"
+DEPENDS = "vpnc libxml2 krb5 gettext-native"
 
 PACKAGECONFIG ??= "gnutls lz4 libproxy"
 
-- 
2.9.0



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

* [PATCH 12/13] gnome-disk-utility: add dbus-glib-native to DEPENDS
  2017-02-13 10:04 [PATCH 00/13] fix for dependencies issues Robert Yang
                   ` (10 preceding siblings ...)
  2017-02-13 10:04 ` [PATCH 11/13] openconnect: add gettext-native to DEPENDS Robert Yang
@ 2017-02-13 10:04 ` Robert Yang
  2017-02-13 10:04 ` [PATCH 13/13] libnet-ssleay-perl: fix EXTRALIBS and LDLOADLIBS Robert Yang
  2017-02-13 17:37 ` [PATCH 00/13] fix for dependencies issues Martin Jansa
  13 siblings, 0 replies; 19+ messages in thread
From: Robert Yang @ 2017-02-13 10:04 UTC (permalink / raw)
  To: openembedded-devel, martin.jansa

Fixed:
make[3]: dbus-binding-tool: Command not found
make[3]: *** [udisks-daemon-glue.h] Error 127

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 .../recipes-gnome/gnome-disk-utility/gnome-disk-utility_2.32.0.bb    | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/meta-gnome/recipes-gnome/gnome-disk-utility/gnome-disk-utility_2.32.0.bb b/meta-gnome/recipes-gnome/gnome-disk-utility/gnome-disk-utility_2.32.0.bb
index dced48d..c167214 100644
--- a/meta-gnome/recipes-gnome/gnome-disk-utility/gnome-disk-utility_2.32.0.bb
+++ b/meta-gnome/recipes-gnome/gnome-disk-utility/gnome-disk-utility_2.32.0.bb
@@ -3,7 +3,10 @@ SUMMARY = "GNOME disk utility"
 LICENSE = "GPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=e9115d11797a5e6b746b4e9b90194564"
 
-DEPENDS = "glib-2.0 gtk+ libnotify libunique udisks avahi-ui virtual/libx11 libatasmart gnome-doc-utils intltool-native gnome-common-native libgnome-keyring"
+DEPENDS = "glib-2.0 gtk+ libnotify libunique udisks avahi-ui \
+    virtual/libx11 libatasmart gnome-doc-utils intltool-native \
+    gnome-common-native libgnome-keyring dbus-glib-native \
+"
 
 PR = "r4"
 
-- 
2.9.0



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

* [PATCH 13/13] libnet-ssleay-perl: fix EXTRALIBS and LDLOADLIBS
  2017-02-13 10:04 [PATCH 00/13] fix for dependencies issues Robert Yang
                   ` (11 preceding siblings ...)
  2017-02-13 10:04 ` [PATCH 12/13] gnome-disk-utility: add dbus-glib-native " Robert Yang
@ 2017-02-13 10:04 ` Robert Yang
  2017-02-13 17:37 ` [PATCH 00/13] fix for dependencies issues Martin Jansa
  13 siblings, 0 replies; 19+ messages in thread
From: Robert Yang @ 2017-02-13 10:04 UTC (permalink / raw)
  To: openembedded-devel, martin.jansa

Fixed:
recipe-sysroot-native/usr/bin/i586-wrs-linux/../../libexec/i586-wrs-linux/gcc/i586-wrs-linux/6.3.0/ld: cannot find -lssl -lcrypto -lz
collect2: error: ld returned 1 exit status
make: *** [blib/arch/auto/Net/SSLeay/SSLeay.so] Error 1

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta-perl/recipes-perl/libnet/libnet-ssleay-perl_1.65.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-perl/recipes-perl/libnet/libnet-ssleay-perl_1.65.bb b/meta-perl/recipes-perl/libnet/libnet-ssleay-perl_1.65.bb
index cfd6f51..4695ae4 100644
--- a/meta-perl/recipes-perl/libnet/libnet-ssleay-perl_1.65.bb
+++ b/meta-perl/recipes-perl/libnet/libnet-ssleay-perl_1.65.bb
@@ -32,8 +32,8 @@ inherit cpan ptest
 
 EXTRA_CPANFLAGS = "LIBS='-L=${STAGING_LIBDIR} -L=${STAGING_BASELIBDIR}' \
                    INC=-I=${STAGING_INCDIR} \
-                   'EXTRALIBS=-lssl -lcrypto -lz' \
-                   'LDLOADLIBS=-lssl -lcrypto -lz' \
+                   'EXTRALIBS=-L=${STAGING_LIBDIR} -lssl -lcrypto -lz' \
+                   'LDLOADLIBS=-L=${STAGING_LIBDIR} -lssl -lcrypto -lz' \
                   "
 
 do_configure_prepend() {
-- 
2.9.0



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

* Re: [PATCH 02/13] postgresql: add gettext-native and tcl-native to DEPENDS
  2017-02-13 10:04 ` [PATCH 02/13] postgresql: add gettext-native and tcl-native to DEPENDS Robert Yang
@ 2017-02-13 10:17   ` Andreas Müller
  0 siblings, 0 replies; 19+ messages in thread
From: Andreas Müller @ 2017-02-13 10:17 UTC (permalink / raw)
  To: openembedded-devel

On Mon, Feb 13, 2017 at 11:04 AM, Robert Yang <liezhi.yang@windriver.com> wrote:
> Fixed:
> | checking for msgfmt... no
> | configure: error: msgfmt is required for NLS
>
> And:
> | checking for tclsh83... no
> | configure: error: Tcl shell not found
>
> Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
> ---
>  meta-oe/recipes-support/postgresql/postgresql.inc | 5 ++---
>  1 file changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/meta-oe/recipes-support/postgresql/postgresql.inc b/meta-oe/recipes-support/postgresql/postgresql.inc
> index f720cbc..0c3af0f 100644
> --- a/meta-oe/recipes-support/postgresql/postgresql.inc
> +++ b/meta-oe/recipes-support/postgresql/postgresql.inc
> @@ -19,7 +19,7 @@ DESCRIPTION = "\
>  "
>  HOMEPAGE = "http://www.postgresql.com"
>  LICENSE = "BSD"
> -DEPENDS = "zlib readline tzcode-native"
> +DEPENDS = "zlib readline tzcode-native gettext-native"
>  INC_PR = "r0"
>
>  ARM_INSTRUCTION_SET = "arm"
> @@ -61,8 +61,7 @@ PACKAGECONFIG[pam] = "--with-pam,--without-pam,libpam,"
>  PACKAGECONFIG[openssl] = "--with-openssl,--without-openssl,openssl,"
>  PACKAGECONFIG[python] = "--with-python,--without-python,python,python"
>  PACKAGECONFIG[uuid] = "--with-ossp-uuid,--without-ossp-uuid,ossp-uuid,"
> -# when tcl native package  is fixed change WORKDIR to STAGING_BINDIR_CROSS
> -PACKAGECONFIG[tcl] = "--with-tcl --with-tclconfig=${STAGING_BINDIR_CROSS},--without-tcl,tcl,"
> +PACKAGECONFIG[tcl] = "--with-tcl --with-tclconfig=${STAGING_BINDIR_CROSS},--without-tcl,tcl tcl-native,"
Does this really fix the issue - or is this fix correct? tclConfig.sh
created by tcl (cross) reports incorrect paths so I think that should
be fixed.

Andreas


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

* Re: [PATCH 00/13] fix for dependencies issues
  2017-02-13 10:04 [PATCH 00/13] fix for dependencies issues Robert Yang
                   ` (12 preceding siblings ...)
  2017-02-13 10:04 ` [PATCH 13/13] libnet-ssleay-perl: fix EXTRALIBS and LDLOADLIBS Robert Yang
@ 2017-02-13 17:37 ` Martin Jansa
  2017-02-14  1:51   ` Robert Yang
  13 siblings, 1 reply; 19+ messages in thread
From: Martin Jansa @ 2017-02-13 17:37 UTC (permalink / raw)
  To: Robert Yang; +Cc: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2457 bytes --]

On Mon, Feb 13, 2017 at 02:04:14AM -0800, Robert Yang wrote:
> The following changes since commit 5ecbf9bab404af0de7d0f058d1620f40dae0d2d8:
> 
>   poppler: update to 0.51.0 (2017-01-25 16:00:02 +0100)
> 
> are available in the git repository at:
> 
>   git://git.openembedded.org/meta-openembedded-contrib rbt/deps
>   http://cgit.openembedded.org/meta-openembedded-contrib/log/?h=rbt/deps

Please rebase your changes on top of current master-next, because some of
them duplicated older changes already on ML (and in master-next) and
send the remaining ones (if there are any still needed).

> Robert Yang (13):
>   dibbler: fix SRC_URI from ${P} to ${BP}
>   postgresql: add gettext-native and tcl-native to DEPENDS
>   udisks: add dbus-glib-native to DEPENDS
>   udisks2: add libxslt-native to DEPENDS
>   xfdesktop: add dbus-glib-native to DEPENDS
>   xfce4-notifyd: add dbus-glib-native to DEPENDS
>   python-pbr: add python-setuptools-native to DEPENDS
>   sthttpd: add base-passwd to DEPENDS
>   nostromo: add base-passwd to DEPENDS
>   openflow: inherit pkgconfig
>   openconnect: add gettext-native to DEPENDS
>   gnome-disk-utility: add dbus-glib-native to DEPENDS
>   libnet-ssleay-perl: fix EXTRALIBS and LDLOADLIBS
> 
>  .../recipes-gnome/gnome-disk-utility/gnome-disk-utility_2.32.0.bb    | 5 ++++-
>  meta-networking/recipes-connectivity/dibbler/dibbler_1.0.1.bb        | 2 +-
>  meta-networking/recipes-connectivity/openconnect/openconnect_git.bb  | 2 +-
>  meta-networking/recipes-protocols/openflow/openflow.inc              | 2 +-
>  meta-oe/recipes-support/postgresql/postgresql.inc                    | 5 ++---
>  meta-oe/recipes-support/udisks/udisks2_2.1.7.bb                      | 4 +++-
>  meta-oe/recipes-support/udisks/udisks_1.0.5.bb                       | 4 +++-
>  meta-perl/recipes-perl/libnet/libnet-ssleay-perl_1.65.bb             | 4 ++--
>  meta-python/recipes-devtools/python/python-pbr_1.10.0.bb             | 1 +
>  meta-webserver/recipes-httpd/nostromo/nostromo_1.9.6.bb              | 2 +-
>  meta-webserver/recipes-httpd/sthttpd/sthttpd_2.27.0.bb               | 2 ++
>  meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.3.4.bb          | 4 +++-
>  meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.12.3.bb                 | 4 +++-
>  13 files changed, 27 insertions(+), 14 deletions(-)
> 
> -- 
> 2.9.0
> 

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 201 bytes --]

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

* Re: [PATCH 00/13] fix for dependencies issues
  2017-02-13 17:37 ` [PATCH 00/13] fix for dependencies issues Martin Jansa
@ 2017-02-14  1:51   ` Robert Yang
  2017-02-14  2:02     ` Martin Jansa
  0 siblings, 1 reply; 19+ messages in thread
From: Robert Yang @ 2017-02-14  1:51 UTC (permalink / raw)
  To: Martin Jansa; +Cc: openembedded-devel


Hi Martin,

Thanks, there are 3 patches remaining based on master-next, the postgresql
needs another patch in oe-core to fix build with tcl, I will send it to
oe-core later.

   git://git.openembedded.org/meta-openembedded-contrib rbt/deps
   http://cgit.openembedded.org/meta-openembedded-contrib/log/?h=rbt/deps

Robert Yang (3):
   postgresql: add gettext-native and tcl-native to DEPENDS
   udisks: add dbus-glib-native to DEPENDS
   python-pbr: add python-setuptools-native to DEPENDS

  meta-oe/recipes-support/postgresql/postgresql.inc        | 5 ++---
  meta-oe/recipes-support/udisks/udisks_1.0.5.bb           | 4 +++-
  meta-python/recipes-devtools/python/python-pbr_1.10.0.bb | 1 +
  3 files changed, 6 insertions(+), 4 deletions(-)


// Robert

On 02/14/2017 01:37 AM, Martin Jansa wrote:
> On Mon, Feb 13, 2017 at 02:04:14AM -0800, Robert Yang wrote:
>> The following changes since commit 5ecbf9bab404af0de7d0f058d1620f40dae0d2d8:
>>
>>   poppler: update to 0.51.0 (2017-01-25 16:00:02 +0100)
>>
>> are available in the git repository at:
>>
>>   git://git.openembedded.org/meta-openembedded-contrib rbt/deps
>>   http://cgit.openembedded.org/meta-openembedded-contrib/log/?h=rbt/deps
>
> Please rebase your changes on top of current master-next, because some of
> them duplicated older changes already on ML (and in master-next) and
> send the remaining ones (if there are any still needed).
>
>> Robert Yang (13):
>>   dibbler: fix SRC_URI from ${P} to ${BP}
>>   postgresql: add gettext-native and tcl-native to DEPENDS
>>   udisks: add dbus-glib-native to DEPENDS
>>   udisks2: add libxslt-native to DEPENDS
>>   xfdesktop: add dbus-glib-native to DEPENDS
>>   xfce4-notifyd: add dbus-glib-native to DEPENDS
>>   python-pbr: add python-setuptools-native to DEPENDS
>>   sthttpd: add base-passwd to DEPENDS
>>   nostromo: add base-passwd to DEPENDS
>>   openflow: inherit pkgconfig
>>   openconnect: add gettext-native to DEPENDS
>>   gnome-disk-utility: add dbus-glib-native to DEPENDS
>>   libnet-ssleay-perl: fix EXTRALIBS and LDLOADLIBS
>>
>>  .../recipes-gnome/gnome-disk-utility/gnome-disk-utility_2.32.0.bb    | 5 ++++-
>>  meta-networking/recipes-connectivity/dibbler/dibbler_1.0.1.bb        | 2 +-
>>  meta-networking/recipes-connectivity/openconnect/openconnect_git.bb  | 2 +-
>>  meta-networking/recipes-protocols/openflow/openflow.inc              | 2 +-
>>  meta-oe/recipes-support/postgresql/postgresql.inc                    | 5 ++---
>>  meta-oe/recipes-support/udisks/udisks2_2.1.7.bb                      | 4 +++-
>>  meta-oe/recipes-support/udisks/udisks_1.0.5.bb                       | 4 +++-
>>  meta-perl/recipes-perl/libnet/libnet-ssleay-perl_1.65.bb             | 4 ++--
>>  meta-python/recipes-devtools/python/python-pbr_1.10.0.bb             | 1 +
>>  meta-webserver/recipes-httpd/nostromo/nostromo_1.9.6.bb              | 2 +-
>>  meta-webserver/recipes-httpd/sthttpd/sthttpd_2.27.0.bb               | 2 ++
>>  meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.3.4.bb          | 4 +++-
>>  meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.12.3.bb                 | 4 +++-
>>  13 files changed, 27 insertions(+), 14 deletions(-)
>>
>> --
>> 2.9.0
>>
>


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

* Re: [PATCH 00/13] fix for dependencies issues
  2017-02-14  1:51   ` Robert Yang
@ 2017-02-14  2:02     ` Martin Jansa
  2017-02-14  2:36       ` Robert Yang
  0 siblings, 1 reply; 19+ messages in thread
From: Martin Jansa @ 2017-02-14  2:02 UTC (permalink / raw)
  To: Robert Yang; +Cc: openembedded-devel

Hi Robert,

thanks for update, can you update them also to remove PNBLACKLIST in those
recipes which should be fixed by this?

The python-pbr one looks strange, why should ${PN} rdepend on -native? Does
it work in rungime? Doesn't inherit setuptools do better job with this
dependency?

On Tue, Feb 14, 2017 at 2:51 AM, Robert Yang <liezhi.yang@windriver.com>
wrote:

>
> Hi Martin,
>
> Thanks, there are 3 patches remaining based on master-next, the postgresql
> needs another patch in oe-core to fix build with tcl, I will send it to
> oe-core later.
>
>   git://git.openembedded.org/meta-openembedded-contrib rbt/deps
>   http://cgit.openembedded.org/meta-openembedded-contrib/log/?h=rbt/deps
>
> Robert Yang (3):
>   postgresql: add gettext-native and tcl-native to DEPENDS
>   udisks: add dbus-glib-native to DEPENDS
>   python-pbr: add python-setuptools-native to DEPENDS
>
>  meta-oe/recipes-support/postgresql/postgresql.inc        | 5 ++---
>  meta-oe/recipes-support/udisks/udisks_1.0.5.bb           | 4 +++-
>  meta-python/recipes-devtools/python/python-pbr_1.10.0.bb | 1 +
>  3 files changed, 6 insertions(+), 4 deletions(-)
>
>
> // Robert
>
>
> On 02/14/2017 01:37 AM, Martin Jansa wrote:
>
>> On Mon, Feb 13, 2017 at 02:04:14AM -0800, Robert Yang wrote:
>>
>>> The following changes since commit 5ecbf9bab404af0de7d0f058d1620f
>>> 40dae0d2d8:
>>>
>>>   poppler: update to 0.51.0 (2017-01-25 16:00:02 +0100)
>>>
>>> are available in the git repository at:
>>>
>>>   git://git.openembedded.org/meta-openembedded-contrib rbt/deps
>>>   http://cgit.openembedded.org/meta-openembedded-contrib/log/?h=rbt/deps
>>>
>>
>> Please rebase your changes on top of current master-next, because some of
>> them duplicated older changes already on ML (and in master-next) and
>> send the remaining ones (if there are any still needed).
>>
>> Robert Yang (13):
>>>   dibbler: fix SRC_URI from ${P} to ${BP}
>>>   postgresql: add gettext-native and tcl-native to DEPENDS
>>>   udisks: add dbus-glib-native to DEPENDS
>>>   udisks2: add libxslt-native to DEPENDS
>>>   xfdesktop: add dbus-glib-native to DEPENDS
>>>   xfce4-notifyd: add dbus-glib-native to DEPENDS
>>>   python-pbr: add python-setuptools-native to DEPENDS
>>>   sthttpd: add base-passwd to DEPENDS
>>>   nostromo: add base-passwd to DEPENDS
>>>   openflow: inherit pkgconfig
>>>   openconnect: add gettext-native to DEPENDS
>>>   gnome-disk-utility: add dbus-glib-native to DEPENDS
>>>   libnet-ssleay-perl: fix EXTRALIBS and LDLOADLIBS
>>>
>>>  .../recipes-gnome/gnome-disk-utility/gnome-disk-utility_2.32.0.bb    |
>>> 5 ++++-
>>>  meta-networking/recipes-connectivity/dibbler/dibbler_1.0.1.bb        |
>>> 2 +-
>>>  meta-networking/recipes-connectivity/openconnect/openconnect_git.bb  |
>>> 2 +-
>>>  meta-networking/recipes-protocols/openflow/openflow.inc              |
>>> 2 +-
>>>  meta-oe/recipes-support/postgresql/postgresql.inc                    |
>>> 5 ++---
>>>  meta-oe/recipes-support/udisks/udisks2_2.1.7.bb                      |
>>> 4 +++-
>>>  meta-oe/recipes-support/udisks/udisks_1.0.5.bb                       |
>>> 4 +++-
>>>  meta-perl/recipes-perl/libnet/libnet-ssleay-perl_1.65.bb             |
>>> 4 ++--
>>>  meta-python/recipes-devtools/python/python-pbr_1.10.0.bb             |
>>> 1 +
>>>  meta-webserver/recipes-httpd/nostromo/nostromo_1.9.6.bb              |
>>> 2 +-
>>>  meta-webserver/recipes-httpd/sthttpd/sthttpd_2.27.0.bb               |
>>> 2 ++
>>>  meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.3.4.bb          |
>>> 4 +++-
>>>  meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.12.3.bb                 |
>>> 4 +++-
>>>  13 files changed, 27 insertions(+), 14 deletions(-)
>>>
>>> --
>>> 2.9.0
>>>
>>>
>>


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

* Re: [PATCH 00/13] fix for dependencies issues
  2017-02-14  2:02     ` Martin Jansa
@ 2017-02-14  2:36       ` Robert Yang
  0 siblings, 0 replies; 19+ messages in thread
From: Robert Yang @ 2017-02-14  2:36 UTC (permalink / raw)
  To: Martin Jansa; +Cc: openembedded-devel


Hi Martin,

On 02/14/2017 10:02 AM, Martin Jansa wrote:
> Hi Robert,
>
> thanks for update, can you update them also to remove PNBLACKLIST in those
> recipes which should be fixed by this?

I removed PNBLACKLIST for python-pbr. And we can't update for postgresql
atm since it requires a patch in oe-core. I will update it after oe-core
merges the patch.

>
> The python-pbr one looks strange, why should ${PN} rdepend on -native? Does it
> work in rungime? Doesn't inherit setuptools do better job with this dependency?

Sorry, I just found that master has merged a patch on python-pbr to change
from DEPENDS to RDEPENDS, so RDEPENDS on a native recipe is wrong. It should
be DEPENDS. And the build is OK after change to RDEPENDS, so the patch is
not needed any more.

Updated in the repo:

   git://git.openembedded.org/meta-openembedded-contrib rbt/deps
   http://cgit.openembedded.org/meta-openembedded-contrib/log/?h=rbt/deps

Robert Yang (3):
   postgresql: add gettext-native and tcl-native to DEPENDS
   udisks: add dbus-glib-native to DEPENDS
   python-pbr: remove PNBLACKLIST


// Robert

>
> On Tue, Feb 14, 2017 at 2:51 AM, Robert Yang <liezhi.yang@windriver.com
> <mailto:liezhi.yang@windriver.com>> wrote:
>
>
>     Hi Martin,
>
>     Thanks, there are 3 patches remaining based on master-next, the postgresql
>     needs another patch in oe-core to fix build with tcl, I will send it to
>     oe-core later.
>
>       git://git.openembedded.org/meta-openembedded-contrib
>     <http://git.openembedded.org/meta-openembedded-contrib> rbt/deps
>       http://cgit.openembedded.org/meta-openembedded-contrib/log/?h=rbt/deps
>     <http://cgit.openembedded.org/meta-openembedded-contrib/log/?h=rbt/deps>
>
>     Robert Yang (3):
>       postgresql: add gettext-native and tcl-native to DEPENDS
>       udisks: add dbus-glib-native to DEPENDS
>       python-pbr: add python-setuptools-native to DEPENDS
>
>      meta-oe/recipes-support/postgresql/postgresql.inc        | 5 ++---
>      meta-oe/recipes-support/udisks/udisks_1.0.5.bb <http://udisks_1.0.5.bb>
>            | 4 +++-
>      meta-python/recipes-devtools/python/python-pbr_1.10.0.bb
>     <http://python-pbr_1.10.0.bb> | 1 +
>      3 files changed, 6 insertions(+), 4 deletions(-)
>
>
>     // Robert
>
>
>     On 02/14/2017 01:37 AM, Martin Jansa wrote:
>
>         On Mon, Feb 13, 2017 at 02:04:14AM -0800, Robert Yang wrote:
>
>             The following changes since commit
>             5ecbf9bab404af0de7d0f058d1620f40dae0d2d8:
>
>               poppler: update to 0.51.0 (2017-01-25 16:00:02 +0100)
>
>             are available in the git repository at:
>
>               git://git.openembedded.org/meta-openembedded-contrib
>             <http://git.openembedded.org/meta-openembedded-contrib> rbt/deps
>
>             http://cgit.openembedded.org/meta-openembedded-contrib/log/?h=rbt/deps
>             <http://cgit.openembedded.org/meta-openembedded-contrib/log/?h=rbt/deps>
>
>
>         Please rebase your changes on top of current master-next, because some of
>         them duplicated older changes already on ML (and in master-next) and
>         send the remaining ones (if there are any still needed).
>
>             Robert Yang (13):
>               dibbler: fix SRC_URI from ${P} to ${BP}
>               postgresql: add gettext-native and tcl-native to DEPENDS
>               udisks: add dbus-glib-native to DEPENDS
>               udisks2: add libxslt-native to DEPENDS
>               xfdesktop: add dbus-glib-native to DEPENDS
>               xfce4-notifyd: add dbus-glib-native to DEPENDS
>               python-pbr: add python-setuptools-native to DEPENDS
>               sthttpd: add base-passwd to DEPENDS
>               nostromo: add base-passwd to DEPENDS
>               openflow: inherit pkgconfig
>               openconnect: add gettext-native to DEPENDS
>               gnome-disk-utility: add dbus-glib-native to DEPENDS
>               libnet-ssleay-perl: fix EXTRALIBS and LDLOADLIBS
>
>              .../recipes-gnome/gnome-disk-utility/gnome-disk-utility_2.32.0.bb
>             <http://gnome-disk-utility_2.32.0.bb>    | 5 ++++-
>              meta-networking/recipes-connectivity/dibbler/dibbler_1.0.1.bb
>             <http://dibbler_1.0.1.bb>        | 2 +-
>              meta-networking/recipes-connectivity/openconnect/openconnect_git.bb
>             <http://openconnect_git.bb>  | 2 +-
>              meta-networking/recipes-protocols/openflow/openflow.inc
>               | 2 +-
>              meta-oe/recipes-support/postgresql/postgresql.inc
>               | 5 ++---
>              meta-oe/recipes-support/udisks/udisks2_2.1.7.bb
>             <http://udisks2_2.1.7.bb>                      | 4 +++-
>              meta-oe/recipes-support/udisks/udisks_1.0.5.bb
>             <http://udisks_1.0.5.bb>                       | 4 +++-
>              meta-perl/recipes-perl/libnet/libnet-ssleay-perl_1.65.bb
>             <http://libnet-ssleay-perl_1.65.bb>             | 4 ++--
>              meta-python/recipes-devtools/python/python-pbr_1.10.0.bb
>             <http://python-pbr_1.10.0.bb>             | 1 +
>              meta-webserver/recipes-httpd/nostromo/nostromo_1.9.6.bb
>             <http://nostromo_1.9.6.bb>              | 2 +-
>              meta-webserver/recipes-httpd/sthttpd/sthttpd_2.27.0.bb
>             <http://sthttpd_2.27.0.bb>               | 2 ++
>              meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.3.4.bb
>             <http://xfce4-notifyd_0.3.4.bb>          | 4 +++-
>              meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.12.3.bb
>             <http://xfdesktop_4.12.3.bb>                 | 4 +++-
>              13 files changed, 27 insertions(+), 14 deletions(-)
>
>             --
>             2.9.0
>
>
>


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

end of thread, other threads:[~2017-02-14  2:36 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-13 10:04 [PATCH 00/13] fix for dependencies issues Robert Yang
2017-02-13 10:04 ` [PATCH 01/13] dibbler: fix SRC_URI from ${P} to ${BP} Robert Yang
2017-02-13 10:04 ` [PATCH 02/13] postgresql: add gettext-native and tcl-native to DEPENDS Robert Yang
2017-02-13 10:17   ` Andreas Müller
2017-02-13 10:04 ` [PATCH 03/13] udisks: add dbus-glib-native " Robert Yang
2017-02-13 10:04 ` [PATCH 04/13] udisks2: add libxslt-native " Robert Yang
2017-02-13 10:04 ` [PATCH 05/13] xfdesktop: add dbus-glib-native " Robert Yang
2017-02-13 10:04 ` [PATCH 06/13] xfce4-notifyd: " Robert Yang
2017-02-13 10:04 ` [PATCH 07/13] python-pbr: add python-setuptools-native " Robert Yang
2017-02-13 10:04 ` [PATCH 08/13] sthttpd: add base-passwd " Robert Yang
2017-02-13 10:04 ` [PATCH 09/13] nostromo: " Robert Yang
2017-02-13 10:04 ` [PATCH 10/13] openflow: inherit pkgconfig Robert Yang
2017-02-13 10:04 ` [PATCH 11/13] openconnect: add gettext-native to DEPENDS Robert Yang
2017-02-13 10:04 ` [PATCH 12/13] gnome-disk-utility: add dbus-glib-native " Robert Yang
2017-02-13 10:04 ` [PATCH 13/13] libnet-ssleay-perl: fix EXTRALIBS and LDLOADLIBS Robert Yang
2017-02-13 17:37 ` [PATCH 00/13] fix for dependencies issues Martin Jansa
2017-02-14  1:51   ` Robert Yang
2017-02-14  2:02     ` Martin Jansa
2017-02-14  2:36       ` Robert Yang

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.