Add ebuild for mautrix-signal 25.10 with fixed main.Tag
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing

Signed-off-by: Manuel Friedli <manuel@fritteli.ch>
This commit is contained in:
Manuel Friedli 2026-01-01 23:07:41 +01:00
parent 2ceadd4382
commit 6ee7800b7b
Signed by: manuel
GPG key ID: 41D08ABA75634DA1
7 changed files with 142 additions and 90 deletions

View file

@ -0,0 +1,21 @@
#!/sbin/openrc-run
# shellcheck shell=sh
#
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
description="Matrix-Signal puppeting bridge"
supervisor="supervise-daemon"
command="/usr/bin/mautrix-signal"
command_args="-c ${MAUTRIX_SIGNAL_CONFIG} ${MAUTRIX_SIGNAL_OPTS}"
command_user="mautrix-signal:mautrix"
pidfile="/run/mautrix-signal/${RC_SVCNAME}.pid"
depend() {
need net
use dns postgresql
}
start_pre() {
checkpath -d -o "${command_user}" /run/mautrix-signal
}