* [gentoo-commits] repo/gentoo:master commit in: app-emacs/epl/
@ 2022-04-12 22:27 Maciej Barć
0 siblings, 0 replies; 14+ messages in thread
From: Maciej Barć @ 2022-04-12 22:27 UTC (permalink / raw
To: gentoo-commits
commit: 6f02589fe3a2dc1c51e33238a573c7ad1c672998
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 12 22:10:52 2022 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Tue Apr 12 22:10:52 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f02589f
app-emacs/epl: add the Gentoo GNU Emacs project to maintainers
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-emacs/epl/metadata.xml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/app-emacs/epl/metadata.xml b/app-emacs/epl/metadata.xml
index 4acb98f80f22..cd06d04e64a7 100644
--- a/app-emacs/epl/metadata.xml
+++ b/app-emacs/epl/metadata.xml
@@ -9,6 +9,10 @@
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
+ <maintainer type="project">
+ <email>gnu-emacs@gentoo.org</email>
+ <name>Gentoo GNU Emacs project</name>
+ </maintainer>
<upstream>
<remote-id type="github">cask/epl</remote-id>
<doc>https://github.com/cask/epl/blob/master/README.md</doc>
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/epl/
@ 2022-04-19 17:27 Maciej Barć
0 siblings, 0 replies; 14+ messages in thread
From: Maciej Barć @ 2022-04-19 17:27 UTC (permalink / raw
To: gentoo-commits
commit: 433c80f67990133aaee909338786c24a25b918ef
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 19 17:25:55 2022 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Tue Apr 19 17:27:33 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=433c80f6
app-emacs/epl: enable tests; bump EAPI to 8; format
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-emacs/epl/{epl-0.9.ebuild => epl-0.9-r1.ebuild} | 19 +++++++++++++------
1 file changed, 13 insertions(+), 6 deletions(-)
diff --git a/app-emacs/epl/epl-0.9.ebuild b/app-emacs/epl/epl-0.9-r1.ebuild
similarity index 64%
rename from app-emacs/epl/epl-0.9.ebuild
rename to app-emacs/epl/epl-0.9-r1.ebuild
index 8a13d13e32de..0b280f43e459 100644
--- a/app-emacs/epl/epl-0.9.ebuild
+++ b/app-emacs/epl/epl-0.9-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 2021 Gentoo Authors
+# Copyright 2021-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
-NEED_EMACS="24"
+NEED_EMACS=24
inherit elisp
@@ -11,10 +11,17 @@ DESCRIPTION="A convenient high-level API for package.el"
HOMEPAGE="https://github.com/cask/epl"
SRC_URI="https://github.com/cask/epl/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
-LICENSE="GPL-3"
+LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64"
-RESTRICT="test" # test requires cask and ert-runner which are not packaged
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="test? ( app-emacs/ert-runner )"
-SITEFILE="50epl-gentoo.el"
DOCS=( README.md )
+SITEFILE="50epl-gentoo.el"
+
+src_test() {
+ ert-runner || die
+}
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/epl/
@ 2022-04-20 13:49 Maciej Barć
0 siblings, 0 replies; 14+ messages in thread
From: Maciej Barć @ 2022-04-20 13:49 UTC (permalink / raw
To: gentoo-commits
commit: d2f2758d03efd839ece09a189840706d2b56c1da
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 20 13:49:18 2022 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Wed Apr 20 13:49:18 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2f2758d
app-emacs/epl: update ert-runner invocation for better reporting
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-emacs/epl/epl-0.9-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-emacs/epl/epl-0.9-r1.ebuild b/app-emacs/epl/epl-0.9-r1.ebuild
index 0b280f43e459..d286d49c557a 100644
--- a/app-emacs/epl/epl-0.9-r1.ebuild
+++ b/app-emacs/epl/epl-0.9-r1.ebuild
@@ -23,5 +23,5 @@ DOCS=( README.md )
SITEFILE="50epl-gentoo.el"
src_test() {
- ert-runner || die
+ ert-runner --reporter ert+duration --script || die
}
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/epl/
@ 2022-07-31 6:44 Sam James
0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2022-07-31 6:44 UTC (permalink / raw
To: gentoo-commits
commit: 821638a9ef4d6d6536d9133e5d6d64cc0e8707a8
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 31 06:43:44 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jul 31 06:43:53 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=821638a9
app-emacs/epl: keyword 0.9-r1 for ~x64-macos
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-emacs/epl/epl-0.9-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-emacs/epl/epl-0.9-r1.ebuild b/app-emacs/epl/epl-0.9-r1.ebuild
index d286d49c557a..c81cc69e6cb7 100644
--- a/app-emacs/epl/epl-0.9-r1.ebuild
+++ b/app-emacs/epl/epl-0.9-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/cask/epl/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.
LICENSE="GPL-3+"
SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x64-macos"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/epl/
@ 2022-08-01 20:28 Maciej Barć
0 siblings, 0 replies; 14+ messages in thread
From: Maciej Barć @ 2022-08-01 20:28 UTC (permalink / raw
To: gentoo-commits
commit: 4c034f91caed438b361c0db217f99e3c00e4c735
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 1 20:27:08 2022 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Mon Aug 1 20:28:43 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c034f91
app-emacs/epl: remove ert-runner dependency
to make our lives easier ;^)
Bug: https://bugs.gentoo.org/862858
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-emacs/epl/{epl-0.9-r1.ebuild => epl-0.9-r2.ebuild} | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/app-emacs/epl/epl-0.9-r1.ebuild b/app-emacs/epl/epl-0.9-r2.ebuild
similarity index 77%
rename from app-emacs/epl/epl-0.9-r1.ebuild
rename to app-emacs/epl/epl-0.9-r2.ebuild
index c81cc69e6cb7..377b6330fda9 100644
--- a/app-emacs/epl/epl-0.9-r1.ebuild
+++ b/app-emacs/epl/epl-0.9-r2.ebuild
@@ -17,11 +17,12 @@ KEYWORDS="~amd64 ~x64-macos"
IUSE="test"
RESTRICT="!test? ( test )"
-BDEPEND="test? ( app-emacs/ert-runner )"
+BDEPEND="test? ( app-emacs/f )"
DOCS=( README.md )
SITEFILE="50epl-gentoo.el"
src_test() {
- ert-runner --reporter ert+duration --script || die
+ ${EMACS} ${EMACSFLAGS} -L . -L test -l epl.el -l test/epl-test.el \
+ -f ert-run-tests-batch-and-exit || die
}
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/epl/
@ 2022-08-02 16:01 Arthur Zamarin
0 siblings, 0 replies; 14+ messages in thread
From: Arthur Zamarin @ 2022-08-02 16:01 UTC (permalink / raw
To: gentoo-commits
commit: 9480d497a6c02324cffed8704f80e9c72c68d221
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 2 16:01:34 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Aug 2 16:01:34 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9480d497
app-emacs/epl: Keyword 0.9-r2 arm, #862858
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-emacs/epl/epl-0.9-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-emacs/epl/epl-0.9-r2.ebuild b/app-emacs/epl/epl-0.9-r2.ebuild
index bad4a06095f8..fc8ee28a984c 100644
--- a/app-emacs/epl/epl-0.9-r2.ebuild
+++ b/app-emacs/epl/epl-0.9-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/cask/epl/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.
LICENSE="GPL-3+"
SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x64-macos"
+KEYWORDS="~amd64 ~arm ~ppc64 ~x64-macos"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/epl/
@ 2022-08-02 16:01 Arthur Zamarin
0 siblings, 0 replies; 14+ messages in thread
From: Arthur Zamarin @ 2022-08-02 16:01 UTC (permalink / raw
To: gentoo-commits
commit: 0831b997febea6c98f75b8cc3da57ce65d648d5a
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 2 16:01:33 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Aug 2 16:01:33 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0831b997
app-emacs/epl: Keyword 0.9-r2 ppc64, #862858
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-emacs/epl/epl-0.9-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-emacs/epl/epl-0.9-r2.ebuild b/app-emacs/epl/epl-0.9-r2.ebuild
index 377b6330fda9..bad4a06095f8 100644
--- a/app-emacs/epl/epl-0.9-r2.ebuild
+++ b/app-emacs/epl/epl-0.9-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/cask/epl/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.
LICENSE="GPL-3+"
SLOT="0"
-KEYWORDS="~amd64 ~x64-macos"
+KEYWORDS="~amd64 ~ppc64 ~x64-macos"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/epl/
@ 2022-08-02 16:01 Arthur Zamarin
0 siblings, 0 replies; 14+ messages in thread
From: Arthur Zamarin @ 2022-08-02 16:01 UTC (permalink / raw
To: gentoo-commits
commit: 6c409843586bcab9456f023ef6fa60159598d890
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 2 16:01:36 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Aug 2 16:01:36 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c409843
app-emacs/epl: Keyword 0.9-r2 arm64, #862858
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-emacs/epl/epl-0.9-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-emacs/epl/epl-0.9-r2.ebuild b/app-emacs/epl/epl-0.9-r2.ebuild
index fc8ee28a984c..41bf2357188b 100644
--- a/app-emacs/epl/epl-0.9-r2.ebuild
+++ b/app-emacs/epl/epl-0.9-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/cask/epl/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.
LICENSE="GPL-3+"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc64 ~x64-macos"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x64-macos"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/epl/
@ 2022-08-27 12:42 Jakov Smolić
0 siblings, 0 replies; 14+ messages in thread
From: Jakov Smolić @ 2022-08-27 12:42 UTC (permalink / raw
To: gentoo-commits
commit: 6a9e7cb5d4dd982f20e3f8c2337bcef0a8719793
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 27 12:06:37 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sat Aug 27 12:41:21 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a9e7cb5
app-emacs/epl: keyword 0.9-r2 for ~riscv
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
app-emacs/epl/epl-0.9-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-emacs/epl/epl-0.9-r2.ebuild b/app-emacs/epl/epl-0.9-r2.ebuild
index 41bf2357188b..7d4beccc65f0 100644
--- a/app-emacs/epl/epl-0.9-r2.ebuild
+++ b/app-emacs/epl/epl-0.9-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/cask/epl/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.
LICENSE="GPL-3+"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x64-macos"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x64-macos"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/epl/
@ 2022-10-08 7:01 Arthur Zamarin
0 siblings, 0 replies; 14+ messages in thread
From: Arthur Zamarin @ 2022-10-08 7:01 UTC (permalink / raw
To: gentoo-commits
commit: 07d3b2d22c5e0e0a2097ea7f276f0ed421f01a1c
Author: Matoro Mahri <matoro <AT> users <DOT> noreply <DOT> github <DOT> com>
AuthorDate: Sat Oct 8 06:37:41 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Oct 8 07:01:32 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07d3b2d2
app-emacs/epl: Keyword 0.9-r2 alpha, #873541
Signed-off-by: Matoro Mahri <matoro <AT> users.noreply.github.com>
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-emacs/epl/epl-0.9-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-emacs/epl/epl-0.9-r2.ebuild b/app-emacs/epl/epl-0.9-r2.ebuild
index 7d4beccc65f0..ab77384670c6 100644
--- a/app-emacs/epl/epl-0.9-r2.ebuild
+++ b/app-emacs/epl/epl-0.9-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/cask/epl/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.
LICENSE="GPL-3+"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x64-macos"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/epl/
@ 2022-12-22 13:06 Sam James
0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2022-12-22 13:06 UTC (permalink / raw
To: gentoo-commits
commit: dd7372d944b1202dc557fdab4659050636a182f8
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 22 13:06:02 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Dec 22 13:06:02 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd7372d9
app-emacs/epl: Stabilize 0.9-r2 amd64, #887969
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-emacs/epl/epl-0.9-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-emacs/epl/epl-0.9-r2.ebuild b/app-emacs/epl/epl-0.9-r2.ebuild
index ab77384670c6..e95b755907c2 100644
--- a/app-emacs/epl/epl-0.9-r2.ebuild
+++ b/app-emacs/epl/epl-0.9-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/cask/epl/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.
LICENSE="GPL-3+"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ppc64 ~riscv ~x64-macos"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/epl/
@ 2022-12-22 13:10 Sam James
0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2022-12-22 13:10 UTC (permalink / raw
To: gentoo-commits
commit: e4a0e8995bed39705299218256d9a9a902095cc0
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 22 13:10:25 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Dec 22 13:10:25 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4a0e899
app-emacs/epl: Stabilize 0.9-r2 arm64, #887969
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-emacs/epl/epl-0.9-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-emacs/epl/epl-0.9-r2.ebuild b/app-emacs/epl/epl-0.9-r2.ebuild
index e95b755907c2..a1fc793839b1 100644
--- a/app-emacs/epl/epl-0.9-r2.ebuild
+++ b/app-emacs/epl/epl-0.9-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/cask/epl/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.
LICENSE="GPL-3+"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ppc64 ~riscv ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm arm64 ~ppc64 ~riscv ~x64-macos"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/epl/
@ 2023-04-25 14:14 Arthur Zamarin
0 siblings, 0 replies; 14+ messages in thread
From: Arthur Zamarin @ 2023-04-25 14:14 UTC (permalink / raw
To: gentoo-commits
commit: 87e8442f2946e6cc06cd49000aec298b797e0a16
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 25 14:14:28 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Apr 25 14:14:28 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87e8442f
app-emacs/epl: Keyword 0.9-r2 x86, #905075
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-emacs/epl/epl-0.9-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-emacs/epl/epl-0.9-r2.ebuild b/app-emacs/epl/epl-0.9-r2.ebuild
index 1194a4153bad..8ebf32bfbaa3 100644
--- a/app-emacs/epl/epl-0.9-r2.ebuild
+++ b/app-emacs/epl/epl-0.9-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/cask/epl/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.
LICENSE="GPL-3+"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~ppc64 ~riscv ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm arm64 ~ppc64 ~riscv ~x86 ~x64-macos"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/epl/
@ 2023-04-25 14:47 Arthur Zamarin
0 siblings, 0 replies; 14+ messages in thread
From: Arthur Zamarin @ 2023-04-25 14:47 UTC (permalink / raw
To: gentoo-commits
commit: 097b87c9c7ff91afaea19dba5752c386eac57b9b
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 25 14:47:37 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Apr 25 14:47:37 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=097b87c9
app-emacs/epl: Keyword 0.9-r2 sparc, #905075
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-emacs/epl/epl-0.9-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-emacs/epl/epl-0.9-r2.ebuild b/app-emacs/epl/epl-0.9-r2.ebuild
index 8ebf32bfbaa3..024538b7def2 100644
--- a/app-emacs/epl/epl-0.9-r2.ebuild
+++ b/app-emacs/epl/epl-0.9-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/cask/epl/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.
LICENSE="GPL-3+"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~ppc64 ~riscv ~x86 ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm arm64 ~ppc64 ~riscv ~sparc ~x86 ~x64-macos"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 14+ messages in thread
end of thread, other threads:[~2023-04-25 14:48 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-12 22:27 [gentoo-commits] repo/gentoo:master commit in: app-emacs/epl/ Maciej Barć
-- strict thread matches above, loose matches on Subject: below --
2022-04-19 17:27 Maciej Barć
2022-04-20 13:49 Maciej Barć
2022-07-31 6:44 Sam James
2022-08-01 20:28 Maciej Barć
2022-08-02 16:01 Arthur Zamarin
2022-08-02 16:01 Arthur Zamarin
2022-08-02 16:01 Arthur Zamarin
2022-08-27 12:42 Jakov Smolić
2022-10-08 7:01 Arthur Zamarin
2022-12-22 13:06 Sam James
2022-12-22 13:10 Sam James
2023-04-25 14:14 Arthur Zamarin
2023-04-25 14:47 Arthur Zamarin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox