summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAuthor: Ralph Seichter <github@seichter.de>2024-07-23 00:16:05 +0200
committerJoonas Niilola <juippis@gentoo.org>2024-08-10 10:09:02 +0300
commit69f6f4bd278d6a5734564b68ab89b5ae330045cf (patch)
treeff5b167cca7c8655a00e01e44abcbc31d7f3b4f7 /net-mail/automx2
parentnet-mail/automx2: add 2024.2 (diff)
downloadgentoo-69f6f4bd278d6a5734564b68ab89b5ae330045cf.tar.gz
gentoo-69f6f4bd278d6a5734564b68ab89b5ae330045cf.tar.bz2
gentoo-69f6f4bd278d6a5734564b68ab89b5ae330045cf.zip
net-mail/automx2: drop 2022.1
Stable build version 2022.1-r1 is available. Signed-off-by: Ralph Seichter <github@seichter.de> Closes: https://github.com/gentoo/gentoo/pull/37449 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'net-mail/automx2')
-rw-r--r--net-mail/automx2/automx2-2022.1.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/net-mail/automx2/automx2-2022.1.ebuild b/net-mail/automx2/automx2-2022.1.ebuild
deleted file mode 100644
index 9d243e7fddd4..000000000000
--- a/net-mail/automx2/automx2-2022.1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Email client autoconfiguration service"
-HOMEPAGE="https://automx.org/"
-SRC_URI="https://github.com/rseichter/automx2/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64"
-
-RDEPEND="acct-user/automx2
- dev-python/flask[${PYTHON_USEDEP}]
- dev-python/flask-migrate[${PYTHON_USEDEP}]
- dev-python/flask-sqlalchemy[${PYTHON_USEDEP}]
- dev-python/ldap3[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests unittest
-
-python_prepare_all() {
- sed -i -e "/('scripts'/d" setup.py || die
- distutils-r1_python_prepare_all
-}
-
-python_test() {
- local -x AUTOMX2_CONF="tests/unittest.conf"
- eunittest tests/
-}
-
-python_install_all() {
- local DOCS=( "${S}"/docs/*.adoc "${S}"/contrib/*sample.conf )
- local HTML_DOCS=( "${S}"/docs/*.{html,svg} )
- newconfd "${FILESDIR}/confd" "${PN}"
- newinitd "${FILESDIR}/init-r1" "${PN}"
- insinto /etc
- newins "${FILESDIR}/conf" "${PN}.conf"
- distutils-r1_python_install_all
-}