public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Ulrich Müller" <ulm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-xemacs/ebuild-mode/
Date: Thu,  6 Jul 2023 16:27:13 +0000 (UTC)	[thread overview]
Message-ID: <1688660784.5ba14acebf102635c97036ec6ec4467087b634c3.ulm@gentoo> (raw)

commit:     5ba14acebf102635c97036ec6ec4467087b634c3
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Thu Jul  6 16:26:24 2023 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Thu Jul  6 16:26:24 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ba14ace

app-xemacs/ebuild-mode: drop 1.63, 1.64

Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 app-xemacs/ebuild-mode/Manifest                |  2 --
 app-xemacs/ebuild-mode/ebuild-mode-1.63.ebuild | 44 --------------------------
 app-xemacs/ebuild-mode/ebuild-mode-1.64.ebuild | 44 --------------------------
 3 files changed, 90 deletions(-)

diff --git a/app-xemacs/ebuild-mode/Manifest b/app-xemacs/ebuild-mode/Manifest
index ddbf87c04a15..35789289a37b 100644
--- a/app-xemacs/ebuild-mode/Manifest
+++ b/app-xemacs/ebuild-mode/Manifest
@@ -1,4 +1,2 @@
 DIST ebuild-mode-1.60.tar.xz 36996 BLAKE2B a566c9f602ec6ac4126a4a13610e515faf2a02b8ca89f417a037a28f4b9ea633518d589d78f6deb54084be34cdc30c2a1896546b2f86c1166cedd47289edcfd8 SHA512 b04b37b7a376dc48a7f80ec0e60bf36a8b7ea92edcbdd45fbd002e80e8ea29111905a726177a869d607adffe78094efcdc94b1aad32afe1444a09b4e714dcecd
-DIST ebuild-mode-1.63.tar.xz 39600 BLAKE2B 1746e0ab558fd7b48dc778f2287b3a9f2b5f82f5e4e53e353b0b9c3de3436a8ec17f827d93cf1ff990dd780a33435ea946e19ac655fd0f39fee03beb07ce5509 SHA512 264678921d8a2e535fedcc06c9c0932a4898f3d33cc54d79107658d9a77048e00c5ec276d4c74dc55c2ba2c643024453542f16619fde473d417b446bbd78175c
-DIST ebuild-mode-1.64.tar.xz 39872 BLAKE2B e6309f91276093d40c322e0b639c10067ac95f305a7333d4335182fc6f0bec34141bb3cac1fd577657a5d795338b1da0d1f2212b2c5fd6502d958129a1e8167b SHA512 0c760946070882e93fb10dbad6f1ceb4977b2b9f0b7786c1a99ecde7b16874f840ac9877dc531503b216b0d030e779bb3d0f9cec9eeb40bb211ec6f20ebe0f88
 DIST ebuild-mode-1.65.tar.xz 39952 BLAKE2B fba1a751e417d39e1d4ce6f9fbc9b5e3465bdddef5fd9a675f6649a3fddb56a8009ebf4c9b22bde349c2faf0009dc6f29ae1acb78632144fbf1b4b5b9e5fa4ca SHA512 fa8b16d68f3afd1ba3557e13d83a809d723bf0f0adf4741ee6897381835c96970a43c28191e9a90a0f096a164c183604caaee2e5ddb0769ed77fca34633cc0e3

diff --git a/app-xemacs/ebuild-mode/ebuild-mode-1.63.ebuild b/app-xemacs/ebuild-mode/ebuild-mode-1.63.ebuild
deleted file mode 100644
index 89d7b413d785..000000000000
--- a/app-xemacs/ebuild-mode/ebuild-mode-1.63.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit optfeature
-
-DESCRIPTION="Emacs modes for editing ebuilds and other Gentoo specific files"
-HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Emacs"
-SRC_URI="https://dev.gentoo.org/~ulm/emacs/${P}.tar.xz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~hppa ~x86"
-
-RDEPEND=">=app-editors/xemacs-21.4.20-r5
-	app-xemacs/sh-script"
-BDEPEND="${RDEPEND}"
-
-src_compile() {
-	local XEMACS="${EPREFIX}/usr/bin/xemacs"
-
-	"${XEMACS}" -batch -q --no-site-file \
-		-eval "(add-to-list 'load-path \".\")" \
-		-f batch-byte-compile \
-		ebuild-mode.el gentoo-newsitem-mode.el || die
-
-	"${XEMACS}" -batch -q --no-site-file \
-		-eval "(setq autoload-package-name \"${PN}\")" \
-		-eval "(setq generated-autoload-file \"${S}/auto-autoloads.el\")" \
-		-l autoload -f batch-update-autoloads \
-		ebuild-mode.el gentoo-newsitem-mode.el || die
-}
-
-src_install() {
-	insinto /usr/share/xemacs/site-packages/lisp/${PN}
-	doins *.el *.elc
-}
-
-pkg_postinst() {
-	optfeature "ebuild commands support" sys-apps/portage
-	optfeature "additional development tools" dev-util/pkgdev
-	optfeature "ebuild QA utilities" dev-util/pkgcheck
-}

diff --git a/app-xemacs/ebuild-mode/ebuild-mode-1.64.ebuild b/app-xemacs/ebuild-mode/ebuild-mode-1.64.ebuild
deleted file mode 100644
index db4d01173c23..000000000000
--- a/app-xemacs/ebuild-mode/ebuild-mode-1.64.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit optfeature
-
-DESCRIPTION="Emacs modes for editing ebuilds and other Gentoo specific files"
-HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Emacs"
-SRC_URI="https://dev.gentoo.org/~ulm/emacs/${P}.tar.xz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~hppa ~x86"
-
-RDEPEND=">=app-editors/xemacs-21.4.20-r5
-	app-xemacs/sh-script"
-BDEPEND="${RDEPEND}"
-
-src_compile() {
-	local XEMACS="${EPREFIX}/usr/bin/xemacs"
-
-	"${XEMACS}" -batch -q --no-site-file \
-		-eval "(add-to-list 'load-path nil)" \
-		-f batch-byte-compile \
-		ebuild-mode.el gentoo-newsitem-mode.el || die
-
-	"${XEMACS}" -batch -q --no-site-file \
-		-eval "(setq autoload-package-name \"${PN}\")" \
-		-eval "(setq generated-autoload-file \"${S}/auto-autoloads.el\")" \
-		-l autoload -f batch-update-autoloads \
-		ebuild-mode.el gentoo-newsitem-mode.el || die
-}
-
-src_install() {
-	insinto /usr/share/xemacs/site-packages/lisp/${PN}
-	doins *.el *.elc
-}
-
-pkg_postinst() {
-	optfeature "ebuild commands support" sys-apps/portage
-	optfeature "additional development tools" dev-util/pkgdev
-	optfeature "ebuild QA utilities" dev-util/pkgcheck
-}


             reply	other threads:[~2023-07-06 16:27 UTC|newest]

Thread overview: 112+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-06 16:27 Ulrich Müller [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-09-27 23:23 [gentoo-commits] repo/gentoo:master commit in: app-xemacs/ebuild-mode/ Jakov Smolić
2024-09-07 15:15 Ulrich Müller
2024-09-05 18:19 Ulrich Müller
2024-08-29 17:46 Ulrich Müller
2024-08-28 17:21 Ulrich Müller
2024-08-15 17:28 Ulrich Müller
2024-08-15 17:28 Ulrich Müller
2024-08-01 16:47 Arthur Zamarin
2024-07-01  8:26 Ulrich Müller
2024-06-29 16:20 Sam James
2024-06-29 15:01 Ulrich Müller
2024-06-09  8:31 Ulrich Müller
2024-06-09  8:31 Ulrich Müller
2024-03-17 17:49 Ulrich Müller
2024-03-17  9:18 Arthur Zamarin
2024-01-08 16:08 Ulrich Müller
2023-12-06 20:17 Ulrich Müller
2023-12-06 20:17 Ulrich Müller
2023-11-05 17:38 Ulrich Müller
2023-11-02 11:57 Ulrich Müller
2023-10-13 14:14 Arthur Zamarin
2023-10-07  7:39 Ulrich Müller
2023-10-07  7:39 Ulrich Müller
2023-09-12 17:01 Ulrich Müller
2023-08-30 17:24 Ulrich Müller
2023-08-30  8:43 Sam James
2023-08-29 18:52 Ulrich Müller
2023-07-06 16:27 Ulrich Müller
2023-06-17 18:47 Ulrich Müller
2023-06-17 18:13 Ulrich Müller
2023-06-17 18:13 Ulrich Müller
2023-03-26 14:05 Ulrich Müller
2023-02-27 18:18 Ulrich Müller
2023-02-27 18:18 Ulrich Müller
2022-12-22 18:48 Ulrich Müller
2022-12-01 18:37 Ulrich Müller
2022-12-01 18:37 Ulrich Müller
2022-06-03 11:40 Ulrich Müller
2022-06-03 11:33 Jakov Smolić
2022-05-21 20:04 Ulrich Müller
2022-05-21 20:04 Ulrich Müller
2022-05-20 18:25 Ulrich Müller
2022-05-07 20:54 Ulrich Müller
2022-05-07 20:54 Ulrich Müller
2022-05-07  8:59 Ulrich Müller
2022-04-30  7:33 Ulrich Müller
2022-04-30  7:33 Ulrich Müller
2022-04-17  8:57 Jakov Smolić
2022-04-17  8:09 Ulrich Müller
2022-03-18 19:43 Ulrich Müller
2022-02-16  8:12 Ulrich Müller
2022-02-16  0:17 Jakov Smolić
2022-01-16 11:47 Ulrich Müller
2022-01-16 11:47 Ulrich Müller
2021-12-28 10:02 Ulrich Müller
2021-10-09 12:10 Mats Lidell
2021-07-12 18:53 Ulrich Müller
2021-03-20 18:32 Ulrich Müller
2021-03-20 18:32 Ulrich Müller
2020-09-18 15:05 Agostino Sarubbo
2020-08-23  9:44 Ulrich Müller
2020-07-21 20:36 Ulrich Müller
2020-04-15 10:03 Ulrich Müller
2020-04-14 13:02 Agostino Sarubbo
2020-04-13 16:06 Agostino Sarubbo
2020-03-07 22:51 Ulrich Müller
2020-03-07 22:51 Ulrich Müller
2020-02-06  7:51 Sergei Trofimovich
2020-01-23 12:18 Agostino Sarubbo
2020-01-23 10:59 Agostino Sarubbo
2019-12-21 16:32 Ulrich Müller
2019-12-14 22:52 Ulrich Müller
2019-12-14 22:52 Ulrich Müller
2019-12-11 19:24 Ulrich Müller
2019-08-28 18:28 Sergei Trofimovich
2019-08-28  9:51 Agostino Sarubbo
2019-08-27 20:45 Agostino Sarubbo
2019-07-28 17:39 Ulrich Müller
2019-06-06 21:31 Ulrich Müller
2018-11-08 23:35 Sergei Trofimovich
2018-11-07 10:09 Mikle Kolyada
2018-10-26 18:50 Thomas Deutschmann
2018-10-25 19:11 Ulrich Müller
2018-09-23 15:53 Mikle Kolyada
2018-09-17 21:26 Ulrich Müller
2018-09-04  7:02 Ulrich Müller
2018-07-23 16:20 Ulrich Müller
2018-07-23  0:17 Mikle Kolyada
2018-06-23  7:31 Ulrich Müller
2018-04-17 19:12 Ulrich Müller
2018-03-17 10:33 Ulrich Müller
2018-03-17 10:33 Ulrich Müller
2018-03-05 14:31 Agostino Sarubbo
2018-03-03  9:41 Ulrich Müller
2018-01-29 10:17 Ulrich Müller
2018-01-29 10:17 Ulrich Müller
2017-12-25 12:16 Ulrich Müller
2017-12-25 12:16 Ulrich Müller
2017-10-29 20:59 Ulrich Müller
2017-10-29 20:51 Mats Lidell
2017-09-15 17:25 Ulrich Müller
2017-06-04 11:09 Ulrich Müller
2017-05-04 21:46 Jeroen Roovers
2017-05-04 15:55 Agostino Sarubbo
2017-05-04 13:07 Agostino Sarubbo
2017-04-07 18:47 Ulrich Müller
2017-04-07 17:15 Ulrich Müller
2017-04-07 17:15 Ulrich Müller
2016-03-18 19:11 Michał Górny
2016-01-25  0:46 Ulrich Müller
2016-01-24 20:14 Ulrich Müller

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1688660784.5ba14acebf102635c97036ec6ec4467087b634c3.ulm@gentoo \
    --to=ulm@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox