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 0684413835A for ; Tue, 10 Nov 2020 12:22:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D3888E0863; Tue, 10 Nov 2020 12:22:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 5B061E0864 for ; Tue, 10 Nov 2020 12:22:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 82C9C340CEF for ; Tue, 10 Nov 2020 12:22:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C493843D for ; Tue, 10 Nov 2020 12:22:14 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1605009615.2df6b0f31a5a13fe8d1f5ec0385951bc18c1bf22.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/getmail/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/getmail/Manifest net-mail/getmail/getmail-6.9.ebuild net-mail/getmail/metadata.xml X-VCS-Directories: net-mail/getmail/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 2df6b0f31a5a13fe8d1f5ec0385951bc18c1bf22 X-VCS-Branch: master Date: Tue, 10 Nov 2020 12:22:14 +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: 4b2def8a-8729-4b17-b974-aba8b3027134 X-Archives-Hash: 827c6f50c7e99eb18b8f09501caf93b3 commit: 2df6b0f31a5a13fe8d1f5ec0385951bc18c1bf22 Author: Remco Rijnders r78 nl> AuthorDate: Sun Aug 23 16:47:40 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Tue Nov 10 12:00:15 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2df6b0f3 net-mail/getmail: New upstream for package, v6.9 getmail was removed in commit f63396228c129fdbac0b2b6bf90ca0dbe64bfb08 on July 27 for being a Py2 only package. This reintroduces this package from a different upstream that is compatible with Python 3. Signed-off-by: Remco Rijnders webconquest.com> Signed-off-by: Joonas Niilola gentoo.org> net-mail/getmail/Manifest | 1 + net-mail/getmail/getmail-6.9.ebuild | 29 +++++++++++++++++++++++++++++ net-mail/getmail/metadata.xml | 12 ++++++++++++ 3 files changed, 42 insertions(+) diff --git a/net-mail/getmail/Manifest b/net-mail/getmail/Manifest new file mode 100644 index 00000000000..3c49f6960c3 --- /dev/null +++ b/net-mail/getmail/Manifest @@ -0,0 +1 @@ +DIST getmail-6.9.tar.gz 184415 BLAKE2B 90c6580391c2d0f038d7011f9873eedce009a50edf44923e78dd6547d86bf00398ac539dedba000925dd4b5f125d7f1ef23e3ca47101d25ad2780f7465bf7e16 SHA512 0ba450135c995adb2ef1b7284dd94db1722f0757cd71ac61482fc2fdb2d04c854d530a5d9e919f276c610a4c7d1227aa26e8aac0f384d0f9149ba5068e3029ce diff --git a/net-mail/getmail/getmail-6.9.ebuild b/net-mail/getmail/getmail-6.9.ebuild new file mode 100644 index 00000000000..7721b8688ee --- /dev/null +++ b/net-mail/getmail/getmail-6.9.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7,8,9} ) +PYTHON_REQ_USE="ssl" + +DISTUTILS_USE_SETUPTOOLS=bdepend +inherit distutils-r1 + +DESCRIPTION="A mail retriever with reliable Maildir and mbox delivery" +HOMEPAGE="http://www.getmail6.org/" +SRC_URI="https://github.com/getmail6/getmail6/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="ssl" + +S="${WORKDIR}/getmail6-${PV}" + +python_prepare_all() { + # Use gentoo version number (including revision) for doc dir and remove COPYING file + sed -i -e "s,'getmail-%s' % __version__,'${PF}'," \ + -e "/docs\/COPYING/d" "${S}"/setup.py || die + + distutils-r1_python_prepare_all +} diff --git a/net-mail/getmail/metadata.xml b/net-mail/getmail/metadata.xml new file mode 100644 index 00000000000..3f821c44382 --- /dev/null +++ b/net-mail/getmail/metadata.xml @@ -0,0 +1,12 @@ + + + + + r+gentoo@r78.nl + Remco Rijnders + + + proxy-maint@gentoo.org + Proxy Maintainers + +