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: Sat, 08 Sep 2018 08:12:45
Message-Id: 1536394319.526d711b6a470a30f80f41f87f506d0111270006.asturm@gentoo
1 commit: 526d711b6a470a30f80f41f87f506d0111270006
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 8 08:11:59 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 8 08:11:59 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=526d711b
7
8 app-editors/okteta: Drop 0.25.2
9
10 Superseded by 0.25.3 with minimal fixes.
11
12 Package-Manager: Portage-2.3.49, Repoman-2.3.10
13
14 app-editors/okteta/Manifest | 1 -
15 app-editors/okteta/okteta-0.25.2.ebuild | 66 ---------------------------------
16 2 files changed, 67 deletions(-)
17
18 diff --git a/app-editors/okteta/Manifest b/app-editors/okteta/Manifest
19 index e458c9014a1..980b6014a23 100644
20 --- a/app-editors/okteta/Manifest
21 +++ b/app-editors/okteta/Manifest
22 @@ -1,3 +1,2 @@
23 DIST okteta-0.25.1.tar.xz 951952 BLAKE2B 180cb7426b85cc8598f774d50556fe26d95d11e7c8b5be542a38fd4fa1c0479b401e6be59e7ca86eabba805c2a5d2ea2d818960cb218d173fd87db23f9c5525f SHA512 67e594ee1674176cbf506ca1191ced748bf6aec268d57211e052552f9673c359ccb3fefd403b5cf63e04f63a4fd3b42b0d21ef8eefcbac999081d58505df2174
24 -DIST okteta-0.25.2.tar.xz 954124 BLAKE2B b880001d6351479accb2f5f2e00a2574337695642bf9082b030d1a56e828fa4cc8e4cf00c6781e12328a20fde004cddaad057b0dbce2fb34a243e24df48ee878 SHA512 78f905479dc5070754b53d8fb7374d162a64479303092ce3f391953a01332946d98151f181a6c9363c68dad7098b58909b4db53724fac9aa848606f9ff3b6511
25 DIST okteta-0.25.3.tar.xz 950956 BLAKE2B d177db59b5327f4e75157c99fdac2191de9a7ef63433635ccf8f11ef4dc4ff201942c9f68383d720b18c26a9e7335bc1181ea4f0e36491b34b27e6c7dc469c9e SHA512 f27b0c2ca3c5f1ad838af847e08c53c8f8f3c386921bd2e0d5e833902659477196e6c6b72a428443e2be9013928c2151c1889ef33d59404815a34d81560ef2a7
26
27 diff --git a/app-editors/okteta/okteta-0.25.2.ebuild b/app-editors/okteta/okteta-0.25.2.ebuild
28 deleted file mode 100644
29 index 89727e9e83b..00000000000
30 --- a/app-editors/okteta/okteta-0.25.2.ebuild
31 +++ /dev/null
32 @@ -1,66 +0,0 @@
33 -# Copyright 1999-2018 Gentoo Foundation
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=6
37 -
38 -KDE_HANDBOOK="forceoptional"
39 -KDE_TEST="true"
40 -VIRTUALX_REQUIRED="test"
41 -inherit kde5
42 -
43 -if [[ ${KDE_BUILD_TYPE} = release ]]; then
44 - SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
45 - KEYWORDS="~amd64 ~x86"
46 -fi
47 -
48 -DESCRIPTION="Hex editor by KDE"
49 -HOMEPAGE="https://www.kde.org/applications/utilities/okteta
50 -https://utils.kde.org/projects/okteta"
51 -IUSE="crypt designer"
52 -
53 -DEPEND="
54 - $(add_frameworks_dep kbookmarks)
55 - $(add_frameworks_dep kcmutils)
56 - $(add_frameworks_dep kcodecs)
57 - $(add_frameworks_dep kcompletion)
58 - $(add_frameworks_dep kconfig)
59 - $(add_frameworks_dep kconfigwidgets)
60 - $(add_frameworks_dep kcoreaddons)
61 - $(add_frameworks_dep kcrash)
62 - $(add_frameworks_dep kdbusaddons)
63 - $(add_frameworks_dep ki18n)
64 - $(add_frameworks_dep kiconthemes)
65 - $(add_frameworks_dep kio)
66 - $(add_frameworks_dep kjobwidgets)
67 - $(add_frameworks_dep knewstuff)
68 - $(add_frameworks_dep kparts)
69 - $(add_frameworks_dep kservice)
70 - $(add_frameworks_dep kwidgetsaddons)
71 - $(add_frameworks_dep kxmlgui)
72 - $(add_qt_dep qtdeclarative)
73 - $(add_qt_dep qtgui)
74 - $(add_qt_dep qtnetwork)
75 - $(add_qt_dep qtprintsupport)
76 - $(add_qt_dep qtscript 'scripttools')
77 - $(add_qt_dep qtwidgets)
78 - $(add_qt_dep qtxml)
79 - crypt? ( app-crypt/qca:2[qt5(+)] )
80 - designer? ( $(add_qt_dep designer) )
81 -"
82 -RDEPEND="${DEPEND}"
83 -
84 -src_configure() {
85 - local mycmakeargs=(
86 - -DOMIT_EXAMPLES=ON
87 - $(cmake-utils_use_find_package crypt Qca-qt5)
88 - -DBUILD_DESIGNERPLUGIN=$(usex designer)
89 - )
90 -
91 - kde5_src_configure
92 -}
93 -
94 -src_test() {
95 - local myctestargs=( -j1 )
96 -
97 - kde5_src_test
98 -}