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/offlineimap: ChangeLog offlineimap-6.5.7.ebuild
Date: Tue, 30 Jun 2015 15:02:33
Message-Id: 20150630150229.DA2E2739@oystercatcher.gentoo.org
1 radhermit 15/06/30 15:02:29
2
3 Modified: ChangeLog
4 Added: offlineimap-6.5.7.ebuild
5 Log:
6 Version bump (bug #549632).
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 4F064CA3)
9
10 Revision Changes Path
11 1.103 net-mail/offlineimap/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/offlineimap/ChangeLog?rev=1.103&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/offlineimap/ChangeLog?rev=1.103&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/offlineimap/ChangeLog?r1=1.102&r2=1.103
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-mail/offlineimap/ChangeLog,v
20 retrieving revision 1.102
21 retrieving revision 1.103
22 diff -u -r1.102 -r1.103
23 --- ChangeLog 11 Jun 2015 14:15:35 -0000 1.102
24 +++ ChangeLog 30 Jun 2015 15:02:29 -0000 1.103
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-mail/offlineimap
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-mail/offlineimap/ChangeLog,v 1.102 2015/06/11 14:15:35 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-mail/offlineimap/ChangeLog,v 1.103 2015/06/30 15:02:29 radhermit Exp $
30 +
31 +*offlineimap-6.5.7 (30 Jun 2015)
32 +
33 + 30 Jun 2015; Tim Harder <radhermit@g.o> +offlineimap-6.5.7.ebuild:
34 + Version bump (bug #549632).
35
36 11 Jun 2015; Agostino Sarubbo <ago@g.o> offlineimap-6.5.6.ebuild:
37 Stable for ppc, wrt bug #535590
38
39
40
41 1.1 net-mail/offlineimap/offlineimap-6.5.7.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/offlineimap/offlineimap-6.5.7.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/offlineimap/offlineimap-6.5.7.ebuild?rev=1.1&content-type=text/plain
45
46 Index: offlineimap-6.5.7.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-mail/offlineimap/offlineimap-6.5.7.ebuild,v 1.1 2015/06/30 15:02:29 radhermit Exp $
51
52 EAPI=5
53
54 # Normally you need only one version of this.
55 DISTUTILS_SINGLE_IMPL=1
56 PYTHON_COMPAT=( python2_7 )
57 PYTHON_REQ_USE="threads,sqlite?,ssl?"
58
59 inherit eutils distutils-r1
60
61 DESCRIPTION="Powerful IMAP/Maildir synchronization and reader support"
62 HOMEPAGE="http://offlineimap.org"
63 SRC_URI="https://github.com/OfflineIMAP/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
68 IUSE="doc ssl sqlite"
69
70 DEPEND="doc? ( dev-python/docutils )"
71
72 src_prepare() {
73 distutils-r1_src_prepare
74 # see http://pogma.com/2009/09/09/snow-leopard-and-offlineimap/ and bug 284925
75 epatch "${FILESDIR}"/"${PN}-6.5.3.1"-darwin10.patch
76 }
77
78 src_compile() {
79 distutils-r1_src_compile
80 if use doc ; then
81 cd docs
82 rst2man.py MANUAL.rst offlineimap.1 || die "building manpage failed"
83 fi
84 }
85
86 src_install() {
87 distutils-r1_src_install
88 dodoc offlineimap.conf offlineimap.conf.minimal
89 if use doc ; then
90 cd docs
91 doman offlineimap.1
92 fi
93 }
94
95 pkg_postinst() {
96 echo
97 elog "You will need to configure offlineimap by creating ~/.offlineimaprc"
98 elog "Sample configurations are in /usr/share/doc/${PF}/"
99 elog ""
100 elog "If you connect via ssl/tls and don't use CA cert checking, it will"
101 elog "display the server's cert fingerprint and require you to add it to the"
102 elog "configuration file to be sure it connects to the same server every"
103 elog "time. This serves to help fixing CVE-2010-4532 (offlineimap doesn't"
104 elog "check SSL server certificate) in cases where you have no CA cert."
105 echo
106
107 if use sqlite ; then
108 elog "The sqlite USE flag only enables a dependency on sqlite. To use"
109 elog "the sqlite backend you need to enable it in your .offlineimaprc"
110 fi
111 }