Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/extra-cmake-modules/
Date: Sun, 18 Nov 2018 09:37:22
Message-Id: 1542533813.fbd7c59d80e6367a5d552078606b32b3b53b2ceb.asturm@gentoo
1 commit: fbd7c59d80e6367a5d552078606b32b3b53b2ceb
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 18 09:07:52 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 18 09:36:53 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbd7c59d
7
8 kde-frameworks/extra-cmake-modules: Drop 5.52.0 (r0)
9
10 Package-Manager: Portage-2.3.51, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 .../extra-cmake-modules-5.52.0.ebuild | 65 ----------------------
14 1 file changed, 65 deletions(-)
15
16 diff --git a/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.52.0.ebuild b/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.52.0.ebuild
17 deleted file mode 100644
18 index 4f32e710bac..00000000000
19 --- a/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.52.0.ebuild
20 +++ /dev/null
21 @@ -1,65 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -PYTHON_COMPAT=( python{2_7,3_{4,5,6,7}} )
28 -ECM_KDEINSTALLDIRS="false"
29 -KDE_AUTODEPS="false"
30 -KDE_DEBUG="false"
31 -KDE_QTHELP="false"
32 -KDE_TEST="false"
33 -inherit kde5 python-any-r1
34 -
35 -DESCRIPTION="Extra modules and scripts for CMake"
36 -HOMEPAGE="https://cgit.kde.org/extra-cmake-modules.git"
37 -
38 -LICENSE="BSD"
39 -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd"
40 -IUSE="doc test"
41 -
42 -DEPEND="
43 - doc? (
44 - ${PYTHON_DEPS}
45 - $(python_gen_any_dep 'dev-python/sphinx[${PYTHON_USEDEP}]')
46 - )
47 - test? (
48 - $(add_qt_dep qtcore)
49 - $(add_qt_dep linguist-tools)
50 - )
51 -"
52 -RDEPEND="
53 - app-arch/libarchive[bzip2]
54 -"
55 -
56 -PATCHES=( "${FILESDIR}/${PN}-5.49.0-no-fatal-warnings.patch" )
57 -
58 -python_check_deps() {
59 - has_version "dev-python/sphinx[${PYTHON_USEDEP}]"
60 -}
61 -
62 -pkg_setup() {
63 - use doc && python-any-r1_pkg_setup
64 -}
65 -
66 -src_configure() {
67 - local mycmakeargs=(
68 - -DBUILD_QTHELP_DOCS=$(usex doc)
69 - -DBUILD_HTML_DOCS=$(usex doc)
70 - -DBUILD_MAN_DOCS=$(usex doc)
71 - -DDOC_INSTALL_DIR=/usr/share/doc/"${PF}"
72 - )
73 - use test && mycmakeargs+=( -DCMAKE_DISABLE_FIND_PACKAGE_PythonModuleGeneration=ON )
74 -
75 - kde5_src_configure
76 -}
77 -
78 -src_test() {
79 - # ECMToolchainAndroidTest passes but then breaks src_install
80 - # ECMPoQmToolsTest is broken, bug #627806
81 - local myctestargs=(
82 - -E "(ECMToolchainAndroidTest|ECMPoQmToolsTest)"
83 - )
84 -
85 - kde5_src_test
86 -}