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/offlineimap/
Date: Wed, 12 Apr 2017 10:19:43
Message-Id: 1491992353.eb840cb6d273f6467b6ba096fbb048133279de99.radhermit@gentoo
1 commit: eb840cb6d273f6467b6ba096fbb048133279de99
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 12 10:18:17 2017 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 12 10:19:13 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb840cb6
7
8 net-mail/offlineimap: version bump to 7.0.14
9
10 net-mail/offlineimap/Manifest | 1 +
11 net-mail/offlineimap/offlineimap-7.0.14.ebuild | 52 ++++++++++++++++++++++++++
12 2 files changed, 53 insertions(+)
13
14 diff --git a/net-mail/offlineimap/Manifest b/net-mail/offlineimap/Manifest
15 index 989e8b9d0be..dfc1e449017 100644
16 --- a/net-mail/offlineimap/Manifest
17 +++ b/net-mail/offlineimap/Manifest
18 @@ -3,3 +3,4 @@ DIST offlineimap-6.7.0.3.tar.gz 679221 SHA256 0b7cd43501d1a65fb5e7e4f3a5d0a61f61
19 DIST offlineimap-7.0.10.tar.gz 694812 SHA256 725431c20775d2524ed823da356b0b8f7cf627be518caafce808f23d797d1541 SHA512 76bdfed588068b53254c497ae9deaceaabbe432e187f4f069b0cfca3729fcb6c426bc364a095e081619e385242838f2da259529814faaf9ab509c9518c87dcf1 WHIRLPOOL 2e654ca36fe13eb237c3ac562281120e1c3bd32f44d0ca8843f9a91939c2b42809fa9b2b00881bd4972ff576ac458695da8e302e2e8f1a7e190431a9b1ac664c
20 DIST offlineimap-7.0.12.tar.gz 695070 SHA256 7fdad62ed59eb817969465dcba794271f8f84aa51d31ace9994865dbf9b934d4 SHA512 250376e83a5fe4f3652a9c3977100f11fe518a9955bda127f39f2ef360bb77fb4f108e44e6fc36a4f0f85dea02596f0eb2a48cb4d2fff1e02c9cc45c60c8679b WHIRLPOOL b5bfc0a7c38dab7774e33761c5e7235140561c550513c640961b31207cccb9f73250543ac009fb6db55de3962a7fedecb2f9f1d235f27dd370546dacffd5b447
21 DIST offlineimap-7.0.13.tar.gz 696783 SHA256 f744843f943c6adaa754e1244e16bfd6eaa825affe385169f16475db191787ce SHA512 d15a0f574b5793859bd32a646c2bb89e28a5d74aa2a86cafa07bc0d6bdbfac31f7a87b61aff3209e8897a0e3959c4bc4fd81aa9c9057f512afa64a919be87482 WHIRLPOOL 72ba3bd4fe0578deacc50b4c16ec81b20bfa2569d2fedb05d162d021ecb8d74ee245e27a5da87f25fe22aa8671ff5a4e5b19f25fc59d4bc61248a8bbc1221270
22 +DIST offlineimap-7.0.14.tar.gz 698081 SHA256 19494ecad4d7234ac69480abb7462d0cdcfcec444b55f5381651057d9fdfad44 SHA512 05d5ee81e5b0483038ad3bf8ba27f7b57423a75a3456df192c0c8b7926d7252424ef8f357f99dee2fa2f2590341e9f95d225ee2ad7d01af3466fb9d5488541f9 WHIRLPOOL a791cb67f1e51197fce9005ffbbbbdb8f4ee986d78a7ba46feff6aed6b50e17c5e57a9fa03bba9db0f90325b92c23b9d76071d460f6fec60fa878616cfc6544a
23
24 diff --git a/net-mail/offlineimap/offlineimap-7.0.14.ebuild b/net-mail/offlineimap/offlineimap-7.0.14.ebuild
25 new file mode 100644
26 index 00000000000..c38b4b23157
27 --- /dev/null
28 +++ b/net-mail/offlineimap/offlineimap-7.0.14.ebuild
29 @@ -0,0 +1,52 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +# Normally you need only one version of this.
36 +DISTUTILS_SINGLE_IMPL=1
37 +PYTHON_COMPAT=( python{2_7,3_4} )
38 +PYTHON_REQ_USE="threads,sqlite,ssl?"
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="Powerful IMAP/Maildir synchronization and reader support"
43 +HOMEPAGE="http://offlineimap.org"
44 +SRC_URI="https://github.com/OfflineIMAP/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
45 +
46 +LICENSE="GPL-2"
47 +SLOT="0"
48 +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
49 +IUSE="doc ssl"
50 +
51 +RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
52 +DEPEND="doc? ( app-text/asciidoc )"
53 +
54 +# see http://pogma.com/2009/09/09/snow-leopard-and-offlineimap/ and bug 284925
55 +PATCHES=(
56 + "${FILESDIR}/${PN}-7.0.3-darwin10.patch"
57 +)
58 +
59 +src_compile() {
60 + distutils-r1_src_compile
61 + use doc && emake -C docs man
62 +}
63 +
64 +src_install() {
65 + distutils-r1_src_install
66 + dodoc offlineimap.conf offlineimap.conf.minimal
67 + use doc && doman docs/{offlineimap.1,offlineimapui.7}
68 +}
69 +
70 +pkg_postinst() {
71 + if [[ -z ${REPLACING_VERSIONS} ]]; then
72 + elog "You will need to configure offlineimap by creating ~/.offlineimaprc"
73 + elog "Sample configurations are in /usr/share/doc/${PF}/"
74 + elog ""
75 + elog "If you connect via ssl/tls and don't use CA cert checking, it will"
76 + elog "display the server's cert fingerprint and require you to add it to the"
77 + elog "configuration file to be sure it connects to the same server every"
78 + elog "time. This serves to help fixing CVE-2010-4532 (offlineimap doesn't"
79 + elog "check SSL server certificate) in cases where you have no CA cert."
80 + fi
81 +}