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 6CB5215802F for ; Fri, 31 Mar 2023 10:16:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0F270E0823; Fri, 31 Mar 2023 10:16:21 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A732EE0821 for ; Fri, 31 Mar 2023 10:16:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D5A97335D29 for ; Fri, 31 Mar 2023 10:16:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 09011A1B for ; Fri, 31 Mar 2023 10:16:16 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1680232653.81520c5c0d0b39b6df697f629aa39693ca454195.flow@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: gui-apps/fuzzel/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-apps/fuzzel/fuzzel-1.9.0.ebuild X-VCS-Directories: gui-apps/fuzzel/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 81520c5c0d0b39b6df697f629aa39693ca454195 X-VCS-Branch: master Date: Fri, 31 Mar 2023 10:16:16 +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: 0df80afb-daeb-4248-841e-a86ebbc0cde8 X-Archives-Hash: 549975a3ebde66abfc14809265b3c99c commit: 81520c5c0d0b39b6df697f629aa39693ca454195 Author: Jonas Frei pm me> AuthorDate: Fri Mar 31 03:17:33 2023 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Fri Mar 31 03:17:33 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=81520c5c gui-apps/fuzzel: drop 1.9.0 Signed-off-by: Jonas Frei pm.me> gui-apps/fuzzel/fuzzel-1.9.0.ebuild | 54 ------------------------------------- 1 file changed, 54 deletions(-) diff --git a/gui-apps/fuzzel/fuzzel-1.9.0.ebuild b/gui-apps/fuzzel/fuzzel-1.9.0.ebuild deleted file mode 100644 index 9de15b4ba..000000000 --- a/gui-apps/fuzzel/fuzzel-1.9.0.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit meson - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://codeberg.org/dnkl/fuzzel.git" -else - SRC_URI="https://codeberg.org/dnkl/fuzzel/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64" - S="${WORKDIR}/${PN}" -fi - -DESCRIPTION="Application launcher for wlroots based Wayland compositors." -HOMEPAGE="https://codeberg.org/dnkl/fuzzel" -LICENSE="MIT" -SLOT="0" -IUSE="cairo png svg" - -DEPEND=" - dev-libs/wayland - =media-libs/fcft-3.0.0 - x11-libs/libxkbcommon - x11-libs/pixman - cairo? ( x11-libs/cairo ) - png? ( media-libs/libpng ) - svg? ( gnome-base/librsvg ) -" -RDEPEND="${DEPEND}" -BDEPEND=" - app-text/scdoc - >=dev-libs/tllist-1.0.1 - dev-libs/wayland-protocols - dev-util/wayland-scanner -" - -src_configure() { - local emesonargs=( - -Dpng-backend=$(usex png libpng none) - -Dsvg-backend=$(usex svg librsvg none) - $(meson_feature cairo enable-cairo) - ) - meson_src_configure -} - -src_install() { - meson_src_install - rm -rf "${ED}/usr/share/doc/fuzzel" || die -} -