The original .gitignore caught *.deb in the source tree but not:
- debian/.debhelper/ (cache populated by every dh_* helper)
- debian/debhelper-build-stamp, debian/postit.debhelper.log,
debian/postit.substvars (regenerated per build)
- debian/tmp/ (staging tree for dh_install)
- postit_*.{deb,changes,buildinfo} in the parent workspace
(where dpkg-buildpackage drops artifacts)
30 lines
565 B
Text
30 lines
565 B
Text
# Debian package build artifacts
|
|
*.deb
|
|
*.buildinfo
|
|
*.changes
|
|
*.debian.tar.*
|
|
debian/files
|
|
debian/postit/
|
|
|
|
# Upstream source tree fetched by the build (in build/)
|
|
build/
|
|
|
|
# Editor / OS noise
|
|
.DS_Store
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
# Generated by debhelper during build
|
|
debian/.debhelper/
|
|
debian/debhelper-build-stamp
|
|
debian/postit.debhelper.log
|
|
debian/postit.substvars
|
|
|
|
# Staging tree for dh_install
|
|
debian/tmp/
|
|
|
|
# Built .deb artifacts that fall outside the source tree (dpkg-buildpackage
|
|
# drops them next to the parent dir)
|
|
postit_*.deb
|
|
postit_*.changes
|
|
postit_*.buildinfo
|