AcreetionOS Repository Architecture
Topology
https://iso.acreetionos.org/
├── repo-main/$arch ← curated set (core-ish + desktop + apps)
└── personal/ ← maintainer extras / staging
Configured via /etc/pacman.conf; inspect effective values anytime with pacman-conf.
Database mechanics
Each repo = {name}.db (package index) + {name}.files (file search index). Clients sync with -Sy; hence the partial-upgrade prohibition: databases newer than installed world = inconsistent expectations.
pacman -Fy # refresh file db
pacman -F mkinitcpio # which package ships this file?
pacman -Sp linux # exact URL pacman would fetch
Signing & trust
Packages carry detached signatures verified against the shipped keyring:
-
Keyring package updates propagate new/trusted keys through normal upgrades.
-
Manual surgery rarely needed; if ever:
sudo pacman-key --refresh-keys, worst case re-install the acreetion keyring package per Repositories & Mirrors.
Check what you trust:
pacman-key --list-keys | grep -i acreetion
grep -E 'SigLevel' /etc/pacman.conf