repo/gentoo:master commit in: app-emacs/clatter/
Maciej BarÄ <[email protected]> Mon, 03 Aug 2026 11:33:53 +0000 (UTC)
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1785756824.3b29e48ae3b61d5c97beb70ff72c9de850a2516b.xgqt@gentoo> |
commit: 3b29e48ae3b61d5c97beb70ff72c9de850a2516b
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 3 11:02:05 2026 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Mon Aug 3 11:33:44 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b29e48a
app-emacs/clatter: bump to 0.7.0
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-emacs/clatter/Manifest | 1 +
app-emacs/clatter/clatter-0.7.0.ebuild | 36 ++++++++++++++++++++++++++++++++++
2 files changed, 37 insertions(+)
diff --git a/app-emacs/clatter/Manifest b/app-emacs/clatter/Manifest
index c24054e62f71..85ee473c41ad 100644
--- a/app-emacs/clatter/Manifest
+++ b/app-emacs/clatter/Manifest
@@ -1,2 +1,3 @@
DIST clatter-0.5.0.gh.tar.gz 358638 BLAKE2B 6f0a2baedb89988ddeaa7e3a606744d8e0c75275f0e4362380423319bfdf0b5c6043667fdc1e122eb1bd7c7698551e0c0efac54ef6cd06f00280095eccd5be17 SHA512 5bac0604484d5421ac9cda822dcc30dfc0f456697a9ec68da57f955efd7e1d35f24f4e65ba04930a7dd9d0a5eb37fa4fee516d1f97cb2659e685cc3bc836ac5a
DIST clatter-0.6.0.gh.tar.gz 399061 BLAKE2B 32ff110412ea01cbcd6cbc250341bc117d895785e32836893887997d8aa3777a0e93ee7e7b7d90a00930601218a54a014025d9c216f4d245777762e1e4888623 SHA512 91a960e46a4b843058389d9f9256222e877a986e82dc428d16006979f442909c08a8e59b1d10713289d86c6c2db394a9521ec5013482d51e545ac5314e62af43
+DIST clatter-0.7.0.gh.tar.gz 413047 BLAKE2B b0ca911becf791a2a92aa916db4a332fe3c139e562f41ad7e81ce31b21bf3ef40be842a1c73c654f2bfd48dba9ae0199312ab833edba59094f607f6e349d15dd SHA512 a49731b4757b2bb0bf25a0890c795b4f9faea385cb0ed7e347bfe3b5e55d073c7884c8aebbe7fb76c55ba0675768d0fc9b988e8cf09ee400b50ef1977c7c6e16
diff --git a/app-emacs/clatter/clatter-0.7.0.ebuild b/app-emacs/clatter/clatter-0.7.0.ebuild
new file mode 100644
index 000000000000..7fe62b031f12
--- /dev/null
+++ b/app-emacs/clatter/clatter-0.7.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=9
+
+NEED_EMACS="29.1"
+
+inherit elisp
+
+DESCRIPTION="An IRCv3-compliant IRC client for GNU Emacs"
+HOMEPAGE="https://github.com/parenworks/clatter.el/"
+
+if [[ "${PV}" == *9999* ]] ; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/parenworks/${PN}.el"
+else
+ SRC_URI="https://github.com/parenworks/${PN}.el/archive/refs/tags/v${PV}.tar.gz
+ -> ${P}.gh.tar.gz"
+ S="${WORKDIR}/${PN}.el-${PV}"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+
+DOCS=( GUIDE.org README.org )
+SITEFILE="50${PN}-gentoo.el"
+
+src_compile() {
+ elisp_src_compile
+ elisp-make-autoload-file
+}
+
+src_test() {
+ emake test
+}