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 6F5A8158003 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 36F97E0A04; Mon, 11 Apr 2022 19:59:01 +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 E92A3E0A02 for ; Mon, 11 Apr 2022 19:59:00 +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 0D7BE341A55 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 987A53BC 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: <1649707130.e62b3abda82668cb8884ae974bd4a08f072460b3.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-schema/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/zope-schema/zope-schema-6.2.0-r1.ebuild X-VCS-Directories: dev-python/zope-schema/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e62b3abda82668cb8884ae974bd4a08f072460b3 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: 9dff1dc0-ce9a-4229-a468-258bfba2179c X-Archives-Hash: 6a1a1e5a4237df196febcf3417c203cf commit: e62b3abda82668cb8884ae974bd4a08f072460b3 Author: Michał Górny gentoo org> AuthorDate: Mon Apr 11 18:43:56 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Apr 11 19:58:50 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e62b3abd dev-python/zope-schema: Use distutils_write_namespace Signed-off-by: Michał Górny gentoo.org> dev-python/zope-schema/zope-schema-6.2.0-r1.ebuild | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/dev-python/zope-schema/zope-schema-6.2.0-r1.ebuild b/dev-python/zope-schema/zope-schema-6.2.0-r1.ebuild index b3e6ad9b6e45..3657288c1276 100644 --- a/dev-python/zope-schema/zope-schema-6.2.0-r1.ebuild +++ b/dev-python/zope-schema/zope-schema-6.2.0-r1.ebuild @@ -48,11 +48,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 }