summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app-emacs/doom-modeline/Manifest1
-rw-r--r--app-emacs/doom-modeline/doom-modeline-4.2.0.ebuild39
2 files changed, 40 insertions, 0 deletions
diff --git a/app-emacs/doom-modeline/Manifest b/app-emacs/doom-modeline/Manifest
index fe28a5431d3e..e5094ba6f19b 100644
--- a/app-emacs/doom-modeline/Manifest
+++ b/app-emacs/doom-modeline/Manifest
@@ -1 +1,2 @@
DIST doom-modeline-4.1.0.tar.gz 64224 BLAKE2B cac0d28912e70d56c8cb839fe12c279db553d761bd3d75be9eb65c288f7a235a49fed1f9dd2bdad747778c1173d394b35a97b2b43c6e27420ba4b625f522830c SHA512 83f3cc5e2a39c01a3019282ac4245c644b4caa96bb0b8fcbe645e8a63dd0b5d2add36eab8468129b332d259212c7f011cb6481d34cdfb53faa334c3083b5ee3c
+DIST doom-modeline-4.2.0.tar.gz 68434 BLAKE2B 086963c696fbbe244333071c425f1a8aa531d0d6592d717197380cd5b80726ef5cd63019755c10a8cc3bee3f20cc0ca29946653713153857effcdf3673273b2b SHA512 fe99b65d8d80915082796c7e7458bc0a8db86a7860ebaed356bdcd6a56e94a521875fa98a07eea14dd70f983e06499fe89365104a87d09a1f49bad012ae636a5
diff --git a/app-emacs/doom-modeline/doom-modeline-4.2.0.ebuild b/app-emacs/doom-modeline/doom-modeline-4.2.0.ebuild
new file mode 100644
index 000000000000..e35cedd72dc5
--- /dev/null
+++ b/app-emacs/doom-modeline/doom-modeline-4.2.0.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit elisp
+
+DESCRIPTION="Fancy and fast mode-line for Emacs inspired by minimalism design"
+HOMEPAGE="https://seagle0128.github.io/doom-modeline/
+ https://github.com/seagle0128/doom-modeline/"
+
+if [[ ${PV} == *9999* ]] ; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/seagle0128/${PN}.git"
+else
+ SRC_URI="https://github.com/seagle0128/${PN}/archive/v${PV}.tar.gz
+ -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+
+DOCS=( README.md )
+SITEFILE="50${PN}-gentoo.el"
+
+RDEPEND="
+ app-emacs/compat
+ app-emacs/nerd-icons
+ app-emacs/shrink-path
+"
+BDEPEND="${RDEPEND}"
+
+elisp-enable-tests ert test
+
+src_compile() {
+ elisp_src_compile
+ elisp-make-autoload-file
+}