From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2F71D15808B for ; Tue, 8 Feb 2022 05:09:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 56C22E07B3; Tue, 8 Feb 2022 05:09:24 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C67F8E07B3 for ; Tue, 8 Feb 2022 05:09:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7D311342D0C for ; Tue, 8 Feb 2022 05:09:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C0F1F2CE for ; Tue, 8 Feb 2022 05:09:19 +0000 (UTC) From: "Viorel Munteanu" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Viorel Munteanu" Message-ID: <1644296937.dfafaa062c5eadbad365131054a88d3dc10571ee.viorel_munteanu@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-misc/fastfetch/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-misc/fastfetch/fastfetch-0.569.ebuild X-VCS-Directories: app-misc/fastfetch/ X-VCS-Committer: viorel_munteanu X-VCS-Committer-Name: Viorel Munteanu X-VCS-Revision: dfafaa062c5eadbad365131054a88d3dc10571ee X-VCS-Branch: dev Date: Tue, 8 Feb 2022 05:09:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2282ffb9-0b15-4666-b8d7-0adc7a4b453f X-Archives-Hash: a1771d93441ba5af91efbdbfb60591cb commit: dfafaa062c5eadbad365131054a88d3dc10571ee Author: Viorel Munteanu gmail com> AuthorDate: Tue Feb 8 05:08:57 2022 +0000 Commit: Viorel Munteanu gmail com> CommitDate: Tue Feb 8 05:08:57 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dfafaa06 app-misc/fastfetch: drop 0.569 Signed-off-by: Viorel Munteanu gmail.com> app-misc/fastfetch/fastfetch-0.569.ebuild | 90 ------------------------------- 1 file changed, 90 deletions(-) diff --git a/app-misc/fastfetch/fastfetch-0.569.ebuild b/app-misc/fastfetch/fastfetch-0.569.ebuild deleted file mode 100644 index dc92b167f..000000000 --- a/app-misc/fastfetch/fastfetch-0.569.ebuild +++ /dev/null @@ -1,90 +0,0 @@ -# Copyright 2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit bash-completion-r1 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 - COMMIT="7ad73d3ba13489b341a07782e6374d92c54091ba" - VERSION_REV="7ad73d3" - SRC_URI="https://github.com/LinusDierheimer/fastfetch/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${PN}-${COMMIT}" -fi - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="X gnome pci vulkan wayland xcb xfce xrandr" - -# note - qa-vdb will always report errors because fastfetch loads the libs dynamically -RDEPEND=" - X? ( x11-libs/libX11 ) - gnome? ( - dev-libs/glib - gnome-base/dconf - ) - pci? ( sys-apps/pciutils ) - 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 )" - -# disable_check VAR lib -disable_check() { - sed -i -e " - /pkg_check_modules ($1 /d - /message.*$2/d" CMakeLists.txt || die "Cannot disable $1" -} - -src_configure() { - disable_check RPM librpm - - use X || disable_check X11 x11 - use gnome || (disable_check GIO gio- && disable_check DCONF dconf) - use pci || disable_check LIBPCI libpci - use vulkan || disable_check VULKAN vulkan - use wayland || disable_check WAYLAND wayland-client - use xcb || (disable_check XCB_RANDR xcb-randr && disable_check XCB xcb) - use xfce || disable_check XFCONF libxfconf - use xrandr || disable_check XRANDR xrandr - - if [[ ${PV} != *9999 ]]; then - # version comes from git, fake it - VERSION_MAJOR="$(ver_cut 2)" - sed -i -e " - s/\(PROJECT_VERSION\) .*$/\1 \"r${VERSION_MAJOR}.${VERSION_REV}\")/ - s/\(PROJECT_VERSION_MAJOR\) .*$/\1 \"${VERSION_MAJOR}\")/" CMakeLists.txt || die "Cannot patch version" - fi - - cmake_src_configure -} - -src_install() { - if [[ ${PV} == *9999 ]]; then - elog "REV=\"r$(git rev-list --count HEAD)\"" - elog "COMMIT=\"$(git rev-parse HEAD)\"" - elog "VERSION_REV=\"$(git rev-parse --short HEAD)\"" - fi - - pushd "${BUILD_DIR}" || die - dobin fastfetch - popd - - newbashcomp completions/bash fastfetch - insinto /usr/share/${PN}/presets - doins presets/* - - einstalldocs -}