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 AAD1A158090 for ; Sat, 21 May 2022 13:49:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 85ECFE08F6; Sat, 21 May 2022 13:49:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 70DD1E08F6 for ; Sat, 21 May 2022 13:49:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 33F8D3415CC for ; Sat, 21 May 2022 13:49:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 44FFD47B for ; Sat, 21 May 2022 13:49:17 +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: <1653140952.9fb40aebf4b8f0f255b7a5d83ee9a8df706d6f21.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyperclip/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyperclip/pyperclip-1.8.2-r1.ebuild X-VCS-Directories: dev-python/pyperclip/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9fb40aebf4b8f0f255b7a5d83ee9a8df706d6f21 X-VCS-Branch: master Date: Sat, 21 May 2022 13:49:17 +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: c6c359e2-cd95-40ca-8cb1-edbd46408f8d X-Archives-Hash: 9b5038753c69a10e3f0ee85da12dbfc2 commit: 9fb40aebf4b8f0f255b7a5d83ee9a8df706d6f21 Author: Michał Górny gentoo org> AuthorDate: Sat May 21 13:34:11 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat May 21 13:49:12 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fb40aeb dev-python/pyperclip: Remove obsolete dep on sys-apps/which All supported Python versions support shutil.which(), so the external `which` executable is no longer required. Signed-off-by: Michał Górny gentoo.org> dev-python/pyperclip/pyperclip-1.8.2-r1.ebuild | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/dev-python/pyperclip/pyperclip-1.8.2-r1.ebuild b/dev-python/pyperclip/pyperclip-1.8.2-r1.ebuild index a24c478f632a..49b170eef84c 100644 --- a/dev-python/pyperclip/pyperclip-1.8.2-r1.ebuild +++ b/dev-python/pyperclip/pyperclip-1.8.2-r1.ebuild @@ -21,18 +21,9 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc64 ~riscv ~s390 ~sparc RDEPEND=" || ( - ( - x11-misc/xsel - sys-apps/which - ) - ( - x11-misc/xclip - sys-apps/which - ) - ( - kde-plasma/plasma-workspace - sys-apps/which - ) + x11-misc/xsel + x11-misc/xclip + kde-plasma/plasma-workspace dev-python/PyQt5[${PYTHON_USEDEP}] dev-python/QtPy[${PYTHON_USEDEP}] )