From: "Julien Roy" <julien@jroy.ca> To: gentoo-commits@lists.gentoo.org Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-im/mautrix-meta/ Date: Sat, 11 Jan 2025 22:19:46 +0000 (UTC) [thread overview] Message-ID: <1736633971.c7ef3e8b08e3e97ca9bda30c33502537d1dc85e0.julien@gentoo> (raw) 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" -}
WARNING: multiple messages have this Message-ID (diff)
From: "Julien Roy" <julien@jroy.ca> To: gentoo-commits@lists.gentoo.org Subject: [gentoo-commits] repo/proj/guru:master commit in: net-im/mautrix-meta/ Date: Sat, 11 Jan 2025 23:38:10 +0000 (UTC) [thread overview] Message-ID: <1736633971.c7ef3e8b08e3e97ca9bda30c33502537d1dc85e0.julien@gentoo> (raw) Message-ID: <20250111233810.PS-enu-O3wu5UoFKIwg5h31JmdXXynzr6mHdBZ16mCE@z> (raw) 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" -}
next reply other threads:[~2025-01-11 22:19 UTC|newest] Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top 2025-01-11 22:19 Julien Roy [this message] 2025-01-11 23:38 ` [gentoo-commits] repo/proj/guru:master commit in: net-im/mautrix-meta/ Julien Roy -- strict thread matches above, loose matches on Subject: below -- 2025-01-11 22:19 [gentoo-commits] repo/proj/guru:dev " 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-21 21:29 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
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=1736633971.c7ef3e8b08e3e97ca9bda30c33502537d1dc85e0.julien@gentoo \ --to=julien@jroy.ca \ --cc=gentoo-commits@lists.gentoo.org \ --cc=gentoo-dev@lists.gentoo.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox