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-client/alot/
Date: Mon, 31 May 2021 20:53:39
Message-Id: 1622494402.2835ec641fba77020b1c33e8bcb1208ec6e210e4.mgorny@gentoo
1 commit: 2835ec641fba77020b1c33e8bcb1208ec6e210e4
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 31 20:44:17 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 31 20:53:22 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2835ec64
7
8 mail-client/alot: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 mail-client/alot/Manifest | 1 -
13 mail-client/alot/alot-0.9.ebuild | 68 ----------------------------------------
14 2 files changed, 69 deletions(-)
15
16 diff --git a/mail-client/alot/Manifest b/mail-client/alot/Manifest
17 index d32104566bf..7e7d59a08da 100644
18 --- a/mail-client/alot/Manifest
19 +++ b/mail-client/alot/Manifest
20 @@ -1,2 +1 @@
21 DIST alot-0.9.1.tar.gz 228645 BLAKE2B 7a44542513bc6d90df43cb21daf2ba103cbbae4dd81b44eaf935d764ba11d6c5640774e72728725eca83a777dcf3583bebaa57c9061191499f74ed89d4c11b4f SHA512 ac65c742d5bfb4827482c881ec2eb95b9215e9a5c49d7001421d62ffb1f38c7792dbbf94c0f16578da70b5ce15ba7a28cea0c1bbd34080f8132c80f4a0a2199b
22 -DIST alot-0.9.tar.gz 224932 BLAKE2B 6063b9974ec54b51521ec52db41519bd9f16cc8da611b1a2da7de3f7581a924962a79ca8193ad0bb36633141182c047f32c5ab58132c78e1ec036e4da684181c SHA512 e630ea18702c570630deb10347c52e03aecb297bc1f76ce60318eeb8725274b12eb408cbceb69c8035b1ec9ea778f19a035f48070606bc6540b68a4bc5591860
23
24 diff --git a/mail-client/alot/alot-0.9.ebuild b/mail-client/alot/alot-0.9.ebuild
25 deleted file mode 100644
26 index 4f029a062b9..00000000000
27 --- a/mail-client/alot/alot-0.9.ebuild
28 +++ /dev/null
29 @@ -1,68 +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_USE_SETUPTOOLS=rdepend
36 -PYTHON_COMPAT=( python3_7 )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Experimental terminal UI for net-mail/notmuch written in Python"
41 -HOMEPAGE="https://github.com/pazz/alot"
42 -SRC_URI="https://github.com/pazz/alot/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="GPL-3"
45 -SLOT="0"
46 -KEYWORDS="~amd64 ~x86"
47 -IUSE="doc test"
48 -RESTRICT="!test? ( test )"
49 -
50 -RDEPEND="
51 - app-crypt/gpgme[python,${PYTHON_USEDEP}]
52 - dev-python/configobj[${PYTHON_USEDEP}]
53 - dev-python/python-magic[${PYTHON_USEDEP}]
54 - dev-python/urwid[${PYTHON_USEDEP}]
55 - dev-python/urwidtrees[${PYTHON_USEDEP}]
56 - >=dev-python/twisted-18.4[${PYTHON_USEDEP}]
57 - net-mail/mailbase
58 - net-mail/notmuch[crypt,python]
59 - "
60 -DEPEND="
61 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
62 - test? (
63 - ${RDEPEND}
64 - dev-python/mock[${PYTHON_USEDEP}]
65 - )
66 - "
67 -
68 -PATCHES=(
69 - "${FILESDIR}/${PV}-0001-remove-non-working-test.patch"
70 - "${FILESDIR}/${PV}-0002-update-reference-to-envelope-body.patch"
71 - )
72 -
73 -distutils_enable_tests setup.py
74 -
75 -python_compile_all() {
76 - emake -C docs man
77 - use doc && emake -C docs html
78 -}
79 -
80 -python_install_all() {
81 - use doc && local HTML_DOCS=( docs/build/html/. )
82 - doman docs/build/man/*
83 - distutils-r1_python_install_all
84 -
85 - insinto /usr/share/alot
86 - doins -r extra
87 -}
88 -
89 -pkg_postinst() {
90 - if [[ -z ${REPLACING_VERSIONS} ]] ; then
91 - elog ""
92 - elog "If you are new to Alot you may want to take a look at"
93 - elog "the user manual:"
94 - elog " https://alot.readthedocs.io/en/latest/"
95 - elog ""
96 - fi
97 -}