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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E0D671382C5 for ; Tue, 16 Feb 2021 21:11:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7880AE086F; Tue, 16 Feb 2021 21:10:58 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 62B7EE086C for ; Tue, 16 Feb 2021 21:10:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 45CA63413C0 for ; Tue, 16 Feb 2021 21:10:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 458C3530 for ; Tue, 16 Feb 2021 21:10:53 +0000 (UTC) From: "Theo Anderson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Theo Anderson" Message-ID: <1613481919.092d2b1230dbb9c5c9cc6cac5e5d49f6069c8fc0.telans@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: media-gfx/qview/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-gfx/qview/Manifest media-gfx/qview/metadata.xml media-gfx/qview/qview-4.0.ebuild X-VCS-Directories: media-gfx/qview/ X-VCS-Committer: telans X-VCS-Committer-Name: Theo Anderson X-VCS-Revision: 092d2b1230dbb9c5c9cc6cac5e5d49f6069c8fc0 X-VCS-Branch: master Date: Tue, 16 Feb 2021 21:10:53 +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: 515bd46e-bc41-4e94-b26a-c1a543195b70 X-Archives-Hash: ce96b40d3ca2329a1f6209f5dd7256b7 commit: 092d2b1230dbb9c5c9cc6cac5e5d49f6069c8fc0 Author: Daniel Novomesky gmail com> AuthorDate: Tue Feb 16 13:25:19 2021 +0000 Commit: Theo Anderson posteo de> CommitDate: Tue Feb 16 13:25:19 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=092d2b12 media-gfx/qview: new package Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Daniel Novomesky gmail.com> media-gfx/qview/Manifest | 1 + media-gfx/qview/metadata.xml | 8 ++++++++ media-gfx/qview/qview-4.0.ebuild | 32 ++++++++++++++++++++++++++++++++ 3 files changed, 41 insertions(+) diff --git a/media-gfx/qview/Manifest b/media-gfx/qview/Manifest new file mode 100644 index 00000000..645dfc62 --- /dev/null +++ b/media-gfx/qview/Manifest @@ -0,0 +1 @@ +DIST qview-4.0.tar.gz 1662149 BLAKE2B 5a09b070234b6480bd076625a543271dd1de324c10123db183c540ad9da5a3be88e1d40efc30d5ec479c84b5c81c005f149df79e7d6c9b37f491e2b3c96738ca SHA512 442b7815e8449a80ec41424d7c999ea9972e19309559abb8f0985b0523255a3fe191d5cd7183a36f322be9c84d1af099cbef92a76b634da31af0852735a4620c diff --git a/media-gfx/qview/metadata.xml b/media-gfx/qview/metadata.xml new file mode 100644 index 00000000..d9a1e3c6 --- /dev/null +++ b/media-gfx/qview/metadata.xml @@ -0,0 +1,8 @@ + + + + + dnovomesky@gmail.com + Daniel Novomesky + + diff --git a/media-gfx/qview/qview-4.0.ebuild b/media-gfx/qview/qview-4.0.ebuild new file mode 100644 index 00000000..d7102fa1 --- /dev/null +++ b/media-gfx/qview/qview-4.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit xdg qmake-utils + +DESCRIPTION="Practical and minimal image viewer" +HOMEPAGE="https://github.com/jurplel/qView" + +SRC_URI="https://github.com/jurplel/qView/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="dev-qt/qtgui:5" + +BDEPEND="" + +RDEPEND="${DEPEND}" + +S="${WORKDIR}/qView-${PV}" + +src_configure() { + eqmake5 PREFIX=/usr qView.pro +} + +src_install() { + emake INSTALL_ROOT="${D}" install +}