Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/nxml-svg-schemas/
Date: Wed, 02 Oct 2019 22:41:18
Message-Id: 1570056061.4757ba7ffff4936c778e076ef9ce308ca2504ddb.ulm@gentoo
1 commit: 4757ba7ffff4936c778e076ef9ce308ca2504ddb
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 2 22:26:10 2019 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 2 22:41:01 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4757ba7f
7
8 app-emacs/nxml-svg-schemas: Remove old.
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.17
11 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
12
13 .../nxml-svg-schemas-1.1.20081123.ebuild | 44 ----------------------
14 1 file changed, 44 deletions(-)
15
16 diff --git a/app-emacs/nxml-svg-schemas/nxml-svg-schemas-1.1.20081123.ebuild b/app-emacs/nxml-svg-schemas/nxml-svg-schemas-1.1.20081123.ebuild
17 deleted file mode 100644
18 index 5180d7bed52..00000000000
19 --- a/app-emacs/nxml-svg-schemas/nxml-svg-schemas-1.1.20081123.ebuild
20 +++ /dev/null
21 @@ -1,44 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=4
26 -
27 -inherit elisp
28 -
29 -DESCRIPTION="Extension for nxml-mode with SVG 1.1 schemas"
30 -HOMEPAGE="http://www.w3.org/TR/SVG11/"
31 -# original SRC_URI is http://www.w3.org/Graphics/SVG/1.1/rng/rng.zip
32 -# but since it's unversioned, I versioned it and got it locally.
33 -SRC_URI="http://www.flameeyes.eu/gentoo-distfiles/w3c-svg-rng-${PV}.zip"
34 -
35 -LICENSE="HPND"
36 -# In a future we might have 1.2 schemas too, but for now we can only
37 -# install this one anyway because the schemas.xml syntax is not
38 -# sophisticated enough.
39 -SLOT="1.1"
40 -KEYWORDS="amd64 ~x86"
41 -
42 -# Yes this requires Java, but I'd rather not repackage this, if you
43 -# know something better in C, I'll be glad to use that.
44 -DEPEND="
45 - app-arch/unzip
46 - app-text/trang"
47 -RDEPEND=""
48 -
49 -S="${WORKDIR}"
50 -SITEFILE="60${PN}-gentoo.el"
51 -
52 -src_prepare() {
53 - # we don't need the doctype for our work
54 - sed -i -e '/DOCTYPE grammar/d' *.rng || die "sed failed"
55 -}
56 -
57 -src_compile() {
58 - emake -f "${FILESDIR}/Makefile-trang"
59 -}
60 -
61 -src_install() {
62 - insinto "${SITEETC}/${PN}"
63 - doins "${FILESDIR}/schemas.xml" *.rnc
64 - elisp-site-file-install "${FILESDIR}/${SITEFILE}"
65 -}