Message ID | 20240901-aer-v1-1-03b124cb64b1@gmx.net |
---|---|
State | Changes Requested |
Headers | show |
Series | package/aer-inject: switch upstream | expand |
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
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
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
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(-) --- base-commit: 37801767f68c05500f1d4495b5baac0e7340f7a9 change-id: 20240901-aer-dc235cf8e483 Best regards, -- J. Neuschäfer <j.neuschaefer@gmx.net>