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 CFCE5158451 for ; Mon, 8 Jan 2024 19:22:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C99A02BC02E; Mon, 8 Jan 2024 19:22:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 9FFF62BC020 for ; Mon, 8 Jan 2024 19:22:48 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CF0F33432B9 for ; Mon, 8 Jan 2024 19:22:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DA33B14B6 for ; Mon, 8 Jan 2024 19:22:44 +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: <1704741761.36b4bbe637bd017ceedfd326f5293e236cabd66c.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/doom-themes/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/doom-themes/doom-themes-9999.ebuild X-VCS-Directories: app-emacs/doom-themes/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 36b4bbe637bd017ceedfd326f5293e236cabd66c X-VCS-Branch: master Date: Mon, 8 Jan 2024 19:22:44 +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: 781fcf6b-0969-4ee8-b8c9-db2c7c05a2b1 X-Archives-Hash: a2eedd1dd1add3d6846769793ace3e5a commit: 36b4bbe637bd017ceedfd326f5293e236cabd66c Author: Maciej Barć gentoo org> AuthorDate: Mon Jan 8 17:48:26 2024 +0000 Commit: Maciej Barć gentoo org> CommitDate: Mon Jan 8 19:22:41 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36b4bbe6 app-emacs/doom-themes: add live 9999 version Signed-off-by: Maciej Barć gentoo.org> app-emacs/doom-themes/doom-themes-9999.ebuild | 38 +++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/app-emacs/doom-themes/doom-themes-9999.ebuild b/app-emacs/doom-themes/doom-themes-9999.ebuild new file mode 100644 index 000000000000..96c464e3ae78 --- /dev/null +++ b/app-emacs/doom-themes/doom-themes-9999.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit elisp + +DESCRIPTION="Opinionated megapack of modern color-themes for GNU Emacs" +HOMEPAGE="https://github.com/doomemacs/themes/" + +if [[ "${PV}" == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/doomemacs/themes.git" +else + SRC_URI="https://github.com/doomemacs/themes/archive/${PV}.tar.gz + -> ${P}.tar.gz" + S="${WORKDIR}/themes-${PV}" + + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="MIT" +SLOT="0" + +DOCS=( README.md ) +SITEFILE="50${PN}-gentoo.el" + +src_test() { + emake test +} + +src_install() { + elisp_src_install + + insinto "${SITELISP}"/${PN} + doins -r themes +}