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 DECFA15808C for ; Sat, 12 Feb 2022 02:04:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5BA49E0843; Sat, 12 Feb 2022 02:04:30 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 27315E0844 for ; Sat, 12 Feb 2022 02:04:30 +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 D6EE33431C9 for ; Sat, 12 Feb 2022 02:04:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4C7F52D4 for ; Sat, 12 Feb 2022 02:04:27 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1644629488.3b9b1014085e90bfb8640e179dba008063306c1a.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-board/pychess/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-board/pychess/pychess-1.0.3.ebuild X-VCS-Directories: games-board/pychess/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 3b9b1014085e90bfb8640e179dba008063306c1a X-VCS-Branch: master Date: Sat, 12 Feb 2022 02:04:27 +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: a043833f-4526-40a1-89cb-a5411b882d2c X-Archives-Hash: 08498a46a0caefb480dd63fc229730b1 commit: 3b9b1014085e90bfb8640e179dba008063306c1a Author: Ionen Wolkens gentoo org> AuthorDate: Sat Feb 12 01:01:19 2022 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Sat Feb 12 01:31:28 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b9b1014 games-board/pychess: drop 1.0.3 Signed-off-by: Ionen Wolkens gentoo.org> games-board/pychess/pychess-1.0.3.ebuild | 52 -------------------------------- 1 file changed, 52 deletions(-) diff --git a/games-board/pychess/pychess-1.0.3.ebuild b/games-board/pychess/pychess-1.0.3.ebuild deleted file mode 100644 index 849abb618dea..000000000000 --- a/games-board/pychess/pychess-1.0.3.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8,9} ) -DISTUTILS_SINGLE_IMPL=1 -DISTUTILS_USE_SETUPTOOLS=no -PYTHON_REQ_USE="sqlite" - -inherit xdg distutils-r1 - -DESCRIPTION="A chess client for GNOME" -HOMEPAGE="https://github.com/pychess/pychess" -SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.gz" -S="${WORKDIR}/PyChess-${PV}" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="gstreamer" - -DEPEND=" - $(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}] - dev-python/sqlalchemy[${PYTHON_USEDEP},sqlite] - dev-python/websockets[${PYTHON_USEDEP}] - ') - gnome-base/librsvg:2 - x11-libs/gtksourceview:3.0 - x11-libs/pango - x11-themes/adwaita-icon-theme - gstreamer? ( - $(python_gen_cond_dep ' - dev-python/gst-python:1.0[${PYTHON_USEDEP}] - ') - media-libs/gstreamer:1.0 - media-libs/gst-plugins-base:1.0 - ) -" - -RDEPEND="${DEPEND}" - -src_install() { - distutils-r1_src_install - - # https://github.com/pychess/pychess/pull/1825 - gunzip -v "${ED}"/usr/share/man/man1/${PN}.1.gz || die -}