diff --git a/www-servers/webbump/webbump-9999.ebuild b/www-servers/webbump/webbump-9999.ebuild new file mode 100644 index 0000000..9d2021e --- /dev/null +++ b/www-servers/webbump/webbump-9999.ebuild @@ -0,0 +1,26 @@ +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 {} + +}