* [PATCH] bind: Add DISTRO_FEATURES support for ipv6
@ 2011-01-27 16:10 Ryan D Phillips
2011-01-27 18:17 ` Tom Rini
0 siblings, 1 reply; 4+ messages in thread
From: Ryan D Phillips @ 2011-01-27 16:10 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Ryan D Phillips <ryan_d_phillips@dell.com>
---
recipes/bind/bind_9.3.1.bb | 6 ++++--
recipes/bind/bind_9.3.4-P1.bb | 6 ++++--
recipes/bind/bind_9.3.5-P1.bb | 6 ++++--
recipes/bind/bind_9.3.6.bb | 7 +++++--
4 files changed, 17 insertions(+), 8 deletions(-)
diff --git a/recipes/bind/bind_9.3.1.bb b/recipes/bind/bind_9.3.1.bb
index 268253e..11d4c71 100644
--- a/recipes/bind/bind_9.3.1.bb
+++ b/recipes/bind/bind_9.3.1.bb
@@ -1,7 +1,7 @@
DEPENDS = "openssl"
RPEDENDS = ""
DESCRIPTION = "ISC Internet Domain Name Server"
-PR = "r1"
+PR = "r2"
SRC_URI = "ftp://ftp.isc.org/isc/bind9/9.3.1/bind-9.3.1.tar.gz \
file://lib_dns_Makefile.in.patch \
@@ -9,7 +9,9 @@ SRC_URI = "ftp://ftp.isc.org/isc/bind9/9.3.1/bind-9.3.1.tar.gz \
file://conf.patch \
"
-EXTRA_OECONF = " --enable-ipv6=no --with-randomdev=/dev/random --disable-threads --sysconfdir=/etc/bind --localstatedir=/var --prefix=/usr"
+EXTRA_OECONF = "--with-randomdev=/dev/random --disable-threads \
+ --sysconfdir=/etc/bind --localstatedir=/var --prefix=/usr \
+ ${@base_contains('DISTRO_FEATURES', 'ipv6', '--enable-ipv6=yes', '--enable-ipv6=no', d)}"
inherit autotools update-rc.d
INITSCRIPT_NAME = "bind"
diff --git a/recipes/bind/bind_9.3.4-P1.bb b/recipes/bind/bind_9.3.4-P1.bb
index 70c261e..f8ae48f 100644
--- a/recipes/bind/bind_9.3.4-P1.bb
+++ b/recipes/bind/bind_9.3.4-P1.bb
@@ -2,7 +2,7 @@ DESCRIPTION = "ISC Internet Domain Name Server"
SECTION = "console/network"
HOMEPAGE = "http://www.isc.org/sw/bind/"
LICENSE = "BSD"
-PR = "r0"
+PR = "r1"
DEPENDS = "openssl"
@@ -12,7 +12,9 @@ SRC_URI = "ftp://ftp.isc.org/isc/bind9/9.3.4-P1/bind-9.3.4-P1.tar.gz \
file://so_bsdcompat.patch \
"
-EXTRA_OECONF = " --enable-ipv6=no --with-randomdev=/dev/random --disable-threads --sysconfdir=/etc/bind --localstatedir=/var --prefix=/usr"
+EXTRA_OECONF = "--with-randomdev=/dev/random --disable-threads \
+ --sysconfdir=/etc/bind --localstatedir=/var --prefix=/usr \
+ ${@base_contains('DISTRO_FEATURES', 'ipv6', '--enable-ipv6=yes', '--enable-ipv6=no', d)}"
inherit autotools update-rc.d
INITSCRIPT_NAME = "bind"
diff --git a/recipes/bind/bind_9.3.5-P1.bb b/recipes/bind/bind_9.3.5-P1.bb
index bb98261..f573e57 100644
--- a/recipes/bind/bind_9.3.5-P1.bb
+++ b/recipes/bind/bind_9.3.5-P1.bb
@@ -2,7 +2,7 @@ DESCRIPTION = "ISC Internet Domain Name Server"
SECTION = "console/network"
HOMEPAGE = "http://www.isc.org/sw/bind/"
LICENSE = "BSD"
-PR = "r0"
+PR = "r1"
DEPENDS = "openssl"
@@ -12,7 +12,9 @@ SRC_URI = "ftp://ftp.isc.org/isc/bind9/9.3.5-P1/bind-9.3.5-P1.tar.gz \
file://so_bsdcompat.patch \
"
-EXTRA_OECONF = " --enable-ipv6=no --with-randomdev=/dev/random --disable-threads --sysconfdir=/etc/bind --localstatedir=/var --prefix=/usr"
+EXTRA_OECONF = "--with-randomdev=/dev/random --disable-threads \
+ --sysconfdir=/etc/bind --localstatedir=/var --prefix=/usr \
+ ${@base_contains('DISTRO_FEATURES', 'ipv6', '--enable-ipv6=yes', '--enable-ipv6=no', d)}"
inherit autotools update-rc.d
INITSCRIPT_NAME = "bind"
diff --git a/recipes/bind/bind_9.3.6.bb b/recipes/bind/bind_9.3.6.bb
index b10d6e8..2ea37f9 100644
--- a/recipes/bind/bind_9.3.6.bb
+++ b/recipes/bind/bind_9.3.6.bb
@@ -2,7 +2,7 @@ DESCRIPTION = "ISC Internet Domain Name Server"
SECTION = "console/network"
HOMEPAGE = "http://www.isc.org/sw/bind/"
LICENSE = "BSD"
-PR = "r1"
+PR = "r2"
DEPENDS = "openssl"
@@ -11,7 +11,10 @@ SRC_URI = "ftp://ftp.isc.org/isc/bind9/${PV}/${PN}-${PV}.tar.gz \
file://configure.in.patch \
"
-EXTRA_OECONF = " --enable-ipv6=no --with-randomdev=/dev/random --disable-threads --sysconfdir=/etc/bind --localstatedir=/var --prefix=/usr --disable-devpoll --disable-epoll"
+EXTRA_OECONF = "--with-randomdev=/dev/random --disable-threads \
+ --sysconfdir=/etc/bind --localstatedir=/var --prefix=/usr --disable-devpoll \
+ --disable-epoll \
+ ${@base_contains('DISTRO_FEATURES', 'ipv6', '--enable-ipv6=yes', '--enable-ipv6=no', d)}"
inherit autotools update-rc.d
INITSCRIPT_NAME = "bind"
--
1.7.2.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] bind: Add DISTRO_FEATURES support for ipv6
2011-01-27 16:10 [PATCH] bind: Add DISTRO_FEATURES support for ipv6 Ryan D Phillips
@ 2011-01-27 18:17 ` Tom Rini
2011-01-27 18:59 ` Khem Raj
0 siblings, 1 reply; 4+ messages in thread
From: Tom Rini @ 2011-01-27 18:17 UTC (permalink / raw)
To: openembedded-devel
On 01/27/2011 09:10 AM, Ryan D Phillips wrote:
> Signed-off-by: Ryan D Phillips<ryan_d_phillips@dell.com>
Acked-by: Tom Rini <tom_rini@mentor.com>
> ---
> recipes/bind/bind_9.3.1.bb | 6 ++++--
> recipes/bind/bind_9.3.4-P1.bb | 6 ++++--
> recipes/bind/bind_9.3.5-P1.bb | 6 ++++--
> recipes/bind/bind_9.3.6.bb | 7 +++++--
> 4 files changed, 17 insertions(+), 8 deletions(-)
>
> diff --git a/recipes/bind/bind_9.3.1.bb b/recipes/bind/bind_9.3.1.bb
> index 268253e..11d4c71 100644
> --- a/recipes/bind/bind_9.3.1.bb
> +++ b/recipes/bind/bind_9.3.1.bb
> @@ -1,7 +1,7 @@
> DEPENDS = "openssl"
> RPEDENDS = ""
> DESCRIPTION = "ISC Internet Domain Name Server"
> -PR = "r1"
> +PR = "r2"
>
> SRC_URI = "ftp://ftp.isc.org/isc/bind9/9.3.1/bind-9.3.1.tar.gz \
> file://lib_dns_Makefile.in.patch \
> @@ -9,7 +9,9 @@ SRC_URI = "ftp://ftp.isc.org/isc/bind9/9.3.1/bind-9.3.1.tar.gz \
> file://conf.patch \
> "
>
> -EXTRA_OECONF = " --enable-ipv6=no --with-randomdev=/dev/random --disable-threads --sysconfdir=/etc/bind --localstatedir=/var --prefix=/usr"
> +EXTRA_OECONF = "--with-randomdev=/dev/random --disable-threads \
> + --sysconfdir=/etc/bind --localstatedir=/var --prefix=/usr \
> + ${@base_contains('DISTRO_FEATURES', 'ipv6', '--enable-ipv6=yes', '--enable-ipv6=no', d)}"
> inherit autotools update-rc.d
>
> INITSCRIPT_NAME = "bind"
> diff --git a/recipes/bind/bind_9.3.4-P1.bb b/recipes/bind/bind_9.3.4-P1.bb
> index 70c261e..f8ae48f 100644
> --- a/recipes/bind/bind_9.3.4-P1.bb
> +++ b/recipes/bind/bind_9.3.4-P1.bb
> @@ -2,7 +2,7 @@ DESCRIPTION = "ISC Internet Domain Name Server"
> SECTION = "console/network"
> HOMEPAGE = "http://www.isc.org/sw/bind/"
> LICENSE = "BSD"
> -PR = "r0"
> +PR = "r1"
>
> DEPENDS = "openssl"
>
> @@ -12,7 +12,9 @@ SRC_URI = "ftp://ftp.isc.org/isc/bind9/9.3.4-P1/bind-9.3.4-P1.tar.gz \
> file://so_bsdcompat.patch \
> "
>
> -EXTRA_OECONF = " --enable-ipv6=no --with-randomdev=/dev/random --disable-threads --sysconfdir=/etc/bind --localstatedir=/var --prefix=/usr"
> +EXTRA_OECONF = "--with-randomdev=/dev/random --disable-threads \
> + --sysconfdir=/etc/bind --localstatedir=/var --prefix=/usr \
> + ${@base_contains('DISTRO_FEATURES', 'ipv6', '--enable-ipv6=yes', '--enable-ipv6=no', d)}"
> inherit autotools update-rc.d
>
> INITSCRIPT_NAME = "bind"
> diff --git a/recipes/bind/bind_9.3.5-P1.bb b/recipes/bind/bind_9.3.5-P1.bb
> index bb98261..f573e57 100644
> --- a/recipes/bind/bind_9.3.5-P1.bb
> +++ b/recipes/bind/bind_9.3.5-P1.bb
> @@ -2,7 +2,7 @@ DESCRIPTION = "ISC Internet Domain Name Server"
> SECTION = "console/network"
> HOMEPAGE = "http://www.isc.org/sw/bind/"
> LICENSE = "BSD"
> -PR = "r0"
> +PR = "r1"
>
> DEPENDS = "openssl"
>
> @@ -12,7 +12,9 @@ SRC_URI = "ftp://ftp.isc.org/isc/bind9/9.3.5-P1/bind-9.3.5-P1.tar.gz \
> file://so_bsdcompat.patch \
> "
>
> -EXTRA_OECONF = " --enable-ipv6=no --with-randomdev=/dev/random --disable-threads --sysconfdir=/etc/bind --localstatedir=/var --prefix=/usr"
> +EXTRA_OECONF = "--with-randomdev=/dev/random --disable-threads \
> + --sysconfdir=/etc/bind --localstatedir=/var --prefix=/usr \
> + ${@base_contains('DISTRO_FEATURES', 'ipv6', '--enable-ipv6=yes', '--enable-ipv6=no', d)}"
> inherit autotools update-rc.d
>
> INITSCRIPT_NAME = "bind"
> diff --git a/recipes/bind/bind_9.3.6.bb b/recipes/bind/bind_9.3.6.bb
> index b10d6e8..2ea37f9 100644
> --- a/recipes/bind/bind_9.3.6.bb
> +++ b/recipes/bind/bind_9.3.6.bb
> @@ -2,7 +2,7 @@ DESCRIPTION = "ISC Internet Domain Name Server"
> SECTION = "console/network"
> HOMEPAGE = "http://www.isc.org/sw/bind/"
> LICENSE = "BSD"
> -PR = "r1"
> +PR = "r2"
>
> DEPENDS = "openssl"
>
> @@ -11,7 +11,10 @@ SRC_URI = "ftp://ftp.isc.org/isc/bind9/${PV}/${PN}-${PV}.tar.gz \
> file://configure.in.patch \
> "
>
> -EXTRA_OECONF = " --enable-ipv6=no --with-randomdev=/dev/random --disable-threads --sysconfdir=/etc/bind --localstatedir=/var --prefix=/usr --disable-devpoll --disable-epoll"
> +EXTRA_OECONF = "--with-randomdev=/dev/random --disable-threads \
> + --sysconfdir=/etc/bind --localstatedir=/var --prefix=/usr --disable-devpoll \
> + --disable-epoll \
> + ${@base_contains('DISTRO_FEATURES', 'ipv6', '--enable-ipv6=yes', '--enable-ipv6=no', d)}"
> inherit autotools update-rc.d
>
> INITSCRIPT_NAME = "bind"
--
Tom Rini
Mentor Graphics Corporation
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] bind: Add DISTRO_FEATURES support for ipv6
2011-01-27 18:17 ` Tom Rini
@ 2011-01-27 18:59 ` Khem Raj
2011-01-27 19:35 ` Ryan Phillips
0 siblings, 1 reply; 4+ messages in thread
From: Khem Raj @ 2011-01-27 18:59 UTC (permalink / raw)
To: openembedded-devel
On Thu, Jan 27, 2011 at 10:17 AM, Tom Rini <tom_rini@mentor.com> wrote:
> On 01/27/2011 09:10 AM, Ryan D Phillips wrote:
>>
>> Signed-off-by: Ryan D Phillips<ryan_d_phillips@dell.com>
>
> Acked-by: Tom Rini <tom_rini@mentor.com>
>
>> ---
>> recipes/bind/bind_9.3.1.bb | 6 ++++--
>> recipes/bind/bind_9.3.4-P1.bb | 6 ++++--
>> recipes/bind/bind_9.3.5-P1.bb | 6 ++++--
>> recipes/bind/bind_9.3.6.bb | 7 +++++--
>> 4 files changed, 17 insertions(+), 8 deletions(-)
>>
>> diff --git a/recipes/bind/bind_9.3.1.bb b/recipes/bind/bind_9.3.1.bb
>> index 268253e..11d4c71 100644
>> --- a/recipes/bind/bind_9.3.1.bb
>> +++ b/recipes/bind/bind_9.3.1.bb
>> @@ -1,7 +1,7 @@
>> DEPENDS = "openssl"
>> RPEDENDS = ""
>> DESCRIPTION = "ISC Internet Domain Name Server"
>> -PR = "r1"
>> +PR = "r2"
>>
>> SRC_URI = "ftp://ftp.isc.org/isc/bind9/9.3.1/bind-9.3.1.tar.gz \
>> file://lib_dns_Makefile.in.patch \
>> @@ -9,7 +9,9 @@ SRC_URI =
>> "ftp://ftp.isc.org/isc/bind9/9.3.1/bind-9.3.1.tar.gz \
>> file://conf.patch \
>> "
>>
>> -EXTRA_OECONF = " --enable-ipv6=no --with-randomdev=/dev/random
>> --disable-threads --sysconfdir=/etc/bind --localstatedir=/var --prefix=/usr"
>> +EXTRA_OECONF = "--with-randomdev=/dev/random --disable-threads \
>> + --sysconfdir=/etc/bind --localstatedir=/var --prefix=/usr
>> \
>> + ${@base_contains('DISTRO_FEATURES', 'ipv6',
>> '--enable-ipv6=yes', '--enable-ipv6=no', d)}"
>> inherit autotools update-rc.d
>>
>> INITSCRIPT_NAME = "bind"
>> diff --git a/recipes/bind/bind_9.3.4-P1.bb b/recipes/bind/bind_9.3.4-P1.bb
>> index 70c261e..f8ae48f 100644
>> --- a/recipes/bind/bind_9.3.4-P1.bb
>> +++ b/recipes/bind/bind_9.3.4-P1.bb
>> @@ -2,7 +2,7 @@ DESCRIPTION = "ISC Internet Domain Name Server"
>> SECTION = "console/network"
>> HOMEPAGE = "http://www.isc.org/sw/bind/"
>> LICENSE = "BSD"
>> -PR = "r0"
>> +PR = "r1"
>>
>> DEPENDS = "openssl"
>>
>> @@ -12,7 +12,9 @@ SRC_URI =
>> "ftp://ftp.isc.org/isc/bind9/9.3.4-P1/bind-9.3.4-P1.tar.gz \
>> file://so_bsdcompat.patch \
>> "
>>
>> -EXTRA_OECONF = " --enable-ipv6=no --with-randomdev=/dev/random
>> --disable-threads --sysconfdir=/etc/bind --localstatedir=/var --prefix=/usr"
>> +EXTRA_OECONF = "--with-randomdev=/dev/random --disable-threads \
>> + --sysconfdir=/etc/bind --localstatedir=/var --prefix=/usr
>> \
>> + ${@base_contains('DISTRO_FEATURES', 'ipv6',
>> '--enable-ipv6=yes', '--enable-ipv6=no', d)}"
>> inherit autotools update-rc.d
>>
>> INITSCRIPT_NAME = "bind"
>> diff --git a/recipes/bind/bind_9.3.5-P1.bb b/recipes/bind/bind_9.3.5-P1.bb
>> index bb98261..f573e57 100644
>> --- a/recipes/bind/bind_9.3.5-P1.bb
>> +++ b/recipes/bind/bind_9.3.5-P1.bb
>> @@ -2,7 +2,7 @@ DESCRIPTION = "ISC Internet Domain Name Server"
>> SECTION = "console/network"
>> HOMEPAGE = "http://www.isc.org/sw/bind/"
>> LICENSE = "BSD"
>> -PR = "r0"
>> +PR = "r1"
>>
>> DEPENDS = "openssl"
>>
>> @@ -12,7 +12,9 @@ SRC_URI =
>> "ftp://ftp.isc.org/isc/bind9/9.3.5-P1/bind-9.3.5-P1.tar.gz \
>> file://so_bsdcompat.patch \
>> "
>>
>> -EXTRA_OECONF = " --enable-ipv6=no --with-randomdev=/dev/random
>> --disable-threads --sysconfdir=/etc/bind --localstatedir=/var --prefix=/usr"
>> +EXTRA_OECONF = "--with-randomdev=/dev/random --disable-threads \
>> + --sysconfdir=/etc/bind --localstatedir=/var --prefix=/usr
>> \
>> + ${@base_contains('DISTRO_FEATURES', 'ipv6',
>> '--enable-ipv6=yes', '--enable-ipv6=no', d)}"
>> inherit autotools update-rc.d
>>
>> INITSCRIPT_NAME = "bind"
>> diff --git a/recipes/bind/bind_9.3.6.bb b/recipes/bind/bind_9.3.6.bb
>> index b10d6e8..2ea37f9 100644
>> --- a/recipes/bind/bind_9.3.6.bb
>> +++ b/recipes/bind/bind_9.3.6.bb
>> @@ -2,7 +2,7 @@ DESCRIPTION = "ISC Internet Domain Name Server"
>> SECTION = "console/network"
>> HOMEPAGE = "http://www.isc.org/sw/bind/"
>> LICENSE = "BSD"
>> -PR = "r1"
>> +PR = "r2"
>>
>> DEPENDS = "openssl"
>>
>> @@ -11,7 +11,10 @@ SRC_URI =
>> "ftp://ftp.isc.org/isc/bind9/${PV}/${PN}-${PV}.tar.gz \
>> file://configure.in.patch \
>> "
>>
>> -EXTRA_OECONF = " --enable-ipv6=no --with-randomdev=/dev/random
>> --disable-threads --sysconfdir=/etc/bind --localstatedir=/var --prefix=/usr
>> --disable-devpoll --disable-epoll"
>> +EXTRA_OECONF = "--with-randomdev=/dev/random --disable-threads \
>> + --sysconfdir=/etc/bind --localstatedir=/var --prefix=/usr
>> --disable-devpoll \
>> + --disable-epoll \
>> + ${@base_contains('DISTRO_FEATURES', 'ipv6',
>> '--enable-ipv6=yes', '--enable-ipv6=no', d)}"
>> inherit autotools update-rc.d
>>
>> INITSCRIPT_NAME = "bind"
>
>
> --
> Tom Rini
> Mentor Graphics Corporation
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>
Commit here
commit a88aca1d7dfa3a08957dd49cb61bac850f197106
Author: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Date: Wed Jan 12 20:34:55 2011 +0100
autotools.bbclass: pass distro_imposed_configure_flags
should now automatically feed in --enale-ipv6 based on ipv6 being
selected and I see bind is inheriting autotools so why is it not
working for bind ?
-Khem
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] bind: Add DISTRO_FEATURES support for ipv6
2011-01-27 18:59 ` Khem Raj
@ 2011-01-27 19:35 ` Ryan Phillips
0 siblings, 0 replies; 4+ messages in thread
From: Ryan Phillips @ 2011-01-27 19:35 UTC (permalink / raw)
To: openembedded-devel
Khem Raj <raj.khem@gmail.com> said:
> Commit here
> commit a88aca1d7dfa3a08957dd49cb61bac850f197106
> Author: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
> Date: Wed Jan 12 20:34:55 2011 +0100
>
> autotools.bbclass: pass distro_imposed_configure_flags
>
>
> should now automatically feed in --enale-ipv6 based on ipv6 being
> selected and I see bind is inheriting autotools so why is it not
> working for bind ?
>
The bitbake recipe was specifically disabling ipv6 support with
--enable-ipv6=no. I'm following the stable OE release from December... It does
appear OE's dev branch can do exactly as you propose, Khem.
Regards,
Ryan
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-01-27 19:42 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-27 16:10 [PATCH] bind: Add DISTRO_FEATURES support for ipv6 Ryan D Phillips
2011-01-27 18:17 ` Tom Rini
2011-01-27 18:59 ` Khem Raj
2011-01-27 19:35 ` Ryan Phillips
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.