From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 0D794158B20 for ; Tue, 04 Feb 2025 20:05:11 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id E8CD833BE00 for ; Tue, 04 Feb 2025 20:05:10 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id CE72811046F; Tue, 04 Feb 2025 20:05:08 +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 bobolink.gentoo.org (Postfix) with ESMTPS id BE3E311046F for ; Tue, 04 Feb 2025 20:05:08 +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 6AF9433BED4 for ; Tue, 04 Feb 2025 20:05:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 047972195 for ; Tue, 04 Feb 2025 20:05:07 +0000 (UTC) From: "Nowa 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, "Nowa Ammerlaan" Message-ID: <1738699496.60fafe52eb8abb5179c26b611136aaa3a639858e.nowa@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyside/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyside/pyside-6.8.2-r1.ebuild dev-python/pyside/pyside-6.8.2.ebuild X-VCS-Directories: dev-python/pyside/ X-VCS-Committer: nowa X-VCS-Committer-Name: Nowa Ammerlaan X-VCS-Revision: 60fafe52eb8abb5179c26b611136aaa3a639858e X-VCS-Branch: master Date: Tue, 04 Feb 2025 20:05:07 +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: 7e823d0c-6d6b-4804-8b93-d231bedd137a X-Archives-Hash: 70e02ba740a453cd1a84a15d6b829f6e commit: 60fafe52eb8abb5179c26b611136aaa3a639858e Author: Nowa Ammerlaan gentoo org> AuthorDate: Tue Feb 4 20:03:38 2025 +0000 Commit: Nowa Ammerlaan gentoo org> CommitDate: Tue Feb 4 20:04:56 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60fafe52 dev-python/pyside: workaround for symlink being blocked by dir Closes: https://bugs.gentoo.org/949287 Signed-off-by: Nowa Ammerlaan gentoo.org> dev-python/pyside/{pyside-6.8.2.ebuild => pyside-6.8.2-r1.ebuild} | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-python/pyside/pyside-6.8.2.ebuild b/dev-python/pyside/pyside-6.8.2-r1.ebuild similarity index 98% rename from dev-python/pyside/pyside-6.8.2.ebuild rename to dev-python/pyside/pyside-6.8.2-r1.ebuild index 96ce8196b217..3eea6c5ea105 100644 --- a/dev-python/pyside/pyside-6.8.2.ebuild +++ b/dev-python/pyside/pyside-6.8.2-r1.ebuild @@ -485,3 +485,9 @@ python_test() { virtx ${EPYTHON} testrunner.py test --projects=shiboken6 $(usev core '--projects=pyside6') || die "Tests failed with ${EPYTHON}" } + +pkg_preinst() { + # Avoid symlinks being blocked by directories + rm -rf "${EROOT}/usr/include/"{PySide6,shiboken6} || die + rm -rf "${EROOT}/usr/share/PySide6" || die +}