From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D4830138350 for ; Sat, 28 Mar 2020 16:19:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1CAC4E0B20; Sat, 28 Mar 2020 16:19:30 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EF0FFE0B20 for ; Sat, 28 Mar 2020 16:19:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8249434FA00 for ; Sat, 28 Mar 2020 16:19:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 975E8162 for ; Sat, 28 Mar 2020 16:19:26 +0000 (UTC) From: "Marc Schiffbauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marc Schiffbauer" Message-ID: <1585412340.0fa3fcf4a6601fb1719db169aea4783391c608e1.mschiff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/automx2/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/automx2/automx2-2020.1.ebuild X-VCS-Directories: net-mail/automx2/ X-VCS-Committer: mschiff X-VCS-Committer-Name: Marc Schiffbauer X-VCS-Revision: 0fa3fcf4a6601fb1719db169aea4783391c608e1 X-VCS-Branch: master Date: Sat, 28 Mar 2020 16:19:26 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d528307e-f3a5-4f82-bc74-4b1e3e6356f3 X-Archives-Hash: 864f77c13a1c694907917a1c8328c713 commit: 0fa3fcf4a6601fb1719db169aea4783391c608e1 Author: Marc Schiffbauer gentoo org> AuthorDate: Sat Mar 28 16:19:00 2020 +0000 Commit: Marc Schiffbauer gentoo org> CommitDate: Sat Mar 28 16:19:00 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fa3fcf4 net-mail/automx2: remove old version Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Marc Schiffbauer gentoo.org> net-mail/automx2/automx2-2020.1.ebuild | 43 ---------------------------------- 1 file changed, 43 deletions(-) diff --git a/net-mail/automx2/automx2-2020.1.ebuild b/net-mail/automx2/automx2-2020.1.ebuild deleted file mode 100644 index cce12b5bc74..00000000000 --- a/net-mail/automx2/automx2-2020.1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8} ) - -inherit distutils-r1 - -DESCRIPTION="Email client autoconfiguration service" -HOMEPAGE="https://automx.org/" -SRC_URI="https://gitlab.com/automx/automx2/-/archive/${PV}/${P}.tar.bz2" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="~amd64" -IUSE="doc" - -BDEPEND="acct-user/automx2 - >=dev-python/flask-migrate-2.5.2[${PYTHON_USEDEP}]" -RDEPEND="${BDEPEND}" - -python_prepare_all() { - sed -i -e "/('scripts'/d" setup.py || die - distutils-r1_python_prepare_all -} - -python_test() { - export AUTOMX2_CONF="tests/unittest.conf" - ${EPYTHON} -m unittest discover tests/ || die -} - -python_install_all() { - if use doc; then - DOCS="*.adoc doc/*.adoc contrib/*sample.conf" - HTML_DOCS="doc/*.html doc/*.svg" - fi - sed -e "s/@EPYTHON@/${EPYTHON}/" "${FILESDIR}/init" | newinitd - "${PN}" - newconfd "${FILESDIR}/confd" "${PN}" - insinto /etc - newins "${FILESDIR}/conf" "${PN}.conf" - distutils-r1_python_install_all -}