diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2018-06-07 01:54:19 +0200 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2018-06-07 01:57:09 +0200 |
commit | 412dc5e108a2c360eed8593c52d061d18cd063de (patch) | |
tree | b85aa12e35495baf5179972f3927c9f9b3489e34 /net-mail | |
parent | sys-kernel/gentoo-sources: Linux patch 4.4.136 (diff) | |
download | gentoo-412dc5e108a2c360eed8593c52d061d18cd063de.tar.gz gentoo-412dc5e108a2c360eed8593c52d061d18cd063de.tar.bz2 gentoo-412dc5e108a2c360eed8593c52d061d18cd063de.zip |
net-mail/getmail: Bump to v5.6
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/getmail/Manifest | 1 | ||||
-rw-r--r-- | net-mail/getmail/getmail-5.6.ebuild | 24 |
2 files changed, 25 insertions, 0 deletions
diff --git a/net-mail/getmail/Manifest b/net-mail/getmail/Manifest index 7e64031e120a..b589d7fac67e 100644 --- a/net-mail/getmail/Manifest +++ b/net-mail/getmail/Manifest @@ -1 +1,2 @@ DIST getmail-5.4.tar.gz 194884 BLAKE2B f6a64b0bb4f5d89e75187fe162ad13e6e3601fd3338e6d9ef30b2100d8ab59328df1446a6771ec992b18e46e75341fff9308af9a994e4e61f41ab89cec20cf4c SHA512 6557cc46df1d31116f9d28cda1232737c01a568e6ada44edb14cdec30a42160966e1e69f42c46855ce139c3b70d77747324adda8abff3dd772a54a79015b0050 +DIST getmail-5.6.tar.gz 197360 BLAKE2B 0833933c4dd4b0b7962070dd3d6738b2c7336f359ca9e40e6febbeaffc6cea6942e4271de6cd3053447af94cc7fd189a25beb99c81d2d1221f1c478807dd7c33 SHA512 7ee34f214ab4d98d1b34e46abba61561133f27edf1f64bb9c5d5f671e6944724d1773234bd8ab626607b732cc54fd335cbfcb69fdff8f4d8fcdb33108b25bafd diff --git a/net-mail/getmail/getmail-5.6.ebuild b/net-mail/getmail/getmail-5.6.ebuild new file mode 100644 index 000000000000..5e4129b2b2eb --- /dev/null +++ b/net-mail/getmail/getmail-5.6.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python2_7 ) +PYTHON_REQ_USE="ssl?" + +inherit distutils-r1 + +DESCRIPTION="A mail retriever with reliable Maildir and mbox delivery" +HOMEPAGE="http://pyropus.ca/software/getmail/" +SRC_URI="http://pyropus.ca/software/getmail/old-versions/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~ppc-macos ~x86-macos ~x64-solaris" +IUSE="ssl" + +python_prepare_all() { + sed -i -e "s,'getmail-%s' % __version__,'${PF}'," \ + -e "/docs\/COPYING/d" "${S}"/setup.py || die + + distutils-r1_python_prepare_all +} |