Gentoo Archives: gentoo-commits

From: "Ryan Hill (dirtyepic)" <dirtyepic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-editors/editra: editra-0.6.0.ebuild ChangeLog
Date: Sun, 16 Jan 2011 06:56:38
Message-Id: 20110116065625.4A20A20054@flycatcher.gentoo.org
1 dirtyepic 11/01/16 06:56:25
2
3 Modified: ChangeLog
4 Added: editra-0.6.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha15/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.19 app-editors/editra/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/editra/ChangeLog?rev=1.19&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/editra/ChangeLog?rev=1.19&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/editra/ChangeLog?r1=1.18&r2=1.19
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-editors/editra/ChangeLog,v
20 retrieving revision 1.18
21 retrieving revision 1.19
22 diff -u -r1.18 -r1.19
23 --- ChangeLog 8 Dec 2010 00:45:39 -0000 1.18
24 +++ ChangeLog 16 Jan 2011 06:56:25 -0000 1.19
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-editors/editra
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-editors/editra/ChangeLog,v 1.18 2010/12/08 00:45:39 dirtyepic Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-editors/editra/ChangeLog,v 1.19 2011/01/16 06:56:25 dirtyepic Exp $
31 +
32 +*editra-0.6.0 (16 Jan 2011)
33 +
34 + 16 Jan 2011; Ryan Hill <dirtyepic@g.o> +editra-0.6.0.ebuild:
35 + Version bump.
36
37 *editra-0.5.99 (08 Dec 2010)
38
39
40
41
42 1.1 app-editors/editra/editra-0.6.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/editra/editra-0.6.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/editra/editra-0.6.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: editra-0.6.0.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-editors/editra/editra-0.6.0.ebuild,v 1.1 2011/01/16 06:56:25 dirtyepic Exp $
52
53 EAPI=2
54 SUPPORT_PYTHON_ABIS=1
55 PYTHON_DEPEND="2:2.5"
56
57 inherit distutils eutils fdo-mime python
58
59 MY_PN=${PN/e/E}
60
61 DESCRIPTION="Multi-platform text editor supporting over 50 programming languages."
62 HOMEPAGE="http://editra.org http://pypi.python.org/pypi/Editra"
63 SRC_URI="http://editra.org/uploads/src/${MY_PN}-${PV}.tar.gz"
64
65 LICENSE="wxWinLL-3.1"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE="spell"
69
70 DEPEND=">=dev-python/wxpython-2.8.9.2:2.8
71 >=dev-python/setuptools-0.6"
72 # setuptools is RDEPEND because it's used by the runtime for installing plugins
73 RDEPEND="${DEPEND}
74 spell? ( dev-python/pyenchant )"
75
76 RESTRICT_PYTHON_ABIS="3.*"
77
78 S="${WORKDIR}"/${MY_PN}-${PV}
79
80 src_compile() {
81 distutils_src_compile --no-clean # http://code.google.com/p/editra/issues/detail?id=481
82 }
83
84 src_install() {
85 distutils_src_install --no-clean
86 insinto /usr/share/pixmaps
87 doins "${S}"/pixmaps/editra.png
88 make_desktop_entry Editra Editra editra "Development;TextEditor"
89 dodoc FAQ THANKS
90 }
91
92 pkg_postinst() {
93 distutils_pkg_postinst
94 fdo-mime_desktop_database_update
95 }
96
97 pkg_postrm() {
98 distutils_pkg_postrm
99 fdo-mime_desktop_database_update
100 }