Gentoo Archives: gentoo-commits

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