febuild/www-servers/webbump/webbump-9999.ebuild
2025-12-29 04:06:22 +01:00

27 lines
510 B
Bash

EAPI=8
PYTHON_COMPAT=( python3_12 python3_13 )
inherit git-r3 python-single-r1
DESCRIPTION="Webhook reactor"
HOMEPAGE="https://git.engler-labs.root64.de/fabolous005/webbump"
EGIT_REPO_URI="https://git.engler-labs.root64.de/fabolous005/webbump.git"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND=""
src_install() {
insinto /var/lib/webbump
doins main.py
insinto /etc/webbump
doins -r conf/*
find "${ED}/etc/webbump/" -type f -exec chmod 0755 {} +
}