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 BA328158020 for ; Mon, 19 Dec 2022 13:55:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 05BFCE0ADE; Mon, 19 Dec 2022 13:55:41 +0000 (UTC) Received: from smtp.gentoo.org (mail.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DC6CAE0ADE for ; Mon, 19 Dec 2022 13:55:40 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E31C0340D92 for ; Mon, 19 Dec 2022 13:55:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7DD734C8 for ; Mon, 19 Dec 2022 13:55:38 +0000 (UTC) From: "Denis Reva" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Denis Reva" Message-ID: <1671458134.7c0e9a37c5cef38cfd6250a28d6c159302d23127.RarogCmex@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pyclip/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/pyclip/pyclip-9999.ebuild X-VCS-Directories: dev-python/pyclip/ X-VCS-Committer: RarogCmex X-VCS-Committer-Name: Denis Reva X-VCS-Revision: 7c0e9a37c5cef38cfd6250a28d6c159302d23127 X-VCS-Branch: dev Date: Mon, 19 Dec 2022 13:55:38 +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: b79d0a90-2fc9-4b8a-97ea-195f2204709c X-Archives-Hash: f2b62001b2151b81b118d81efb2f7e28 commit: 7c0e9a37c5cef38cfd6250a28d6c159302d23127 Author: Denis Reva gmail com> AuthorDate: Mon Dec 19 13:55:34 2022 +0000 Commit: Denis Reva gmail com> CommitDate: Mon Dec 19 13:55:34 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7c0e9a37 dev-python/pyclip: Updated 9999 version Signed-off-by: Denis Reva gmail.com> dev-python/pyclip/pyclip-9999.ebuild | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/dev-python/pyclip/pyclip-9999.ebuild b/dev-python/pyclip/pyclip-9999.ebuild index 8eb8b2e96..bdc064f8e 100644 --- a/dev-python/pyclip/pyclip-9999.ebuild +++ b/dev-python/pyclip/pyclip-9999.ebuild @@ -4,7 +4,8 @@ EAPI=8 PYTHON_COMPAT=( python3_{8..11} ) -DISTUTILS_USE_SETUPTOOLS=bdepend + +DISTUTILS_USE_PEP517="setuptools" inherit distutils-r1 @@ -13,19 +14,21 @@ if [[ ${PV} == 9999 ]]; then EGIT_REPO_URI="https://github.com/spyoungtech/pyclip.git" else SRC_URI="https://github.com/spyoungtech/pyclip/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64" + KEYWORDS="~amd64 ~arm ~arm64 ~x86" fi DESCRIPTION="Python clipboard module" HOMEPAGE="https://pypi.org/project/pyclip/" LICENSE="Apache-2.0" SLOT="0" +IUSE="wayland X" RESTRICT="test" DOCS="${S}/docs/README.md" +REQUIRED_USE="|| ( wayland X )" DEPEND="" RDEPEND=" - gui-apps/wl-clipboard - x11-misc/xclip + wayland? ( gui-apps/wl-clipboard ) + X? ( x11-misc/xclip ) " BDEPEND=""