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 8060515802E 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 BFEA0E2ABC; Tue, 25 Jun 2024 12:16:13 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9CB0CE2ABC 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 95034335D77 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 F2FEB1D4D 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: <1719224670.256832d475e7dc572a50992c14c93aefdbecbef0.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: 256832d475e7dc572a50992c14c93aefdbecbef0 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: 1199d282-96a7-45e7-9293-8bf49499aba1 X-Archives-Hash: 74a5fee7723a50e463e9b98fb87c268b commit: 256832d475e7dc572a50992c14c93aefdbecbef0 Author: Omar hotmail com> AuthorDate: Mon Jun 24 10:24:30 2024 +0000 Commit: David Roman gmail com> CommitDate: Mon Jun 24 10:24:30 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=256832d4 use insinto and doins on catppuccin-neovim v1.7.0 Signed-off-by: Omar hotmail.com> .../catppuccin-neovim-1.7.0.ebuild | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 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 5193d5610..9b5c53c23 100644 --- a/x11-themes/catppuccin-neovim/catppuccin-neovim-1.7.0.ebuild +++ b/x11-themes/catppuccin-neovim/catppuccin-neovim-1.7.0.ebuild @@ -12,11 +12,18 @@ KEYWORDS="~amd64" DEPEND="app-editors/neovim" src_install() { - cd ./colors - mkdir --parents "${D}"/usr/share/nvim/runtime/colors - cp -r *.vim "${D}"/usr/share/nvim/runtime/colors - cd .. - cd ./lua - mkdir --parents "${D}"/usr/share/nvim/runtime/lua - cp -r ./* "${D}"/usr/share/nvim/runtime/lua + insinto /usr/share/nvim/runtime/colors + doins ${S}/colors/*.vim + + insinto /usr/share/nvim/runtime/lua/catppuccin + doins ${S}/lua/catppuccin/* + + insinto /usr/share/nvim/runtime/lua/barbecue/theme + doins ${S}/lua/barbecue/theme/* + + insinto /usr/share/nvim/runtime/lua/lualine/themes + doins ${S}/lua/lualine/themes/* + + insinto /usr/share/nvim/runtime/lua/reactive/presets + doins ${S}/lua/reactive/presets/* }