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/nxml-mode: ChangeLog nxml-mode-20041004-r2.ebuild
Date: Sun, 09 Sep 2007 10:08:52
Message-Id: E1IUJaV-0004Zf-22@stork.gentoo.org
1 ulm 07/09/09 10:00:19
2
3 Modified: ChangeLog
4 Added: nxml-mode-20041004-r2.ebuild
5 Log:
6 Fix selector and field regexps in xmlschema.rnc, bug #188114.
7 (Portage version: 2.1.3.9)
8
9 Revision Changes Path
10 1.25 app-emacs/nxml-mode/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/nxml-mode/ChangeLog?rev=1.25&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/nxml-mode/ChangeLog?rev=1.25&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/nxml-mode/ChangeLog?r1=1.24&r2=1.25
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-emacs/nxml-mode/ChangeLog,v
19 retrieving revision 1.24
20 retrieving revision 1.25
21 diff -u -r1.24 -r1.25
22 --- ChangeLog 15 Aug 2007 07:37:56 -0000 1.24
23 +++ ChangeLog 9 Sep 2007 10:00:18 -0000 1.25
24 @@ -1,6 +1,13 @@
25 # ChangeLog for app-emacs/nxml-mode
26 # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/nxml-mode/ChangeLog,v 1.24 2007/08/15 07:37:56 ulm Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/nxml-mode/ChangeLog,v 1.25 2007/09/09 10:00:18 ulm Exp $
29 +
30 +*nxml-mode-20041004-r2 (09 Sep 2007)
31 +
32 + 09 Sep 2007; Ulrich Mueller <ulm@g.o>
33 + +files/nxml-mode-xmlschema-xpath.patch, +nxml-mode-20041004-r2.ebuild:
34 + Fix selector and field regexps in xmlschema.rnc, bug #188114. Patch provided
35 + by Martin von Gagern <Martin.vGagern@×××.net>.
36
37 *nxml-mode-20041004-r1 (15 Aug 2007)
38
39
40
41
42 1.1 app-emacs/nxml-mode/nxml-mode-20041004-r2.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/nxml-mode/nxml-mode-20041004-r2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/nxml-mode/nxml-mode-20041004-r2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: nxml-mode-20041004-r2.ebuild
48 ===================================================================
49 # Copyright 1999-2007 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-emacs/nxml-mode/nxml-mode-20041004-r2.ebuild,v 1.1 2007/09/09 10:00:18 ulm Exp $
52
53 inherit elisp eutils
54
55 DESCRIPTION="A major mode for GNU Emacs for editing XML documents."
56 HOMEPAGE="http://www.thaiopensource.com/nxml-mode/
57 http://www.emacswiki.org/cgi-bin/wiki/NxmlMode"
58 SRC_URI="http://thaiopensource.com/download/${P}.tar.gz
59 mirror://gentoo/${PN}-20040910-xmlschema.patch.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~ppc ~sparc-fbsd ~x86 ~x86-fbsd"
64 IUSE=""
65
66 SITEFILE=80${PN}-gentoo.el
67
68 src_unpack() {
69 unpack ${A}
70 cd "${S}"
71 epatch "${FILESDIR}/${PN}-info-gentoo.patch"
72 epatch "${WORKDIR}/${PN}-20040910-xmlschema.patch"
73 epatch "${FILESDIR}/xsd-regexp.el.2006-01-26.patch" # bug #188112
74 epatch "${FILESDIR}/${PN}-xmlschema-xpath.patch" # bug #188114
75 }
76
77 src_compile() {
78 emacs -batch -l rng-auto.el -f rng-byte-compile-load \
79 || die "byte compilation failed"
80 makeinfo --force nxml-mode.texi || die "makeinfo failed"
81 }
82
83 src_install() {
84 elisp-install ${PN} *.el *.elc
85 elisp-site-file-install "${FILESDIR}/${SITEFILE}"
86 cp -r "${S}/schema" "${D}/${SITELISP}/${PN}"
87 cp -r "${S}/char-name" "${D}/${SITELISP}/${PN}"
88 doinfo nxml-mode.info
89 dodoc README VERSION TODO NEWS || die "dodoc failed"
90 }
91
92
93
94 --
95 gentoo-commits@g.o mailing list