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 753DC158083 for ; Thu, 5 Sep 2024 04:08:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 73D56E2A85; Thu, 5 Sep 2024 04:08:41 +0000 (UTC) Received: from smtp.gentoo.org (mail.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5CEC6E2A85 for ; Thu, 5 Sep 2024 04:08:41 +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 A0A513430AD for ; Thu, 5 Sep 2024 04:08:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 09B671F3B for ; Thu, 5 Sep 2024 04:08:38 +0000 (UTC) From: "Eli Schwartz" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eli Schwartz" Message-ID: <1725509264.045fb68f62b66b2d85d685eeaa49d2903621817a.eschwartz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/pymol/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-chemistry/pymol/pymol-3.0.0.ebuild X-VCS-Directories: sci-chemistry/pymol/ X-VCS-Committer: eschwartz X-VCS-Committer-Name: Eli Schwartz X-VCS-Revision: 045fb68f62b66b2d85d685eeaa49d2903621817a X-VCS-Branch: master Date: Thu, 5 Sep 2024 04:08:38 +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: 7ad9d957-db2e-4cbc-851d-db081713b879 X-Archives-Hash: fc8309d46a887a21093703949f85b103 commit: 045fb68f62b66b2d85d685eeaa49d2903621817a Author: Eli Schwartz gentoo org> AuthorDate: Wed Sep 4 21:20:25 2024 +0000 Commit: Eli Schwartz gentoo org> CommitDate: Thu Sep 5 04:07:44 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=045fb68f sci-chemistry/pymol: drop a bunch of dependencies to runtime-only They aren't needed to run setup.py (whether via gpep517 or otherwise). They are only used by the runtime code. The distinction between dependency types is sometimes seen as a bit academic, but it matters for --buildpkgonly. This is especially useful as one of the runtime-only dependencies will, in turn, depend on python[tk], and moving it out of DEPEND means the package can be test-compiled with --buildpkgonly, without rebuilding and reinstalling python. Signed-off-by: Eli Schwartz gentoo.org> sci-chemistry/pymol/pymol-3.0.0.ebuild | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/sci-chemistry/pymol/pymol-3.0.0.ebuild b/sci-chemistry/pymol/pymol-3.0.0.ebuild index 150f7732d930..f589a6cd9584 100644 --- a/sci-chemistry/pymol/pymol-3.0.0.ebuild +++ b/sci-chemistry/pymol/pymol-3.0.0.ebuild @@ -26,19 +26,20 @@ IUSE="+netcdf web" DEPEND=" dev-cpp/msgpack-cxx dev-libs/mmtf-cpp - dev-python/pyopengl[${PYTHON_USEDEP}] - dev-python/PyQt5[opengl,${PYTHON_USEDEP}] dev-python/numpy[${PYTHON_USEDEP}] - dev-python/pmw[${PYTHON_USEDEP}] + sys-libs/zlib media-libs/freetype:2 media-libs/glew:0= media-libs/glm media-libs/libpng:0= - media-video/mpeg-tools - sys-libs/zlib netcdf? ( sci-libs/netcdf:0= ) " -RDEPEND="${DEPEND} +RDEPEND=" + ${DEPEND} + media-video/mpeg-tools + dev-python/pyopengl[${PYTHON_USEDEP}] + dev-python/PyQt5[opengl,${PYTHON_USEDEP}] + dev-python/pmw[${PYTHON_USEDEP}] sci-chemistry/chemical-mime-data "