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 A4329138350 for ; Sun, 19 Jan 2020 23:53:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DBA49E09D4; Sun, 19 Jan 2020 23:53:35 +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 BDDE6E09DC for ; Sun, 19 Jan 2020 23:53:35 +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 CC1AA34E2AB for ; Sun, 19 Jan 2020 23:53:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7FF8D101 for ; Sun, 19 Jan 2020 23:53:30 +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: <1579477892.b6eb9f20fe1d680af613bf04bb7a5927d63f560a.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/qtpass/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/qtpass/qtpass-1.3.2.ebuild X-VCS-Directories: app-admin/qtpass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: b6eb9f20fe1d680af613bf04bb7a5927d63f560a X-VCS-Branch: master Date: Sun, 19 Jan 2020 23:53:30 +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: 2b03ed6e-f326-4424-bd61-d62f6ed79784 X-Archives-Hash: 8c17204441e09c1af7fb19045f40f38d commit: b6eb9f20fe1d680af613bf04bb7a5927d63f560a Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Jan 15 20:40:35 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jan 19 23:51:32 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6eb9f20 app-admin/qtpass: Drop 1.3.2 (r0) Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner gentoo.org> app-admin/qtpass/qtpass-1.3.2.ebuild | 62 ------------------------------------ 1 file changed, 62 deletions(-) diff --git a/app-admin/qtpass/qtpass-1.3.2.ebuild b/app-admin/qtpass/qtpass-1.3.2.ebuild deleted file mode 100644 index 99fe7179cfb..00000000000 --- a/app-admin/qtpass/qtpass-1.3.2.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit desktop qmake-utils virtualx - -DESCRIPTION="multi-platform GUI for pass, the standard unix password manager" -HOMEPAGE="https://qtpass.org/" -SRC_URI="https://github.com/IJHack/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~ppc64 ~x86" -IUSE="test" - -RDEPEND="app-admin/pass - dev-qt/qtcore:5 - dev-qt/qtgui:5[xcb] - dev-qt/qtnetwork:5 - dev-qt/qtwidgets:5 - net-misc/x11-ssh-askpass" -DEPEND="${RDEPEND} - dev-qt/qtsvg:5 - test? ( dev-qt/qttest:5 )" -BDEPEND="dev-qt/linguist-tools:5" - -RESTRICT="!test? ( test )" - -S="${WORKDIR}/QtPass-${PV}" - -DOCS=( {CHANGELOG,CONTRIBUTING,FAQ,README}.md ) - -src_prepare() { - default - - if ! use test ; then - sed -i '/SUBDIRS += src /s/tests //' \ - qtpass.pro || die "sed for qtpass.pro failed" - fi -} - -src_configure() { - eqmake5 PREFIX="${D}"/usr -} - -src_test() { - virtx default -} - -src_install() { - default - - insinto /usr/share/qtpass/translations - doins localization/*.qm - - doman qtpass.1 - domenu qtpass.desktop - newicon artwork/icon.png qtpass-icon.png - insinto /usr/share/appdata - doins qtpass.appdata.xml -}