Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/getmail/
Date: Fri, 26 Aug 2016 02:37:23
Message-Id: 1472178982.9dd458afe982ea209ec8ada6867f330f901d1d98.radhermit@gentoo
1 commit: 9dd458afe982ea209ec8ada6867f330f901d1d98
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 26 02:36:22 2016 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 26 02:36:22 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dd458af
7
8 net-mail/getmail: version bump to 4.50.0
9
10 net-mail/getmail/Manifest | 1 +
11 net-mail/getmail/getmail-4.50.0.ebuild | 25 +++++++++++++++++++++++++
12 2 files changed, 26 insertions(+)
13
14 diff --git a/net-mail/getmail/Manifest b/net-mail/getmail/Manifest
15 index c4ffc8f..ea32b57 100644
16 --- a/net-mail/getmail/Manifest
17 +++ b/net-mail/getmail/Manifest
18 @@ -1,2 +1,3 @@
19 DIST getmail-4.48.0.tar.gz 190129 SHA256 49441e92eed577127331caf9b97f2ddaea14e97e8a49259efd9184a766a9b94c SHA512 fb37dfb6f9edc770f7186b8c3ae67642181b1b025cccf31434814aec4d5f78f021ce73fa5493b7b82b0f2d5a70e58d389cbfc408475547d43b82a98e4645d090 WHIRLPOOL 218a5d1d1c3719dcd64f8ee8947553cbe4b391df97ab8b90a418c846189c592a887abfc05d387534efc2ec20b6b9b71656547705650979458718adb953d99c04
20 DIST getmail-4.49.0.tar.gz 150719 SHA256 1c6c4a3ebd17c1b15dc940a5888b0ceca4d135c1c20629ebe274ba025aff1ed4 SHA512 5cd53aecf54dee6e7d70aa3a1dab9c1e01e681280424c03ce4360faa2653386da2e4b14e7876e8ab46fee92f62e5036ab794850ab85f66c7c26b747bf8becc34 WHIRLPOOL d1cf995505dd889ff942af10047f7773923bd934792dd699ecb071209416edfe33fcfe8d82f894046e1c9576d0cc9d0cb6099e742a2432dc5b9af8f66573e505
21 +DIST getmail-4.50.0.tar.gz 150892 SHA256 fcbc77b9a14a2798a50725af9488d292bc97e983997947df1b9dcd9a0e288bc1 SHA512 f8484fe907e82bd96abc6fea9e824a51608450921020d18522c6da00ddc5f0c1a2f9be0a534d1451830174d33e526e956a1bba9b7e9f2c987f765547848317c9 WHIRLPOOL e33b67495165457ded9f071b72f935d7b721303610354db18ecfd1f8bf4956b173410ea6f47c9835c57c96536033dbcb05537d0316d742d51440834977473a9c
22
23 diff --git a/net-mail/getmail/getmail-4.50.0.ebuild b/net-mail/getmail/getmail-4.50.0.ebuild
24 new file mode 100644
25 index 00000000..8abf74f
26 --- /dev/null
27 +++ b/net-mail/getmail/getmail-4.50.0.ebuild
28 @@ -0,0 +1,25 @@
29 +# Copyright 1999-2016 Gentoo Foundation
30 +# Distributed under the terms of the GNU General Public License v2
31 +# $Id$
32 +
33 +EAPI=6
34 +PYTHON_COMPAT=( python2_7 )
35 +PYTHON_REQ_USE="ssl?"
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="A POP3 mail retriever with reliable Maildir and mbox delivery"
40 +HOMEPAGE="http://pyropus.ca/software/getmail/"
41 +SRC_URI="http://pyropus.ca/software/getmail/old-versions/${P}.tar.gz"
42 +
43 +LICENSE="GPL-2"
44 +SLOT="4"
45 +KEYWORDS="~amd64 ~ppc ~x86 ~ppc-macos ~x86-macos ~x64-solaris"
46 +IUSE="ssl"
47 +
48 +python_prepare_all() {
49 + sed -i -e "s,'getmail-%s' % __version__,'${PF}'," \
50 + -e "/docs\/COPYING/d" "${S}"/setup.py || die
51 +
52 + distutils-r1_python_prepare_all
53 +}