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 11169138350 for ; Fri, 17 Apr 2020 14:10:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 35B48E0918; Fri, 17 Apr 2020 14:10:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 1D09BE0918 for ; Fri, 17 Apr 2020 14:10:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 D77EF34EE69 for ; Fri, 17 Apr 2020 14:10:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 592F31DD for ; Fri, 17 Apr 2020 14:10:10 +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: <1587132601.1b53d722d793c11f16e81bc2c468cbb74d0c8a32.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/numpy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/numpy/numpy-1.16.5-r1.ebuild dev-python/numpy/numpy-1.16.5.ebuild dev-python/numpy/numpy-1.17.4-r2.ebuild dev-python/numpy/numpy-1.17.4-r3.ebuild X-VCS-Directories: dev-python/numpy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1b53d722d793c11f16e81bc2c468cbb74d0c8a32 X-VCS-Branch: master Date: Fri, 17 Apr 2020 14:10:10 +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: e883546b-4913-4b7e-ab93-e7b4249a3bcb X-Archives-Hash: 95313752de780e510c5e16d5c23f64dc commit: 1b53d722d793c11f16e81bc2c468cbb74d0c8a32 Author: Michał Górny gentoo org> AuthorDate: Fri Apr 17 11:50:35 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Apr 17 14:10:01 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b53d722 dev-python/numpy: Fix installing generated files Closes: https://bugs.gentoo.org/717502 Signed-off-by: Michał Górny gentoo.org> dev-python/numpy/{numpy-1.16.5.ebuild => numpy-1.16.5-r1.ebuild} | 2 ++ dev-python/numpy/{numpy-1.17.4-r2.ebuild => numpy-1.17.4-r3.ebuild} | 2 ++ 2 files changed, 4 insertions(+) diff --git a/dev-python/numpy/numpy-1.16.5.ebuild b/dev-python/numpy/numpy-1.16.5-r1.ebuild similarity index 98% rename from dev-python/numpy/numpy-1.16.5.ebuild rename to dev-python/numpy/numpy-1.16.5-r1.ebuild index a0a04127fa0..004a300c5bf 100644 --- a/dev-python/numpy/numpy-1.16.5.ebuild +++ b/dev-python/numpy/numpy-1.16.5-r1.ebuild @@ -142,6 +142,8 @@ sys.exit(0 if r else 1)" || die "Tests fail with ${EPYTHON}" } python_install() { + # https://github.com/numpy/numpy/issues/16005 + local mydistutilsargs=( build_src ) distutils-r1_python_install ${NUMPY_FCONFIG} } diff --git a/dev-python/numpy/numpy-1.17.4-r2.ebuild b/dev-python/numpy/numpy-1.17.4-r3.ebuild similarity index 97% rename from dev-python/numpy/numpy-1.17.4-r2.ebuild rename to dev-python/numpy/numpy-1.17.4-r3.ebuild index 4819a923361..9022b85de16 100644 --- a/dev-python/numpy/numpy-1.17.4-r2.ebuild +++ b/dev-python/numpy/numpy-1.17.4-r3.ebuild @@ -123,6 +123,8 @@ sys.exit(0 if r else 1)" || die "Tests fail with ${EPYTHON}" } python_install() { + # https://github.com/numpy/numpy/issues/16005 + local mydistutilsargs=( build_src ) distutils-r1_python_install ${NUMPY_FCONFIG} python_optimize }