Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtdeclarative/
Date: Tue, 12 Mar 2019 07:10:27
Message-Id: 1552374460.a721cc77ca1dcabcd1f9e4f729227c88b1e7a844.asturm@gentoo
1 commit: a721cc77ca1dcabcd1f9e4f729227c88b1e7a844
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Mar 12 00:04:57 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 12 07:07:40 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a721cc77
7
8 dev-qt/qtdeclarative: Drop 5.12.1 (r0)
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 dev-qt/qtdeclarative/qtdeclarative-5.12.1.ebuild | 64 ------------------------
14 1 file changed, 64 deletions(-)
15
16 diff --git a/dev-qt/qtdeclarative/qtdeclarative-5.12.1.ebuild b/dev-qt/qtdeclarative/qtdeclarative-5.12.1.ebuild
17 deleted file mode 100644
18 index 31657b800d6..00000000000
19 --- a/dev-qt/qtdeclarative/qtdeclarative-5.12.1.ebuild
20 +++ /dev/null
21 @@ -1,64 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} )
27 -inherit python-any-r1 qt5-build
28 -
29 -DESCRIPTION="The QML and Quick modules for the Qt5 framework"
30 -
31 -if [[ ${QT5_BUILD_TYPE} == release ]]; then
32 - KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd"
33 -fi
34 -
35 -IUSE="gles2 +jit localstorage +widgets xml"
36 -
37 -# qtgui[gles2=] is needed because of bug 504322
38 -COMMON_DEPEND="
39 - ~dev-qt/qtcore-${PV}
40 - ~dev-qt/qtgui-${PV}[gles2=]
41 - ~dev-qt/qtnetwork-${PV}
42 - ~dev-qt/qttest-${PV}
43 - localstorage? ( ~dev-qt/qtsql-${PV} )
44 - widgets? ( ~dev-qt/qtwidgets-${PV}[gles2=] )
45 - xml? (
46 - ~dev-qt/qtnetwork-${PV}
47 - ~dev-qt/qtxmlpatterns-${PV}
48 - )
49 -"
50 -DEPEND="${COMMON_DEPEND}
51 - ${PYTHON_DEPS}
52 -"
53 -RDEPEND="${COMMON_DEPEND}
54 - !<dev-qt/qtquickcontrols-5.7:5
55 -"
56 -
57 -src_prepare() {
58 - use jit || PATCHES+=("${FILESDIR}/${PN}-5.4.2-disable-jit.patch")
59 -
60 - qt_use_disable_mod localstorage sql \
61 - src/imports/imports.pro
62 -
63 - qt_use_disable_mod widgets widgets \
64 - src/src.pro \
65 - src/qmltest/qmltest.pro \
66 - tests/auto/auto.pro \
67 - tools/tools.pro \
68 - tools/qmlscene/qmlscene.pro \
69 - tools/qml/qml.pro
70 -
71 - qt_use_disable_mod xml xmlpatterns \
72 - src/imports/imports.pro \
73 - tests/auto/quick/quick.pro \
74 - tests/auto/quick/examples/examples.pro
75 -
76 - qt5-build_src_prepare
77 -}
78 -
79 -src_configure() {
80 - local myqmakeargs=(
81 - --
82 - -qml-debug
83 - )
84 - qt5-build_src_configure
85 -}