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: Mon, 11 Mar 2019 20:27:39
Message-Id: 1552335892.ce56ec7194dc088b1c3e76617422cd534a2e3eb6.asturm@gentoo
1 commit: ce56ec7194dc088b1c3e76617422cd534a2e3eb6
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 11 20:03:04 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 11 20:24:52 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce56ec71
7
8 app-editors/okteta: 0.26.0 version bump
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-editors/okteta/Manifest | 1 +
14 app-editors/okteta/okteta-0.26.0.ebuild | 66 +++++++++++++++++++++++++++++++++
15 2 files changed, 67 insertions(+)
16
17 diff --git a/app-editors/okteta/Manifest b/app-editors/okteta/Manifest
18 index 18c5477ff07..f42069ed6d8 100644
19 --- a/app-editors/okteta/Manifest
20 +++ b/app-editors/okteta/Manifest
21 @@ -1 +1,2 @@
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
25 diff --git a/app-editors/okteta/okteta-0.26.0.ebuild b/app-editors/okteta/okteta-0.26.0.ebuild
26 new file mode 100644
27 index 00000000000..26543662e04
28 --- /dev/null
29 +++ b/app-editors/okteta/okteta-0.26.0.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://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 +}