Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: eclass/
Date: Fri, 23 Apr 2021 20:27:09
Message-Id: 1619209608.01793b81590fb61e5609f62c411cf9ad05aac22d.asturm@gentoo
1 commit: 01793b81590fb61e5609f62c411cf9ad05aac22d
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 17 17:53:00 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 23 20:26:48 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=01793b81
7
8 kde.org.eclass: Support Qt5PatchCollection snapshots
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 eclass/kde.org.eclass | 6 ++++++
13 1 file changed, 6 insertions(+)
14
15 diff --git a/eclass/kde.org.eclass b/eclass/kde.org.eclass
16 index 651ef680d4..c0392fc1e0 100644
17 --- a/eclass/kde.org.eclass
18 +++ b/eclass/kde.org.eclass
19 @@ -132,6 +132,11 @@ KDE_UNRELEASED=( )
20 HOMEPAGE="https://kde.org/"
21
22 case ${CATEGORY} in
23 + dev-qt)
24 + KDE_ORG_NAME=${QT5_MODULE:-${PN}}
25 + HOMEPAGE="https://community.kde.org/Qt5PatchCollection
26 + https://invent.kde.org/qt/qt/ https://www.qt.io/"
27 + ;;
28 kde-apps)
29 KDE_GEAR=true
30 ;;
31 @@ -280,6 +285,7 @@ case ${KDE_BUILD_TYPE} in
32 debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}"
33 if [[ -n ${KDE_ORG_COMMIT} ]]; then
34 S=${WORKDIR}/${KDE_ORG_NAME}-${KDE_ORG_COMMIT}
35 + [[ ${CATEGORY} == dev-qt ]] && QT5_BUILD_DIR="${S}_build"
36 else
37 S=${WORKDIR}/${KDE_ORG_NAME}-${PV}
38 fi