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 C7DE1158003 for ; Mon, 11 Apr 2022 19:59:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 356E1E0A03; Mon, 11 Apr 2022 19:59:01 +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 E92D5E0A03 for ; Mon, 11 Apr 2022 19:59:00 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0749A341A58 for ; Mon, 11 Apr 2022 19:59:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5C40B3B5 for ; Mon, 11 Apr 2022 19:58:56 +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: <1649707128.45bb9dfded885da22a1c99b0158ca9b105e15903.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-exceptions/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/zope-exceptions/zope-exceptions-4.5.ebuild X-VCS-Directories: dev-python/zope-exceptions/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 45bb9dfded885da22a1c99b0158ca9b105e15903 X-VCS-Branch: master Date: Mon, 11 Apr 2022 19:58:56 +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: 9665cdf8-3c78-4c4e-9cd3-e728187d34fd X-Archives-Hash: 104fb8d80a1068d000c5b5681de6510d commit: 45bb9dfded885da22a1c99b0158ca9b105e15903 Author: Michał Górny gentoo org> AuthorDate: Mon Apr 11 18:43:53 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Apr 11 19:58:48 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45bb9dfd dev-python/zope-exceptions: Use distutils_write_namespace Signed-off-by: Michał Górny gentoo.org> dev-python/zope-exceptions/zope-exceptions-4.5.ebuild | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/dev-python/zope-exceptions/zope-exceptions-4.5.ebuild b/dev-python/zope-exceptions/zope-exceptions-4.5.ebuild index 7e70344cb57e..912c26d00ee7 100644 --- a/dev-python/zope-exceptions/zope-exceptions-4.5.ebuild +++ b/dev-python/zope-exceptions/zope-exceptions-4.5.ebuild @@ -40,11 +40,6 @@ python_compile() { python_test() { cd "${BUILD_DIR}/install$(python_get_sitedir)" || die - # this is needed to keep the tests working while - # dev-python/namespace-zope is still installed - cat > zope/__init__.py <<-EOF || die - __path__ = __import__('pkgutil').extend_path(__path__, __name__) - EOF + distutils_write_namespace zope eunittest - rm zope/__init__.py || die }