Update library filename declaration 3.5 => 3.6 (Closes: #772006)

This commit is contained in:
Sylvestre Ledru 2014-12-06 01:50:33 +00:00
parent 710dc439f3
commit 6b029e7dfd
3 changed files with 9 additions and 3 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
llvm-toolchain-snapshot (1:3.6~svn221998-1~exp2) UNRELEASED; urgency=medium
* Update library filename declaration 3.5 => 3.6 (Closes: #772006)
-- Sylvestre Ledru <sylvestre@debian.org> Fri, 05 Dec 2014 17:46:56 -0800
llvm-toolchain-snapshot (1:3.6~svn221998-1~exp1) experimental; urgency=medium llvm-toolchain-snapshot (1:3.6~svn221998-1~exp1) experimental; urgency=medium
* Disable ocaml binding. Needs libctypes-ocaml 0.3.3 which is not available * Disable ocaml binding. Needs libctypes-ocaml 0.3.3 which is not available

View File

@ -20,7 +20,7 @@ Index: llvm-toolchain-snapshot_3.6~svn221256/clang/tools/clang-format/clang-form
# Change this to the full path if clang-format is not on the path. # Change this to the full path if clang-format is not on the path.
-binary = 'clang-format' -binary = 'clang-format'
+binary = 'clang-format-3.5' +binary = 'clang-format-3.6'
def main(): def main():
@ -33,7 +33,7 @@ Index: llvm-toolchain-snapshot_3.6~svn221256/clang/tools/clang-format/clang-form
;; *Location of the clang-format binary. If it is on your PATH, a full path name ;; *Location of the clang-format binary. If it is on your PATH, a full path name
;; need not be specified. ;; need not be specified.
-(defvar clang-format-binary "clang-format") -(defvar clang-format-binary "clang-format")
+(defvar clang-format-binary "clang-format-3.5") +(defvar clang-format-binary "clang-format-3.6")
(defun clang-format-region () (defun clang-format-region ()
"Use clang-format to format the currently active region." "Use clang-format to format the currently active region."

View File

@ -7,7 +7,7 @@ Index: llvm-toolchain-snapshot_3.5~svn199197/clang/bindings/python/clang/cindex.
file = 'libclang.dll' file = 'libclang.dll'
else: else:
- file = 'libclang.so' - file = 'libclang.so'
+ file = 'libclang-3.5.so' + file = 'libclang-3.6.so'
if Config.library_path: if Config.library_path:
file = Config.library_path + '/' + file file = Config.library_path + '/' + file