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 D86C415A7D9 for ; Fri, 17 Mar 2023 05:32:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3BC2FE0A85; Fri, 17 Mar 2023 05:32:37 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 22C6EE0A85 for ; Fri, 17 Mar 2023 05:32:37 +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 10756340FA8 for ; Fri, 17 Mar 2023 05:32:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 843A9909 for ; Fri, 17 Mar 2023 05:32:32 +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: <1679031118.e437f5c2f140374f3dbf9223de9bdc605a2f6565.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/xpra/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-wm/xpra/xpra-4.3.4.ebuild x11-wm/xpra/xpra-9999.ebuild X-VCS-Directories: x11-wm/xpra/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e437f5c2f140374f3dbf9223de9bdc605a2f6565 X-VCS-Branch: master Date: Fri, 17 Mar 2023 05:32:32 +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: 807a3307-3ffc-4d89-a752-5c3da7177181 X-Archives-Hash: ea74b1f94ecfbbbe71e0b0aa43ec1f0d commit: e437f5c2f140374f3dbf9223de9bdc605a2f6565 Author: Michał Górny gentoo org> AuthorDate: Thu Mar 16 18:57:41 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Mar 17 05:31:58 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e437f5c2 x11-wm/xpra: Use pypi.eclass Signed-off-by: Michał Górny gentoo.org> x11-wm/xpra/xpra-4.3.4.ebuild | 6 ++++-- x11-wm/xpra/xpra-9999.ebuild | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/x11-wm/xpra/xpra-4.3.4.ebuild b/x11-wm/xpra/xpra-4.3.4.ebuild index 54c34c90b098..716df2f2418d 100644 --- a/x11-wm/xpra/xpra-4.3.4.ebuild +++ b/x11-wm/xpra/xpra-4.3.4.ebuild @@ -7,8 +7,10 @@ if [[ ${PV} = 9999* ]]; then EGIT_REPO_URI="https://github.com/Xpra-org/xpra.git" inherit git-r3 else - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz - https://dev.gentoo.org/~chewi/distfiles/${PN}-4.3.1-tests.patch" + inherit pypi + SRC_URI+=" + https://dev.gentoo.org/~chewi/distfiles/${PN}-4.3.1-tests.patch + " KEYWORDS="~amd64 ~x86" fi diff --git a/x11-wm/xpra/xpra-9999.ebuild b/x11-wm/xpra/xpra-9999.ebuild index 2465c20f7b26..05cbf8814ab3 100644 --- a/x11-wm/xpra/xpra-9999.ebuild +++ b/x11-wm/xpra/xpra-9999.ebuild @@ -7,7 +7,7 @@ if [[ ${PV} = 9999* ]]; then EGIT_REPO_URI="https://github.com/Xpra-org/xpra.git" inherit git-r3 else - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + inherit pypi KEYWORDS="~amd64 ~x86" fi