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 9C91413997D for ; Sun, 10 Nov 2019 17:11:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 85393E09E4; Sun, 10 Nov 2019 17:11:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 53C55E09FE for ; Sun, 10 Nov 2019 17:11:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 6234034CB51 for ; Sun, 10 Nov 2019 17:11:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2CBDA8AB for ; Sun, 10 Nov 2019 17:11:44 +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: <1573405612.f322bb6aa817f6a6b62b4768aa2800995a0e1291.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: f322bb6aa817f6a6b62b4768aa2800995a0e1291 X-VCS-Branch: master Date: Sun, 10 Nov 2019 17:11:44 +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: db396866-c3fe-42d2-a155-eb71ce817a9d X-Archives-Hash: a459b1a7b6597c4eb66f2e31d6759ace commit: f322bb6aa817f6a6b62b4768aa2800995a0e1291 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Nov 10 17:02:06 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Nov 10 17:06:52 2019 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=f322bb6a kde.org.eclass: Standard HOMEPAGE for kde-plasma and kde-frameworks Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/kde.org.eclass | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/eclass/kde.org.eclass b/eclass/kde.org.eclass index 27cec7cc3b..44b03b795e 100644 --- a/eclass/kde.org.eclass +++ b/eclass/kde.org.eclass @@ -55,11 +55,6 @@ case ${KDE_SELINUX_MODULE} in ;; esac -if [[ ${CATEGORY} = kde-frameworks ]]; then - SLOT=5/${PV} - [[ ${KDE_BUILD_TYPE} = release ]] && SLOT=$(ver_cut 1)/$(ver_cut 1-2) -fi - # @ECLASS-VARIABLE: KDE_UNRELEASED # @INTERNAL # @DESCRIPTION @@ -70,6 +65,18 @@ KDE_UNRELEASED=( kde-frameworks-5.64.0 kde-apps-19.08.3 ) HOMEPAGE="https://kde.org/" +case ${CATEGORY} in + kde-plasma) + HOMEPAGE="https://kde.org/plasma-desktop" + ;; + kde-frameworks) + HOMEPAGE="https://kde.org/products/frameworks/" + SLOT=5/${PV} + [[ ${KDE_BUILD_TYPE} = release ]] && SLOT=$(ver_cut 1)/$(ver_cut 1-2) + ;; + *) ;; +esac + _kde_is_unreleased() { local pair for pair in "${KDE_UNRELEASED[@]}" ; do