public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Viorel Munteanu" <ceamac.paragon@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-misc/fastfetch/
Date: Mon, 22 Aug 2022 05:15:18 +0000 (UTC)	[thread overview]
Message-ID: <1661145313.0b7adc8db2de0e39aa08195d4afdb176ef91b76c.viorel_munteanu@gentoo> (raw)

commit:     0b7adc8db2de0e39aa08195d4afdb176ef91b76c
Author:     Viorel Munteanu <ceamac.paragon <AT> gmail <DOT> com>
AuthorDate: Mon Aug 22 05:13:20 2022 +0000
Commit:     Viorel Munteanu <ceamac.paragon <AT> gmail <DOT> com>
CommitDate: Mon Aug 22 05:15:13 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0b7adc8d

app-misc/fastfetch: add 1.6.4

Signed-off-by: Viorel Munteanu <ceamac.paragon <AT> gmail.com>

 app-misc/fastfetch/Manifest                        |  1 +
 ...astfetch-9999.ebuild => fastfetch-1.6.4.ebuild} | 29 ++++++++--------------
 app-misc/fastfetch/fastfetch-9999.ebuild           | 28 ++++++++-------------
 3 files changed, 22 insertions(+), 36 deletions(-)

diff --git a/app-misc/fastfetch/Manifest b/app-misc/fastfetch/Manifest
index a166782a2..261b97f81 100644
--- a/app-misc/fastfetch/Manifest
+++ b/app-misc/fastfetch/Manifest
@@ -1,2 +1,3 @@
 DIST fastfetch-1.6.1.tar.gz 349168 BLAKE2B 21076a879e921898766d70566f21cbf9d3f05a6dfc8b2b32be8908f32e0b130c01aca43b1c61ea5fb909757eca116e8bdb604f65d695a7b40b40f18607452597 SHA512 f0a5609cf8d3b57331617396f1c9656ac41dbcb58f485cc6a035dcc02813d7888d7ba42ee953d7f6bc1dd5c3a1ca702f6d1a8582ad5c6b8a4d085f1d40ac3c85
 DIST fastfetch-1.6.3.tar.gz 350035 BLAKE2B ca15d18455d889ffe7a5448977f64504eb0c503f81c9d0c276fa6940c668f93e937add5cdda20f37285b9eb7b8974c34b5d3a15eeac6da3b96470c38c04fd6c4 SHA512 04d4dd2850e104b2938bce13a1e3fd93ab1c18676bff9ba3e9524a762ead000c7b3707d530aaad718f1b01723dc749d2f74343a64fb932474098115aadba3665
+DIST fastfetch-1.6.4.tar.gz 350947 BLAKE2B 4fd493c15f6997fbb4caa6ce3a4266addc2a8f1fcb6328cdbfbc24988ca7d778bcdd1d3f8ba21894436a0a6aca83ea3a8396de43016c5b66ec55bc9148062222 SHA512 7470ab66ef3a0a351f3455240625fdffc04f487fd9af6975fcbb4ba5803357bfab55156c7b6396faab3d12b26b883a0c0eb8722b23f08173250d51527949b30d

diff --git a/app-misc/fastfetch/fastfetch-9999.ebuild b/app-misc/fastfetch/fastfetch-1.6.4.ebuild
similarity index 77%
copy from app-misc/fastfetch/fastfetch-9999.ebuild
copy to app-misc/fastfetch/fastfetch-1.6.4.ebuild
index c545243a9..8bb11194b 100644
--- a/app-misc/fastfetch/fastfetch-9999.ebuild
+++ b/app-misc/fastfetch/fastfetch-1.6.4.ebuild
@@ -16,6 +16,7 @@ fi
 
 LICENSE="MIT"
 SLOT="0"
+KEYWORDS="~amd64"
 IUSE="X chafa dbus gnome imagemagick opencl opengl osmesa pci sqlite vulkan wayland xcb xfce xrandr"
 
 # note - qa-vdb will always report errors because fastfetch loads the libs dynamically
@@ -46,27 +47,19 @@ RDEPEND="
 DEPEND="${RDEPEND}"
 BDEPEND="virtual/pkgconfig"
 
-REQUIRED_USE="xrandr? ( X )"
-
-pkg_setup() {
-	if use chafa && ! use imagemagick; then
-		elog "USE chafa depends on imagemagick, but that is currently disabled.  Enabling imagemagick"
-	fi
-
-	if use imagemagick || use chafa; then
-		export fastfetch_enable_imagemagick7=$(has_version '>=media-gfx/imagemagick-7.0.0' && echo yes || echo no)
-	else
-		export fastfetch_enable_imagemagick7=no
-	fi
+REQUIRED_USE="
+	xrandr? ( X )
+	chafa? ( imagemagick )
+"
 
-	if use imagemagick || use chafa; then
-		export fastfetch_enable_imagemagick6=$(has_version '<media-gfx/imagemagick-7.0.0' && echo yes || echo no)
-	else
-		export fastfetch_enable_imagemagick6=no
+src_configure() {
+	local fastfetch_enable_imagemagick7=no
+	local fastfetch_enable_imagemagick6=no
+	if use imagemagick; then
+		fastfetch_enable_imagemagick7=$(has_version '>=media-gfx/imagemagick-7.0.0' && echo yes || echo no)
+		fastfetch_enable_imagemagick6=$(has_version '<media-gfx/imagemagick-7.0.0' && echo yes || echo no)
 	fi
-}
 
-src_configure() {
 	local mycmakeargs=(
 		-DENABLE_RPM=no
 		-DENABLE_LIBPCI=$(usex pci)

diff --git a/app-misc/fastfetch/fastfetch-9999.ebuild b/app-misc/fastfetch/fastfetch-9999.ebuild
index c545243a9..ea9cb6e7a 100644
--- a/app-misc/fastfetch/fastfetch-9999.ebuild
+++ b/app-misc/fastfetch/fastfetch-9999.ebuild
@@ -46,27 +46,19 @@ RDEPEND="
 DEPEND="${RDEPEND}"
 BDEPEND="virtual/pkgconfig"
 
-REQUIRED_USE="xrandr? ( X )"
-
-pkg_setup() {
-	if use chafa && ! use imagemagick; then
-		elog "USE chafa depends on imagemagick, but that is currently disabled.  Enabling imagemagick"
-	fi
-
-	if use imagemagick || use chafa; then
-		export fastfetch_enable_imagemagick7=$(has_version '>=media-gfx/imagemagick-7.0.0' && echo yes || echo no)
-	else
-		export fastfetch_enable_imagemagick7=no
-	fi
+REQUIRED_USE="
+	xrandr? ( X )
+	chafa? ( imagemagick )
+"
 
-	if use imagemagick || use chafa; then
-		export fastfetch_enable_imagemagick6=$(has_version '<media-gfx/imagemagick-7.0.0' && echo yes || echo no)
-	else
-		export fastfetch_enable_imagemagick6=no
+src_configure() {
+	local fastfetch_enable_imagemagick7=no
+	local fastfetch_enable_imagemagick6=no
+	if use imagemagick; then
+		fastfetch_enable_imagemagick7=$(has_version '>=media-gfx/imagemagick-7.0.0' && echo yes || echo no)
+		fastfetch_enable_imagemagick6=$(has_version '<media-gfx/imagemagick-7.0.0' && echo yes || echo no)
 	fi
-}
 
-src_configure() {
 	local mycmakeargs=(
 		-DENABLE_RPM=no
 		-DENABLE_LIBPCI=$(usex pci)


             reply	other threads:[~2022-08-22  5:15 UTC|newest]

Thread overview: 88+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-22  5:15 Viorel Munteanu [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-05-27 17:22 [gentoo-commits] repo/proj/guru:master commit in: app-misc/fastfetch/ Viorel Munteanu
2023-05-27 17:18 ` [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu
2023-03-25  7:40 [gentoo-commits] repo/proj/guru:master " Viorel Munteanu
2023-03-25  7:36 ` [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu
2023-03-03 12:53 Viorel Munteanu
2023-02-27 18:04 [gentoo-commits] repo/proj/guru:master " Viorel Munteanu
2023-02-27 17:48 ` [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu
2023-02-27 18:04 [gentoo-commits] repo/proj/guru:master " Viorel Munteanu
2023-02-27 17:48 ` [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu
2023-02-23  9:24 [gentoo-commits] repo/proj/guru:master " Viorel Munteanu
2023-02-22  6:30 ` [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu
2023-02-22  9:35 Viorel Munteanu
2023-02-22  6:30 Viorel Munteanu
2023-02-22  6:30 Viorel Munteanu
2023-01-24  9:42 [gentoo-commits] repo/proj/guru:master " Viorel Munteanu
2023-01-24  9:40 ` [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu
2023-01-24  9:42 [gentoo-commits] repo/proj/guru:master " Viorel Munteanu
2023-01-24  9:40 ` [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu
2023-01-22  7:14 Viorel Munteanu
2023-01-22  7:14 Viorel Munteanu
2022-12-31 12:20 [gentoo-commits] repo/proj/guru:master " Viorel Munteanu
2022-12-31 12:20 ` [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu
2022-12-31 12:20 Viorel Munteanu
2022-12-30 20:42 Viorel Munteanu
2022-12-30 20:36 [gentoo-commits] repo/proj/guru:master " Viorel Munteanu
2022-12-30 20:35 ` [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu
2022-12-30 20:35 Viorel Munteanu
2022-12-30  9:41 [gentoo-commits] repo/proj/guru:master " Viorel Munteanu
2022-12-30  9:41 ` [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu
2022-12-30  9:41 Viorel Munteanu
2022-12-29 15:28 [gentoo-commits] repo/proj/guru:master " Viorel Munteanu
2022-12-29 15:27 ` [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu
2022-12-29 15:27 Viorel Munteanu
2022-12-28 14:39 Viorel Munteanu
2022-11-02 16:23 Viorel Munteanu
2022-10-11 16:45 Viorel Munteanu
2022-10-10  9:02 Viorel Munteanu
2022-10-10  4:47 Viorel Munteanu
2022-09-15 16:54 Viorel Munteanu
2022-09-15 16:54 Viorel Munteanu
2022-09-07  7:42 Viorel Munteanu
2022-09-04  6:35 Viorel Munteanu
2022-08-22 10:29 Viorel Munteanu
2022-08-22 10:29 Viorel Munteanu
2022-08-22  5:15 Viorel Munteanu
2022-08-12 19:56 Viorel Munteanu
2022-08-12 14:10 Viorel Munteanu
2022-08-12 14:10 Viorel Munteanu
2022-07-27 17:54 Viorel Munteanu
2022-07-27  5:37 Viorel Munteanu
2022-07-27  5:37 Viorel Munteanu
2022-07-05  4:23 Viorel Munteanu
2022-07-05  4:23 Viorel Munteanu
2022-06-28  4:30 Viorel Munteanu
2022-06-28  4:30 Viorel Munteanu
2022-06-20 11:17 Viorel Munteanu
2022-06-20 10:49 Viorel Munteanu
2022-06-19  5:51 Viorel Munteanu
2022-06-19  5:51 Viorel Munteanu
2022-06-09  5:39 Viorel Munteanu
2022-06-09  5:39 Viorel Munteanu
2022-05-27  2:57 Viorel Munteanu
2022-05-27  2:57 Viorel Munteanu
2022-04-29  6:04 Viorel Munteanu
2022-04-29  6:04 Viorel Munteanu
2022-04-23  9:48 Viorel Munteanu
2022-04-23  9:48 Viorel Munteanu
2022-04-22 19:46 Viorel Munteanu
2022-04-22 19:46 Viorel Munteanu
2022-04-22 19:18 Viorel Munteanu
2022-03-31 17:19 Viorel Munteanu
2022-03-31 17:19 Viorel Munteanu
2022-03-22 18:07 Viorel Munteanu
2022-03-22 18:07 Viorel Munteanu
2022-03-20 19:02 Viorel Munteanu
2022-03-20 19:02 Viorel Munteanu
2022-03-17 18:14 Viorel Munteanu
2022-03-17 18:14 Viorel Munteanu
2022-03-14 16:41 Viorel Munteanu
2022-03-14 16:41 Viorel Munteanu
2022-03-09 13:18 Viorel Munteanu
2022-03-09 13:18 Viorel Munteanu
2022-02-22 18:31 Viorel Munteanu
2022-02-22 18:31 Viorel Munteanu
2022-02-17  7:58 Viorel Munteanu
2022-02-17  7:58 Viorel Munteanu
2022-02-12 12:56 Viorel Munteanu
2022-02-12 12:56 Viorel Munteanu
2022-02-09 16:12 Viorel Munteanu
2022-02-09 10:43 Viorel Munteanu
2022-02-08  5:09 Viorel Munteanu
2022-01-29 10:30 Viorel Munteanu
2022-01-29 10:30 Viorel Munteanu
2022-01-23 20:25 Viorel Munteanu
2022-01-23 20:25 Viorel Munteanu
2022-01-22 12:48 Viorel Munteanu
2022-01-21 14:55 Viorel Munteanu
2022-01-20 20:54 Viorel Munteanu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1661145313.0b7adc8db2de0e39aa08195d4afdb176ef91b76c.viorel_munteanu@gentoo \
    --to=ceamac.paragon@gmail.com \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox