Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/featherpad/
Date: Thu, 18 Aug 2022 07:06:31
Message-Id: 1660806377.5dc48665f7d024b0c53910474280e77b0476d5ad.juippis@gentoo
1 commit: 5dc48665f7d024b0c53910474280e77b0476d5ad
2 Author: Hans Fredrik Nordhaug <hansfn <AT> gmail <DOT> com>
3 AuthorDate: Wed Aug 3 10:49:05 2022 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 18 07:06:17 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5dc48665
7
8 app-editors/featherpad: add 1.3.1
9
10 Signed-off-by: Hans Fredrik Nordhaug <hansfn <AT> gmail.com>
11 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
12
13 app-editors/featherpad/Manifest | 1 +
14 app-editors/featherpad/featherpad-1.3.1.ebuild | 36 ++++++++++++++++++++++++++
15 2 files changed, 37 insertions(+)
16
17 diff --git a/app-editors/featherpad/Manifest b/app-editors/featherpad/Manifest
18 index a7937f86cb79..5c76058c3047 100644
19 --- a/app-editors/featherpad/Manifest
20 +++ b/app-editors/featherpad/Manifest
21 @@ -2,3 +2,4 @@ DIST featherpad-1.0.0.tar.gz 1010200 BLAKE2B 22a11a0655ed57f7a7d53949e59c3b989a3
22 DIST featherpad-1.0.1.tar.gz 1014744 BLAKE2B 1525b0894e47facdc51da0c6417d69b12d630bb0e6e8d7b3916b0c4e82380243b1b4dd0ddf82f7954d83edcd7b30346cff0305d98296b4aeccc1fe3cab325cd7 SHA512 8d1a07f8f32f63ec77e6bff8a39badd1eef87b0675096f964ff2fa770dda7c79ec9a1f788cbfa77528163aeb6c6067ca74e009293eca2e718dce92a48aef5f98
23 DIST featherpad-1.1.0.tar.gz 1061070 BLAKE2B 78c7ddf0b7961a300fe2e425876bfaf32a1186eb88c2619202cb2f07a780aed3c2f8d1ced0e963b1868c94e890d1d809baae534fe1f3d06b3f3036aeeccf7414 SHA512 c734619ea8eda2709ccfa4d1b3c2ac541f32d52f31f0896ddf3c1c5733f175da9d955458a62a34221400a73003970cf796f59cf574b499831267b6f4d1a28d21
24 DIST featherpad-1.2.0.tar.gz 1091776 BLAKE2B f63ddcc8bf02b3f9ad5f6ad2b56b8f99cc8566f70351a293fbe339930b41542e9ba27888afabfcf98a04ec6a1087dd77aa35006ea33526e1a7d6c45f5fe3b7d9 SHA512 cf21ed9394444920fcf3a8ce3a8338814d69322389c4652e79f0754fe67ee61260f81604c91adf0a864fb1441307706c60ee1bd29efd2e617ab8e1f5fc254cdd
25 +DIST featherpad-1.3.1.tar.gz 1096886 BLAKE2B 360940f0fe781676baa89a99f3d0a7c8ff8219da05fc5757b2e96654ab6c937534e2ef1cd216a3df73fd417353a3285716d09198b27626183c58d031abed363e SHA512 d17eb4691c759a7e97f24bf149152d104141162bef9f819cb09ecdd440916d1f5aa1a56252e64b859220237ea078a072c75308ec7b2e131078df938a171f506f
26
27 diff --git a/app-editors/featherpad/featherpad-1.3.1.ebuild b/app-editors/featherpad/featherpad-1.3.1.ebuild
28 new file mode 100644
29 index 000000000000..caabbdc69a62
30 --- /dev/null
31 +++ b/app-editors/featherpad/featherpad-1.3.1.ebuild
32 @@ -0,0 +1,36 @@
33 +# Copyright 2021-2022 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=8
37 +
38 +inherit xdg cmake
39 +
40 +DESCRIPTION="Lightweight Qt5 Plain-Text Editor for Linux"
41 +HOMEPAGE="https://github.com/tsujan/FeatherPad"
42 +SRC_URI="https://github.com/tsujan/FeatherPad/archive/V${PV}.tar.gz -> ${P}.tar.gz"
43 +S="${WORKDIR}/FeatherPad-${PV}"
44 +
45 +LICENSE="GPL-3+"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~riscv ~x86"
48 +IUSE="+X"
49 +
50 +RDEPEND="app-text/hunspell:=
51 + >=dev-qt/qtcore-5.15.0
52 + dev-qt/qtgui:5
53 + dev-qt/qtprintsupport:5
54 + dev-qt/qtsvg:5
55 + dev-qt/qtwidgets:5
56 + X? (
57 + dev-qt/qtx11extras:5
58 + x11-libs/libX11
59 + )"
60 +DEPEND="${RDEPEND}"
61 +BDEPEND="dev-qt/linguist-tools:5"
62 +
63 +src_configure() {
64 + local mycmakeargs=(
65 + -DWITHOUT_X11=$(usex !X)
66 + )
67 + cmake_src_configure
68 +}