commit: 0bcab14249a26e921a998083d94293e89319ac67 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Mon Nov 3 19:28:43 2025 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Mon Nov 3 20:17:12 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bcab142
sci-chemistry/pymol: Use pyqt6 or pyside instead of dev-python/pyqt5 Closes: https://bugs.gentoo.org/965507 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> sci-chemistry/pymol/pymol-3.1.0-r1.ebuild | 123 ++++++++++++++++++++++++++++++ 1 file changed, 123 insertions(+) diff --git a/sci-chemistry/pymol/pymol-3.1.0-r1.ebuild b/sci-chemistry/pymol/pymol-3.1.0-r1.ebuild new file mode 100644 index 000000000000..83dc841b8453 --- /dev/null +++ b/sci-chemistry/pymol/pymol-3.1.0-r1.ebuild @@ -0,0 +1,123 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{11..13} ) +DISTUTILS_USE_PEP517="standalone" +DISTUTILS_EXT=1 + +inherit desktop xdg distutils-r1 + +DESCRIPTION="Python-extensible molecular graphics system" +HOMEPAGE="https://www.pymol.org/" +SRC_URI="https://github.com/schrodinger/pymol-open-source/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}"/${PN}-open-source-${PV} + +LICENSE="BitstreamVera BSD freedist HPND MIT-0 OFL-1.0 public-domain UoI-NCSA" #844991 +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-macos" +IUSE="+netcdf web" + +DEPEND=" + dev-cpp/msgpack-cxx + dev-libs/mmtf-cpp + dev-python/numpy[${PYTHON_USEDEP}] + >=dev-python/pillow-10.3.0[${PYTHON_USEDEP}] + sys-libs/zlib + media-libs/freetype:2 + media-libs/glew:0= + media-libs/glm + media-libs/libpng:0= + netcdf? ( sci-libs/netcdf:0= ) +" +RDEPEND="${DEPEND} + media-video/mpeg-tools + dev-python/pyopengl[${PYTHON_USEDEP}] + || ( + dev-python/pyqt6[opengl,${PYTHON_USEDEP}] + dev-python/pyside[opengl,${PYTHON_USEDEP}] + ) + dev-python/pmw[${PYTHON_USEDEP}] + sci-chemistry/chemical-mime-data +" +BDEPEND=" + test? ( >=dev-cpp/catch-2:0 ) + dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/wheel[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest + +# FIXME: We need to still figure out about how to make all the tests pass +# https://bugs.gentoo.org/932127 +RESTRICT="test" + +python_prepare_all() { + sed \ + -e 's/no_launcher = False/no_launcher = True/' \ + -i setup.py || die + + if use !netcdf; then + sed -e 's/vmd_plugins = True/vmd_plugins = False/' \ + -i setup.py || die + fi + + sed \ + -e "s:\"/usr:\"${EPREFIX}/usr:g" \ + -e "/ext_comp_args.*+=/s:\[.*\]$:\[\]:g" \ + -i setup.py || die + + sed \ + -e "s:/opt/local:${EPREFIX}/usr:g" \ + -e '/ext_comp_args/s:\[.*\]:[]:g' \ + -i setup.py || die + sed \ + -e "s:\['msgpackc'\]:\['msgpack'\]:g" \ + -i setup.py || die + + distutils-r1_python_prepare_all +} + +python_install() { + distutils-r1_python_install \ + --pymol-path="${EPREFIX}/usr/share/pymol" + + sed \ + -e '1i#!/usr/bin/env python' \ + "${D}/$(python_get_sitedir)"/pymol/__init__.py > "${T}"/${PN} || die + python_doscript "${T}"/${PN} +} + +python_test() { + "${EPYTHON}" -m pymol -ckqy testing/testing.py --offline --no-mmlibs --no-undo --run all || die +} + +python_install_all() { + distutils-r1_python_install_all + + # Move data to correct location + dodir /usr/share/pymol + mv "${D}/$(python_get_sitedir)"/pymol/pymol_path/* "${ED}/usr/share/pymol" || die + + # These environment variables should not go in the wrapper script, or else + # it will be impossible to use the PyMOL libraries from Python. + cat >> "${T}"/20pymol <<- EOF || die + PYMOL_PATH="${EPREFIX}/usr/share/pymol" + PYMOL_DATA="${EPREFIX}/usr/share/pymol/data" + PYMOL_SCRIPTS="${EPREFIX}/usr/share/pymol/scripts" + EOF + + doenvd "${T}"/20pymol + + newicon "${S}"/data/pymol/icons/icon2.svg ${PN}.svg + make_desktop_entry "${PN} %u" PyMol ${PN} \ + "Graphics;Education;Science;Chemistry;" \ + "MimeType=chemical/x-pdb;chemical/pdby;chemical/x-mdl-sdfile;chemical/x-mdl-molfile;chemical/x-mol2;chemical/seq-aa-fasta;chemical/seq-na-fasta;chemical/x-xyz;chemical/x-mdl-sdf;chemical/x-macromodel-input;chemical/x-vmd;" + + if ! use web; then + rm -rf "${D}/$(python_get_sitedir)/web" || die + fi + + rm -f "${ED}"/usr/share/${PN}/LICENSE || die +}
