commit: fa48f0d604e198f5fec86734130ec356aff5b46b Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> AuthorDate: Fri Jan 2 13:28:28 2026 +0000 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> CommitDate: Fri Jan 2 21:15:58 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa48f0d6
app-editors/featherpad: add 1.6.3 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org> app-editors/featherpad/Manifest | 1 + app-editors/featherpad/featherpad-1.6.3.ebuild | 34 ++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) diff --git a/app-editors/featherpad/Manifest b/app-editors/featherpad/Manifest index d08f0b2a471e..0e8ccaa73af4 100644 --- a/app-editors/featherpad/Manifest +++ b/app-editors/featherpad/Manifest @@ -1 +1,2 @@ DIST featherpad-1.6.2.tar.gz 1103291 BLAKE2B 3cc50397b8fc01222ecb2c3cfa7bc994e69fb488a7def588a6e72e7fe42148cf9ac56bdd5d0ade38f6a47c450af81ce6ae9983caf66cc1c47363bc4052873765 SHA512 c6020ad9a6af6ba1e5bbbf5cb72b92737ad77ace4e351c90a63bc7f68ee00fb23f92f4c6d0ed4b963a48e014f02719e956b7e4dfd142a7122c6998ae19d9e598 +DIST featherpad-1.6.3.tar.gz 1317394 BLAKE2B 7e91b0369eaaf05c24f5900007f251c8c4dccaace8e34f3b056d20a41c5c1284bb59fac7ee5be95ac37de2136913799318a5034b60a11414231b2238e455272a SHA512 4a6e44539f5ad78ca285b1c54a4cd561996ff985d0d51990742572b552cfb1e0c52735ba700b94caf849f1ce33116e7f53e004260f34dbf8ab1b3e28221ae2f5 diff --git a/app-editors/featherpad/featherpad-1.6.3.ebuild b/app-editors/featherpad/featherpad-1.6.3.ebuild new file mode 100644 index 000000000000..ae8199d77ce6 --- /dev/null +++ b/app-editors/featherpad/featherpad-1.6.3.ebuild @@ -0,0 +1,34 @@ +# Copyright 2021-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake xdg + +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" +S="${WORKDIR}/FeatherPad-${PV}" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" +IUSE="+X" + +RDEPEND=" + app-text/hunspell:= + dev-qt/qtbase:6[dbus,gui,widgets] + dev-qt/qtsvg:6 + X? ( x11-libs/libX11 ) +" +DEPEND="${RDEPEND} + X? ( x11-base/xorg-proto ) +" +BDEPEND="dev-qt/qttools:6[linguist]" + +src_configure() { + local mycmakeargs=( + -DWITHOUT_X11=$(usex !X) + ) + cmake_src_configure +}
