Gentoo Archives: gentoo-commits

From: Mats Lidell <matsl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-xemacs/ebuild-mode/
Date: Sat, 09 Oct 2021 12:10:08
Message-Id: 1633781397.a06173c6603ff254f22fc615246d2fec0af23a1e.matsl@gentoo
1 commit: a06173c6603ff254f22fc615246d2fec0af23a1e
2 Author: Mats Lidell <matsl <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 9 12:09:10 2021 +0000
4 Commit: Mats Lidell <matsl <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 9 12:09:57 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a06173c6
7
8 app-xemacs/ebuild-mode: drop 1.52
9
10 Signed-off-by: Mats Lidell <matsl <AT> gentoo.org>
11
12 app-xemacs/ebuild-mode/Manifest | 1 -
13 app-xemacs/ebuild-mode/ebuild-mode-1.52.ebuild | 36 --------------------------
14 2 files changed, 37 deletions(-)
15
16 diff --git a/app-xemacs/ebuild-mode/Manifest b/app-xemacs/ebuild-mode/Manifest
17 index 89ffac6a02c..c6cb5ae44a3 100644
18 --- a/app-xemacs/ebuild-mode/Manifest
19 +++ b/app-xemacs/ebuild-mode/Manifest
20 @@ -1,3 +1,2 @@
21 DIST ebuild-mode-1.51.tar.xz 35280 BLAKE2B 63f57919bb73937ce3d40b4d6762e78c78d273bcf67875434d12450e00632d457d3dedbe6f213c1979a60cbc0a0874723e3e9424fdcfb64a48acc885cc90e577 SHA512 ff9ece96fbe7bfc9c070769dc6667e8c33f8fb7ef20a2d347c670342ef7500b52b54a93ed37ac9ea13a89c1b89752f5dd6e56c234abe9a4fcd4eb6bad0d0b466
22 -DIST ebuild-mode-1.52.tar.xz 36100 BLAKE2B d5207d910088de9cf1a41580ce61c49632e8e7c1a1af5d95ba13a7865125ca487d770731bb49e12fdc36d3f557fadd51109de628e958166d064be025e4b91257 SHA512 852f968b44c80f98363d4663856317946992cf5d0daf9a9c63e8ec17c1a684e28c2de510ded98bd2ef84428d8d094c1b6f5060510e6475ce60183fbc8e5a0322
23 DIST ebuild-mode-1.53.tar.xz 35920 BLAKE2B ee932441e23ba4b876e98feb9ff9dfea2e395296846e14f776ac10f4c5bab6b711161b4c890b0d8f2ccb5749db5bced3f693aa172e3ae92af506fee26fb5750a SHA512 8fcc28139c0cace21159a0b5026573f401f65b4501ff888f9818d8f5a506a7bc1f8d8a133f775619efc9e16e2172d6b5daba539b4e38b1a378c0b35395263ef9
24
25 diff --git a/app-xemacs/ebuild-mode/ebuild-mode-1.52.ebuild b/app-xemacs/ebuild-mode/ebuild-mode-1.52.ebuild
26 deleted file mode 100644
27 index 1ff99d0876b..00000000000
28 --- a/app-xemacs/ebuild-mode/ebuild-mode-1.52.ebuild
29 +++ /dev/null
30 @@ -1,36 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -DESCRIPTION="Emacs modes for editing ebuilds and other Gentoo specific files"
37 -HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Emacs"
38 -SRC_URI="https://dev.gentoo.org/~ulm/emacs/${P}.tar.xz"
39 -
40 -LICENSE="GPL-2+"
41 -SLOT="0"
42 -KEYWORDS="~amd64 ~hppa ~x86"
43 -
44 -RDEPEND=">=app-editors/xemacs-21.4.20-r5
45 - app-xemacs/sh-script"
46 -BDEPEND="${RDEPEND}"
47 -
48 -src_compile() {
49 - local XEMACS="${EPREFIX}/usr/bin/xemacs"
50 -
51 - "${XEMACS}" -batch -q --no-site-file \
52 - -eval "(add-to-list 'load-path \".\")" \
53 - -f batch-byte-compile \
54 - ebuild-mode.el gentoo-newsitem-mode.el || die
55 -
56 - "${XEMACS}" -batch -q --no-site-file \
57 - -eval "(setq autoload-package-name \"${PN}\")" \
58 - -eval "(setq generated-autoload-file \"${S}/auto-autoloads.el\")" \
59 - -l autoload -f batch-update-autoloads \
60 - ebuild-mode.el gentoo-newsitem-mode.el || die
61 -}
62 -
63 -src_install() {
64 - insinto /usr/share/xemacs/site-packages/lisp/${PN}
65 - doins *.el *.elc
66 -}