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.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 38B69158451 for ; Sun, 7 Jan 2024 17:13:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4FB9A2BC16D; Sun, 7 Jan 2024 17:13:44 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 308E32BC16D for ; Sun, 7 Jan 2024 17:13:44 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4455F3432E1 for ; Sun, 7 Jan 2024 17:13:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5724F14B5 for ; Sun, 7 Jan 2024 17:13:40 +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: <1704647534.9c3cc5766cad39da33fe81744dbb9c70abe62723.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: Documentation/maintainers/ X-VCS-Repository: proj/kde X-VCS-Files: Documentation/maintainers/regenerate-files X-VCS-Directories: Documentation/maintainers/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 9c3cc5766cad39da33fe81744dbb9c70abe62723 X-VCS-Branch: master Date: Sun, 7 Jan 2024 17:13:40 +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: 32d5db16-2810-4b26-868f-f0337797224c X-Archives-Hash: f28ca49b37f0707e5ddf19a820068d0e commit: 9c3cc5766cad39da33fe81744dbb9c70abe62723 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jan 7 17:12:14 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jan 7 17:12:14 2024 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=9c3cc576 Documentation: regenerate-files: Generate KF6 files w/ SLOT def Signed-off-by: Andreas Sturmlechner gentoo.org> Documentation/maintainers/regenerate-files | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/maintainers/regenerate-files b/Documentation/maintainers/regenerate-files index 16bd129bbb..04f22f6e4a 100755 --- a/Documentation/maintainers/regenerate-files +++ b/Documentation/maintainers/regenerate-files @@ -36,7 +36,7 @@ if [[ -n ${KF6_RELEASES} ]]; then if [[ -d ".kde-frameworks-${release}" ]]; then echo -e "${HEADER}" > "kde-frameworks-${release}.keywords" cat ".kde-frameworks-${release}/"* | grep -P -v '^>=kde-frameworks/(?!kf-env)' | \ - sed -e '/^~.*[.-]9999$/s/$/ **/' -e '/^@/d' >> "kde-frameworks-${release}.keywords" + sed -e '/^~.*[.-]9999\:[0-9]*$/s/$/ **/' -e '/^@/d' >> "kde-frameworks-${release}.keywords" fi done fi @@ -89,7 +89,7 @@ if [[ -d .kde-frameworks-live.base ]]; then echo -e "${HEADER}" > kde-frameworks-live.keywords for file in .kde-frameworks-live.base/*; do newfile=.kde-frameworks-live/$(basename "${file}") - sed -e '/^~.*[.-]9999$/s/$/ **/' -e '/^@/d' "${file}" > "${newfile}" + sed -e '/^~.*[.-]9999\:[0-9]*$/s/$/ **/' -e '/^@/d' "${file}" > "${newfile}" done cat .kde-frameworks-live/* >> kde-frameworks-live.keywords fi