Initial setup
Install package(s) as usual. At least,
ahriman-corepackage is required; other features can be installed separately. Alternatively, it is possible to install meta-package, which includes everything.Change settings if required, see configuration reference for more details.
Perform initial setup:
sudo ahriman -a x86_64 -r aur service-setup ...
Details
service-setupliterally does the following steps:Create
/var/lib/ahriman/.makepkg.confwithmakepkg.confoverrides if required (at least you might want to setPACKAGER):echo 'PACKAGER="ahriman bot <ahriman@example.com>"' | sudo -u ahriman tee -a /var/lib/ahriman/.makepkg.conf
Configure build tools (it is required for correct dependency management system):
Create build command (you can choose any name for command, basically it should be
{name}-{arch}-build):ln -s /usr/bin/archbuild /usr/local/bin/aur-x86_64-build
Create configuration file (same as previous
{name}.conf):cp /usr/share/devtools/pacman.conf.d/{extra,aur}.conf
Change configuration file, add your own repository, add multilib repository etc:
echo '[multilib]' | tee -a /usr/share/devtools/pacman.conf.d/aur-x86_64.conf echo 'Include = /etc/pacman.d/mirrorlist' | tee -a /usr/share/devtools/pacman.conf.d/aur-x86_64.conf echo '[aur]' | tee -a /usr/share/devtools/pacman.conf.d/aur-x86_64.conf echo 'SigLevel = Optional TrustAll' | tee -a /usr/share/devtools/pacman.conf.d/aur-x86_64.conf echo 'Server = file:///var/lib/ahriman/repository/$repo/$arch' | tee -a /usr/share/devtools/pacman.conf.d/aur-x86_64.conf
Set
build_commandoption to point to your command:echo '[build]' | tee -a /etc/ahriman.ini.d/build.ini echo 'build_command = aur-x86_64-build' | tee -a /etc/ahriman.ini.d/build.ini
Configure
/etc/sudoers.d/ahrimanto allow running command without a password:echo 'Cmnd_Alias CARCHBUILD_CMD = /usr/local/bin/aur-x86_64-build *' | tee -a /etc/sudoers.d/ahriman echo 'ahriman ALL=(ALL) NOPASSWD:SETENV: CARCHBUILD_CMD' | tee -a /etc/sudoers.d/ahriman chmod 400 /etc/sudoers.d/ahriman
This command supports several arguments, kindly refer to its help message.
Start and enable
ahriman@.timerviasystemctl:systemctl enable --now ahriman@x86_64-aur.timer
Start and enable status page:
systemctl enable --now ahriman-web
Add packages by using
ahriman package-add {package}command:sudo -u ahriman ahriman package-add ahriman --now --refresh
The
--refreshflag is required in order to handle local database update.