From 49c8096e38e0e67532ea49919e1da12fd66d11ed Mon Sep 17 00:00:00 2001 From: Ceres Date: Tue, 12 May 2026 16:45:18 +0100 Subject: [PATCH] app-misc/pastel: drop 0.12.0 Signed-off-by: Ceres --- app-misc/pastel/pastel-0.12.0.ebuild | 49 ---------------------------- 1 file changed, 49 deletions(-) delete mode 100644 app-misc/pastel/pastel-0.12.0.ebuild diff --git a/app-misc/pastel/pastel-0.12.0.ebuild b/app-misc/pastel/pastel-0.12.0.ebuild deleted file mode 100644 index def6959d62..0000000000 --- a/app-misc/pastel/pastel-0.12.0.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -CRATES=" " - -RUST_MIN_VER="1.83.0" - -inherit cargo shell-completion - -DESCRIPTION="A command-line tool to generate, analyze, convert and manipulate colors" -HOMEPAGE="https://github.com/sharkdp/pastel" - -LICENSE="Apache-2.0 MIT" -# Dependent crate licenses -LICENSE+=" Apache-2.0 MIT Unicode-3.0" -SLOT="0" -if [[ ${PV} == *9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/sharkdp/${PN}.git" -else - SRC_URI=" - https://github.com/sharkdp/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz - https://codeberg.org/ceres-sees-all/guru-distfiles/releases/download/${P}-deps.tar.xz/${P}-deps.tar.xz - " - ECARGO_VENDOR="${WORKDIR}/vendor" - KEYWORDS="~amd64" -fi - -src_unpack() { - if [[ "${PV}" == *9999* ]]; then - git-r3_src_unpack - cargo_live_src_unpack - else - cargo_src_unpack - fi -} - -src_install() { - cargo_src_install - - RESOURCES=$(dirname "$(find -type f -name "_pastel")") - - doman $RESOURCES/*.1 - dobashcomp $RESOURCES/pastel.bash - dofishcomp $RESOURCES/pastel.fish - dozshcomp $RESOURCES/_pastel -}