Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/checksec: fix download
@ 2024-10-30 21:27 Romain Naour via buildroot
  2024-10-31 12:51 ` Thomas Petazzoni via buildroot
  2024-11-20 20:59 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Romain Naour via buildroot @ 2024-10-30 21:27 UTC (permalink / raw)
  To: buildroot; +Cc: Romain Naour

checksec-2.7.1.tar.gz archive was replaced or regenerated by upstream
sometime between the 22 September 2024 [1] and the 29 September 2024
[2].

diffoscope report no changes in extracted files exept a different
top directory name (checksec.sh-2.7.1/checksec-2.7.1):

  --- checksec-2.7.1.tar.gz a0d7a444d4603fb3d62fa25ef678e544ef39fa7b3c9bd5d22f1a8c526152cdde
  +++ checksec-2.7.1.tar.gz eba0616f4033385d6093608a2a2aad3c2debb847d6778c87346f89c80946684f

  Files identical despite different names
  --- checksec-2.7.1/ChangeLog
  +++ checksec.sh-2.7.1/ChangeLog

Use the git hash of the 2.7.1 release to use a different archive name
than the checksec-2.7.1.tar.gz archive previously released.

[1] https://gitlab.com/buildroot.org/buildroot/-/jobs/7888799855
[2] https://gitlab.com/buildroot.org/buildroot/-/jobs/7948006849

Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/7948006849

Signed-off-by: Romain Naour <romain.naour@smile.fr>
---
 package/checksec/checksec.hash | 2 +-
 package/checksec/checksec.mk   | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/package/checksec/checksec.hash b/package/checksec/checksec.hash
index 856662b193..4ca3867114 100644
--- a/package/checksec/checksec.hash
+++ b/package/checksec/checksec.hash
@@ -1,3 +1,3 @@
 # Locally calculated
-sha256  eba0616f4033385d6093608a2a2aad3c2debb847d6778c87346f89c80946684f  checksec-2.7.1.tar.gz
+sha256  59a351ac9b552a817329f2d2c1cd8ee76f6cf2ad8916e8eea56310154c0e31fc  checksec-181cdfa84893a5d72695944efabfa5b56687379c.tar.gz
 sha256  55154b4be6dfcb3ff29d1e3648d0d07b3943a5fcc3af7c2e0e799b074734f722  LICENSE.txt
diff --git a/package/checksec/checksec.mk b/package/checksec/checksec.mk
index c1170e822e..51a05c2a6b 100644
--- a/package/checksec/checksec.mk
+++ b/package/checksec/checksec.mk
@@ -4,7 +4,8 @@
 #
 ################################################################################
 
-CHECKSEC_VERSION = 2.7.1
+# git hash of 2.7.1 release.
+CHECKSEC_VERSION = 181cdfa84893a5d72695944efabfa5b56687379c
 CHECKSEC_SITE = $(call github,slimm609,checksec.sh,$(CHECKSEC_VERSION))
 CHECKSEC_LICENSE = BSD-3-Clause
 CHECKSEC_LICENSE_FILES = LICENSE.txt
-- 
2.45.0

_______________________________________________
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/checksec: fix download
  2024-10-30 21:27 [Buildroot] [PATCH] package/checksec: fix download Romain Naour via buildroot
@ 2024-10-31 12:51 ` Thomas Petazzoni via buildroot
  2024-11-20 20:59 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-10-31 12:51 UTC (permalink / raw)
  To: Romain Naour via buildroot; +Cc: Romain Naour

On Wed, 30 Oct 2024 22:27:00 +0100
Romain Naour via buildroot <buildroot@buildroot.org> wrote:

> checksec-2.7.1.tar.gz archive was replaced or regenerated by upstream
> sometime between the 22 September 2024 [1] and the 29 September 2024
> [2].
> 
> diffoscope report no changes in extracted files exept a different
> top directory name (checksec.sh-2.7.1/checksec-2.7.1):
> 
>   --- checksec-2.7.1.tar.gz a0d7a444d4603fb3d62fa25ef678e544ef39fa7b3c9bd5d22f1a8c526152cdde
>   +++ checksec-2.7.1.tar.gz eba0616f4033385d6093608a2a2aad3c2debb847d6778c87346f89c80946684f
> 
>   Files identical despite different names
>   --- checksec-2.7.1/ChangeLog
>   +++ checksec.sh-2.7.1/ChangeLog
> 
> Use the git hash of the 2.7.1 release to use a different archive name
> than the checksec-2.7.1.tar.gz archive previously released.
> 
> [1] https://gitlab.com/buildroot.org/buildroot/-/jobs/7888799855
> [2] https://gitlab.com/buildroot.org/buildroot/-/jobs/7948006849
> 
> Fixes:
> https://gitlab.com/buildroot.org/buildroot/-/jobs/7948006849
> 
> Signed-off-by: Romain Naour <romain.naour@smile.fr>
> ---
>  package/checksec/checksec.hash | 2 +-
>  package/checksec/checksec.mk   | 3 ++-
>  2 files changed, 3 insertions(+), 2 deletions(-)

Applied to master, thanks. However, I think the idea is to move away
from the github macro and use git downloads instead.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
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/checksec: fix download
  2024-10-30 21:27 [Buildroot] [PATCH] package/checksec: fix download Romain Naour via buildroot
  2024-10-31 12:51 ` Thomas Petazzoni via buildroot
@ 2024-11-20 20:59 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2024-11-20 20:59 UTC (permalink / raw)
  To: Romain Naour via buildroot; +Cc: Romain Naour

>>>>> "Romain" == Romain Naour via buildroot <buildroot@buildroot.org> writes:

 > checksec-2.7.1.tar.gz archive was replaced or regenerated by upstream
 > sometime between the 22 September 2024 [1] and the 29 September 2024
 > [2].

 > diffoscope report no changes in extracted files exept a different
 > top directory name (checksec.sh-2.7.1/checksec-2.7.1):

 >   --- checksec-2.7.1.tar.gz a0d7a444d4603fb3d62fa25ef678e544ef39fa7b3c9bd5d22f1a8c526152cdde
 >   +++ checksec-2.7.1.tar.gz eba0616f4033385d6093608a2a2aad3c2debb847d6778c87346f89c80946684f

 >   Files identical despite different names
 >   --- checksec-2.7.1/ChangeLog
 >   +++ checksec.sh-2.7.1/ChangeLog

 > Use the git hash of the 2.7.1 release to use a different archive name
 > than the checksec-2.7.1.tar.gz archive previously released.

 > [1] https://gitlab.com/buildroot.org/buildroot/-/jobs/7888799855
 > [2] https://gitlab.com/buildroot.org/buildroot/-/jobs/7948006849

 > Fixes:
 > https://gitlab.com/buildroot.org/buildroot/-/jobs/7948006849

 > Signed-off-by: Romain Naour <romain.naour@smile.fr>

Committed to 2024.08.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
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-11-20 21:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-30 21:27 [Buildroot] [PATCH] package/checksec: fix download Romain Naour via buildroot
2024-10-31 12:51 ` Thomas Petazzoni via buildroot
2024-11-20 20:59 ` Peter Korsgaard

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