public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Maciej Barć" <xgqt@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/eldev/
Date: Tue, 29 Oct 2024 23:22:22 +0000 (UTC)	[thread overview]
Message-ID: <1730244137.47f010432ea97512b13031ab14e31e03502a846a.xgqt@gentoo> (raw)

commit:     47f010432ea97512b13031ab14e31e03502a846a
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 29 22:51:31 2024 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Tue Oct 29 23:22:17 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47f01043

app-emacs/eldev: bump to 1.10.3

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

 app-emacs/eldev/Manifest            |  1 +
 app-emacs/eldev/eldev-1.10.3.ebuild | 59 +++++++++++++++++++++++++++++++++++++
 2 files changed, 60 insertions(+)

diff --git a/app-emacs/eldev/Manifest b/app-emacs/eldev/Manifest
index 007081218c11..09ad3f3ce95c 100644
--- a/app-emacs/eldev/Manifest
+++ b/app-emacs/eldev/Manifest
@@ -1,2 +1,3 @@
 DIST eldev-1.10.1.tar.gz 307097 BLAKE2B e86dbd717faca925c57c3331d2a5177e6ae96959b2425a1a62082ce268650f08b40744cab819f948d26c752523764ae330c6c57cffd0f1bcc440b8c0b4ea75b2 SHA512 8be7913457e826d10eea4625d5f412996e3b485d9d65749bcdc9bb020fac33aa41840d856e31fefe9a2f4b5a9dc597be8820416eaed96717287b8a966f663861
 DIST eldev-1.10.2.tar.gz 307514 BLAKE2B 9da91154ad464971798d6430d398b90c078e8cf32460c0bb1056d67a1e2599e33f9ee81d3e0d7c9dcd44e12c3c6d0cbcac459a714cb855ea454b78bc01fb315e SHA512 d82543271c235d25069008d87e885800342c4b13cf26adbd2cb9a64dfa224352c0019a322916191594b1be926d29830abbee8abbef1175a705d28e003f040ca3
+DIST eldev-1.10.3.tar.gz 308020 BLAKE2B 9beddf08b817fb37d785e40054a2e202334f7b68d5671dc503f6af8508a4f97946338806ef6cb2e08b2969cfb030a20a0358cfab4543c63e79beadf9e2930f59 SHA512 081073cdcabd5582962e5511992bf70ab90870572914be5e49f213723d62f4e7e08c745188ee5cfce1634f41f36bf2aed089a618cb4d1e56e30e0fed0d42acc6

diff --git a/app-emacs/eldev/eldev-1.10.3.ebuild b/app-emacs/eldev/eldev-1.10.3.ebuild
new file mode 100644
index 000000000000..c7b3f8685f75
--- /dev/null
+++ b/app-emacs/eldev/eldev-1.10.3.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit elisp
+
+DESCRIPTION="Emacs Lisp Development Tool"
+HOMEPAGE="https://emacs-eldev.github.io/eldev/
+	https://github.com/doublep/eldev/"
+
+if [[ "${PV}" == *9999* ]] ; then
+	inherit git-r3
+
+	EGIT_REPO_URI="https://github.com/doublep/${PN}.git"
+else
+	SRC_URI="https://github.com/doublep/${PN}/archive/${PV}.tar.gz
+		-> ${P}.tar.gz"
+
+	KEYWORDS="~amd64 ~arm ~ppc64 ~riscv ~x86"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+
+ELISP_REMOVE="
+	test/doctor.el
+"
+
+DOCS=( README.adoc )
+SITEFILE="50${PN}-gentoo.el"
+
+src_test() {
+	ELDEV_LOCAL="${S}" "./bin/${PN}" test
+}
+
+src_install() {
+	elisp_src_install
+
+	exeinto /usr/bin
+	doexe "./bin/${PN}"
+
+	# NOTICE: If ELDEV_LOCAL is defined Eldev will use it
+	# to load up it's components,
+	# if it is not it will bootstrap itself from network
+	# always check if it uses installed Emacs Lisp files.
+	# Also, do not forget to run `env-update` & reopen your shell.
+	# https://github.com/doublep/eldev#influential-environment-variables
+	echo "ELDEV_LOCAL=${SITELISP}/${PN}" >> "${T}/99${PN}" || die
+	doenvd "${T}/99${PN}"
+}
+
+pkg_postinst() {
+	elisp_pkg_postinst
+
+	ewarn "Remember to run \`env-update && source /etc/profile\` if you plan"
+	ewarn "to use Eldev in a shell before logging out (or restarting"
+	ewarn "your login manager)."
+}


             reply	other threads:[~2024-10-29 23:22 UTC|newest]

Thread overview: 68+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-29 23:22 Maciej Barć [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-03-15 19:55 [gentoo-commits] repo/gentoo:master commit in: app-emacs/eldev/ Maciej Barć
2025-01-23 10:17 Maciej Barć
2025-01-22 17:34 Arthur Zamarin
2024-12-20 11:31 Maciej Barć
2024-12-20 11:31 Maciej Barć
2024-12-20 11:31 Maciej Barć
2024-12-14 19:06 Arthur Zamarin
2024-10-13 19:23 Maciej Barć
2024-06-25 22:03 Sam James
2024-06-25 15:26 Maciej Barć
2024-06-07 17:46 Arthur Zamarin
2024-05-13 17:59 Maciej Barć
2024-05-06 18:00 Maciej Barć
2024-05-06 18:00 Maciej Barć
2024-05-06 18:00 Maciej Barć
2024-04-17 23:59 Sam James
2024-03-17 21:53 Maciej Barć
2024-03-13 16:40 Maciej Barć
2024-03-13 16:40 Maciej Barć
2024-02-27 23:21 Sam James
2024-01-27 21:26 Maciej Barć
2024-01-15 21:20 Maciej Barć
2024-01-15 21:20 Maciej Barć
2023-12-22  5:07 Sam James
2023-12-15  2:33 Sam James
2023-11-18  1:31 Maciej Barć
2023-11-01 19:17 Maciej Barć
2023-10-06 15:21 Maciej Barć
2023-10-06 15:21 Maciej Barć
2023-10-06 12:02 Arthur Zamarin
2023-09-10 14:41 Sam James
2023-09-05 14:11 Maciej Barć
2023-09-05 14:11 Maciej Barć
2023-09-05 14:11 Maciej Barć
2023-09-02 16:22 Sam James
2023-08-22 11:33 Arthur Zamarin
2023-08-07 11:31 Maciej Barć
2023-08-02 14:11 Maciej Barć
2023-07-23 14:02 Maciej Barć
2023-07-23 14:02 Maciej Barć
2023-07-22 13:09 Maciej Barć
2023-07-22 13:09 Maciej Barć
2023-07-22 13:09 Maciej Barć
2023-07-10  7:41 Jakov Smolić
2023-07-08  0:10 Sam James
2023-07-08  0:10 Sam James
2023-07-07 22:54 Sam James
2023-06-20 16:23 Sam James
2023-06-07 13:40 Maciej Barć
2023-05-19 17:45 Sam James
2023-05-19 14:18 Maciej Barć
2023-05-19 14:18 Maciej Barć
2023-05-19 14:18 Maciej Barć
2022-12-21 14:39 Maciej Barć
2022-12-21 14:39 Maciej Barć
2022-11-26 12:47 Maciej Barć
2022-11-26 12:47 Maciej Barć
2022-09-14 16:03 Maciej Barć
2022-09-14 16:03 Maciej Barć
2022-08-27  1:27 Maciej Barć
2022-08-27  1:27 Maciej Barć
2022-08-27  1:27 Maciej Barć
2022-08-19 15:42 Maciej Barć
2022-06-30 15:33 Maciej Barć
2022-06-30 15:33 Maciej Barć
2022-06-11  1:50 Maciej Barć
2022-05-19 23:58 Maciej Barć

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=1730244137.47f010432ea97512b13031ab14e31e03502a846a.xgqt@gentoo \
    --to=xgqt@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