From: "Haelwenn Monnier" <contact@hacktivis.me>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: app-misc/fastfetch/
Date: Fri, 12 Aug 2022 22:13:09 +0000 (UTC) [thread overview]
Message-ID: <1660313343.e6a176653c21dea6af267b3fc462e718d0e0c019.lanodan@gentoo> (raw)
commit: e6a176653c21dea6af267b3fc462e718d0e0c019
Author: Viorel Munteanu <ceamac.paragon <AT> gmail <DOT> com>
AuthorDate: Fri Aug 12 14:09:03 2022 +0000
Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Fri Aug 12 14:09:03 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e6a17665
app-misc/fastfetch: drop 1.6.0
Signed-off-by: Viorel Munteanu <ceamac.paragon <AT> gmail.com>
app-misc/fastfetch/Manifest | 1 -
app-misc/fastfetch/fastfetch-1.6.0.ebuild | 96 -------------------------------
2 files changed, 97 deletions(-)
diff --git a/app-misc/fastfetch/Manifest b/app-misc/fastfetch/Manifest
index d850c6a21..b644c4c47 100644
--- a/app-misc/fastfetch/Manifest
+++ b/app-misc/fastfetch/Manifest
@@ -1,3 +1,2 @@
-DIST fastfetch-1.6.0.tar.gz 349123 BLAKE2B 9d41c640134d6277a4f844e60654f55870f59b7117f7d3fa4424da777f4e139570e12d97e5781806fdc6d9860b134d7740441983461c205b3b5bd1e07d62079a SHA512 38d027923b5dabea3f85077307767e0ddab6a2685a3ad055fb58abe736d9edc580a4a75811f03ee7904223c67bc31dc84f3da9f4a1aa43a0ccd775c33b3ad941
DIST fastfetch-1.6.1.tar.gz 349168 BLAKE2B 21076a879e921898766d70566f21cbf9d3f05a6dfc8b2b32be8908f32e0b130c01aca43b1c61ea5fb909757eca116e8bdb604f65d695a7b40b40f18607452597 SHA512 f0a5609cf8d3b57331617396f1c9656ac41dbcb58f485cc6a035dcc02813d7888d7ba42ee953d7f6bc1dd5c3a1ca702f6d1a8582ad5c6b8a4d085f1d40ac3c85
DIST fastfetch-1.6.2.tar.gz 349994 BLAKE2B 1df9e50d86e3e0912b78894c889b46d4c626b649efec98a1abdf800a31c149077b876b234f79451a34d58ce91a824b1c892175481c03545de0e0e65ff81dd21e SHA512 5e00e307805bcbf21d6b29d14f812588453f30d0bd9484970a29a41c1c1a2eafc8de2a7e85e897fc1573e6e28394638ba6a92cb5f96edb266a37ee3843e42dda
diff --git a/app-misc/fastfetch/fastfetch-1.6.0.ebuild b/app-misc/fastfetch/fastfetch-1.6.0.ebuild
deleted file mode 100644
index 31e8aeeb4..000000000
--- a/app-misc/fastfetch/fastfetch-1.6.0.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Like neofetch but faster"
-HOMEPAGE="https://github.com/LinusDierheimer/fastfetch"
-if [[ ${PV} == *9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/LinusDierheimer/fastfetch.git"
-else
- SRC_URI="https://github.com/LinusDierheimer/fastfetch/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
-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
-RDEPEND="
- sys-libs/zlib
- X? ( x11-libs/libX11 )
- chafa? (
- media-gfx/chafa
- media-gfx/imagemagick:=
- )
- dbus? ( sys-apps/dbus )
- gnome? (
- dev-libs/glib
- gnome-base/dconf
- )
- imagemagick? ( media-gfx/imagemagick:= )
- opencl? ( virtual/opencl )
- opengl? ( media-libs/libglvnd[X] )
- osmesa? ( media-libs/mesa[osmesa] )
- pci? ( sys-apps/pciutils )
- sqlite? ( dev-db/sqlite:3 )
- vulkan? ( media-libs/vulkan-loader )
- wayland? ( dev-libs/wayland )
- xcb? ( x11-libs/libxcb )
- xfce? ( xfce-base/xfconf )
- xrandr? ( x11-libs/libXrandr )
-"
-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
-
- 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
- fi
-}
-
-src_configure() {
- local mycmakeargs=(
- -DENABLE_RPM=no
- -DENABLE_LIBPCI=$(usex pci)
- -DENABLE_VULKAN=$(usex vulkan)
- -DENABLE_WAYLAND=$(usex wayland)
- -DENABLE_XCB_RANDR=$(usex xcb)
- -DENABLE_XCB=$(usex xcb)
- -DENABLE_XRANDR=$(usex xrandr)
- -DENABLE_X11=$(usex X)
- -DENABLE_GIO=$(usex gnome)
- -DENABLE_DCONF=$(usex gnome)
- -DENABLE_XFCONF=$(usex xfce)
- -DENABLE_IMAGEMAGICK7=${fastfetch_enable_imagemagick7}
- -DENABLE_IMAGEMAGICK6=${fastfetch_enable_imagemagick6}
- -DENABLE_ZLIB=yes
- -DENABLE_CHAFA=$(usex chafa)
- -DENABLE_SQLITE3=$(usex sqlite)
- -DENABLE_EGL=$(usex opengl)
- -DENABLE_GLX=$(usex opengl)
- -DENABLE_OSMESA=$(usex osmesa)
- -DENABLE_OPENCL=$(usex opencl)
- -DENABLE_DBUS=$(usex dbus)
- )
-
- cmake_src_configure
-}
next reply other threads:[~2022-08-12 22:13 UTC|newest]
Thread overview: 65+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-12 22:13 Haelwenn Monnier [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-03-25 7:40 Viorel Munteanu
2023-02-27 18:04 Viorel Munteanu
2023-02-27 18:04 Viorel Munteanu
2023-02-23 9:24 Viorel Munteanu
2023-02-22 9:35 [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-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-23 9:24 ` [gentoo-commits] repo/proj/guru:master " Viorel Munteanu
2023-01-24 9:42 Viorel Munteanu
2023-01-24 9:42 Viorel Munteanu
2023-01-22 7:14 [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu
2023-01-22 8:21 ` [gentoo-commits] repo/proj/guru:master " Viorel Munteanu
2023-01-22 7:14 [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu
2023-01-22 8:21 ` [gentoo-commits] repo/proj/guru:master " Viorel Munteanu
2022-12-31 12:20 Viorel Munteanu
2022-12-31 12:20 [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu
2022-12-31 12:20 ` [gentoo-commits] repo/proj/guru:master " Viorel Munteanu
2022-12-30 20:42 [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu
2022-12-30 20:42 ` [gentoo-commits] repo/proj/guru:master " Viorel Munteanu
2022-12-30 20:36 Viorel Munteanu
2022-12-30 20:35 [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu
2022-12-30 20:36 ` [gentoo-commits] repo/proj/guru:master " Viorel Munteanu
2022-12-30 9:41 Viorel Munteanu
2022-12-30 9:41 [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu
2022-12-30 9:41 ` [gentoo-commits] repo/proj/guru:master " Viorel Munteanu
2022-12-29 15:28 Viorel Munteanu
2022-12-29 15:27 [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu
2022-12-29 15:28 ` [gentoo-commits] repo/proj/guru:master " Viorel Munteanu
2022-12-29 11:33 Florian Schmaus
2022-10-11 19:30 Andrew Ammerlaan
2022-10-11 19:30 Andrew Ammerlaan
2022-10-11 19:30 Andrew Ammerlaan
2022-09-17 11:49 Ronny Gutbrod
2022-09-17 11:49 Ronny Gutbrod
2022-09-08 1:46 Ronny Gutbrod
2022-09-06 1:06 Ronny Gutbrod
2022-08-24 15:52 Ronny Gutbrod
2022-08-24 15:52 Ronny Gutbrod
2022-08-24 15:52 Ronny Gutbrod
2022-08-24 15:52 Ronny Gutbrod
2022-08-12 22:13 Haelwenn Monnier
2022-08-12 22:13 Haelwenn Monnier
2022-07-05 7:14 Florian Schmaus
2022-07-05 7:14 Florian Schmaus
2022-06-28 15:38 Arthur Zamarin
2022-06-28 15:38 Arthur Zamarin
2022-06-22 17:39 Andrew Ammerlaan
2022-06-22 17:39 Andrew Ammerlaan
2022-06-09 9:23 Florian Schmaus
2022-06-09 9:23 Florian Schmaus
2022-05-28 10:10 Andrew Ammerlaan
2022-05-28 10:10 Andrew Ammerlaan
2022-04-23 17:49 Haelwenn Monnier
2022-04-23 17:49 Haelwenn Monnier
2022-04-23 17:49 Haelwenn Monnier
2022-04-23 17:49 Haelwenn Monnier
2022-04-23 17:49 Haelwenn Monnier
2022-03-25 11:24 Ronny Gutbrod
2022-03-25 11:24 Ronny Gutbrod
2022-03-18 6:35 Arthur Zamarin
2022-03-18 6:35 Arthur Zamarin
2022-03-10 9:45 Ronny Gutbrod
2022-03-10 9:45 Ronny Gutbrod
2022-02-23 0:33 Ronny Gutbrod
2022-02-23 0:33 Ronny Gutbrod
2022-02-13 20:24 Arthur Zamarin
2022-02-13 20:24 Arthur Zamarin
2022-02-01 10:38 Florian Schmaus
2022-02-01 10:38 Florian Schmaus
2022-01-23 8:17 Florian Schmaus
2022-01-21 9:14 Florian Schmaus
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=1660313343.e6a176653c21dea6af267b3fc462e718d0e0c019.lanodan@gentoo \
--to=contact@hacktivis.me \
--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