Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/emacs:graveyard commit in: app-emacs/mode-compile/files/, app-emacs/mode-compile/
Date: Tue, 05 Nov 2019 08:27:25
Message-Id: 1572942317.d551baf7eaee9de285319e821e373aaf2357464f.ulm@gentoo
1 commit: d551baf7eaee9de285319e821e373aaf2357464f
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 5 08:25:17 2019 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 5 08:25:17 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=d551baf7
7
8 mode-compile removed 2019-11-04 bug 666836
9
10 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
11
12 app-emacs/mode-compile/Manifest | 1 +
13 app-emacs/mode-compile/files/50mode-compile-gentoo.el | 5 +++++
14 app-emacs/mode-compile/metadata.xml | 12 ++++++++++++
15 app-emacs/mode-compile/mode-compile-2.29.1.ebuild | 17 +++++++++++++++++
16 4 files changed, 35 insertions(+)
17
18 diff --git a/app-emacs/mode-compile/Manifest b/app-emacs/mode-compile/Manifest
19 new file mode 100644
20 index 0000000..7b4b89a
21 --- /dev/null
22 +++ b/app-emacs/mode-compile/Manifest
23 @@ -0,0 +1 @@
24 +DIST mode-compile-2.29.1.tar.gz 22924 BLAKE2B 7ef71f958ffd5022ddcc64c07ef60822af5bc4a1f5deac5c4e57ce63cd9596d5f612d73eb9cdac627ecfef59e893d795afbeaa19b380b0cc4291bb4dc23fc05c SHA512 bc43d9cae411f5177ce70c736041db74c6db1dc5b766b22b92227e9e1324d304276bd104d8e3cac9ff5a877fc48b6da5b904e1acdb6cca7396fc7c26cc572815
25
26 diff --git a/app-emacs/mode-compile/files/50mode-compile-gentoo.el b/app-emacs/mode-compile/files/50mode-compile-gentoo.el
27 new file mode 100644
28 index 0000000..d8dc273
29 --- /dev/null
30 +++ b/app-emacs/mode-compile/files/50mode-compile-gentoo.el
31 @@ -0,0 +1,5 @@
32 +(add-to-list 'load-path "@SITELISP@")
33 +(autoload 'mode-compile "mode-compile"
34 + "Command to compile current buffer file based on the major mode" t)
35 +(autoload 'mode-compile-kill "mode-compile"
36 + "Command to kill a compilation launched by `mode-compile'" t)
37
38 diff --git a/app-emacs/mode-compile/metadata.xml b/app-emacs/mode-compile/metadata.xml
39 new file mode 100644
40 index 0000000..1c9e6cc
41 --- /dev/null
42 +++ b/app-emacs/mode-compile/metadata.xml
43 @@ -0,0 +1,12 @@
44 +<?xml version="1.0" encoding="UTF-8"?>
45 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
46 +<pkgmetadata>
47 +<maintainer type="project">
48 + <email>gnu-emacs@g.o</email>
49 + <name>Gentoo GNU Emacs project</name>
50 +</maintainer>
51 +<stabilize-allarches/>
52 +<upstream>
53 + <remote-id type="github">emacsmirror/mode-compile</remote-id>
54 +</upstream>
55 +</pkgmetadata>
56
57 diff --git a/app-emacs/mode-compile/mode-compile-2.29.1.ebuild b/app-emacs/mode-compile/mode-compile-2.29.1.ebuild
58 new file mode 100644
59 index 0000000..9f05df6
60 --- /dev/null
61 +++ b/app-emacs/mode-compile/mode-compile-2.29.1.ebuild
62 @@ -0,0 +1,17 @@
63 +# Copyright 1999-2014 Gentoo Foundation
64 +# Distributed under the terms of the GNU General Public License v2
65 +
66 +EAPI=5
67 +
68 +inherit elisp
69 +
70 +DESCRIPTION="Smart command for compiling files according to major-mode"
71 +HOMEPAGE="https://github.com/emacsmirror/mode-compile
72 + https://www.emacswiki.org/emacs/ModeCompile"
73 +SRC_URI="https://github.com/emacsmirror/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
74 +
75 +LICENSE="GPL-3+"
76 +SLOT="0"
77 +KEYWORDS="~amd64 ~x86"
78 +
79 +SITEFILE="50${PN}-gentoo.el"