From d4d85145125f695b5e078c6f50469442aea4ddbc Mon Sep 17 00:00:00 2001 From: Matthias Klose Date: Fri, 30 Aug 2024 14:15:20 +0200 Subject: [PATCH] * debian/orig-tar.sh: Don't include .git/.github metadata. --- debian/changelog | 3 ++- debian/orig-tar.sh | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index bb452986..07aec591 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -llvm-toolchain-19 (1:19.1.0~++rc3-1~exp2) UNRELEASED; urgency=medium +llvm-toolchain-19 (1:19.1.0~++rc3-1~exp2ubuntu6) oracular; urgency=medium * Add a .gitignore file with all toplevel upstream files and directories. * Add some memory tracking, getting some information on memory hogs. @@ -15,6 +15,7 @@ llvm-toolchain-19 (1:19.1.0~++rc3-1~exp2) UNRELEASED; urgency=medium * Fix installation of the shared libllvm and libclang-cpp libraries under their soname. Closes: #1072200. * Drop some of the unnecessary libllvm symlinks. + * debian/orig-tar.sh: Don't include .git/.github metadata. -- Matthias Klose Fri, 30 Aug 2024 10:38:09 +0200 diff --git a/debian/orig-tar.sh b/debian/orig-tar.sh index 3b98f53c..efd20edf 100755 --- a/debian/orig-tar.sh +++ b/debian/orig-tar.sh @@ -165,7 +165,7 @@ cp -R llvm-toolchain-integration-test-suite llvm-project/integration-test-suite # Argument to compress faster (for the cost of time) export XZ_OPT="-4 -T$(nproc)" echo "Compressing to $FILENAME" -time tar Jcf $CURRENT_PATH/"$FILENAME" --exclude .git --exclude build-llvm --transform="s|llvm-project|$BASE|" -C $EXPORT_PATH llvm-project +time tar Jcf $CURRENT_PATH/"$FILENAME" --exclude .git --exclude .gitattributes --exclude .git-blame-ignore-revs --exclude .gitignore --exclude .github --exclude build-llvm --transform="s|llvm-project|$BASE|" -C $EXPORT_PATH llvm-project rm -rf llvm-project/integration-test-suite export DEBFULLNAME="Sylvestre Ledru"