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 2937B158008 for ; Mon, 12 Jun 2023 17:45:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D3327E0880; Mon, 12 Jun 2023 17:45:07 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B6151E0880 for ; Mon, 12 Jun 2023 17:45:07 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A509933FA71 for ; Mon, 12 Jun 2023 17:45:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B338FA93 for ; Mon, 12 Jun 2023 17:45:04 +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: <1686591890.016f88bd556c8726f9d3e72d3d9ba0e167e5b26a.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/qimgv/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/qimgv/qimgv-1.0.2-r1.ebuild X-VCS-Directories: media-gfx/qimgv/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 016f88bd556c8726f9d3e72d3d9ba0e167e5b26a X-VCS-Branch: master Date: Mon, 12 Jun 2023 17:45:04 +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: 56344c2a-04f7-43c4-a618-1ed642378925 X-Archives-Hash: a60b5dbebbbcb7a56b2ded9d1dfbb3cc commit: 016f88bd556c8726f9d3e72d3d9ba0e167e5b26a Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Jun 12 16:57:43 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Jun 12 17:44:50 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=016f88bd media-gfx/qimgv: drop 1.0.2-r1 Signed-off-by: Andreas Sturmlechner gentoo.org> media-gfx/qimgv/qimgv-1.0.2-r1.ebuild | 48 ----------------------------------- 1 file changed, 48 deletions(-) diff --git a/media-gfx/qimgv/qimgv-1.0.2-r1.ebuild b/media-gfx/qimgv/qimgv-1.0.2-r1.ebuild deleted file mode 100644 index d988cd8f2de4..000000000000 --- a/media-gfx/qimgv/qimgv-1.0.2-r1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake xdg - -DESCRIPTION="A cross-platform image viewer with webm support, written in qt5" -HOMEPAGE="https://github.com/easymodo/qimgv" -SRC_URI="https://github.com/easymodo/qimgv/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3 BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="exif kde opencv video" - -BDEPEND=" - virtual/pkgconfig -" -DEPEND=" - dev-qt/qtconcurrent:5 - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtprintsupport:5 - dev-qt/qtsvg:5 - dev-qt/qtwidgets:5 - exif? ( media-gfx/exiv2:= ) - kde? ( kde-frameworks/kwindowsystem:5 ) - opencv? ( media-libs/opencv:= ) - video? ( media-video/mpv:=[libmpv] ) -" -RDEPEND=" - ${DEPEND} -" - -PATCHES=( - "${FILESDIR}"/${P}-libmpv-api2.patch -) - -src_configure() { - local mycmakeargs=( - -DEXIV2=$(usex exif) - -DKDE_SUPPORT=$(usex kde) - -DOPENCV_SUPPORT=$(usex opencv) - -DVIDEO_SUPPORT=$(usex video) - ) - cmake_src_configure -}