* Workaround:

The 5| in the debian/rules regexp is a crappy workaround. 
  g++ 5.2 in Debian is not providing a g++-5.2 binary (only
  g++-5) accomodate that by hardcoding the 5 detection
* Remove Dummy.html from clang-3.7-doc to avoid install (Closes: #794539)
This commit is contained in:
Sylvestre Ledru 2015-08-04 16:33:23 +00:00
parent 136c1e97ff
commit 1f3894fc86
3 changed files with 13 additions and 2 deletions

10
debian/changelog vendored
View File

@ -1,3 +1,13 @@
llvm-toolchain-3.7 (1:3.7~+rc2-2) unstable; urgency=medium
* Workaround:
The 5| in the debian/rules regexp is a crappy workaround.
g++ 5.2 in Debian is not providing a g++-5.2 binary (only
g++-5) accomodate that by hardcoding the 5 detection
* Remove Dummy.html from clang-3.7-doc to avoid install (Closes: #794539)
-- Sylvestre Ledru <sylvestre@debian.org> Tue, 04 Aug 2015 09:27:22 +0200
llvm-toolchain-3.7 (1:3.7~+rc2-1) unstable; urgency=medium
* New snapshot release

View File

@ -1 +0,0 @@
usr/lib/llvm-@LLVM_VERSION@/docs/llvm/html/

4
debian/rules vendored
View File

@ -3,7 +3,9 @@
TARGET_BUILD := build-llvm
DEB_INST := $(CURDIR)/debian/tmp/
#GCC_VERSION := 4.8
GCC_VERSION := $(shell dpkg-query -W -f '$${Version}' g++ | sed -rne 's,^([0-9]+:)?([0-9]+\.[0-9]+|[0-9]+).*$$,\2,p')
# The 5| in the regexp is a crappy workaround. g++ 5.2 in Debian is not providing a g++-5.2 binary (only g++-5)
# accomodate that by hardcoding the 5 detection
GCC_VERSION := $(shell dpkg-query -W -f '$${Version}' g++ | sed -rne 's,^([0-9]+:)?(5|[0-9]+\.[0-9]+|[0-9]+).*$$,\2,p')
LLVM_VERSION := 3.7
LLVM_VERSION_FULL := $(LLVM_VERSION).0
SONAME_EXT := 1