From 55785480660dddeeeffed15df0bd38482ba4fda1 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Tue, 31 Oct 2023 22:19:41 +0100 Subject: [PATCH 1/3] * New supstream release * Upload to unstable * New snapshot release --- debian/changelog | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 3fd324c0..3dc8a38f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,10 +1,14 @@ -llvm-toolchain-17 (1:17.0.3-1~exp2) UNRELEASED; urgency=medium +llvm-toolchain-17 (1:17.0.4-1) unstable; urgency=medium [ Matthias Klose ] * Limit the number of parallel processes based on the available memory and the packages to be built (flang has some memory hogs). - -- Matthias Klose Wed, 18 Oct 2023 15:00:25 +0200 + [ Sylvestre Ledru ] + * New supstream release + * Upload to unstable + + -- Sylvestre Ledru Tue, 31 Oct 2023 11:39:22 +0100 llvm-toolchain-17 (1:17.0.3-1~exp1) experimental; urgency=medium @@ -38,6 +42,7 @@ llvm-toolchain-17 (1:17.0.1-1~exp2) experimental; urgency=medium llvm-toolchain-17 (1:17.0.1-1~exp1) experimental; urgency=medium * New upstream release + * New snapshot release -- Sylvestre Ledru Tue, 19 Sep 2023 10:43:02 +0200 From 7ab89db8deafc1d009a7b6fdcb705c585bd7d650 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Tue, 31 Oct 2023 22:20:03 +0100 Subject: [PATCH 2/3] fix changelog --- debian/changelog | 1 - 1 file changed, 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 3dc8a38f..8a5382de 100644 --- a/debian/changelog +++ b/debian/changelog @@ -42,7 +42,6 @@ llvm-toolchain-17 (1:17.0.1-1~exp2) experimental; urgency=medium llvm-toolchain-17 (1:17.0.1-1~exp1) experimental; urgency=medium * New upstream release - * New snapshot release -- Sylvestre Ledru Tue, 19 Sep 2023 10:43:02 +0200 From 2840ec0456c215b220fc3ad3bb71ad262bc53a90 Mon Sep 17 00:00:00 2001 From: Steve Langasek Date: Tue, 31 Oct 2023 22:54:40 +0100 Subject: [PATCH 3/3] Add noble as supported Ubuntu release --- debian/changelog | 2 ++ debian/patches/ubuntu-releases.patch | 22 ++++++++++++---------- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/debian/changelog b/debian/changelog index e0fb3b52..deaa92ac 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,8 @@ llvm-toolchain-16 (1:16.0.6-18) UNRELEASED; urgency=medium * Upload to sid + [ Steve Langasek ] + * Add noble as supported Ubuntu release -- Gianfranco Costamagna Wed, 25 Oct 2023 08:10:35 +0200 diff --git a/debian/patches/ubuntu-releases.patch b/debian/patches/ubuntu-releases.patch index 8b2bec1c..cc8303ca 100644 --- a/debian/patches/ubuntu-releases.patch +++ b/debian/patches/ubuntu-releases.patch @@ -3,36 +3,38 @@ Forwarded: no Author: Graham Inggs Last-Update: 2023-04-29 -Index: llvm-toolchain-16-16.0.5/clang/include/clang/Driver/Distro.h +Index: llvm-toolchain-16-16.0.6/clang/include/clang/Driver/Distro.h =================================================================== ---- llvm-toolchain-16-16.0.5.orig/clang/include/clang/Driver/Distro.h -+++ llvm-toolchain-16-16.0.5/clang/include/clang/Driver/Distro.h -@@ -77,6 +77,7 @@ +--- llvm-toolchain-16-16.0.6.orig/clang/include/clang/Driver/Distro.h ++++ llvm-toolchain-16-16.0.6/clang/include/clang/Driver/Distro.h +@@ -77,6 +77,8 @@ UbuntuJammy, UbuntuKinetic, UbuntuLunar, + UbuntuMantic, ++ UbuntuNoble, UnknownDistro }; -@@ -128,7 +129,7 @@ +@@ -128,7 +130,7 @@ } bool IsUbuntu() const { - return DistroVal >= UbuntuHardy && DistroVal <= UbuntuLunar; -+ return DistroVal >= UbuntuHardy && DistroVal <= UbuntuMantic; ++ return DistroVal >= UbuntuHardy && DistroVal <= UbuntuNoble; } bool IsAlpineLinux() const { return DistroVal == AlpineLinux; } -Index: llvm-toolchain-16-16.0.5/clang/lib/Driver/Distro.cpp +Index: llvm-toolchain-16-16.0.6/clang/lib/Driver/Distro.cpp =================================================================== ---- llvm-toolchain-16-16.0.5.orig/clang/lib/Driver/Distro.cpp -+++ llvm-toolchain-16-16.0.5/clang/lib/Driver/Distro.cpp -@@ -93,6 +93,7 @@ +--- llvm-toolchain-16-16.0.6.orig/clang/lib/Driver/Distro.cpp ++++ llvm-toolchain-16-16.0.6/clang/lib/Driver/Distro.cpp +@@ -93,6 +93,8 @@ .Case("jammy", Distro::UbuntuJammy) .Case("kinetic", Distro::UbuntuKinetic) .Case("lunar", Distro::UbuntuLunar) + .Case("mantic", Distro::UbuntuMantic) ++ .Case("noble", Distro::UbuntuNoble) .Default(Distro::UnknownDistro); return Version; }