* [PATCH] valkey: update from 8.0.2 -> 8.1.0
@ 2025-04-02 14:24 Randy.MacLeod
0 siblings, 0 replies; 7+ messages in thread
From: Randy.MacLeod @ 2025-04-02 14:24 UTC (permalink / raw)
To: openembedded-devel
From: Randy MacLeod <Randy.MacLeod@windriver.com>
Release notes:
https://github.com/valkey-io/valkey/releases/tag/8.1.0
The license file checksum changed because upstream added the line:
SPDX-License-Identifier: BSD-3-Clause
Adjust the patches using devtool and manually munge the Upstream-Status-es.
Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
---
.../valkey/0001-src-Do-not-reset-FINAL_LIBS.patch | 13 +++++--------
.../valkey/valkey/GNU_SOURCE-7.patch | 4 ++--
.../hiredis-use-default-CC-if-it-is-set.patch | 8 +++++---
...Makefile-to-use-environment-build-setting.patch | 14 +++++++++-----
.../valkey/valkey/oe-use-libc-malloc.patch | 11 +++++++----
.../valkey/{valkey_8.0.2.bb => valkey_8.1.0.bb} | 6 +++---
6 files changed, 31 insertions(+), 25 deletions(-)
rename meta-oe/recipes-extended/valkey/{valkey_8.0.2.bb => valkey_8.1.0.bb} (92%)
diff --git a/meta-oe/recipes-extended/valkey/valkey/0001-src-Do-not-reset-FINAL_LIBS.patch b/meta-oe/recipes-extended/valkey/valkey/0001-src-Do-not-reset-FINAL_LIBS.patch
index ab2265bdba..7dd064fc03 100644
--- a/meta-oe/recipes-extended/valkey/valkey/0001-src-Do-not-reset-FINAL_LIBS.patch
+++ b/meta-oe/recipes-extended/valkey/valkey/0001-src-Do-not-reset-FINAL_LIBS.patch
@@ -1,4 +1,4 @@
-From b4cf6e677cec75a0d2b57dcb2960ad1e16908c82 Mon Sep 17 00:00:00 2001
+From a657a3c88488e761c05011400fcee5328fc797e1 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Tue, 10 Sep 2019 20:04:26 -0700
Subject: [PATCH] src: Do not reset FINAL_LIBS
@@ -16,18 +16,15 @@ Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Makefile b/src/Makefile
-index e0b1d2722..48988e271 100644
+index 5919f01e9..e95050376 100644
--- a/src/Makefile
+++ b/src/Makefile
-@@ -145,7 +145,7 @@ ifeq ($(SERVER_TEST),yes)
- FINAL_CFLAGS +=-DSERVER_TEST=1
- endif
+@@ -138,7 +138,7 @@ endif
+
+ FINAL_CFLAGS=$(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS) $(SERVER_CFLAGS)
FINAL_LDFLAGS=$(LDFLAGS) $(OPT) $(SERVER_LDFLAGS) $(DEBUG)
-FINAL_LIBS=-lm
+FINAL_LIBS+=-lm
DEBUG=-g -ggdb
# Linux ARM32 needs -latomic at linking time
---
-2.39.5
-
diff --git a/meta-oe/recipes-extended/valkey/valkey/GNU_SOURCE-7.patch b/meta-oe/recipes-extended/valkey/valkey/GNU_SOURCE-7.patch
index fa11d058ff..bf6fc9ab24 100644
--- a/meta-oe/recipes-extended/valkey/valkey/GNU_SOURCE-7.patch
+++ b/meta-oe/recipes-extended/valkey/valkey/GNU_SOURCE-7.patch
@@ -1,4 +1,4 @@
-From f3dd59789e4a8b06777be2725c6c3e36050fd6ec Mon Sep 17 00:00:00 2001
+From 6414a404c3216e654cc6583ebda0c7b3bd304ecf Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Sat, 21 Dec 2019 12:09:51 -0800
Subject: [PATCH] Define _GNU_SOURCE to get PTHREAD_MUTEX_INITIALIZER
@@ -16,7 +16,7 @@ Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
1 file changed, 1 insertion(+)
diff --git a/src/zmalloc.c b/src/zmalloc.c
-index 7b19107b6..bd365c11c 100644
+index 3abf9a31a..fa2f25c07 100644
--- a/src/zmalloc.c
+++ b/src/zmalloc.c
@@ -33,6 +33,7 @@
diff --git a/meta-oe/recipes-extended/valkey/valkey/hiredis-use-default-CC-if-it-is-set.patch b/meta-oe/recipes-extended/valkey/valkey/hiredis-use-default-CC-if-it-is-set.patch
index 3168c5860e..ffb365f371 100644
--- a/meta-oe/recipes-extended/valkey/valkey/hiredis-use-default-CC-if-it-is-set.patch
+++ b/meta-oe/recipes-extended/valkey/valkey/hiredis-use-default-CC-if-it-is-set.patch
@@ -1,4 +1,4 @@
-From 5e6c3052930f1d831d3479cb59533c08277700ff Mon Sep 17 00:00:00 2001
+From a5bcf56630df520040076dd14c3c54fef0785ceb Mon Sep 17 00:00:00 2001
From: Venture Research <tech@ventureresearch.com>
Date: Fri, 8 Feb 2013 17:39:52 -0600
Subject: [PATCH] hiredis: use default CC if it is set
@@ -20,9 +20,11 @@ Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Reworked for 8.0.0
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
----
-Upstream-Status: Pending
+Reworked for 8.1.0
+Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
+Upstream-Status: Inappropriate [OE-specifc]
+---
deps/hiredis/Makefile | 2 --
1 file changed, 2 deletions(-)
diff --git a/meta-oe/recipes-extended/valkey/valkey/lua-update-Makefile-to-use-environment-build-setting.patch b/meta-oe/recipes-extended/valkey/valkey/lua-update-Makefile-to-use-environment-build-setting.patch
index 1c37626381..b91684afd6 100644
--- a/meta-oe/recipes-extended/valkey/valkey/lua-update-Makefile-to-use-environment-build-setting.patch
+++ b/meta-oe/recipes-extended/valkey/valkey/lua-update-Makefile-to-use-environment-build-setting.patch
@@ -1,4 +1,4 @@
-From 892225f5101b1131434d323c55e79a93dc189609 Mon Sep 17 00:00:00 2001
+From 60487572d23cb374f8eb6b6560c385ecf6ad417e Mon Sep 17 00:00:00 2001
From: Venture Research <tech@ventureresearch.com>
Date: Fri, 8 Feb 2013 20:22:19 -0600
Subject: [PATCH] lua: update Makefile to use environment build settings
@@ -15,19 +15,23 @@ Signed-off-by: Armin Kuster <akust808@gmail.com>
updated to work wtih 6.2.1
Signed-off-by: Yi Fan Yu <yifan.yu@windriver.com>
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
----
-Upstream-Status: Pending
+Updated to work with 8.1.x
+Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
+
+Upstream-Status: Inappropriate [OE-specific]
+
+---
deps/Makefile | 1 -
deps/lua/Makefile | 1 -
deps/lua/src/Makefile | 16 ++++++----------
3 files changed, 6 insertions(+), 12 deletions(-)
diff --git a/deps/Makefile b/deps/Makefile
-index f1e4bd6ce..b9e50d049 100644
+index 72389def9..5d3ade528 100644
--- a/deps/Makefile
+++ b/deps/Makefile
-@@ -94,7 +94,6 @@ endif
+@@ -95,7 +95,6 @@ endif
# lua's Makefile defines AR="ar rcu", which is unusual, and makes it more
# challenging to cross-compile lua (and redis). These defines make it easier
# to fit redis into cross-compilation environments, which typically set AR.
diff --git a/meta-oe/recipes-extended/valkey/valkey/oe-use-libc-malloc.patch b/meta-oe/recipes-extended/valkey/valkey/oe-use-libc-malloc.patch
index 3bab01e3fb..a711830e41 100644
--- a/meta-oe/recipes-extended/valkey/valkey/oe-use-libc-malloc.patch
+++ b/meta-oe/recipes-extended/valkey/valkey/oe-use-libc-malloc.patch
@@ -1,4 +1,4 @@
-From ad79a81d6582555e580bdba42c959477e7d35ae7 Mon Sep 17 00:00:00 2001
+From 87bbb65c3c5fb7d248871d9c3bcbd3d27c781449 Mon Sep 17 00:00:00 2001
From: Venture Research <tech@ventureresearch.com>
Date: Wed, 6 Feb 2013 20:51:02 -0600
Subject: [PATCH] hack to force use of libc malloc
@@ -17,14 +17,17 @@ Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
Update to work with 8.0.0
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
----
-Upstream-Status: Pending
+Update to work with 8.1.0
+Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
+
+Upstream-Status: Inappropriate [Embedded specific]
+---
src/Makefile | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/Makefile b/src/Makefile
-index 13fa1c027..e0b1d2722 100644
+index 1437f41bd..5919f01e9 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -13,7 +13,8 @@
diff --git a/meta-oe/recipes-extended/valkey/valkey_8.0.2.bb b/meta-oe/recipes-extended/valkey/valkey_8.1.0.bb
similarity index 92%
rename from meta-oe/recipes-extended/valkey/valkey_8.0.2.bb
rename to meta-oe/recipes-extended/valkey/valkey_8.1.0.bb
index 04ed342556..8662221ca4 100644
--- a/meta-oe/recipes-extended/valkey/valkey_8.0.2.bb
+++ b/meta-oe/recipes-extended/valkey/valkey_8.1.0.bb
@@ -3,11 +3,11 @@ DESCRIPTION = "A flexible distributed key-value datastore that supports both cac
HOMEPAGE = "http://valkey.io"
SECTION = "libs"
LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://COPYING;md5=f924153a31f3091d2c9c500317d53425"
+LIC_FILES_CHKSUM = "file://COPYING;md5=08b9159809d809e8aaa340a8387e693e"
DEPENDS = "readline lua ncurses"
SRC_URI = " \
- git://github.com/valkey-io/valkey.git;branch=8.0;protocol=https \
+ git://github.com/valkey-io/valkey.git;branch=8.1;protocol=https \
file://valkey.conf \
file://init-valkey-server \
file://valkey.service \
@@ -17,7 +17,7 @@ SRC_URI = " \
file://0001-src-Do-not-reset-FINAL_LIBS.patch \
file://GNU_SOURCE-7.patch \
"
-SRCREV = "d6a2f561e2751d4ab246ad084e4fa185526fa479"
+SRCREV = "67c8683792fc9ab7e295f833478eca180c5e4691"
S = "${WORKDIR}/git"
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH] valkey: update from 8.0.2 -> 8.1.0
@ 2025-04-03 20:44 Randy.MacLeod
2025-04-03 21:03 ` [oe] " Khem Raj
0 siblings, 1 reply; 7+ messages in thread
From: Randy.MacLeod @ 2025-04-03 20:44 UTC (permalink / raw)
To: openembedded-devel
From: Randy MacLeod <Randy.MacLeod@windriver.com>
Release notes:
https://github.com/valkey-io/valkey/releases/tag/8.1.0
The license file checksum changed because upstream added the line:
SPDX-License-Identifier: BSD-3-Clause
Add OECONF to avoid build-time checks for strcase[str|cmp], both of
which have been in glibc and musl for > 10 years so it's sensible to
default to yes.
Adjust the patches using devtool and manually munge the Upstream-Status-es.
Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
---
.../recipes-support/nano/{nano_8.3.bb => nano_8.4.bb} | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
rename meta-oe/recipes-support/nano/{nano_8.3.bb => nano_8.4.bb} (75%)
diff --git a/meta-oe/recipes-support/nano/nano_8.3.bb b/meta-oe/recipes-support/nano/nano_8.4.bb
similarity index 75%
rename from meta-oe/recipes-support/nano/nano_8.3.bb
rename to meta-oe/recipes-support/nano/nano_8.4.bb
index d1af89ef8d..1aae49d3b6 100644
--- a/meta-oe/recipes-support/nano/nano_8.3.bb
+++ b/meta-oe/recipes-support/nano/nano_8.4.bb
@@ -13,10 +13,17 @@ RDEPENDS:${PN} = "ncurses-terminfo-base"
PV_MAJOR = "${@d.getVar('PV').split('.')[0]}"
SRC_URI = "https://nano-editor.org/dist/v${PV_MAJOR}/nano-${PV}.tar.xz"
-SRC_URI[sha256sum] = "551b717b2e28f7e90f749323686a1b5bbbd84cfa1390604d854a3ca3778f111e"
+SRC_URI[sha256sum] = "5ad29222bbd55624d87ea677928b3106a743114d6c6f9b41f36c97be2a8e628d"
UPSTREAM_CHECK_URI = "https://ftp.gnu.org/gnu/nano"
inherit autotools gettext pkgconfig
+EXTRA_OECONF = " \
+ ac_cv_func_strcasestr=yes \
+ gl_cv_func_strcasecmp_works=yes \
+ ac_cv_func_strcasecmp=yes \
+"
+
+
PACKAGECONFIG[tiny] = "--enable-tiny,"
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [oe] [PATCH] valkey: update from 8.0.2 -> 8.1.0
2025-04-03 20:44 [PATCH] valkey: update from 8.0.2 -> 8.1.0 Randy.MacLeod
@ 2025-04-03 21:03 ` Khem Raj
2025-04-04 0:33 ` Randy MacLeod
0 siblings, 1 reply; 7+ messages in thread
From: Khem Raj @ 2025-04-03 21:03 UTC (permalink / raw)
To: randy.macleod; +Cc: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 2480 bytes --]
On Thu, Apr 3, 2025 at 1:44 PM Randy MacLeod via lists.openembedded.org
<randy.macleod=windriver.com@lists.openembedded.org> wrote:
> From: Randy MacLeod <Randy.MacLeod@windriver.com>
>
> Release notes:
> https://github.com/valkey-io/valkey/releases/tag/8.1.0
>
> The license file checksum changed because upstream added the line:
> SPDX-License-Identifier: BSD-3-Clause
> Add OECONF to avoid build-time checks for strcase[str|cmp], both of
> which have been in glibc and musl for > 10 years so it's sensible to
> default to yes.
Why do they fail I wonder
>
>
> Adjust the patches using devtool and manually munge the Upstream-Status-es.
>
> Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
> ---
> .../recipes-support/nano/{nano_8.3.bb => nano_8.4.bb} | 9 ++++++++-
> 1 file changed, 8 insertions(+), 1 deletion(-)
> rename meta-oe/recipes-support/nano/{nano_8.3.bb => nano_8.4.bb} (75%)
>
> diff --git a/meta-oe/recipes-support/nano/nano_8.3.bb
> b/meta-oe/recipes-support/nano/nano_8.4.bb
> similarity index 75%
> rename from meta-oe/recipes-support/nano/nano_8.3.bb
> rename to meta-oe/recipes-support/nano/nano_8.4.bb
> index d1af89ef8d..1aae49d3b6 100644
> --- a/meta-oe/recipes-support/nano/nano_8.3.bb
> +++ b/meta-oe/recipes-support/nano/nano_8.4.bb
> @@ -13,10 +13,17 @@ RDEPENDS:${PN} = "ncurses-terminfo-base"
> PV_MAJOR = "${@d.getVar('PV').split('.')[0]}"
>
> SRC_URI = "https://nano-editor.org/dist/v${PV_MAJOR}/nano-${PV}.tar.xz"
> -SRC_URI[sha256sum] =
> "551b717b2e28f7e90f749323686a1b5bbbd84cfa1390604d854a3ca3778f111e"
> +SRC_URI[sha256sum] =
> "5ad29222bbd55624d87ea677928b3106a743114d6c6f9b41f36c97be2a8e628d"
>
> UPSTREAM_CHECK_URI = "https://ftp.gnu.org/gnu/nano"
>
> inherit autotools gettext pkgconfig
>
> +EXTRA_OECONF = " \
> + ac_cv_func_strcasestr=yes \
> + gl_cv_func_strcasecmp_works=yes \
> + ac_cv_func_strcasecmp=yes \
> +"
> +
> +
> PACKAGECONFIG[tiny] = "--enable-tiny,"
> --
> 2.34.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#116546):
> https://lists.openembedded.org/g/openembedded-devel/message/116546
> Mute This Topic: https://lists.openembedded.org/mt/112047294/1997914
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [
> raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
>
[-- Attachment #2: Type: text/html, Size: 4785 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [oe] [PATCH] valkey: update from 8.0.2 -> 8.1.0
2025-04-03 21:03 ` [oe] " Khem Raj
@ 2025-04-04 0:33 ` Randy MacLeod
2025-04-04 0:56 ` Khem Raj
0 siblings, 1 reply; 7+ messages in thread
From: Randy MacLeod @ 2025-04-04 0:33 UTC (permalink / raw)
To: Khem Raj; +Cc: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 6088 bytes --]
On 2025-04-03 5:03 p.m., Khem Raj wrote:
>
>
> On Thu, Apr 3, 2025 at 1:44 PM Randy MacLeod via
> lists.openembedded.org
> <https://urldefense.com/v3/__http://lists.openembedded.org__;!!AjveYdw8EvQ!eInicRMNhjFgfQKzcuSHuc1F7NDtnyYvxuxHuj-AFqBVGuBTHPt4zA8cD2SioWhdFiA-Tg7KKX3InaXjzbMJQg$>
> <randy.macleod=windriver.com@lists.openembedded.org> wrote:
>
> From: Randy MacLeod <Randy.MacLeod@windriver.com>
>
> Release notes:
> https://github.com/valkey-io/valkey/releases/tag/8.1.0
> <https://urldefense.com/v3/__https://github.com/valkey-io/valkey/releases/tag/8.1.0__;!!AjveYdw8EvQ!eInicRMNhjFgfQKzcuSHuc1F7NDtnyYvxuxHuj-AFqBVGuBTHPt4zA8cD2SioWhdFiA-Tg7KKX3InaXjTQ4EYA$>
>
> The license file checksum changed because upstream added the line:
> SPDX-License-Identifier: BSD-3-Clause
> Add OECONF to avoid build-time checks for strcase[str|cmp], both of
> which have been in glibc and musl for > 10 years so it's sensible to
> default to yes.
>
>
> Why do they fail I wonder
I dug a bit but wanted to get the package update in.
It's not a key package so whatever.
ALSO: I need to resend with a corrected subject line!
It's nano, not valkey - copy pasta!!!
v2 sent.
../Randy
>
>
> Adjust the patches using devtool and manually munge the
> Upstream-Status-es.
>
> Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
> ---
> .../recipes-support/nano/{nano_8.3.bb
> <https://urldefense.com/v3/__http://nano_8.3.bb__;!!AjveYdw8EvQ!eInicRMNhjFgfQKzcuSHuc1F7NDtnyYvxuxHuj-AFqBVGuBTHPt4zA8cD2SioWhdFiA-Tg7KKX3InaWue17a0g$>
> => nano_8.4.bb
> <https://urldefense.com/v3/__http://nano_8.4.bb__;!!AjveYdw8EvQ!eInicRMNhjFgfQKzcuSHuc1F7NDtnyYvxuxHuj-AFqBVGuBTHPt4zA8cD2SioWhdFiA-Tg7KKX3InaX6U5-bFQ$>}
> | 9 ++++++++-
> 1 file changed, 8 insertions(+), 1 deletion(-)
> rename meta-oe/recipes-support/nano/{nano_8.3.bb
> <https://urldefense.com/v3/__http://nano_8.3.bb__;!!AjveYdw8EvQ!eInicRMNhjFgfQKzcuSHuc1F7NDtnyYvxuxHuj-AFqBVGuBTHPt4zA8cD2SioWhdFiA-Tg7KKX3InaWue17a0g$>
> => nano_8.4.bb
> <https://urldefense.com/v3/__http://nano_8.4.bb__;!!AjveYdw8EvQ!eInicRMNhjFgfQKzcuSHuc1F7NDtnyYvxuxHuj-AFqBVGuBTHPt4zA8cD2SioWhdFiA-Tg7KKX3InaX6U5-bFQ$>}
> (75%)
>
> diff --git a/meta-oe/recipes-support/nano/nano_8.3.bb
> <https://urldefense.com/v3/__http://nano_8.3.bb__;!!AjveYdw8EvQ!eInicRMNhjFgfQKzcuSHuc1F7NDtnyYvxuxHuj-AFqBVGuBTHPt4zA8cD2SioWhdFiA-Tg7KKX3InaWue17a0g$>
> b/meta-oe/recipes-support/nano/nano_8.4.bb
> <https://urldefense.com/v3/__http://nano_8.4.bb__;!!AjveYdw8EvQ!eInicRMNhjFgfQKzcuSHuc1F7NDtnyYvxuxHuj-AFqBVGuBTHPt4zA8cD2SioWhdFiA-Tg7KKX3InaX6U5-bFQ$>
> similarity index 75%
> rename from meta-oe/recipes-support/nano/nano_8.3.bb
> <https://urldefense.com/v3/__http://nano_8.3.bb__;!!AjveYdw8EvQ!eInicRMNhjFgfQKzcuSHuc1F7NDtnyYvxuxHuj-AFqBVGuBTHPt4zA8cD2SioWhdFiA-Tg7KKX3InaWue17a0g$>
> rename to meta-oe/recipes-support/nano/nano_8.4.bb
> <https://urldefense.com/v3/__http://nano_8.4.bb__;!!AjveYdw8EvQ!eInicRMNhjFgfQKzcuSHuc1F7NDtnyYvxuxHuj-AFqBVGuBTHPt4zA8cD2SioWhdFiA-Tg7KKX3InaX6U5-bFQ$>
> index d1af89ef8d..1aae49d3b6 100644
> --- a/meta-oe/recipes-support/nano/nano_8.3.bb
> <https://urldefense.com/v3/__http://nano_8.3.bb__;!!AjveYdw8EvQ!eInicRMNhjFgfQKzcuSHuc1F7NDtnyYvxuxHuj-AFqBVGuBTHPt4zA8cD2SioWhdFiA-Tg7KKX3InaWue17a0g$>
> +++ b/meta-oe/recipes-support/nano/nano_8.4.bb
> <https://urldefense.com/v3/__http://nano_8.4.bb__;!!AjveYdw8EvQ!eInicRMNhjFgfQKzcuSHuc1F7NDtnyYvxuxHuj-AFqBVGuBTHPt4zA8cD2SioWhdFiA-Tg7KKX3InaX6U5-bFQ$>
> @@ -13,10 +13,17 @@ RDEPENDS:${PN} = "ncurses-terminfo-base"
> PV_MAJOR = "${@d.getVar('PV').split('.')[0]}"
>
> SRC_URI =
> "https://nano-editor.org/dist/v${PV_MAJOR}/nano-${PV}.tar.xz
> <https://urldefense.com/v3/__https://nano-editor.org/dist/v$*7BPV_MAJOR*7D/nano-$*7BPV*7D.tar.xz__;JSUlJQ!!AjveYdw8EvQ!eInicRMNhjFgfQKzcuSHuc1F7NDtnyYvxuxHuj-AFqBVGuBTHPt4zA8cD2SioWhdFiA-Tg7KKX3InaWZXassYg$>"
> -SRC_URI[sha256sum] =
> "551b717b2e28f7e90f749323686a1b5bbbd84cfa1390604d854a3ca3778f111e"
> +SRC_URI[sha256sum] =
> "5ad29222bbd55624d87ea677928b3106a743114d6c6f9b41f36c97be2a8e628d"
>
> UPSTREAM_CHECK_URI = "https://ftp.gnu.org/gnu/nano
> <https://urldefense.com/v3/__https://ftp.gnu.org/gnu/nano__;!!AjveYdw8EvQ!eInicRMNhjFgfQKzcuSHuc1F7NDtnyYvxuxHuj-AFqBVGuBTHPt4zA8cD2SioWhdFiA-Tg7KKX3InaWTSqt3UA$>"
>
> inherit autotools gettext pkgconfig
>
> +EXTRA_OECONF = " \
> + ac_cv_func_strcasestr=yes \
> + gl_cv_func_strcasecmp_works=yes \
> + ac_cv_func_strcasecmp=yes \
> +"
> +
> +
> PACKAGECONFIG[tiny] = "--enable-tiny,"
> --
> 2.34.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#116546):
> https://lists.openembedded.org/g/openembedded-devel/message/116546
> <https://urldefense.com/v3/__https://lists.openembedded.org/g/openembedded-devel/message/116546__;!!AjveYdw8EvQ!eInicRMNhjFgfQKzcuSHuc1F7NDtnyYvxuxHuj-AFqBVGuBTHPt4zA8cD2SioWhdFiA-Tg7KKX3InaVcDBLDnQ$>
> Mute This Topic:
> https://lists.openembedded.org/mt/112047294/1997914
> <https://urldefense.com/v3/__https://lists.openembedded.org/mt/112047294/1997914__;!!AjveYdw8EvQ!eInicRMNhjFgfQKzcuSHuc1F7NDtnyYvxuxHuj-AFqBVGuBTHPt4zA8cD2SioWhdFiA-Tg7KKX3InaWAaXj1zA$>
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> <mailto:openembedded-devel%2Bowner@lists.openembedded.org>
> Unsubscribe:
> https://lists.openembedded.org/g/openembedded-devel/unsub
> <https://urldefense.com/v3/__https://lists.openembedded.org/g/openembedded-devel/unsub__;!!AjveYdw8EvQ!eInicRMNhjFgfQKzcuSHuc1F7NDtnyYvxuxHuj-AFqBVGuBTHPt4zA8cD2SioWhdFiA-Tg7KKX3InaXrmtBMTA$>
> [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
--
# Randy MacLeod
# Wind River Linux
[-- Attachment #2: Type: text/html, Size: 9914 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [oe] [PATCH] valkey: update from 8.0.2 -> 8.1.0
2025-04-04 0:33 ` Randy MacLeod
@ 2025-04-04 0:56 ` Khem Raj
2025-04-04 14:39 ` [oe] [PATCH] valkey: update from 8.0.2 -> 8.1.0 (Actually nano) Randy MacLeod
0 siblings, 1 reply; 7+ messages in thread
From: Khem Raj @ 2025-04-04 0:56 UTC (permalink / raw)
To: Randy MacLeod; +Cc: openembedded-devel
On Thu, Apr 3, 2025 at 5:33 PM Randy MacLeod
<randy.macleod@windriver.com> wrote:
>
> On 2025-04-03 5:03 p.m., Khem Raj wrote:
>
>
>
> On Thu, Apr 3, 2025 at 1:44 PM Randy MacLeod via lists.openembedded.org <randy.macleod=windriver.com@lists.openembedded.org> wrote:
>>
>> From: Randy MacLeod <Randy.MacLeod@windriver.com>
>>
>> Release notes:
>> https://github.com/valkey-io/valkey/releases/tag/8.1.0
>>
>> The license file checksum changed because upstream added the line:
>> SPDX-License-Identifier: BSD-3-Clause
>> Add OECONF to avoid build-time checks for strcase[str|cmp], both of
>> which have been in glibc and musl for > 10 years so it's sensible to
>> default to yes.
>
>
> Why do they fail I wonder
>
> I dug a bit but wanted to get the package update in.
I looked a bit and it seems that gnulib got updated
https://git.savannah.gnu.org/cgit/nano.git/commit/?id=c7033324a9e31d7b00454db04496880e889d32f0
which perhaps added new logic which is not working in cross compile maybe ?
>
> It's not a key package so whatever.
>
>
> ALSO: I need to resend with a corrected subject line!
>
> It's nano, not valkey - copy pasta!!!
>
> v2 sent.
>
> ../Randy
>
>
>>
>>
>> Adjust the patches using devtool and manually munge the Upstream-Status-es.
>>
>> Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
>> ---
>> .../recipes-support/nano/{nano_8.3.bb => nano_8.4.bb} | 9 ++++++++-
>> 1 file changed, 8 insertions(+), 1 deletion(-)
>> rename meta-oe/recipes-support/nano/{nano_8.3.bb => nano_8.4.bb} (75%)
>>
>> diff --git a/meta-oe/recipes-support/nano/nano_8.3.bb b/meta-oe/recipes-support/nano/nano_8.4.bb
>> similarity index 75%
>> rename from meta-oe/recipes-support/nano/nano_8.3.bb
>> rename to meta-oe/recipes-support/nano/nano_8.4.bb
>> index d1af89ef8d..1aae49d3b6 100644
>> --- a/meta-oe/recipes-support/nano/nano_8.3.bb
>> +++ b/meta-oe/recipes-support/nano/nano_8.4.bb
>> @@ -13,10 +13,17 @@ RDEPENDS:${PN} = "ncurses-terminfo-base"
>> PV_MAJOR = "${@d.getVar('PV').split('.')[0]}"
>>
>> SRC_URI = "https://nano-editor.org/dist/v${PV_MAJOR}/nano-${PV}.tar.xz"
>> -SRC_URI[sha256sum] = "551b717b2e28f7e90f749323686a1b5bbbd84cfa1390604d854a3ca3778f111e"
>> +SRC_URI[sha256sum] = "5ad29222bbd55624d87ea677928b3106a743114d6c6f9b41f36c97be2a8e628d"
>>
>> UPSTREAM_CHECK_URI = "https://ftp.gnu.org/gnu/nano"
>>
>> inherit autotools gettext pkgconfig
>>
>> +EXTRA_OECONF = " \
>> + ac_cv_func_strcasestr=yes \
>> + gl_cv_func_strcasecmp_works=yes \
>> + ac_cv_func_strcasecmp=yes \
>> +"
>> +
>> +
>> PACKAGECONFIG[tiny] = "--enable-tiny,"
>> --
>> 2.34.1
>>
>>
>> -=-=-=-=-=-=-=-=-=-=-=-
>> Links: You receive all messages sent to this group.
>> View/Reply Online (#116546): https://lists.openembedded.org/g/openembedded-devel/message/116546
>> Mute This Topic: https://lists.openembedded.org/mt/112047294/1997914
>> Group Owner: openembedded-devel+owner@lists.openembedded.org
>> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [raj.khem@gmail.com]
>> -=-=-=-=-=-=-=-=-=-=-=-
>>
>
> --
> # Randy MacLeod
> # Wind River Linux
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [oe] [PATCH] valkey: update from 8.0.2 -> 8.1.0 (Actually nano)
2025-04-04 0:56 ` Khem Raj
@ 2025-04-04 14:39 ` Randy MacLeod
2025-04-04 15:05 ` Khem Raj
0 siblings, 1 reply; 7+ messages in thread
From: Randy MacLeod @ 2025-04-04 14:39 UTC (permalink / raw)
To: Khem Raj; +Cc: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 5148 bytes --]
On 2025-04-03 8:56 p.m., Khem Raj wrote:
> On Thu, Apr 3, 2025 at 5:33 PM Randy MacLeod
> <randy.macleod@windriver.com> wrote:
>> On 2025-04-03 5:03 p.m., Khem Raj wrote:
>>
>>
>>
>> On Thu, Apr 3, 2025 at 1:44 PM Randy MacLeod via lists.openembedded.org<randy.macleod=windriver.com@lists.openembedded.org> wrote:
>>> From: Randy MacLeod<Randy.MacLeod@windriver.com>
>>>
>>> Release notes:
>>> https://github.com/valkey-io/valkey/releases/tag/8.1.0
>>>
>>> The license file checksum changed because upstream added the line:
>>> SPDX-License-Identifier: BSD-3-Clause
>>> Add OECONF to avoid build-time checks for strcase[str|cmp], both of
>>> which have been in glibc and musl for > 10 years so it's sensible to
>>> default to yes.
>> Why do they fail I wonder
>>
>> I dug a bit but wanted to get the package update in.
> I looked a bit and it seems that gnulib got updated
> https://git.savannah.gnu.org/cgit/nano.git/commit/?id=c7033324a9e31d7b00454db04496880e889d32f0
Thanks.
>
> which perhaps added new logic which is not working in cross compile maybe ?
Lots of strcase* changes:
❯ gl --grep strcase
4631e9b4d5d3bd5ba42864c7001cf3509a00c7b3..f1daedcb4c6c653dfc2936847dfe55f5a076d94b
706178a93b 2025-02-21 getlocalename_l-simple: New module.
e21236c305 2025-02-20 *_l: Fix mistake.
439b7f4de8 2025-02-17 strcasecmp, strncasecmp: Fix compilation error
on MSVC.
9b269e666a 2025-02-16 strcasecmp_l: Add tests.
6fafa36c51 2025-02-16 strcasecmp_l: New module.
a8fa6e6314 2025-02-16 strcasecmp, strncasecmp: Work around Solaris,
Cygwin bug, part 3.
ff91cd3ce3 2025-02-16 strncasecmp: Work around Solaris, Cygwin bug,
part 2.
557f0e4958 2025-02-16 strncasecmp: Work around Solaris, Cygwin bug.
fc6bec11ff 2025-02-16 strcasecmp: Add tests.
9980b9e526 2025-02-16 strcasecmp: Work around Solaris, Cygwin bug.
6abed08f2c 2025-02-16 strcasecmp, strncasecmp: Fix header reference.
f656293f0e 2025-02-16 c-strcasecmp, c-strncasecmp: New modules.
c17d70aaae 2025-02-16 strings-h: Don't declare strcasecmp,
strncasecmp without the module.
b2927d1b1f 2025-02-16 strcasecmp, strncasecmp: New modules.
❯ gl
4631e9b4d5d3bd5ba42864c7001cf3509a00c7b3..f1daedcb4c6c653dfc2936847dfe55f5a076d94b
| wc -l
435
❯ gl --grep strcase
4631e9b4d5d3bd5ba42864c7001cf3509a00c7b3..f1daedcb4c6c653dfc2936847dfe55f5a076d94b
| wc -l
13
The old commit id was on:
❯ git branch -a --contains 4631e9b4d5d3bd5ba42864c7001cf3509a00c7b3
* master
remotes/origin/HEAD -> origin/master
remotes/origin/master
remotes/origin/stable-202501
I'm busy today but sometime next week,
I'll learn about gnulib, re-work this update and report the problem to
upstream to gnulib devs if needed..
../Randy
>
>
>
>> It's not a key package so whatever.
>>
>>
>> ALSO: I need to resend with a corrected subject line!
>>
>> It's nano, not valkey - copy pasta!!!
>>
>> v2 sent.
>>
>> ../Randy
>>
>>
>>> Adjust the patches using devtool and manually munge the Upstream-Status-es.
>>>
>>> Signed-off-by: Randy MacLeod<Randy.MacLeod@windriver.com>
>>> ---
>>> .../recipes-support/nano/{nano_8.3.bb => nano_8.4.bb} | 9 ++++++++-
>>> 1 file changed, 8 insertions(+), 1 deletion(-)
>>> rename meta-oe/recipes-support/nano/{nano_8.3.bb => nano_8.4.bb} (75%)
>>>
>>> diff --git a/meta-oe/recipes-support/nano/nano_8.3.bb b/meta-oe/recipes-support/nano/nano_8.4.bb
>>> similarity index 75%
>>> rename from meta-oe/recipes-support/nano/nano_8.3.bb
>>> rename to meta-oe/recipes-support/nano/nano_8.4.bb
>>> index d1af89ef8d..1aae49d3b6 100644
>>> --- a/meta-oe/recipes-support/nano/nano_8.3.bb
>>> +++ b/meta-oe/recipes-support/nano/nano_8.4.bb
>>> @@ -13,10 +13,17 @@ RDEPENDS:${PN} = "ncurses-terminfo-base"
>>> PV_MAJOR ="${@d.getVar('PV').split('.')[0]}"
>>>
>>> SRC_URI ="https://nano-editor.org/dist/v${PV_MAJOR}/nano-${PV}.tar.xz"
>>> -SRC_URI[sha256sum] = "551b717b2e28f7e90f749323686a1b5bbbd84cfa1390604d854a3ca3778f111e"
>>> +SRC_URI[sha256sum] = "5ad29222bbd55624d87ea677928b3106a743114d6c6f9b41f36c97be2a8e628d"
>>>
>>> UPSTREAM_CHECK_URI ="https://ftp.gnu.org/gnu/nano"
>>>
>>> inherit autotools gettext pkgconfig
>>>
>>> +EXTRA_OECONF = " \
>>> + ac_cv_func_strcasestr=yes \
>>> + gl_cv_func_strcasecmp_works=yes \
>>> + ac_cv_func_strcasecmp=yes \
>>> +"
>>> +
>>> +
>>> PACKAGECONFIG[tiny] = "--enable-tiny,"
>>> --
>>> 2.34.1
>>>
>>>
>>> -=-=-=-=-=-=-=-=-=-=-=-
>>> Links: You receive all messages sent to this group.
>>> View/Reply Online (#116546):https://lists.openembedded.org/g/openembedded-devel/message/116546
>>> Mute This Topic:https://lists.openembedded.org/mt/112047294/1997914
>>> Group Owner:openembedded-devel+owner@lists.openembedded.org
>>> Unsubscribe:https://lists.openembedded.org/g/openembedded-devel/unsub [raj.khem@gmail.com]
>>> -=-=-=-=-=-=-=-=-=-=-=-
>>>
>> --
>> # Randy MacLeod
>> # Wind River Linux
--
# Randy MacLeod
# Wind River Linux
[-- Attachment #2: Type: text/html, Size: 8355 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [oe] [PATCH] valkey: update from 8.0.2 -> 8.1.0 (Actually nano)
2025-04-04 14:39 ` [oe] [PATCH] valkey: update from 8.0.2 -> 8.1.0 (Actually nano) Randy MacLeod
@ 2025-04-04 15:05 ` Khem Raj
0 siblings, 0 replies; 7+ messages in thread
From: Khem Raj @ 2025-04-04 15:05 UTC (permalink / raw)
To: Randy MacLeod; +Cc: openembedded-devel
On Fri, Apr 4, 2025 at 7:39 AM Randy MacLeod
<randy.macleod@windriver.com> wrote:
>
> On 2025-04-03 8:56 p.m., Khem Raj wrote:
>
> On Thu, Apr 3, 2025 at 5:33 PM Randy MacLeod
> <randy.macleod@windriver.com> wrote:
>
> On 2025-04-03 5:03 p.m., Khem Raj wrote:
>
>
>
> On Thu, Apr 3, 2025 at 1:44 PM Randy MacLeod via lists.openembedded.org <randy.macleod=windriver.com@lists.openembedded.org> wrote:
>
> From: Randy MacLeod <Randy.MacLeod@windriver.com>
>
> Release notes:
> https://github.com/valkey-io/valkey/releases/tag/8.1.0
>
> The license file checksum changed because upstream added the line:
> SPDX-License-Identifier: BSD-3-Clause
> Add OECONF to avoid build-time checks for strcase[str|cmp], both of
> which have been in glibc and musl for > 10 years so it's sensible to
> default to yes.
>
> Why do they fail I wonder
>
> I dug a bit but wanted to get the package update in.
>
> I looked a bit and it seems that gnulib got updated
> https://git.savannah.gnu.org/cgit/nano.git/commit/?id=c7033324a9e31d7b00454db04496880e889d32f0
>
> Thanks.
>
> which perhaps added new logic which is not working in cross compile maybe ?
>
> Lots of strcase* changes:
>
> ❯ gl --grep strcase 4631e9b4d5d3bd5ba42864c7001cf3509a00c7b3..f1daedcb4c6c653dfc2936847dfe55f5a076d94b
> 706178a93b 2025-02-21 getlocalename_l-simple: New module.
> e21236c305 2025-02-20 *_l: Fix mistake.
> 439b7f4de8 2025-02-17 strcasecmp, strncasecmp: Fix compilation error on MSVC.
> 9b269e666a 2025-02-16 strcasecmp_l: Add tests.
> 6fafa36c51 2025-02-16 strcasecmp_l: New module.
> a8fa6e6314 2025-02-16 strcasecmp, strncasecmp: Work around Solaris, Cygwin bug, part 3.
> ff91cd3ce3 2025-02-16 strncasecmp: Work around Solaris, Cygwin bug, part 2.
> 557f0e4958 2025-02-16 strncasecmp: Work around Solaris, Cygwin bug.
> fc6bec11ff 2025-02-16 strcasecmp: Add tests.
> 9980b9e526 2025-02-16 strcasecmp: Work around Solaris, Cygwin bug.
> 6abed08f2c 2025-02-16 strcasecmp, strncasecmp: Fix header reference.
> f656293f0e 2025-02-16 c-strcasecmp, c-strncasecmp: New modules.
> c17d70aaae 2025-02-16 strings-h: Don't declare strcasecmp, strncasecmp without the module.
> b2927d1b1f 2025-02-16 strcasecmp, strncasecmp: New modules.
>
> ❯ gl 4631e9b4d5d3bd5ba42864c7001cf3509a00c7b3..f1daedcb4c6c653dfc2936847dfe55f5a076d94b | wc -l
> 435
>
> ❯ gl --grep strcase 4631e9b4d5d3bd5ba42864c7001cf3509a00c7b3..f1daedcb4c6c653dfc2936847dfe55f5a076d94b | wc -l
> 13
>
> The old commit id was on:
> ❯ git branch -a --contains 4631e9b4d5d3bd5ba42864c7001cf3509a00c7b3
> * master
> remotes/origin/HEAD -> origin/master
> remotes/origin/master
> remotes/origin/stable-202501
>
>
> I'm busy today but sometime next week,
>
> I'll learn about gnulib, re-work this update and report the problem to upstream to gnulib devs if needed..
thanks for following up.
>
> ../Randy
>
>
>
>
>
> It's not a key package so whatever.
>
>
> ALSO: I need to resend with a corrected subject line!
>
> It's nano, not valkey - copy pasta!!!
>
> v2 sent.
>
> ../Randy
>
>
> Adjust the patches using devtool and manually munge the Upstream-Status-es.
>
> Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
> ---
> .../recipes-support/nano/{nano_8.3.bb => nano_8.4.bb} | 9 ++++++++-
> 1 file changed, 8 insertions(+), 1 deletion(-)
> rename meta-oe/recipes-support/nano/{nano_8.3.bb => nano_8.4.bb} (75%)
>
> diff --git a/meta-oe/recipes-support/nano/nano_8.3.bb b/meta-oe/recipes-support/nano/nano_8.4.bb
> similarity index 75%
> rename from meta-oe/recipes-support/nano/nano_8.3.bb
> rename to meta-oe/recipes-support/nano/nano_8.4.bb
> index d1af89ef8d..1aae49d3b6 100644
> --- a/meta-oe/recipes-support/nano/nano_8.3.bb
> +++ b/meta-oe/recipes-support/nano/nano_8.4.bb
> @@ -13,10 +13,17 @@ RDEPENDS:${PN} = "ncurses-terminfo-base"
> PV_MAJOR = "${@d.getVar('PV').split('.')[0]}"
>
> SRC_URI = "https://nano-editor.org/dist/v${PV_MAJOR}/nano-${PV}.tar.xz"
> -SRC_URI[sha256sum] = "551b717b2e28f7e90f749323686a1b5bbbd84cfa1390604d854a3ca3778f111e"
> +SRC_URI[sha256sum] = "5ad29222bbd55624d87ea677928b3106a743114d6c6f9b41f36c97be2a8e628d"
>
> UPSTREAM_CHECK_URI = "https://ftp.gnu.org/gnu/nano"
>
> inherit autotools gettext pkgconfig
>
> +EXTRA_OECONF = " \
> + ac_cv_func_strcasestr=yes \
> + gl_cv_func_strcasecmp_works=yes \
> + ac_cv_func_strcasecmp=yes \
> +"
> +
> +
> PACKAGECONFIG[tiny] = "--enable-tiny,"
> --
> 2.34.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#116546): https://lists.openembedded.org/g/openembedded-devel/message/116546
> Mute This Topic: https://lists.openembedded.org/mt/112047294/1997914
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
> --
> # Randy MacLeod
> # Wind River Linux
>
>
> --
> # Randy MacLeod
> # Wind River Linux
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2025-04-04 15:05 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-03 20:44 [PATCH] valkey: update from 8.0.2 -> 8.1.0 Randy.MacLeod
2025-04-03 21:03 ` [oe] " Khem Raj
2025-04-04 0:33 ` Randy MacLeod
2025-04-04 0:56 ` Khem Raj
2025-04-04 14:39 ` [oe] [PATCH] valkey: update from 8.0.2 -> 8.1.0 (Actually nano) Randy MacLeod
2025-04-04 15:05 ` Khem Raj
-- strict thread matches above, loose matches on Subject: below --
2025-04-02 14:24 [PATCH] valkey: update from 8.0.2 -> 8.1.0 Randy.MacLeod
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.