Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/rauc: bump to 1.11.1
@ 2024-02-13 10:58 Marcus Hoffmann via buildroot
  2024-03-02 12:43 ` Marcus Hoffmann via buildroot
  2024-03-02 14:33 ` Yann E. MORIN
  0 siblings, 2 replies; 3+ messages in thread
From: Marcus Hoffmann via buildroot @ 2024-02-13 10:58 UTC (permalink / raw)
  To: buildroot; +Cc: Heiko Thiery, Andrey Yurovsky

This fixes an incompatibility with openssl 3.2 when using codesign
certificate purpose [1].

[1] https://github.com/rauc/rauc/releases/tag/v1.11.1

Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>
---
 package/rauc/rauc.hash | 2 +-
 package/rauc/rauc.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/rauc/rauc.hash b/package/rauc/rauc.hash
index 8de309f8c7..63aa4715e0 100644
--- a/package/rauc/rauc.hash
+++ b/package/rauc/rauc.hash
@@ -1,3 +1,3 @@
 # Locally calculated
-sha256  a28f415c580390dd9e65016a5d90a63ee1cfd7e1b3e864cbb13cb3ac3513391f  rauc-1.11.tar.xz
+sha256  391d13d709abb630c459e79e62e474e68224c5d07c816355784bba75a86a2507  rauc-1.11.1.tar.xz
 sha256  dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551  COPYING
diff --git a/package/rauc/rauc.mk b/package/rauc/rauc.mk
index aff5ead281..fbdea4e235 100644
--- a/package/rauc/rauc.mk
+++ b/package/rauc/rauc.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-RAUC_VERSION = 1.11
+RAUC_VERSION = 1.11.1
 RAUC_SITE = https://github.com/rauc/rauc/releases/download/v$(RAUC_VERSION)
 RAUC_SOURCE = rauc-$(RAUC_VERSION).tar.xz
 RAUC_LICENSE = LGPL-2.1
-- 
2.34.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH] package/rauc: bump to 1.11.1
  2024-02-13 10:58 [Buildroot] [PATCH] package/rauc: bump to 1.11.1 Marcus Hoffmann via buildroot
@ 2024-03-02 12:43 ` Marcus Hoffmann via buildroot
  2024-03-02 14:33 ` Yann E. MORIN
  1 sibling, 0 replies; 3+ messages in thread
From: Marcus Hoffmann via buildroot @ 2024-03-02 12:43 UTC (permalink / raw)
  To: buildroot, Peter Korsgaard; +Cc: Heiko Thiery, Andrey Yurovsky

Hi Peter,

On 13.02.24 11:58, Marcus Hoffmann via buildroot wrote:
> This fixes an incompatibility with openssl 3.2 when using codesign
> certificate purpose [1].

This fixes compatibility with openssl 3.2, so I was hoping that it can 
still make it into the 2024.02 release?

Marcus

> 
> [1] https://github.com/rauc/rauc/releases/tag/v1.11.1
> 
> Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>
> ---
>   package/rauc/rauc.hash | 2 +-
>   package/rauc/rauc.mk   | 2 +-
>   2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/package/rauc/rauc.hash b/package/rauc/rauc.hash
> index 8de309f8c7..63aa4715e0 100644
> --- a/package/rauc/rauc.hash
> +++ b/package/rauc/rauc.hash
> @@ -1,3 +1,3 @@
>   # Locally calculated
> -sha256  a28f415c580390dd9e65016a5d90a63ee1cfd7e1b3e864cbb13cb3ac3513391f  rauc-1.11.tar.xz
> +sha256  391d13d709abb630c459e79e62e474e68224c5d07c816355784bba75a86a2507  rauc-1.11.1.tar.xz
>   sha256  dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551  COPYING
> diff --git a/package/rauc/rauc.mk b/package/rauc/rauc.mk
> index aff5ead281..fbdea4e235 100644
> --- a/package/rauc/rauc.mk
> +++ b/package/rauc/rauc.mk
> @@ -4,7 +4,7 @@
>   #

>   ################################################################################
>   
> -RAUC_VERSION = 1.11
> +RAUC_VERSION = 1.11.1
>   RAUC_SITE = https://github.com/rauc/rauc/releases/download/v$(RAUC_VERSION)
>   RAUC_SOURCE = rauc-$(RAUC_VERSION).tar.xz
>   RAUC_LICENSE = LGPL-2.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH] package/rauc: bump to 1.11.1
  2024-02-13 10:58 [Buildroot] [PATCH] package/rauc: bump to 1.11.1 Marcus Hoffmann via buildroot
  2024-03-02 12:43 ` Marcus Hoffmann via buildroot
@ 2024-03-02 14:33 ` Yann E. MORIN
  1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2024-03-02 14:33 UTC (permalink / raw)
  To: Marcus Hoffmann; +Cc: Heiko Thiery, Andrey Yurovsky, buildroot

Marcus, All,

On 2024-02-13 11:58 +0100, Marcus Hoffmann via buildroot spake thusly:
> This fixes an incompatibility with openssl 3.2 when using codesign
> certificate purpose [1].
> 
> [1] https://github.com/rauc/rauc/releases/tag/v1.11.1
> 
> Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  package/rauc/rauc.hash | 2 +-
>  package/rauc/rauc.mk   | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/package/rauc/rauc.hash b/package/rauc/rauc.hash
> index 8de309f8c7..63aa4715e0 100644
> --- a/package/rauc/rauc.hash
> +++ b/package/rauc/rauc.hash
> @@ -1,3 +1,3 @@
>  # Locally calculated
> -sha256  a28f415c580390dd9e65016a5d90a63ee1cfd7e1b3e864cbb13cb3ac3513391f  rauc-1.11.tar.xz
> +sha256  391d13d709abb630c459e79e62e474e68224c5d07c816355784bba75a86a2507  rauc-1.11.1.tar.xz
>  sha256  dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551  COPYING
> diff --git a/package/rauc/rauc.mk b/package/rauc/rauc.mk
> index aff5ead281..fbdea4e235 100644
> --- a/package/rauc/rauc.mk
> +++ b/package/rauc/rauc.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>  
> -RAUC_VERSION = 1.11
> +RAUC_VERSION = 1.11.1
>  RAUC_SITE = https://github.com/rauc/rauc/releases/download/v$(RAUC_VERSION)
>  RAUC_SOURCE = rauc-$(RAUC_VERSION).tar.xz
>  RAUC_LICENSE = LGPL-2.1
> -- 
> 2.34.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2024-03-02 14:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-13 10:58 [Buildroot] [PATCH] package/rauc: bump to 1.11.1 Marcus Hoffmann via buildroot
2024-03-02 12:43 ` Marcus Hoffmann via buildroot
2024-03-02 14:33 ` Yann E. MORIN

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