Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-mail/getmail: getmail-4.43.0-r1.ebuild ChangeLog
Date: Wed, 29 Jan 2014 04:15:11
Message-Id: 20140129041506.7C7342004C@flycatcher.gentoo.org
1 radhermit 14/01/29 04:15:06
2
3 Modified: ChangeLog
4 Added: getmail-4.43.0-r1.ebuild
5 Log:
6 Add conditional dep on ssl enabled python (bug #488472).
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.233 net-mail/getmail/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/getmail/ChangeLog?rev=1.233&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/getmail/ChangeLog?rev=1.233&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/getmail/ChangeLog?r1=1.232&r2=1.233
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-mail/getmail/ChangeLog,v
20 retrieving revision 1.232
21 retrieving revision 1.233
22 diff -u -r1.232 -r1.233
23 --- ChangeLog 27 Sep 2013 08:22:06 -0000 1.232
24 +++ ChangeLog 29 Jan 2014 04:15:06 -0000 1.233
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-mail/getmail
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-mail/getmail/ChangeLog,v 1.232 2013/09/27 08:22:06 radhermit Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-mail/getmail/ChangeLog,v 1.233 2014/01/29 04:15:06 radhermit Exp $
31 +
32 +*getmail-4.43.0-r1 (29 Jan 2014)
33 +
34 + 29 Jan 2014; Tim Harder <radhermit@g.o> +getmail-4.43.0-r1.ebuild:
35 + Add conditional dep on ssl enabled python (bug #488472).
36
37 27 Sep 2013; Tim Harder <radhermit@g.o> -getmail-4.36.0.ebuild,
38 -getmail-4.39.1.ebuild, -getmail-4.40.1.ebuild, -getmail-4.40.3.ebuild:
39
40
41
42 1.1 net-mail/getmail/getmail-4.43.0-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/getmail/getmail-4.43.0-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/getmail/getmail-4.43.0-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: getmail-4.43.0-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-mail/getmail/getmail-4.43.0-r1.ebuild,v 1.1 2014/01/29 04:15:06 radhermit Exp $
52
53 EAPI=5
54 PYTHON_COMPAT=( python{2_6,2_7} )
55 PYTHON_REQ_USE="ssl?"
56
57 inherit distutils-r1
58
59 DESCRIPTION="A POP3 mail retriever with reliable Maildir and mbox delivery"
60 HOMEPAGE="http://pyropus.ca/software/getmail/"
61 SRC_URI="http://pyropus.ca/software/getmail/old-versions/${P}.tar.gz"
62
63 LICENSE="GPL-2"
64 SLOT="4"
65 KEYWORDS="~amd64 ~ppc ~x86 ~ppc-macos ~x86-macos ~x64-solaris"
66 IUSE="ssl"
67
68 python_prepare_all() {
69 sed -i -e "s,'getmail-%s' % __version__,'${PF}'," \
70 -e "/docs\/COPYING/d" "${S}"/setup.py || die
71
72 distutils-r1_python_prepare_all
73 }