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 E23DD13933E for ; Fri, 23 Jul 2021 07:41:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4A64AE0C08; Fri, 23 Jul 2021 07:41:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 30C7FE0C08 for ; Fri, 23 Jul 2021 07:41:21 +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 2AC3E342AA0 for ; Fri, 23 Jul 2021 07:41:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 842057B2 for ; Fri, 23 Jul 2021 07:41:14 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1627026062.47122ed36f9c089457664d4e7e75c4d4ee2f0a2e.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/imath/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/imath/imath-3.0.5-r1.ebuild dev-libs/imath/imath-3.0.5.ebuild X-VCS-Directories: dev-libs/imath/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 47122ed36f9c089457664d4e7e75c4d4ee2f0a2e X-VCS-Branch: master Date: Fri, 23 Jul 2021 07:41:14 +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: 2f77397e-b3b1-42d7-96a6-6d59507737b4 X-Archives-Hash: ac62d93f690b0d2eae96cf412cdbf72e commit: 47122ed36f9c089457664d4e7e75c4d4ee2f0a2e Author: Bernd Waibel posteo net> AuthorDate: Thu Jul 22 19:25:17 2021 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Fri Jul 23 07:41:02 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47122ed3 dev-libs/imath: add blocker for v3.0.1 Due to a file collision, probably caused by a missing slotmove, which can occur when updating from v3.0.1 to v3.0.5. The blocker solves this. Closes: https://bugs.gentoo.org/803347 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Bernd Waibel posteo.net> Closes: https://github.com/gentoo/gentoo/pull/21748 Signed-off-by: Joonas Niilola gentoo.org> dev-libs/imath/{imath-3.0.5.ebuild => imath-3.0.5-r1.ebuild} | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/dev-libs/imath/imath-3.0.5.ebuild b/dev-libs/imath/imath-3.0.5-r1.ebuild similarity index 93% rename from dev-libs/imath/imath-3.0.5.ebuild rename to dev-libs/imath/imath-3.0.5-r1.ebuild index a4cce563f14..15316618778 100644 --- a/dev-libs/imath/imath-3.0.5.ebuild +++ b/dev-libs/imath/imath-3.0.5-r1.ebuild @@ -15,6 +15,7 @@ SRC_URI="https://github.com/AcademySoftwareFoundation/${MY_PN}/archive/refs/tags # re-keywording needed for (according to ilmbase keywords): # ~arm ~arm64 ~mips ~x64-macos ~x86-solaris KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" +S="${WORKDIR}/${MY_PN}-${PV}" LICENSE="BSD" SLOT="3/28" @@ -22,7 +23,9 @@ IUSE="doc large-stack python static-libs test" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" RESTRICT="!test? ( test )" +# blocker due to file collision #803347 RDEPEND=" + !~dev-libs/imath-3.0.1:0 sys-libs/zlib python? ( ${PYTHON_DEPS} @@ -39,13 +42,9 @@ BDEPEND=" python? ( ${PYTHON_DEPS} ) " -PATCHES=( - "${FILESDIR}"/${P}-0001-changes-needed-for-proper-slotting.patch -) +PATCHES=( "${FILESDIR}"/${P}-0001-changes-needed-for-proper-slotting.patch ) DOCS=( CHANGES.md CONTRIBUTORS.md README.md SECURITY.md docs/PortingGuide2-3.md ) -S="${WORKDIR}/${MY_PN}-${PV}" - pkg_setup() { use python && python-single-r1_pkg_setup }