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 7D20815A7D9 for ; Fri, 17 Mar 2023 15:28:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C8B182BC1C6; Fri, 17 Mar 2023 15:28:15 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 B30C22BC1C6 for ; Fri, 17 Mar 2023 15:28:15 +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 F0F5F3410C7 for ; Fri, 17 Mar 2023 15:28:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8E11A73E for ; Fri, 17 Mar 2023 15:28:13 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1679066881.943ca626fcea180ed77c2cf5746288a77276fea0.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gui-apps/grim/ X-VCS-Repository: repo/gentoo X-VCS-Files: gui-apps/grim/grim-1.4.0-r1.ebuild X-VCS-Directories: gui-apps/grim/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 943ca626fcea180ed77c2cf5746288a77276fea0 X-VCS-Branch: master Date: Fri, 17 Mar 2023 15:28:13 +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: c06321cc-f810-4189-90bf-b33f1dcb4b99 X-Archives-Hash: 41aa780ccc2afbfc0a3481c72eff9569 commit: 943ca626fcea180ed77c2cf5746288a77276fea0 Author: Arthur Zamarin gentoo org> AuthorDate: Fri Mar 17 15:28:01 2023 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Fri Mar 17 15:28:01 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=943ca626 gui-apps/grim: drop 1.4.0-r1 Closes: https://bugs.gentoo.org/901807 Signed-off-by: Arthur Zamarin gentoo.org> gui-apps/grim/grim-1.4.0-r1.ebuild | 50 -------------------------------------- 1 file changed, 50 deletions(-) diff --git a/gui-apps/grim/grim-1.4.0-r1.ebuild b/gui-apps/grim/grim-1.4.0-r1.ebuild deleted file mode 100644 index fd3752c9452e..000000000000 --- a/gui-apps/grim/grim-1.4.0-r1.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit bash-completion-r1 meson - -DESCRIPTION="Grab images from a Wayland compositor" -HOMEPAGE="https://sr.ht/~emersion/grim" - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://git.sr.ht/~emersion/${PN}" -else - SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 arm64 ~loong ~ppc64 ~riscv x86" -fi - -LICENSE="MIT" -SLOT="0" -IUSE="+man jpeg" - -RDEPEND=" - dev-libs/wayland - media-libs/libpng - x11-libs/pixman - jpeg? ( media-libs/libjpeg-turbo ) -" -DEPEND="${RDEPEND} - >=dev-libs/wayland-protocols-1.14 -" -BDEPEND="man? ( app-text/scdoc )" - -src_configure() { - local emesonargs=( - $(meson_feature jpeg) - $(meson_feature man man-pages) - "-Dbash-completions=false" - "-Dfish-completions=false" - ) - meson_src_configure -} - -src_install() { - meson_src_install - - newbashcomp contrib/completions/bash/grim.bash grim - insinto /usr/share/fish/vendor_completions.d/ - doins contrib/completions/grim.fish -}