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: Thu, 17 Mar 2022 18:14:55 +0000 (UTC)	[thread overview]
Message-ID: <1647540878.f2ddcdd533ba854d88137a156936c9391c5ba2e7.viorel_munteanu@gentoo> (raw)

commit:     f2ddcdd533ba854d88137a156936c9391c5ba2e7
Author:     Viorel Munteanu <ceamac.paragon <AT> gmail <DOT> com>
AuthorDate: Thu Mar 17 18:14:38 2022 +0000
Commit:     Viorel Munteanu <ceamac.paragon <AT> gmail <DOT> com>
CommitDate: Thu Mar 17 18:14:38 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f2ddcdd5

app-misc/fastfetch: drop 0.614

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

 app-misc/fastfetch/Manifest               |  1 -
 app-misc/fastfetch/fastfetch-0.614.ebuild | 72 -------------------------------
 2 files changed, 73 deletions(-)

diff --git a/app-misc/fastfetch/Manifest b/app-misc/fastfetch/Manifest
index a427224a2..d5a344c27 100644
--- a/app-misc/fastfetch/Manifest
+++ b/app-misc/fastfetch/Manifest
@@ -1,2 +1 @@
-DIST fastfetch-0.614.tar.gz 326954 BLAKE2B 1186626054d18acc949651b34562134f2178c6ae2355e7b50aa04b6cfd9bbe6aef1fb68094ac14cf39806a900fb03a1c1903cbc0e2a4dd96fc41ebb615279dd6 SHA512 de8048c12efa5c16b9c1b33ed14154243e9909d16418332dc5b7f193f00322b7dfa7d1b0d90491041d3e9adf5d5bc67fd83ec330242d1277ea831e632f8bc4b1
 DIST fastfetch-0.619.tar.gz 327381 BLAKE2B c85425478fa1cf42570232927e7bbd12b53cd450925a64ff21318ea9a3f22544d66e66b32f4f5b33a660082ca0dfc8666cc8b705078c8cec29de657385e1d564 SHA512 57ba0697e0b2f1d984a4ede21b50873a7ba0381b54eed07ad508fc454903e3dbcdfdb6ac6456141aff5cf0ce6d880f58f4343b2cad6e785491b397ab7413329e

diff --git a/app-misc/fastfetch/fastfetch-0.614.ebuild b/app-misc/fastfetch/fastfetch-0.614.ebuild
deleted file mode 100644
index 644af36e0..000000000
--- a/app-misc/fastfetch/fastfetch-0.614.ebuild
+++ /dev/null
@@ -1,72 +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
-	COMMIT="07a685bb9a1edc6b804d722e118f8c2bba85b527"
-	VERSION_REV="07a685b"
-	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 )"
-
-src_configure() {
-	local mycmakeargs=(
-		-DENABLE_RPM=no
-		-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)
-	)
-
-	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)\""
-	else
-		# version comes from git, fake it
-		local project_version_major=$(ver_cut 2)
-		mycmakeargs+=(
-			-DPROJECT_VERSION="r${project_version_major}.${VERSION_REV}"
-			-DPROJECT_VERSION_MAJOR="${project_version_major}"
-		)
-	fi
-
-	cmake_src_configure
-}


             reply	other threads:[~2022-03-17 18:15 UTC|newest]

Thread overview: 88+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-17 18:14 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-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-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=1647540878.f2ddcdd533ba854d88137a156936c9391c5ba2e7.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