net-mail/getmail: add 6.19.07

Closes: https://bugs.gentoo.org/952603
Signed-off-by: Zoltan Puskas <zoltan@sinustrom.info>
Part-of: https://github.com/gentoo/gentoo/pull/41938
Closes: https://github.com/gentoo/gentoo/pull/41938
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Zoltan Puskas
2025-05-05 00:23:50 -07:00
committed by Sam James
parent 56acfc1ce3
commit 99313c08b6
2 changed files with 30 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST getmail-6.18.13.gh.tar.gz 213033 BLAKE2B 6dd18670e7c2b231859317dfa28c3ebe0fcff747af4fed1554725ce30176fca678633128db5d80791b97bad9322a5522c70ec828338659ea8df3a5efcf7db35e SHA512 437c057d6e3d499a2e11be82d4e69aafc24d74d42fb1fa51de06fccd33d6e9e1ef7bba20ae5fc070a80dd656f184386083d462f65b05dafcf516d7dc0b2138a0
DIST getmail-6.19.07.gh.tar.gz 217481 BLAKE2B ba0d164389bd32e8d7bff18003606369cd4369b967933335837ab0bff2e53d18a7bcb16b2c36c90d9b01f29ea2594b9a45de7270698bc8caeb863873bdb66868 SHA512 34153ac53cbb9698108eef70957d374d7c02fc5ffd72ba940461ad40bbc582f7992bf7c8060ac33128d01447728bb820536a32f1a3bd97a3ecbb523fb9a974bf

View File

@@ -0,0 +1,29 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_SINGLE_IMPL=1
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{9..13} )
PYTHON_REQ_USE="ssl"
inherit distutils-r1
DESCRIPTION="A mail retriever with reliable Maildir and mbox delivery"
HOMEPAGE="https://www.getmail6.org/ https://github.com/getmail6/getmail6"
SRC_URI="https://github.com/getmail6/getmail6/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
S="${WORKDIR}/getmail6-${PV}"
# getmail is under GPLv2
# getmail-gmail-xoauth-tokens is under Apache 2.0
LICENSE="GPL-2 Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
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
}