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-xemacs/ebuild-mode/
Date: Fri, 03 Jun 2022 11:40:57
Message-Id: 1654256413.b4790f3da55e15064fb2833e90cf7b3eb603079a.ulm@gentoo
1 commit: b4790f3da55e15064fb2833e90cf7b3eb603079a
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 3 11:40:13 2022 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 3 11:40:13 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4790f3d
7
8 app-xemacs/ebuild-mode: drop 1.58
9
10 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
11
12 app-xemacs/ebuild-mode/Manifest | 1 -
13 app-xemacs/ebuild-mode/ebuild-mode-1.58.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 75ff3b2a1131..a29d4adcba70 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.56.tar.xz 36448 BLAKE2B 9126dd5d004a5818a5214f10c88db84faee3945ac25ee141a577a868bf7f127490ee34d6ea103fb788f96c391eea3d00d18abe12564a2f6c70650fc8fe9c6cdf SHA512 2b67208d9f553a322761dc9b64e7b891722c2099cc7c9bfc929e1a424b22ec32c594e0ba029554434b51ef233d2d4435b6c639b06c25fd551608fe5dd830cb03
22 -DIST ebuild-mode-1.58.tar.xz 36796 BLAKE2B c2762c0d00038206d9ceacb887c2c0a1503e7e5dbdc68796aaa27eec5cab52fae1d6e4baf5155b79842fd2e74d91dab1c203c26d9f68986155426b36635b7722 SHA512 37e393b5c5b6672045dea7aafa77df81f7aee2d16ead90e12841026442eac63fe3eece1538401dc4b7444573aec61f4c920f821b65f8489b5a48d54de4d78b52
23 DIST ebuild-mode-1.60.tar.xz 36996 BLAKE2B a566c9f602ec6ac4126a4a13610e515faf2a02b8ca89f417a037a28f4b9ea633518d589d78f6deb54084be34cdc30c2a1896546b2f86c1166cedd47289edcfd8 SHA512 b04b37b7a376dc48a7f80ec0e60bf36a8b7ea92edcbdd45fbd002e80e8ea29111905a726177a869d607adffe78094efcdc94b1aad32afe1444a09b4e714dcecd
24
25 diff --git a/app-xemacs/ebuild-mode/ebuild-mode-1.58.ebuild b/app-xemacs/ebuild-mode/ebuild-mode-1.58.ebuild
26 deleted file mode 100644
27 index 44559c96c2ab..000000000000
28 --- a/app-xemacs/ebuild-mode/ebuild-mode-1.58.ebuild
29 +++ /dev/null
30 @@ -1,36 +0,0 @@
31 -# Copyright 1999-2022 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
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 -}