Gentoo Archives: gentoo-commits

From: Jason Zaman <perfinion@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/offlineimap/
Date: Mon, 01 Aug 2016 08:32:56
Message-Id: 1470040247.ceee994483ea32fcff0a9381c9cadba74a36ec78.perfinion@gentoo
1 commit: ceee994483ea32fcff0a9381c9cadba74a36ec78
2 Author: Jason Zaman <perfinion <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 1 08:28:07 2016 +0000
4 Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 1 08:30:47 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ceee9944
7
8 net-mail/offlineimap: sqlite is unconditional, bug 590180
9
10 Package-Manager: portage-2.2.28
11
12 .../{offlineimap-7.0.3.ebuild => offlineimap-7.0.3-r1.ebuild} | 11 ++---------
13 1 file changed, 2 insertions(+), 9 deletions(-)
14
15 diff --git a/net-mail/offlineimap/offlineimap-7.0.3.ebuild b/net-mail/offlineimap/offlineimap-7.0.3-r1.ebuild
16 similarity index 86%
17 rename from net-mail/offlineimap/offlineimap-7.0.3.ebuild
18 rename to net-mail/offlineimap/offlineimap-7.0.3-r1.ebuild
19 index f69cfee..6de39f8 100644
20 --- a/net-mail/offlineimap/offlineimap-7.0.3.ebuild
21 +++ b/net-mail/offlineimap/offlineimap-7.0.3-r1.ebuild
22 @@ -7,7 +7,7 @@ EAPI=6
23 # Normally you need only one version of this.
24 DISTUTILS_SINGLE_IMPL=1
25 PYTHON_COMPAT=( python2_7 python3_4 )
26 -PYTHON_REQ_USE="threads,sqlite?,ssl?"
27 +PYTHON_REQ_USE="threads,sqlite,ssl?"
28
29 inherit distutils-r1
30
31 @@ -18,7 +18,7 @@ SRC_URI="https://github.com/OfflineIMAP/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.
32 LICENSE="GPL-2"
33 SLOT="0"
34 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
35 -IUSE="doc ssl sqlite"
36 +IUSE="doc ssl"
37
38 RDEPEND="dev-python/six"
39 DEPEND="doc? ( app-text/asciidoc )"
40 @@ -41,7 +41,6 @@ src_install() {
41 }
42
43 pkg_postinst() {
44 - echo
45 elog "You will need to configure offlineimap by creating ~/.offlineimaprc"
46 elog "Sample configurations are in /usr/share/doc/${PF}/"
47 elog ""
48 @@ -50,10 +49,4 @@ pkg_postinst() {
49 elog "configuration file to be sure it connects to the same server every"
50 elog "time. This serves to help fixing CVE-2010-4532 (offlineimap doesn't"
51 elog "check SSL server certificate) in cases where you have no CA cert."
52 - echo
53 -
54 - if use sqlite ; then
55 - elog "The sqlite USE flag only enables a dependency on sqlite. To use"
56 - elog "the sqlite backend you need to enable it in your .offlineimaprc"
57 - fi
58 }