commit: d064837b8cfe5e19d9753feee0992c9a2b62ee75
Author: SPRATAY <spratay+linux <AT> getgoogleoff <DOT> me>
AuthorDate: Mon Jul 17 18:22:51 2023 +0000
Commit: kostya <spratay <AT> getgoogleoff <DOT> me>
CommitDate: Mon Jul 17 18:24:13 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d064837b
x11-misc/pywal: new package, add 3.3.0
Signed-off-by: SPRATAY <spratay+linux <AT> getgoogleoff.me>
x11-misc/pywal/Manifest | 1 +
x11-misc/pywal/pywal-3.3.0.ebuild | 36 ++++++++++++++++++++++++++++++++++++
2 files changed, 37 insertions(+)
diff --git a/x11-misc/pywal/Manifest b/x11-misc/pywal/Manifest
new file mode 100644
index 000000000..4588d17c1
--- /dev/null
+++ b/x11-misc/pywal/Manifest
@@ -0,0 +1 @@
+DIST pywal-3.3.0.tar.gz 64589 BLAKE2B
70d65edccf7aa7a54ebb69228a8abca107f3bb7b5bced62776da596491747d3fe26fe69f0d2a6118331a52c588a54d1933ae8117c018e97f32b92aa145ddeba4
SHA512
3c3d3e1d23c8fbdb6c50d500b7df4b24790bbab50c155f3f916dbaccb366e29ebdd60cbb01acc87631cba0f3ac2ce01f74e32f96b26a6e08bfb3933a45d0814f
diff --git a/x11-misc/pywal/pywal-3.3.0.ebuild
b/x11-misc/pywal/pywal-3.3.0.ebuild
new file mode 100644
index 000000000..fe9d877cd
--- /dev/null
+++ b/x11-misc/pywal/pywal-3.3.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1
+
+DESCRIPTION="A tool that generates color schemes from images"
+HOMEPAGE="https://github.com/dylanaraps/pywal"
+SRC_URI="https://github.com/dylanaraps/pywal/archive/${PV}.tar.gz ->
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="amd64 ~x86"
+IUSE="feh nitrogen"
+
+RDEPEND="feh? ( media-gfx/feh )
+nitrogen? ( x11-misc/nitrogen )"
+
+DEPEND="${RDEPEND}
+ media-gfx/imagemagick[jpeg]"
+
+src_compile() {
+ distutils-r1_src_compile
+}
+
+src_install() {
+ distutils-r1_src_install
+
+ insinto /usr/share/licenses/${PF}
+ doins LICENSE.md
+}