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 BD77915808B for ; Fri, 11 Feb 2022 16:30:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E7BD6E0844; Fri, 11 Feb 2022 16:30:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 CBF65E0844 for ; Fri, 11 Feb 2022 16:30:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 CEECD342CFB for ; Fri, 11 Feb 2022 16:30:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B9A261BD for ; Fri, 11 Feb 2022 16:30:06 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1644596996.55a3901b5cb825e1e972648f9edef0356d498bf8.sam@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.1.3-r1.ebuild dev-libs/imath/imath-3.1.4-r1.ebuild dev-libs/imath/imath-3.1.4.ebuild X-VCS-Directories: dev-libs/imath/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 55a3901b5cb825e1e972648f9edef0356d498bf8 X-VCS-Branch: master Date: Fri, 11 Feb 2022 16:30:06 +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: 32f2d1fe-af3b-4961-b966-db7dd71d51d5 X-Archives-Hash: b00d0ac8e3de8a3544637f89c9c28979 commit: 55a3901b5cb825e1e972648f9edef0356d498bf8 Author: Bernd Waibel posteo net> AuthorDate: Mon Feb 7 17:26:30 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri Feb 11 16:29:56 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55a3901b dev-libs/imath: add env file to define LD_PATH Closes: https://bugs.gentoo.org/832773 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Bernd Waibel posteo.net> Signed-off-by: Sam James gentoo.org> .../imath/{imath-3.1.4.ebuild => imath-3.1.3-r1.ebuild} | 13 +++++++++++-- .../imath/{imath-3.1.4.ebuild => imath-3.1.4-r1.ebuild} | 8 ++++++++ 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/dev-libs/imath/imath-3.1.4.ebuild b/dev-libs/imath/imath-3.1.3-r1.ebuild similarity index 86% copy from dev-libs/imath/imath-3.1.4.ebuild copy to dev-libs/imath/imath-3.1.3-r1.ebuild index 54eb940af84e..ee484855491a 100644 --- a/dev-libs/imath/imath-3.1.4.ebuild +++ b/dev-libs/imath/imath-3.1.3-r1.ebuild @@ -41,7 +41,7 @@ BDEPEND=" python? ( ${PYTHON_DEPS} ) " -PATCHES=( "${FILESDIR}"/${P}-Gentoo-specific-changes-needed-for-slotting.patch ) +PATCHES=( "${FILESDIR}"/${PN}-3.1.1-0001-changes-needed-for-proper-slotting.patch ) DOCS=( CHANGES.md CONTRIBUTORS.md README.md SECURITY.md docs/PortingGuide2-3.md ) pkg_setup() { @@ -63,7 +63,8 @@ src_configure() { ) if use python; then mycmakeargs+=( - -DBoost_NO_BOOST_CMAKE=OFF + # temp. disable for finding libboost_python310, #803032 +# -DBoost_NO_BOOST_CMAKE=OFF -DPYTHON=ON -DPython3_EXECUTABLE="${PYTHON}" -DPython3_INCLUDE_DIR=$(python_get_includedir) @@ -73,3 +74,11 @@ src_configure() { cmake_src_configure } + +src_install() { + cmake_src_install + + newenvd - 99${PN}3 <<-EOF + LDPATH=${EPREFIX}/usr/$(get_libdir)/${MY_PN}-3 + EOF +} diff --git a/dev-libs/imath/imath-3.1.4.ebuild b/dev-libs/imath/imath-3.1.4-r1.ebuild similarity index 94% rename from dev-libs/imath/imath-3.1.4.ebuild rename to dev-libs/imath/imath-3.1.4-r1.ebuild index 54eb940af84e..0c407bd3727e 100644 --- a/dev-libs/imath/imath-3.1.4.ebuild +++ b/dev-libs/imath/imath-3.1.4-r1.ebuild @@ -73,3 +73,11 @@ src_configure() { cmake_src_configure } + +src_install() { + cmake_src_install + + newenvd - 99${PN}3 <<-EOF + LDPATH=${EPREFIX}/usr/$(get_libdir)/${MY_PN}-3 + EOF +}