Gentoo Archives: gentoo-commits

From: "Amadeusz Zolnowski (aidecoe)" <aidecoe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in mail-client/alot: ChangeLog alot-0.21-r1.ebuild alot-0.21.ebuild
Date: Tue, 27 Dec 2011 11:24:06
Message-Id: 20111227112356.7B7062004B@flycatcher.gentoo.org
1 aidecoe 11/12/27 11:23:56
2
3 Modified: ChangeLog
4 Added: alot-0.21-r1.ebuild
5 Removed: alot-0.21.ebuild
6 Log:
7 mail-client/alot-0.21: Rev-bump - added missing dependencies.
8
9 Added missing dependencies: sys-apps/file[python] and net-mail/mailbase.
10
11 (Portage version: 2.1.10.43/cvs/Linux x86_64)
12
13 Revision Changes Path
14 1.2 mail-client/alot/ChangeLog
15
16 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/alot/ChangeLog?rev=1.2&view=markup
17 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/alot/ChangeLog?rev=1.2&content-type=text/plain
18 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/alot/ChangeLog?r1=1.1&r2=1.2
19
20 Index: ChangeLog
21 ===================================================================
22 RCS file: /var/cvsroot/gentoo-x86/mail-client/alot/ChangeLog,v
23 retrieving revision 1.1
24 retrieving revision 1.2
25 diff -u -r1.1 -r1.2
26 --- ChangeLog 26 Dec 2011 17:01:42 -0000 1.1
27 +++ ChangeLog 27 Dec 2011 11:23:56 -0000 1.2
28 @@ -1,6 +1,12 @@
29 # ChangeLog for mail-client/alot
30 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
31 -# $Header: /var/cvsroot/gentoo-x86/mail-client/alot/ChangeLog,v 1.1 2011/12/26 17:01:42 aidecoe Exp $
32 +# $Header: /var/cvsroot/gentoo-x86/mail-client/alot/ChangeLog,v 1.2 2011/12/27 11:23:56 aidecoe Exp $
33 +
34 +*alot-0.21-r1 (27 Dec 2011)
35 +
36 + 27 Dec 2011; Amadeusz Żołnowski <aidecoe@g.o> -alot-0.21.ebuild,
37 + +alot-0.21-r1.ebuild:
38 + Added missing dependencies: sys-apps/file[python] and net-mail/mailbase.
39
40 *alot-0.21 (26 Dec 2011)
41
42
43
44
45 1.1 mail-client/alot/alot-0.21-r1.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/alot/alot-0.21-r1.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/alot/alot-0.21-r1.ebuild?rev=1.1&content-type=text/plain
49
50 Index: alot-0.21-r1.ebuild
51 ===================================================================
52 # Copyright 1999-2011 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/mail-client/alot/alot-0.21-r1.ebuild,v 1.1 2011/12/27 11:23:56 aidecoe Exp $
55
56 EAPI=4
57
58 PYTHON_DEPEND="2:2.7"
59 SUPPORT_PYTHON_ABIS="1"
60 RESTRICT_PYTHON_ABIS="2.[456] 3.*"
61
62 inherit distutils
63
64 DESCRIPTION="Experimental terminal UI for net-mail/notmuch written in Python"
65 HOMEPAGE="https://github.com/pazz/alot"
66 SRC_URI="${HOMEPAGE}/tarball/${PV} -> ${P}.tar.gz"
67
68 LICENSE="GPL-3"
69 SLOT="0"
70 KEYWORDS="~amd64 ~x86"
71 IUSE=""
72
73 DEPEND=""
74 RDEPEND="
75 dev-python/twisted
76 >=dev-python/urwid-1.0.0
77 net-mail/mailbase
78 net-mail/notmuch[crypt,python]
79 sys-apps/file[python]
80 "
81
82 DOCS="CUSTOMIZE FAQ"
83
84 src_unpack() {
85 unpack ${A}
86 mv *-${PN}-* "${S}"
87 }
88
89 src_prepare() {
90 distutils_src_prepare
91
92 local md
93 for md in *.md; do
94 mv "${md}" "${md%.md}"
95 done
96
97 echo "${PV}" > alot/VERSION
98 }