* [Buildroot] [PATCH 1/2] package/llvm: bump to version 9.0.1
@ 2020-01-06 21:47 Romain Naour
2020-01-06 21:47 ` [Buildroot] [PATCH 2/2] package/clang: " Romain Naour
2020-01-06 22:31 ` [Buildroot] [PATCH 1/2] package/llvm: " Thomas Petazzoni
0 siblings, 2 replies; 3+ messages in thread
From: Romain Naour @ 2020-01-06 21:47 UTC (permalink / raw)
To: buildroot
Go back to the github url download again.
See:
http://lists.llvm.org/pipermail/llvm-announce/2019-December/000086.html
Cc: Joseph Kogut <joseph.kogut@gmail.com>
Cc: Valentin Korenblit <valentinkorenblit@gmail.com>
Signed-off-by: Romain Naour <romain.naour@gmail.com>
---
package/llvm/llvm.hash | 2 +-
package/llvm/llvm.mk | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/package/llvm/llvm.hash b/package/llvm/llvm.hash
index a10b66ded2..6bf2755777 100644
--- a/package/llvm/llvm.hash
+++ b/package/llvm/llvm.hash
@@ -1,3 +1,3 @@
# locally calculated
-sha256 d6a0565cf21f22e9b4353b2eb92622e8365000a9e90a16b09b56f8157eabfe84 llvm-9.0.0.src.tar.xz
+sha256 00a1ee1f389f81e9979f3a640a01c431b3021de0d42278f6508391a2f0b81c9a llvm-9.0.1.src.tar.xz
sha256 8d85c1057d742e597985c7d4e6320b015a9139385cff4cbae06ffc0ebe89afee LICENSE.TXT
diff --git a/package/llvm/llvm.mk b/package/llvm/llvm.mk
index 2b2bcf336e..28ad6a5704 100644
--- a/package/llvm/llvm.mk
+++ b/package/llvm/llvm.mk
@@ -5,8 +5,8 @@
################################################################################
# LLVM, Clang and lld should be version bumped together
-LLVM_VERSION = 9.0.0
-LLVM_SITE = http://llvm.org/releases/$(LLVM_VERSION)
+LLVM_VERSION = 9.0.1
+LLVM_SITE = https://github.com/llvm/llvm-project/releases/download/llvmorg-$(LLVM_VERSION)
LLVM_SOURCE = llvm-$(LLVM_VERSION).src.tar.xz
LLVM_LICENSE = Apache-2.0 with exceptions
LLVM_LICENSE_FILES = LICENSE.TXT
--
2.24.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 2/2] package/clang: bump to version 9.0.1
2020-01-06 21:47 [Buildroot] [PATCH 1/2] package/llvm: bump to version 9.0.1 Romain Naour
@ 2020-01-06 21:47 ` Romain Naour
2020-01-06 22:31 ` [Buildroot] [PATCH 1/2] package/llvm: " Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Romain Naour @ 2020-01-06 21:47 UTC (permalink / raw)
To: buildroot
Go back to the github url download again.
Cc: Joseph Kogut <joseph.kogut@gmail.com>
Cc: Valentin Korenblit <valentinkorenblit@gmail.com>
Signed-off-by: Romain Naour <romain.naour@gmail.com>
---
package/clang/clang.hash | 2 +-
package/clang/clang.mk | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/package/clang/clang.hash b/package/clang/clang.hash
index d9aa57c817..067a2c0470 100644
--- a/package/clang/clang.hash
+++ b/package/clang/clang.hash
@@ -1,3 +1,3 @@
# locally calculated
-sha256 7ba81eef7c22ca5da688fdf9d88c20934d2d6b40bfe150ffd338900890aa4610 cfe-9.0.0.src.tar.xz
+sha256 5778512b2e065c204010f88777d44b95250671103e434f9dc7363ab2e3804253 clang-9.0.1.src.tar.xz
sha256 ebcd9bbf783a73d05c53ba4d586b8d5813dcdf3bbec50265860ccc885e606f47 LICENSE.TXT
diff --git a/package/clang/clang.mk b/package/clang/clang.mk
index 87bdf52e8d..d740af5322 100644
--- a/package/clang/clang.mk
+++ b/package/clang/clang.mk
@@ -5,9 +5,9 @@
################################################################################
# LLVM, Clang and lld should be version bumped together
-CLANG_VERSION = 9.0.0
-CLANG_SITE = http://llvm.org/releases/$(CLANG_VERSION)
-CLANG_SOURCE = cfe-$(CLANG_VERSION).src.tar.xz
+CLANG_VERSION = 9.0.1
+CLANG_SITE = https://github.com/llvm/llvm-project/releases/download/llvmorg-$(CLANG_VERSION)
+CLANG_SOURCE = clang-$(CLANG_VERSION).src.tar.xz
CLANG_LICENSE = Apache-2.0 with exceptions
CLANG_LICENSE_FILES = LICENSE.TXT
CLANG_SUPPORTS_IN_SOURCE_BUILD = NO
--
2.24.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 1/2] package/llvm: bump to version 9.0.1
2020-01-06 21:47 [Buildroot] [PATCH 1/2] package/llvm: bump to version 9.0.1 Romain Naour
2020-01-06 21:47 ` [Buildroot] [PATCH 2/2] package/clang: " Romain Naour
@ 2020-01-06 22:31 ` Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2020-01-06 22:31 UTC (permalink / raw)
To: buildroot
On Mon, 6 Jan 2020 22:47:41 +0100
Romain Naour <romain.naour@gmail.com> wrote:
> Go back to the github url download again.
>
> See:
> http://lists.llvm.org/pipermail/llvm-announce/2019-December/000086.html
>
> Cc: Joseph Kogut <joseph.kogut@gmail.com>
> Cc: Valentin Korenblit <valentinkorenblit@gmail.com>
> Signed-off-by: Romain Naour <romain.naour@gmail.com>
> ---
> package/llvm/llvm.hash | 2 +-
> package/llvm/llvm.mk | 4 ++--
> 2 files changed, 3 insertions(+), 3 deletions(-)
Both applied. Thanks!
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-01-06 22:31 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-01-06 21:47 [Buildroot] [PATCH 1/2] package/llvm: bump to version 9.0.1 Romain Naour
2020-01-06 21:47 ` [Buildroot] [PATCH 2/2] package/clang: " Romain Naour
2020-01-06 22:31 ` [Buildroot] [PATCH 1/2] package/llvm: " Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox