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, 04 Sep 2018 07:46:19
Message-Id: 1536047157.67e951f9840c288393a12caf35929284f2683c2a.asturm@gentoo
1 commit: 67e951f9840c288393a12caf35929284f2683c2a
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 3 13:56:47 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 4 07:45:57 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67e951f9
7
8 app-editors/okteta: 0.25.3 version bump
9
10 Package-Manager: Portage-2.3.48, Repoman-2.3.10
11
12 app-editors/okteta/Manifest | 1 +
13 app-editors/okteta/okteta-0.25.3.ebuild | 66 +++++++++++++++++++++++++++++++++
14 2 files changed, 67 insertions(+)
15
16 diff --git a/app-editors/okteta/Manifest b/app-editors/okteta/Manifest
17 index 79a06fb1f0b..e458c9014a1 100644
18 --- a/app-editors/okteta/Manifest
19 +++ b/app-editors/okteta/Manifest
20 @@ -1,2 +1,3 @@
21 DIST okteta-0.25.1.tar.xz 951952 BLAKE2B 180cb7426b85cc8598f774d50556fe26d95d11e7c8b5be542a38fd4fa1c0479b401e6be59e7ca86eabba805c2a5d2ea2d818960cb218d173fd87db23f9c5525f SHA512 67e594ee1674176cbf506ca1191ced748bf6aec268d57211e052552f9673c359ccb3fefd403b5cf63e04f63a4fd3b42b0d21ef8eefcbac999081d58505df2174
22 DIST okteta-0.25.2.tar.xz 954124 BLAKE2B b880001d6351479accb2f5f2e00a2574337695642bf9082b030d1a56e828fa4cc8e4cf00c6781e12328a20fde004cddaad057b0dbce2fb34a243e24df48ee878 SHA512 78f905479dc5070754b53d8fb7374d162a64479303092ce3f391953a01332946d98151f181a6c9363c68dad7098b58909b4db53724fac9aa848606f9ff3b6511
23 +DIST okteta-0.25.3.tar.xz 950956 BLAKE2B d177db59b5327f4e75157c99fdac2191de9a7ef63433635ccf8f11ef4dc4ff201942c9f68383d720b18c26a9e7335bc1181ea4f0e36491b34b27e6c7dc469c9e SHA512 f27b0c2ca3c5f1ad838af847e08c53c8f8f3c386921bd2e0d5e833902659477196e6c6b72a428443e2be9013928c2151c1889ef33d59404815a34d81560ef2a7
24
25 diff --git a/app-editors/okteta/okteta-0.25.3.ebuild b/app-editors/okteta/okteta-0.25.3.ebuild
26 new file mode 100644
27 index 00000000000..89727e9e83b
28 --- /dev/null
29 +++ b/app-editors/okteta/okteta-0.25.3.ebuild
30 @@ -0,0 +1,66 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
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://www.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 +}