https://github.com/eclipse-bluechi/bluechi-ppa
PPA repository for BlueChi's .deb packages
https://github.com/eclipse-bluechi/bluechi-ppa
containers controller linux podman services systemd
Last synced: 4 months ago
JSON representation
PPA repository for BlueChi's .deb packages
- Host: GitHub
- URL: https://github.com/eclipse-bluechi/bluechi-ppa
- Owner: eclipse-bluechi
- Created: 2024-08-06T12:28:52.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-05-27T14:05:45.000Z (about 1 year ago)
- Last Synced: 2025-06-28T17:14:06.564Z (about 1 year ago)
- Topics: containers, controller, linux, podman, services, systemd
- Homepage: https://bluechi.readthedocs.io/en/latest/
- Size: 1.37 MB
- Stars: 1
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PPA for Eclipse BlueChi
This is the PPA repository for [Eclipse BlueChi](https://github.com/eclipse-bluechi/bluechi)'s .deb packages.
## Installation
```bash
# Add BlueChi PPA
$ curl -s --compressed "https://raw.githubusercontent.com/eclipse-bluechi/bluechi-ppa/main/deb/KEY.gpg" | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/bluechi.gpg >/dev/null
$ curl -s --compressed -o /etc/apt/sources.list.d/bluechi.list "https://raw.githubusercontent.com/eclipse-bluechi/bluechi-ppa/main/deb/bluechi.list"
$ sudo apt update
# Install BlueChi packages
$ sudo apt install bluechi-controller bluechi-agent bluechictl
```
## Adding new package versions
First, follow the instructions to [build .deb packages for Eclipse BlueChi](https://github.com/eclipse-bluechi/bluechi/tree/main/debian).
Add the resulting .deb packages to this repository and run:
```bash
# Packages & Packages.gz
dpkg-scanpackages --multiversion . > Packages
gzip -k -f Packages
# Release, Release.gpg & InRelease
apt-ftparchive release . > Release
gpg --default-key "${EMAIL}" -abs -o - Release > Release.gpg
gpg --default-key "${EMAIL}" --clearsign -o - Release > InRelease
# Finally, commit & push
```