diff options
author | Sebastian Pipping <sping@gentoo.org> | 2023-03-08 05:27:20 +0100 |
---|---|---|
committer | Sebastian Pipping <sping@gentoo.org> | 2023-03-08 05:38:46 +0100 |
commit | 698a74ba9328cdc06c3526f41984d2c186f5ccb6 (patch) | |
tree | 8778e59007b9cab1cc28a15d6ead79b9b9e9cf6e /games-board/pychess | |
parent | app-admin/awscli: Bump to 1.27.86 (diff) | |
download | gentoo-698a74ba9328cdc06c3526f41984d2c186f5ccb6.tar.gz gentoo-698a74ba9328cdc06c3526f41984d2c186f5ccb6.tar.bz2 gentoo-698a74ba9328cdc06c3526f41984d2c186f5ccb6.zip |
games-board/pychess: Python 3.11 + require <dev-python/sqlalchemy-2
Closes: https://bugs.gentoo.org/892892
Closes: https://bugs.gentoo.org/896956
Signed-off-by: Sebastian Pipping <sping@gentoo.org>
Diffstat (limited to 'games-board/pychess')
-rw-r--r-- | games-board/pychess/pychess-1.0.3-r3.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/games-board/pychess/pychess-1.0.3-r3.ebuild b/games-board/pychess/pychess-1.0.3-r3.ebuild new file mode 100644 index 000000000000..7a74f0b75169 --- /dev/null +++ b/games-board/pychess/pychess-1.0.3-r3.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_SINGLE_IMPL=1 +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_REQ_USE="sqlite" +inherit distutils-r1 xdg + +DESCRIPTION="GTK chess client" +HOMEPAGE="https://pychess.github.io/" +SRC_URI="https://github.com/pychess/pychess/releases/download/${PV}/${P}.tar.gz" +S="${WORKDIR}/PyChess-${PV}" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="gstreamer" + +RDEPEND=" + $(python_gen_cond_dep ' + dev-python/pexpect[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/pycairo[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP},cairo] + <dev-python/sqlalchemy-2[${PYTHON_USEDEP},sqlite] + dev-python/websockets[${PYTHON_USEDEP}] + gstreamer? ( dev-python/gst-python:1.0[${PYTHON_USEDEP}] )') + gnome-base/librsvg:2[introspection] + x11-libs/gtk+:3[introspection] + x11-libs/gtksourceview:3.0[introspection] + x11-libs/pango[introspection] + x11-themes/adwaita-icon-theme" +BDEPEND="${RDEPEND}" # setup.py fails if introspection deps not found + +PATCHES=( + "${FILESDIR}"/${PN}-1.0.3-setuptools-warning.patch +) + +src_install() { + distutils-r1_src_install + + # https://github.com/pychess/pychess/pull/1825 + gunzip -v "${ED}"/usr/share/man/man1/${PN}.1.gz || die +} |