From 961c64e4226b8b04173d2b3521996c9587d2b310 Mon Sep 17 00:00:00 2001 From: Thomas Oettli Date: Thu, 8 Sep 2022 13:46:19 +0200 Subject: [PATCH] remove version specific Gentoo ebuild --- .../pyinotifyd/pyinotifyd-0.0.6.ebuild | 47 ------------------- 1 file changed, 47 deletions(-) delete mode 100644 distribution/gentoo/dev-python/pyinotifyd/pyinotifyd-0.0.6.ebuild diff --git a/distribution/gentoo/dev-python/pyinotifyd/pyinotifyd-0.0.6.ebuild b/distribution/gentoo/dev-python/pyinotifyd/pyinotifyd-0.0.6.ebuild deleted file mode 100644 index 3f6335f..0000000 --- a/distribution/gentoo/dev-python/pyinotifyd/pyinotifyd-0.0.6.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{8..10} ) -DISTUTILS_USE_SETUPTOOLS=rdepend - -SCM="" -if [ "${PV#9999}" != "${PV}" ] ; then - SCM="git-r3" - EGIT_REPO_URI="https://github.com/spacefreak86/${PN}" -fi - -inherit ${SCM} distutils-r1 systemd - -DESCRIPTION="Monitore filesystems events and execute Python methods or Shell commands." -HOMEPAGE="https://github.com/spacefreak86/pymodmilter" -if [ "${PV#9999}" != "${PV}" ] ; then - SRC_URI="" - KEYWORDS="" - # Needed for tests - S="${WORKDIR}/${PN}" - EGIT_CHECKOUT_DIR="${S}" -else - SRC_URI="https://github.com/spacefreak86/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 x86" -fi - -LICENSE="GPL-3" -SLOT="0" - -IUSE="systemd" - -RDEPEND="dev-python/pyinotify[${PYTHON_USEDEP}]" - -python_install_all() { - distutils-r1_python_install_all - - dodir /etc/${PN} - insinto /etc/${PN} - newins ${PN}/misc/config.py.default config.py - - use systemd && systemd_dounit ${PN}/misc/${PN}.service - - newinitd ${PN}/misc/openrc/${PN}.initd ${PN} - newconfd ${PN}/misc/openrc/${PN}.confd ${PN} -}