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 EF84F15800F for ; Tue, 31 Jan 2023 03:24:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2E161E0BAF; Tue, 31 Jan 2023 03:24:16 +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 1789FE0BAF for ; Tue, 31 Jan 2023 03:24:15 +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 0287C335D00 for ; Tue, 31 Jan 2023 03:24:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D120771 for ; Tue, 31 Jan 2023 03:24:12 +0000 (UTC) From: "Julien Roy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julien Roy" Message-ID: <1675135411.96244a57a36a07a990692db7b142d7b2c5315cf0.julien@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/glicko2/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/glicko2/glicko2-2.0.0-r1.ebuild dev-python/glicko2/glicko2-2.0.0-r2.ebuild X-VCS-Directories: dev-python/glicko2/ X-VCS-Committer: julien X-VCS-Committer-Name: Julien Roy X-VCS-Revision: 96244a57a36a07a990692db7b142d7b2c5315cf0 X-VCS-Branch: dev Date: Tue, 31 Jan 2023 03:24:12 +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: 479ed143-6da7-427c-ba43-c395006d40a4 X-Archives-Hash: d6571061cbd951ffaf63e2b2d89ca1fe commit: 96244a57a36a07a990692db7b142d7b2c5315cf0 Author: Julien Roy jroy ca> AuthorDate: Tue Jan 31 03:23:31 2023 +0000 Commit: Julien Roy jroy ca> CommitDate: Tue Jan 31 03:23:31 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=96244a57 dev-python/glicko2: exclude tests package Closes: https://bugs.gentoo.org/892597 Signed-off-by: Julien Roy jroy.ca> .../glicko2/{glicko2-2.0.0-r1.ebuild => glicko2-2.0.0-r2.ebuild} | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-python/glicko2/glicko2-2.0.0-r1.ebuild b/dev-python/glicko2/glicko2-2.0.0-r2.ebuild similarity index 76% rename from dev-python/glicko2/glicko2-2.0.0-r1.ebuild rename to dev-python/glicko2/glicko2-2.0.0-r2.ebuild index c6a18e6cb..ce52f4be0 100644 --- a/dev-python/glicko2/glicko2-2.0.0-r1.ebuild +++ b/dev-python/glicko2/glicko2-2.0.0-r2.ebuild @@ -17,3 +17,9 @@ SLOT="0" KEYWORDS="~amd64" distutils_enable_tests unittest + +src_prepare() { + sed -e "s/find_packages()/find_packages(exclude=['tests'])/" \ + -i setup.py || die + distutils-r1_src_prepare +}