* [gentoo-commits] repo/proj/emacs:master commit in: app-xemacs/ebuild-mode/
@ 2021-04-07 15:14 Ulrich Müller
0 siblings, 0 replies; 11+ messages in thread
From: Ulrich Müller @ 2021-04-07 15:14 UTC (permalink / raw
To: gentoo-commits
commit: 380e8fc9c854b0de68974d66c3f0dc18fc2c383f
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 7 15:14:21 2021 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Wed Apr 7 15:14:21 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=380e8fc9
app-xemacs/ebuild-mode: Initial import
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild | 42 ++++++++++++++++++++++++++
app-xemacs/ebuild-mode/metadata.xml | 15 +++++++++
2 files changed, 57 insertions(+)
diff --git a/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild b/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
new file mode 100644
index 0000000..ed3a18b
--- /dev/null
+++ b/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/ebuild-mode.git"
+EGIT_BRANCH="master"
+EGIT_CHECKOUT_DIR="${WORKDIR}/${PN}"
+
+inherit git-r3
+
+DESCRIPTION="Emacs modes for editing ebuilds and other Gentoo specific files"
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Emacs"
+
+LICENSE="GPL-2+"
+SLOT="0"
+
+RDEPEND=">=app-editors/xemacs-21.4.20-r5
+ app-xemacs/sh-script"
+BDEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${PN}"
+
+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
+}
diff --git a/app-xemacs/ebuild-mode/metadata.xml b/app-xemacs/ebuild-mode/metadata.xml
new file mode 100644
index 0000000..f476c13
--- /dev/null
+++ b/app-xemacs/ebuild-mode/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>xemacs@gentoo.org</email>
+ <name>Gentoo XEmacs project</name>
+ </maintainer>
+ <stabilize-allarches/>
+ <upstream>
+ <maintainer status="active">
+ <email>emacs@gentoo.org</email>
+ <name>Gentoo Emacs project</name>
+ </maintainer>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/emacs:master commit in: app-xemacs/ebuild-mode/
@ 2022-12-27 13:21 Ulrich Müller
0 siblings, 0 replies; 11+ messages in thread
From: Ulrich Müller @ 2022-12-27 13:21 UTC (permalink / raw
To: gentoo-commits
commit: 88e94a50788f60c6e8c7d611cac1c9ecd331a78a
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 27 13:21:41 2022 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Tue Dec 27 13:21:41 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=88e94a50
app-xemacs/ebuild-mode: Sync from Gentoo repository
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild | 15 +++++++++++----
1 file changed, 11 insertions(+), 4 deletions(-)
diff --git a/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild b/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
index ed3a18b..3cf1ccd 100644
--- a/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
+++ b/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
@@ -1,7 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
+
+inherit optfeature
EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/ebuild-mode.git"
EGIT_BRANCH="master"
@@ -11,6 +13,7 @@ inherit git-r3
DESCRIPTION="Emacs modes for editing ebuilds and other Gentoo specific files"
HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Emacs"
+S="${WORKDIR}/${PN}"
LICENSE="GPL-2+"
SLOT="0"
@@ -19,8 +22,6 @@ RDEPEND=">=app-editors/xemacs-21.4.20-r5
app-xemacs/sh-script"
BDEPEND="${RDEPEND}"
-S="${WORKDIR}/${PN}"
-
src_compile() {
local XEMACS="${EPREFIX}/usr/bin/xemacs"
@@ -40,3 +41,9 @@ 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
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/emacs:master commit in: app-xemacs/ebuild-mode/
@ 2024-08-10 17:19 Ulrich Müller
0 siblings, 0 replies; 11+ messages in thread
From: Ulrich Müller @ 2024-08-10 17:19 UTC (permalink / raw
To: gentoo-commits
commit: 5881298b49d0d741286cc6474f4dfdb9f433d66a
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 10 17:18:21 2024 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Aug 10 17:18:21 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=5881298b
app-xemacs/ebuild-mode: Add empty src_test
Tests need ert which is not available for XEmacs.
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild b/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
index 3cf1ccd..713020d 100644
--- a/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
+++ b/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -37,6 +37,8 @@ src_compile() {
ebuild-mode.el gentoo-newsitem-mode.el || die
}
+src_test() { :; } # ert is not available for XEmacs
+
src_install() {
insinto /usr/share/xemacs/site-packages/lisp/${PN}
doins *.el *.elc
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/emacs:master commit in: app-xemacs/ebuild-mode/
@ 2024-08-15 17:31 Ulrich Müller
0 siblings, 0 replies; 11+ messages in thread
From: Ulrich Müller @ 2024-08-15 17:31 UTC (permalink / raw
To: gentoo-commits
commit: ac10af1fb35ccf4c6be1135020f65ae21556ae21
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 15 17:30:56 2024 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Thu Aug 15 17:30:56 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=ac10af1f
app-xemacs/ebuild-mode: Sync from Gentoo repository
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild b/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
index 713020d..df29194 100644
--- a/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
+++ b/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
@@ -26,7 +26,7 @@ src_compile() {
local XEMACS="${EPREFIX}/usr/bin/xemacs"
"${XEMACS}" -batch -q --no-site-file \
- -eval "(add-to-list 'load-path \".\")" \
+ -eval "(add-to-list 'load-path nil)" \
-f batch-byte-compile \
ebuild-mode.el gentoo-newsitem-mode.el || die
@@ -37,7 +37,7 @@ src_compile() {
ebuild-mode.el gentoo-newsitem-mode.el || die
}
-src_test() { :; } # ert is not available for XEmacs
+src_test() { :; } # ERT is not yet available for XEmacs
src_install() {
insinto /usr/share/xemacs/site-packages/lisp/${PN}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/emacs:master commit in: app-xemacs/ebuild-mode/
@ 2024-08-25 13:09 Ulrich Müller
0 siblings, 0 replies; 11+ messages in thread
From: Ulrich Müller @ 2024-08-25 13:09 UTC (permalink / raw
To: gentoo-commits
commit: c053d4b9e8a030d0b6ef5cc18ee75c4b4491bf45
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 25 13:09:20 2024 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sun Aug 25 13:09:20 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=c053d4b9
app-xemacs/ebuild-mode: Create a link in /usr/lib/xemacs
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild | 2 ++
1 file changed, 2 insertions(+)
diff --git a/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild b/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
index df29194..e8a7b29 100644
--- a/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
+++ b/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
@@ -42,6 +42,8 @@ src_test() { :; } # ERT is not yet available for XEmacs
src_install() {
insinto /usr/share/xemacs/site-packages/lisp/${PN}
doins *.el *.elc
+ # XEmacs 21.4 compatibility
+ dosym -r /usr/{share,lib}/xemacs/site-packages/lisp/${PN}
}
pkg_postinst() {
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/emacs:master commit in: app-xemacs/ebuild-mode/
@ 2024-08-25 16:13 Ulrich Müller
0 siblings, 0 replies; 11+ messages in thread
From: Ulrich Müller @ 2024-08-25 16:13 UTC (permalink / raw
To: gentoo-commits
commit: 9dfefe999455c8c29de495bd250b89066de11ec0
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 25 16:11:33 2024 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sun Aug 25 16:11:33 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=9dfefe99
app-xemacs/ebuild-mode: Enable tests
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild | 22 +++++++++++++++-------
1 file changed, 15 insertions(+), 7 deletions(-)
diff --git a/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild b/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
index e8a7b29..08028ad 100644
--- a/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
+++ b/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
@@ -17,31 +17,39 @@ S="${WORKDIR}/${PN}"
LICENSE="GPL-2+"
SLOT="0"
+IUSE="test"
+RESTRICT="!test? ( test )"
-RDEPEND=">=app-editors/xemacs-21.4.20-r5
+RDEPEND=">=app-editors/xemacs-21.4.24-r9
app-xemacs/sh-script"
-BDEPEND="${RDEPEND}"
+BDEPEND="${RDEPEND}
+ test? ( || (
+ >=app-editors/xemacs-21.5.35
+ app-xemacs/test-harness
+ ) )"
src_compile() {
- local XEMACS="${EPREFIX}/usr/bin/xemacs"
+ local EMACS="${EPREFIX}/usr/bin/xemacs"
- "${XEMACS}" -batch -q --no-site-file \
+ "${EMACS}" -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 \
+ "${EMACS}" -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_test() { :; } # ERT is not yet available for XEmacs
+src_test() {
+ emake check EMACS="${EPREFIX}/usr/bin/xemacs"
+}
src_install() {
insinto /usr/share/xemacs/site-packages/lisp/${PN}
- doins *.el *.elc
+ doins ebuild-mode.{el,elc} gentoo-newsitem-mode.{el,elc} auto-autoloads.el
# XEmacs 21.4 compatibility
dosym -r /usr/{share,lib}/xemacs/site-packages/lisp/${PN}
}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/emacs:master commit in: app-xemacs/ebuild-mode/
@ 2024-08-26 4:41 Ulrich Müller
0 siblings, 0 replies; 11+ messages in thread
From: Ulrich Müller @ 2024-08-26 4:41 UTC (permalink / raw
To: gentoo-commits
commit: 5bbb588a96e003c312fcc45e36879001060fde78
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 26 04:40:23 2024 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Mon Aug 26 04:40:23 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=5bbb588a
app-xemacs/ebuild-mode: Install only under /usr/lib/xemacs
Otherwise XEmacs 21.5 will complain about duplicate autoloads.
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild b/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
index 08028ad..9205e6d 100644
--- a/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
+++ b/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
@@ -48,10 +48,8 @@ src_test() {
}
src_install() {
- insinto /usr/share/xemacs/site-packages/lisp/${PN}
+ insinto /usr/lib/xemacs/site-packages/lisp/${PN}
doins ebuild-mode.{el,elc} gentoo-newsitem-mode.{el,elc} auto-autoloads.el
- # XEmacs 21.4 compatibility
- dosym -r /usr/{share,lib}/xemacs/site-packages/lisp/${PN}
}
pkg_postinst() {
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/emacs:master commit in: app-xemacs/ebuild-mode/
@ 2024-08-28 17:16 Ulrich Müller
0 siblings, 0 replies; 11+ messages in thread
From: Ulrich Müller @ 2024-08-28 17:16 UTC (permalink / raw
To: gentoo-commits
commit: 469c826d79bde7159871b5303d4153bd831b5759
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 28 17:15:37 2024 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Wed Aug 28 17:15:37 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=469c826d
app-xemacs/ebuild-mode: Assign EMACS and EMACSFLAGS in global scope
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild b/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
index 9205e6d..8cd372d 100644
--- a/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
+++ b/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
@@ -28,15 +28,16 @@ BDEPEND="${RDEPEND}
app-xemacs/test-harness
) )"
-src_compile() {
- local EMACS="${EPREFIX}/usr/bin/xemacs"
+EMACS="${EPREFIX}/usr/bin/xemacs"
+EMACSFLAGS="-batch -q --no-site-file"
- "${EMACS}" -batch -q --no-site-file \
+src_compile() {
+ ${EMACS} ${EMACSFLAGS} \
-eval "(add-to-list 'load-path nil)" \
-f batch-byte-compile \
ebuild-mode.el gentoo-newsitem-mode.el || die
- "${EMACS}" -batch -q --no-site-file \
+ ${EMACS} ${EMACSFLAGS} \
-eval "(setq autoload-package-name \"${PN}\")" \
-eval "(setq generated-autoload-file \"${S}/auto-autoloads.el\")" \
-l autoload -f batch-update-autoloads \
@@ -44,12 +45,13 @@ src_compile() {
}
src_test() {
- emake check EMACS="${EPREFIX}/usr/bin/xemacs"
+ emake check EMACS="${EMACS}" EMACSFLAGS="${EMACSFLAGS}"
}
src_install() {
insinto /usr/lib/xemacs/site-packages/lisp/${PN}
- doins ebuild-mode.{el,elc} gentoo-newsitem-mode.{el,elc} auto-autoloads.el
+ doins ebuild-mode.{el,elc} gentoo-newsitem-mode.{el,elc}
+ doins auto-autoloads.el
}
pkg_postinst() {
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/emacs:master commit in: app-xemacs/ebuild-mode/
@ 2024-09-07 15:15 Ulrich Müller
0 siblings, 0 replies; 11+ messages in thread
From: Ulrich Müller @ 2024-09-07 15:15 UTC (permalink / raw
To: gentoo-commits
commit: 963a7c5772a5ab1def616f7571375863e1da5092
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 7 15:14:07 2024 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Sep 7 15:14:07 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=963a7c57
app-xemacs/ebuild-mode: Sync from Gentoo repository
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild b/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
index 8cd372d..d462d78 100644
--- a/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
+++ b/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
@@ -50,7 +50,8 @@ src_test() {
src_install() {
insinto /usr/lib/xemacs/site-packages/lisp/${PN}
- doins ebuild-mode.{el,elc} gentoo-newsitem-mode.{el,elc}
+ doins ebuild-mode.{el,elc} ebuild-mode-keywords.el \
+ gentoo-newsitem-mode.{el,elc}
doins auto-autoloads.el
}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/emacs:master commit in: app-xemacs/ebuild-mode/
@ 2024-11-03 17:54 Ulrich Müller
0 siblings, 0 replies; 11+ messages in thread
From: Ulrich Müller @ 2024-11-03 17:54 UTC (permalink / raw
To: gentoo-commits
commit: b162f560dc7630f69b9b1b9e8311c0349a000e88
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 3 17:51:24 2024 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sun Nov 3 17:51:24 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=b162f560
app-xemacs/ebuild-mode: Require XEmacs 21.5
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild | 10 ++--------
1 file changed, 2 insertions(+), 8 deletions(-)
diff --git a/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild b/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
index d462d78..ec1c5f5 100644
--- a/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
+++ b/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
@@ -17,16 +17,10 @@ S="${WORKDIR}/${PN}"
LICENSE="GPL-2+"
SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-RDEPEND=">=app-editors/xemacs-21.4.24-r9
+RDEPEND=">=app-editors/xemacs-21.5.35
app-xemacs/sh-script"
-BDEPEND="${RDEPEND}
- test? ( || (
- >=app-editors/xemacs-21.5.35
- app-xemacs/test-harness
- ) )"
+BDEPEND="${RDEPEND}"
EMACS="${EPREFIX}/usr/bin/xemacs"
EMACSFLAGS="-batch -q --no-site-file"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/emacs:master commit in: app-xemacs/ebuild-mode/
@ 2024-11-03 18:42 Ulrich Müller
0 siblings, 0 replies; 11+ messages in thread
From: Ulrich Müller @ 2024-11-03 18:42 UTC (permalink / raw
To: gentoo-commits
commit: 3c825ad5ec4b4f9a8675084903ddfb804283e1ac
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 3 18:41:15 2024 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sun Nov 3 18:41:15 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=3c825ad5
app-xemacs/ebuild-mode: Fix EMACSFLAGS
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild b/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
index ec1c5f5..793656a 100644
--- a/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
+++ b/app-xemacs/ebuild-mode/ebuild-mode-9999.ebuild
@@ -23,7 +23,7 @@ RDEPEND=">=app-editors/xemacs-21.5.35
BDEPEND="${RDEPEND}"
EMACS="${EPREFIX}/usr/bin/xemacs"
-EMACSFLAGS="-batch -q --no-site-file"
+EMACSFLAGS="-batch -q -no-site-file"
src_compile() {
${EMACS} ${EMACSFLAGS} \
^ permalink raw reply related [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-11-03 18:42 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-07 15:15 [gentoo-commits] repo/proj/emacs:master commit in: app-xemacs/ebuild-mode/ Ulrich Müller
-- strict thread matches above, loose matches on Subject: below --
2024-11-03 18:42 Ulrich Müller
2024-11-03 17:54 Ulrich Müller
2024-08-28 17:16 Ulrich Müller
2024-08-26 4:41 Ulrich Müller
2024-08-25 16:13 Ulrich Müller
2024-08-25 13:09 Ulrich Müller
2024-08-15 17:31 Ulrich Müller
2024-08-10 17:19 Ulrich Müller
2022-12-27 13:21 Ulrich Müller
2021-04-07 15:14 Ulrich Müller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox