From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6905C15800A for ; Thu, 27 Jul 2023 09:56:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 562F3E0973; Thu, 27 Jul 2023 09:56:39 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3AF7EE0973 for ; Thu, 27 Jul 2023 09:56:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1BE59340B98 for ; Thu, 27 Jul 2023 09:56:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5EE42DDF for ; Thu, 27 Jul 2023 09:56:36 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1690451793.b73b1689807e1c2e8947f3c7a7bbd961b76f9885.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/dashboard/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/dashboard/Manifest app-emacs/dashboard/dashboard-1.8.0.ebuild X-VCS-Directories: app-emacs/dashboard/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: b73b1689807e1c2e8947f3c7a7bbd961b76f9885 X-VCS-Branch: master Date: Thu, 27 Jul 2023 09:56:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 26e65fa5-f725-4932-b112-31b5d6ad9cb2 X-Archives-Hash: fa8c52dcd4b06aa83365b7356072021e commit: b73b1689807e1c2e8947f3c7a7bbd961b76f9885 Author: Maciej Barć gentoo org> AuthorDate: Thu Jul 27 09:53:21 2023 +0000 Commit: Maciej Barć gentoo org> CommitDate: Thu Jul 27 09:56:33 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b73b1689 app-emacs/dashboard: bump to 1.8.0 Signed-off-by: Maciej Barć gentoo.org> app-emacs/dashboard/Manifest | 1 + app-emacs/dashboard/dashboard-1.8.0.ebuild | 48 ++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) diff --git a/app-emacs/dashboard/Manifest b/app-emacs/dashboard/Manifest index 20ce1f00b0eb..f8e7675be5d7 100644 --- a/app-emacs/dashboard/Manifest +++ b/app-emacs/dashboard/Manifest @@ -1 +1,2 @@ +DIST dashboard-1.8.0.tar.gz 195751 BLAKE2B 590ee410bf7d9b613b558f2ddbb032a00ea3034c02311da76d8dc8ff4f5260263dbb335dd05ee22b4bff42910ed63b0421f6737250d5971358566a2b32054aa3 SHA512 a15d3200cd0a658c5b37a50b3f4a693c1d027faba6797e88203633f4c40fd26e576afdb4e66205ba3c50f2a73e0acc9ff7f26afa7e09f7ca080a0c38742b84cf DIST dashboard-1.8.0_pre20230401.tar.gz 194750 BLAKE2B 813d8ca1ff3d8a20fda609976c704cb414cea0bad70e3ffdc94ae2db4f4a0135c8b4f724eeaf965f316f896519aaed0d9029f7df2329afa5b481b6c9476f1b08 SHA512 17f6d104d877f4c013d147293d58c6498a561fef280154cdf475737379d21e0886ddfb2de9b070fd5a6a127a37c68d59a33e1789c2cf7317e7712ac97ba2739f diff --git a/app-emacs/dashboard/dashboard-1.8.0.ebuild b/app-emacs/dashboard/dashboard-1.8.0.ebuild new file mode 100644 index 000000000000..cf895ff16673 --- /dev/null +++ b/app-emacs/dashboard/dashboard-1.8.0.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS=26.1 + +inherit elisp + +DESCRIPTION="Extensible Emacs dashboard, with sections like bookmarks, agenda and more" +HOMEPAGE="https://github.com/emacs-dashboard/emacs-dashboard/" + +if [[ ${PV} == *9999* ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/emacs-dashboard/emacs-${PN}.git" +else + SRC_URI="https://github.com/emacs-dashboard/emacs-${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" + S="${WORKDIR}"/emacs-${PN}-${PV} + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-3+" +SLOT="0" + +DOCS=( CHANGELOG.md README.org etc ) +PATCHES=( "${FILESDIR}"/${PN}-dashboard-widgets.el-banners.patch ) + +ELISP_REMOVE=( .dir-locals.el ) +SITEFILE="50${PN}-gentoo.el" + +src_prepare() { + elisp_src_prepare + + sed "s|@SITEETC@|${EPREFIX}${SITEETC}/${PN}|" -i dashboard-widgets.el || die +} + +src_test() { + ${EMACS} ${EMACSFLAGS} ${BYTECOMPFLAGS} \ + -L . -L test -l ${PN}.el -l test/activate.el || die "tests failed" +} + +src_install() { + elisp_src_install + + insinto "${SITEETC}"/${PN} + doins -r banners +}