View Raw Ebuild
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="A RSS plugin for maubot"
HOMEPAGE="https://github.com/maubot/rss"
SRC_URI="https://github.com/maubot/rss/releases/download/v${PV}/xyz.maubot.rss-v${PV}.mbp"
LICENSE="AGPL-3"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="
net-im/maubot
>=dev-python/feedparser-5.1.0
"
RDEPEND="${DEPEND}"
BDEPEND=""
src_unpack() {
# Nothing to unpack, but further stages need a source directory to `cd` into.
mkdir "${S}"
}
src_install() {
insinto /var/lib/maubot/plugins
doins "${DISTDIR}/xyz.maubot.rss-v${PV}.mbp"
einfo "You may need to restart maubot for it to load the new plugin."
}