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, 05 Feb 2019 23:27:34
Message-Id: 1549409202.669e36041ae992611e963518b4ca7ec67cae6d62.asturm@gentoo
1 commit: 669e36041ae992611e963518b4ca7ec67cae6d62
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 5 15:35:46 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 5 23:26:42 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=669e3604
7
8 app-editors/okteta: Drop 0.25.4
9
10 Package-Manager: Portage-2.3.59, 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.25.4.ebuild | 66 ---------------------------------
15 2 files changed, 67 deletions(-)
16
17 diff --git a/app-editors/okteta/Manifest b/app-editors/okteta/Manifest
18 index a3b2ae4718b..18c5477ff07 100644
19 --- a/app-editors/okteta/Manifest
20 +++ b/app-editors/okteta/Manifest
21 @@ -1,2 +1 @@
22 -DIST okteta-0.25.4.tar.xz 950344 BLAKE2B 3a3daf5cdb9e349e145a22afe836c78e18972e1f984472267cd182630b8f8132e10efb49cbc9fac40768aef4dadbb678afa26eb965642f07f407030f15b71dbd SHA512 d9887a90efbad3bb2caa0d3bb12af27708b77d54a90cd0da82eace7ea6dfc2efbcea3d7dc720bf4a088a823a8ed9edf75ab1c3680aa6d99c640d5c9e4c385e16
23 DIST okteta-0.25.5.tar.xz 953492 BLAKE2B ca8c40df7cf3fe40a4be6f6e2b9d1f787baa658910c3c14ced73f3f3d95c942c00ccfe559562b2e0330726723ffba8e4c7c526369453517e1fd45d3d5ce0336e SHA512 dfe45a2bc3b3fbbce8342e6282981a63a342aee47d0d90cf07449f6974ebdbac53adc7fa9f0b37a7d003370994233f002df277ecebdb6f4c03995ce50d1dbd71
24
25 diff --git a/app-editors/okteta/okteta-0.25.4.ebuild b/app-editors/okteta/okteta-0.25.4.ebuild
26 deleted file mode 100644
27 index e023724f2d7..00000000000
28 --- a/app-editors/okteta/okteta-0.25.4.ebuild
29 +++ /dev/null
30 @@ -1,66 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Authors
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 -}