Gentoo Archives: gentoo-commits

From: "Maciej Barć" <xgqt@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/dashboard/
Date: Thu, 25 Aug 2022 01:58:16
Message-Id: 1661392686.2e4fe45f1a275ec48ff1d678ff7db940cd3471a1.xgqt@gentoo
1 commit: 2e4fe45f1a275ec48ff1d678ff7db940cd3471a1
2 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 25 01:54:24 2022 +0000
4 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 25 01:58:06 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e4fe45f
7
8 app-emacs/dashboard: bump to 1.8.0_pre20220809
9
10 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
11
12 app-emacs/dashboard/Manifest | 1 +
13 .../dashboard/dashboard-1.8.0_pre20220809.ebuild | 38 ++++++++++++++++++++++
14 2 files changed, 39 insertions(+)
15
16 diff --git a/app-emacs/dashboard/Manifest b/app-emacs/dashboard/Manifest
17 index 20e1b7ef9544..2add109ee8eb 100644
18 --- a/app-emacs/dashboard/Manifest
19 +++ b/app-emacs/dashboard/Manifest
20 @@ -1 +1,2 @@
21 DIST dashboard-1.8.0_pre20220406.tar.gz 191442 BLAKE2B 8b105d8ed9b31e7439cc55b85c9e0bb46739fcb26f9e1e605492a552cbcfe9799794be6239b6c622bfbfc2f850d20f2944f759010eb502bcb75edb570ae7e5b8 SHA512 b3b714bbee034fecbf1172dccd5eebc38373c11a510c532a7b9ba31cac79daafe7e9ccf7c5e622abbdb44817c966f100ec4f7a447e8b0370f9d7e66ff55e45ca
22 +DIST dashboard-1.8.0_pre20220809.tar.gz 192857 BLAKE2B 22a7be748b3308282deb7e0500269a0aa809c2c6a5e57e984e83ca13803b7e55364e2f5619380444a7daf320c1bc6da26daeb0451efc3c20fc82148e55fa7f3a SHA512 10e2cdd724731b0c5ae195f8a8b3c9ba83a4c6a0d5fba00e7ecc224b22673296ca522642d179449e68d852b06789665e2c5bbfef84dea5e878110ee9e3b23dce
23
24 diff --git a/app-emacs/dashboard/dashboard-1.8.0_pre20220809.ebuild b/app-emacs/dashboard/dashboard-1.8.0_pre20220809.ebuild
25 new file mode 100644
26 index 000000000000..56c257960eb5
27 --- /dev/null
28 +++ b/app-emacs/dashboard/dashboard-1.8.0_pre20220809.ebuild
29 @@ -0,0 +1,38 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +H=49e5603cac7d028bfc4c679161a20ca40327956c
36 +NEED_EMACS=26.1
37 +
38 +inherit elisp
39 +
40 +DESCRIPTION="Extensible Emacs dashboard, with sections for bookmarks, projects, agenda and more"
41 +HOMEPAGE="https://github.com/emacs-dashboard/emacs-dashboard/"
42 +SRC_URI="https://github.com/emacs-dashboard/emacs-${PN}/archive/${H}.tar.gz -> ${P}.tar.gz"
43 +S="${WORKDIR}"/emacs-${PN}-${H}
44 +
45 +LICENSE="GPL-3"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +RESTRICT="test" # tests not in the repository, require "Eask"
49 +
50 +DOCS=( CHANGELOG.md README.org etc )
51 +PATCHES=( "${FILESDIR}"/${PN}-dashboard-widgets.el-banners.patch )
52 +
53 +ELISP_REMOVE=( .dir-locals.el )
54 +SITEFILE="50${PN}-gentoo.el"
55 +
56 +src_prepare() {
57 + elisp_src_prepare
58 +
59 + sed "s|@SITEETC@|${EPREFIX}${SITEETC}/${PN}|" -i dashboard-widgets.el || die
60 +}
61 +
62 +src_install() {
63 + elisp_src_install
64 +
65 + insinto "${SITEETC}"/${PN}
66 + doins -r banners
67 +}