From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 152FB1382C5 for ; Fri, 23 Apr 2021 20:27:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 556C8E0843; Fri, 23 Apr 2021 20:27:08 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 14EA6E0843 for ; Fri, 23 Apr 2021 20:27:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3A48B341378 for ; Fri, 23 Apr 2021 20:27:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D0AA3720 for ; Fri, 23 Apr 2021 20:27:04 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1619209608.01793b81590fb61e5609f62c411cf9ad05aac22d.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/kde.org.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 01793b81590fb61e5609f62c411cf9ad05aac22d X-VCS-Branch: master Date: Fri, 23 Apr 2021 20:27:04 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2b28122b-53d9-4cfe-b409-2a8844cb0f92 X-Archives-Hash: 63ecb68a80e831c7692c4f649e424e7e commit: 01793b81590fb61e5609f62c411cf9ad05aac22d Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Apr 17 17:53:00 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Apr 23 20:26:48 2021 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=01793b81 kde.org.eclass: Support Qt5PatchCollection snapshots Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/kde.org.eclass | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/eclass/kde.org.eclass b/eclass/kde.org.eclass index 651ef680d4..c0392fc1e0 100644 --- a/eclass/kde.org.eclass +++ b/eclass/kde.org.eclass @@ -132,6 +132,11 @@ KDE_UNRELEASED=( ) HOMEPAGE="https://kde.org/" case ${CATEGORY} in + dev-qt) + KDE_ORG_NAME=${QT5_MODULE:-${PN}} + HOMEPAGE="https://community.kde.org/Qt5PatchCollection + https://invent.kde.org/qt/qt/ https://www.qt.io/" + ;; kde-apps) KDE_GEAR=true ;; @@ -280,6 +285,7 @@ case ${KDE_BUILD_TYPE} in debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}" if [[ -n ${KDE_ORG_COMMIT} ]]; then S=${WORKDIR}/${KDE_ORG_NAME}-${KDE_ORG_COMMIT} + [[ ${CATEGORY} == dev-qt ]] && QT5_BUILD_DIR="${S}_build" else S=${WORKDIR}/${KDE_ORG_NAME}-${PV} fi