Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emacs/python-mode: ChangeLog python-mode-6.0.3-r1.ebuild python-mode-6.0.3.ebuild
Date: Wed, 23 Nov 2011 17:33:06
Message-Id: 20111123173257.0A6902004B@flycatcher.gentoo.org
1 ulm 11/11/23 17:32:56
2
3 Modified: ChangeLog
4 Added: python-mode-6.0.3-r1.ebuild
5 Removed: python-mode-6.0.3.ebuild
6 Log:
7 Define obsolete variables properly, in order to prevent a crash with dev-python/ipython. Fixes bug 391403.
8
9 (Portage version: 2.1.10.37/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.52 app-emacs/python-mode/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/python-mode/ChangeLog?rev=1.52&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/python-mode/ChangeLog?rev=1.52&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/python-mode/ChangeLog?r1=1.51&r2=1.52
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-emacs/python-mode/ChangeLog,v
21 retrieving revision 1.51
22 retrieving revision 1.52
23 diff -u -r1.51 -r1.52
24 --- ChangeLog 21 Nov 2011 18:01:23 -0000 1.51
25 +++ ChangeLog 23 Nov 2011 17:32:56 -0000 1.52
26 @@ -1,6 +1,13 @@
27 # ChangeLog for app-emacs/python-mode
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/python-mode/ChangeLog,v 1.51 2011/11/21 18:01:23 ulm Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/python-mode/ChangeLog,v 1.52 2011/11/23 17:32:56 ulm Exp $
31 +
32 +*python-mode-6.0.3-r1 (23 Nov 2011)
33 +
34 + 23 Nov 2011; Ulrich Mueller <ulm@g.o> -python-mode-6.0.3.ebuild,
35 + +python-mode-6.0.3-r1.ebuild, +files/python-mode-6.0.3-obsolete-vars.patch:
36 + Define obsolete variables properly, in order to prevent a crash with
37 + dev-python/ipython. Fixes bug 391403.
38
39 *python-mode-6.0.3 (21 Nov 2011)
40
41
42
43
44 1.1 app-emacs/python-mode/python-mode-6.0.3-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/python-mode/python-mode-6.0.3-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/python-mode/python-mode-6.0.3-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: python-mode-6.0.3-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-emacs/python-mode/python-mode-6.0.3-r1.ebuild,v 1.1 2011/11/23 17:32:56 ulm Exp $
54
55 EAPI=4
56
57 inherit elisp
58
59 MY_P="${PN}.el-${PV}"
60 DESCRIPTION="An Emacs major mode for editing Python source"
61 HOMEPAGE="https://launchpad.net/python-mode"
62 SRC_URI="http://launchpad.net/${PN}/trunk/${PV}/+download/${MY_P}.tar.gz"
63
64 LICENSE="GPL-3"
65 SLOT="0"
66 KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
67 IUSE=""
68
69 S="${WORKDIR}/${MY_P}"
70 ELISP_PATCHES="${P}-obsolete-vars.patch"
71 SITEFILE="50${PN}-gentoo.el"
72 DOCS="NEWS"
73
74 src_prepare() {
75 elisp_src_prepare
76 # remove XEmacs specific file
77 rm highlight-indentation.el || die
78 }
79
80 pkg_postinst() {
81 elisp-site-regen
82 elog "Note that doctest support is split out to app-emacs/doctest-mode."
83 }