Fix package metadata and build dependencies for Debian Trixie
Some checks failed
Comprehensive CI/CD Pipeline / Build and Test bootc Package (push) Failing after 2m43s
Comprehensive CI/CD Pipeline / Security Audit (push) Failing after 0s
Comprehensive CI/CD Pipeline / Package Validation (push) Successful in 1m2s
Comprehensive CI/CD Pipeline / Status Report (push) Has been skipped

- Update debian/changelog: 1.5.1-1~noble1 → 1.5.1-1~trixie1
- Change distribution from noble-backports to trixie
- Add missing build dependencies: libfuse3-dev, libsoup-3.0-dev, etc.
- Update install.sh and README.md to reflect Trixie version
- Fix repository URLs to use particle-os instead of robojerk
- Ensure all required packages are available for successful build
This commit is contained in:
robojerk 2025-08-14 13:06:25 -07:00
parent 6dd88876c9
commit 71d57fc924
4 changed files with 20 additions and 17 deletions

View file

@ -11,7 +11,7 @@ A complete solution for building and distributing bootc .deb packages for Debian
- **CI/CD**: Automated build pipeline with package upload to Forgejo
- **Package Repository Integration**: Automatic upload to Forgejo package registry
**Note**: The libostree 2025.2-1 packages are available as Debian packages in the Forgejo repository: [libostree-dev](https://git.raines.xyz/robojerk/libostree-dev)
**Note**: The libostree 2025.2-1 packages are available as Debian packages in the Forgejo repository: [libostree-dev](https://git.raines.xyz/particle-os/libostree-dev)
## 🚀 Quick Start
@ -29,10 +29,10 @@ git clone <your-repo-url> bootc-deb
cd bootc-deb
# Step 1: Install libostree 2025.2-1 packages from Forgejo
curl -fsSL https://git.raines.xyz/api/packages/robojerk/debian/repository.key | sudo gpg --dearmor -o /usr/share/keyrings/forgejo-robojerk.gpg
echo "deb [signed-by=/usr/share/keyrings/forgejo-robojerk.gpg] https://git.raines.xyz/api/packages/robojerk/debian noble main" | sudo tee /etc/apt/sources.list.d/forgejo-robojerk.list
curl -fsSL https://git.raines.xyz/api/packages/particle-os/debian/repository.key | sudo gpg --dearmor -o /usr/share/keyrings/forgejo-particle-os.gpg
echo "deb [signed-by=/usr/share/keyrings/forgejo-particle-os.gpg] https://git.raines.xyz/api/packages/particle-os/debian trixie main" | sudo tee /etc/apt/sources.list.d/forgejo-particle-os.list
sudo apt update
sudo apt install -y libostree-dev=2025.2-1~noble1 libostree-1-1=2025.2-1~noble1
sudo apt install -y libostree-dev=2025.2-1~trixie1 libostree-1-1=2025.2-1~trixie1
# Step 2: Build the bootc .deb package
./build.sh
@ -57,7 +57,7 @@ bootc-deb/
├── install.sh # Installation script
├── test-libostree-install.sh # Test libostree package installation
├── test-debian-upload.sh # Test package upload functionality
├── libostree-dev_noble_backport.sh # Legacy backport script (see separate repo)
├── libostree-dev_trixie_backport.sh # Legacy backport script (see separate repo)
├── README.md # This file
├── .forgejo/ # CI/CD workflows
│ ├── workflows/
@ -106,8 +106,8 @@ git clone <your-repo-url> bootc-deb
cd bootc-deb
# Install from Forgejo package repository
curl -fsSL https://git.raines.xyz/api/packages/robojerk/debian/repository.key | sudo gpg --dearmor -o /usr/share/keyrings/forgejo-robojerk.gpg
echo "deb [signed-by=/usr/share/keyrings/forgejo-robojerk.gpg] https://git.raines.xyz/api/packages/robojerk/debian noble main" | sudo tee /etc/apt/sources.list.d/forgejo-robojerk.list
curl -fsSL https://git.raines.xyz/api/packages/particle-os/debian/repository.key | sudo gpg --dearmor -o /usr/share/keyrings/forgejo-particle-os.gpg
echo "deb [signed-by=/usr/share/keyrings/forgejo-particle-os.gpg] https://git.raines.xyz/api/packages/particle-os/debian trixie main" | sudo tee /etc/apt/sources.list.d/forgejo-particle-os.list
sudo apt update
sudo apt install -y bootc
```
@ -120,7 +120,7 @@ The complete workflow will:
## 📦 Package Information
- **Package Name**: bootc
- **Version**: 1.5.1-1~noble1
- **Version**: 1.5.1-1~trixie1
- **Target**: Ubuntu Noble (24.04 LTS)
- **Dependencies**: libostree-1-1 (>= 2025.2), systemd, podman|docker.io, skopeo
@ -137,8 +137,8 @@ This packaging is specifically designed for Aurora-style workflow:
Both libostree and bootc packages are available from the Forgejo package repository:
- **Repository**: [libostree-dev](https://git.raines.xyz/robojerk/libostree-dev)
- **Package Registry**: [Forgejo Packages](https://git.raines.xyz/robojerk/-/packages)
- **Repository**: [libostree-dev](https://git.raines.xyz/particle-os/libostree-dev)
- **Package Registry**: [Forgejo Packages](https://git.raines.xyz/particle-os/-/packages)
- **Automated builds** with CI/CD integration
- **Complete dependency chain** from libostree to bootc
- **Easy installation** via standard apt commands
@ -149,7 +149,7 @@ If you prefer to build manually:
```bash
# 1. Install libostree 2025.2-1 backport (if needed)
# See: https://git.raines.xyz/robojerk/libostree-dev
# See: https://git.raines.xyz/particle-os/libostree-dev
# 2. Clone bootc source
git clone --depth 1 --branch v1.5.1 https://github.com/containers/bootc.git bootc-1.5.1