diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-05-31 22:44:32 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-05-31 22:53:23 +0200 |
commit | 4a1478c58601673a410fe09f42841107aa164cff (patch) | |
tree | 735d93d8e4c2e3bb81d228c912fa147001d7e209 /mail-filter | |
parent | mail-client/alot: Remove old (diff) | |
download | gentoo-4a1478c58601673a410fe09f42841107aa164cff.tar.gz gentoo-4a1478c58601673a410fe09f42841107aa164cff.tar.bz2 gentoo-4a1478c58601673a410fe09f42841107aa164cff.zip |
mail-filter/afew: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'mail-filter')
-rw-r--r-- | mail-filter/afew/Manifest | 1 | ||||
-rw-r--r-- | mail-filter/afew/afew-3.0.0.ebuild | 50 |
2 files changed, 0 insertions, 51 deletions
diff --git a/mail-filter/afew/Manifest b/mail-filter/afew/Manifest index 80deed73ca07..666bd28556dc 100644 --- a/mail-filter/afew/Manifest +++ b/mail-filter/afew/Manifest @@ -1,2 +1 @@ -DIST afew-3.0.0.tar.gz 36525 BLAKE2B fd9b676ad00d9f6d989d8901f8885a7861d753ab96e4a768f2a1118b72893517fc3a8122a7a63d2e26659bf1afc2467bc7503f279b8037c65da9c250c18b152b SHA512 8d1947d547bde7fdc9ec2fc8fb212165fecc1cd4bc37c2dda60133e5ffe31dee1393ad0a92e4f0e2c85863a01f7ae252555e88868fa8ba5dece8380080f0e36c DIST afew-3.0.1.tar.gz 40092 BLAKE2B 9ce125ec2359f7cf4630b9602b3068327adc06a699d325c90bc9b545df9ce7f3a62623cc733dfec55ee3e51523e4512ebec04e7186470fc56bb1589a7141cbc9 SHA512 1a76ecc78ed9fb8598be74c48a1d51c78db20df08b27c04c24779aaba01aa457c776457a647c54a5e92f0fda364a86810957a95c0d3f686e77e083d2103b1bf1 diff --git a/mail-filter/afew/afew-3.0.0.ebuild b/mail-filter/afew/afew-3.0.0.ebuild deleted file mode 100644 index b78e2e89172a..000000000000 --- a/mail-filter/afew/afew-3.0.0.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_SINGLE_IMPL=1 -PYTHON_COMPAT=( python3_7 ) - -inherit distutils-r1 - -DESCRIPTION="Initial tagging script for Notmuch" -HOMEPAGE="https://github.com/afewmail/afew" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="ISC" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="doc" - -RDEPEND=" - $(python_gen_cond_dep ' - dev-python/chardet[${PYTHON_MULTI_USEDEP}] - dev-python/dkimpy[${PYTHON_MULTI_USEDEP}] - net-mail/notmuch[python,${PYTHON_MULTI_USEDEP}] - ')" -DEPEND=" - $(python_gen_cond_dep ' - dev-python/sphinx[${PYTHON_MULTI_USEDEP}] - ')" - -DOCS=( "README.rst" ) - -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() { - esetup.py build_sphinx -b man --build-dir=docs/build - use doc && esetup.py build_sphinx -b html --build-dir=docs/build -} - -python_install_all() { - doman docs/build/man/* - dodoc afew/defaults/afew.config - use doc && local HTML_DOCS=( docs/build/html/. ) -} |