* [Buildroot] [PATCH] package/aer-inject: switch upstream
@ 2024-09-01 16:11 J. Neuschäfer via buildroot
2024-09-01 16:24 ` Yann E. MORIN
0 siblings, 1 reply; 3+ messages in thread
From: J. Neuschäfer via buildroot @ 2024-09-01 16:11 UTC (permalink / raw)
To: buildroot; +Cc: J. Neuschäfer
According to a commit in Linux[1], the upstream of aer-inject changed to
https://github.com/intel/aer-inject.
The hash changed because the tarball is generated differently.
[1]: https://git.kernel.org/linus/a29e5290e3566ae4db4e6fe5f31caf23118c82b6
---
Signed-off-by: J. Neuschäfer <j.neuschaefer@gmx.net>
---
package/aer-inject/aer-inject.hash | 2 +-
package/aer-inject/aer-inject.mk | 3 +--
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/package/aer-inject/aer-inject.hash b/package/aer-inject/aer-inject.hash
index 3b9d144ec9..ee097c873a 100644
--- a/package/aer-inject/aer-inject.hash
+++ b/package/aer-inject/aer-inject.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 7ed5994b48f1c0504add380ba4d186f48a5a22b9bc2dd90c79d0d2f0c183540c aer-inject-9bd5e2c7886fca72f139cd8402488a2235957d41-git4.tar.gz
+sha256 49a44b7a9e3983dc15fdc5bacd0e095df650296024f43f9d6c080ad54de0b07f aer-inject-9bd5e2c7886fca72f139cd8402488a2235957d41.tar.gz
sha256 659a191d8775e05c6c6a9a4ba66b3577c577342bb83f20d393135eb6633c8973 README
diff --git a/package/aer-inject/aer-inject.mk b/package/aer-inject/aer-inject.mk
index 6bc9cb44da..d0ae3cc516 100644
--- a/package/aer-inject/aer-inject.mk
+++ b/package/aer-inject/aer-inject.mk
@@ -5,8 +5,7 @@
################################################################################
AER_INJECT_VERSION = 9bd5e2c7886fca72f139cd8402488a2235957d41
-AER_INJECT_SITE = https://git.kernel.org/pub/scm/linux/kernel/git/gong.chen/aer-inject.git
-AER_INJECT_SITE_METHOD = git
+AER_INJECT_SITE = $(call github,intel,aer-inject,$(AER_INJECT_VERSION))
AER_INJECT_LICENSE = GPL-2.0
AER_INJECT_LICENSE_FILES = README
AER_INJECT_DEPENDENCIES = host-flex host-bison
---
base-commit: 37801767f68c05500f1d4495b5baac0e7340f7a9
change-id: 20240901-aer-dc235cf8e483
Best regards,
--
J. Neuschäfer <j.neuschaefer@gmx.net>
_______________________________________________
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/aer-inject: switch upstream
2024-09-01 16:11 [Buildroot] [PATCH] package/aer-inject: switch upstream J. Neuschäfer via buildroot
@ 2024-09-01 16:24 ` Yann E. MORIN
2024-09-01 16:31 ` J. Neuschäfer via buildroot
0 siblings, 1 reply; 3+ messages in thread
From: Yann E. MORIN @ 2024-09-01 16:24 UTC (permalink / raw)
To: J. Neuschäfer; +Cc: buildroot
J., All,
On 2024-09-01 18:11 +0200, J. Neuschäfer via buildroot spake thusly:
> According to a commit in Linux[1], the upstream of aer-inject changed to
> https://github.com/intel/aer-inject.
>
> The hash changed because the tarball is generated differently.
>
> [1]: https://git.kernel.org/linus/a29e5290e3566ae4db4e6fe5f31caf23118c82b6
>
> ---
> Signed-off-by: J. Neuschäfer <j.neuschaefer@gmx.net>
> ---
> package/aer-inject/aer-inject.hash | 2 +-
> package/aer-inject/aer-inject.mk | 3 +--
> 2 files changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/package/aer-inject/aer-inject.hash b/package/aer-inject/aer-inject.hash
> index 3b9d144ec9..ee097c873a 100644
> --- a/package/aer-inject/aer-inject.hash
> +++ b/package/aer-inject/aer-inject.hash
> @@ -1,3 +1,3 @@
> # Locally computed
> -sha256 7ed5994b48f1c0504add380ba4d186f48a5a22b9bc2dd90c79d0d2f0c183540c aer-inject-9bd5e2c7886fca72f139cd8402488a2235957d41-git4.tar.gz
> +sha256 49a44b7a9e3983dc15fdc5bacd0e095df650296024f43f9d6c080ad54de0b07f aer-inject-9bd5e2c7886fca72f139cd8402488a2235957d41.tar.gz
> sha256 659a191d8775e05c6c6a9a4ba66b3577c577342bb83f20d393135eb6633c8973 README
> diff --git a/package/aer-inject/aer-inject.mk b/package/aer-inject/aer-inject.mk
> index 6bc9cb44da..d0ae3cc516 100644
> --- a/package/aer-inject/aer-inject.mk
> +++ b/package/aer-inject/aer-inject.mk
> @@ -5,8 +5,7 @@
> ################################################################################
>
> AER_INJECT_VERSION = 9bd5e2c7886fca72f139cd8402488a2235957d41
> -AER_INJECT_SITE = https://git.kernel.org/pub/scm/linux/kernel/git/gong.chen/aer-inject.git
> -AER_INJECT_SITE_METHOD = git
> +AER_INJECT_SITE = $(call github,intel,aer-inject,$(AER_INJECT_VERSION))
Please, keep using the git download backend, rather than use the github
macro; and just change the _SITE. This way, the hash will not change.
Regards,
Yann E. MORIN.
> AER_INJECT_LICENSE = GPL-2.0
> AER_INJECT_LICENSE_FILES = README
> AER_INJECT_DEPENDENCIES = host-flex host-bison
>
> ---
> base-commit: 37801767f68c05500f1d4495b5baac0e7340f7a9
> change-id: 20240901-aer-dc235cf8e483
>
> Best regards,
> --
> J. Neuschäfer <j.neuschaefer@gmx.net>
>
> _______________________________________________
> 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
* Re: [Buildroot] [PATCH] package/aer-inject: switch upstream
2024-09-01 16:24 ` Yann E. MORIN
@ 2024-09-01 16:31 ` J. Neuschäfer via buildroot
0 siblings, 0 replies; 3+ messages in thread
From: J. Neuschäfer via buildroot @ 2024-09-01 16:31 UTC (permalink / raw)
To: Yann E. MORIN; +Cc: J. Neuschäfer, buildroot
On Sun, Sep 01, 2024 at 06:24:56PM +0200, Yann E. MORIN wrote:
> J., All,
>
> On 2024-09-01 18:11 +0200, J. Neuschäfer via buildroot spake thusly:
[...]
> > AER_INJECT_VERSION = 9bd5e2c7886fca72f139cd8402488a2235957d41
> > -AER_INJECT_SITE = https://git.kernel.org/pub/scm/linux/kernel/git/gong.chen/aer-inject.git
> > -AER_INJECT_SITE_METHOD = git
> > +AER_INJECT_SITE = $(call github,intel,aer-inject,$(AER_INJECT_VERSION))
>
> Please, keep using the git download backend, rather than use the github
> macro; and just change the _SITE. This way, the hash will not change.
>
> Regards,
> Yann E. MORIN.
Alright, will do
thanks,
-- jn
_______________________________________________
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-09-01 16:31 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-01 16:11 [Buildroot] [PATCH] package/aer-inject: switch upstream J. Neuschäfer via buildroot
2024-09-01 16:24 ` Yann E. MORIN
2024-09-01 16:31 ` J. Neuschäfer via buildroot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox