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, 01 Oct 2018 18:13:22
Message-Id: 1538417537.766104facbbf3ed992d9f593acdf4f0796406d02.asturm@gentoo
1 commit: 766104facbbf3ed992d9f593acdf4f0796406d02
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 1 17:49:56 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 1 18:12:17 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=766104fa
7
8 app-editors/okteta: Drop 0.25.1
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11 Package-Manager: Portage-2.3.50, Repoman-2.3.11
12
13 app-editors/okteta/Manifest | 1 -
14 app-editors/okteta/okteta-0.25.1.ebuild | 66 ---------------------------------
15 2 files changed, 67 deletions(-)
16
17 diff --git a/app-editors/okteta/Manifest b/app-editors/okteta/Manifest
18 index 980b6014a23..c140a30f82f 100644
19 --- a/app-editors/okteta/Manifest
20 +++ b/app-editors/okteta/Manifest
21 @@ -1,2 +1 @@
22 -DIST okteta-0.25.1.tar.xz 951952 BLAKE2B 180cb7426b85cc8598f774d50556fe26d95d11e7c8b5be542a38fd4fa1c0479b401e6be59e7ca86eabba805c2a5d2ea2d818960cb218d173fd87db23f9c5525f SHA512 67e594ee1674176cbf506ca1191ced748bf6aec268d57211e052552f9673c359ccb3fefd403b5cf63e04f63a4fd3b42b0d21ef8eefcbac999081d58505df2174
23 DIST okteta-0.25.3.tar.xz 950956 BLAKE2B d177db59b5327f4e75157c99fdac2191de9a7ef63433635ccf8f11ef4dc4ff201942c9f68383d720b18c26a9e7335bc1181ea4f0e36491b34b27e6c7dc469c9e SHA512 f27b0c2ca3c5f1ad838af847e08c53c8f8f3c386921bd2e0d5e833902659477196e6c6b72a428443e2be9013928c2151c1889ef33d59404815a34d81560ef2a7
24
25 diff --git a/app-editors/okteta/okteta-0.25.1.ebuild b/app-editors/okteta/okteta-0.25.1.ebuild
26 deleted file mode 100644
27 index ebd3203d5e4..00000000000
28 --- a/app-editors/okteta/okteta-0.25.1.ebuild
29 +++ /dev/null
30 @@ -1,66 +0,0 @@
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 -}