commit: 399f312a16072710b7d34927755205e178736b6f Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> AuthorDate: Mon Mar 3 16:39:38 2025 +0000 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> CommitDate: Mon Mar 3 16:39:53 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=399f312a
app-editors/featherpad: add 1.6.1 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org> app-editors/featherpad/Manifest | 1 + app-editors/featherpad/featherpad-1.6.1.ebuild | 34 ++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) diff --git a/app-editors/featherpad/Manifest b/app-editors/featherpad/Manifest index 2529a183364e..ebebeb02ecdc 100644 --- a/app-editors/featherpad/Manifest +++ b/app-editors/featherpad/Manifest @@ -1,2 +1,3 @@ DIST featherpad-1.5.2.tar.gz 1101561 BLAKE2B 24f5c8ed30b363b11a5ca1fba6edde13142202535c4ad11f70cf960b8021e8d46b2b49fc2eb96f141cf9e7f11946cde14f794c4fc1aa7e2242dba9e71864955c SHA512 b0d869e4f9d684d150fc2ccd34399bba5e6c80f00cb69d554fbcfd0be3457dd224b03b3c3fbb610d9396be480abc9d79d3c170c535469b6c7aa2525ea5ec365a DIST featherpad-1.6.0.tar.gz 1099284 BLAKE2B 55df80a154582bc1644f22e323939dcdee7f61f0e44c55735006c44cafe41829ac89a32dd30b7a304619caf948d1d454422ca343d1fbdb96f10e7f7258ed2ebf SHA512 97571dd807437525df426be5683269fa280e8117efbcb2b08949b1c6dd5130aff018a5163397807346e1dfef32dd12d8365f8810e90a009cc2b953fcb101329a +DIST featherpad-1.6.1.tar.gz 1102081 BLAKE2B 211bfad02b9caa656cb7be67e1c0d96ab7fbdd4a7c937341443f7dbd144b564a2186184b20667e97d68f72a515ad1357ad3f67d0f38fd3e6d21363e9e1f40e35 SHA512 a0a6836bdab775ac4a6105ab8d7178b2d6d968c3378f99e0a81b8a6d2b524abc2c56271826abd7572bef0f6e2d7ae12016b9c16b96794130aa2882480c828e2e diff --git a/app-editors/featherpad/featherpad-1.6.1.ebuild b/app-editors/featherpad/featherpad-1.6.1.ebuild new file mode 100644 index 000000000000..6acc058abc79 --- /dev/null +++ b/app-editors/featherpad/featherpad-1.6.1.ebuild @@ -0,0 +1,34 @@ +# Copyright 2021-2025 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 +}
