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 8AE481382C5 for ; Tue, 16 Feb 2021 21:11:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 49964E086B; Tue, 16 Feb 2021 21:10:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 2F148E0869 for ; Tue, 16 Feb 2021 21:10:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 3BA533413BB 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 C81D1573 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: <1613500378.bcbbf78feb8d4de83b7c97f49655651cf3de8cf4.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/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: bcbbf78feb8d4de83b7c97f49655651cf3de8cf4 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: 9864407a-01fd-473f-b645-c84dcc3331af X-Archives-Hash: 0d865996863adb9b2f14d1cd4f53a98a commit: bcbbf78feb8d4de83b7c97f49655651cf3de8cf4 Author: Jian Lin outlook com> AuthorDate: Tue Feb 16 18:32:58 2021 +0000 Commit: Theo Anderson posteo de> CommitDate: Tue Feb 16 18:32:58 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bcbbf78f media-gfx/qview: refine ebuild and metadata Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Jian Lin outlook.com> media-gfx/qview/metadata.xml | 10 ++++++++++ media-gfx/qview/qview-4.0.ebuild | 10 +++------- 2 files changed, 13 insertions(+), 7 deletions(-) diff --git a/media-gfx/qview/metadata.xml b/media-gfx/qview/metadata.xml index d9a1e3c6..dd4e000e 100644 --- a/media-gfx/qview/metadata.xml +++ b/media-gfx/qview/metadata.xml @@ -5,4 +5,14 @@ dnovomesky@gmail.com Daniel Novomesky + + + jurplel + jurplel@interversehq.com + + https://interversehq.com/qview/changelog + https://github.com/jurplel/qView/wiki + https://github.com/jurplel/qView/issues + jurplel/qView + diff --git a/media-gfx/qview/qview-4.0.ebuild b/media-gfx/qview/qview-4.0.ebuild index d7102fa1..bbce1aed 100644 --- a/media-gfx/qview/qview-4.0.ebuild +++ b/media-gfx/qview/qview-4.0.ebuild @@ -6,27 +6,23 @@ EAPI="7" inherit xdg qmake-utils DESCRIPTION="Practical and minimal image viewer" -HOMEPAGE="https://github.com/jurplel/qView" - +HOMEPAGE="https://github.com/jurplel/qView https://interversehq.com/qview" SRC_URI="https://github.com/jurplel/qView/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/qView-${PV}" 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 + einstalldocs }