Gentoo Archives: gentoo-commits

From: "Thomas Kahle (tomka)" <tomka@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-mail/mu: mu-0.9.9.6.ebuild ChangeLog
Date: Sun, 29 Jun 2014 13:18:15
Message-Id: 20140629131812.20A4A2004E@flycatcher.gentoo.org
1 tomka 14/06/29 13:18:12
2
3 Modified: ChangeLog
4 Added: mu-0.9.9.6.ebuild
5 Log:
6 bump to 0.9.9.6
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 565C32BC)
9
10 Revision Changes Path
11 1.21 net-mail/mu/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mu/ChangeLog?rev=1.21&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mu/ChangeLog?rev=1.21&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mu/ChangeLog?r1=1.20&r2=1.21
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-mail/mu/ChangeLog,v
20 retrieving revision 1.20
21 retrieving revision 1.21
22 diff -u -r1.20 -r1.21
23 --- ChangeLog 25 Apr 2014 19:23:40 -0000 1.20
24 +++ ChangeLog 29 Jun 2014 13:18:11 -0000 1.21
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-mail/mu
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mu/ChangeLog,v 1.20 2014/04/25 19:23:40 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-mail/mu/ChangeLog,v 1.21 2014/06/29 13:18:11 tomka Exp $
30 +
31 +*mu-0.9.9.6 (29 Jun 2014)
32 +
33 + 29 Jun 2014; Thomas Kahle <tomka@g.o> +mu-0.9.9.6.ebuild:
34 + bump to 0.9.9.6
35
36 25 Apr 2014; Pacho Ramos <pacho@g.o> -mu-0.9.6.ebuild:
37 Drop old
38
39
40
41 1.1 net-mail/mu/mu-0.9.9.6.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mu/mu-0.9.9.6.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mu/mu-0.9.9.6.ebuild?rev=1.1&content-type=text/plain
45
46 Index: mu-0.9.9.6.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-mail/mu/mu-0.9.9.6.ebuild,v 1.1 2014/06/29 13:18:11 tomka Exp $
51
52 EAPI=5
53
54 inherit autotools-utils base elisp-common
55
56 DESCRIPTION="Set of tools to deal with Maildirs, in particular, searching and indexing"
57 HOMEPAGE="http://www.djcbsoftware.nl/code/mu/"
58 SRC_URI="https://github.com/djcb/mu/archive/v${PV}.tar.gz -> ${P}.tar.gz
59 doc? ( http://mu0.googlecode.com/files/mu4e-manual-0.9.9.5.pdf )"
60
61 LICENSE="GPL-3"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="doc emacs gui"
65
66 # net-mail/mailutils also installes /usr/bin/mu. Block it until somebody
67 # really wants both installed at the same time.
68 DEPEND="
69 dev-libs/gmime:2.6
70 dev-libs/xapian
71 dev-libs/glib:2
72 gui? (
73 x11-libs/gtk+:3
74 net-libs/webkit-gtk:3 )
75 emacs? ( >=virtual/emacs-23 )
76 !net-mail/mailutils"
77 RDEPEND="${DEPEND}"
78
79 SITEFILE="70mu-gentoo.el"
80
81 src_unpack() {
82 unpack ${P}.tar.gz
83 if use doc ; then
84 cp "${DISTDIR}"/mu4e-manual-0.9.9.5.pdf "${S}" || die
85 fi
86 }
87
88 src_prepare(){
89 eautoreconf
90 }
91
92 src_configure() {
93 # Todo: Make a guile USE-flag as soon as >=guile-2 is avaiable
94 # Note: --disable-silent-rules is included in EAPI-5
95 econf --disable-guile \
96 $(use_enable gui webkit) \
97 $(use_enable gui gtk) \
98 $(use_enable emacs mu4e)
99 }
100
101 src_install () {
102 base_src_install
103 # Installing the guis is not supported by upstream
104 if use gui; then
105 dobin toys/mug/mug
106 fi
107 dodoc AUTHORS HACKING NEWS TODO README ChangeLog
108 if use doc; then
109 dodoc mu4e-manual-0.9.9.5.pdf
110 fi
111 if use emacs; then
112 elisp-install ${PN} mu4e/*.el mu4e/*.elc
113 elisp-site-file-install "${FILESDIR}/${SITEFILE}"
114 fi
115 }
116
117 src_test () {
118 emake check
119 }
120
121 pkg_postinst() {
122 if use emacs; then
123 einfo "To use mu4e you need to configure it in your .emacs file"
124 einfo "See the manual for more information:"
125 einfo "http://www.djcbsoftware.nl/code/mu/mu4e/Getting-started.html"
126 fi
127
128 elog "If you upgrade from an older major version,"
129 elog "then you need to rebuild your mail index."
130
131 use emacs && elisp-site-regen
132 }
133
134 pkg_postrm() {
135 use emacs && elisp-site-regen
136 }