Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gui-apps/grim/
Date: Fri, 17 Mar 2023 15:28:16
Message-Id: 1679066881.943ca626fcea180ed77c2cf5746288a77276fea0.arthurzam@gentoo
1 commit: 943ca626fcea180ed77c2cf5746288a77276fea0
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 17 15:28:01 2023 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 17 15:28:01 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=943ca626
7
8 gui-apps/grim: drop 1.4.0-r1
9
10 Closes: https://bugs.gentoo.org/901807
11 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
12
13 gui-apps/grim/grim-1.4.0-r1.ebuild | 50 --------------------------------------
14 1 file changed, 50 deletions(-)
15
16 diff --git a/gui-apps/grim/grim-1.4.0-r1.ebuild b/gui-apps/grim/grim-1.4.0-r1.ebuild
17 deleted file mode 100644
18 index fd3752c9452e..000000000000
19 --- a/gui-apps/grim/grim-1.4.0-r1.ebuild
20 +++ /dev/null
21 @@ -1,50 +0,0 @@
22 -# Copyright 1999-2023 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=8
26 -
27 -inherit bash-completion-r1 meson
28 -
29 -DESCRIPTION="Grab images from a Wayland compositor"
30 -HOMEPAGE="https://sr.ht/~emersion/grim"
31 -
32 -if [[ ${PV} == 9999 ]]; then
33 - inherit git-r3
34 - EGIT_REPO_URI="https://git.sr.ht/~emersion/${PN}"
35 -else
36 - SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
37 - KEYWORDS="amd64 arm64 ~loong ~ppc64 ~riscv x86"
38 -fi
39 -
40 -LICENSE="MIT"
41 -SLOT="0"
42 -IUSE="+man jpeg"
43 -
44 -RDEPEND="
45 - dev-libs/wayland
46 - media-libs/libpng
47 - x11-libs/pixman
48 - jpeg? ( media-libs/libjpeg-turbo )
49 -"
50 -DEPEND="${RDEPEND}
51 - >=dev-libs/wayland-protocols-1.14
52 -"
53 -BDEPEND="man? ( app-text/scdoc )"
54 -
55 -src_configure() {
56 - local emesonargs=(
57 - $(meson_feature jpeg)
58 - $(meson_feature man man-pages)
59 - "-Dbash-completions=false"
60 - "-Dfish-completions=false"
61 - )
62 - meson_src_configure
63 -}
64 -
65 -src_install() {
66 - meson_src_install
67 -
68 - newbashcomp contrib/completions/bash/grim.bash grim
69 - insinto /usr/share/fish/vendor_completions.d/
70 - doins contrib/completions/grim.fish
71 -}