Gentoo Archives: gentoo-commits

From: "Torsten Veller (tove)" <tove@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-mail/fetchmail: fetchmail-6.3.17.ebuild ChangeLog
Date: Fri, 07 May 2010 15:43:52
Message-Id: 20100507154346.EEA3D2C3FC@corvid.gentoo.org
1 tove 10/05/07 15:43:46
2
3 Modified: fetchmail-6.3.17.ebuild ChangeLog
4 Log:
5 Fix PYTHON_DEPEND. Thanks to Arfrever. Maintenance
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.2 net-mail/fetchmail/fetchmail-6.3.17.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.17.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.17.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.17.ebuild?r1=1.1&r2=1.2
14
15 Index: fetchmail-6.3.17.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.17.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- fetchmail-6.3.17.ebuild 6 May 2010 13:29:25 -0000 1.1
22 +++ fetchmail-6.3.17.ebuild 7 May 2010 15:43:46 -0000 1.2
23 @@ -1,14 +1,14 @@
24 # Copyright 1999-2010 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.17.ebuild,v 1.1 2010/05/06 13:29:25 tove Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/fetchmail-6.3.17.ebuild,v 1.2 2010/05/07 15:43:46 tove Exp $
28
29 EAPI=2
30
31 -PYTHON_DEPEND="2"
32 +PYTHON_DEPEND="tk? 2"
33 PYTHON_USE_WITH_OPT="tk"
34 PYTHON_USE_WITH="tk"
35
36 -inherit multilib python eutils
37 +inherit python eutils
38
39 DESCRIPTION="the legendary remote-mail retrieval and forwarding utility"
40 HOMEPAGE="http://fetchmail.berlios.de"
41 @@ -56,20 +56,18 @@
42 $(use_with kerberos gssapi) \
43 $(use_with kerberos kerberos5) \
44 $(use_with hesiod) \
45 - ${myconf} || die "Configuration failed."
46 + ${myconf}
47 }
48
49 src_install() {
50 # dir for pidfile
51 - dodir /var/run/${PN} || die "dodir failed"
52 - keepdir /var/run/${PN}
53 - fowners ${PN}:${PN} /var/run/${PN} || die "fowners failed"
54 + keepdir /var/run/${PN} || die
55 + fowners ${PN}:${PN} /var/run/${PN} || die
56
57 # fetchmail's homedir (holds fetchmail's .fetchids)
58 - dodir /var/lib/${PN} || die "dodir failed"
59 - keepdir /var/lib/${PN}
60 - fowners ${PN}:${PN} /var/lib/${PN} || die "fowners failed"
61 - fperms 700 /var/lib/${PN} || die "fperms failed"
62 + keepdir /var/lib/${PN} || die
63 + fowners ${PN}:${PN} /var/lib/${PN} || die
64 + fperms 700 /var/lib/${PN} || die
65
66 emake DESTDIR="${D}" install || die
67
68
69
70
71 1.187 net-mail/fetchmail/ChangeLog
72
73 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.187&view=markup
74 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/ChangeLog?rev=1.187&content-type=text/plain
75 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/fetchmail/ChangeLog?r1=1.186&r2=1.187
76
77 Index: ChangeLog
78 ===================================================================
79 RCS file: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v
80 retrieving revision 1.186
81 retrieving revision 1.187
82 diff -u -r1.186 -r1.187
83 --- ChangeLog 6 May 2010 13:29:25 -0000 1.186
84 +++ ChangeLog 7 May 2010 15:43:46 -0000 1.187
85 @@ -1,6 +1,9 @@
86 # ChangeLog for net-mail/fetchmail
87 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
88 -# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.186 2010/05/06 13:29:25 tove Exp $
89 +# $Header: /var/cvsroot/gentoo-x86/net-mail/fetchmail/ChangeLog,v 1.187 2010/05/07 15:43:46 tove Exp $
90 +
91 + 07 May 2010; Torsten Veller <tove@g.o> fetchmail-6.3.17.ebuild:
92 + Fix PYTHON_DEPEND. Thanks to Arfrever. Maintenance
93
94 *fetchmail-6.3.17 (06 May 2010)