* [OE-core][PATCH] kea: upgrade 2.4.1 -> 2.7.1
@ 2024-08-01 15:34 Trevor Gamblin
2024-08-01 16:45 ` Alexander Kanavin
0 siblings, 1 reply; 3+ messages in thread
From: Trevor Gamblin @ 2024-08-01 15:34 UTC (permalink / raw)
To: openembedded-core
Refresh patch 'fix_pid_keactrl.patch' to apply on new version.
Add an extra sed call to do_install:append() to remove a reference to
TMPDIR from ${D}/usr/sbin/kea-admin.
License-Update: Update copyright year
Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
---
.../kea/files/fix_pid_keactrl.patch | 18 ++++++++++++------
.../kea/{kea_2.4.1.bb => kea_2.7.1.bb} | 5 +++--
2 files changed, 15 insertions(+), 8 deletions(-)
rename meta/recipes-connectivity/kea/{kea_2.4.1.bb => kea_2.7.1.bb} (93%)
diff --git a/meta/recipes-connectivity/kea/files/fix_pid_keactrl.patch b/meta/recipes-connectivity/kea/files/fix_pid_keactrl.patch
index 63a6a2805b..98400212a5 100644
--- a/meta/recipes-connectivity/kea/files/fix_pid_keactrl.patch
+++ b/meta/recipes-connectivity/kea/files/fix_pid_keactrl.patch
@@ -1,4 +1,4 @@
-From c878a356712606549f7f188b62f7d1cae08a176e Mon Sep 17 00:00:00 2001
+From 18f84773f992c64e07fb82949552e38a01aace4e Mon Sep 17 00:00:00 2001
From: Armin kuster <akuster808@gmail.com>
Date: Wed, 14 Oct 2020 22:48:31 -0700
Subject: [PATCH] Busybox does not support ps -p so use pgrep
@@ -8,22 +8,28 @@ Based on changes from Diego Sueiro <Diego.Sueiro@arm.com>
Signed-off-by: Armin kuster <akuster808@gmail.com>
+Refresh to apply on top of 2.7.1.
+
+Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
---
src/bin/keactrl/keactrl.in | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/bin/keactrl/keactrl.in b/src/bin/keactrl/keactrl.in
-index 450e997..c353ca9 100644
+index a7cf355630..c3565f7204 100644
--- a/src/bin/keactrl/keactrl.in
+++ b/src/bin/keactrl/keactrl.in
-@@ -149,8 +149,8 @@ check_running() {
+@@ -152,8 +152,8 @@ check_running() {
# Get the PID from the PID file (if it exists)
get_pid_from_file "${proc_name}"
- if [ ${_pid} -gt 0 ]; then
+ if [ "${_pid}" -gt 0 ]; then
- # Use ps to check if PID is alive
-- if ps -p ${_pid} 1>/dev/null; then
+- if ps -p "${_pid}" 1>/dev/null; then
+ # Use pgrep and grep to check if PID is alive
-+ if pgrep -v 1 | grep ${_pid} 1>/dev/null; then
++ if pgrep -v 1 | grep "${_pid}" 1>/dev/null; then
# No error, so PID IS ALIVE
_running=1
fi
+--
+2.39.2
+
diff --git a/meta/recipes-connectivity/kea/kea_2.4.1.bb b/meta/recipes-connectivity/kea/kea_2.7.1.bb
similarity index 93%
rename from meta/recipes-connectivity/kea/kea_2.4.1.bb
rename to meta/recipes-connectivity/kea/kea_2.7.1.bb
index 19309ce314..228d2fff34 100644
--- a/meta/recipes-connectivity/kea/kea_2.4.1.bb
+++ b/meta/recipes-connectivity/kea/kea_2.7.1.bb
@@ -3,7 +3,7 @@ DESCRIPTION = "Kea is the next generation of DHCP software developed by ISC. It
HOMEPAGE = "http://kea.isc.org"
SECTION = "connectivity"
LICENSE = "MPL-2.0"
-LIC_FILES_CHKSUM = "file://COPYING;md5=ea061fa0188838072c4248c1318ec131"
+LIC_FILES_CHKSUM = "file://COPYING;md5=618093ea9de92c70a115268c1d53421f"
DEPENDS = "boost log4cplus openssl"
@@ -18,7 +18,7 @@ SRC_URI = "http://ftp.isc.org/isc/kea/${PV}/${BP}.tar.gz \
file://fix_pid_keactrl.patch \
file://0001-src-lib-log-logger_unittest_support.cc-do-not-write-.patch \
"
-SRC_URI[sha256sum] = "815c61f5c271caa4a1db31dd656eb50a7f6ea973da3690f7c8581408e180131a"
+SRC_URI[sha256sum] = "036bdfcc8b815199dc7c1d0edff01a1057462771b8c4bcc2f323c32bddf1bd5c"
inherit autotools systemd update-rc.d upstream-version-is-even
@@ -64,6 +64,7 @@ do_install:append() {
sed -i -e 's,@SBINDIR@,${sbindir},g' -e 's,@BASE_BINDIR@,${base_bindir},g' \
-e 's,@LOCALSTATEDIR@,${localstatedir},g' -e 's,@SYSCONFDIR@,${sysconfdir},g' \
${D}${systemd_system_unitdir}/kea-dhcp*service ${D}${sbindir}/keactrl
+ sed -i "s:${B}/../kea-2.7.1::g" ${D}/usr/sbin/kea-admin
}
do_install:append() {
--
2.39.2
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [OE-core][PATCH] kea: upgrade 2.4.1 -> 2.7.1
2024-08-01 15:34 [OE-core][PATCH] kea: upgrade 2.4.1 -> 2.7.1 Trevor Gamblin
@ 2024-08-01 16:45 ` Alexander Kanavin
2024-08-01 17:08 ` Trevor Gamblin
0 siblings, 1 reply; 3+ messages in thread
From: Alexander Kanavin @ 2024-08-01 16:45 UTC (permalink / raw)
To: tgamblin; +Cc: openembedded-core
2.7.1 can't be accepted as it is a development version, and the
automated version check/upgrade should have given you the latest
stable (2.6.1).
Alex
On Thu, 1 Aug 2024 at 17:34, Trevor Gamblin via lists.openembedded.org
<tgamblin=baylibre.com@lists.openembedded.org> wrote:
>
> Refresh patch 'fix_pid_keactrl.patch' to apply on new version.
>
> Add an extra sed call to do_install:append() to remove a reference to
> TMPDIR from ${D}/usr/sbin/kea-admin.
>
> License-Update: Update copyright year
>
> Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
> ---
> .../kea/files/fix_pid_keactrl.patch | 18 ++++++++++++------
> .../kea/{kea_2.4.1.bb => kea_2.7.1.bb} | 5 +++--
> 2 files changed, 15 insertions(+), 8 deletions(-)
> rename meta/recipes-connectivity/kea/{kea_2.4.1.bb => kea_2.7.1.bb} (93%)
>
> diff --git a/meta/recipes-connectivity/kea/files/fix_pid_keactrl.patch b/meta/recipes-connectivity/kea/files/fix_pid_keactrl.patch
> index 63a6a2805b..98400212a5 100644
> --- a/meta/recipes-connectivity/kea/files/fix_pid_keactrl.patch
> +++ b/meta/recipes-connectivity/kea/files/fix_pid_keactrl.patch
> @@ -1,4 +1,4 @@
> -From c878a356712606549f7f188b62f7d1cae08a176e Mon Sep 17 00:00:00 2001
> +From 18f84773f992c64e07fb82949552e38a01aace4e Mon Sep 17 00:00:00 2001
> From: Armin kuster <akuster808@gmail.com>
> Date: Wed, 14 Oct 2020 22:48:31 -0700
> Subject: [PATCH] Busybox does not support ps -p so use pgrep
> @@ -8,22 +8,28 @@ Based on changes from Diego Sueiro <Diego.Sueiro@arm.com>
>
> Signed-off-by: Armin kuster <akuster808@gmail.com>
>
> +Refresh to apply on top of 2.7.1.
> +
> +Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
> ---
> src/bin/keactrl/keactrl.in | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/src/bin/keactrl/keactrl.in b/src/bin/keactrl/keactrl.in
> -index 450e997..c353ca9 100644
> +index a7cf355630..c3565f7204 100644
> --- a/src/bin/keactrl/keactrl.in
> +++ b/src/bin/keactrl/keactrl.in
> -@@ -149,8 +149,8 @@ check_running() {
> +@@ -152,8 +152,8 @@ check_running() {
> # Get the PID from the PID file (if it exists)
> get_pid_from_file "${proc_name}"
> - if [ ${_pid} -gt 0 ]; then
> + if [ "${_pid}" -gt 0 ]; then
> - # Use ps to check if PID is alive
> -- if ps -p ${_pid} 1>/dev/null; then
> +- if ps -p "${_pid}" 1>/dev/null; then
> + # Use pgrep and grep to check if PID is alive
> -+ if pgrep -v 1 | grep ${_pid} 1>/dev/null; then
> ++ if pgrep -v 1 | grep "${_pid}" 1>/dev/null; then
> # No error, so PID IS ALIVE
> _running=1
> fi
> +--
> +2.39.2
> +
> diff --git a/meta/recipes-connectivity/kea/kea_2.4.1.bb b/meta/recipes-connectivity/kea/kea_2.7.1.bb
> similarity index 93%
> rename from meta/recipes-connectivity/kea/kea_2.4.1.bb
> rename to meta/recipes-connectivity/kea/kea_2.7.1.bb
> index 19309ce314..228d2fff34 100644
> --- a/meta/recipes-connectivity/kea/kea_2.4.1.bb
> +++ b/meta/recipes-connectivity/kea/kea_2.7.1.bb
> @@ -3,7 +3,7 @@ DESCRIPTION = "Kea is the next generation of DHCP software developed by ISC. It
> HOMEPAGE = "http://kea.isc.org"
> SECTION = "connectivity"
> LICENSE = "MPL-2.0"
> -LIC_FILES_CHKSUM = "file://COPYING;md5=ea061fa0188838072c4248c1318ec131"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=618093ea9de92c70a115268c1d53421f"
>
> DEPENDS = "boost log4cplus openssl"
>
> @@ -18,7 +18,7 @@ SRC_URI = "http://ftp.isc.org/isc/kea/${PV}/${BP}.tar.gz \
> file://fix_pid_keactrl.patch \
> file://0001-src-lib-log-logger_unittest_support.cc-do-not-write-.patch \
> "
> -SRC_URI[sha256sum] = "815c61f5c271caa4a1db31dd656eb50a7f6ea973da3690f7c8581408e180131a"
> +SRC_URI[sha256sum] = "036bdfcc8b815199dc7c1d0edff01a1057462771b8c4bcc2f323c32bddf1bd5c"
>
> inherit autotools systemd update-rc.d upstream-version-is-even
>
> @@ -64,6 +64,7 @@ do_install:append() {
> sed -i -e 's,@SBINDIR@,${sbindir},g' -e 's,@BASE_BINDIR@,${base_bindir},g' \
> -e 's,@LOCALSTATEDIR@,${localstatedir},g' -e 's,@SYSCONFDIR@,${sysconfdir},g' \
> ${D}${systemd_system_unitdir}/kea-dhcp*service ${D}${sbindir}/keactrl
> + sed -i "s:${B}/../kea-2.7.1::g" ${D}/usr/sbin/kea-admin
> }
>
> do_install:append() {
> --
> 2.39.2
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#202758): https://lists.openembedded.org/g/openembedded-core/message/202758
> Mute This Topic: https://lists.openembedded.org/mt/107668433/1686489
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alex.kanavin@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [OE-core][PATCH] kea: upgrade 2.4.1 -> 2.7.1
2024-08-01 16:45 ` Alexander Kanavin
@ 2024-08-01 17:08 ` Trevor Gamblin
0 siblings, 0 replies; 3+ messages in thread
From: Trevor Gamblin @ 2024-08-01 17:08 UTC (permalink / raw)
To: Alexander Kanavin; +Cc: openembedded-core
On 2024-08-01 12:45 p.m., Alexander Kanavin wrote:
> 2.7.1 can't be accepted as it is a development version, and the
> automated version check/upgrade should have given you the latest
> stable (2.6.1).
Thanks for the heads-up. Noticed an issue with my TMPDIR workaround too,
so I'll resubmit for the correct version.
Trevor
>
>
> Alex
>
> On Thu, 1 Aug 2024 at 17:34, Trevor Gamblin via lists.openembedded.org
> <tgamblin=baylibre.com@lists.openembedded.org> wrote:
>> Refresh patch 'fix_pid_keactrl.patch' to apply on new version.
>>
>> Add an extra sed call to do_install:append() to remove a reference to
>> TMPDIR from ${D}/usr/sbin/kea-admin.
>>
>> License-Update: Update copyright year
>>
>> Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
>> ---
>> .../kea/files/fix_pid_keactrl.patch | 18 ++++++++++++------
>> .../kea/{kea_2.4.1.bb => kea_2.7.1.bb} | 5 +++--
>> 2 files changed, 15 insertions(+), 8 deletions(-)
>> rename meta/recipes-connectivity/kea/{kea_2.4.1.bb => kea_2.7.1.bb} (93%)
>>
>> diff --git a/meta/recipes-connectivity/kea/files/fix_pid_keactrl.patch b/meta/recipes-connectivity/kea/files/fix_pid_keactrl.patch
>> index 63a6a2805b..98400212a5 100644
>> --- a/meta/recipes-connectivity/kea/files/fix_pid_keactrl.patch
>> +++ b/meta/recipes-connectivity/kea/files/fix_pid_keactrl.patch
>> @@ -1,4 +1,4 @@
>> -From c878a356712606549f7f188b62f7d1cae08a176e Mon Sep 17 00:00:00 2001
>> +From 18f84773f992c64e07fb82949552e38a01aace4e Mon Sep 17 00:00:00 2001
>> From: Armin kuster <akuster808@gmail.com>
>> Date: Wed, 14 Oct 2020 22:48:31 -0700
>> Subject: [PATCH] Busybox does not support ps -p so use pgrep
>> @@ -8,22 +8,28 @@ Based on changes from Diego Sueiro <Diego.Sueiro@arm.com>
>>
>> Signed-off-by: Armin kuster <akuster808@gmail.com>
>>
>> +Refresh to apply on top of 2.7.1.
>> +
>> +Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
>> ---
>> src/bin/keactrl/keactrl.in | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/src/bin/keactrl/keactrl.in b/src/bin/keactrl/keactrl.in
>> -index 450e997..c353ca9 100644
>> +index a7cf355630..c3565f7204 100644
>> --- a/src/bin/keactrl/keactrl.in
>> +++ b/src/bin/keactrl/keactrl.in
>> -@@ -149,8 +149,8 @@ check_running() {
>> +@@ -152,8 +152,8 @@ check_running() {
>> # Get the PID from the PID file (if it exists)
>> get_pid_from_file "${proc_name}"
>> - if [ ${_pid} -gt 0 ]; then
>> + if [ "${_pid}" -gt 0 ]; then
>> - # Use ps to check if PID is alive
>> -- if ps -p ${_pid} 1>/dev/null; then
>> +- if ps -p "${_pid}" 1>/dev/null; then
>> + # Use pgrep and grep to check if PID is alive
>> -+ if pgrep -v 1 | grep ${_pid} 1>/dev/null; then
>> ++ if pgrep -v 1 | grep "${_pid}" 1>/dev/null; then
>> # No error, so PID IS ALIVE
>> _running=1
>> fi
>> +--
>> +2.39.2
>> +
>> diff --git a/meta/recipes-connectivity/kea/kea_2.4.1.bb b/meta/recipes-connectivity/kea/kea_2.7.1.bb
>> similarity index 93%
>> rename from meta/recipes-connectivity/kea/kea_2.4.1.bb
>> rename to meta/recipes-connectivity/kea/kea_2.7.1.bb
>> index 19309ce314..228d2fff34 100644
>> --- a/meta/recipes-connectivity/kea/kea_2.4.1.bb
>> +++ b/meta/recipes-connectivity/kea/kea_2.7.1.bb
>> @@ -3,7 +3,7 @@ DESCRIPTION = "Kea is the next generation of DHCP software developed by ISC. It
>> HOMEPAGE = "http://kea.isc.org"
>> SECTION = "connectivity"
>> LICENSE = "MPL-2.0"
>> -LIC_FILES_CHKSUM = "file://COPYING;md5=ea061fa0188838072c4248c1318ec131"
>> +LIC_FILES_CHKSUM = "file://COPYING;md5=618093ea9de92c70a115268c1d53421f"
>>
>> DEPENDS = "boost log4cplus openssl"
>>
>> @@ -18,7 +18,7 @@ SRC_URI = "http://ftp.isc.org/isc/kea/${PV}/${BP}.tar.gz \
>> file://fix_pid_keactrl.patch \
>> file://0001-src-lib-log-logger_unittest_support.cc-do-not-write-.patch \
>> "
>> -SRC_URI[sha256sum] = "815c61f5c271caa4a1db31dd656eb50a7f6ea973da3690f7c8581408e180131a"
>> +SRC_URI[sha256sum] = "036bdfcc8b815199dc7c1d0edff01a1057462771b8c4bcc2f323c32bddf1bd5c"
>>
>> inherit autotools systemd update-rc.d upstream-version-is-even
>>
>> @@ -64,6 +64,7 @@ do_install:append() {
>> sed -i -e 's,@SBINDIR@,${sbindir},g' -e 's,@BASE_BINDIR@,${base_bindir},g' \
>> -e 's,@LOCALSTATEDIR@,${localstatedir},g' -e 's,@SYSCONFDIR@,${sysconfdir},g' \
>> ${D}${systemd_system_unitdir}/kea-dhcp*service ${D}${sbindir}/keactrl
>> + sed -i "s:${B}/../kea-2.7.1::g" ${D}/usr/sbin/kea-admin
>> }
>>
>> do_install:append() {
>> --
>> 2.39.2
>>
>>
>> -=-=-=-=-=-=-=-=-=-=-=-
>> Links: You receive all messages sent to this group.
>> View/Reply Online (#202758): https://lists.openembedded.org/g/openembedded-core/message/202758
>> Mute This Topic: https://lists.openembedded.org/mt/107668433/1686489
>> Group Owner: openembedded-core+owner@lists.openembedded.org
>> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alex.kanavin@gmail.com]
>> -=-=-=-=-=-=-=-=-=-=-=-
>>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-08-01 17:08 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-01 15:34 [OE-core][PATCH] kea: upgrade 2.4.1 -> 2.7.1 Trevor Gamblin
2024-08-01 16:45 ` Alexander Kanavin
2024-08-01 17:08 ` Trevor Gamblin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox