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 A50D315802E for ; Tue, 25 Jun 2024 12:16:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BC926E2ABB; Tue, 25 Jun 2024 12:16:13 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 991A9E2ABB for ; Tue, 25 Jun 2024 12:16:13 +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 A1974335DE9 for ; Tue, 25 Jun 2024 12:16:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CD4521D32 for ; Tue, 25 Jun 2024 12:16:10 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1719218835.e45c496c68e11dc56939f1686200ced9465582da.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: x11-themes/catppuccin-neovim/ X-VCS-Repository: repo/proj/guru X-VCS-Files: x11-themes/catppuccin-neovim/Manifest x11-themes/catppuccin-neovim/catppuccin-neovim-1.7.0.ebuild X-VCS-Directories: x11-themes/catppuccin-neovim/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: e45c496c68e11dc56939f1686200ced9465582da X-VCS-Branch: master Date: Tue, 25 Jun 2024 12:16:10 +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: a64bd020-dc79-4e36-b621-e36ca55abc37 X-Archives-Hash: 8393275c5b59015ad23658e1a3b7dfae commit: e45c496c68e11dc56939f1686200ced9465582da Author: Omar hotmail com> AuthorDate: Mon Jun 24 08:47:15 2024 +0000 Commit: David Roman gmail com> CommitDate: Mon Jun 24 08:47:15 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e45c496c x11-themes/catppuccin-neovim: new package, add 1.7.0 Signed-off-by: Omar hotmail.com> x11-themes/catppuccin-neovim/Manifest | 1 + .../catppuccin-neovim-1.7.0.ebuild | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/x11-themes/catppuccin-neovim/Manifest b/x11-themes/catppuccin-neovim/Manifest new file mode 100644 index 000000000..cd8315a1d --- /dev/null +++ b/x11-themes/catppuccin-neovim/Manifest @@ -0,0 +1 @@ +DIST catppuccin-neovim-1.7.0.tar.gz 68616 BLAKE2B dece7d3ddd4d38c2ab2da31f975894d0f6e25029d5075bd02c0d7b26b62b1d6491d54fd48486f525829ecf84d465fd582c445a3efc30aa88fbb8b2f2bf67772c SHA512 0a7cd5c7bcfbb4f945ea52201f95608679d2fec94672817dc5bc528e41d79fed88e4064e61ecbfb0a9319d706a0310abac825fefacb047cc8d2a435518fcd93a diff --git a/x11-themes/catppuccin-neovim/catppuccin-neovim-1.7.0.ebuild b/x11-themes/catppuccin-neovim/catppuccin-neovim-1.7.0.ebuild new file mode 100644 index 000000000..bd657acad --- /dev/null +++ b/x11-themes/catppuccin-neovim/catppuccin-neovim-1.7.0.ebuild @@ -0,0 +1,22 @@ +# Copyright 2024 Catppuccin +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +DESCRIPTION="Soothing pastel theme for Neovim" +HOMEPAGE="https://github.com/catppuccin/nvim" +SRC_URI="https://github.com/catppuccin/nvim/archive/refs/tags/v"${PV}".tar.gz -> catppuccin-neovim-"${PV}".tar.gz" +S=""${WORKDIR}"/nvim-"${PV}"" +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +DEPEND="app-editors/neovim" + +src_unpack() { + tar -xpf /var/tmp/portage/x11-themes/catppuccin-neovim-"${PV}"/distdir/catppuccin-neovim-"${PV}".tar.gz +} + +src_install() { + cd ./colors + mkdir --parents "${D}"/usr/share/nvim/runtime/colors + cp -r *.vim "${D}"/usr/share/nvim/runtime/colors +}