summaryrefslogtreecommitdiff
path: root/net-im/maubot
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /net-im/maubot
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'net-im/maubot')
-rw-r--r--net-im/maubot/Manifest2
-rw-r--r--net-im/maubot/files/maubot.initd28
-rw-r--r--net-im/maubot/files/maubot.service12
-rw-r--r--net-im/maubot/maubot-0.5.0-r1.ebuild60
-rw-r--r--net-im/maubot/maubot-0.5.1.ebuild60
-rw-r--r--net-im/maubot/metadata.xml19
6 files changed, 0 insertions, 181 deletions
diff --git a/net-im/maubot/Manifest b/net-im/maubot/Manifest
deleted file mode 100644
index 35accb8491ef..000000000000
--- a/net-im/maubot/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST maubot-0.5.0.tar.gz 1985146 BLAKE2B 2c80a3cf25671139ae9e962cc0544cc9421fffb72e098958e4b00e4801d25152c9741a306b6a71ce1664116a183c6a57e30bb54d6bf71010f13ffad9901cfbd9 SHA512 089f368e59405adfa05b3fe6da5c5fe5a092ae8509b01aa7b6d8940c6a16fb3a66ce715cbb2a757857f088def3f9eb2010c9789d4d2537151bc203c38afb6495
-DIST maubot-0.5.1.tar.gz 1985415 BLAKE2B 99a5eac3504c3d3995d17d9ff265a01caf271824562dbf3f3c0a15b5b46ccee70ab124614697237ef6ff0c2d9f30ae42ab27b67eb06b3a30dd5a5636a2a22a04 SHA512 edc61641bcbe674e9a3eb470fc6e03f7dcd87b792aa1d7c0e2525c1762fb7095e8ecedb4f532383e74e26ffcfa8699d2ca0e5920638e47f999a690b9f47aa80e
diff --git a/net-im/maubot/files/maubot.initd b/net-im/maubot/files/maubot.initd
deleted file mode 100644
index f4b109d18729..000000000000
--- a/net-im/maubot/files/maubot.initd
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-name="maubot daemon"
-description="A plugin-based Matrix bot system"
-module="maubot"
-
-pidfile="/run/${RC_SVCNAME}.pid"
-command="/usr/bin/python"
-command_args="-m ${module} -c /etc/maubot/${module}.yaml"
-command_background=true
-command_user="maubot:maubot"
-
-output_log="/var/log/maubot/maubot_daemon.log"
-error_log="/var/log/maubot/maubot_daemon.log"
-
-depend() {
- need net
-}
-
-start_pre() {
- checkpath -d -m 0755 -o "$command_user" /var/lib/maubot
- checkpath -d -m 0755 -o "$command_user" /var/lib/maubot/plugins
- checkpath -d -m 0755 -o "$command_user" /var/lib/maubot/logs
- checkpath -d -m 0755 -o "$command_user" /var/lib/maubot/trash
- checkpath -f -m 0644 -o "$command_user" "$output_log"
-}
diff --git a/net-im/maubot/files/maubot.service b/net-im/maubot/files/maubot.service
deleted file mode 100644
index 92ed035ab4c8..000000000000
--- a/net-im/maubot/files/maubot.service
+++ /dev/null
@@ -1,12 +0,0 @@
-[Unit]
-Description=A plugin-based Matrix bot system
-After=network.target
-
-[Service]
-User=maubot
-Group=maubot
-Restart=always
-ExecStart=/usr/bin/python -m maubot -c /etc/maubot/maubot.yaml
-
-[Install]
-WantedBy=multi-user.target \ No newline at end of file
diff --git a/net-im/maubot/maubot-0.5.0-r1.ebuild b/net-im/maubot/maubot-0.5.0-r1.ebuild
deleted file mode 100644
index 1eed2b2e5efc..000000000000
--- a/net-im/maubot/maubot-0.5.0-r1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 2022-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYPI_NO_NORMALIZE=1
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{13..14} )
-
-inherit distutils-r1 pypi systemd
-
-DESCRIPTION="Plugin-based Matrix bot system"
-HOMEPAGE="https://github.com/maubot/maubot/"
-
-LICENSE="AGPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
- acct-user/maubot
- dev-python/aiohttp[${PYTHON_USEDEP}]
- dev-python/aiosqlite[${PYTHON_USEDEP}]
- dev-python/attrs[${PYTHON_USEDEP}]
- dev-python/asyncpg[${PYTHON_USEDEP}]
- dev-python/bcrypt[${PYTHON_USEDEP}]
- dev-python/click[${PYTHON_USEDEP}]
- dev-python/colorama[${PYTHON_USEDEP}]
- dev-python/commonmark[${PYTHON_USEDEP}]
- dev-python/jinja2[${PYTHON_USEDEP}]
- dev-python/mautrix[${PYTHON_USEDEP}]
- dev-python/packaging[${PYTHON_USEDEP}]
- dev-python/pycryptodome[${PYTHON_USEDEP}]
- dev-python/python-olm[${PYTHON_USEDEP}]
- dev-python/ruamel-yaml[${PYTHON_USEDEP}]
- dev-python/sqlalchemy[${PYTHON_USEDEP}]
- dev-python/unpaddedbase64[${PYTHON_USEDEP}]
- dev-python/yarl[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-src_install() {
- distutils-r1_src_install
-
- keepdir /var/log/maubot
- fowners root:maubot /var/log/maubot
- fperms 770 /var/log/maubot
- sed -i -e "s/\.\/${PN}.log/\/var\/log\/maubot\/${PN}.log/" "${ED}/usr/example-config.yaml" || die
- sed -i -e "s/\.\/plugins/\/var\/lib\/maubot\/plugins/g" "${ED}/usr/example-config.yaml" || die
- sed -i -e "s/\.\/trash/\/var\/lib\/maubot\/trash/g" "${ED}/usr/example-config.yaml" || die
-
- insinto "/etc/maubot"
- newins "${ED}/usr/example-config.yaml" "${PN}.yaml"
- rm "${ED}/usr/example-config.yaml" || die
-
- newinitd "${FILESDIR}/${PN}.initd" "${PN}"
- systemd_dounit "${FILESDIR}/${PN}.service"
-
- fowners -R root:maubot /etc/maubot
- fperms -R 770 /etc/maubot
-}
diff --git a/net-im/maubot/maubot-0.5.1.ebuild b/net-im/maubot/maubot-0.5.1.ebuild
deleted file mode 100644
index 1eed2b2e5efc..000000000000
--- a/net-im/maubot/maubot-0.5.1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 2022-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYPI_NO_NORMALIZE=1
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{13..14} )
-
-inherit distutils-r1 pypi systemd
-
-DESCRIPTION="Plugin-based Matrix bot system"
-HOMEPAGE="https://github.com/maubot/maubot/"
-
-LICENSE="AGPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
- acct-user/maubot
- dev-python/aiohttp[${PYTHON_USEDEP}]
- dev-python/aiosqlite[${PYTHON_USEDEP}]
- dev-python/attrs[${PYTHON_USEDEP}]
- dev-python/asyncpg[${PYTHON_USEDEP}]
- dev-python/bcrypt[${PYTHON_USEDEP}]
- dev-python/click[${PYTHON_USEDEP}]
- dev-python/colorama[${PYTHON_USEDEP}]
- dev-python/commonmark[${PYTHON_USEDEP}]
- dev-python/jinja2[${PYTHON_USEDEP}]
- dev-python/mautrix[${PYTHON_USEDEP}]
- dev-python/packaging[${PYTHON_USEDEP}]
- dev-python/pycryptodome[${PYTHON_USEDEP}]
- dev-python/python-olm[${PYTHON_USEDEP}]
- dev-python/ruamel-yaml[${PYTHON_USEDEP}]
- dev-python/sqlalchemy[${PYTHON_USEDEP}]
- dev-python/unpaddedbase64[${PYTHON_USEDEP}]
- dev-python/yarl[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-src_install() {
- distutils-r1_src_install
-
- keepdir /var/log/maubot
- fowners root:maubot /var/log/maubot
- fperms 770 /var/log/maubot
- sed -i -e "s/\.\/${PN}.log/\/var\/log\/maubot\/${PN}.log/" "${ED}/usr/example-config.yaml" || die
- sed -i -e "s/\.\/plugins/\/var\/lib\/maubot\/plugins/g" "${ED}/usr/example-config.yaml" || die
- sed -i -e "s/\.\/trash/\/var\/lib\/maubot\/trash/g" "${ED}/usr/example-config.yaml" || die
-
- insinto "/etc/maubot"
- newins "${ED}/usr/example-config.yaml" "${PN}.yaml"
- rm "${ED}/usr/example-config.yaml" || die
-
- newinitd "${FILESDIR}/${PN}.initd" "${PN}"
- systemd_dounit "${FILESDIR}/${PN}.service"
-
- fowners -R root:maubot /etc/maubot
- fperms -R 770 /etc/maubot
-}
diff --git a/net-im/maubot/metadata.xml b/net-im/maubot/metadata.xml
deleted file mode 100644
index 62040c3fb89a..000000000000
--- a/net-im/maubot/metadata.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <name>Julien Roy</name>
- <email>julien@jroy.ca</email>
- </maintainer>
- <upstream>
- <maintainer>
- <name>Tulir Asokan</name>
- <email>tulir@maunium.net</email>
- </maintainer>
- <changelog>https://github.com/maubot/maubot/releases</changelog>
- <doc>https://docs.mau.fi/maubot/</doc>
- <bugs-to>https://github.com/maubot/maubot/issues</bugs-to>
- <remote-id type="github">maubot/maubot</remote-id>
- <remote-id type="pypi">maubot</remote-id>
- </upstream>
-</pkgmetadata>