* Upload to unstable

* Add the patch for the Ubuntu Saucy detection
This commit is contained in:
Sylvestre Ledru 2013-06-13 13:00:37 +00:00
parent c333753af6
commit c5cc4bc058
3 changed files with 37 additions and 1 deletions

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
llvm-toolchain-3.3 (1:3.3-1) UNRELEASED; urgency=low
* Upload to unstable
* Add the patch for the Ubuntu Saucy detection
-- Sylvestre Ledru <sylvestre@debian.org> Thu, 13 Jun 2013 14:58:20 +0200
llvm-toolchain-3.3 (1:3.3-1~exp1) experimental; urgency=low
* New upstream release

29
debian/patches/add-ubuntu-saucy.patch vendored Normal file
View File

@ -0,0 +1,29 @@
Index: llvm-toolchain-3.3-3.3/clang/lib/Driver/ToolChains.cpp
===================================================================
--- llvm-toolchain-3.3-3.3.orig/clang/lib/Driver/ToolChains.cpp 2013-06-13 14:20:37.000000000 +0200
+++ llvm-toolchain-3.3-3.3/clang/lib/Driver/ToolChains.cpp 2013-06-13 14:59:57.000000000 +0200
@@ -2016,6 +2016,7 @@
UbuntuPrecise,
UbuntuQuantal,
UbuntuRaring,
+ UbuntuSaucy,
UnknownDistro
};
@@ -2033,7 +2034,7 @@
}
static bool IsUbuntu(enum Distro Distro) {
- return Distro >= UbuntuHardy && Distro <= UbuntuRaring;
+ return Distro >= UbuntuHardy && Distro <= UbuntuSaucy;
}
static Distro DetectDistro(llvm::Triple::ArchType Arch) {
@@ -2057,6 +2058,7 @@
.Case("precise", UbuntuPrecise)
.Case("quantal", UbuntuQuantal)
.Case("raring", UbuntuRaring)
+ .Case("saucy", UbuntuSaucy)
.Default(UnknownDistro);
return Version;
}

View File

@ -22,4 +22,4 @@ ia64-fix.diff
hurd-endian.diff
clang-format-version.diff
kfreebsd.diff
add-ubuntu-saucy.patch