Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/automx2/
Date: Fri, 08 Apr 2022 15:50:44
Message-Id: 1649433037.0f3f4677ea3539db470bd1341674ef0713cd6f96.juippis@gentoo
1 commit: 0f3f4677ea3539db470bd1341674ef0713cd6f96
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 8 15:49:59 2022 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 8 15:50:37 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f3f4677
7
8 net-mail/automx2: drop 2021.5
9
10 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
11
12 net-mail/automx2/Manifest | 1 -
13 net-mail/automx2/automx2-2021.5.ebuild | 46 ----------------------------------
14 2 files changed, 47 deletions(-)
15
16 diff --git a/net-mail/automx2/Manifest b/net-mail/automx2/Manifest
17 index f4869375382d..0373ecf3b803 100644
18 --- a/net-mail/automx2/Manifest
19 +++ b/net-mail/automx2/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST automx2-2021.5.tar.gz 172317 BLAKE2B 501dea5561d780fed538676e41dac46da01bae24388f477afa66e1b27e8a271e48bd6bddc8f9a4e0f5e7b3eb9f58fca9a9b2adaf78de2f7cd2feacfc8f85c9a4 SHA512 00281f32df6b117690d9780b8a587907518e2485dc37450765c3f35acb92a27da73ecd4e35cd05e0a5307d179ba3edaa1dec80900a059c975589ae904456c565
22 DIST automx2-2021.6.tar.gz 175423 BLAKE2B 26c83f0932b7a6b13b2c0f476a90bf1a3f134ab33e07b16a13034495c51b5d6ee744d7735352c7833c4a5a5c441dba003b68d4b2de95cb4e75aa7d0b726917d6 SHA512 0a2bc51f1ba70bf4e27f234e6a25f97eae5e4a841b93ade7baa2a87ffa485185220bd70779018d5e438ab04f4f6e9b9605be780efd1b803dd7133520fd4ef360
23 DIST automx2-2022.0.tar.gz 183324 BLAKE2B 1fda53019cc20979806157db3b740d5bd0c41d545745471188ca6d200dee490c84abb1e353694f5fe45e75983ca8449258ad7fd75e085d10523fd8b0e6310e87 SHA512 2fde481c3b5459a8a0441edf0f8a664615734859a299924207edd35a2e254e2900d88c41e6ec6e7379effbe9c4b7ab7db39ffa81bfc8691a3de5643bbd20d4be
24
25 diff --git a/net-mail/automx2/automx2-2021.5.ebuild b/net-mail/automx2/automx2-2021.5.ebuild
26 deleted file mode 100644
27 index a7e9a55b9381..000000000000
28 --- a/net-mail/automx2/automx2-2021.5.ebuild
29 +++ /dev/null
30 @@ -1,46 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( python3_{7,8,9} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Email client autoconfiguration service"
41 -HOMEPAGE="https://automx.org/"
42 -SRC_URI="https://github.com/rseichter/automx2/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="GPL-3+"
45 -SLOT="0"
46 -KEYWORDS="amd64"
47 -
48 -BDEPEND="acct-user/automx2"
49 -RDEPEND="
50 - dev-python/flask[${PYTHON_USEDEP}]
51 - dev-python/flask-migrate[${PYTHON_USEDEP}]
52 - dev-python/flask-sqlalchemy[${PYTHON_USEDEP}]
53 - dev-python/ldap3[${PYTHON_USEDEP}]
54 -"
55 -
56 -distutils_enable_tests unittest
57 -
58 -python_prepare_all() {
59 - sed -i -e "/('scripts'/d" setup.py || die
60 - distutils-r1_python_prepare_all
61 -}
62 -
63 -python_test() {
64 - export AUTOMX2_CONF="tests/unittest.conf"
65 - ${EPYTHON} -m unittest discover tests/ || die "Tests failed with ${EPYTHON}"
66 -}
67 -
68 -python_install_all() {
69 - local DOCS=( ${S}/docs/*.adoc ${S}/contrib/*sample.conf )
70 - local HTML_DOCS=( ${S}/docs/*.{html,svg} )
71 - newconfd "${FILESDIR}/confd" "${PN}"
72 - newinitd "${FILESDIR}/init-r1" "${PN}"
73 - insinto /etc
74 - newins "${FILESDIR}/conf" "${PN}.conf"
75 - distutils-r1_python_install_all
76 -}