commit:     4ef7b7e716fefe9dd5d6dafb89d72b416c93139a
Author:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 30 05:44:01 2025 +0000
Commit:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
CommitDate: Wed Apr 30 05:44:01 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ef7b7e7

sci-visualization/veusz: add python3_13

Suggested-by: Alfred Wingate

Closes: https://bugs.gentoo.org/931670
Closes: https://bugs.gentoo.org/940710
Closes: https://bugs.gentoo.org/952706
Closes: https://bugs.gentoo.org/954881
Signed-off-by: Andrey Grozin <grozin <AT> gentoo.org>

 sci-visualization/veusz/veusz-3.6.2-r2.ebuild | 72 +++++++++++++++++++++++++++
 1 file changed, 72 insertions(+)

diff --git a/sci-visualization/veusz/veusz-3.6.2-r2.ebuild 
b/sci-visualization/veusz/veusz-3.6.2-r2.ebuild
new file mode 100644
index 000000000000..f7438cf9fc1f
--- /dev/null
+++ b/sci-visualization/veusz/veusz-3.6.2-r2.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..13} )
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+inherit desktop distutils-r1 qmake-utils virtualx xdg
+
+DESCRIPTION="Qt scientific plotting package with good Postscript output"
+HOMEPAGE="https://veusz.github.io/";
+SRC_URI="https://github.com/${PN}/${PN}/releases/download/${P}/${P}.tar.gz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="dbus hdf5"
+
+COMMON_DEPEND="
+       dev-python/numpy[${PYTHON_USEDEP}]
+       dev-python/pyqt5[gui,printsupport,svg,widgets,${PYTHON_USEDEP}]
+       dev-python/tomli[${PYTHON_USEDEP}]
+"
+RDEPEND="${COMMON_DEPEND}
+       dbus? ( dev-python/dbus-python[${PYTHON_USEDEP}] )
+       hdf5? ( dev-python/h5py[${PYTHON_USEDEP}] )
+"
+BDEPEND="${COMMON_DEPEND}
+       dev-python/sip:5[${PYTHON_USEDEP}]
+"
+
+distutils_enable_sphinx Documents/manual-source \
+       dev-python/alabaster
+
+src_prepare() {
+       distutils-r1_src_prepare
+       xdg_environment_reset
+}
+
+python_compile() {
+       distutils-r1_python_compile build_ext 
--qmake-exe=$(qt5_get_bindir)/qmake
+}
+
+python_test() {
+       VIRTUALX_COMMAND="${EPYTHON}" \
+               VEUSZ_RESOURCE_DIR="${S}" \
+               virtx tests/runselftest.py
+}
+
+python_install() {
+       distutils-r1_python_install
+       # symlink the license, bug #341653
+       rm "${D}/$(python_get_sitedir)"/${PN}/{COPYING,AUTHORS,ChangeLog} || die
+       mkdir -p "${D}/$(python_get_sitedir)" || die
+       cat >> "${D}/$(python_get_sitedir)"/${PN}/COPYING <<- EOF
+       Please visit
+
+       https://www.gnu.org/licenses/gpl-2.0.html
+
+       for the full license text.
+       EOF
+}
+
+python_install_all() {
+       distutils-r1_python_install_all
+
+       doicon icons/veusz.png
+       domenu "${FILESDIR}"/veusz.desktop
+       insinto /usr/share/mime/packages
+       doins "${FILESDIR}"/veusz.xml
+}

Reply via email to