- Add complete Debian packaging configuration (debian/ directory) - Create build-deb.sh script for building packages - Update Forgejo workflow to build and upload .deb artifacts - Add comprehensive version naming for both binary and Debian artifacts - Update .gitignore to exclude build artifacts and packaging files - Add PACKAGING.md documentation - Add test-deb.sh for testing package installation
42 lines
474 B
Text
Executable file
42 lines
474 B
Text
Executable file
# Rust build artifacts
|
|
/target
|
|
|
|
# Debian packaging artifacts
|
|
debian/deb-bootupd/
|
|
debian/files
|
|
debian/*.debhelper
|
|
debian/*.substvars
|
|
debian/*.log
|
|
debian/*.deb
|
|
debian/*.buildinfo
|
|
debian/*.changes
|
|
debian/*.dsc
|
|
debian/*.tar.*
|
|
|
|
# Build artifacts
|
|
fastbuild*.qcow2
|
|
_kola_temp
|
|
.cosa
|
|
|
|
# Package build outputs
|
|
*.deb
|
|
*.buildinfo
|
|
*.changes
|
|
*.dsc
|
|
*.tar.*
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*~
|
|
|
|
# IDE and editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
Thumbs.db
|