Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/okteta/
Date: Tue, 02 Jul 2019 12:22:11
Message-Id: 1562070111.9785bcf11ba35530da53ab95bbf0d5309bdb6041.asturm@gentoo
1 commit: 9785bcf11ba35530da53ab95bbf0d5309bdb6041
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 2 12:02:28 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 2 12:21:51 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9785bcf1
7
8 app-editors/okteta: 0.26.2 version bump
9
10 Package-Manager: Portage-2.3.68, Repoman-2.3.16
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-editors/okteta/Manifest | 1 +
14 app-editors/okteta/okteta-0.26.2.ebuild | 66 +++++++++++++++++++++++++++++++++
15 2 files changed, 67 insertions(+)
16
17 diff --git a/app-editors/okteta/Manifest b/app-editors/okteta/Manifest
18 index 1571166e91f..67748879f58 100644
19 --- a/app-editors/okteta/Manifest
20 +++ b/app-editors/okteta/Manifest
21 @@ -1 +1,2 @@
22 DIST okteta-0.26.1.tar.xz 970532 BLAKE2B c04e0c4a2665f91cde26ee28b95f768f3074a08c8fd30920c75f3ce52fdfa717e3e6cea9acf87c3c5d53c830e5badb51faa2abcebd5b55839ea4ee52874a6d4c SHA512 fa4e841c77ae255e9936b29e30fa0bc1f65594898820652ac8ba78497658ec5ef78cadf8b4d33cab09b2ee8da1d75b84377be28680b2d91c5af2dcdfe5da95e3
23 +DIST okteta-0.26.2.tar.xz 976264 BLAKE2B 6bd0708ecab61097130ad3b96d44c4a58a7711f6d9ecc9c70d3db792728489f395e691b0157f0cf8ffc0e07b1796ce6fde9f689108c3236412ad37c4e87a210a SHA512 9d79cfecf80a7bfd4eb42ac8ee93d83140064601c16be0bed38481f7f0ea8ed2fa0aedfd16be3547f2bbd65ab483281e0ecdc0e59799040d67ecf1b4cda39246
24
25 diff --git a/app-editors/okteta/okteta-0.26.2.ebuild b/app-editors/okteta/okteta-0.26.2.ebuild
26 new file mode 100644
27 index 00000000000..614b30f95d1
28 --- /dev/null
29 +++ b/app-editors/okteta/okteta-0.26.2.ebuild
30 @@ -0,0 +1,66 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +KDE_HANDBOOK="forceoptional"
37 +KDE_TEST="true"
38 +VIRTUALX_REQUIRED="test"
39 +inherit kde5
40 +
41 +if [[ ${KDE_BUILD_TYPE} = release ]]; then
42 + SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
43 + KEYWORDS="~amd64 ~x86"
44 +fi
45 +
46 +DESCRIPTION="Hex editor by KDE"
47 +HOMEPAGE="https://kde.org/applications/utilities/okteta
48 +https://utils.kde.org/projects/okteta/"
49 +IUSE="crypt designer"
50 +
51 +DEPEND="
52 + $(add_frameworks_dep kbookmarks)
53 + $(add_frameworks_dep kcmutils)
54 + $(add_frameworks_dep kcodecs)
55 + $(add_frameworks_dep kcompletion)
56 + $(add_frameworks_dep kconfig)
57 + $(add_frameworks_dep kconfigwidgets)
58 + $(add_frameworks_dep kcoreaddons)
59 + $(add_frameworks_dep kcrash)
60 + $(add_frameworks_dep kdbusaddons)
61 + $(add_frameworks_dep ki18n)
62 + $(add_frameworks_dep kiconthemes)
63 + $(add_frameworks_dep kio)
64 + $(add_frameworks_dep kjobwidgets)
65 + $(add_frameworks_dep knewstuff)
66 + $(add_frameworks_dep kparts)
67 + $(add_frameworks_dep kservice)
68 + $(add_frameworks_dep kwidgetsaddons)
69 + $(add_frameworks_dep kxmlgui)
70 + $(add_qt_dep qtdeclarative)
71 + $(add_qt_dep qtgui)
72 + $(add_qt_dep qtnetwork)
73 + $(add_qt_dep qtprintsupport)
74 + $(add_qt_dep qtscript 'scripttools')
75 + $(add_qt_dep qtwidgets)
76 + $(add_qt_dep qtxml)
77 + crypt? ( app-crypt/qca:2[qt5(+)] )
78 + designer? ( $(add_qt_dep designer) )
79 +"
80 +RDEPEND="${DEPEND}"
81 +
82 +src_configure() {
83 + local mycmakeargs=(
84 + -DOMIT_EXAMPLES=ON
85 + $(cmake-utils_use_find_package crypt Qca-qt5)
86 + -DBUILD_DESIGNERPLUGIN=$(usex designer)
87 + )
88 +
89 + kde5_src_configure
90 +}
91 +
92 +src_test() {
93 + local myctestargs=( -j1 )
94 +
95 + kde5_src_test
96 +}