* debian/orig-tar.sh: Don't include .git/.github metadata.

This commit is contained in:
Matthias Klose 2024-08-30 14:15:20 +02:00
parent fd46c750c4
commit d4d8514512
2 changed files with 3 additions and 2 deletions

3
debian/changelog vendored
View File

@ -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 <doko@ubuntu.com> Fri, 30 Aug 2024 10:38:09 +0200

2
debian/orig-tar.sh vendored
View File

@ -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"