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 891F8158090 for ; Thu, 19 May 2022 15:23:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9BC6FE0855; Thu, 19 May 2022 15:23:46 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 7E21DE07A9 for ; Thu, 19 May 2022 15:23:46 +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 4FFE5341733 for ; Thu, 19 May 2022 15:23:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9D4DD3B5 for ; Thu, 19 May 2022 15:23:43 +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: <1652973807.1c6ac4f7c1e74adf8a49340840b78fa7e7ce955c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/smartypants/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/smartypants/smartypants-2.0.1-r1.ebuild X-VCS-Directories: dev-python/smartypants/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1c6ac4f7c1e74adf8a49340840b78fa7e7ce955c X-VCS-Branch: master Date: Thu, 19 May 2022 15:23:43 +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: 01262c97-b746-41d2-83bc-528fc8eeea68 X-Archives-Hash: 880e4a12940432bf2e68a3feb9afcdd0 commit: 1c6ac4f7c1e74adf8a49340840b78fa7e7ce955c Author: Michał Górny gentoo org> AuthorDate: Thu May 19 14:11:57 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu May 19 15:23:27 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c6ac4f7 dev-python/smartypants: Remove irrelevant test Closes: https://bugs.gentoo.org/846455 Signed-off-by: Michał Górny gentoo.org> dev-python/smartypants/smartypants-2.0.1-r1.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-python/smartypants/smartypants-2.0.1-r1.ebuild b/dev-python/smartypants/smartypants-2.0.1-r1.ebuild index 826aa0e09c49..773d6e56c5d0 100644 --- a/dev-python/smartypants/smartypants-2.0.1-r1.ebuild +++ b/dev-python/smartypants/smartypants-2.0.1-r1.ebuild @@ -27,6 +27,12 @@ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv sparc x86" distutils_enable_sphinx docs distutils_enable_tests unittest +src_prepare() { + # relevant only to upstream packaging, requires docutils + rm tests/test_setup.py || die + distutils-r1_src_prepare +} + python_test() { eunittest -s tests }