* [PATCH] libnss-nis:upgrade 3.0 -> 3.1
@ 2019-08-02 2:34 Zang Ruochen
2019-08-02 13:32 ` Adrian Bunk
0 siblings, 1 reply; 3+ messages in thread
From: Zang Ruochen @ 2019-08-02 2:34 UTC (permalink / raw)
To: openembedded-core
-libnss-nis/0001-nis-hosts-Remove-use-of-RES_USE_INET6.patch
Removed since this is included in 3.1.
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
---
meta/recipes-extended/libnss-nis/libnss-nis.bb | 5 +-
...001-nis-hosts-Remove-use-of-RES_USE_INET6.patch | 162 ---------------------
2 files changed, 2 insertions(+), 165 deletions(-)
delete mode 100644 meta/recipes-extended/libnss-nis/libnss-nis/0001-nis-hosts-Remove-use-of-RES_USE_INET6.patch
diff --git a/meta/recipes-extended/libnss-nis/libnss-nis.bb b/meta/recipes-extended/libnss-nis/libnss-nis.bb
index 4fbd4b1..a1d914e 100644
--- a/meta/recipes-extended/libnss-nis/libnss-nis.bb
+++ b/meta/recipes-extended/libnss-nis/libnss-nis.bb
@@ -13,12 +13,11 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
SECTION = "libs"
DEPENDS += "libtirpc libnsl2"
-PV = "3.0+git${SRCPV}"
+PV = "3.1+git${SRCPV}"
-SRCREV = "d4aea48657a8e90d7922574b8021ee03915a36cb"
+SRCREV = "062f31999b35393abf7595cb89dfc9590d5a42ad"
SRC_URI = "git://github.com/thkukuk/libnss_nis \
- file://0001-nis-hosts-Remove-use-of-RES_USE_INET6.patch \
"
S = "${WORKDIR}/git"
diff --git a/meta/recipes-extended/libnss-nis/libnss-nis/0001-nis-hosts-Remove-use-of-RES_USE_INET6.patch b/meta/recipes-extended/libnss-nis/libnss-nis/0001-nis-hosts-Remove-use-of-RES_USE_INET6.patch
deleted file mode 100644
index 348c8c9..0000000
--- a/meta/recipes-extended/libnss-nis/libnss-nis/0001-nis-hosts-Remove-use-of-RES_USE_INET6.patch
+++ /dev/null
@@ -1,162 +0,0 @@
-From e41ddbd89a4bb042ac00469fa5880ba584c25c05 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Thu, 25 Jul 2019 12:10:56 -0700
-Subject: [PATCH] nis-hosts: Remove use of RES_USE_INET6
-
-Upstream glibc dropped it starting glibc 2.30
-see
-https://sourceware.org/git/?p=glibc.git;a=commit;h=3f8b44be0a658266adff5ece1e4bc3ce097a5dbe
-
-Fixes issue #6
-
-Upstream-Status: Submitted [https://github.com/thkukuk/libnss_nis/pull/7]
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- src/nis-hosts.c | 55 ++++++++++++-------------------------------------
- 1 file changed, 13 insertions(+), 42 deletions(-)
-
-diff --git a/src/nis-hosts.c b/src/nis-hosts.c
-index 307b46e..bd3c4ad 100644
---- a/src/nis-hosts.c
-+++ b/src/nis-hosts.c
-@@ -35,15 +35,12 @@
- #include "libc-lock.h"
- #include "nss-nis.h"
-
--/* Get implementation for some internal functions. */
--#include "mapv4v6addr.h"
--
- #define ENTNAME hostent
- #define DATABASE "hosts"
- #define NEED_H_ERRNO
-
--#define EXTRA_ARGS , af, flags
--#define EXTRA_ARGS_DECL , int af, int flags
-+#define EXTRA_ARGS , af
-+#define EXTRA_ARGS_DECL , int af
-
- #define ENTDATA hostent_data
- struct hostent_data
-@@ -67,19 +64,8 @@ LINE_PARSER
- /* Parse address. */
- if (af != AF_INET6 && inet_pton (AF_INET, addr, entdata->host_addr) > 0)
- {
-- assert ((flags & AI_V4MAPPED) == 0 || af != AF_UNSPEC);
-- if (flags & AI_V4MAPPED)
-- {
-- map_v4v6_address ((char *) entdata->host_addr,
-- (char *) entdata->host_addr);
-- result->h_addrtype = AF_INET6;
-- result->h_length = IN6ADDRSZ;
-- }
-- else
-- {
-- result->h_addrtype = AF_INET;
-- result->h_length = INADDRSZ;
-- }
-+ result->h_addrtype = AF_INET;
-+ result->h_length = INADDRSZ;
- }
- else if (af != AF_INET
- && inet_pton (AF_INET6, addr, entdata->host_addr) > 0)
-@@ -134,7 +120,7 @@ strong_alias (_nss_nis_sethostent, _nss_nis_endhostent)
- static enum nss_status
- internal_nis_gethostent_r (struct hostent *host, char *buffer,
- size_t buflen, int *errnop, int *h_errnop,
-- int af, int flags)
-+ int af)
- {
- char *domain;
- if (yp_get_default_domain (&domain))
-@@ -203,7 +189,7 @@ internal_nis_gethostent_r (struct hostent *host, char *buffer,
- ++p;
- free (result);
-
-- parse_res = parse_line (p, host, data, buflen, errnop, af, flags);
-+ parse_res = parse_line (p, host, data, buflen, errnop, af);
- if (parse_res == -1)
- {
- free (outkey);
-@@ -232,8 +218,7 @@ _nss_nis_gethostent_r (struct hostent *host, char *buffer, size_t buflen,
- __libc_lock_lock (lock);
-
- status = internal_nis_gethostent_r (host, buffer, buflen, errnop, h_errnop,
-- ((_res.options & RES_USE_INET6) ? AF_INET6 : AF_INET),
-- ((_res.options & RES_USE_INET6) ? AI_V4MAPPED : 0 ));
-+ AF_INET);
-
- __libc_lock_unlock (lock);
-
-@@ -244,7 +229,7 @@ _nss_nis_gethostent_r (struct hostent *host, char *buffer, size_t buflen,
- static enum nss_status
- internal_gethostbyname2_r (const char *name, int af, struct hostent *host,
- char *buffer, size_t buflen, int *errnop,
-- int *h_errnop, int flags)
-+ int *h_errnop)
- {
- uintptr_t pad = -(uintptr_t) buffer % __alignof__ (struct parser_data);
- buffer += pad;
-@@ -318,7 +303,7 @@ internal_gethostbyname2_r (const char *name, int af, struct hostent *host,
- ++p;
- free (result);
-
-- int parse_res = parse_line (p, host, data, buflen, errnop, af, flags);
-+ int parse_res = parse_line (p, host, data, buflen, errnop, af);
-
- if (parse_res < 1 || host->h_addrtype != af)
- {
-@@ -351,8 +336,7 @@ _nss_nis_gethostbyname2_r (const char *name, int af, struct hostent *host,
- }
-
- return internal_gethostbyname2_r (name, af, host, buffer, buflen, errnop,
-- h_errnop,
-- ((_res.options & RES_USE_INET6) ? AI_V4MAPPED : 0));
-+ h_errnop);
- }
-
-
-@@ -360,18 +344,8 @@ enum nss_status
- _nss_nis_gethostbyname_r (const char *name, struct hostent *host, char *buffer,
- size_t buflen, int *errnop, int *h_errnop)
- {
-- if (_res.options & RES_USE_INET6)
-- {
-- enum nss_status status;
--
-- status = internal_gethostbyname2_r (name, AF_INET6, host, buffer, buflen,
-- errnop, h_errnop, AI_V4MAPPED);
-- if (status == NSS_STATUS_SUCCESS)
-- return status;
-- }
--
- return internal_gethostbyname2_r (name, AF_INET, host, buffer, buflen,
-- errnop, h_errnop, 0);
-+ errnop, h_errnop);
- }
-
-
-@@ -433,9 +407,7 @@ _nss_nis_gethostbyaddr_r (const void *addr, socklen_t addrlen, int af,
- ++p;
- free (result);
-
-- int parse_res = parse_line (p, host, data, buflen, errnop, af,
-- ((_res.options & RES_USE_INET6)
-- ? AI_V4MAPPED : 0));
-+ int parse_res = parse_line (p, host, data, buflen, errnop, af);
- if (parse_res < 1)
- {
- if (parse_res == -1)
-@@ -532,8 +504,7 @@ _nss_nis_gethostbyname4_r (const char *name, struct gaih_addrtuple **pat,
- buflen -= pad;
-
- struct hostent host;
-- int parse_res = parse_line (result, &host, data, buflen, errnop, AF_UNSPEC,
-- 0);
-+ int parse_res = parse_line (result, &host, data, buflen, errnop, AF_UNSPEC);
- if (parse_res < 1)
- {
- if (parse_res == -1)
---
-2.22.0
-
--
2.7.4
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] libnss-nis:upgrade 3.0 -> 3.1
2019-08-02 2:34 [PATCH] libnss-nis:upgrade 3.0 -> 3.1 Zang Ruochen
@ 2019-08-02 13:32 ` Adrian Bunk
0 siblings, 0 replies; 3+ messages in thread
From: Adrian Bunk @ 2019-08-02 13:32 UTC (permalink / raw)
To: Zang Ruochen; +Cc: openembedded-core
On Fri, Aug 02, 2019 at 10:34:35AM +0800, Zang Ruochen wrote:
> -libnss-nis/0001-nis-hosts-Remove-use-of-RES_USE_INET6.patch
> Removed since this is included in 3.1.
>
> Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
> ---
> meta/recipes-extended/libnss-nis/libnss-nis.bb | 5 +-
> ...001-nis-hosts-Remove-use-of-RES_USE_INET6.patch | 162 ---------------------
> 2 files changed, 2 insertions(+), 165 deletions(-)
> delete mode 100644 meta/recipes-extended/libnss-nis/libnss-nis/0001-nis-hosts-Remove-use-of-RES_USE_INET6.patch
>
> diff --git a/meta/recipes-extended/libnss-nis/libnss-nis.bb b/meta/recipes-extended/libnss-nis/libnss-nis.bb
> index 4fbd4b1..a1d914e 100644
> --- a/meta/recipes-extended/libnss-nis/libnss-nis.bb
> +++ b/meta/recipes-extended/libnss-nis/libnss-nis.bb
> @@ -13,12 +13,11 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
> SECTION = "libs"
> DEPENDS += "libtirpc libnsl2"
>
> -PV = "3.0+git${SRCPV}"
> +PV = "3.1+git${SRCPV}"
>
> -SRCREV = "d4aea48657a8e90d7922574b8021ee03915a36cb"
> +SRCREV = "062f31999b35393abf7595cb89dfc9590d5a42ad"
>...
This is the actual release and not a git snapshot after 3.0,
please set PV = "3.1".
Thanks
Adrian
--
"Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
"Only a promise," Lao Er said.
Pearl S. Buck - Dragon Seed
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] libnss-nis: upgrade 3.0 -> 3.1
@ 2019-08-20 5:47 Yuan Chao
0 siblings, 0 replies; 3+ messages in thread
From: Yuan Chao @ 2019-08-20 5:47 UTC (permalink / raw)
To: openembedded-core
Remove patch 0001-nis-hosts-Remove-use-of-RES_USE_INET6.patch
since this is included in 3.1
Signed-off-by: Yuan Chao <yuanc.fnst@cn.fujitsu.com>
---
.../recipes-extended/libnss-nis/libnss-nis.bb | 5 +-
...is-hosts-Remove-use-of-RES_USE_INET6.patch | 162 ------------------
2 files changed, 2 insertions(+), 165 deletions(-)
delete mode 100644 meta/recipes-extended/libnss-nis/libnss-nis/0001-nis-hosts-Remove-use-of-RES_USE_INET6.patch
diff --git a/meta/recipes-extended/libnss-nis/libnss-nis.bb b/meta/recipes-extended/libnss-nis/libnss-nis.bb
index 4fbd4b1f6a..a1d914e871 100644
--- a/meta/recipes-extended/libnss-nis/libnss-nis.bb
+++ b/meta/recipes-extended/libnss-nis/libnss-nis.bb
@@ -13,12 +13,11 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
SECTION = "libs"
DEPENDS += "libtirpc libnsl2"
-PV = "3.0+git${SRCPV}"
+PV = "3.1+git${SRCPV}"
-SRCREV = "d4aea48657a8e90d7922574b8021ee03915a36cb"
+SRCREV = "062f31999b35393abf7595cb89dfc9590d5a42ad"
SRC_URI = "git://github.com/thkukuk/libnss_nis \
- file://0001-nis-hosts-Remove-use-of-RES_USE_INET6.patch \
"
S = "${WORKDIR}/git"
diff --git a/meta/recipes-extended/libnss-nis/libnss-nis/0001-nis-hosts-Remove-use-of-RES_USE_INET6.patch b/meta/recipes-extended/libnss-nis/libnss-nis/0001-nis-hosts-Remove-use-of-RES_USE_INET6.patch
deleted file mode 100644
index 348c8c94b6..0000000000
--- a/meta/recipes-extended/libnss-nis/libnss-nis/0001-nis-hosts-Remove-use-of-RES_USE_INET6.patch
+++ /dev/null
@@ -1,162 +0,0 @@
-From e41ddbd89a4bb042ac00469fa5880ba584c25c05 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Thu, 25 Jul 2019 12:10:56 -0700
-Subject: [PATCH] nis-hosts: Remove use of RES_USE_INET6
-
-Upstream glibc dropped it starting glibc 2.30
-see
-https://sourceware.org/git/?p=glibc.git;a=commit;h=3f8b44be0a658266adff5ece1e4bc3ce097a5dbe
-
-Fixes issue #6
-
-Upstream-Status: Submitted [https://github.com/thkukuk/libnss_nis/pull/7]
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- src/nis-hosts.c | 55 ++++++++++++-------------------------------------
- 1 file changed, 13 insertions(+), 42 deletions(-)
-
-diff --git a/src/nis-hosts.c b/src/nis-hosts.c
-index 307b46e..bd3c4ad 100644
---- a/src/nis-hosts.c
-+++ b/src/nis-hosts.c
-@@ -35,15 +35,12 @@
- #include "libc-lock.h"
- #include "nss-nis.h"
-
--/* Get implementation for some internal functions. */
--#include "mapv4v6addr.h"
--
- #define ENTNAME hostent
- #define DATABASE "hosts"
- #define NEED_H_ERRNO
-
--#define EXTRA_ARGS , af, flags
--#define EXTRA_ARGS_DECL , int af, int flags
-+#define EXTRA_ARGS , af
-+#define EXTRA_ARGS_DECL , int af
-
- #define ENTDATA hostent_data
- struct hostent_data
-@@ -67,19 +64,8 @@ LINE_PARSER
- /* Parse address. */
- if (af != AF_INET6 && inet_pton (AF_INET, addr, entdata->host_addr) > 0)
- {
-- assert ((flags & AI_V4MAPPED) == 0 || af != AF_UNSPEC);
-- if (flags & AI_V4MAPPED)
-- {
-- map_v4v6_address ((char *) entdata->host_addr,
-- (char *) entdata->host_addr);
-- result->h_addrtype = AF_INET6;
-- result->h_length = IN6ADDRSZ;
-- }
-- else
-- {
-- result->h_addrtype = AF_INET;
-- result->h_length = INADDRSZ;
-- }
-+ result->h_addrtype = AF_INET;
-+ result->h_length = INADDRSZ;
- }
- else if (af != AF_INET
- && inet_pton (AF_INET6, addr, entdata->host_addr) > 0)
-@@ -134,7 +120,7 @@ strong_alias (_nss_nis_sethostent, _nss_nis_endhostent)
- static enum nss_status
- internal_nis_gethostent_r (struct hostent *host, char *buffer,
- size_t buflen, int *errnop, int *h_errnop,
-- int af, int flags)
-+ int af)
- {
- char *domain;
- if (yp_get_default_domain (&domain))
-@@ -203,7 +189,7 @@ internal_nis_gethostent_r (struct hostent *host, char *buffer,
- ++p;
- free (result);
-
-- parse_res = parse_line (p, host, data, buflen, errnop, af, flags);
-+ parse_res = parse_line (p, host, data, buflen, errnop, af);
- if (parse_res == -1)
- {
- free (outkey);
-@@ -232,8 +218,7 @@ _nss_nis_gethostent_r (struct hostent *host, char *buffer, size_t buflen,
- __libc_lock_lock (lock);
-
- status = internal_nis_gethostent_r (host, buffer, buflen, errnop, h_errnop,
-- ((_res.options & RES_USE_INET6) ? AF_INET6 : AF_INET),
-- ((_res.options & RES_USE_INET6) ? AI_V4MAPPED : 0 ));
-+ AF_INET);
-
- __libc_lock_unlock (lock);
-
-@@ -244,7 +229,7 @@ _nss_nis_gethostent_r (struct hostent *host, char *buffer, size_t buflen,
- static enum nss_status
- internal_gethostbyname2_r (const char *name, int af, struct hostent *host,
- char *buffer, size_t buflen, int *errnop,
-- int *h_errnop, int flags)
-+ int *h_errnop)
- {
- uintptr_t pad = -(uintptr_t) buffer % __alignof__ (struct parser_data);
- buffer += pad;
-@@ -318,7 +303,7 @@ internal_gethostbyname2_r (const char *name, int af, struct hostent *host,
- ++p;
- free (result);
-
-- int parse_res = parse_line (p, host, data, buflen, errnop, af, flags);
-+ int parse_res = parse_line (p, host, data, buflen, errnop, af);
-
- if (parse_res < 1 || host->h_addrtype != af)
- {
-@@ -351,8 +336,7 @@ _nss_nis_gethostbyname2_r (const char *name, int af, struct hostent *host,
- }
-
- return internal_gethostbyname2_r (name, af, host, buffer, buflen, errnop,
-- h_errnop,
-- ((_res.options & RES_USE_INET6) ? AI_V4MAPPED : 0));
-+ h_errnop);
- }
-
-
-@@ -360,18 +344,8 @@ enum nss_status
- _nss_nis_gethostbyname_r (const char *name, struct hostent *host, char *buffer,
- size_t buflen, int *errnop, int *h_errnop)
- {
-- if (_res.options & RES_USE_INET6)
-- {
-- enum nss_status status;
--
-- status = internal_gethostbyname2_r (name, AF_INET6, host, buffer, buflen,
-- errnop, h_errnop, AI_V4MAPPED);
-- if (status == NSS_STATUS_SUCCESS)
-- return status;
-- }
--
- return internal_gethostbyname2_r (name, AF_INET, host, buffer, buflen,
-- errnop, h_errnop, 0);
-+ errnop, h_errnop);
- }
-
-
-@@ -433,9 +407,7 @@ _nss_nis_gethostbyaddr_r (const void *addr, socklen_t addrlen, int af,
- ++p;
- free (result);
-
-- int parse_res = parse_line (p, host, data, buflen, errnop, af,
-- ((_res.options & RES_USE_INET6)
-- ? AI_V4MAPPED : 0));
-+ int parse_res = parse_line (p, host, data, buflen, errnop, af);
- if (parse_res < 1)
- {
- if (parse_res == -1)
-@@ -532,8 +504,7 @@ _nss_nis_gethostbyname4_r (const char *name, struct gaih_addrtuple **pat,
- buflen -= pad;
-
- struct hostent host;
-- int parse_res = parse_line (result, &host, data, buflen, errnop, AF_UNSPEC,
-- 0);
-+ int parse_res = parse_line (result, &host, data, buflen, errnop, AF_UNSPEC);
- if (parse_res < 1)
- {
- if (parse_res == -1)
---
-2.22.0
-
--
2.17.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-08-20 5:48 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-08-02 2:34 [PATCH] libnss-nis:upgrade 3.0 -> 3.1 Zang Ruochen
2019-08-02 13:32 ` Adrian Bunk
-- strict thread matches above, loose matches on Subject: below --
2019-08-20 5:47 [PATCH] libnss-nis: upgrade " Yuan Chao
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.