From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1580780-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 69B4F158015 for <garchives@archives.gentoo.org>; Sun, 17 Dec 2023 09:20:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 870042BC039; Sun, 17 Dec 2023 09:20:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6CDD42BC039 for <gentoo-commits@lists.gentoo.org>; Sun, 17 Dec 2023 09:20:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5064B33F698 for <gentoo-commits@lists.gentoo.org>; Sun, 17 Dec 2023 09:20:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F98313A0 for <gentoo-commits@lists.gentoo.org>; Sun, 17 Dec 2023 09:20:47 +0000 (UTC) From: "Andreas Sturmlechner" <asturm@gentoo.org> 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" <asturm@gentoo.org> Message-ID: <1702804159.d95b69ec1905b95bb9d34d82a4b33c1250a082c1.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: Documentation/maintainers/new/ X-VCS-Repository: proj/kde X-VCS-Files: Documentation/maintainers/new/frameworks-bump.sh X-VCS-Directories: Documentation/maintainers/new/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d95b69ec1905b95bb9d34d82a4b33c1250a082c1 X-VCS-Branch: master Date: Sun, 17 Dec 2023 09:20:47 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e14e1515-1340-4104-bb46-4d6937d6a218 X-Archives-Hash: 7ff0e8939f1830299c32af7f227a19ea commit: d95b69ec1905b95bb9d34d82a4b33c1250a082c1 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Sun Dec 17 08:45:59 2023 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Sun Dec 17 09:09:19 2023 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=d95b69ec Documentation: frameworks-bump.sh: Support KF6 unstable releases Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> Documentation/maintainers/new/frameworks-bump.sh | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/Documentation/maintainers/new/frameworks-bump.sh b/Documentation/maintainers/new/frameworks-bump.sh index 9180a1a5c9..84b2813b49 100755 --- a/Documentation/maintainers/new/frameworks-bump.sh +++ b/Documentation/maintainers/new/frameworks-bump.sh @@ -6,7 +6,7 @@ help() { echo "Perform a version bump of KDE Frameworks 5 or 6." echo - echo "Based on the kde-frameworks-(5|6)-live set, this script performs a full version bump" + echo "Based on the kde-frameworks-(5-)live sets, this script performs a full version bump" echo "of a new unreleased KDE Frameworks." echo echo "In addition to the new ebuild being created, the following operations are performed:" @@ -34,12 +34,17 @@ if [[ -z "${VERSION}" ]] ; then fi major_version=$(echo ${VERSION} | cut -d "." -f 1) +if [[ ${VERSION} == 5.2[4-9]?.? ]]; then + major_version=6 +fi major_minor_version=$(echo ${VERSION} | cut -d "." -f 1-2) -kfmv="kde-frameworks-${major_version}-${major_minor_version}" -setname="kde-frameworks-${major_version}" if [[ ${major_version} == 5 ]]; then + kfmv="kde-frameworks-${major_version}-${major_minor_version}" base_version=5.239.9999 + setname="kde-frameworks-${major_version}" else + kfmv="kde-frameworks-${major_minor_version}" + setname="kde-frameworks" base_version=9999 fi