diff options
| -rw-r--r-- | app-misc/fastfetch/Manifest | 1 | ||||
| -rw-r--r-- | app-misc/fastfetch/fastfetch-2.53.0.ebuild | 122 |
2 files changed, 0 insertions, 123 deletions
diff --git a/app-misc/fastfetch/Manifest b/app-misc/fastfetch/Manifest index 0896568192c3..e3368c452964 100644 --- a/app-misc/fastfetch/Manifest +++ b/app-misc/fastfetch/Manifest @@ -1,3 +1,2 @@ -DIST fastfetch-2.53.0.tar.gz 1374997 BLAKE2B 9819ee79d5b4c52ae24412f62146831ea84245b5fa2bd25461ea03de47046860f41584a08a30da8b3830dd92f7b04a6aa9eb0e6e6e90a2fddb82741b0ca09e3c SHA512 c34001a5926888611bb7c98ceefcbf9e84e509ee60a64abdb34572dbb537ecbab34dbd70cd21176179b7ba3734fce167e3985b81805662e1ad30edbeaee6e6a4 DIST fastfetch-2.54.0.tar.gz 1379634 BLAKE2B 5f28f278de3f7d637c4503c214958a1c3c2736cf0d65e2d9a4d74ba81fb6fb7f03365cc94d092bcf05281786e537a4f9771473ae45b78688bf3808b6685a329e SHA512 da8fa08efa3a4c800473a78b5b45abffacbd2fb88051cdd45cbfaa396cbcdf2580f0933ea951bdeb1b3bd9f91038162d891cfe6fe04146c9966e133505fe9927 DIST fastfetch-2.55.1.tar.gz 1386231 BLAKE2B ecbde6a370201d14923e7bfe00a1ff80de21b2077a41b01d32c8146ac086c1df223fb76f57bbdeb6f1d43850e4c9248906b50227a093f6ede429b3485ef67617 SHA512 b38c8dde25c0c105e7be65d414ab3f4ad26f4578c95b2d00bd482f24b2076a8a33d4f5bfd5a1ab400562bd4f9112ea3db7d5bebedfdc44694d0af626b710233e diff --git a/app-misc/fastfetch/fastfetch-2.53.0.ebuild b/app-misc/fastfetch/fastfetch-2.53.0.ebuild deleted file mode 100644 index 1e7fb0b2419d..000000000000 --- a/app-misc/fastfetch/fastfetch-2.53.0.ebuild +++ /dev/null @@ -1,122 +0,0 @@ -# Copyright 2022-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake flag-o-matic - -DESCRIPTION="Fast neofetch-like system information tool" -HOMEPAGE="https://github.com/fastfetch-cli/fastfetch" -if [[ ${PV} == *9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/fastfetch-cli/fastfetch.git" - [[ ${PV} == *0.1.9999 ]] && EGIT_BRANCH=master - [[ ${PV} == *0.2.9999 ]] && EGIT_BRANCH=dev - [[ "${EGIT_BRANCH}" == "" ]] && die "Please set a git branch" -else - SRC_URI="https://github.com/fastfetch-cli/fastfetch/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ppc64 ~riscv ~sparc ~x86" -fi - -LICENSE="MIT" -SLOT="0" -IUSE="X chafa dbus ddcutil drm elf gnome imagemagick opencl opengl pulseaudio sqlite test vulkan wayland xcb xrandr" -RESTRICT="!test? ( test )" - -# note - qa-vdb will always report errors because fastfetch loads the libs dynamically -# make sure to crank yyjson minimum version to match bundled version -RDEPEND=" - >=dev-libs/yyjson-0.12.0 - sys-apps/hwdata - virtual/zlib:= - chafa? ( media-gfx/chafa ) - dbus? ( sys-apps/dbus ) - ddcutil? ( app-misc/ddcutil:= ) - drm? ( x11-libs/libdrm ) - elf? ( virtual/libelf:= ) - gnome? ( - dev-libs/glib - gnome-base/dconf - ) - imagemagick? ( media-gfx/imagemagick:= ) - opencl? ( virtual/opencl ) - opengl? ( - media-libs/libglvnd[X?] - X? ( x11-libs/libX11 ) - ) - pulseaudio? ( media-libs/libpulse ) - sqlite? ( dev-db/sqlite:3 ) - vulkan? ( - media-libs/vulkan-loader - sys-apps/pciutils - ) - wayland? ( dev-libs/wayland ) - xcb? ( x11-libs/libxcb ) - xrandr? ( x11-libs/libXrandr ) -" -DEPEND=" - ${RDEPEND} - opengl? ( X? ( x11-base/xorg-proto ) ) - xcb? ( x11-base/xorg-proto ) - xrandr? ( x11-base/xorg-proto ) - vulkan? ( dev-util/vulkan-headers ) -" -BDEPEND="virtual/pkgconfig" - -REQUIRED_USE=" - chafa? ( imagemagick ) -" - -pkg_pretend() { - if use X && ! use opengl; then - einfo 'USE="X" adds GLX support for USE="opengl"' - einfo 'This build with USE="X -opengl" will not include any extra X support.' - fi -} - -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 - - local glx=no - if use opengl && use X; then - glx=yes - fi - - local mycmakeargs=( - -DENABLE_RPM=no - -DENABLE_ZLIB=yes - -DENABLE_SYSTEM_YYJSON=yes - -DIS_MUSL=$(usex elibc_musl) - -DINSTALL_LICENSE=no - -DBUILD_FLASHFETCH=no - - -DENABLE_CHAFA=$(usex chafa) - -DENABLE_DBUS=$(usex dbus) - -DENABLE_DCONF=$(usex gnome) - -DENABLE_DDCUTIL=$(usex ddcutil) - -DENABLE_DRM=$(usex drm) - -DENABLE_ELF=$(usex elf) - -DENABLE_EGL=$(usex opengl) - -DENABLE_GIO=$(usex gnome) - -DENABLE_GLX=${glx} - -DENABLE_IMAGEMAGICK6=${fastfetch_enable_imagemagick6} - -DENABLE_IMAGEMAGICK7=${fastfetch_enable_imagemagick7} - -DENABLE_OPENCL=$(usex opencl) - -DENABLE_PULSE=$(usex pulseaudio) - -DENABLE_SQLITE3=$(usex sqlite) - -DENABLE_VULKAN=$(usex vulkan) - -DENABLE_WAYLAND=$(usex wayland) - -DENABLE_XCB_RANDR=$(usex xcb) - -DENABLE_XRANDR=$(usex xrandr) - -DBUILD_TESTS=$(usex test) - ) - - append-cppflags -DNDEBUG - - cmake_src_configure -} |
