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 EF08713933E for ; Sun, 18 Jul 2021 10:23:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1BF59E0A0B; Sun, 18 Jul 2021 10:23:25 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 02925E0A0B for ; Sun, 18 Jul 2021 10:23:24 +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 D52B0342AAB for ; Sun, 18 Jul 2021 10:23:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 49BA725 for ; Sun, 18 Jul 2021 10:23:22 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1626603798.f2581accf1511bcaf956b483217d9d67d022c75c.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/shiboken2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/shiboken2/shiboken2-5.15.1-r1.ebuild dev-python/shiboken2/shiboken2-5.15.1.ebuild dev-python/shiboken2/shiboken2-5.15.2-r1.ebuild dev-python/shiboken2/shiboken2-5.15.2.ebuild X-VCS-Directories: dev-python/shiboken2/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: f2581accf1511bcaf956b483217d9d67d022c75c X-VCS-Branch: master Date: Sun, 18 Jul 2021 10:23:22 +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: 78a5e9fb-2842-41af-80e6-fad98ed001d2 X-Archives-Hash: 6e6c84b3a43a7616d210f48881b9a314 commit: f2581accf1511bcaf956b483217d9d67d022c75c Author: Andrew Ammerlaan gentoo org> AuthorDate: Sun Jul 18 10:21:07 2021 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Sun Jul 18 10:23:18 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2581acc dev-python/shiboken2: depend on clang-runtime pyside2 fails to compile if we try to compile it with a different version of clang then was present when shiboken2 was compiled. Even a change of the minor version triggers this! We depend on clang-runtime as well as on clang, because clang-PV pulls in clang-runtime-PV and the clang-runtime ebuild defines different slots even for the minor releases (which clang does not, it only has slots for major releases). This should trigger a rebuild of shiboken2 even for minor version changes of clang(-runtime) and thus avoid any issues when compiling pyside2. Closes: https://bugs.gentoo.org/796614 Package-Manager: Portage-3.0.20, Repoman-3.0.3 RepoMan-Options: --force Signed-off-by: Andrew Ammerlaan gentoo.org> .../shiboken2/{shiboken2-5.15.1.ebuild => shiboken2-5.15.1-r1.ebuild} | 3 ++- .../shiboken2/{shiboken2-5.15.2.ebuild => shiboken2-5.15.2-r1.ebuild} | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-python/shiboken2/shiboken2-5.15.1.ebuild b/dev-python/shiboken2/shiboken2-5.15.1-r1.ebuild similarity index 99% rename from dev-python/shiboken2/shiboken2-5.15.1.ebuild rename to dev-python/shiboken2/shiboken2-5.15.1-r1.ebuild index 7acae0aa868..de2845464e8 100644 --- a/dev-python/shiboken2/shiboken2-5.15.1.ebuild +++ b/dev-python/shiboken2/shiboken2-5.15.1-r1.ebuild @@ -41,7 +41,8 @@ QT_PV="$(ver_cut 1-2):5" # Since Clang is required at both build- and runtime, BDEPEND is omitted here. RDEPEND="${PYTHON_DEPS} >=dev-qt/qtcore-${QT_PV} - >=sys-devel/clang-6:= + sys-devel/clang:= + sys-devel/clang-runtime:= docstrings? ( >=dev-libs/libxml2-2.6.32 >=dev-libs/libxslt-1.1.19 diff --git a/dev-python/shiboken2/shiboken2-5.15.2.ebuild b/dev-python/shiboken2/shiboken2-5.15.2-r1.ebuild similarity index 99% rename from dev-python/shiboken2/shiboken2-5.15.2.ebuild rename to dev-python/shiboken2/shiboken2-5.15.2-r1.ebuild index 0f97bbc648a..cbfac4a28fb 100644 --- a/dev-python/shiboken2/shiboken2-5.15.2.ebuild +++ b/dev-python/shiboken2/shiboken2-5.15.2-r1.ebuild @@ -44,7 +44,8 @@ QT_PV="$(ver_cut 1-2):5" # Since Clang is required at both build- and runtime, BDEPEND is omitted here. RDEPEND="${PYTHON_DEPS} >=dev-qt/qtcore-${QT_PV} - >=sys-devel/clang-6:= + sys-devel/clang:= + sys-devel/clang-runtime:= docstrings? ( >=dev-libs/libxml2-2.6.32 >=dev-libs/libxslt-1.1.19