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 EF29F158090 for ; Tue, 10 May 2022 05:05:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0CA5E0824; Tue, 10 May 2022 05:05:11 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 90EF1E0824 for ; Tue, 10 May 2022 05:05:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 716C2341262 for ; Tue, 10 May 2022 05:05:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA34C3BF for ; Tue, 10 May 2022 05:05:08 +0000 (UTC) From: "Brian Gloyer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Gloyer" Message-ID: <1652158205.45c6f7a740aef49600433bc61be74badcb8e633c.brian.gloyer@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-portage/appswipe/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-portage/appswipe/Manifest app-portage/appswipe/appswipe-1.1.14.ebuild app-portage/appswipe/metadata.xml X-VCS-Directories: app-portage/appswipe/ X-VCS-Committer: brian.gloyer X-VCS-Committer-Name: Brian Gloyer X-VCS-Revision: 45c6f7a740aef49600433bc61be74badcb8e633c X-VCS-Branch: dev Date: Tue, 10 May 2022 05:05:08 +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: bddcae35-0bd2-42ce-8ef1-0a6346d844d5 X-Archives-Hash: df9b91e28ef9210ca5f04f41b556003f commit: 45c6f7a740aef49600433bc61be74badcb8e633c Author: brian gloyer gmail com> AuthorDate: Tue May 10 04:50:05 2022 +0000 Commit: Brian Gloyer gmail com> CommitDate: Tue May 10 04:50:05 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=45c6f7a7 app-portage/appswipe: initial import Signed-off-by: brian gloyer gmail.com> app-portage/appswipe/Manifest | 1 + app-portage/appswipe/appswipe-1.1.14.ebuild | 40 +++++++++++++++++++++++++++++ app-portage/appswipe/metadata.xml | 12 +++++++++ 3 files changed, 53 insertions(+) diff --git a/app-portage/appswipe/Manifest b/app-portage/appswipe/Manifest new file mode 100644 index 000000000..dfa5dfb8b --- /dev/null +++ b/app-portage/appswipe/Manifest @@ -0,0 +1 @@ +DIST appswipe-1.1.14.tar.gz 121832 BLAKE2B a6e6afeaba68d21fa766e4278f9dfd4345a609f87ddb7dca459210a8a4aa3119f5381e2ccf2eda3f6c96cdc48db40265c68819f2ffeaecb89094471ca056dcb5 SHA512 a3ed041360483ba302f1d4fc13b5083d5e66fe200891ea1c180f47220c28188376c581b5de09dbbae4d2cee5d30e991c663607d7eea7a250fe839023b5c703be diff --git a/app-portage/appswipe/appswipe-1.1.14.ebuild b/app-portage/appswipe/appswipe-1.1.14.ebuild new file mode 100644 index 000000000..2f77e8206 --- /dev/null +++ b/app-portage/appswipe/appswipe-1.1.14.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit desktop qmake-utils + +DESCRIPTION="Application for browsing your local Portage repository files" +HOMEPAGE="https://github.com/k9spud/appswipe" +SRC_URI="https://github.com/k9spud/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND=" + dev-qt/qtcore + dev-qt/qtgui + dev-qt/qtsql[sqlite] +" + +RDEPEND=" + app-portage/gentoolkit + app-portage/portage-utils + lxde-base/lxterminal + ${DEPEND} +" + +src_configure() { + eqmake5 +} + +src_install() { + mv AppSwipe appswipe + dobin appswipe + mv "${S}/img/appicon.svg" "${S}/img/appswipe.svg" + doicon -s scalable "${S}/img/appswipe.svg" + domenu ${PN}.desktop +} diff --git a/app-portage/appswipe/metadata.xml b/app-portage/appswipe/metadata.xml new file mode 100644 index 000000000..b55e1e4d6 --- /dev/null +++ b/app-portage/appswipe/metadata.xml @@ -0,0 +1,12 @@ + + + + + co-maintainers welcome + brian.gloyer@gmail.com + Brian Gloyer + + + k9spud/appswipe + +