All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/17] control ipv6 support based on DISTRO_FEATURES
@ 2016-08-22  9:05 jackie.huang
  2016-08-22  9:05 ` [PATCH 01/17] apr: " jackie.huang
                   ` (17 more replies)
  0 siblings, 18 replies; 19+ messages in thread
From: jackie.huang @ 2016-08-22  9:05 UTC (permalink / raw)
  To: openembedded-core

From: Jackie Huang <jackie.huang@windriver.com>

There is ipv6 configure option for these packages, and we need to them
to be controled by DISTRO_FEATURES.

Tested with and without ipv6 in DISTRO_FEATURES on qemux86-64 and qemuarm.

--
The following changes since commit f078ccf1ac60488169853724c35126cc056f975d:

  bitbake: siggen: Fix file variable typo in compare_sigfiles (2016-08-20 16:11:29 +0100)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib.git jhuang0/r_ipv6_160822_0
  http://git.pokylinux.org/cgit.cgi//log/?h=jhuang0/r_ipv6_160822_0

Jackie Huang (17):
  apr: control ipv6 support based on DISTRO_FEATURES
  libice: control ipv6 support based on DISTRO_FEATURES
  libpcap: control ipv6 support based on DISTRO_FEATURES
  libsm: control ipv6 support based on DISTRO_FEATURES
  libxfont: control ipv6 support based on DISTRO_FEATURES
  libxml2: control ipv6 support based on DISTRO_FEATURES
  libxmu: control ipv6 support based on DISTRO_FEATURES
  lighttpd: control ipv6 support based on DISTRO_FEATURES
  nfs-utils: control ipv6 support based on DISTRO_FEATURES
  nspr: control ipv6 support based on DISTRO_FEATURES
  psmisc: control ipv6 support based on DISTRO_FEATURES
  pulseaudio: control ipv6 support based on DISTRO_FEATURES
  rsync: use rsync.inc to avoid duplicated codes
  rsync: control ipv6 support based on DISTRO_FEATURES
  wget: control ipv6 support based on DISTRO_FEATURES
  xauth: control ipv6 support based on DISTRO_FEATURES
  xhost: control ipv6 support based on DISTRO_FEATURES

 meta/recipes-connectivity/libpcap/libpcap.inc      |  5 ++++-
 .../nfs-utils/nfs-utils_1.3.3.bb                   |  5 ++++-
 meta/recipes-core/libxml/libxml2_2.9.4.bb          |  5 ++++-
 meta/recipes-devtools/rsync/rsync.inc              |  7 ++----
 meta/recipes-devtools/rsync/rsync_2.6.9.bb         | 25 ++++++----------------
 meta/recipes-devtools/rsync/rsync_3.1.2.bb         |  8 ++++++-
 meta/recipes-extended/lighttpd/lighttpd_1.4.39.bb  |  5 ++++-
 meta/recipes-extended/psmisc/psmisc.inc            |  3 +++
 meta/recipes-extended/wget/wget.inc                |  5 +++--
 meta/recipes-graphics/xorg-app/xauth_1.0.9.bb      |  3 +++
 meta/recipes-graphics/xorg-app/xhost_1.0.7.bb      |  3 +++
 meta/recipes-graphics/xorg-lib/libice_1.0.9.bb     |  3 ++-
 meta/recipes-graphics/xorg-lib/libsm_1.2.2.bb      |  3 +++
 meta/recipes-graphics/xorg-lib/libxfont_1.5.1.bb   |  3 +++
 meta/recipes-graphics/xorg-lib/libxmu_1.1.2.bb     |  3 +++
 meta/recipes-multimedia/pulseaudio/pulseaudio.inc  |  2 ++
 meta/recipes-support/apr/apr_1.5.2.bb              |  3 +++
 meta/recipes-support/nspr/nspr_4.12.bb             |  3 +++
 18 files changed, 62 insertions(+), 32 deletions(-)

-- 
2.8.1



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

* [PATCH 01/17] apr: control ipv6 support based on DISTRO_FEATURES
  2016-08-22  9:05 [PATCH 00/17] control ipv6 support based on DISTRO_FEATURES jackie.huang
@ 2016-08-22  9:05 ` jackie.huang
  2016-08-22  9:05 ` [PATCH 02/17] libice: " jackie.huang
                   ` (16 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: jackie.huang @ 2016-08-22  9:05 UTC (permalink / raw)
  To: openembedded-core

From: Jackie Huang <jackie.huang@windriver.com>

Add PACKAGECONFIG for ipv6 and control it based
on DISTRO_FEATURES.

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta/recipes-support/apr/apr_1.5.2.bb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/recipes-support/apr/apr_1.5.2.bb b/meta/recipes-support/apr/apr_1.5.2.bb
index db15305..302c935 100644
--- a/meta/recipes-support/apr/apr_1.5.2.bb
+++ b/meta/recipes-support/apr/apr_1.5.2.bb
@@ -38,6 +38,9 @@ CACHED_CONFIGUREVARS += "ac_cv_header_netinet_sctp_h=no ac_cv_header_netinet_sct
 # x86_64-linux-libtool:   error: specify a tag with '--tag'
 CCACHE = ""
 
+PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'ipv6', '', d)}"
+PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
+
 do_configure_prepend() {
 	# Avoid absolute paths for grep since it causes failures
 	# when using sstate between different hosts with different
-- 
2.8.1



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

* [PATCH 02/17] libice: control ipv6 support based on DISTRO_FEATURES
  2016-08-22  9:05 [PATCH 00/17] control ipv6 support based on DISTRO_FEATURES jackie.huang
  2016-08-22  9:05 ` [PATCH 01/17] apr: " jackie.huang
@ 2016-08-22  9:05 ` jackie.huang
  2016-08-22  9:05 ` [PATCH 03/17] libpcap: " jackie.huang
                   ` (15 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: jackie.huang @ 2016-08-22  9:05 UTC (permalink / raw)
  To: openembedded-core

From: Jackie Huang <jackie.huang@windriver.com>

Add PACKAGECONFIG for ipv6 and control it based
on DISTRO_FEATURES.

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta/recipes-graphics/xorg-lib/libice_1.0.9.bb | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-graphics/xorg-lib/libice_1.0.9.bb b/meta/recipes-graphics/xorg-lib/libice_1.0.9.bb
index 5049b7e..b361ad6 100644
--- a/meta/recipes-graphics/xorg-lib/libice_1.0.9.bb
+++ b/meta/recipes-graphics/xorg-lib/libice_1.0.9.bb
@@ -23,5 +23,6 @@ BBCLASSEXTEND = "native"
 SRC_URI[md5sum] = "addfb1e897ca8079531669c7c7711726"
 SRC_URI[sha256sum] = "8f7032f2c1c64352b5423f6b48a8ebdc339cc63064af34d66a6c9aa79759e202"
 
-PACKAGECONFIG ??= ""
+PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'ipv6', '', d)}"
 PACKAGECONFIG[arc4] = "ac_cv_lib_bsd_arc4random_buf=yes,ac_cv_lib_bsd_arc4random_buf=no,libbsd"
+PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
-- 
2.8.1



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

* [PATCH 03/17] libpcap: control ipv6 support based on DISTRO_FEATURES
  2016-08-22  9:05 [PATCH 00/17] control ipv6 support based on DISTRO_FEATURES jackie.huang
  2016-08-22  9:05 ` [PATCH 01/17] apr: " jackie.huang
  2016-08-22  9:05 ` [PATCH 02/17] libice: " jackie.huang
@ 2016-08-22  9:05 ` jackie.huang
  2016-08-22  9:05 ` [PATCH 04/17] libsm: " jackie.huang
                   ` (14 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: jackie.huang @ 2016-08-22  9:05 UTC (permalink / raw)
  To: openembedded-core

From: Jackie Huang <jackie.huang@windriver.com>

Add PACKAGECONFIG for ipv6 and control it based
on DISTRO_FEATURES.

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta/recipes-connectivity/libpcap/libpcap.inc | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-connectivity/libpcap/libpcap.inc b/meta/recipes-connectivity/libpcap/libpcap.inc
index b7601b0..7b29a52 100644
--- a/meta/recipes-connectivity/libpcap/libpcap.inc
+++ b/meta/recipes-connectivity/libpcap/libpcap.inc
@@ -20,12 +20,15 @@ inherit autotools binconfig-disabled pkgconfig bluetooth
 
 EXTRA_OECONF = "--with-pcap=linux"
 
-PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'bluetooth', '${BLUEZ}', '', d)}"
+PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'bluetooth', '${BLUEZ}', '', d)} \
+                   ${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'ipv6', '', d)} \
+"
 PACKAGECONFIG[bluez4] = "--enable-bluetooth,--disable-bluetooth,bluez4"
 # Add a dummy PACKAGECONFIG for bluez5 since it is not supported by libpcap.
 PACKAGECONFIG[bluez5] = ",,"
 PACKAGECONFIG[canusb] = "--enable-canusb,--enable-canusb=no,libusb"
 PACKAGECONFIG[dbus] = "--enable-dbus,--disable-dbus,dbus"
+PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
 PACKAGECONFIG[libnl] = "--with-libnl,--without-libnl,libnl"
 
 CPPFLAGS_prepend = "-I${S} "
-- 
2.8.1



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

* [PATCH 04/17] libsm: control ipv6 support based on DISTRO_FEATURES
  2016-08-22  9:05 [PATCH 00/17] control ipv6 support based on DISTRO_FEATURES jackie.huang
                   ` (2 preceding siblings ...)
  2016-08-22  9:05 ` [PATCH 03/17] libpcap: " jackie.huang
@ 2016-08-22  9:05 ` jackie.huang
  2016-08-22  9:05 ` [PATCH 05/17] libxfont: " jackie.huang
                   ` (13 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: jackie.huang @ 2016-08-22  9:05 UTC (permalink / raw)
  To: openembedded-core

From: Jackie Huang <jackie.huang@windriver.com>

Add PACKAGECONFIG for ipv6 and control it based
on DISTRO_FEATURES.

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta/recipes-graphics/xorg-lib/libsm_1.2.2.bb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/recipes-graphics/xorg-lib/libsm_1.2.2.bb b/meta/recipes-graphics/xorg-lib/libsm_1.2.2.bb
index 1925136..da4ed92 100644
--- a/meta/recipes-graphics/xorg-lib/libsm_1.2.2.bb
+++ b/meta/recipes-graphics/xorg-lib/libsm_1.2.2.bb
@@ -26,3 +26,6 @@ BBCLASSEXTEND = "native"
 
 SRC_URI[md5sum] = "499a7773c65aba513609fe651853c5f3"
 SRC_URI[sha256sum] = "0baca8c9f5d934450a70896c4ad38d06475521255ca63b717a6510fdb6e287bd"
+
+PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'ipv6', '', d)}"
+PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
-- 
2.8.1



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

* [PATCH 05/17] libxfont: control ipv6 support based on DISTRO_FEATURES
  2016-08-22  9:05 [PATCH 00/17] control ipv6 support based on DISTRO_FEATURES jackie.huang
                   ` (3 preceding siblings ...)
  2016-08-22  9:05 ` [PATCH 04/17] libsm: " jackie.huang
@ 2016-08-22  9:05 ` jackie.huang
  2016-08-22  9:05 ` [PATCH 06/17] libxml2: " jackie.huang
                   ` (12 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: jackie.huang @ 2016-08-22  9:05 UTC (permalink / raw)
  To: openembedded-core

From: Jackie Huang <jackie.huang@windriver.com>

Add PACKAGECONFIG for ipv6 and control it based
on DISTRO_FEATURES.

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta/recipes-graphics/xorg-lib/libxfont_1.5.1.bb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/recipes-graphics/xorg-lib/libxfont_1.5.1.bb b/meta/recipes-graphics/xorg-lib/libxfont_1.5.1.bb
index 1b6e33c..e01f331 100644
--- a/meta/recipes-graphics/xorg-lib/libxfont_1.5.1.bb
+++ b/meta/recipes-graphics/xorg-lib/libxfont_1.5.1.bb
@@ -20,3 +20,6 @@ BBCLASSEXTEND = "native"
 
 SRC_URI[md5sum] = "96f76ba94b4c909230bac1e2dcd551c4"
 SRC_URI[sha256sum] = "b70898527c73f9758f551bbab612af611b8a0962202829568d94f3edf4d86098"
+
+PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'ipv6', '', d)}"
+PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
-- 
2.8.1



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

* [PATCH 06/17] libxml2: control ipv6 support based on DISTRO_FEATURES
  2016-08-22  9:05 [PATCH 00/17] control ipv6 support based on DISTRO_FEATURES jackie.huang
                   ` (4 preceding siblings ...)
  2016-08-22  9:05 ` [PATCH 05/17] libxfont: " jackie.huang
@ 2016-08-22  9:05 ` jackie.huang
  2016-08-22  9:06 ` [PATCH 07/17] libxmu: " jackie.huang
                   ` (11 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: jackie.huang @ 2016-08-22  9:05 UTC (permalink / raw)
  To: openembedded-core

From: Jackie Huang <jackie.huang@windriver.com>

Add PACKAGECONFIG for ipv6 and control it based
on DISTRO_FEATURES.

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta/recipes-core/libxml/libxml2_2.9.4.bb | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-core/libxml/libxml2_2.9.4.bb b/meta/recipes-core/libxml/libxml2_2.9.4.bb
index e2febf0..265d2b7 100644
--- a/meta/recipes-core/libxml/libxml2_2.9.4.bb
+++ b/meta/recipes-core/libxml/libxml2_2.9.4.bb
@@ -38,8 +38,11 @@ RDEPENDS_${PN}-ptest_append_libc-glibc = " glibc-gconv-ebcdic-us glibc-gconv-ibm
 
 export PYTHON_SITE_PACKAGES="${PYTHON_SITEPACKAGES_DIR}"
 
-PACKAGECONFIG ??= "python"
+PACKAGECONFIG ??= "python \
+    ${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'ipv6', '', d)} \
+"
 PACKAGECONFIG[python] = "--with-python=${PYTHON},--without-python,python"
+PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
 
 # WARNING: zlib is require for RPM use
 EXTRA_OECONF = "--without-debug --without-legacy --with-catalog --without-docbook --with-c14n --without-lzma --with-fexceptions"
-- 
2.8.1



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

* [PATCH 07/17] libxmu: control ipv6 support based on DISTRO_FEATURES
  2016-08-22  9:05 [PATCH 00/17] control ipv6 support based on DISTRO_FEATURES jackie.huang
                   ` (5 preceding siblings ...)
  2016-08-22  9:05 ` [PATCH 06/17] libxml2: " jackie.huang
@ 2016-08-22  9:06 ` jackie.huang
  2016-08-22  9:06 ` [PATCH 08/17] lighttpd: " jackie.huang
                   ` (10 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: jackie.huang @ 2016-08-22  9:06 UTC (permalink / raw)
  To: openembedded-core

From: Jackie Huang <jackie.huang@windriver.com>

Add PACKAGECONFIG for ipv6 and control it based
on DISTRO_FEATURES.

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta/recipes-graphics/xorg-lib/libxmu_1.1.2.bb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/recipes-graphics/xorg-lib/libxmu_1.1.2.bb b/meta/recipes-graphics/xorg-lib/libxmu_1.1.2.bb
index 003baec..d5935ff 100644
--- a/meta/recipes-graphics/xorg-lib/libxmu_1.1.2.bb
+++ b/meta/recipes-graphics/xorg-lib/libxmu_1.1.2.bb
@@ -30,3 +30,6 @@ BBCLASSEXTEND = "native"
 
 SRC_URI[md5sum] = "41d92ab627dfa06568076043f3e089e4"
 SRC_URI[sha256sum] = "756edc7c383254eef8b4e1b733c3bf1dc061b523c9f9833ac7058378b8349d0b"
+
+PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'ipv6', '', d)}"
+PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
-- 
2.8.1



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

* [PATCH 08/17] lighttpd: control ipv6 support based on DISTRO_FEATURES
  2016-08-22  9:05 [PATCH 00/17] control ipv6 support based on DISTRO_FEATURES jackie.huang
                   ` (6 preceding siblings ...)
  2016-08-22  9:06 ` [PATCH 07/17] libxmu: " jackie.huang
@ 2016-08-22  9:06 ` jackie.huang
  2016-08-22  9:06 ` [PATCH 09/17] nfs-utils: " jackie.huang
                   ` (9 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: jackie.huang @ 2016-08-22  9:06 UTC (permalink / raw)
  To: openembedded-core

From: Jackie Huang <jackie.huang@windriver.com>

Add PACKAGECONFIG for ipv6 and control it based
on DISTRO_FEATURES.

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta/recipes-extended/lighttpd/lighttpd_1.4.39.bb | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-extended/lighttpd/lighttpd_1.4.39.bb b/meta/recipes-extended/lighttpd/lighttpd_1.4.39.bb
index 378accb..5d1ac58 100644
--- a/meta/recipes-extended/lighttpd/lighttpd_1.4.39.bb
+++ b/meta/recipes-extended/lighttpd/lighttpd_1.4.39.bb
@@ -26,8 +26,11 @@ SRC_URI = "http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${PV}.t
 SRC_URI[md5sum] = "63c7563be1c7a7a9819a51f07f1af8b2"
 SRC_URI[sha256sum] = "7eb9a1853c3d6dd5851682b0733a729ba4158d6bdff80974d5ef5f1f6887365b"
 
-PACKAGECONFIG ??= "openssl"
+PACKAGECONFIG ??= "openssl \
+    ${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'ipv6', '', d)} \
+"
 PACKAGECONFIG[openssl] = "--with-openssl, --without-openssl, openssl"
+PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
 
 EXTRA_OECONF = " \
              --without-bzip2 \
-- 
2.8.1



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

* [PATCH 09/17] nfs-utils: control ipv6 support based on DISTRO_FEATURES
  2016-08-22  9:05 [PATCH 00/17] control ipv6 support based on DISTRO_FEATURES jackie.huang
                   ` (7 preceding siblings ...)
  2016-08-22  9:06 ` [PATCH 08/17] lighttpd: " jackie.huang
@ 2016-08-22  9:06 ` jackie.huang
  2016-08-22  9:06 ` [PATCH 10/17] nspr: " jackie.huang
                   ` (8 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: jackie.huang @ 2016-08-22  9:06 UTC (permalink / raw)
  To: openembedded-core

From: Jackie Huang <jackie.huang@windriver.com>

Add PACKAGECONFIG for ipv6 and control it based
on DISTRO_FEATURES.

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta/recipes-connectivity/nfs-utils/nfs-utils_1.3.3.bb | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-connectivity/nfs-utils/nfs-utils_1.3.3.bb b/meta/recipes-connectivity/nfs-utils/nfs-utils_1.3.3.bb
index 285bd2c..8540503 100644
--- a/meta/recipes-connectivity/nfs-utils/nfs-utils_1.3.3.bb
+++ b/meta/recipes-connectivity/nfs-utils/nfs-utils_1.3.3.bb
@@ -64,10 +64,13 @@ EXTRA_OECONF = "--with-statduser=rpcuser \
                 --with-statdpath=/var/lib/nfs/statd \
                "
 
-PACKAGECONFIG ??= "tcp-wrappers"
+PACKAGECONFIG ??= "tcp-wrappers \
+    ${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'ipv6', '', d)} \
+"
 PACKAGECONFIG_remove_libc-musl = "tcp-wrappers"
 PACKAGECONFIG[tcp-wrappers] = "--with-tcp-wrappers,--without-tcp-wrappers,tcp-wrappers"
 PACKAGECONFIG[nfsidmap] = "--enable-nfsidmap,--disable-nfsidmap,keyutils"
+PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
 
 INHIBIT_AUTO_STAGE = "1"
 
-- 
2.8.1



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

* [PATCH 10/17] nspr: control ipv6 support based on DISTRO_FEATURES
  2016-08-22  9:05 [PATCH 00/17] control ipv6 support based on DISTRO_FEATURES jackie.huang
                   ` (8 preceding siblings ...)
  2016-08-22  9:06 ` [PATCH 09/17] nfs-utils: " jackie.huang
@ 2016-08-22  9:06 ` jackie.huang
  2016-08-22  9:06 ` [PATCH 11/17] psmisc: " jackie.huang
                   ` (7 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: jackie.huang @ 2016-08-22  9:06 UTC (permalink / raw)
  To: openembedded-core

From: Jackie Huang <jackie.huang@windriver.com>

Add PACKAGECONFIG for ipv6 and control it based
on DISTRO_FEATURES.

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta/recipes-support/nspr/nspr_4.12.bb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/recipes-support/nspr/nspr_4.12.bb b/meta/recipes-support/nspr/nspr_4.12.bb
index 168341b..fa6d523 100644
--- a/meta/recipes-support/nspr/nspr_4.12.bb
+++ b/meta/recipes-support/nspr/nspr_4.12.bb
@@ -147,6 +147,9 @@ TESTS = " \
 
 inherit autotools
 
+PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'ipv6', '', d)}"
+PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
+
 do_compile_prepend() {
 	oe_runmake CROSS_COMPILE=1 CFLAGS="-DXP_UNIX" LDFLAGS="" CC=gcc -C config export
 }
-- 
2.8.1



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

* [PATCH 11/17] psmisc: control ipv6 support based on DISTRO_FEATURES
  2016-08-22  9:05 [PATCH 00/17] control ipv6 support based on DISTRO_FEATURES jackie.huang
                   ` (9 preceding siblings ...)
  2016-08-22  9:06 ` [PATCH 10/17] nspr: " jackie.huang
@ 2016-08-22  9:06 ` jackie.huang
  2016-08-22  9:06 ` [PATCH 12/17] pulseaudio: " jackie.huang
                   ` (6 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: jackie.huang @ 2016-08-22  9:06 UTC (permalink / raw)
  To: openembedded-core

From: Jackie Huang <jackie.huang@windriver.com>

Add PACKAGECONFIG for ipv6 and control it based
on DISTRO_FEATURES.

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta/recipes-extended/psmisc/psmisc.inc | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/recipes-extended/psmisc/psmisc.inc b/meta/recipes-extended/psmisc/psmisc.inc
index 68e0656..98a8470 100644
--- a/meta/recipes-extended/psmisc/psmisc.inc
+++ b/meta/recipes-extended/psmisc/psmisc.inc
@@ -15,6 +15,9 @@ S = "${WORKDIR}/psmisc-${PV}"
 
 inherit autotools gettext
 
+PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'ipv6', '', d)}"
+PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
+
 ALLOW_EMPTY_${PN} = "1"
 
 PACKAGES =+ "fuser fuser-doc killall killall-doc pstree pstree-doc"
-- 
2.8.1



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

* [PATCH 12/17] pulseaudio: control ipv6 support based on DISTRO_FEATURES
  2016-08-22  9:05 [PATCH 00/17] control ipv6 support based on DISTRO_FEATURES jackie.huang
                   ` (10 preceding siblings ...)
  2016-08-22  9:06 ` [PATCH 11/17] psmisc: " jackie.huang
@ 2016-08-22  9:06 ` jackie.huang
  2016-08-22  9:06 ` [PATCH 13/17] rsync: use rsync.inc to avoid duplicated codes jackie.huang
                   ` (5 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: jackie.huang @ 2016-08-22  9:06 UTC (permalink / raw)
  To: openembedded-core

From: Jackie Huang <jackie.huang@windriver.com>

Add PACKAGECONFIG for ipv6 and control it based
on DISTRO_FEATURES.

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta/recipes-multimedia/pulseaudio/pulseaudio.inc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/recipes-multimedia/pulseaudio/pulseaudio.inc b/meta/recipes-multimedia/pulseaudio/pulseaudio.inc
index 299982b..6ed79ef 100644
--- a/meta/recipes-multimedia/pulseaudio/pulseaudio.inc
+++ b/meta/recipes-multimedia/pulseaudio/pulseaudio.inc
@@ -42,6 +42,7 @@ PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'bluetooth', '${BLUEZ
                    ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', '', d)} \
                    ${@bb.utils.contains('DISTRO_FEATURES', '3g', 'ofono', '', d)} \
                    ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)} \
+                   ${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'ipv6', '', d)} \
                    dbus \
                    "
 
@@ -59,6 +60,7 @@ PACKAGECONFIG[jack] = "--enable-jack,--disable-jack,jack"
 PACKAGECONFIG[autospawn-for-root] = ",,,"
 PACKAGECONFIG[lirc] = "--enable-lirc,--disable-lirc,lirc"
 PACKAGECONFIG[webrtc] = "--enable-webrtc-aec,--disable-webrtc-aec,webrtc-audio-processing"
+PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
 
 EXTRA_OECONF_append_arm = "${@bb.utils.contains("TUNE_FEATURES", "neon", "", " --enable-neon-opt=no", d)}"
 EXTRA_OECONF_append_armeb = "${@bb.utils.contains("TUNE_FEATURES", "neon", "", " --enable-neon-opt=no", d)}"
-- 
2.8.1



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

* [PATCH 13/17] rsync: use rsync.inc to avoid duplicated codes
  2016-08-22  9:05 [PATCH 00/17] control ipv6 support based on DISTRO_FEATURES jackie.huang
                   ` (11 preceding siblings ...)
  2016-08-22  9:06 ` [PATCH 12/17] pulseaudio: " jackie.huang
@ 2016-08-22  9:06 ` jackie.huang
  2016-08-22  9:06 ` [PATCH 14/17] rsync: control ipv6 support based on DISTRO_FEATURES jackie.huang
                   ` (4 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: jackie.huang @ 2016-08-22  9:06 UTC (permalink / raw)
  To: openembedded-core

From: Jackie Huang <jackie.huang@windriver.com>

There are two versions of rsync but the rsync.inc is
only used by 3.x, there are duplicated codes in 2.x,
so this commit include changes:

* remove duplicated codes in 2.x and require the inc
* move the LICENSE from inc to each bb

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta/recipes-devtools/rsync/rsync.inc      |  5 -----
 meta/recipes-devtools/rsync/rsync_2.6.9.bb | 23 ++++-------------------
 meta/recipes-devtools/rsync/rsync_3.1.2.bb |  4 ++++
 3 files changed, 8 insertions(+), 24 deletions(-)

diff --git a/meta/recipes-devtools/rsync/rsync.inc b/meta/recipes-devtools/rsync/rsync.inc
index c65f270..8739c9c 100644
--- a/meta/recipes-devtools/rsync/rsync.inc
+++ b/meta/recipes-devtools/rsync/rsync.inc
@@ -3,11 +3,6 @@ HOMEPAGE = "http://rsync.samba.org/"
 BUGTRACKER = "http://rsync.samba.org/bugzilla.html"
 SECTION = "console/network"
 
-# GPLv2+ (<< 3.0.0), GPLv3+ (>= 3.0.0)
-LICENSE = "GPLv3+"
-LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
-
-# needs to add acl and attr
 DEPENDS = "popt"
 
 SRC_URI = "http://rsync.samba.org/ftp/rsync/src/rsync-${PV}.tar.gz \
diff --git a/meta/recipes-devtools/rsync/rsync_2.6.9.bb b/meta/recipes-devtools/rsync/rsync_2.6.9.bb
index 6854c77..5a19e21 100644
--- a/meta/recipes-devtools/rsync/rsync_2.6.9.bb
+++ b/meta/recipes-devtools/rsync/rsync_2.6.9.bb
@@ -1,27 +1,12 @@
-SUMMARY = "File synchronization tool"
-HOMEPAGE = "http://rsync.samba.org/"
-BUGTRACKER = "http://rsync.samba.org/bugzilla.html"
-SECTION = "console/network"
+require rsync.inc
 
-# needs to add acl and attr
-DEPENDS = "popt"
-
-SRC_URI = "http://rsync.samba.org/ftp/rsync/src/rsync-${PV}.tar.gz \
-           file://rsync-2.6.9-fname-obo.patch \
-           file://rsyncd.conf"
+SRC_URI += "file://rsync-2.6.9-fname-obo.patch \
+            file://rsyncd.conf \
+"
 
 SRC_URI[md5sum] = "996d8d8831dbca17910094e56dcb5942"
 SRC_URI[sha256sum] = "ca437301becd890e73300bc69a39189ff1564baa761948ff149b3dd7bde633f9"
 
-inherit autotools
-
-do_install_append() {
-	install -d ${D}${sysconfdir}
-	install -m 0644 ${WORKDIR}/rsyncd.conf ${D}${sysconfdir}
-}
-
-EXTRA_OEMAKE='STRIP=""'
-
 LICENSE = "GPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=6d5a9d4c4d3af25cd68fd83e8a8cb09c"
 
diff --git a/meta/recipes-devtools/rsync/rsync_3.1.2.bb b/meta/recipes-devtools/rsync/rsync_3.1.2.bb
index 9637ed4..798fecc 100644
--- a/meta/recipes-devtools/rsync/rsync_3.1.2.bb
+++ b/meta/recipes-devtools/rsync/rsync_3.1.2.bb
@@ -5,6 +5,10 @@ SRC_URI += "file://makefile-no-rebuild.patch"
 SRC_URI[md5sum] = "0f758d7e000c0f7f7d3792610fad70cb"
 SRC_URI[sha256sum] = "ecfa62a7fa3c4c18b9eccd8c16eaddee4bd308a76ea50b5c02a5840f09c0a1c2"
 
+# GPLv2+ (<< 3.0.0), GPLv3+ (>= 3.0.0)
+LICENSE = "GPLv3+"
+LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
+
 PACKAGECONFIG ??= "acl attr"
 PACKAGECONFIG[acl] = "--enable-acl-support,--disable-acl-support,acl,"
 PACKAGECONFIG[attr] = "--enable-xattr-support,--disable-xattr-support,attr,"
-- 
2.8.1



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

* [PATCH 14/17] rsync: control ipv6 support based on DISTRO_FEATURES
  2016-08-22  9:05 [PATCH 00/17] control ipv6 support based on DISTRO_FEATURES jackie.huang
                   ` (12 preceding siblings ...)
  2016-08-22  9:06 ` [PATCH 13/17] rsync: use rsync.inc to avoid duplicated codes jackie.huang
@ 2016-08-22  9:06 ` jackie.huang
  2016-08-22  9:06 ` [PATCH 15/17] wget: " jackie.huang
                   ` (3 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: jackie.huang @ 2016-08-22  9:06 UTC (permalink / raw)
  To: openembedded-core

From: Jackie Huang <jackie.huang@windriver.com>

Add PACKAGECONFIG for ipv6 and control it based
on DISTRO_FEATURES.

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta/recipes-devtools/rsync/rsync.inc      | 2 ++
 meta/recipes-devtools/rsync/rsync_2.6.9.bb | 2 ++
 meta/recipes-devtools/rsync/rsync_3.1.2.bb | 4 +++-
 3 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/rsync/rsync.inc b/meta/recipes-devtools/rsync/rsync.inc
index 8739c9c..37897ab 100644
--- a/meta/recipes-devtools/rsync/rsync.inc
+++ b/meta/recipes-devtools/rsync/rsync.inc
@@ -16,3 +16,5 @@ do_install_append() {
 }
 
 EXTRA_OEMAKE='STRIP=""'
+
+PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
diff --git a/meta/recipes-devtools/rsync/rsync_2.6.9.bb b/meta/recipes-devtools/rsync/rsync_2.6.9.bb
index 5a19e21..efdf255 100644
--- a/meta/recipes-devtools/rsync/rsync_2.6.9.bb
+++ b/meta/recipes-devtools/rsync/rsync_2.6.9.bb
@@ -11,3 +11,5 @@ LICENSE = "GPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=6d5a9d4c4d3af25cd68fd83e8a8cb09c"
 
 PR = "r4"
+
+PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'ipv6', '', d)}"
diff --git a/meta/recipes-devtools/rsync/rsync_3.1.2.bb b/meta/recipes-devtools/rsync/rsync_3.1.2.bb
index 798fecc..c6cb331 100644
--- a/meta/recipes-devtools/rsync/rsync_3.1.2.bb
+++ b/meta/recipes-devtools/rsync/rsync_3.1.2.bb
@@ -9,7 +9,9 @@ SRC_URI[sha256sum] = "ecfa62a7fa3c4c18b9eccd8c16eaddee4bd308a76ea50b5c02a5840f09
 LICENSE = "GPLv3+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
 
-PACKAGECONFIG ??= "acl attr"
+PACKAGECONFIG ??= "acl attr \
+    ${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'ipv6', '', d)} \
+"
 PACKAGECONFIG[acl] = "--enable-acl-support,--disable-acl-support,acl,"
 PACKAGECONFIG[attr] = "--enable-xattr-support,--disable-xattr-support,attr,"
 
-- 
2.8.1



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

* [PATCH 15/17] wget: control ipv6 support based on DISTRO_FEATURES
  2016-08-22  9:05 [PATCH 00/17] control ipv6 support based on DISTRO_FEATURES jackie.huang
                   ` (13 preceding siblings ...)
  2016-08-22  9:06 ` [PATCH 14/17] rsync: control ipv6 support based on DISTRO_FEATURES jackie.huang
@ 2016-08-22  9:06 ` jackie.huang
  2016-08-22  9:06 ` [PATCH 16/17] xauth: " jackie.huang
                   ` (2 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: jackie.huang @ 2016-08-22  9:06 UTC (permalink / raw)
  To: openembedded-core

From: Jackie Huang <jackie.huang@windriver.com>

Add PACKAGECONFIG for ipv6 and control it based
on DISTRO_FEATURES instead of unconditionally enabled.

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta/recipes-extended/wget/wget.inc | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-extended/wget/wget.inc b/meta/recipes-extended/wget/wget.inc
index dc381a6..c4abfe4 100644
--- a/meta/recipes-extended/wget/wget.inc
+++ b/meta/recipes-extended/wget/wget.inc
@@ -9,7 +9,7 @@ INC_PR = "r16"
 
 inherit autotools gettext texinfo update-alternatives pkgconfig
 
-EXTRA_OECONF = "--enable-ipv6 --with-ssl=gnutls --disable-rpath --disable-iri \
+EXTRA_OECONF = "--with-ssl=gnutls --disable-rpath --disable-iri \
                 --without-libgnutls-prefix ac_cv_header_uuid_uuid_h=no"
 
 ALTERNATIVE_${PN} = "wget"
@@ -20,8 +20,9 @@ RRECOMMENDS_${PN} += "ca-certificates"
 
 BBCLASSEXTEND += "nativesdk"
 
-PACKAGECONFIG ??= ""
+PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'ipv6', '', d)}"
 PACKAGECONFIG[libuuid] = "--with-libuuid, --without-libuuid,util-linux"
+PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
 
 # Let aclocal use the relative path for the m4 file rather than
 # absolute, otherwise there might be an "Argument list too long" error
-- 
2.8.1



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

* [PATCH 16/17] xauth: control ipv6 support based on DISTRO_FEATURES
  2016-08-22  9:05 [PATCH 00/17] control ipv6 support based on DISTRO_FEATURES jackie.huang
                   ` (14 preceding siblings ...)
  2016-08-22  9:06 ` [PATCH 15/17] wget: " jackie.huang
@ 2016-08-22  9:06 ` jackie.huang
  2016-08-22  9:06 ` [PATCH 17/17] xhost: " jackie.huang
  2016-08-31  5:30 ` [PATCH 00/17] " Huang, Jie (Jackie)
  17 siblings, 0 replies; 19+ messages in thread
From: jackie.huang @ 2016-08-22  9:06 UTC (permalink / raw)
  To: openembedded-core

From: Jackie Huang <jackie.huang@windriver.com>

Add PACKAGECONFIG for ipv6 and control it based
on DISTRO_FEATURES.

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta/recipes-graphics/xorg-app/xauth_1.0.9.bb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/recipes-graphics/xorg-app/xauth_1.0.9.bb b/meta/recipes-graphics/xorg-app/xauth_1.0.9.bb
index b173f4f..59b3323 100644
--- a/meta/recipes-graphics/xorg-app/xauth_1.0.9.bb
+++ b/meta/recipes-graphics/xorg-app/xauth_1.0.9.bb
@@ -10,3 +10,6 @@ PE = "1"
 
 SRC_URI[md5sum] = "7d6003f32838d5b688e2c8a131083271"
 SRC_URI[sha256sum] = "56ce1523eb48b1f8a4f4244fe1c3d8e6af1a3b7d4b0e6063582421b0b68dc28f"
+
+PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'ipv6', '', d)}"
+PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
-- 
2.8.1



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

* [PATCH 17/17] xhost: control ipv6 support based on DISTRO_FEATURES
  2016-08-22  9:05 [PATCH 00/17] control ipv6 support based on DISTRO_FEATURES jackie.huang
                   ` (15 preceding siblings ...)
  2016-08-22  9:06 ` [PATCH 16/17] xauth: " jackie.huang
@ 2016-08-22  9:06 ` jackie.huang
  2016-08-31  5:30 ` [PATCH 00/17] " Huang, Jie (Jackie)
  17 siblings, 0 replies; 19+ messages in thread
From: jackie.huang @ 2016-08-22  9:06 UTC (permalink / raw)
  To: openembedded-core

From: Jackie Huang <jackie.huang@windriver.com>

Add PACKAGECONFIG for ipv6 and control it based
on DISTRO_FEATURES.

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta/recipes-graphics/xorg-app/xhost_1.0.7.bb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/recipes-graphics/xorg-app/xhost_1.0.7.bb b/meta/recipes-graphics/xorg-app/xhost_1.0.7.bb
index 825737f..f23d258 100644
--- a/meta/recipes-graphics/xorg-app/xhost_1.0.7.bb
+++ b/meta/recipes-graphics/xorg-app/xhost_1.0.7.bb
@@ -15,3 +15,6 @@ PE = "1"
 
 SRC_URI[md5sum] = "f5d490738b148cb7f2fe760f40f92516"
 SRC_URI[sha256sum] = "93e619ee15471f576cfb30c663e18f5bc70aca577a63d2c2c03f006a7837c29a"
+
+PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'ipv6', '', d)}"
+PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
-- 
2.8.1



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

* Re: [PATCH 00/17] control ipv6 support based on DISTRO_FEATURES
  2016-08-22  9:05 [PATCH 00/17] control ipv6 support based on DISTRO_FEATURES jackie.huang
                   ` (16 preceding siblings ...)
  2016-08-22  9:06 ` [PATCH 17/17] xhost: " jackie.huang
@ 2016-08-31  5:30 ` Huang, Jie (Jackie)
  17 siblings, 0 replies; 19+ messages in thread
From: Huang, Jie (Jackie) @ 2016-08-31  5:30 UTC (permalink / raw)
  To: openembedded-core

Ping.

I don't see a comment or rejection on these, will these be merged soon?

Thanks,
Jackie

> -----Original Message-----
> From: openembedded-core-bounces@lists.openembedded.org [mailto:openembedded-core-
> bounces@lists.openembedded.org] On Behalf Of jackie.huang@windriver.com
> Sent: Monday, August 22, 2016 5:06 PM
> To: openembedded-core@lists.openembedded.org
> Subject: [OE-core] [PATCH 00/17] control ipv6 support based on DISTRO_FEATURES
> 
> From: Jackie Huang <jackie.huang@windriver.com>
> 
> There is ipv6 configure option for these packages, and we need to them
> to be controled by DISTRO_FEATURES.
> 
> Tested with and without ipv6 in DISTRO_FEATURES on qemux86-64 and qemuarm.
> 
> --
> The following changes since commit f078ccf1ac60488169853724c35126cc056f975d:
> 
>   bitbake: siggen: Fix file variable typo in compare_sigfiles (2016-08-20 16:11:29 +0100)
> 
> are available in the git repository at:
> 
>   git://git.pokylinux.org/poky-contrib.git jhuang0/r_ipv6_160822_0
>   http://git.pokylinux.org/cgit.cgi//log/?h=jhuang0/r_ipv6_160822_0
> 
> Jackie Huang (17):
>   apr: control ipv6 support based on DISTRO_FEATURES
>   libice: control ipv6 support based on DISTRO_FEATURES
>   libpcap: control ipv6 support based on DISTRO_FEATURES
>   libsm: control ipv6 support based on DISTRO_FEATURES
>   libxfont: control ipv6 support based on DISTRO_FEATURES
>   libxml2: control ipv6 support based on DISTRO_FEATURES
>   libxmu: control ipv6 support based on DISTRO_FEATURES
>   lighttpd: control ipv6 support based on DISTRO_FEATURES
>   nfs-utils: control ipv6 support based on DISTRO_FEATURES
>   nspr: control ipv6 support based on DISTRO_FEATURES
>   psmisc: control ipv6 support based on DISTRO_FEATURES
>   pulseaudio: control ipv6 support based on DISTRO_FEATURES
>   rsync: use rsync.inc to avoid duplicated codes
>   rsync: control ipv6 support based on DISTRO_FEATURES
>   wget: control ipv6 support based on DISTRO_FEATURES
>   xauth: control ipv6 support based on DISTRO_FEATURES
>   xhost: control ipv6 support based on DISTRO_FEATURES
> 
>  meta/recipes-connectivity/libpcap/libpcap.inc      |  5 ++++-
>  .../nfs-utils/nfs-utils_1.3.3.bb                   |  5 ++++-
>  meta/recipes-core/libxml/libxml2_2.9.4.bb          |  5 ++++-
>  meta/recipes-devtools/rsync/rsync.inc              |  7 ++----
>  meta/recipes-devtools/rsync/rsync_2.6.9.bb         | 25 ++++++----------------
>  meta/recipes-devtools/rsync/rsync_3.1.2.bb         |  8 ++++++-
>  meta/recipes-extended/lighttpd/lighttpd_1.4.39.bb  |  5 ++++-
>  meta/recipes-extended/psmisc/psmisc.inc            |  3 +++
>  meta/recipes-extended/wget/wget.inc                |  5 +++--
>  meta/recipes-graphics/xorg-app/xauth_1.0.9.bb      |  3 +++
>  meta/recipes-graphics/xorg-app/xhost_1.0.7.bb      |  3 +++
>  meta/recipes-graphics/xorg-lib/libice_1.0.9.bb     |  3 ++-
>  meta/recipes-graphics/xorg-lib/libsm_1.2.2.bb      |  3 +++
>  meta/recipes-graphics/xorg-lib/libxfont_1.5.1.bb   |  3 +++
>  meta/recipes-graphics/xorg-lib/libxmu_1.1.2.bb     |  3 +++
>  meta/recipes-multimedia/pulseaudio/pulseaudio.inc  |  2 ++
>  meta/recipes-support/apr/apr_1.5.2.bb              |  3 +++
>  meta/recipes-support/nspr/nspr_4.12.bb             |  3 +++
>  18 files changed, 62 insertions(+), 32 deletions(-)
> 
> --
> 2.8.1
> 
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core


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

end of thread, other threads:[~2016-08-31  5:31 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-22  9:05 [PATCH 00/17] control ipv6 support based on DISTRO_FEATURES jackie.huang
2016-08-22  9:05 ` [PATCH 01/17] apr: " jackie.huang
2016-08-22  9:05 ` [PATCH 02/17] libice: " jackie.huang
2016-08-22  9:05 ` [PATCH 03/17] libpcap: " jackie.huang
2016-08-22  9:05 ` [PATCH 04/17] libsm: " jackie.huang
2016-08-22  9:05 ` [PATCH 05/17] libxfont: " jackie.huang
2016-08-22  9:05 ` [PATCH 06/17] libxml2: " jackie.huang
2016-08-22  9:06 ` [PATCH 07/17] libxmu: " jackie.huang
2016-08-22  9:06 ` [PATCH 08/17] lighttpd: " jackie.huang
2016-08-22  9:06 ` [PATCH 09/17] nfs-utils: " jackie.huang
2016-08-22  9:06 ` [PATCH 10/17] nspr: " jackie.huang
2016-08-22  9:06 ` [PATCH 11/17] psmisc: " jackie.huang
2016-08-22  9:06 ` [PATCH 12/17] pulseaudio: " jackie.huang
2016-08-22  9:06 ` [PATCH 13/17] rsync: use rsync.inc to avoid duplicated codes jackie.huang
2016-08-22  9:06 ` [PATCH 14/17] rsync: control ipv6 support based on DISTRO_FEATURES jackie.huang
2016-08-22  9:06 ` [PATCH 15/17] wget: " jackie.huang
2016-08-22  9:06 ` [PATCH 16/17] xauth: " jackie.huang
2016-08-22  9:06 ` [PATCH 17/17] xhost: " jackie.huang
2016-08-31  5:30 ` [PATCH 00/17] " Huang, Jie (Jackie)

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.