From ab90f4809f057808325613024cb3ee1dae10b748 Mon Sep 17 00:00:00 2001 From: fabolous005 Date: Mon, 29 Dec 2025 04:06:22 +0100 Subject: [PATCH] add webbump ebuild --- www-servers/webbump/webbump-9999.ebuild | 26 +++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 www-servers/webbump/webbump-9999.ebuild 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 {} + +}