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