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