Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: mail-filter/afew/
Date: Mon, 31 May 2021 20:53:41
Message-Id: 1622494403.4a1478c58601673a410fe09f42841107aa164cff.mgorny@gentoo
1 commit: 4a1478c58601673a410fe09f42841107aa164cff
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 31 20:44:32 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 31 20:53:23 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a1478c5
7
8 mail-filter/afew: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 mail-filter/afew/Manifest | 1 -
13 mail-filter/afew/afew-3.0.0.ebuild | 50 --------------------------------------
14 2 files changed, 51 deletions(-)
15
16 diff --git a/mail-filter/afew/Manifest b/mail-filter/afew/Manifest
17 index 80deed73ca0..666bd28556d 100644
18 --- a/mail-filter/afew/Manifest
19 +++ b/mail-filter/afew/Manifest
20 @@ -1,2 +1 @@
21 -DIST afew-3.0.0.tar.gz 36525 BLAKE2B fd9b676ad00d9f6d989d8901f8885a7861d753ab96e4a768f2a1118b72893517fc3a8122a7a63d2e26659bf1afc2467bc7503f279b8037c65da9c250c18b152b SHA512 8d1947d547bde7fdc9ec2fc8fb212165fecc1cd4bc37c2dda60133e5ffe31dee1393ad0a92e4f0e2c85863a01f7ae252555e88868fa8ba5dece8380080f0e36c
22 DIST afew-3.0.1.tar.gz 40092 BLAKE2B 9ce125ec2359f7cf4630b9602b3068327adc06a699d325c90bc9b545df9ce7f3a62623cc733dfec55ee3e51523e4512ebec04e7186470fc56bb1589a7141cbc9 SHA512 1a76ecc78ed9fb8598be74c48a1d51c78db20df08b27c04c24779aaba01aa457c776457a647c54a5e92f0fda364a86810957a95c0d3f686e77e083d2103b1bf1
23
24 diff --git a/mail-filter/afew/afew-3.0.0.ebuild b/mail-filter/afew/afew-3.0.0.ebuild
25 deleted file mode 100644
26 index b78e2e89172..00000000000
27 --- a/mail-filter/afew/afew-3.0.0.ebuild
28 +++ /dev/null
29 @@ -1,50 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -DISTUTILS_SINGLE_IMPL=1
36 -PYTHON_COMPAT=( python3_7 )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Initial tagging script for Notmuch"
41 -HOMEPAGE="https://github.com/afewmail/afew"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 -
44 -LICENSE="ISC"
45 -SLOT="0"
46 -KEYWORDS="amd64 x86"
47 -IUSE="doc"
48 -
49 -RDEPEND="
50 - $(python_gen_cond_dep '
51 - dev-python/chardet[${PYTHON_MULTI_USEDEP}]
52 - dev-python/dkimpy[${PYTHON_MULTI_USEDEP}]
53 - net-mail/notmuch[python,${PYTHON_MULTI_USEDEP}]
54 - ')"
55 -DEPEND="
56 - $(python_gen_cond_dep '
57 - dev-python/sphinx[${PYTHON_MULTI_USEDEP}]
58 - ')"
59 -
60 -DOCS=( "README.rst" )
61 -
62 -python_prepare_all() {
63 - sed -r \
64 - -e "s/^([[:space:]]+)use_scm_version=.*,$/\1version='${PV}',/" \
65 - -e "/^([[:space:]]+)setup_requires=.*,$/d" \
66 - -i setup.py || die
67 - distutils-r1_python_prepare_all
68 -}
69 -
70 -python_compile_all() {
71 - esetup.py build_sphinx -b man --build-dir=docs/build
72 - use doc && esetup.py build_sphinx -b html --build-dir=docs/build
73 -}
74 -
75 -python_install_all() {
76 - doman docs/build/man/*
77 - dodoc afew/defaults/afew.config
78 - use doc && local HTML_DOCS=( docs/build/html/. )
79 -}