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 5C38D15800A for ; Mon, 21 Aug 2023 18:22:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A701C2BC018; Mon, 21 Aug 2023 18:22:57 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 9363B2BC018 for ; Mon, 21 Aug 2023 18:22:57 +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 D657234123D for ; Mon, 21 Aug 2023 18:22:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 72ACCE71 for ; Mon, 21 Aug 2023 18:22:55 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1692642155.767c180e607c358e89cad04724f5635550d270c1.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/viewnior/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/viewnior/viewnior-1.8.ebuild X-VCS-Directories: media-gfx/viewnior/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 767c180e607c358e89cad04724f5635550d270c1 X-VCS-Branch: master Date: Mon, 21 Aug 2023 18:22:55 +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: 73e71fce-85f4-4eb9-a051-9aadf26d8725 X-Archives-Hash: 537278e58a6121ba0a16a69a531a962b commit: 767c180e607c358e89cad04724f5635550d270c1 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Aug 20 17:52:08 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Aug 21 18:22:35 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=767c180e media-gfx/viewnior: drop 1.8 Signed-off-by: Andreas Sturmlechner gentoo.org> media-gfx/viewnior/viewnior-1.8.ebuild | 46 ---------------------------------- 1 file changed, 46 deletions(-) diff --git a/media-gfx/viewnior/viewnior-1.8.ebuild b/media-gfx/viewnior/viewnior-1.8.ebuild deleted file mode 100644 index 3c7bc2cde40e..000000000000 --- a/media-gfx/viewnior/viewnior-1.8.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit meson xdg - -DESCRIPTION="Fast and simple image viewer" -HOMEPAGE="https://siyanpanayotov.com/project/viewnior" -SRC_URI="https://github.com/hellosiyan/${PN^}/archive/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 ~arm64 ~riscv x86" -IUSE="" - -RDEPEND=" - dev-libs/glib:2 - media-gfx/exiv2:0= - x11-libs/gdk-pixbuf:2 - x11-libs/gtk+:2 -" -DEPEND="${RDEPEND}" -BDEPEND=" - dev-util/glib-utils - sys-devel/gettext - virtual/pkgconfig -" - -S="${WORKDIR}/${PN^}-${P}" - -src_prepare() { - # That script would update icon cache and desktop database. - sed -i "s/meson.add_install_script('meson_post_install.py')//" meson.build \ - || die 'Failed to remove post-install-script invocation from meson.build' - # Don't let meson compress the manpage. - sed -i "s/subdir('man')//" meson.build \ - || die 'Failed to remove manpage compression from meson.build' - - default -} - -src_install() { - meson_src_install - doman man/viewnior.1 -}