From 45cea799eccfa5c2d3ac6b58b91dd578c235e5d5 Mon Sep 17 00:00:00 2001 From: Mollusk Date: Fri, 12 Jun 2026 21:07:39 -0400 Subject: [PATCH] chore: gitignore makepkg build artifacts Building packaging/PKGBUILD in place leaves scratch dirs (src/, pkg/, peerspeak/ clone), the built *.pkg.tar.* and makepkg *.log behind, and also rewrites pkgver in PKGBUILD. Ignore the scratch outputs so an in-tree `makepkg` no longer pollutes git status. (Cleanest is still to build from a copy outside the repo.) Co-Authored-By: Claude Opus 4.8 --- .gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index ea8c4bf..3d44015 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,8 @@ /target + +# makepkg build artifacts (when building packaging/PKGBUILD in place) +/packaging/src/ +/packaging/pkg/ +/packaging/peerspeak/ +/packaging/*.pkg.tar.* +/packaging/*.log