commit: cd3a137710718f95ab76e7dd9bf61311b8e8c0ec
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 8 19:12:55 2025 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 8 19:12:55 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd3a1377
mail-filter/afew: drop 3.0.1
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
mail-filter/afew/afew-3.0.1.ebuild | 61 --------------------------------------
1 file changed, 61 deletions(-)
diff --git a/mail-filter/afew/afew-3.0.1.ebuild
b/mail-filter/afew/afew-3.0.1.ebuild
deleted file mode 100644
index 7113ba509d4a..000000000000
--- a/mail-filter/afew/afew-3.0.1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_SINGLE_IMPL=1
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Initial tagging script for Notmuch"
-HOMEPAGE="https://github.com/afewmail/afew"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc"
-
-RDEPEND="
- $(python_gen_cond_dep '
- dev-python/chardet[${PYTHON_USEDEP}]
- dev-python/dkimpy[${PYTHON_USEDEP}]
- net-mail/notmuch[python,${PYTHON_USEDEP}]
- ')"
-BDEPEND="
- $(python_gen_cond_dep '
- dev-python/sphinx[${PYTHON_USEDEP}]
- ')
- test? (
- $(python_gen_cond_dep '
- dev-python/freezegun[${PYTHON_USEDEP}]
- ')
- )"
-
-DOCS=( "README.rst" )
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
- sed -r \
- -e "s/^([[:space:]]+)use_scm_version=.*,$/\1version='${PV}',/" \
- -e "/^([[:space:]]+)setup_requires=.*,$/d" \
- -i setup.py || die
- distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
- sphinx-build -b man docs docs/build/man || die
-
- if use doc ; then
- sphinx-build -b html docs docs/build/html || die
- fi
-}
-
-python_install_all() {
- doman docs/build/man/*
- dodoc afew/defaults/afew.config
- use doc && HTML_DOCS=( docs/build/html/. )
- einstalldocs
-}