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/tdtd/, app-emacs/tdtd/files/
Date: Fri, 15 Feb 2019 20:48:36
Message-Id: 1550263303.2a9c605641693dcec0d48fed5cb817e7ffab8662.ulm@gentoo
1 commit: 2a9c605641693dcec0d48fed5cb817e7ffab8662
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 15 20:41:43 2019 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 15 20:41:43 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a9c6056
7
8 app-emacs/tdtd: Remove package.
9
10 Bug: https://bugs.gentoo.org/675814
11 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
12
13 app-emacs/tdtd/Manifest | 1 -
14 app-emacs/tdtd/files/50tdtd-gentoo.el | 28 ----------------------------
15 app-emacs/tdtd/metadata.xml | 9 ---------
16 app-emacs/tdtd/tdtd-0.7.1-r1.ebuild | 22 ----------------------
17 4 files changed, 60 deletions(-)
18
19 diff --git a/app-emacs/tdtd/Manifest b/app-emacs/tdtd/Manifest
20 deleted file mode 100644
21 index 055fd776af5..00000000000
22 --- a/app-emacs/tdtd/Manifest
23 +++ /dev/null
24 @@ -1 +0,0 @@
25 -DIST tdtd071.zip 37673 BLAKE2B 0bc5be6e8c9050a06b233b1645fe3bb3ad9bb89ba087309d75afd63af28ce1d4873c88447fcd6e654f50728682d5156e1a795865f11f5e2e54607e630687ed0a SHA512 3de529178718352bc437a3e91d3102990a88314d1dc5ad3d3120c6dfcbb1aef008edc00e46ee051fd5c968c698230393a301dd645484aa748b5b982df84e0556
26
27 diff --git a/app-emacs/tdtd/files/50tdtd-gentoo.el b/app-emacs/tdtd/files/50tdtd-gentoo.el
28 deleted file mode 100644
29 index 3867c8faa13..00000000000
30 --- a/app-emacs/tdtd/files/50tdtd-gentoo.el
31 +++ /dev/null
32 @@ -1,28 +0,0 @@
33 -
34 -;;; tdtd site-lisp configuration
35 -
36 -(add-to-list 'load-path "@SITELISP@")
37 -
38 -(autoload 'dtd-mode "tdtd" "Major mode to edit DTD files." t)
39 -(autoload 'dtd-etags "tdtd"
40 - "Execute etags on FILESPEC and match on DTD-specific regular expressions."
41 - t)
42 -(autoload 'dtd-grep "tdtd" "Grep for PATTERN in files matching FILESPEC." t)
43 -
44 -;; Turn on font lock when in DTD mode
45 -(add-hook 'dtd-mode-hooks
46 - 'turn-on-font-lock)
47 -
48 -(setq auto-mode-alist
49 - (append
50 - (list
51 - '("\\.dcl$" . dtd-mode)
52 - '("\\.dec$" . dtd-mode)
53 - '("\\.dtd$" . dtd-mode)
54 - '("\\.ele$" . dtd-mode)
55 - '("\\.ent$" . dtd-mode)
56 - '("\\.mod$" . dtd-mode))
57 - auto-mode-alist))
58 -
59 -;; To use resize-minibuffer-mode, uncomment this and include in your .emacs:
60 -;;(resize-minibuffer-mode)
61
62 diff --git a/app-emacs/tdtd/metadata.xml b/app-emacs/tdtd/metadata.xml
63 deleted file mode 100644
64 index c918cdef959..00000000000
65 --- a/app-emacs/tdtd/metadata.xml
66 +++ /dev/null
67 @@ -1,9 +0,0 @@
68 -<?xml version="1.0" encoding="UTF-8"?>
69 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
70 -<pkgmetadata>
71 -<maintainer type="project">
72 - <email>gnu-emacs@g.o</email>
73 - <name>Gentoo GNU Emacs project</name>
74 -</maintainer>
75 -<stabilize-allarches/>
76 -</pkgmetadata>
77
78 diff --git a/app-emacs/tdtd/tdtd-0.7.1-r1.ebuild b/app-emacs/tdtd/tdtd-0.7.1-r1.ebuild
79 deleted file mode 100644
80 index 0d8bb44d238..00000000000
81 --- a/app-emacs/tdtd/tdtd-0.7.1-r1.ebuild
82 +++ /dev/null
83 @@ -1,22 +0,0 @@
84 -# Copyright 1999-2018 Gentoo Foundation
85 -# Distributed under the terms of the GNU General Public License v2
86 -
87 -EAPI=0
88 -
89 -inherit elisp
90 -
91 -DESCRIPTION="Emacs Major Mode for SGML and XML DTDs"
92 -HOMEPAGE="http://www.menteith.com/wiki/tdtd"
93 -SRC_URI="http://www.menteith.com/raw-attachment/wiki/tdtd/data/${PN}${PV//./}.zip"
94 -
95 -LICENSE="GPL-2"
96 -SLOT="0"
97 -KEYWORDS="amd64 ppc sparc x86"
98 -IUSE=""
99 -
100 -DEPEND="app-arch/unzip"
101 -RDEPEND=""
102 -
103 -S="${WORKDIR}"
104 -SITEFILE=50${PN}-gentoo.el
105 -DOCS="TODO changelog.txt readme.txt tutorial.txt"