diff options
author | Sam James <sam@gentoo.org> | 2023-07-02 19:38:04 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-07-02 19:57:24 +0100 |
commit | f65c46b3047702e8ea69f5ea0910b2cbab4fe9bc (patch) | |
tree | e1b2d29822f00b1fe3234cc68ce8efe125c34ae6 /net-analyzer/fail2ban | |
parent | net-analyzer/fail2ban: disable py3.9 (diff) | |
download | gentoo-f65c46b3047702e8ea69f5ea0910b2cbab4fe9bc.tar.gz gentoo-f65c46b3047702e8ea69f5ea0910b2cbab4fe9bc.tar.bz2 gentoo-f65c46b3047702e8ea69f5ea0910b2cbab4fe9bc.zip |
net-analyzer/fail2ban: cleanup live
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-analyzer/fail2ban')
-rw-r--r-- | net-analyzer/fail2ban/fail2ban-9999.ebuild | 27 |
1 files changed, 7 insertions, 20 deletions
diff --git a/net-analyzer/fail2ban/fail2ban-9999.ebuild b/net-analyzer/fail2ban/fail2ban-9999.ebuild index 4112631ff0a1..780f4c65a50a 100644 --- a/net-analyzer/fail2ban/fail2ban-9999.ebuild +++ b/net-analyzer/fail2ban/fail2ban-9999.ebuild @@ -4,6 +4,7 @@ EAPI=8 DISTUTILS_SINGLE_IMPL=1 +DISUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{10..11} ) inherit bash-completion-r1 distutils-r1 systemd tmpfiles @@ -29,10 +30,8 @@ RDEPEND=" selinux? ( sec-policy/selinux-fail2ban ) systemd? ( $(python_gen_cond_dep ' - || ( - dev-python/python-systemd[${PYTHON_USEDEP}] - sys-apps/systemd[python(-),${PYTHON_USEDEP}] - )' 'python*' ) + dev-python/python-systemd[${PYTHON_USEDEP}] + ') ) " @@ -50,15 +49,9 @@ python_prepare_all() { sed -i -e 's|/var\(/run/fail2ban\)|\1|g' {} + || die } -python_compile() { - ./fail2ban-2to3 || die - distutils-r1_python_compile -} - python_test() { bin/fail2ban-testcases \ --no-network \ - --no-gamin \ --verbosity=4 || die "Tests failed with ${EPYTHON}" # Workaround for bug #790251 @@ -100,7 +93,7 @@ pkg_preinst() { pkg_postinst() { tmpfiles_process ${PN}-tmpfiles.conf - if [[ ${previous_less_than_0_7} = 0 ]] ; then + if [[ ${previous_less_than_0_7} == 0 ]] ; then elog elog "Configuration files are now in /etc/fail2ban/" elog "You probably have to manually update your configuration" @@ -113,10 +106,9 @@ pkg_postinst() { elog "http://www.fail2ban.org/wiki/index.php/HOWTO_Upgrade_from_0.6_to_0.8" fi - if ! has_version dev-python/pyinotify && ! has_version app-admin/gamin ; then - elog "For most jail.conf configurations, it is recommended you install either" - elog "dev-python/pyinotify or app-admin/gamin (in order of preference)" - elog "to control how log file modifications are detected" + if ! has_version dev-python/pyinotify ; then + elog "For most jail.conf configurations, it is recommended you install" + elog "dev-python/pyinotify to control how log file modifications are detected" fi if ! has_version dev-lang/python[sqlite] ; then @@ -125,9 +117,4 @@ pkg_postinst() { elog "persistent database feature, then you should set" elog "dbfile = :memory: in fail2ban.conf accordingly." fi - - if has_version sys-apps/systemd[-python] ; then - elog "If you want to track logins through sys-apps/systemd's" - elog "journal backend, then reinstall sys-apps/systemd with USE=python" - fi } |