Gentoo Archives: gentoo-commits

From: Marc Schiffbauer <mschiff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/automx2/
Date: Sat, 28 Mar 2020 16:19:30
Message-Id: 1585412340.0fa3fcf4a6601fb1719db169aea4783391c608e1.mschiff@gentoo
1 commit: 0fa3fcf4a6601fb1719db169aea4783391c608e1
2 Author: Marc Schiffbauer <mschiff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 28 16:19:00 2020 +0000
4 Commit: Marc Schiffbauer <mschiff <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 28 16:19:00 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fa3fcf4
7
8 net-mail/automx2: remove old version
9
10 Package-Manager: Portage-2.3.89, Repoman-2.3.20
11 Signed-off-by: Marc Schiffbauer <mschiff <AT> gentoo.org>
12
13 net-mail/automx2/automx2-2020.1.ebuild | 43 ----------------------------------
14 1 file changed, 43 deletions(-)
15
16 diff --git a/net-mail/automx2/automx2-2020.1.ebuild b/net-mail/automx2/automx2-2020.1.ebuild
17 deleted file mode 100644
18 index cce12b5bc74..00000000000
19 --- a/net-mail/automx2/automx2-2020.1.ebuild
20 +++ /dev/null
21 @@ -1,43 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -PYTHON_COMPAT=( python3_{7,8} )
28 -
29 -inherit distutils-r1
30 -
31 -DESCRIPTION="Email client autoconfiguration service"
32 -HOMEPAGE="https://automx.org/"
33 -SRC_URI="https://gitlab.com/automx/automx2/-/archive/${PV}/${P}.tar.bz2"
34 -
35 -LICENSE="GPL-3+"
36 -SLOT="0"
37 -KEYWORDS="~amd64"
38 -IUSE="doc"
39 -
40 -BDEPEND="acct-user/automx2
41 - >=dev-python/flask-migrate-2.5.2[${PYTHON_USEDEP}]"
42 -RDEPEND="${BDEPEND}"
43 -
44 -python_prepare_all() {
45 - sed -i -e "/('scripts'/d" setup.py || die
46 - distutils-r1_python_prepare_all
47 -}
48 -
49 -python_test() {
50 - export AUTOMX2_CONF="tests/unittest.conf"
51 - ${EPYTHON} -m unittest discover tests/ || die
52 -}
53 -
54 -python_install_all() {
55 - if use doc; then
56 - DOCS="*.adoc doc/*.adoc contrib/*sample.conf"
57 - HTML_DOCS="doc/*.html doc/*.svg"
58 - fi
59 - sed -e "s/@EPYTHON@/${EPYTHON}/" "${FILESDIR}/init" | newinitd - "${PN}"
60 - newconfd "${FILESDIR}/confd" "${PN}"
61 - insinto /etc
62 - newins "${FILESDIR}/conf" "${PN}.conf"
63 - distutils-r1_python_install_all
64 -}