net-im/mautrix-signal: add 0.6.0

Signed-off-by: Julien Roy <julien@jroy.ca>
This commit is contained in:
Julien Roy
2024-05-14 15:02:21 -04:00
parent d98d8db0cc
commit a07ed37885
2 changed files with 68 additions and 0 deletions

View File

@@ -1,2 +1,4 @@
DIST mautrix-signal-0.5.1.gh.tar.gz 305845 BLAKE2B 6de8992b4204499f62d106cfd06a9841f79c5b929e7b214fd5b142f71d3c88a09bccea2842ba6465d0ad658e5f1dfcaff343a5b7b6b8090adb75e5f712c7e2c3 SHA512 20434685189ac2d6647539afdd63dd530312b1da5d6ce2d25e96268ca15384f7309bd99d9df49648b04e97cbec1ea7c7605ff401acc69eccbec972665035b96d
DIST mautrix-signal-0.5.1.tar.xz 20352288 BLAKE2B 835e2baf0dc3e0184eb8f1ffec8b8840708c1bba84105b6044b7bd2b671a693b4038d8858fb32353344353f24c63d714ad6536c3aab40cf214cefac1deb47b8f SHA512 d932dcd99df6e2a2e88282f88fc0301706c4a45fabf835fb1eb81ad94e621e1c77671d310cbd0dc4959f1b45e3bab893535228d89a6cf3fc409e1f6da059b089
DIST mautrix-signal-0.6.0-deps.tar.xz 23987148 BLAKE2B 67ef4ae365b2f3bd5ac98d371d950972b6c836518f3515d5596d63db82fa3eefa66b67099deb68d2c0ed2a8556d36403f2ee27ccf37e1f7bffa4f269f1c193e7 SHA512 a6d56c3ad185fe1e83deb061b60aa897a0a407d6bf459b6a68df56821b846b7b18db6d1f91ae044c2e9050f79ea2e0507ed9e1ee113d8d2dc93aa99af25121dc
DIST mautrix-signal-0.6.0.gh.tar.gz 329464 BLAKE2B 723bb833c712c42e82bcf80fd205b8bf6371818a9631823cd68daa2d29c91cd00eafd6daa2b1d5278f808e7114babd7a572200f6738066225f7e97a18a9a81f5 SHA512 ac55ed462b442bc28045bd639359151b5717fef374f74a150c6597f4252cfb406c16de2b7989cb49b5e0e3c29f447427e19ac860048f7a9b2b020823694ffdba

View File

@@ -0,0 +1,66 @@
# Copyright 2022-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module systemd
DESCRIPTION="A Matrix-Signal puppeting bridge"
HOMEPAGE="https://github.com/mautrix/signal"
SRC_URI="https://github.com/mautrix/signal/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz
https://jroy.ca/dist/${P}-deps.tar.xz
"
S="${WORKDIR}/signal-${PV}"
LICENSE="AGPL-3"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
acct-user/${PN}
"
DEPEND="${RDEPEND}"
BDEPEND="
dev-libs/libsignal-ffi
dev-libs/olm
"
src_compile() {
ego build
}
src_install() {
dobin mautrix-signal
keepdir /var/log/mautrix/signal
fowners -R root:mautrix /var/log/mautrix
fperms -R 770 /var/log/mautrix
sed -i -e "s/\.\/logs/\/var\/log\/${PN/-/\\\/}/" "example-config.yaml" || die
insinto "/etc/mautrix"
newins "example-config.yaml" "${PN/-/_}.yaml"
newinitd "${FILESDIR}/${PN}.initd" "${PN}"
systemd_dounit "${FILESDIR}/${PN}.service"
fowners -R root:mautrix /etc/mautrix
fperms -R 770 /etc/mautrix
}
pkg_postinst() {
einfo
elog ""
elog "Before you can use ${PN}, you must configure it correctly"
elog "The configuration file is located at \"/etc/mautrix/${PN/-/_}.yaml\""
elog "When done, run the following command: emerge --config ${CATEGORY}/${PN}"
elog "Then, you must register the bridge with your homeserver"
elog "Refer your homeserver's documentation for instructions"
elog "The registration file is located at /var/lib/${PN/-/\/}/registration.yaml"
elog "Finally, you may start the ${PN} daemon"
einfo
}
pkg_config() {
su - "${PN}" -s /bin/sh -c \
"/usr/bin/${PN} -c /etc/mautrix/${PN/-/_}.yaml -g -r /var/lib/${PN/-/\/}/registration.yaml"
}