* [Buildroot] [PATCH 1/2] package/acpica: switch to github
@ 2024-10-08 20:26 Dario Binacchi
2024-10-08 20:26 ` [Buildroot] [PATCH 2/2] package/acpica: bump to version 20240927 Dario Binacchi
2024-10-23 21:15 ` [Buildroot] [PATCH 1/2] package/acpica: switch to github Thomas Petazzoni via buildroot
0 siblings, 2 replies; 3+ messages in thread
From: Dario Binacchi @ 2024-10-08 20:26 UTC (permalink / raw)
To: buildroot; +Cc: Dario Binacchi, linux-amarula
As reported in [1] the traditional acpica.org website releases might get
delayed due to website publication process, and indeed, on GitHub, the
latest released version is 20240927, while in [2] the 20240827 version
appears. Furthermore, in [2], explicit reference is made to the GitHub
URL for direct access to the public ACPICA git repository.
[1] https://github.com/acpica/acpica/releases
[2] https://www.intel.com/content/www/us/en/developer/topic-technology/open/acpica/download.html
Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
---
package/acpica/acpica.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/acpica/acpica.mk b/package/acpica/acpica.mk
index a3d682257d62..5b1dfbbba2e7 100644
--- a/package/acpica/acpica.mk
+++ b/package/acpica/acpica.mk
@@ -6,7 +6,7 @@
ACPICA_VERSION = 20240321
ACPICA_SOURCE = acpica-unix-$(ACPICA_VERSION).tar.gz
-ACPICA_SITE = https://downloadmirror.intel.com/819451
+ACPICA_SITE = https://github.com/acpica/acpica/files/14718333
ACPICA_LICENSE = BSD-3-Clause or GPL-2.0
ACPICA_LICENSE_FILES = source/include/acpi.h
ACPICA_DEPENDENCIES = host-bison host-flex
--
2.43.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 2/2] package/acpica: bump to version 20240927
2024-10-08 20:26 [Buildroot] [PATCH 1/2] package/acpica: switch to github Dario Binacchi
@ 2024-10-08 20:26 ` Dario Binacchi
2024-10-23 21:15 ` [Buildroot] [PATCH 1/2] package/acpica: switch to github Thomas Petazzoni via buildroot
1 sibling, 0 replies; 3+ messages in thread
From: Dario Binacchi @ 2024-10-08 20:26 UTC (permalink / raw)
To: buildroot; +Cc: Dario Binacchi, linux-amarula
For change log since 20240321, see:
https://github.com/user-attachments/files/17171011/changes.txt
Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
---
package/acpica/acpica.hash | 3 +--
package/acpica/acpica.mk | 4 ++--
2 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/package/acpica/acpica.hash b/package/acpica/acpica.hash
index 4170587f3a3a..c3e7fda3406e 100644
--- a/package/acpica/acpica.hash
+++ b/package/acpica/acpica.hash
@@ -1,4 +1,3 @@
-# From: https://www.intel.com/content/www/us/en/download/776303/acpi-component-architecture-downloads-unix-format-source-code-and-build-environment-with-an-intel-license.html
-sha256 54a299487925fd3e0551c95f9d5cee4f4984930273983eff67aa5cd46f8f338b acpica-unix-20240321.tar.gz
# locally computed hash
+sha256 57988fb55541e694dfa3323bd19db74b65d37e942bebef559ed51e8cd9348b43 acpica-unix-20240927.tar.gz
sha256 b28f54dc421531bbe269afd8c28bf6fdfd6affbe50c2831464f777ec1766d4a5 source/include/acpi.h
diff --git a/package/acpica/acpica.mk b/package/acpica/acpica.mk
index 5b1dfbbba2e7..a2abcf755817 100644
--- a/package/acpica/acpica.mk
+++ b/package/acpica/acpica.mk
@@ -4,9 +4,9 @@
#
################################################################################
-ACPICA_VERSION = 20240321
+ACPICA_VERSION = 20240927
ACPICA_SOURCE = acpica-unix-$(ACPICA_VERSION).tar.gz
-ACPICA_SITE = https://github.com/acpica/acpica/files/14718333
+ACPICA_SITE = https://github.com/user-attachments/files/17171019
ACPICA_LICENSE = BSD-3-Clause or GPL-2.0
ACPICA_LICENSE_FILES = source/include/acpi.h
ACPICA_DEPENDENCIES = host-bison host-flex
--
2.43.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 1/2] package/acpica: switch to github
2024-10-08 20:26 [Buildroot] [PATCH 1/2] package/acpica: switch to github Dario Binacchi
2024-10-08 20:26 ` [Buildroot] [PATCH 2/2] package/acpica: bump to version 20240927 Dario Binacchi
@ 2024-10-23 21:15 ` Thomas Petazzoni via buildroot
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-10-23 21:15 UTC (permalink / raw)
To: Dario Binacchi; +Cc: buildroot, linux-amarula
On Tue, 8 Oct 2024 22:26:08 +0200
Dario Binacchi <dario.binacchi@amarulasolutions.com> wrote:
> As reported in [1] the traditional acpica.org website releases might get
> delayed due to website publication process, and indeed, on GitHub, the
> latest released version is 20240927, while in [2] the 20240827 version
> appears. Furthermore, in [2], explicit reference is made to the GitHub
> URL for direct access to the public ACPICA git repository.
>
> [1] https://github.com/acpica/acpica/releases
> [2] https://www.intel.com/content/www/us/en/developer/topic-technology/open/acpica/download.html
>
> Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
> ---
> package/acpica/acpica.mk | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Both applied to master, thanks.
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
end of thread, other threads:[~2024-10-23 21:15 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-08 20:26 [Buildroot] [PATCH 1/2] package/acpica: switch to github Dario Binacchi
2024-10-08 20:26 ` [Buildroot] [PATCH 2/2] package/acpica: bump to version 20240927 Dario Binacchi
2024-10-23 21:15 ` [Buildroot] [PATCH 1/2] package/acpica: switch to github Thomas Petazzoni via buildroot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox