Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/2] Upgrade gnu-config and gettext
@ 2023-11-28  7:55 Robert Yang
  2023-11-28  7:55 ` [PATCH 1/2] gnu-config: Update to latest revision Robert Yang
  2023-11-28  7:55 ` [PATCH 2/2] gettext: Upgrade 0.22 -> 0.22.3 Robert Yang
  0 siblings, 2 replies; 5+ messages in thread
From: Robert Yang @ 2023-11-28  7:55 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit 212affe748e2f628ecf11f26485b07dd303fe6e3:

  Revert "binutils: Fix CVE-2022-47007" (2023-11-23 14:58:06 +0000)

are available in the Git repository at:

  https://github.com/robertlinux/yocto rbt/upgrade
  https://github.com/robertlinux/yocto/tree/rbt/upgrade

Robert Yang (2):
  gnu-config: Update to latest revision
  gettext: Upgrade 0.22 -> 0.22.3

 ...inimal-native_0.22.bb => gettext-minimal-native_0.22.3.bb} | 0
 meta/recipes-core/gettext/gettext-sources.inc                 | 2 +-
 .../gettext/{gettext_0.22.bb => gettext_0.22.3.bb}            | 0
 meta/recipes-devtools/gnu-config/gnu-config_git.bb            | 4 ++--
 4 files changed, 3 insertions(+), 3 deletions(-)
 rename meta/recipes-core/gettext/{gettext-minimal-native_0.22.bb => gettext-minimal-native_0.22.3.bb} (100%)
 rename meta/recipes-core/gettext/{gettext_0.22.bb => gettext_0.22.3.bb} (100%)

-- 
2.42.0



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

* [PATCH 1/2] gnu-config: Update to latest revision
  2023-11-28  7:55 [PATCH 0/2] Upgrade gnu-config and gettext Robert Yang
@ 2023-11-28  7:55 ` Robert Yang
  2023-12-01  8:16   ` [OE-core] " Alexandre Belloni
  2023-11-28  7:55 ` [PATCH 2/2] gettext: Upgrade 0.22 -> 0.22.3 Robert Yang
  1 sibling, 1 reply; 5+ messages in thread
From: Robert Yang @ 2023-11-28  7:55 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-devtools/gnu-config/gnu-config_git.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-devtools/gnu-config/gnu-config_git.bb b/meta/recipes-devtools/gnu-config/gnu-config_git.bb
index 2a0e6f8e41..718f798a00 100644
--- a/meta/recipes-devtools/gnu-config/gnu-config_git.bb
+++ b/meta/recipes-devtools/gnu-config/gnu-config_git.bb
@@ -9,8 +9,8 @@ DEPENDS:class-native = "hostperl-runtime-native"
 
 INHIBIT_DEFAULT_DEPS = "1"
 
-SRCREV = "63acb96f92473ceb5e21d873d7c0aee266b3d6d3"
-PV = "20230216+git"
+SRCREV = "28ea239c53a2d5d8800c472bc2452eaa16e37af2"
+PV = "20231127+git"
 
 SRC_URI = "git://git.savannah.gnu.org/git/config.git;protocol=https;branch=master \
            file://gnu-configize.in"
-- 
2.42.0



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

* [PATCH 2/2] gettext: Upgrade 0.22 -> 0.22.3
  2023-11-28  7:55 [PATCH 0/2] Upgrade gnu-config and gettext Robert Yang
  2023-11-28  7:55 ` [PATCH 1/2] gnu-config: Update to latest revision Robert Yang
@ 2023-11-28  7:55 ` Robert Yang
  1 sibling, 0 replies; 5+ messages in thread
From: Robert Yang @ 2023-11-28  7:55 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 ...-minimal-native_0.22.bb => gettext-minimal-native_0.22.3.bb} | 0
 meta/recipes-core/gettext/gettext-sources.inc                   | 2 +-
 .../recipes-core/gettext/{gettext_0.22.bb => gettext_0.22.3.bb} | 0
 3 files changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-core/gettext/{gettext-minimal-native_0.22.bb => gettext-minimal-native_0.22.3.bb} (100%)
 rename meta/recipes-core/gettext/{gettext_0.22.bb => gettext_0.22.3.bb} (100%)

diff --git a/meta/recipes-core/gettext/gettext-minimal-native_0.22.bb b/meta/recipes-core/gettext/gettext-minimal-native_0.22.3.bb
similarity index 100%
rename from meta/recipes-core/gettext/gettext-minimal-native_0.22.bb
rename to meta/recipes-core/gettext/gettext-minimal-native_0.22.3.bb
diff --git a/meta/recipes-core/gettext/gettext-sources.inc b/meta/recipes-core/gettext/gettext-sources.inc
index b4fb647916..31dabfc543 100644
--- a/meta/recipes-core/gettext/gettext-sources.inc
+++ b/meta/recipes-core/gettext/gettext-sources.inc
@@ -1,4 +1,4 @@
 HOMEPAGE = "http://www.gnu.org/software/gettext/gettext.html"
 SRC_URI = "${GNU_MIRROR}/gettext/gettext-${PV}.tar.gz \
            "
-SRC_URI[sha256sum] = "49f089be11b490170bbf09ed2f51e5f5177f55be4cc66504a5861820e0fb06ab"
+SRC_URI[sha256sum] = "839a260b2314ba66274dae7d245ec19fce190a3aa67869bf31354cb558df42c7"
diff --git a/meta/recipes-core/gettext/gettext_0.22.bb b/meta/recipes-core/gettext/gettext_0.22.3.bb
similarity index 100%
rename from meta/recipes-core/gettext/gettext_0.22.bb
rename to meta/recipes-core/gettext/gettext_0.22.3.bb
-- 
2.42.0



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

* Re: [OE-core] [PATCH 1/2] gnu-config: Update to latest revision
  2023-11-28  7:55 ` [PATCH 1/2] gnu-config: Update to latest revision Robert Yang
@ 2023-12-01  8:16   ` Alexandre Belloni
  2023-12-04  7:55     ` Robert Yang
  0 siblings, 1 reply; 5+ messages in thread
From: Alexandre Belloni @ 2023-12-01  8:16 UTC (permalink / raw)
  To: liezhi.yang; +Cc: openembedded-core

Please follow https://docs.yoctoproject.org/dev/contributor-guide/submit-changes.html#fixing-your-from-identity

On 27/11/2023 23:55:06-0800, Robert Yang via lists.openembedded.org wrote:
> Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
> ---
>  meta/recipes-devtools/gnu-config/gnu-config_git.bb | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/meta/recipes-devtools/gnu-config/gnu-config_git.bb b/meta/recipes-devtools/gnu-config/gnu-config_git.bb
> index 2a0e6f8e41..718f798a00 100644
> --- a/meta/recipes-devtools/gnu-config/gnu-config_git.bb
> +++ b/meta/recipes-devtools/gnu-config/gnu-config_git.bb
> @@ -9,8 +9,8 @@ DEPENDS:class-native = "hostperl-runtime-native"
>  
>  INHIBIT_DEFAULT_DEPS = "1"
>  
> -SRCREV = "63acb96f92473ceb5e21d873d7c0aee266b3d6d3"
> -PV = "20230216+git"
> +SRCREV = "28ea239c53a2d5d8800c472bc2452eaa16e37af2"
> +PV = "20231127+git"
>  
>  SRC_URI = "git://git.savannah.gnu.org/git/config.git;protocol=https;branch=master \
>             file://gnu-configize.in"
> -- 
> 2.42.0
> 

> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#191338): https://lists.openembedded.org/g/openembedded-core/message/191338
> Mute This Topic: https://lists.openembedded.org/mt/102846999/3617179
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alexandre.belloni@bootlin.com]
> -=-=-=-=-=-=-=-=-=-=-=-
> 


-- 
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com


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

* Re: [OE-core] [PATCH 1/2] gnu-config: Update to latest revision
  2023-12-01  8:16   ` [OE-core] " Alexandre Belloni
@ 2023-12-04  7:55     ` Robert Yang
  0 siblings, 0 replies; 5+ messages in thread
From: Robert Yang @ 2023-12-04  7:55 UTC (permalink / raw)
  To: Alexandre Belloni; +Cc: openembedded-core



On 12/1/23 4:16 PM, Alexandre Belloni wrote:
> Please follow https://docs.yoctoproject.org/dev/contributor-guide/submit-changes.html#fixing-your-from-identity

Thanks, fixed.

// Robert

> 
> On 27/11/2023 23:55:06-0800, Robert Yang via lists.openembedded.org wrote:
>> Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
>> ---
>>   meta/recipes-devtools/gnu-config/gnu-config_git.bb | 4 ++--
>>   1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/meta/recipes-devtools/gnu-config/gnu-config_git.bb b/meta/recipes-devtools/gnu-config/gnu-config_git.bb
>> index 2a0e6f8e41..718f798a00 100644
>> --- a/meta/recipes-devtools/gnu-config/gnu-config_git.bb
>> +++ b/meta/recipes-devtools/gnu-config/gnu-config_git.bb
>> @@ -9,8 +9,8 @@ DEPENDS:class-native = "hostperl-runtime-native"
>>   
>>   INHIBIT_DEFAULT_DEPS = "1"
>>   
>> -SRCREV = "63acb96f92473ceb5e21d873d7c0aee266b3d6d3"
>> -PV = "20230216+git"
>> +SRCREV = "28ea239c53a2d5d8800c472bc2452eaa16e37af2"
>> +PV = "20231127+git"
>>   
>>   SRC_URI = "git://git.savannah.gnu.org/git/config.git;protocol=https;branch=master \
>>              file://gnu-configize.in"
>> -- 
>> 2.42.0
>>
> 
>>
>> -=-=-=-=-=-=-=-=-=-=-=-
>> Links: You receive all messages sent to this group.
>> View/Reply Online (#191338): https://lists.openembedded.org/g/openembedded-core/message/191338
>> Mute This Topic: https://lists.openembedded.org/mt/102846999/3617179
>> Group Owner: openembedded-core+owner@lists.openembedded.org
>> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alexandre.belloni@bootlin.com]
>> -=-=-=-=-=-=-=-=-=-=-=-
>>
> 
> 


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

end of thread, other threads:[~2023-12-04  7:55 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-28  7:55 [PATCH 0/2] Upgrade gnu-config and gettext Robert Yang
2023-11-28  7:55 ` [PATCH 1/2] gnu-config: Update to latest revision Robert Yang
2023-12-01  8:16   ` [OE-core] " Alexandre Belloni
2023-12-04  7:55     ` Robert Yang
2023-11-28  7:55 ` [PATCH 2/2] gettext: Upgrade 0.22 -> 0.22.3 Robert Yang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox