public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: x11-themes/catppuccin-btop/
@ 2024-03-29 17:45 Julien Roy
  0 siblings, 0 replies; 2+ messages in thread
From: Julien Roy @ 2024-03-29 17:45 UTC (permalink / raw
  To: gentoo-commits

commit:     37a59a97346b79b2fca4c5864a3fd7a9f855936a
Author:     Denis Strizhkin <strdenis02 <AT> gmail <DOT> com>
AuthorDate: Fri Mar 29 17:25:30 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Fri Mar 29 17:25:30 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=37a59a97

x11-themes/catppuccin-btop: new package, add 1.0.0

Signed-off-by: Denis Strizhkin <strdenis02 <AT> gmail.com>

 x11-themes/catppuccin-btop/Manifest                |  1 +
 .../catppuccin-btop/catppuccin-btop-1.0.0.ebuild   | 26 ++++++++++++++++++++++
 x11-themes/catppuccin-btop/metadata.xml            | 11 +++++++++
 3 files changed, 38 insertions(+)

diff --git a/x11-themes/catppuccin-btop/Manifest b/x11-themes/catppuccin-btop/Manifest
new file mode 100644
index 0000000000..90d4dce4da
--- /dev/null
+++ b/x11-themes/catppuccin-btop/Manifest
@@ -0,0 +1 @@
+DIST catppuccin-btop-1.0.0.tar.gz 1869 BLAKE2B c63aa3250653d94b088f7dfbeb8c6efc86b863c7dbe44277b4948b9a3a0b52f008ad1846f7bbf78b19a4df0b0a7f0a61fe5c8bd25de6b5215735b7ab9870fdef SHA512 0746315186ca000fab3985efe73e908872614ee9310777a6dd8eaed37ba1a8204b43804b17a5ca62f7b07ad5f8d59a5883742551f41156bc6ff9cbf05654b9f2

diff --git a/x11-themes/catppuccin-btop/catppuccin-btop-1.0.0.ebuild b/x11-themes/catppuccin-btop/catppuccin-btop-1.0.0.ebuild
new file mode 100644
index 0000000000..800fb024b0
--- /dev/null
+++ b/x11-themes/catppuccin-btop/catppuccin-btop-1.0.0.ebuild
@@ -0,0 +1,26 @@
+EAPI=8
+
+DESCRIPTION="Soothing pastel theme for btop ."
+HOMEPAGE="https://github.com/catppuccin"
+
+SRC_URI="
+	https://github.com/catppuccin/btop/releases/download/${PV}/themes.tar.gz -> ${P}.tar.gz
+"
+S="${WORKDIR}/themes"
+
+DEPEND="
+	sys-process/btop
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+src_install() {
+	insinto "/usr/share/btop/themes"
+	for f in "${S}"/*.theme; do
+		if [ -f "$f" ]; then
+			doins "$f"
+		fi
+	done
+}

diff --git a/x11-themes/catppuccin-btop/metadata.xml b/x11-themes/catppuccin-btop/metadata.xml
new file mode 100644
index 0000000000..04f837b809
--- /dev/null
+++ b/x11-themes/catppuccin-btop/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>strdenis02@gmail.com</email>
+		<name>Denis Strizhkin</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">catppuccin/btop</remote-id>
+	</upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: x11-themes/catppuccin-btop/
@ 2024-04-05 18:48 Julien Roy
  0 siblings, 0 replies; 2+ messages in thread
From: Julien Roy @ 2024-04-05 18:48 UTC (permalink / raw
  To: gentoo-commits

commit:     3dfca8dcb13ea5f02cfbef4ee2dfe59fafd7f0de
Author:     Denis Strizhkin <strdenis02 <AT> gmail <DOT> com>
AuthorDate: Fri Apr  5 17:39:13 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Fri Apr  5 17:39:49 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3dfca8dc

x11-themes/catppuccin-btop: change DEPEND to RDEPEND & simplify install

Signed-off-by: Denis Strizhkin <strdenis02 <AT> gmail.com>

 x11-themes/catppuccin-btop/catppuccin-btop-1.0.0.ebuild | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/x11-themes/catppuccin-btop/catppuccin-btop-1.0.0.ebuild b/x11-themes/catppuccin-btop/catppuccin-btop-1.0.0.ebuild
index 800fb024b0..558385c1d7 100644
--- a/x11-themes/catppuccin-btop/catppuccin-btop-1.0.0.ebuild
+++ b/x11-themes/catppuccin-btop/catppuccin-btop-1.0.0.ebuild
@@ -8,7 +8,7 @@ SRC_URI="
 "
 S="${WORKDIR}/themes"
 
-DEPEND="
+RDEPEND="
 	sys-process/btop
 "
 
@@ -18,9 +18,5 @@ KEYWORDS="~amd64"
 
 src_install() {
 	insinto "/usr/share/btop/themes"
-	for f in "${S}"/*.theme; do
-		if [ -f "$f" ]; then
-			doins "$f"
-		fi
-	done
+	doins *.theme
 }


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-04-05 18:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-05 18:48 [gentoo-commits] repo/proj/guru:master commit in: x11-themes/catppuccin-btop/ Julien Roy
  -- strict thread matches above, loose matches on Subject: below --
2024-03-29 17:45 Julien Roy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox