public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: net-im/mautrix-meta/
  2024-05-14 19:12 [gentoo-commits] repo/proj/guru:master " Julien Roy
@ 2024-05-14 19:07 ` Julien Roy
  0 siblings, 0 replies; 10+ messages in thread
From: Julien Roy @ 2024-05-14 19:07 UTC (permalink / raw
  To: gentoo-commits

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"
+}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: net-im/mautrix-meta/
@ 2024-05-21 21:29 Julien Roy
  2024-05-21 21:33 ` [gentoo-commits] repo/proj/guru:master " Julien Roy
  0 siblings, 1 reply; 10+ messages in thread
From: Julien Roy @ 2024-05-21 21:29 UTC (permalink / raw
  To: gentoo-commits

commit:     b3f372787ab54cff87d452cc77452838dadc8d75
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Tue May 21 21:18:11 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Tue May 21 21:29:22 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b3f37278

net-im/mautrix-meta: drop 0.2.0

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

 net-im/mautrix-meta/Manifest                  |  2 -
 net-im/mautrix-meta/mautrix-meta-0.2.0.ebuild | 63 ---------------------------
 2 files changed, 65 deletions(-)

diff --git a/net-im/mautrix-meta/Manifest b/net-im/mautrix-meta/Manifest
index a3bda6a2d..2f8505fa5 100644
--- a/net-im/mautrix-meta/Manifest
+++ b/net-im/mautrix-meta/Manifest
@@ -1,5 +1,3 @@
-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
 DIST mautrix-meta-0.3.1-deps.tar.xz 28436296 BLAKE2B 044812d4dfc89fd7d13e38595de1322b14dcbca0ae907c4a6a463047f1ed22e83fa0b825857c3eb134b22f49e7c308749bbf60bbf9725a64ae8b1952b08f7482 SHA512 2f753f1e02a9d6225f7370b3d30c06a91127a2e4d4c4e12032a27e9f0136d7590a52a281369d42b1d7b76f6a5b5c2cffbfbe1ea2a96e1c1eb6f145dcbb483fdb

diff --git a/net-im/mautrix-meta/mautrix-meta-0.2.0.ebuild b/net-im/mautrix-meta/mautrix-meta-0.2.0.ebuild
deleted file mode 100644
index 748abe0dc..000000000
--- a/net-im/mautrix-meta/mautrix-meta-0.2.0.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# 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}.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"
-}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: net-im/mautrix-meta/
  2024-05-21 21:33 [gentoo-commits] repo/proj/guru:master " Julien Roy
@ 2024-05-21 21:29 ` Julien Roy
  0 siblings, 0 replies; 10+ messages in thread
From: Julien Roy @ 2024-05-21 21:29 UTC (permalink / raw
  To: gentoo-commits

commit:     40aabc10c82c647cef686837f481f0b34d3ac512
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Tue May 21 21:17:55 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Tue May 21 21:29:22 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=40aabc10

net-im/mautrix-meta: add 0.3.1

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

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

diff --git a/net-im/mautrix-meta/Manifest b/net-im/mautrix-meta/Manifest
index e1e440c83..a3bda6a2d 100644
--- a/net-im/mautrix-meta/Manifest
+++ b/net-im/mautrix-meta/Manifest
@@ -2,3 +2,5 @@ DIST mautrix-meta-0.2.0.gh.tar.gz 198829 BLAKE2B 0dd9f02d5518d8fa3839c3df9388618
 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
+DIST mautrix-meta-0.3.1-deps.tar.xz 28436296 BLAKE2B 044812d4dfc89fd7d13e38595de1322b14dcbca0ae907c4a6a463047f1ed22e83fa0b825857c3eb134b22f49e7c308749bbf60bbf9725a64ae8b1952b08f7482 SHA512 2f753f1e02a9d6225f7370b3d30c06a91127a2e4d4c4e12032a27e9f0136d7590a52a281369d42b1d7b76f6a5b5c2cffbfbe1ea2a96e1c1eb6f145dcbb483fdb
+DIST mautrix-meta-0.3.1.gh.tar.gz 203444 BLAKE2B 294171599408b3f5f40a244d952b7f06678f52c015bb94ce2d4dad0568642fac399467bd86b81036c200b47a74a389614bd41b74e560d92e4de2b77ca58acd5a SHA512 e0141b9adc9361236d24c94a66fdbbfcd10789f7a8f7d7a582f709c2e716eb72b7d4564c5dc58e2a5c82b37709ad2eb3a45e782aca8d74a430d2a15c0ee6db32

diff --git a/net-im/mautrix-meta/mautrix-meta-0.3.1.ebuild b/net-im/mautrix-meta/mautrix-meta-0.3.1.ebuild
new file mode 100644
index 000000000..3eae17ffe
--- /dev/null
+++ b/net-im/mautrix-meta/mautrix-meta-0.3.1.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"
+}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: net-im/mautrix-meta/
  2024-05-21 21:29 [gentoo-commits] repo/proj/guru:dev commit in: net-im/mautrix-meta/ Julien Roy
@ 2024-05-21 21:33 ` Julien Roy
  0 siblings, 0 replies; 10+ messages in thread
From: Julien Roy @ 2024-05-21 21:33 UTC (permalink / raw
  To: gentoo-commits

commit:     b3f372787ab54cff87d452cc77452838dadc8d75
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Tue May 21 21:18:11 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Tue May 21 21:29:22 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b3f37278

net-im/mautrix-meta: drop 0.2.0

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

 net-im/mautrix-meta/Manifest                  |  2 -
 net-im/mautrix-meta/mautrix-meta-0.2.0.ebuild | 63 ---------------------------
 2 files changed, 65 deletions(-)

diff --git a/net-im/mautrix-meta/Manifest b/net-im/mautrix-meta/Manifest
index a3bda6a2d..2f8505fa5 100644
--- a/net-im/mautrix-meta/Manifest
+++ b/net-im/mautrix-meta/Manifest
@@ -1,5 +1,3 @@
-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
 DIST mautrix-meta-0.3.1-deps.tar.xz 28436296 BLAKE2B 044812d4dfc89fd7d13e38595de1322b14dcbca0ae907c4a6a463047f1ed22e83fa0b825857c3eb134b22f49e7c308749bbf60bbf9725a64ae8b1952b08f7482 SHA512 2f753f1e02a9d6225f7370b3d30c06a91127a2e4d4c4e12032a27e9f0136d7590a52a281369d42b1d7b76f6a5b5c2cffbfbe1ea2a96e1c1eb6f145dcbb483fdb

diff --git a/net-im/mautrix-meta/mautrix-meta-0.2.0.ebuild b/net-im/mautrix-meta/mautrix-meta-0.2.0.ebuild
deleted file mode 100644
index 748abe0dc..000000000
--- a/net-im/mautrix-meta/mautrix-meta-0.2.0.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# 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}.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"
-}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: net-im/mautrix-meta/
@ 2024-11-16 20:20 Julien Roy
  0 siblings, 0 replies; 10+ messages in thread
From: Julien Roy @ 2024-11-16 20:20 UTC (permalink / raw
  To: gentoo-commits

commit:     49a4860dd17361389a0d5fa62a514d7aca8a42cf
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sat Nov 16 18:11:56 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sat Nov 16 20:19:56 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=49a4860d

net-im/mautrix-meta: drop 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 deletions(-)

diff --git a/net-im/mautrix-meta/Manifest b/net-im/mautrix-meta/Manifest
index 10028eb54..8a0c5403a 100644
--- a/net-im/mautrix-meta/Manifest
+++ b/net-im/mautrix-meta/Manifest
@@ -1,5 +1,3 @@
-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
 DIST mautrix-meta-0.3.1-deps.tar.xz 28436296 BLAKE2B 044812d4dfc89fd7d13e38595de1322b14dcbca0ae907c4a6a463047f1ed22e83fa0b825857c3eb134b22f49e7c308749bbf60bbf9725a64ae8b1952b08f7482 SHA512 2f753f1e02a9d6225f7370b3d30c06a91127a2e4d4c4e12032a27e9f0136d7590a52a281369d42b1d7b76f6a5b5c2cffbfbe1ea2a96e1c1eb6f145dcbb483fdb
 DIST mautrix-meta-0.3.1.gh.tar.gz 203444 BLAKE2B 294171599408b3f5f40a244d952b7f06678f52c015bb94ce2d4dad0568642fac399467bd86b81036c200b47a74a389614bd41b74e560d92e4de2b77ca58acd5a SHA512 e0141b9adc9361236d24c94a66fdbbfcd10789f7a8f7d7a582f709c2e716eb72b7d4564c5dc58e2a5c82b37709ad2eb3a45e782aca8d74a430d2a15c0ee6db32
 DIST mautrix-meta-0.4.1-deps.tar.xz 84314124 BLAKE2B c76b56d663e8c0a54bdc08251dbb5d6ff03eefb7e38fa3f299baff8729bfa5c57bfa0e59f9eb7c3b47727e7940d99721ffec6a7689a9eb65f2405e32fb488c30 SHA512 77f36de178421de676d12536c0a00a19628b44333b1d01758731a0c1f2a79373aa6a32879d7bbcb42a38f85bc2bbcdd32956abadfcd561a41b0fe205100cfb15

diff --git a/net-im/mautrix-meta/mautrix-meta-0.3.0.ebuild b/net-im/mautrix-meta/mautrix-meta-0.3.0.ebuild
deleted file mode 100644
index 3eae17ffe..000000000
--- a/net-im/mautrix-meta/mautrix-meta-0.3.0.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# 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"
-}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: net-im/mautrix-meta/
@ 2024-11-16 20:20 Julien Roy
  0 siblings, 0 replies; 10+ messages in thread
From: Julien Roy @ 2024-11-16 20:20 UTC (permalink / raw
  To: gentoo-commits

commit:     4e45db3e26b164e8cbaa15dec4d89de7081a5c65
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sat Nov 16 18:07:55 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sat Nov 16 20:19:55 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4e45db3e

net-im/mautrix-meta: add 0.4.1

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

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

diff --git a/net-im/mautrix-meta/Manifest b/net-im/mautrix-meta/Manifest
index 2f8505fa5..10028eb54 100644
--- a/net-im/mautrix-meta/Manifest
+++ b/net-im/mautrix-meta/Manifest
@@ -2,3 +2,5 @@ DIST mautrix-meta-0.3.0-deps.tar.xz 32145360 BLAKE2B 0c3c5a987d602067b9431637589
 DIST mautrix-meta-0.3.0.gh.tar.gz 202451 BLAKE2B cf3a7cd2bd27d8a497c42fd960993d1df7714500abc67b9e30d2853e71070262238272ddbec513f056560a57e3e6028183b90a862139bbb6407028c482c2569b SHA512 099c105ad8834f585215d0d9e3db16c1fe6d6064fe480b944e895527e44c069623f7667db8e84f90004df72dd49bdd1e1359b46e7987814e7c41a0b344ec3a67
 DIST mautrix-meta-0.3.1-deps.tar.xz 28436296 BLAKE2B 044812d4dfc89fd7d13e38595de1322b14dcbca0ae907c4a6a463047f1ed22e83fa0b825857c3eb134b22f49e7c308749bbf60bbf9725a64ae8b1952b08f7482 SHA512 2f753f1e02a9d6225f7370b3d30c06a91127a2e4d4c4e12032a27e9f0136d7590a52a281369d42b1d7b76f6a5b5c2cffbfbe1ea2a96e1c1eb6f145dcbb483fdb
 DIST mautrix-meta-0.3.1.gh.tar.gz 203444 BLAKE2B 294171599408b3f5f40a244d952b7f06678f52c015bb94ce2d4dad0568642fac399467bd86b81036c200b47a74a389614bd41b74e560d92e4de2b77ca58acd5a SHA512 e0141b9adc9361236d24c94a66fdbbfcd10789f7a8f7d7a582f709c2e716eb72b7d4564c5dc58e2a5c82b37709ad2eb3a45e782aca8d74a430d2a15c0ee6db32
+DIST mautrix-meta-0.4.1-deps.tar.xz 84314124 BLAKE2B c76b56d663e8c0a54bdc08251dbb5d6ff03eefb7e38fa3f299baff8729bfa5c57bfa0e59f9eb7c3b47727e7940d99721ffec6a7689a9eb65f2405e32fb488c30 SHA512 77f36de178421de676d12536c0a00a19628b44333b1d01758731a0c1f2a79373aa6a32879d7bbcb42a38f85bc2bbcdd32956abadfcd561a41b0fe205100cfb15
+DIST mautrix-meta-0.4.1.gh.tar.gz 176127 BLAKE2B ba6a593922608d056be5726c2fcdbfbb08f43f2aeec8f034d4d5dd1c0b8cbda3a86bcba64ca0f01fd8da40febd9db4f70fe6fedeb165a1ef8441ca00125e7a2c SHA512 bb44887072da9f0768e883e1500f98d1726387d295d0cb02f960321ff0c9c1ca1274ead114414b9991d172acf3dd88be93fccdb46be17b89809a529fe1f35b04

diff --git a/net-im/mautrix-meta/mautrix-meta-0.4.1.ebuild b/net-im/mautrix-meta/mautrix-meta-0.4.1.ebuild
new file mode 100644
index 000000000..8b30d50b0
--- /dev/null
+++ b/net-im/mautrix-meta/mautrix-meta-0.4.1.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 "${S}"/cmd/"${PN}"
+}
+
+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/-/\\\/}/" "${S}/pkg/connector/example-config.yaml" || die
+
+	insinto "/etc/mautrix"
+	newins "${S}/pkg/connector/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"
+}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: net-im/mautrix-meta/
@ 2024-11-18 12:41 Julien Roy
  0 siblings, 0 replies; 10+ messages in thread
From: Julien Roy @ 2024-11-18 12:41 UTC (permalink / raw
  To: gentoo-commits

commit:     ab65972a1848934c5782dd9ea554261a13aec2f7
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sun Nov 17 04:59:23 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Mon Nov 18 12:40:21 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ab65972a

net-im/mautrix-meta: add 0.4.2

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

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

diff --git a/net-im/mautrix-meta/Manifest b/net-im/mautrix-meta/Manifest
index 8a0c5403a..fe0e3ca44 100644
--- a/net-im/mautrix-meta/Manifest
+++ b/net-im/mautrix-meta/Manifest
@@ -2,3 +2,5 @@ DIST mautrix-meta-0.3.1-deps.tar.xz 28436296 BLAKE2B 044812d4dfc89fd7d13e38595de
 DIST mautrix-meta-0.3.1.gh.tar.gz 203444 BLAKE2B 294171599408b3f5f40a244d952b7f06678f52c015bb94ce2d4dad0568642fac399467bd86b81036c200b47a74a389614bd41b74e560d92e4de2b77ca58acd5a SHA512 e0141b9adc9361236d24c94a66fdbbfcd10789f7a8f7d7a582f709c2e716eb72b7d4564c5dc58e2a5c82b37709ad2eb3a45e782aca8d74a430d2a15c0ee6db32
 DIST mautrix-meta-0.4.1-deps.tar.xz 84314124 BLAKE2B c76b56d663e8c0a54bdc08251dbb5d6ff03eefb7e38fa3f299baff8729bfa5c57bfa0e59f9eb7c3b47727e7940d99721ffec6a7689a9eb65f2405e32fb488c30 SHA512 77f36de178421de676d12536c0a00a19628b44333b1d01758731a0c1f2a79373aa6a32879d7bbcb42a38f85bc2bbcdd32956abadfcd561a41b0fe205100cfb15
 DIST mautrix-meta-0.4.1.gh.tar.gz 176127 BLAKE2B ba6a593922608d056be5726c2fcdbfbb08f43f2aeec8f034d4d5dd1c0b8cbda3a86bcba64ca0f01fd8da40febd9db4f70fe6fedeb165a1ef8441ca00125e7a2c SHA512 bb44887072da9f0768e883e1500f98d1726387d295d0cb02f960321ff0c9c1ca1274ead114414b9991d172acf3dd88be93fccdb46be17b89809a529fe1f35b04
+DIST mautrix-meta-0.4.2-deps.tar.xz 84320060 BLAKE2B cdef9d1cadd349b9d3460bd64613eeb41856b4cc4b39385220dc8309e728bed3af874f7a56056f633a0ef7a3bd486da16613fb34fb3c3370ddc82151a60cb796 SHA512 9274e4cf43fe78b8407a7ded8c1ec78f99723264fc49d202018519e17ed64244118a323b9d60dbbdd7042a7b3c5158c7200fba9543c982a3eea6648bf24780d8
+DIST mautrix-meta-0.4.2.gh.tar.gz 176291 BLAKE2B 179b7b7e5fb03b79890b96ad90ec809a80526f043b5ecb40ef1758c44c4aee3401ad5d64d9ec3e975269d5d60496e344067313362fe9740eaa9a5e5facf2a0d8 SHA512 6bc501ac7b5d62e427d1976fba5b3b8a262efdda0fc3859bb0fdb292d2e4ca926989c412b14359391ac9ce2fa1725b90c3a70aa57790eba81038c64386679b16

diff --git a/net-im/mautrix-meta/mautrix-meta-0.4.2.ebuild b/net-im/mautrix-meta/mautrix-meta-0.4.2.ebuild
new file mode 100644
index 000000000..8b30d50b0
--- /dev/null
+++ b/net-im/mautrix-meta/mautrix-meta-0.4.2.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 "${S}"/cmd/"${PN}"
+}
+
+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/-/\\\/}/" "${S}/pkg/connector/example-config.yaml" || die
+
+	insinto "/etc/mautrix"
+	newins "${S}/pkg/connector/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"
+}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: net-im/mautrix-meta/
@ 2024-11-18 12:41 Julien Roy
  0 siblings, 0 replies; 10+ messages in thread
From: Julien Roy @ 2024-11-18 12:41 UTC (permalink / raw
  To: gentoo-commits

commit:     e1289407336d7002baf6bfc3bd09db617ac01906
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sun Nov 17 04:59:55 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Mon Nov 18 12:40:22 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e1289407

net-im/mautrix-meta: drop 0.4.1

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

 net-im/mautrix-meta/Manifest                  |  2 -
 net-im/mautrix-meta/mautrix-meta-0.4.1.ebuild | 63 ---------------------------
 2 files changed, 65 deletions(-)

diff --git a/net-im/mautrix-meta/Manifest b/net-im/mautrix-meta/Manifest
index fe0e3ca44..a082a8be3 100644
--- a/net-im/mautrix-meta/Manifest
+++ b/net-im/mautrix-meta/Manifest
@@ -1,6 +1,4 @@
 DIST mautrix-meta-0.3.1-deps.tar.xz 28436296 BLAKE2B 044812d4dfc89fd7d13e38595de1322b14dcbca0ae907c4a6a463047f1ed22e83fa0b825857c3eb134b22f49e7c308749bbf60bbf9725a64ae8b1952b08f7482 SHA512 2f753f1e02a9d6225f7370b3d30c06a91127a2e4d4c4e12032a27e9f0136d7590a52a281369d42b1d7b76f6a5b5c2cffbfbe1ea2a96e1c1eb6f145dcbb483fdb
 DIST mautrix-meta-0.3.1.gh.tar.gz 203444 BLAKE2B 294171599408b3f5f40a244d952b7f06678f52c015bb94ce2d4dad0568642fac399467bd86b81036c200b47a74a389614bd41b74e560d92e4de2b77ca58acd5a SHA512 e0141b9adc9361236d24c94a66fdbbfcd10789f7a8f7d7a582f709c2e716eb72b7d4564c5dc58e2a5c82b37709ad2eb3a45e782aca8d74a430d2a15c0ee6db32
-DIST mautrix-meta-0.4.1-deps.tar.xz 84314124 BLAKE2B c76b56d663e8c0a54bdc08251dbb5d6ff03eefb7e38fa3f299baff8729bfa5c57bfa0e59f9eb7c3b47727e7940d99721ffec6a7689a9eb65f2405e32fb488c30 SHA512 77f36de178421de676d12536c0a00a19628b44333b1d01758731a0c1f2a79373aa6a32879d7bbcb42a38f85bc2bbcdd32956abadfcd561a41b0fe205100cfb15
-DIST mautrix-meta-0.4.1.gh.tar.gz 176127 BLAKE2B ba6a593922608d056be5726c2fcdbfbb08f43f2aeec8f034d4d5dd1c0b8cbda3a86bcba64ca0f01fd8da40febd9db4f70fe6fedeb165a1ef8441ca00125e7a2c SHA512 bb44887072da9f0768e883e1500f98d1726387d295d0cb02f960321ff0c9c1ca1274ead114414b9991d172acf3dd88be93fccdb46be17b89809a529fe1f35b04
 DIST mautrix-meta-0.4.2-deps.tar.xz 84320060 BLAKE2B cdef9d1cadd349b9d3460bd64613eeb41856b4cc4b39385220dc8309e728bed3af874f7a56056f633a0ef7a3bd486da16613fb34fb3c3370ddc82151a60cb796 SHA512 9274e4cf43fe78b8407a7ded8c1ec78f99723264fc49d202018519e17ed64244118a323b9d60dbbdd7042a7b3c5158c7200fba9543c982a3eea6648bf24780d8
 DIST mautrix-meta-0.4.2.gh.tar.gz 176291 BLAKE2B 179b7b7e5fb03b79890b96ad90ec809a80526f043b5ecb40ef1758c44c4aee3401ad5d64d9ec3e975269d5d60496e344067313362fe9740eaa9a5e5facf2a0d8 SHA512 6bc501ac7b5d62e427d1976fba5b3b8a262efdda0fc3859bb0fdb292d2e4ca926989c412b14359391ac9ce2fa1725b90c3a70aa57790eba81038c64386679b16

diff --git a/net-im/mautrix-meta/mautrix-meta-0.4.1.ebuild b/net-im/mautrix-meta/mautrix-meta-0.4.1.ebuild
deleted file mode 100644
index 8b30d50b0..000000000
--- a/net-im/mautrix-meta/mautrix-meta-0.4.1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# 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 "${S}"/cmd/"${PN}"
-}
-
-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/-/\\\/}/" "${S}/pkg/connector/example-config.yaml" || die
-
-	insinto "/etc/mautrix"
-	newins "${S}/pkg/connector/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"
-}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: net-im/mautrix-meta/
@ 2025-01-11 22:19 Julien Roy
  0 siblings, 0 replies; 10+ messages in thread
From: Julien Roy @ 2025-01-11 22:19 UTC (permalink / raw
  To: gentoo-commits

commit:     a41c537859fceb360fc5736dd070829dc4e91ea4
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sat Jan 11 15:47:11 2025 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sat Jan 11 22:19:30 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a41c5378

net-im/mautrix-meta: add 0.4.3

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

 net-im/mautrix-meta/Manifest                  |  2 +
 net-im/mautrix-meta/mautrix-meta-0.4.3.ebuild | 62 +++++++++++++++++++++++++++
 2 files changed, 64 insertions(+)

diff --git a/net-im/mautrix-meta/Manifest b/net-im/mautrix-meta/Manifest
index a082a8be3..a5875c244 100644
--- a/net-im/mautrix-meta/Manifest
+++ b/net-im/mautrix-meta/Manifest
@@ -2,3 +2,5 @@ DIST mautrix-meta-0.3.1-deps.tar.xz 28436296 BLAKE2B 044812d4dfc89fd7d13e38595de
 DIST mautrix-meta-0.3.1.gh.tar.gz 203444 BLAKE2B 294171599408b3f5f40a244d952b7f06678f52c015bb94ce2d4dad0568642fac399467bd86b81036c200b47a74a389614bd41b74e560d92e4de2b77ca58acd5a SHA512 e0141b9adc9361236d24c94a66fdbbfcd10789f7a8f7d7a582f709c2e716eb72b7d4564c5dc58e2a5c82b37709ad2eb3a45e782aca8d74a430d2a15c0ee6db32
 DIST mautrix-meta-0.4.2-deps.tar.xz 84320060 BLAKE2B cdef9d1cadd349b9d3460bd64613eeb41856b4cc4b39385220dc8309e728bed3af874f7a56056f633a0ef7a3bd486da16613fb34fb3c3370ddc82151a60cb796 SHA512 9274e4cf43fe78b8407a7ded8c1ec78f99723264fc49d202018519e17ed64244118a323b9d60dbbdd7042a7b3c5158c7200fba9543c982a3eea6648bf24780d8
 DIST mautrix-meta-0.4.2.gh.tar.gz 176291 BLAKE2B 179b7b7e5fb03b79890b96ad90ec809a80526f043b5ecb40ef1758c44c4aee3401ad5d64d9ec3e975269d5d60496e344067313362fe9740eaa9a5e5facf2a0d8 SHA512 6bc501ac7b5d62e427d1976fba5b3b8a262efdda0fc3859bb0fdb292d2e4ca926989c412b14359391ac9ce2fa1725b90c3a70aa57790eba81038c64386679b16
+DIST mautrix-meta-0.4.3-deps.tar.xz 41473124 BLAKE2B 178e908533eb24d8dca12b6ffe966d16214585bb9513c9353ff8860544c0e0bef350906109ad25791c95710286c59ca70d7e8935ed8e845685f96dc979018bb9 SHA512 23240b894d3a1a5257838128f2fef166a61c7dc7f5b8eb67c45285148c368b65db0b17dea6ae4d4cc090e7a177c34625d7e263cb599f8a0bf14d72f0d25ae7e6
+DIST mautrix-meta-0.4.3.gh.tar.gz 176961 BLAKE2B 328d0944ac1478669bab0bd8ba2788cdf02a1ad6bede207c1cfea7d7bcd2ce4d087a0f0493c231787edbd09cfd3bbb78dd146b80a3759d43d2751b00f5f555e0 SHA512 9f8f2a9b62d47e638361d7bc273061017bf6ca126adbbe0cb54a04abdbce59504419acd98f5698669d1253ebba5145aff3918e6ff2dd69b99619ee813b687939

diff --git a/net-im/mautrix-meta/mautrix-meta-0.4.3.ebuild b/net-im/mautrix-meta/mautrix-meta-0.4.3.ebuild
new file mode 100644
index 000000000..dcb2e2acc
--- /dev/null
+++ b/net-im/mautrix-meta/mautrix-meta-0.4.3.ebuild
@@ -0,0 +1,62 @@
+# Copyright 2022-2025 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 "${S}"/cmd/"${PN}"
+}
+
+src_install() {
+	dobin mautrix-meta
+
+	keepdir /var/log/mautrix/meta
+	fowners -R root:mautrix /var/log/mautrix
+	fperms -R 770 /var/log/mautrix
+
+	newinitd "${FILESDIR}/${PN}.initd" "${PN}"
+	systemd_dounit "${FILESDIR}/${PN}.service"
+
+	keepdir /etc/mautrix
+	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 "To generate the configuration file, use the following command:"
+	elog "mautrix-signal -e"
+	elog "Then move the config.yaml file to /etc/mautrix/${PN/-/_}.yaml"
+	elog "Configure the file according to your homeserver"
+	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"
+}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: net-im/mautrix-meta/
@ 2025-01-11 22:19 Julien Roy
  0 siblings, 0 replies; 10+ messages in thread
From: Julien Roy @ 2025-01-11 22:19 UTC (permalink / raw
  To: gentoo-commits

commit:     c7ef3e8b08e3e97ca9bda30c33502537d1dc85e0
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sat Jan 11 15:47:42 2025 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sat Jan 11 22:19:31 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c7ef3e8b

net-im/mautrix-meta: drop 0.3.1

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

 net-im/mautrix-meta/Manifest                  |  2 -
 net-im/mautrix-meta/mautrix-meta-0.3.1.ebuild | 63 ---------------------------
 2 files changed, 65 deletions(-)

diff --git a/net-im/mautrix-meta/Manifest b/net-im/mautrix-meta/Manifest
index a5875c244..f3bf2eb43 100644
--- a/net-im/mautrix-meta/Manifest
+++ b/net-im/mautrix-meta/Manifest
@@ -1,5 +1,3 @@
-DIST mautrix-meta-0.3.1-deps.tar.xz 28436296 BLAKE2B 044812d4dfc89fd7d13e38595de1322b14dcbca0ae907c4a6a463047f1ed22e83fa0b825857c3eb134b22f49e7c308749bbf60bbf9725a64ae8b1952b08f7482 SHA512 2f753f1e02a9d6225f7370b3d30c06a91127a2e4d4c4e12032a27e9f0136d7590a52a281369d42b1d7b76f6a5b5c2cffbfbe1ea2a96e1c1eb6f145dcbb483fdb
-DIST mautrix-meta-0.3.1.gh.tar.gz 203444 BLAKE2B 294171599408b3f5f40a244d952b7f06678f52c015bb94ce2d4dad0568642fac399467bd86b81036c200b47a74a389614bd41b74e560d92e4de2b77ca58acd5a SHA512 e0141b9adc9361236d24c94a66fdbbfcd10789f7a8f7d7a582f709c2e716eb72b7d4564c5dc58e2a5c82b37709ad2eb3a45e782aca8d74a430d2a15c0ee6db32
 DIST mautrix-meta-0.4.2-deps.tar.xz 84320060 BLAKE2B cdef9d1cadd349b9d3460bd64613eeb41856b4cc4b39385220dc8309e728bed3af874f7a56056f633a0ef7a3bd486da16613fb34fb3c3370ddc82151a60cb796 SHA512 9274e4cf43fe78b8407a7ded8c1ec78f99723264fc49d202018519e17ed64244118a323b9d60dbbdd7042a7b3c5158c7200fba9543c982a3eea6648bf24780d8
 DIST mautrix-meta-0.4.2.gh.tar.gz 176291 BLAKE2B 179b7b7e5fb03b79890b96ad90ec809a80526f043b5ecb40ef1758c44c4aee3401ad5d64d9ec3e975269d5d60496e344067313362fe9740eaa9a5e5facf2a0d8 SHA512 6bc501ac7b5d62e427d1976fba5b3b8a262efdda0fc3859bb0fdb292d2e4ca926989c412b14359391ac9ce2fa1725b90c3a70aa57790eba81038c64386679b16
 DIST mautrix-meta-0.4.3-deps.tar.xz 41473124 BLAKE2B 178e908533eb24d8dca12b6ffe966d16214585bb9513c9353ff8860544c0e0bef350906109ad25791c95710286c59ca70d7e8935ed8e845685f96dc979018bb9 SHA512 23240b894d3a1a5257838128f2fef166a61c7dc7f5b8eb67c45285148c368b65db0b17dea6ae4d4cc090e7a177c34625d7e263cb599f8a0bf14d72f0d25ae7e6

diff --git a/net-im/mautrix-meta/mautrix-meta-0.3.1.ebuild b/net-im/mautrix-meta/mautrix-meta-0.3.1.ebuild
deleted file mode 100644
index 3eae17ffe..000000000
--- a/net-im/mautrix-meta/mautrix-meta-0.3.1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# 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"
-}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2025-01-11 22:19 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-21 21:29 [gentoo-commits] repo/proj/guru:dev commit in: net-im/mautrix-meta/ Julien Roy
2024-05-21 21:33 ` [gentoo-commits] repo/proj/guru:master " Julien Roy
  -- strict thread matches above, loose matches on Subject: below --
2025-01-11 22:19 [gentoo-commits] repo/proj/guru:dev " Julien Roy
2025-01-11 22:19 Julien Roy
2024-11-18 12:41 Julien Roy
2024-11-18 12:41 Julien Roy
2024-11-16 20:20 Julien Roy
2024-11-16 20:20 Julien Roy
2024-05-21 21:33 [gentoo-commits] repo/proj/guru:master " Julien Roy
2024-05-21 21:29 ` [gentoo-commits] repo/proj/guru:dev " Julien Roy
2024-05-14 19:12 [gentoo-commits] repo/proj/guru:master " Julien Roy
2024-05-14 19:07 ` [gentoo-commits] repo/proj/guru:dev " Julien Roy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox