public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/tp/
@ 2024-11-16 17:40 Ulrich Müller
  0 siblings, 0 replies; 5+ messages in thread
From: Ulrich Müller @ 2024-11-16 17:40 UTC (permalink / raw
  To: gentoo-commits

commit:     9c694d2536b15d0fd9acc517c057286a8f2c8f62
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 16 17:38:36 2024 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Nov 16 17:39:54 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c694d25

app-emacs/tp: Fix use-dependency on json flag

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

 app-emacs/tp/tp-0.4.ebuild | 5 +----
 app-emacs/tp/tp-0.6.ebuild | 5 +----
 2 files changed, 2 insertions(+), 8 deletions(-)

diff --git a/app-emacs/tp/tp-0.4.ebuild b/app-emacs/tp/tp-0.4.ebuild
index 1ba163107a3a..d8d0de9b3bf5 100644
--- a/app-emacs/tp/tp-0.4.ebuild
+++ b/app-emacs/tp/tp-0.4.ebuild
@@ -26,11 +26,8 @@ LICENSE="GPL-3+"
 SLOT="0"
 
 RDEPEND="
+	>=app-editors/emacs-${NEED_EMACS}[json(+)]
 	app-emacs/transient
-	|| (
-		>=app-editors/emacs-31.0
-		>=app-editors/emacs-${NEED_EMACS}[json]
-	)
 "
 BDEPEND="
 	${RDEPEND}

diff --git a/app-emacs/tp/tp-0.6.ebuild b/app-emacs/tp/tp-0.6.ebuild
index 1ba163107a3a..d8d0de9b3bf5 100644
--- a/app-emacs/tp/tp-0.6.ebuild
+++ b/app-emacs/tp/tp-0.6.ebuild
@@ -26,11 +26,8 @@ LICENSE="GPL-3+"
 SLOT="0"
 
 RDEPEND="
+	>=app-editors/emacs-${NEED_EMACS}[json(+)]
 	app-emacs/transient
-	|| (
-		>=app-editors/emacs-31.0
-		>=app-editors/emacs-${NEED_EMACS}[json]
-	)
 "
 BDEPEND="
 	${RDEPEND}


^ permalink raw reply related	[flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/tp/
@ 2025-02-06 12:26 Maciej Barć
  0 siblings, 0 replies; 5+ messages in thread
From: Maciej Barć @ 2025-02-06 12:26 UTC (permalink / raw
  To: gentoo-commits

commit:     f11308f6e18a5ec3fbf4952f15e533f729a16cbe
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Thu Feb  6 12:19:57 2025 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Thu Feb  6 12:26:29 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f11308f6

app-emacs/tp: bump to 0.7

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 app-emacs/tp/Manifest      |  1 +
 app-emacs/tp/tp-0.7.ebuild | 37 +++++++++++++++++++++++++++++++++++++
 2 files changed, 38 insertions(+)

diff --git a/app-emacs/tp/Manifest b/app-emacs/tp/Manifest
index 3578dcf12f2f..838c06645176 100644
--- a/app-emacs/tp/Manifest
+++ b/app-emacs/tp/Manifest
@@ -1 +1,2 @@
 DIST tp-0.6.tar.gz 18633 BLAKE2B dd28dbf1fe826e5be396dd1af9241fa865d9a5bd4f9210129d1145a5e84951ff77065bb0878e64c957b1609ef83a001b3972260e0193ec56c8c678e91d81b8e7 SHA512 69a608f3beafefab661ab844b78d7d37fbacf36b6705ff2b8d6a9f9eaccc5c78c907af112a1246d5f59f0792281949e13e4516e765f145512943297120e3ce8d
+DIST tp-0.7.tar.gz 18690 BLAKE2B f346ed90f4aeace7890aff770499eb0c208068ba18077c71f0ca9143d3381b05989d0293fc831f74cc8380fc947206d7e5b0a371e5ed092c4a3ad59b371966da SHA512 a2fcb32d1b13d72cd3ee702bf5945688f4bf3051a6c4e169cd6c74990cf86dc85b1bdbf802fa94118d82383131a910238594edd83937f843d65eb95db6f7a2e1

diff --git a/app-emacs/tp/tp-0.7.ebuild b/app-emacs/tp/tp-0.7.ebuild
new file mode 100644
index 000000000000..df90dd477614
--- /dev/null
+++ b/app-emacs/tp/tp-0.7.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+NEED_EMACS="28.1"
+
+inherit elisp
+
+DESCRIPTION="Utilities to create transient menus for POSTing to an API for GNU Emacs"
+HOMEPAGE="https://codeberg.org/martianh/tp.el/"
+
+if [[ "${PV}" == *9999* ]] ; then
+	inherit git-r3
+
+	EGIT_REPO_URI="https://codeberg.org/martianh/${PN}.el.git"
+else
+	SRC_URI="https://codeberg.org/martianh/${PN}.el/archive/${PV}.tar.gz
+		-> ${P}.tar.gz"
+	S="${WORKDIR}/${PN}.el"
+
+	KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+
+RDEPEND="
+	>=app-editors/emacs-${NEED_EMACS}[json(+)]
+	app-emacs/transient
+"
+BDEPEND="
+	${RDEPEND}
+"
+
+DOCS=( readme.org )
+SITEFILE="50${PN}-gentoo.el"


^ permalink raw reply related	[flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/tp/
@ 2025-02-06 12:26 Maciej Barć
  0 siblings, 0 replies; 5+ messages in thread
From: Maciej Barć @ 2025-02-06 12:26 UTC (permalink / raw
  To: gentoo-commits

commit:     1bcceff7098a6e877052d72b8c84cb01619425ce
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Thu Feb  6 12:19:04 2025 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Thu Feb  6 12:26:28 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bcceff7

app-emacs/tp: drop old 0.4

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 app-emacs/tp/Manifest      |  1 -
 app-emacs/tp/tp-0.4.ebuild | 37 -------------------------------------
 2 files changed, 38 deletions(-)

diff --git a/app-emacs/tp/Manifest b/app-emacs/tp/Manifest
index eb80ee1f207f..3578dcf12f2f 100644
--- a/app-emacs/tp/Manifest
+++ b/app-emacs/tp/Manifest
@@ -1,2 +1 @@
-DIST tp-0.4.tar.gz 18150 BLAKE2B 78190c82ddd48d739bafecf15efdeba6ed9e6cebac66a08cf131ebb93b5ea8a8e6f3cbaf52a52092e305b0854e9932b98086204e04d0df17d4d550bda0d588be SHA512 b42a905b7892a2e7a0d18a902894e3f400f47983537a82f6f7336bad631763eed7bcff428f5ad0f52b0c0518e2ad2f817a9e954c93a50a1af203465ad5a509df
 DIST tp-0.6.tar.gz 18633 BLAKE2B dd28dbf1fe826e5be396dd1af9241fa865d9a5bd4f9210129d1145a5e84951ff77065bb0878e64c957b1609ef83a001b3972260e0193ec56c8c678e91d81b8e7 SHA512 69a608f3beafefab661ab844b78d7d37fbacf36b6705ff2b8d6a9f9eaccc5c78c907af112a1246d5f59f0792281949e13e4516e765f145512943297120e3ce8d

diff --git a/app-emacs/tp/tp-0.4.ebuild b/app-emacs/tp/tp-0.4.ebuild
deleted file mode 100644
index d8d0de9b3bf5..000000000000
--- a/app-emacs/tp/tp-0.4.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-NEED_EMACS="28.1"
-
-inherit elisp
-
-DESCRIPTION="Utilities to create transient menus for POSTing to an API for GNU Emacs"
-HOMEPAGE="https://codeberg.org/martianh/tp.el/"
-
-if [[ "${PV}" == *9999* ]] ; then
-	inherit git-r3
-
-	EGIT_REPO_URI="https://codeberg.org/martianh/${PN}.el.git"
-else
-	SRC_URI="https://codeberg.org/martianh/${PN}.el/archive/${PV}.tar.gz
-		-> ${P}.tar.gz"
-	S="${WORKDIR}/${PN}.el"
-
-	KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="GPL-3+"
-SLOT="0"
-
-RDEPEND="
-	>=app-editors/emacs-${NEED_EMACS}[json(+)]
-	app-emacs/transient
-"
-BDEPEND="
-	${RDEPEND}
-"
-
-DOCS=( readme.org )
-SITEFILE="50${PN}-gentoo.el"


^ permalink raw reply related	[flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/tp/
@ 2024-11-28  0:09 Jakov Smolić
  0 siblings, 0 replies; 5+ messages in thread
From: Jakov Smolić @ 2024-11-28  0:09 UTC (permalink / raw
  To: gentoo-commits

commit:     ea924c814de6a7ba1c4ffd3155457ae0019c3641
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 28 00:09:15 2024 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Thu Nov 28 00:09:15 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea924c81

app-emacs/tp: Stabilize 0.6 amd64, #945146

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 app-emacs/tp/tp-0.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emacs/tp/tp-0.6.ebuild b/app-emacs/tp/tp-0.6.ebuild
index d8d0de9b3bf5..8691c6e4c759 100644
--- a/app-emacs/tp/tp-0.6.ebuild
+++ b/app-emacs/tp/tp-0.6.ebuild
@@ -19,7 +19,7 @@ else
 		-> ${P}.tar.gz"
 	S="${WORKDIR}/${PN}.el"
 
-	KEYWORDS="~amd64 ~x86"
+	KEYWORDS="amd64 ~x86"
 fi
 
 LICENSE="GPL-3+"


^ permalink raw reply related	[flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/tp/
@ 2024-10-22  0:08 Maciej Barć
  0 siblings, 0 replies; 5+ messages in thread
From: Maciej Barć @ 2024-10-22  0:08 UTC (permalink / raw
  To: gentoo-commits

commit:     4cf07ead9dad11553b06b77c3ee9fd82dc36c313
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 21 20:45:33 2024 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Tue Oct 22 00:08:43 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cf07ead

app-emacs/tp: new package; add 0.4

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 app-emacs/tp/Manifest      |  1 +
 app-emacs/tp/metadata.xml  | 14 ++++++++++++++
 app-emacs/tp/tp-0.4.ebuild | 40 ++++++++++++++++++++++++++++++++++++++++
 3 files changed, 55 insertions(+)

diff --git a/app-emacs/tp/Manifest b/app-emacs/tp/Manifest
new file mode 100644
index 000000000000..de504ca973c6
--- /dev/null
+++ b/app-emacs/tp/Manifest
@@ -0,0 +1 @@
+DIST tp-0.4.tar.gz 18150 BLAKE2B 78190c82ddd48d739bafecf15efdeba6ed9e6cebac66a08cf131ebb93b5ea8a8e6f3cbaf52a52092e305b0854e9932b98086204e04d0df17d4d550bda0d588be SHA512 b42a905b7892a2e7a0d18a902894e3f400f47983537a82f6f7336bad631763eed7bcff428f5ad0f52b0c0518e2ad2f817a9e954c93a50a1af203465ad5a509df

diff --git a/app-emacs/tp/metadata.xml b/app-emacs/tp/metadata.xml
new file mode 100644
index 000000000000..a44caa852c56
--- /dev/null
+++ b/app-emacs/tp/metadata.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+
+<pkgmetadata>
+  <maintainer type="project">
+    <email>gnu-emacs@gentoo.org</email>
+    <name>Gentoo GNU Emacs project</name>
+  </maintainer>
+  <upstream>
+    <changelog>https://codeberg.org/martianh/tp.el/releases/</changelog>
+    <bugs-to>https://codeberg.org/martianh/tp.el/issues/</bugs-to>
+    <remote-id type="codeberg">martianh/tp.el</remote-id>
+  </upstream>
+</pkgmetadata>

diff --git a/app-emacs/tp/tp-0.4.ebuild b/app-emacs/tp/tp-0.4.ebuild
new file mode 100644
index 000000000000..1ba163107a3a
--- /dev/null
+++ b/app-emacs/tp/tp-0.4.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+NEED_EMACS="28.1"
+
+inherit elisp
+
+DESCRIPTION="Utilities to create transient menus for POSTing to an API for GNU Emacs"
+HOMEPAGE="https://codeberg.org/martianh/tp.el/"
+
+if [[ "${PV}" == *9999* ]] ; then
+	inherit git-r3
+
+	EGIT_REPO_URI="https://codeberg.org/martianh/${PN}.el.git"
+else
+	SRC_URI="https://codeberg.org/martianh/${PN}.el/archive/${PV}.tar.gz
+		-> ${P}.tar.gz"
+	S="${WORKDIR}/${PN}.el"
+
+	KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+
+RDEPEND="
+	app-emacs/transient
+	|| (
+		>=app-editors/emacs-31.0
+		>=app-editors/emacs-${NEED_EMACS}[json]
+	)
+"
+BDEPEND="
+	${RDEPEND}
+"
+
+DOCS=( readme.org )
+SITEFILE="50${PN}-gentoo.el"


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2025-02-06 12:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-16 17:40 [gentoo-commits] repo/gentoo:master commit in: app-emacs/tp/ Ulrich Müller
  -- strict thread matches above, loose matches on Subject: below --
2025-02-06 12:26 Maciej Barć
2025-02-06 12:26 Maciej Barć
2024-11-28  0:09 Jakov Smolić
2024-10-22  0:08 Maciej Barć

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox