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 D31FB15802E 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 16D65E2ABD; Tue, 25 Jun 2024 12:16:14 +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 EC9D3E2ABD 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 CEF1433BDC5 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 1202B1D4E for ; Tue, 25 Jun 2024 12:16:11 +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: <1719224712.5929f136248939c35c3f2617782dffd2bc328123.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/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: 5929f136248939c35c3f2617782dffd2bc328123 X-VCS-Branch: master Date: Tue, 25 Jun 2024 12:16:11 +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: 6a893824-39ab-49bd-b036-67e65f711b96 X-Archives-Hash: 75f90d4e103ef612ee7f84921c42f1a9 commit: 5929f136248939c35c3f2617782dffd2bc328123 Author: Omar hotmail com> AuthorDate: Mon Jun 24 10:25:12 2024 +0000 Commit: David Roman gmail com> CommitDate: Mon Jun 24 10:25:12 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5929f136 use insinto and doins on catppuccin-neovim v1.7.0 Signed-off-by: Omar hotmail.com> x11-themes/catppuccin-neovim/catppuccin-neovim-1.7.0.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/x11-themes/catppuccin-neovim/catppuccin-neovim-1.7.0.ebuild b/x11-themes/catppuccin-neovim/catppuccin-neovim-1.7.0.ebuild index 9b5c53c23..26026a2f1 100644 --- a/x11-themes/catppuccin-neovim/catppuccin-neovim-1.7.0.ebuild +++ b/x11-themes/catppuccin-neovim/catppuccin-neovim-1.7.0.ebuild @@ -13,17 +13,17 @@ DEPEND="app-editors/neovim" src_install() { insinto /usr/share/nvim/runtime/colors - doins ${S}/colors/*.vim + doins "${S}"/colors/*.vim insinto /usr/share/nvim/runtime/lua/catppuccin - doins ${S}/lua/catppuccin/* + doins "${S}"/lua/catppuccin/* insinto /usr/share/nvim/runtime/lua/barbecue/theme - doins ${S}/lua/barbecue/theme/* + doins "${S}"/lua/barbecue/theme/* insinto /usr/share/nvim/runtime/lua/lualine/themes - doins ${S}/lua/lualine/themes/* + doins "${S}"/lua/lualine/themes/* insinto /usr/share/nvim/runtime/lua/reactive/presets - doins ${S}/lua/reactive/presets/* + doins "${S}"/lua/reactive/presets/* }