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 AEF00139347 for ; Tue, 20 Jul 2021 10:25:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9465FE0928; Tue, 20 Jul 2021 10:25:29 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 7B029E09BC for ; Tue, 20 Jul 2021 10:25:29 +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 996F1342A91 for ; Tue, 20 Jul 2021 10:25:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 94A087DB for ; Tue, 20 Jul 2021 10:25:26 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1626776718.577eb826611d796426eb31b43c33faa7c01f15b4.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/featherpad/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/featherpad/Manifest app-editors/featherpad/featherpad-0.18.0.ebuild app-editors/featherpad/metadata.xml X-VCS-Directories: app-editors/featherpad/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 577eb826611d796426eb31b43c33faa7c01f15b4 X-VCS-Branch: master Date: Tue, 20 Jul 2021 10:25:26 +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: 6073da8d-dac2-4444-b622-31c5dc9891d8 X-Archives-Hash: 177aaf84d2a7af2b231c0fc78bafbfe1 commit: 577eb826611d796426eb31b43c33faa7c01f15b4 Author: Hans Fredrik Nordhaug gmail com> AuthorDate: Mon Jul 19 10:46:37 2021 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Tue Jul 20 10:25:18 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=577eb826 app-editors/featherpad: New package, import from ::guru FeatherPad is a lightweight Qt plain-text editor for Linux. It is independent of any desktop environment. Package-Manager: Portage-3.0.20, Repoman-3.0.2 Signed-off-by: Hans Fredrik Nordhaug gmail.com> Closes: https://github.com/gentoo/gentoo/pull/21713 Signed-off-by: Joonas Niilola gentoo.org> app-editors/featherpad/Manifest | 1 + app-editors/featherpad/featherpad-0.18.0.ebuild | 28 +++++++++++++++++++++++++ app-editors/featherpad/metadata.xml | 20 ++++++++++++++++++ 3 files changed, 49 insertions(+) diff --git a/app-editors/featherpad/Manifest b/app-editors/featherpad/Manifest new file mode 100644 index 00000000000..78475bb25f5 --- /dev/null +++ b/app-editors/featherpad/Manifest @@ -0,0 +1 @@ +DIST featherpad-0.18.0.tar.gz 967643 BLAKE2B a8a84fa71232bdd9448ec4a9c921f8f452212dfb52ec518c3f340e9b600858a9cfca2d7729a0f58c9d1465b77bd28c836de78026c58ff94297de704e7bf670d8 SHA512 3e0d008792dd55bc5e57654f9b032f0a66a60c682499c684cfc3b182fdc57a654bb5fb195b458af66ddd8db929b31e7bfa789bd9bdf33d32454fbbcb090bcd91 diff --git a/app-editors/featherpad/featherpad-0.18.0.ebuild b/app-editors/featherpad/featherpad-0.18.0.ebuild new file mode 100644 index 00000000000..6c98ead81b1 --- /dev/null +++ b/app-editors/featherpad/featherpad-0.18.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit xdg cmake + +DESCRIPTION="Lightweight Qt5 Plain-Text Editor for Linux" +HOMEPAGE="https://github.com/tsujan/FeatherPad" +SRC_URI="https://github.com/tsujan/FeatherPad/archive/V${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="app-text/hunspell + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5 + dev-qt/qtprintsupport:5 + dev-qt/qtsvg:5 + dev-qt/qtwidgets:5 + dev-qt/qtx11extras:5 + x11-libs/libX11" +DEPEND="${RDEPEND}" +BDEPEND="dev-qt/linguist-tools:5" + +S="${WORKDIR}/FeatherPad-${PV}" diff --git a/app-editors/featherpad/metadata.xml b/app-editors/featherpad/metadata.xml new file mode 100644 index 00000000000..3fd6253bfc0 --- /dev/null +++ b/app-editors/featherpad/metadata.xml @@ -0,0 +1,20 @@ + + + + + hansfn@gmail.com + Hans Fredrik Nordhaug + + + proxy-maint@gentoo.org + Proxy Maintainers + + + FeatherPad (by Pedram Pourang, a.k.a. Tsu Jan) is a lightweight Qt + plain-text editor for Linux. It is independent of any desktop + environment. + + + tsujan/FeatherPad + +