📦 Pacman Package Server
Find a file
JMARyA 1815d9f461
All checks were successful
ci/woodpecker/push/build Pipeline was successful
randomize mirror selection
2025-01-29 23:42:09 +01:00
.woodpecker ci 2025-01-26 11:24:48 +01:00
migrations Download Count for Packages 2025-01-26 11:08:03 +01:00
src randomize mirror selection 2025-01-29 23:42:09 +01:00
.gitignore implement user pages + ui 2025-01-12 03:58:16 +01:00
Cargo.lock randomize mirror selection 2025-01-29 23:42:09 +01:00
Cargo.toml randomize mirror selection 2025-01-29 23:42:09 +01:00
config.toml smart mirroring 2025-01-13 11:39:00 +01:00
docker-compose.yml smart mirroring 2025-01-13 11:39:00 +01:00
Dockerfile fix 2024-12-27 04:38:47 +01:00
README.md update 2025-01-13 18:08:07 +01:00

Pacco

Pacco is an application for managing and hosting pacman repositories.

Features

  • Multiple repositories
  • Multiple architectures
  • Web UI for packages
  • API for pushing new packages
  • Smart mirroring

Usage

Package Repo

To use the packages pacco provides, add the following to pacman.conf:

# /etc/pacman.conf

[repo]
Server = https://example.com/pkg/$repo/$arch

Add a new package

To upload a package you created with makepkg to a repo use curl:

curl -X POST \
-F "pkg=@./<pkg_name>-<version>-<rel>-<arch>.pkg.tar.zst" \
-F "sig=@./<pkg_name>-<version>-<rel>-<arch>.pkg.tar.zst.sig" \
"https://<domain>/pkg/<repo>/upload"