diff options
author | 2020-09-12 13:48:06 +0200 | |
---|---|---|
committer | 2020-09-12 14:37:36 +0200 | |
commit | 4b37d599683677fd8942ef34719ab498f6dc7936 (patch) | |
tree | df64a8b8b92cd11153bde0efd0172488bc5beb37 /kde-frameworks/sonnet | |
parent | kde-frameworks/solid: 5.74.0 version bump (diff) | |
download | gentoo-4b37d599683677fd8942ef34719ab498f6dc7936.tar.gz gentoo-4b37d599683677fd8942ef34719ab498f6dc7936.tar.bz2 gentoo-4b37d599683677fd8942ef34719ab498f6dc7936.zip |
kde-frameworks/sonnet: 5.74.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks/sonnet')
-rw-r--r-- | kde-frameworks/sonnet/Manifest | 1 | ||||
-rw-r--r-- | kde-frameworks/sonnet/sonnet-5.74.0.ebuild | 43 |
2 files changed, 44 insertions, 0 deletions
diff --git a/kde-frameworks/sonnet/Manifest b/kde-frameworks/sonnet/Manifest index c158c78f9dd1..550789d90f8b 100644 --- a/kde-frameworks/sonnet/Manifest +++ b/kde-frameworks/sonnet/Manifest @@ -1,2 +1,3 @@ DIST sonnet-5.70.0.tar.xz 292380 BLAKE2B 53047e83e276fd016a674067d0ec0655ec855b071761ee1347fdac047db1a3049d965aba2e49b6c3385ea77e49b0666b140d960bfd04af752f6cebdb731ecaf6 SHA512 de93c1396262215407324795ea0ebc7d45752fb33873f0f6552821b9fa97dafd9972e274784f9f70c63f220aba9db261dccd55cf169cf62e629f398dc2db7fe9 DIST sonnet-5.73.0.tar.xz 295256 BLAKE2B a292cb4ef559f929738fda6d4d1d8a4e6975ff96466be5ac5c2eab9930f2edf91814cb7eda01f6dcd51cde28a1d2355195945a740487ac20ad665bbb7fdfcd42 SHA512 b5b69d34cda323bc5cbbe1bfafaaff324194ce241bef80f8f3c74ff3cd00e00cdeff20eafca870d6d99c5f080fd44e54458d261c2c795ba2179233d4ad8f70c1 +DIST sonnet-5.74.0.tar.xz 293316 BLAKE2B 55f73f617b98c85a4f63abea6eb327ee2f017ee2d63f3c739269afb5311e392b153d8c6a7f29dc9be095450c48d7a220cc387d6d842175a345044c084bc868bb SHA512 80f19d6f7c168f6daed208769c5abe1c664b48cd5d8f3ddd75f3992f917859d14281ed12b819b5bc9f501849243de639388a8e47dc60e0d3bda0e5b8426a54e6 diff --git a/kde-frameworks/sonnet/sonnet-5.74.0.ebuild b/kde-frameworks/sonnet/sonnet-5.74.0.ebuild new file mode 100644 index 000000000000..f5798c21f8c1 --- /dev/null +++ b/kde-frameworks/sonnet/sonnet-5.74.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +ECM_DESIGNERPLUGIN="true" +QTMIN=5.14.2 +VIRTUALX_REQUIRED="test" +inherit ecm kde.org + +DESCRIPTION="Framework for providing spell-checking through abstraction of popular backends" +LICENSE="LGPL-2+ LGPL-2.1+" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +IUSE="aspell +hunspell nls" + +BDEPEND=" + nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 ) +" +DEPEND=" + >=dev-qt/qtgui-${QTMIN}:5 + >=dev-qt/qtwidgets-${QTMIN}:5 + aspell? ( app-text/aspell ) + hunspell? ( app-text/hunspell:= ) +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + $(cmake_use_find_package aspell ASPELL) + $(cmake_use_find_package hunspell HUNSPELL) + ) + + ecm_src_configure +} + +src_test() { + # bugs: 680032 + local myctestargs=( + -E "(sonnet-test_settings|sonnet-test_highlighter)" + ) + + ecm_src_test +} |