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 B114A158093 for ; Sun, 3 Jul 2022 11:15:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A97B0E0942; Sun, 3 Jul 2022 11:15:02 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 8BC83E0942 for ; Sun, 3 Jul 2022 11:15:02 +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 21708341EBF for ; Sun, 3 Jul 2022 11:15:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 571584ED for ; Sun, 3 Jul 2022 11:14:59 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1656846773.d782ace815c640a5d189e3e0e5d99c47cd23311e.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyscreenshot/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyscreenshot/pyscreenshot-3.0.ebuild X-VCS-Directories: dev-python/pyscreenshot/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d782ace815c640a5d189e3e0e5d99c47cd23311e X-VCS-Branch: master Date: Sun, 3 Jul 2022 11:14:59 +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: e7d1fca1-40e2-4f5c-b761-ae862c0c0935 X-Archives-Hash: 0b8253a33b82cfcaa07debdb1d7941dd commit: d782ace815c640a5d189e3e0e5d99c47cd23311e Author: Michał Górny gentoo org> AuthorDate: Sun Jul 3 11:12:53 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jul 3 11:12:53 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d782ace8 dev-python/pyscreenshot: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/pyscreenshot/pyscreenshot-3.0.ebuild | 42 ------------------------- 1 file changed, 42 deletions(-) diff --git a/dev-python/pyscreenshot/pyscreenshot-3.0.ebuild b/dev-python/pyscreenshot/pyscreenshot-3.0.ebuild deleted file mode 100644 index 4c4a98f0a439..000000000000 --- a/dev-python/pyscreenshot/pyscreenshot-3.0.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..10} ) - -inherit distutils-r1 virtualx - -DESCRIPTION="Python screenshot library" -HOMEPAGE="https://github.com/ponty/pyscreenshot" -SRC_URI="https://github.com/ponty/pyscreenshot/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="amd64 ~arm64 x86" - -RDEPEND=" - dev-python/easyprocess[${PYTHON_USEDEP}] - dev-python/entrypoint2[${PYTHON_USEDEP}] - dev-python/jeepney[${PYTHON_USEDEP}] - dev-python/mss[${PYTHON_USEDEP}] -" - -BDEPEND=" - test? ( - dev-python/pillow[${PYTHON_USEDEP}] - dev-python/python-xlib[${PYTHON_USEDEP}] - dev-python/pyvirtualdisplay[${PYTHON_USEDEP}] - media-gfx/imagemagick - media-gfx/pqiv - x11-apps/xdpyinfo - ) -" - -distutils_enable_tests pytest - -python_test() { - # skip GNOME/KDE tests that require D-BUS - local -x XDG_CURRENT_DESKTOP=none - virtx epytest --deselect tests/test_check.py::test_speedtest -}