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 6CC19158041 for ; Mon, 26 Feb 2024 19:31:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7AB34E2B33; Mon, 26 Feb 2024 19:31:37 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5410AE2B33 for ; Mon, 26 Feb 2024 19:31:37 +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 435FE33BE58 for ; Mon, 26 Feb 2024 19:31:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 95244B2F for ; Mon, 26 Feb 2024 19:31:34 +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: <1708975876.5dbc42af80a1c07d7f50b0a6974f0371487490e6.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/kirigami-addons/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/kirigami-addons/kirigami-addons-1.0.0.ebuild X-VCS-Directories: dev-libs/kirigami-addons/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 5dbc42af80a1c07d7f50b0a6974f0371487490e6 X-VCS-Branch: master Date: Mon, 26 Feb 2024 19:31:34 +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: c64de155-9b50-4355-88c2-3771bafab9f3 X-Archives-Hash: 72ebd037ab36bdee99d3dd11f898ef28 commit: 5dbc42af80a1c07d7f50b0a6974f0371487490e6 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Feb 26 19:29:13 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Feb 26 19:31:16 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5dbc42af dev-libs/kirigami-addons: Fix KF_MIN_VERSION to accept KF 5.249.0 ... with 6.0.0 not being released yet. Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/kirigami-addons/kirigami-addons-1.0.0.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-libs/kirigami-addons/kirigami-addons-1.0.0.ebuild b/dev-libs/kirigami-addons/kirigami-addons-1.0.0.ebuild index 7062b928e335..d10984b8877a 100644 --- a/dev-libs/kirigami-addons/kirigami-addons-1.0.0.ebuild +++ b/dev-libs/kirigami-addons/kirigami-addons-1.0.0.ebuild @@ -45,3 +45,9 @@ DEPEND="${COMMON_DEPEND} x11-themes/sound-theme-freedesktop ) " + +src_prepare() { + ecm_src_prepare + + sed -e "/set(KF_MIN_VERSION/s/6.0.0/5.249.0/" -i CMakeLists.txt || die +}