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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4BB1D138359 for ; Fri, 21 Aug 2020 19:28:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 74674E07F2; Fri, 21 Aug 2020 19:28:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 58DEFE079E for ; Fri, 21 Aug 2020 19:28:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4F08B340BD3 for ; Fri, 21 Aug 2020 19:28:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C4DDE2CC for ; Fri, 21 Aug 2020 19:28:33 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1598038096.c229a8fd39bd84ee859f425ee6b8bfce865d7e0a.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/voluptuous/files/, dev-python/voluptuous/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/voluptuous/files/voluptuous-0.11.5-fix-doctest.patch dev-python/voluptuous/voluptuous-0.11.5.ebuild X-VCS-Directories: dev-python/voluptuous/ dev-python/voluptuous/files/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: c229a8fd39bd84ee859f425ee6b8bfce865d7e0a X-VCS-Branch: master Date: Fri, 21 Aug 2020 19:28:33 +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: e5098a23-af40-4b2f-a51e-d0b09f84ee86 X-Archives-Hash: 3fc6b48af48fdfe178506ce4a94503ad commit: c229a8fd39bd84ee859f425ee6b8bfce865d7e0a Author: David Seifert gentoo org> AuthorDate: Fri Aug 21 19:28:16 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Aug 21 19:28:16 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c229a8fd dev-python/voluptuous: Fix tests Closes: https://bugs.gentoo.org/738452 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: David Seifert gentoo.org> .../voluptuous/files/voluptuous-0.11.5-fix-doctest.patch | 11 +++++++++++ dev-python/voluptuous/voluptuous-0.11.5.ebuild | 8 ++++---- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/dev-python/voluptuous/files/voluptuous-0.11.5-fix-doctest.patch b/dev-python/voluptuous/files/voluptuous-0.11.5-fix-doctest.patch new file mode 100644 index 00000000000..bdc8228ff40 --- /dev/null +++ b/dev-python/voluptuous/files/voluptuous-0.11.5-fix-doctest.patch @@ -0,0 +1,11 @@ +--- a/voluptuous/util.py ++++ b/voluptuous/util.py +@@ -87,7 +87,7 @@ + >>> s = Schema(validators.Any(int, SetTo(42))) + >>> s(2) + 2 +- >>> s("foo") ++ >>> s(42) + 42 + """ + diff --git a/dev-python/voluptuous/voluptuous-0.11.5.ebuild b/dev-python/voluptuous/voluptuous-0.11.5.ebuild index b5a5d32daab..bef18fbef06 100644 --- a/dev-python/voluptuous/voluptuous-0.11.5.ebuild +++ b/dev-python/voluptuous/voluptuous-0.11.5.ebuild @@ -2,6 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 + PYTHON_COMPAT=( python3_{6..9} ) inherit distutils-r1 @@ -14,7 +15,6 @@ LICENSE="BSD" SLOT="0" KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 s390 sparc x86 ~amd64-linux ~x86-linux" -python_test() { - unset PYTHONPATH - nosetests -v || die "Tests failed" -} +PATCHES=( "${FILESDIR}"/${PN}-0.11.5-fix-doctest.patch ) + +distutils_enable_tests nose