commit:     64ecee3c0d0b40c381bb028f3c71c301bec54bab
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Tue May 14 18:18:38 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Tue May 14 18:18:38 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=64ecee3c

net-im/mautrix-meta: add 0.3.0

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 net-im/mautrix-meta/Manifest                  |  2 +
 net-im/mautrix-meta/mautrix-meta-0.3.0.ebuild | 63 +++++++++++++++++++++++++++
 2 files changed, 65 insertions(+)

diff --git a/net-im/mautrix-meta/Manifest b/net-im/mautrix-meta/Manifest
index b2e47a5e79..e1e440c83a 100644
--- a/net-im/mautrix-meta/Manifest
+++ b/net-im/mautrix-meta/Manifest
@@ -1,2 +1,4 @@
 DIST mautrix-meta-0.2.0.gh.tar.gz 198829 BLAKE2B 
0dd9f02d5518d8fa3839c3df9388618a4051b41501fbc1b99ec5c0d213ab8482b0b909d9d7f572471429e441ab12d3f545d4a6ba5b67d3ae885e67b3685a35ae
 SHA512 
76831c21a81c0b8e9ba9df144e938a647ac264e3dd2584df8190cd0bf9e875d8384b46c04e79486d923dc73aea909f585a0879ed7446009d1524e80490c9c7e0
 DIST mautrix-meta-0.2.0.tar.xz 28251872 BLAKE2B 
bca146d5da3093742fa8a6cb218251c75ba213c1dac48a9a8535971a38baf43c854f90882f40b0797029785bb40785d305d48feeab7cea6d985dfbf86614f00b
 SHA512 
a5c267b49127ddc0052e2f823ed784951d5347567f31ec284516c8abab72a2f209069cfd378385075f86fd87416608d7d9dccb80247d7a44f46f4a037cc74b7e
+DIST mautrix-meta-0.3.0-deps.tar.xz 32145360 BLAKE2B 
0c3c5a987d602067b9431637589d4d448580a3ce21d179f051c9ad45acb24f1f54d9e12d096f7223f3591b6335bc8e103302eb647f34b9cd98e7d5c225aa9c6e
 SHA512 
cb6048c33b19fcfeb0dad78510a44bea3b907726b20e62280f66339f9d57168b259fb1f075a49d27d9e973683b0cb737d8a5439d56d336304be104e24be809a0
+DIST mautrix-meta-0.3.0.gh.tar.gz 202451 BLAKE2B 
cf3a7cd2bd27d8a497c42fd960993d1df7714500abc67b9e30d2853e71070262238272ddbec513f056560a57e3e6028183b90a862139bbb6407028c482c2569b
 SHA512 
099c105ad8834f585215d0d9e3db16c1fe6d6064fe480b944e895527e44c069623f7667db8e84f90004df72dd49bdd1e1359b46e7987814e7c41a0b344ec3a67

diff --git a/net-im/mautrix-meta/mautrix-meta-0.3.0.ebuild 
b/net-im/mautrix-meta/mautrix-meta-0.3.0.ebuild
new file mode 100644
index 0000000000..3eae17ffed
--- /dev/null
+++ b/net-im/mautrix-meta/mautrix-meta-0.3.0.ebuild
@@ -0,0 +1,63 @@
+# 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-Facebook puppeting bridge"
+HOMEPAGE="https://github.com/mautrix/meta";
+SRC_URI="https://github.com/mautrix/meta/archive/v${PV}.tar.gz -> 
${P}.gh.tar.gz
+       https://jroy.ca/dist/${P}-deps.tar.xz
+"
+S="${WORKDIR}/meta-${PV}"
+
+LICENSE="AGPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+       acct-user/${PN}
+       dev-libs/olm
+"
+DEPEND="${RDEPEND}"
+
+src_compile() {
+       ego build
+}
+
+src_install() {
+       dobin mautrix-meta
+
+       keepdir /var/log/mautrix/meta
+       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"
+}

Reply via email to