aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Roy <julien@jroy.ca>2023-11-12 12:38:04 -0500
committerJulien Roy <julien@jroy.ca>2023-11-12 12:38:04 -0500
commita2da2225bdc29583166562a22f87b20f93282116 (patch)
tree9be57fc168e37211ff2dbd9483b0314ab0b07591 /net-im/heisenbridge
parentnet-im/heisenbridge: add 1.14.6 (diff)
downloadguru-a2da2225bdc29583166562a22f87b20f93282116.tar.gz
guru-a2da2225bdc29583166562a22f87b20f93282116.tar.bz2
guru-a2da2225bdc29583166562a22f87b20f93282116.zip
net-im/heisenbridge: drop 1.14.2
Signed-off-by: Julien Roy <julien@jroy.ca>
Diffstat (limited to 'net-im/heisenbridge')
-rw-r--r--net-im/heisenbridge/Manifest1
-rw-r--r--net-im/heisenbridge/heisenbridge-1.14.2.ebuild60
2 files changed, 0 insertions, 61 deletions
diff --git a/net-im/heisenbridge/Manifest b/net-im/heisenbridge/Manifest
index 121dbb1f6..f36f20774 100644
--- a/net-im/heisenbridge/Manifest
+++ b/net-im/heisenbridge/Manifest
@@ -1,3 +1,2 @@
-DIST heisenbridge-1.14.2.gh.tar.gz 67778 BLAKE2B 50b1fbd76f4bec3a75198735b68762453f1c0b54b29e77024920c11f38218ff464faff086f74b3db0d8251b943dcae43a41189582dab7335930fbcd5e6658b2e SHA512 2ba51f3786aea5d0f4e743db4a9196d800103d96ad68cd37009c2e82a3bde27eff8233e473c74aca0ccd1d64521a5e0a99337a3c6e97008e1800ff099be6499f
DIST heisenbridge-1.14.5.gh.tar.gz 68042 BLAKE2B e959762bfe1180b2bd66f71bca04c8eccafd61551a1cb6664acf4d5bf8b835488511178e1bbad2b59c45c38ba913e8ee010e4c6fe390b8ca29715f853de01d16 SHA512 eaee99415796b898caed6f31207081fd70a5d7d437c722bfd3e54924c20cfabff854b0f4a8118320375d29c42f045dc67bd4c5ccaea247bc3e22d71f75f616dc
DIST heisenbridge-1.14.6.gh.tar.gz 68513 BLAKE2B ae0a588c90f4dac36ab04665c67c8e9ca7b16fd66dfa3d5cc577a65eb638b23c69a49771323761bb3a7404200fbd72e221a46a964ab0700acf8d03d55a2fa04e SHA512 6e89679f87b4774c035981360b155590c0bd238e575be5673a447a4b348d85ef9f4c7557d6ebaed27a2e6f7823322a0641959f252e8e3c33559e5b68ccf6f252
diff --git a/net-im/heisenbridge/heisenbridge-1.14.2.ebuild b/net-im/heisenbridge/heisenbridge-1.14.2.ebuild
deleted file mode 100644
index d8c2d4edb..000000000
--- a/net-im/heisenbridge/heisenbridge-1.14.2.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit distutils-r1 systemd
-
-DESCRIPTION="A bouncer-style Matrix IRC bridge"
-HOMEPAGE="https://github.com/hifi/heisenbridge/"
-SRC_URI="https://github.com/hifi/heisenbridge/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- acct-user/${PN}
- dev-python/irc[${PYTHON_USEDEP}]
- dev-python/mautrix[${PYTHON_USEDEP}]
- dev-python/python-socks[${PYTHON_USEDEP}]
- dev-python/ruamel-yaml[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-PATCHES=(
- "${FILESDIR}/heisenbridge-1.14.1-qanotice.patch"
-)
-
-distutils_enable_tests pytest
-
-src_install() {
- distutils-r1_src_install
-
- newinitd "${FILESDIR}/heisenbridge.initd" "${PN}"
- newconfd "${FILESDIR}/heisenbridge.confd" "${PN}"
- systemd_dounit "${FILESDIR}/${PN}.service"
-}
-
-pkg_postinst() {
- einfo
- elog "Before you can use ${PN}, you must configure it correctly"
- elog "The configuration file is located at /etc/conf.d/${PN}"
- elog "Then, you must generate the registration file using the following command"
- elog "If you are using synapse:"
- elog "/usr/bin/python -m ${PN} -c /var/lib/${PN}/registration.yaml --generate https://example.com"
- elog "If you are using Dendrite, Conduit or others:"
- elog "/usr/bin/python -m ${PN} -c /var/lib/${PN}/registration.yaml --generate-compat https://example.com"
- elog "Notice the URL at the end, replace it with your homeserver's URL"
- elog "Then, you must register the bridge with your homeserver"
- elog "Refer to 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
-
-}