* [gentoo-commits] repo/gentoo:master commit in: app-emacs/dape/
@ 2024-12-18 1:06 Arsen Arsenović
0 siblings, 0 replies; 10+ messages in thread
From: Arsen Arsenović @ 2024-12-18 1:06 UTC (permalink / raw
To: gentoo-commits
commit: 782bc3f84284d04de9b4f7b3e39209637013cb03
Author: Arsen Arsenović <arsen <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 18 00:09:21 2024 +0000
Commit: Arsen Arsenović <arsen <AT> gentoo <DOT> org>
CommitDate: Wed Dec 18 01:04:18 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=782bc3f8
app-emacs/dape: add 0.18.0
Signed-off-by: Arsen Arsenović <arsen <AT> gentoo.org>
app-emacs/dape/Manifest | 1 +
app-emacs/dape/dape-0.18.0.ebuild | 67 +++++++++++++++++++++++++++++++++++++++
2 files changed, 68 insertions(+)
diff --git a/app-emacs/dape/Manifest b/app-emacs/dape/Manifest
index 16590727787e..f0f9018266ec 100644
--- a/app-emacs/dape/Manifest
+++ b/app-emacs/dape/Manifest
@@ -1 +1,2 @@
DIST dape-0.17.0.tar.gz 77229 BLAKE2B f0942019fe6215b416cecce89b01a81bb450a615ff2898d3c67788b6c3575bbe72c1420d27b6796a619c3403a6a94e717db805e553212c0bc8a07d5ae9e6670a SHA512 a0f26ecee4ec2cd8e57035ee58f15562e3d11b61203ded80e5560951e2f37a7a1c00c44538d75699c902b39cf9d2a59edcb1a528f6ce12351717fdd6136ae6e8
+DIST dape-0.18.0.tar.gz 78174 BLAKE2B cf883262a7d23d67c5f76dacb47dbc6ea6ed62d81506e1f124d4d85e8a818c692bd26b7d3ef7543fdead999713603a3b008832d5296edcd7fa2d784a2019ec1b SHA512 4d447c7b0fb01707046baa7c6bcd9528fc12bc295259be34a3dca21f9dea85a020cec9557468282947257aad059b174ae211f953ade6d67d615fa2daf50d1400
diff --git a/app-emacs/dape/dape-0.18.0.ebuild b/app-emacs/dape/dape-0.18.0.ebuild
new file mode 100644
index 000000000000..0b0fa9977676
--- /dev/null
+++ b/app-emacs/dape/dape-0.18.0.ebuild
@@ -0,0 +1,67 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+NEED_EMACS=29.1
+
+inherit elisp
+
+DESCRIPTION="Debug Adapter Protocol for Emacs"
+HOMEPAGE="https://github.com/svaante/dape"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/svaante/${PN}.git"
+else
+ SRC_URI="https://github.com/svaante/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+
+RDEPEND="
+ || (
+ app-emacs/jsonrpc
+ >=app-editors/emacs-30:*
+ )
+"
+DEPEND="
+ ${RDEPEND}
+"
+
+# Requires debugpy, but we do not package debugpy right now, as well as
+# js-debug. Most tests use only the former.
+RESTRICT="test"
+
+DOCS=( README.org CHANGELOG.org LICENSE )
+SITEFILE="50${PN}-gentoo.el"
+
+# elisp-enable-tests ert . -l dape-tests.el
+
+pkg_setup() {
+ elisp_pkg_setup
+ local has_jsonrpc="$(${EMACS} ${EMACSFLAGS} \
+ --eval "(princ (>= emacs-major-version 30))")"
+ if has_version app-emacs/jsonrpc || [[ ${has_jsonrpc} = t ]]; then
+ :
+ else
+ die "Emacs does not have jsonrpc.el 1.0.25 or later, nor was app-emacs/jsonrpc installed"
+ fi
+}
+
+src_compile() {
+ elisp_src_compile
+ elisp-make-autoload-file
+}
+
+# src_test() {
+# elisp-test
+# }
+
+elisp_src_install() {
+ # Need to ignore dape-tests.el.
+ einstalldocs
+ elisp-install "${PN}" dape.el dape.elc dape-autoloads.el
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/dape/
@ 2024-12-21 14:12 Arsen Arsenović
0 siblings, 0 replies; 10+ messages in thread
From: Arsen Arsenović @ 2024-12-21 14:12 UTC (permalink / raw
To: gentoo-commits
commit: e012f8cec889112a9374d64a5ae06febc1d69dc0
Author: Arsen Arsenović <arsen <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 21 13:52:56 2024 +0000
Commit: Arsen Arsenović <arsen <AT> gentoo <DOT> org>
CommitDate: Sat Dec 21 14:11:40 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e012f8ce
app-emacs/dape: drop 0.17.0
Signed-off-by: Arsen Arsenović <arsen <AT> gentoo.org>
app-emacs/dape/Manifest | 1 -
app-emacs/dape/dape-0.17.0.ebuild | 67 ---------------------------------------
2 files changed, 68 deletions(-)
diff --git a/app-emacs/dape/Manifest b/app-emacs/dape/Manifest
index f0f9018266ec..b21a2d796060 100644
--- a/app-emacs/dape/Manifest
+++ b/app-emacs/dape/Manifest
@@ -1,2 +1 @@
-DIST dape-0.17.0.tar.gz 77229 BLAKE2B f0942019fe6215b416cecce89b01a81bb450a615ff2898d3c67788b6c3575bbe72c1420d27b6796a619c3403a6a94e717db805e553212c0bc8a07d5ae9e6670a SHA512 a0f26ecee4ec2cd8e57035ee58f15562e3d11b61203ded80e5560951e2f37a7a1c00c44538d75699c902b39cf9d2a59edcb1a528f6ce12351717fdd6136ae6e8
DIST dape-0.18.0.tar.gz 78174 BLAKE2B cf883262a7d23d67c5f76dacb47dbc6ea6ed62d81506e1f124d4d85e8a818c692bd26b7d3ef7543fdead999713603a3b008832d5296edcd7fa2d784a2019ec1b SHA512 4d447c7b0fb01707046baa7c6bcd9528fc12bc295259be34a3dca21f9dea85a020cec9557468282947257aad059b174ae211f953ade6d67d615fa2daf50d1400
diff --git a/app-emacs/dape/dape-0.17.0.ebuild b/app-emacs/dape/dape-0.17.0.ebuild
deleted file mode 100644
index 0b0fa9977676..000000000000
--- a/app-emacs/dape/dape-0.17.0.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 2023-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-NEED_EMACS=29.1
-
-inherit elisp
-
-DESCRIPTION="Debug Adapter Protocol for Emacs"
-HOMEPAGE="https://github.com/svaante/dape"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/svaante/${PN}.git"
-else
- SRC_URI="https://github.com/svaante/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-LICENSE="GPL-3+"
-SLOT="0"
-
-RDEPEND="
- || (
- app-emacs/jsonrpc
- >=app-editors/emacs-30:*
- )
-"
-DEPEND="
- ${RDEPEND}
-"
-
-# Requires debugpy, but we do not package debugpy right now, as well as
-# js-debug. Most tests use only the former.
-RESTRICT="test"
-
-DOCS=( README.org CHANGELOG.org LICENSE )
-SITEFILE="50${PN}-gentoo.el"
-
-# elisp-enable-tests ert . -l dape-tests.el
-
-pkg_setup() {
- elisp_pkg_setup
- local has_jsonrpc="$(${EMACS} ${EMACSFLAGS} \
- --eval "(princ (>= emacs-major-version 30))")"
- if has_version app-emacs/jsonrpc || [[ ${has_jsonrpc} = t ]]; then
- :
- else
- die "Emacs does not have jsonrpc.el 1.0.25 or later, nor was app-emacs/jsonrpc installed"
- fi
-}
-
-src_compile() {
- elisp_src_compile
- elisp-make-autoload-file
-}
-
-# src_test() {
-# elisp-test
-# }
-
-elisp_src_install() {
- # Need to ignore dape-tests.el.
- einstalldocs
- elisp-install "${PN}" dape.el dape.elc dape-autoloads.el
-}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/dape/
@ 2024-12-21 14:12 Arsen Arsenović
0 siblings, 0 replies; 10+ messages in thread
From: Arsen Arsenović @ 2024-12-21 14:12 UTC (permalink / raw
To: gentoo-commits
commit: 79fe405c0f400c3a921e96fe20a34caf6c0f2382
Author: Arsen Arsenović <arsen <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 21 13:52:29 2024 +0000
Commit: Arsen Arsenović <arsen <AT> gentoo <DOT> org>
CommitDate: Sat Dec 21 14:11:39 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79fe405c
app-emacs/dape: don't forget to install the site file
Signed-off-by: Arsen Arsenović <arsen <AT> gentoo.org>
app-emacs/dape/{dape-0.18.0.ebuild => dape-0.18.0-r1.ebuild} | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/app-emacs/dape/dape-0.18.0.ebuild b/app-emacs/dape/dape-0.18.0-r1.ebuild
similarity index 95%
rename from app-emacs/dape/dape-0.18.0.ebuild
rename to app-emacs/dape/dape-0.18.0-r1.ebuild
index 0b0fa9977676..3238a5a3963b 100644
--- a/app-emacs/dape/dape-0.18.0.ebuild
+++ b/app-emacs/dape/dape-0.18.0-r1.ebuild
@@ -60,8 +60,9 @@ src_compile() {
# elisp-test
# }
-elisp_src_install() {
+src_install() {
# Need to ignore dape-tests.el.
einstalldocs
elisp-install "${PN}" dape.el dape.elc dape-autoloads.el
+ elisp-site-file-install "${FILESDIR}/${SITEFILE}"
}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/dape/
@ 2024-12-22 9:49 Sam James
0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2024-12-22 9:49 UTC (permalink / raw
To: gentoo-commits
commit: 0f206d54cb8ebd1e692f9d22d36effa6637eac7b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 22 09:42:58 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 22 09:42:58 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f206d54
app-emacs/dape: add 0.19.0
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-emacs/dape/Manifest | 1 +
app-emacs/dape/dape-0.19.0.ebuild | 68 +++++++++++++++++++++++++++++++++++++++
2 files changed, 69 insertions(+)
diff --git a/app-emacs/dape/Manifest b/app-emacs/dape/Manifest
index b21a2d796060..2072bba05d01 100644
--- a/app-emacs/dape/Manifest
+++ b/app-emacs/dape/Manifest
@@ -1 +1,2 @@
DIST dape-0.18.0.tar.gz 78174 BLAKE2B cf883262a7d23d67c5f76dacb47dbc6ea6ed62d81506e1f124d4d85e8a818c692bd26b7d3ef7543fdead999713603a3b008832d5296edcd7fa2d784a2019ec1b SHA512 4d447c7b0fb01707046baa7c6bcd9528fc12bc295259be34a3dca21f9dea85a020cec9557468282947257aad059b174ae211f953ade6d67d615fa2daf50d1400
+DIST dape-0.19.0.tar.gz 78244 BLAKE2B aaa4d0b129c1a3f80228527836a202ce7352c6fe4d5ac31710c62d6f9069108ed66a4e3e35808c2e197e8d57b7688249a1605eb288f212cd4f48879dcc687e68 SHA512 7533a0e88dd5418f924378861f7fa33e60c886684dff50785add4347c1cb3c0e728625f7fd9ef703787eea671ead6e5fd81ed3a3c468205e163c352dbe2a49d0
diff --git a/app-emacs/dape/dape-0.19.0.ebuild b/app-emacs/dape/dape-0.19.0.ebuild
new file mode 100644
index 000000000000..3238a5a3963b
--- /dev/null
+++ b/app-emacs/dape/dape-0.19.0.ebuild
@@ -0,0 +1,68 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+NEED_EMACS=29.1
+
+inherit elisp
+
+DESCRIPTION="Debug Adapter Protocol for Emacs"
+HOMEPAGE="https://github.com/svaante/dape"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/svaante/${PN}.git"
+else
+ SRC_URI="https://github.com/svaante/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+
+RDEPEND="
+ || (
+ app-emacs/jsonrpc
+ >=app-editors/emacs-30:*
+ )
+"
+DEPEND="
+ ${RDEPEND}
+"
+
+# Requires debugpy, but we do not package debugpy right now, as well as
+# js-debug. Most tests use only the former.
+RESTRICT="test"
+
+DOCS=( README.org CHANGELOG.org LICENSE )
+SITEFILE="50${PN}-gentoo.el"
+
+# elisp-enable-tests ert . -l dape-tests.el
+
+pkg_setup() {
+ elisp_pkg_setup
+ local has_jsonrpc="$(${EMACS} ${EMACSFLAGS} \
+ --eval "(princ (>= emacs-major-version 30))")"
+ if has_version app-emacs/jsonrpc || [[ ${has_jsonrpc} = t ]]; then
+ :
+ else
+ die "Emacs does not have jsonrpc.el 1.0.25 or later, nor was app-emacs/jsonrpc installed"
+ fi
+}
+
+src_compile() {
+ elisp_src_compile
+ elisp-make-autoload-file
+}
+
+# src_test() {
+# elisp-test
+# }
+
+src_install() {
+ # Need to ignore dape-tests.el.
+ einstalldocs
+ elisp-install "${PN}" dape.el dape.elc dape-autoloads.el
+ elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/dape/
@ 2025-01-06 22:18 Maciej Barć
0 siblings, 0 replies; 10+ messages in thread
From: Maciej Barć @ 2025-01-06 22:18 UTC (permalink / raw
To: gentoo-commits
commit: 3474ad3cdd4300ecf3004fcbbf7c2c1b29e8f696
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 6 21:46:42 2025 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Mon Jan 6 22:18:20 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3474ad3c
app-emacs/dape: drop old 0.18.0-r1
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-emacs/dape/Manifest | 1 -
app-emacs/dape/dape-0.18.0-r1.ebuild | 68 ------------------------------------
2 files changed, 69 deletions(-)
diff --git a/app-emacs/dape/Manifest b/app-emacs/dape/Manifest
index 2072bba05d01..8119ac18d989 100644
--- a/app-emacs/dape/Manifest
+++ b/app-emacs/dape/Manifest
@@ -1,2 +1 @@
-DIST dape-0.18.0.tar.gz 78174 BLAKE2B cf883262a7d23d67c5f76dacb47dbc6ea6ed62d81506e1f124d4d85e8a818c692bd26b7d3ef7543fdead999713603a3b008832d5296edcd7fa2d784a2019ec1b SHA512 4d447c7b0fb01707046baa7c6bcd9528fc12bc295259be34a3dca21f9dea85a020cec9557468282947257aad059b174ae211f953ade6d67d615fa2daf50d1400
DIST dape-0.19.0.tar.gz 78244 BLAKE2B aaa4d0b129c1a3f80228527836a202ce7352c6fe4d5ac31710c62d6f9069108ed66a4e3e35808c2e197e8d57b7688249a1605eb288f212cd4f48879dcc687e68 SHA512 7533a0e88dd5418f924378861f7fa33e60c886684dff50785add4347c1cb3c0e728625f7fd9ef703787eea671ead6e5fd81ed3a3c468205e163c352dbe2a49d0
diff --git a/app-emacs/dape/dape-0.18.0-r1.ebuild b/app-emacs/dape/dape-0.18.0-r1.ebuild
deleted file mode 100644
index 3238a5a3963b..000000000000
--- a/app-emacs/dape/dape-0.18.0-r1.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 2023-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-NEED_EMACS=29.1
-
-inherit elisp
-
-DESCRIPTION="Debug Adapter Protocol for Emacs"
-HOMEPAGE="https://github.com/svaante/dape"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/svaante/${PN}.git"
-else
- SRC_URI="https://github.com/svaante/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-LICENSE="GPL-3+"
-SLOT="0"
-
-RDEPEND="
- || (
- app-emacs/jsonrpc
- >=app-editors/emacs-30:*
- )
-"
-DEPEND="
- ${RDEPEND}
-"
-
-# Requires debugpy, but we do not package debugpy right now, as well as
-# js-debug. Most tests use only the former.
-RESTRICT="test"
-
-DOCS=( README.org CHANGELOG.org LICENSE )
-SITEFILE="50${PN}-gentoo.el"
-
-# elisp-enable-tests ert . -l dape-tests.el
-
-pkg_setup() {
- elisp_pkg_setup
- local has_jsonrpc="$(${EMACS} ${EMACSFLAGS} \
- --eval "(princ (>= emacs-major-version 30))")"
- if has_version app-emacs/jsonrpc || [[ ${has_jsonrpc} = t ]]; then
- :
- else
- die "Emacs does not have jsonrpc.el 1.0.25 or later, nor was app-emacs/jsonrpc installed"
- fi
-}
-
-src_compile() {
- elisp_src_compile
- elisp-make-autoload-file
-}
-
-# src_test() {
-# elisp-test
-# }
-
-src_install() {
- # Need to ignore dape-tests.el.
- einstalldocs
- elisp-install "${PN}" dape.el dape.elc dape-autoloads.el
- elisp-site-file-install "${FILESDIR}/${SITEFILE}"
-}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/dape/
@ 2025-01-06 22:18 Maciej Barć
0 siblings, 0 replies; 10+ messages in thread
From: Maciej Barć @ 2025-01-06 22:18 UTC (permalink / raw
To: gentoo-commits
commit: 65a5b4c3bf6880fb854dedf9b22a5336585b1e68
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 6 21:55:26 2025 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Mon Jan 6 22:18:20 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65a5b4c3
app-emacs/dape: bump to 0.20.0
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-emacs/dape/Manifest | 1 +
app-emacs/dape/dape-0.20.0.ebuild | 71 +++++++++++++++++++++++++++++++++++++++
2 files changed, 72 insertions(+)
diff --git a/app-emacs/dape/Manifest b/app-emacs/dape/Manifest
index 8119ac18d989..ef3c817e1d97 100644
--- a/app-emacs/dape/Manifest
+++ b/app-emacs/dape/Manifest
@@ -1 +1,2 @@
DIST dape-0.19.0.tar.gz 78244 BLAKE2B aaa4d0b129c1a3f80228527836a202ce7352c6fe4d5ac31710c62d6f9069108ed66a4e3e35808c2e197e8d57b7688249a1605eb288f212cd4f48879dcc687e68 SHA512 7533a0e88dd5418f924378861f7fa33e60c886684dff50785add4347c1cb3c0e728625f7fd9ef703787eea671ead6e5fd81ed3a3c468205e163c352dbe2a49d0
+DIST dape-0.20.0.tar.gz 78429 BLAKE2B 9f079311883ffae56226ad7bbe6835c404397980333dd9539835b2f9301908fe83be6c88eebb2e5fe553eda94303bbc6cbb4f497b92131fa9979c88dccd5a032 SHA512 8a770d84c54fe75275067ca981c96fced384797896a19331d53f782029ec984d3755801dfd29d8c4446e6ac531ffa9dc534cca3b21ae3af52547292da4158b0a
diff --git a/app-emacs/dape/dape-0.20.0.ebuild b/app-emacs/dape/dape-0.20.0.ebuild
new file mode 100644
index 000000000000..c4b8f0561c5d
--- /dev/null
+++ b/app-emacs/dape/dape-0.20.0.ebuild
@@ -0,0 +1,71 @@
+# Copyright 2023-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+NEED_EMACS="29.1"
+
+inherit elisp
+
+DESCRIPTION="Debug Adapter Protocol for Emacs"
+HOMEPAGE="https://github.com/svaante/dape"
+
+if [[ "${PV}" == 9999 ]]; then
+ inherit git-r3
+
+ EGIT_REPO_URI="https://github.com/svaante/${PN}.git"
+else
+ SRC_URI="https://github.com/svaante/${PN}/archive/refs/tags/${PV}.tar.gz
+ -> ${P}.tar.gz"
+
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+
+RDEPEND="
+ || (
+ app-emacs/jsonrpc
+ >=app-editors/emacs-30:*
+ )
+"
+DEPEND="
+ ${RDEPEND}
+"
+
+# Requires debugpy, but we do not package debugpy right now, as well as
+# js-debug. Most tests use only the former.
+RESTRICT="test"
+
+DOCS=( README.org CHANGELOG.org LICENSE )
+SITEFILE="50${PN}-gentoo.el"
+
+# elisp-enable-tests ert . -l dape-tests.el
+
+pkg_setup() {
+ elisp_pkg_setup
+ local has_jsonrpc="$(${EMACS} ${EMACSFLAGS} \
+ --eval "(princ (>= emacs-major-version 30))")"
+ if has_version app-emacs/jsonrpc || [[ ${has_jsonrpc} = t ]]; then
+ :
+ else
+ die "Emacs does not have jsonrpc.el 1.0.25 or later, nor was app-emacs/jsonrpc installed"
+ fi
+}
+
+src_compile() {
+ elisp_src_compile
+ elisp-make-autoload-file
+}
+
+# src_test() {
+# elisp-test
+# }
+
+src_install() {
+ # Need to ignore dape-tests.el.
+ einstalldocs
+ elisp-install "${PN}" dape.el dape.elc dape-autoloads.el
+ elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/dape/
@ 2025-01-10 10:55 Arsen Arsenović
0 siblings, 0 replies; 10+ messages in thread
From: Arsen Arsenović @ 2025-01-10 10:55 UTC (permalink / raw
To: gentoo-commits
commit: d6f4eac2805739cd00c3b1f2a9ff60dbd72658fb
Author: Arsen Arsenović <arsen <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 10 10:52:50 2025 +0000
Commit: Arsen Arsenović <arsen <AT> gentoo <DOT> org>
CommitDate: Fri Jan 10 10:54:55 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6f4eac2
app-emacs/dape: add 0.21.0
Signed-off-by: Arsen Arsenović <arsen <AT> gentoo.org>
app-emacs/dape/Manifest | 1 +
app-emacs/dape/dape-0.21.0.ebuild | 71 +++++++++++++++++++++++++++++++++++++++
2 files changed, 72 insertions(+)
diff --git a/app-emacs/dape/Manifest b/app-emacs/dape/Manifest
index ef3c817e1d97..45563fc94ae5 100644
--- a/app-emacs/dape/Manifest
+++ b/app-emacs/dape/Manifest
@@ -1,2 +1,3 @@
DIST dape-0.19.0.tar.gz 78244 BLAKE2B aaa4d0b129c1a3f80228527836a202ce7352c6fe4d5ac31710c62d6f9069108ed66a4e3e35808c2e197e8d57b7688249a1605eb288f212cd4f48879dcc687e68 SHA512 7533a0e88dd5418f924378861f7fa33e60c886684dff50785add4347c1cb3c0e728625f7fd9ef703787eea671ead6e5fd81ed3a3c468205e163c352dbe2a49d0
DIST dape-0.20.0.tar.gz 78429 BLAKE2B 9f079311883ffae56226ad7bbe6835c404397980333dd9539835b2f9301908fe83be6c88eebb2e5fe553eda94303bbc6cbb4f497b92131fa9979c88dccd5a032 SHA512 8a770d84c54fe75275067ca981c96fced384797896a19331d53f782029ec984d3755801dfd29d8c4446e6ac531ffa9dc534cca3b21ae3af52547292da4158b0a
+DIST dape-0.21.0.tar.gz 78689 BLAKE2B 12ae2ea5771ff303693b1477fe5f535d9295d138bd16ca0859bd7cbdfbf93c18347cb6dc9910c93001947dc58cba4064c0782f0007057ea99932a2674963da90 SHA512 0ecbe997859148f5bd1154b946d617df054772244cadb8697c97fe82d1deb572d47d26668229e3d0dbb02f4339b51a334cd06922050dbb592a4f05581fb35012
diff --git a/app-emacs/dape/dape-0.21.0.ebuild b/app-emacs/dape/dape-0.21.0.ebuild
new file mode 100644
index 000000000000..c4b8f0561c5d
--- /dev/null
+++ b/app-emacs/dape/dape-0.21.0.ebuild
@@ -0,0 +1,71 @@
+# Copyright 2023-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+NEED_EMACS="29.1"
+
+inherit elisp
+
+DESCRIPTION="Debug Adapter Protocol for Emacs"
+HOMEPAGE="https://github.com/svaante/dape"
+
+if [[ "${PV}" == 9999 ]]; then
+ inherit git-r3
+
+ EGIT_REPO_URI="https://github.com/svaante/${PN}.git"
+else
+ SRC_URI="https://github.com/svaante/${PN}/archive/refs/tags/${PV}.tar.gz
+ -> ${P}.tar.gz"
+
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+
+RDEPEND="
+ || (
+ app-emacs/jsonrpc
+ >=app-editors/emacs-30:*
+ )
+"
+DEPEND="
+ ${RDEPEND}
+"
+
+# Requires debugpy, but we do not package debugpy right now, as well as
+# js-debug. Most tests use only the former.
+RESTRICT="test"
+
+DOCS=( README.org CHANGELOG.org LICENSE )
+SITEFILE="50${PN}-gentoo.el"
+
+# elisp-enable-tests ert . -l dape-tests.el
+
+pkg_setup() {
+ elisp_pkg_setup
+ local has_jsonrpc="$(${EMACS} ${EMACSFLAGS} \
+ --eval "(princ (>= emacs-major-version 30))")"
+ if has_version app-emacs/jsonrpc || [[ ${has_jsonrpc} = t ]]; then
+ :
+ else
+ die "Emacs does not have jsonrpc.el 1.0.25 or later, nor was app-emacs/jsonrpc installed"
+ fi
+}
+
+src_compile() {
+ elisp_src_compile
+ elisp-make-autoload-file
+}
+
+# src_test() {
+# elisp-test
+# }
+
+src_install() {
+ # Need to ignore dape-tests.el.
+ einstalldocs
+ elisp-install "${PN}" dape.el dape.elc dape-autoloads.el
+ elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/dape/
@ 2025-02-04 12:52 Maciej Barć
0 siblings, 0 replies; 10+ messages in thread
From: Maciej Barć @ 2025-02-04 12:52 UTC (permalink / raw
To: gentoo-commits
commit: 49295d51c4259715b8f56aca425e09ca1c88edc7
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 4 12:04:11 2025 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Tue Feb 4 12:52:27 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49295d51
app-emacs/dape: drop old 0.19.0
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-emacs/dape/Manifest | 1 -
app-emacs/dape/dape-0.19.0.ebuild | 68 ---------------------------------------
2 files changed, 69 deletions(-)
diff --git a/app-emacs/dape/Manifest b/app-emacs/dape/Manifest
index 45563fc94ae5..c989e9ae3668 100644
--- a/app-emacs/dape/Manifest
+++ b/app-emacs/dape/Manifest
@@ -1,3 +1,2 @@
-DIST dape-0.19.0.tar.gz 78244 BLAKE2B aaa4d0b129c1a3f80228527836a202ce7352c6fe4d5ac31710c62d6f9069108ed66a4e3e35808c2e197e8d57b7688249a1605eb288f212cd4f48879dcc687e68 SHA512 7533a0e88dd5418f924378861f7fa33e60c886684dff50785add4347c1cb3c0e728625f7fd9ef703787eea671ead6e5fd81ed3a3c468205e163c352dbe2a49d0
DIST dape-0.20.0.tar.gz 78429 BLAKE2B 9f079311883ffae56226ad7bbe6835c404397980333dd9539835b2f9301908fe83be6c88eebb2e5fe553eda94303bbc6cbb4f497b92131fa9979c88dccd5a032 SHA512 8a770d84c54fe75275067ca981c96fced384797896a19331d53f782029ec984d3755801dfd29d8c4446e6ac531ffa9dc534cca3b21ae3af52547292da4158b0a
DIST dape-0.21.0.tar.gz 78689 BLAKE2B 12ae2ea5771ff303693b1477fe5f535d9295d138bd16ca0859bd7cbdfbf93c18347cb6dc9910c93001947dc58cba4064c0782f0007057ea99932a2674963da90 SHA512 0ecbe997859148f5bd1154b946d617df054772244cadb8697c97fe82d1deb572d47d26668229e3d0dbb02f4339b51a334cd06922050dbb592a4f05581fb35012
diff --git a/app-emacs/dape/dape-0.19.0.ebuild b/app-emacs/dape/dape-0.19.0.ebuild
deleted file mode 100644
index 3238a5a3963b..000000000000
--- a/app-emacs/dape/dape-0.19.0.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 2023-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-NEED_EMACS=29.1
-
-inherit elisp
-
-DESCRIPTION="Debug Adapter Protocol for Emacs"
-HOMEPAGE="https://github.com/svaante/dape"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/svaante/${PN}.git"
-else
- SRC_URI="https://github.com/svaante/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-LICENSE="GPL-3+"
-SLOT="0"
-
-RDEPEND="
- || (
- app-emacs/jsonrpc
- >=app-editors/emacs-30:*
- )
-"
-DEPEND="
- ${RDEPEND}
-"
-
-# Requires debugpy, but we do not package debugpy right now, as well as
-# js-debug. Most tests use only the former.
-RESTRICT="test"
-
-DOCS=( README.org CHANGELOG.org LICENSE )
-SITEFILE="50${PN}-gentoo.el"
-
-# elisp-enable-tests ert . -l dape-tests.el
-
-pkg_setup() {
- elisp_pkg_setup
- local has_jsonrpc="$(${EMACS} ${EMACSFLAGS} \
- --eval "(princ (>= emacs-major-version 30))")"
- if has_version app-emacs/jsonrpc || [[ ${has_jsonrpc} = t ]]; then
- :
- else
- die "Emacs does not have jsonrpc.el 1.0.25 or later, nor was app-emacs/jsonrpc installed"
- fi
-}
-
-src_compile() {
- elisp_src_compile
- elisp-make-autoload-file
-}
-
-# src_test() {
-# elisp-test
-# }
-
-src_install() {
- # Need to ignore dape-tests.el.
- einstalldocs
- elisp-install "${PN}" dape.el dape.elc dape-autoloads.el
- elisp-site-file-install "${FILESDIR}/${SITEFILE}"
-}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/dape/
@ 2025-02-04 12:52 Maciej Barć
0 siblings, 0 replies; 10+ messages in thread
From: Maciej Barć @ 2025-02-04 12:52 UTC (permalink / raw
To: gentoo-commits
commit: 3d13dac0a305afaa2a497c2acead4a09f43f2913
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 4 12:04:33 2025 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Tue Feb 4 12:52:27 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d13dac0
app-emacs/dape: drop old 0.20.0
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-emacs/dape/Manifest | 1 -
app-emacs/dape/dape-0.20.0.ebuild | 71 ---------------------------------------
2 files changed, 72 deletions(-)
diff --git a/app-emacs/dape/Manifest b/app-emacs/dape/Manifest
index c989e9ae3668..0bd04ed529c4 100644
--- a/app-emacs/dape/Manifest
+++ b/app-emacs/dape/Manifest
@@ -1,2 +1 @@
-DIST dape-0.20.0.tar.gz 78429 BLAKE2B 9f079311883ffae56226ad7bbe6835c404397980333dd9539835b2f9301908fe83be6c88eebb2e5fe553eda94303bbc6cbb4f497b92131fa9979c88dccd5a032 SHA512 8a770d84c54fe75275067ca981c96fced384797896a19331d53f782029ec984d3755801dfd29d8c4446e6ac531ffa9dc534cca3b21ae3af52547292da4158b0a
DIST dape-0.21.0.tar.gz 78689 BLAKE2B 12ae2ea5771ff303693b1477fe5f535d9295d138bd16ca0859bd7cbdfbf93c18347cb6dc9910c93001947dc58cba4064c0782f0007057ea99932a2674963da90 SHA512 0ecbe997859148f5bd1154b946d617df054772244cadb8697c97fe82d1deb572d47d26668229e3d0dbb02f4339b51a334cd06922050dbb592a4f05581fb35012
diff --git a/app-emacs/dape/dape-0.20.0.ebuild b/app-emacs/dape/dape-0.20.0.ebuild
deleted file mode 100644
index c4b8f0561c5d..000000000000
--- a/app-emacs/dape/dape-0.20.0.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 2023-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-NEED_EMACS="29.1"
-
-inherit elisp
-
-DESCRIPTION="Debug Adapter Protocol for Emacs"
-HOMEPAGE="https://github.com/svaante/dape"
-
-if [[ "${PV}" == 9999 ]]; then
- inherit git-r3
-
- EGIT_REPO_URI="https://github.com/svaante/${PN}.git"
-else
- SRC_URI="https://github.com/svaante/${PN}/archive/refs/tags/${PV}.tar.gz
- -> ${P}.tar.gz"
-
- KEYWORDS="~amd64"
-fi
-
-LICENSE="GPL-3+"
-SLOT="0"
-
-RDEPEND="
- || (
- app-emacs/jsonrpc
- >=app-editors/emacs-30:*
- )
-"
-DEPEND="
- ${RDEPEND}
-"
-
-# Requires debugpy, but we do not package debugpy right now, as well as
-# js-debug. Most tests use only the former.
-RESTRICT="test"
-
-DOCS=( README.org CHANGELOG.org LICENSE )
-SITEFILE="50${PN}-gentoo.el"
-
-# elisp-enable-tests ert . -l dape-tests.el
-
-pkg_setup() {
- elisp_pkg_setup
- local has_jsonrpc="$(${EMACS} ${EMACSFLAGS} \
- --eval "(princ (>= emacs-major-version 30))")"
- if has_version app-emacs/jsonrpc || [[ ${has_jsonrpc} = t ]]; then
- :
- else
- die "Emacs does not have jsonrpc.el 1.0.25 or later, nor was app-emacs/jsonrpc installed"
- fi
-}
-
-src_compile() {
- elisp_src_compile
- elisp-make-autoload-file
-}
-
-# src_test() {
-# elisp-test
-# }
-
-src_install() {
- # Need to ignore dape-tests.el.
- einstalldocs
- elisp-install "${PN}" dape.el dape.elc dape-autoloads.el
- elisp-site-file-install "${FILESDIR}/${SITEFILE}"
-}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/dape/
@ 2025-02-04 12:52 Maciej Barć
0 siblings, 0 replies; 10+ messages in thread
From: Maciej Barć @ 2025-02-04 12:52 UTC (permalink / raw
To: gentoo-commits
commit: a91edbfef2c128b89e0a8bc9d8ed2d3c511660a5
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 4 12:08:47 2025 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Tue Feb 4 12:52:27 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a91edbfe
app-emacs/dape: bump to 0.22.0
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-emacs/dape/Manifest | 1 +
app-emacs/dape/dape-0.22.0.ebuild | 70 +++++++++++++++++++++++++++++++++++++++
2 files changed, 71 insertions(+)
diff --git a/app-emacs/dape/Manifest b/app-emacs/dape/Manifest
index 0bd04ed529c4..d94f40060c90 100644
--- a/app-emacs/dape/Manifest
+++ b/app-emacs/dape/Manifest
@@ -1 +1,2 @@
DIST dape-0.21.0.tar.gz 78689 BLAKE2B 12ae2ea5771ff303693b1477fe5f535d9295d138bd16ca0859bd7cbdfbf93c18347cb6dc9910c93001947dc58cba4064c0782f0007057ea99932a2674963da90 SHA512 0ecbe997859148f5bd1154b946d617df054772244cadb8697c97fe82d1deb572d47d26668229e3d0dbb02f4339b51a334cd06922050dbb592a4f05581fb35012
+DIST dape-0.22.0.tar.gz 78792 BLAKE2B 42743bcb2c82680b90f42c01a9212eca08eba7c41bc8874ffebbe9f1b4003812ad453afb8ef049c085def3466c835a7f63c4b96efe6fccfd6366089d303df990 SHA512 057776fd479dbf1ca3206593fd778e35182e9a2915966ff6e45c87c76e62a96dc19474d35a5bba4015f419e34cf8fa31d214c4164c6cab2ed6e5edb788e4a658
diff --git a/app-emacs/dape/dape-0.22.0.ebuild b/app-emacs/dape/dape-0.22.0.ebuild
new file mode 100644
index 000000000000..e3cc513f8bb9
--- /dev/null
+++ b/app-emacs/dape/dape-0.22.0.ebuild
@@ -0,0 +1,70 @@
+# Copyright 2023-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+NEED_EMACS="29.1"
+
+inherit elisp
+
+DESCRIPTION="Debug Adapter Protocol for Emacs"
+HOMEPAGE="https://github.com/svaante/dape"
+
+if [[ "${PV}" == 9999 ]]; then
+ inherit git-r3
+
+ EGIT_REPO_URI="https://github.com/svaante/${PN}.git"
+else
+ SRC_URI="https://github.com/svaante/${PN}/archive/refs/tags/${PV}.tar.gz
+ -> ${P}.tar.gz"
+
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+
+RDEPEND="
+ || (
+ app-emacs/jsonrpc
+ >=app-editors/emacs-30:*
+ )
+"
+DEPEND="
+ ${RDEPEND}
+"
+
+# Requires debugpy, but we do not package debugpy right now, as well as
+# js-debug. Most tests use only the former.
+RESTRICT="test"
+
+# Remove tests.el to skip compilation and failing tests (see above comment).
+ELISP_REMOVE="${PN}-tests.el"
+
+DOCS=( README.org CHANGELOG.org LICENSE )
+SITEFILE="50${PN}-gentoo.el"
+
+# elisp-enable-tests ert . -l dape-tests.el
+
+pkg_setup() {
+ elisp_pkg_setup
+ local has_jsonrpc="$(${EMACS} ${EMACSFLAGS} \
+ --eval "(princ (>= emacs-major-version 30))")"
+ if has_version app-emacs/jsonrpc || [[ ${has_jsonrpc} = t ]]; then
+ :
+ else
+ die "Emacs does not have jsonrpc.el 1.0.25 or later, nor was app-emacs/jsonrpc installed"
+ fi
+}
+
+src_compile() {
+ elisp_src_compile
+ elisp-make-autoload-file
+}
+
+src_install() {
+ # Need to ignore dape-tests.el.
+ einstalldocs
+ elisp-install "${PN}" dape.el dape.elc dape-autoloads.el
+ elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
end of thread, other threads:[~2025-02-04 12:52 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-21 14:12 [gentoo-commits] repo/gentoo:master commit in: app-emacs/dape/ Arsen Arsenović
-- strict thread matches above, loose matches on Subject: below --
2025-02-04 12:52 Maciej Barć
2025-02-04 12:52 Maciej Barć
2025-02-04 12:52 Maciej Barć
2025-01-10 10:55 Arsen Arsenović
2025-01-06 22:18 Maciej Barć
2025-01-06 22:18 Maciej Barć
2024-12-22 9:49 Sam James
2024-12-21 14:12 Arsen Arsenović
2024-12-18 1:06 Arsen Arsenović
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox