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-cdr/dolphin-plugins-mountiso/
Date: Fri, 09 Oct 2020 19:04:16
Message-Id: 1602270208.12bbe317b68f5d4307aa6a23d549168a36bef160.asturm@gentoo
1 commit: 12bbe317b68f5d4307aa6a23d549168a36bef160
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 9 08:57:59 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 9 19:03:28 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12bbe317
7
8 app-cdr/dolphin-plugins-mountiso: drop 20.08.1*
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 app-cdr/dolphin-plugins-mountiso/Manifest | 1 -
13 .../dolphin-plugins-mountiso-20.08.1.ebuild | 65 ----------------------
14 2 files changed, 66 deletions(-)
15
16 diff --git a/app-cdr/dolphin-plugins-mountiso/Manifest b/app-cdr/dolphin-plugins-mountiso/Manifest
17 index e32b61d6f9d..39d905585ff 100644
18 --- a/app-cdr/dolphin-plugins-mountiso/Manifest
19 +++ b/app-cdr/dolphin-plugins-mountiso/Manifest
20 @@ -1,2 +1 @@
21 -DIST dolphin-plugins-20.08.1.tar.xz 228072 BLAKE2B f6d0b0945eb1d9872ef20468e7e8df308d240909eda12bda00181f088c0ede3462f5b8560416500c1f199c1587a544cb65b41b5f89b89f2d493e57d077fc5b73 SHA512 e4f0a8899fd26055a80081236e4a9e14ea5d73c011ee0bf6cc934f599d24047adf86b16ff7164edcc59e101f11ad5364d9381f6852a11d6d36571366ff135e7b
22 DIST dolphin-plugins-20.08.2.tar.xz 229440 BLAKE2B 53d8c1c16a9ba5abcb3164cd4d30769506c4dfaaab148eed070185b17d00fc5583b5dbb28b163794e187da8e0d64435d904fb8ffc99e8625b8096bd96dbd94ab SHA512 c854c3a7c918c9a8be1da41d9d4f8039b9c8e38ba4782ae064ea688fed51966b9749ce009b2f96bcac0f92dbe36e5f826a45265eb29e3f2ec4740902485099d7
23
24 diff --git a/app-cdr/dolphin-plugins-mountiso/dolphin-plugins-mountiso-20.08.1.ebuild b/app-cdr/dolphin-plugins-mountiso/dolphin-plugins-mountiso-20.08.1.ebuild
25 deleted file mode 100644
26 index b95d370e5ed..00000000000
27 --- a/app-cdr/dolphin-plugins-mountiso/dolphin-plugins-mountiso-20.08.1.ebuild
28 +++ /dev/null
29 @@ -1,65 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -ECM_HANDBOOK="false"
36 -KDE_RELEASE_SERVICE="true"
37 -KDE_ORG_CATEGORY="sdk"
38 -KDE_ORG_NAME="dolphin-plugins"
39 -MY_PLUGIN_NAME="mountiso"
40 -KFMIN=5.72.0
41 -PVCUT=$(ver_cut 1-3)
42 -QTMIN=5.14.2
43 -inherit ecm kde.org
44 -
45 -DESCRIPTION="Dolphin plugin for ISO loopback device mounting"
46 -HOMEPAGE="https://kde.org/applications/system/org.kde.dolphin_plugins"
47 -
48 -LICENSE="GPL-2" # TODO: CHECK
49 -SLOT="5"
50 -KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
51 -IUSE=""
52 -
53 -DEPEND="
54 - >=dev-qt/qtdbus-${QTMIN}:5
55 - >=dev-qt/qtgui-${QTMIN}:5
56 - >=dev-qt/qtwidgets-${QTMIN}:5
57 - >=kde-apps/dolphin-${PVCUT}:5
58 - >=kde-frameworks/kcompletion-${KFMIN}:5
59 - >=kde-frameworks/kconfig-${KFMIN}:5
60 - >=kde-frameworks/kcoreaddons-${KFMIN}:5
61 - >=kde-frameworks/ki18n-${KFMIN}:5
62 - >=kde-frameworks/kio-${KFMIN}:5
63 - >=kde-frameworks/ktextwidgets-${KFMIN}:5
64 - >=kde-frameworks/solid-${KFMIN}:5
65 -"
66 -RDEPEND="${DEPEND}"
67 -
68 -src_prepare() {
69 - ecm_src_prepare
70 - # kxmlgui, qtnetwork only required by dropbox
71 - ecm_punt_bogus_dep Qt5 Network
72 - ecm_punt_bogus_dep KF5 XmlGui
73 - # delete non-${PN} translations
74 - if [[ ${KDE_BUILD_TYPE} = release ]]; then
75 - find po -type f -name "*po" -and -not -name "*${MY_PLUGIN_NAME}plugin" -delete || die
76 - fi
77 -}
78 -
79 -src_configure() {
80 - local mycmakeargs=(
81 - -DBUILD_${MY_PLUGIN_NAME}=ON
82 - -DBUILD_bazaar=OFF
83 - -DBUILD_dropbox=OFF
84 - -DBUILD_git=OFF
85 - -DBUILD_hg=OFF
86 - -DBUILD_svn=OFF
87 - )
88 - ecm_src_configure
89 -}
90 -
91 -src_install() {
92 - ecm_src_install
93 - rm "${D}"/usr/share/metainfo/org.kde.dolphin-plugins.metainfo.xml || die
94 -}