From 754b1312d20bf504be3e82cf553f5f3e5177ec5e Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Thu, 19 Aug 2021 18:35:27 +0200 Subject: [PATCH 1/2] add the upstream hash --- debian/changelog | 1 + 1 file changed, 1 insertion(+) diff --git a/debian/changelog b/debian/changelog index edaedfd7..295b4b60 100644 --- a/debian/changelog +++ b/debian/changelog @@ -23,6 +23,7 @@ llvm-toolchain-13 (1:13~++20210731010128+6eaf46beb462-1~exp1) experimental; urge - for now, I am not planning to rename libclang1-13 to libclang13 as it will cause too much churn for a small gain as we will keep libllvm (while losing the capability to have different versions in parallel installed) + See upstream c7b3a91017d26266d7556b1ac7c49b06f0109b91 -- Sylvestre Ledru Tue, 20 Jul 2021 09:40:58 +0200 From 5f311f8c87c8f07949ca77a305ffcf8680e577b2 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Thu, 19 Aug 2021 18:35:36 +0200 Subject: [PATCH 2/2] fix the clang symlink --- debian/rules | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/rules b/debian/rules index 3f8e9a67..3a3e8004 100755 --- a/debian/rules +++ b/debian/rules @@ -625,8 +625,8 @@ override_dh_auto_install: : # libclang cd debian/tmp/usr/lib/llvm-$(LLVM_VERSION)/lib/ && \ - ln -s libclang-$(SONAME_CLANG).so libclang.so.$(SONAME_EXT) && \ - ln -s libclang-$(SONAME_CLANG).so libclang-$(SONAME_CLANG).so.$(SONAME_EXT) + ln -s libclang-$(LLVM_VERSION).so libclang.so.$(SONAME_EXT) && \ + ln -s libclang-$(LLVM_VERSION).so libclang-$(SONAME_CLANG).so.$(SONAME_EXT) : # libomp cd debian/tmp/usr/lib/llvm-$(LLVM_VERSION)/lib && rm -f libomp.so; \