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 7404D1382C5 for ; Sun, 7 Mar 2021 12:53:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5D1FE0829; Sun, 7 Mar 2021 12:53:41 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 8C39DE0829 for ; Sun, 7 Mar 2021 12:53:41 +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 8504B33BE18 for ; Sun, 7 Mar 2021 12:53:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DB66353 for ; Sun, 7 Mar 2021 12:53:38 +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: <1615121615.d80e689979c64b32966f0729490f32d9bd80b6bd.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pandas/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pandas/pandas-1.1.5-r1.ebuild dev-python/pandas/pandas-1.1.5.ebuild dev-python/pandas/pandas-1.2.1-r1.ebuild dev-python/pandas/pandas-1.2.1.ebuild dev-python/pandas/pandas-1.2.2-r1.ebuild dev-python/pandas/pandas-1.2.2.ebuild dev-python/pandas/pandas-1.2.3-r1.ebuild dev-python/pandas/pandas-1.2.3.ebuild X-VCS-Directories: dev-python/pandas/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d80e689979c64b32966f0729490f32d9bd80b6bd X-VCS-Branch: master Date: Sun, 7 Mar 2021 12:53:38 +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: 96accfb2-2505-4491-91f2-673acfb9d6a8 X-Archives-Hash: 9ce70b5eed604b6d71b6e98f5fc776a1 commit: d80e689979c64b32966f0729490f32d9bd80b6bd Author: Michał Górny gentoo org> AuthorDate: Sun Mar 7 12:49:20 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Mar 7 12:53:35 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d80e6899 dev-python/pandas: Force -j1 to avoid miscompilation Closes: https://bugs.gentoo.org/774654 Signed-off-by: Michał Górny gentoo.org> dev-python/pandas/{pandas-1.1.5.ebuild => pandas-1.1.5-r1.ebuild} | 4 ++++ dev-python/pandas/{pandas-1.2.1.ebuild => pandas-1.2.1-r1.ebuild} | 4 ++++ dev-python/pandas/{pandas-1.2.2.ebuild => pandas-1.2.2-r1.ebuild} | 4 ++++ dev-python/pandas/{pandas-1.2.3.ebuild => pandas-1.2.3-r1.ebuild} | 4 ++++ 4 files changed, 16 insertions(+) diff --git a/dev-python/pandas/pandas-1.1.5.ebuild b/dev-python/pandas/pandas-1.1.5-r1.ebuild similarity index 99% rename from dev-python/pandas/pandas-1.1.5.ebuild rename to dev-python/pandas/pandas-1.1.5-r1.ebuild index 89393e785bc..75aeaa4bcee 100644 --- a/dev-python/pandas/pandas-1.1.5.ebuild +++ b/dev-python/pandas/pandas-1.1.5-r1.ebuild @@ -124,6 +124,10 @@ python_prepare_all() { distutils-r1_python_prepare_all } +python_compile() { + distutils-r1_python_compile -j1 +} + python_compile_all() { # To build docs the need be located in $BUILD_DIR, # else PYTHONPATH points to unusable modules. diff --git a/dev-python/pandas/pandas-1.2.1.ebuild b/dev-python/pandas/pandas-1.2.1-r1.ebuild similarity index 99% rename from dev-python/pandas/pandas-1.2.1.ebuild rename to dev-python/pandas/pandas-1.2.1-r1.ebuild index 5a54eac96e6..05a432d3655 100644 --- a/dev-python/pandas/pandas-1.2.1.ebuild +++ b/dev-python/pandas/pandas-1.2.1-r1.ebuild @@ -121,6 +121,10 @@ python_prepare_all() { distutils-r1_python_prepare_all } +python_compile() { + distutils-r1_python_compile -j1 +} + python_compile_all() { # To build docs the need be located in $BUILD_DIR, # else PYTHONPATH points to unusable modules. diff --git a/dev-python/pandas/pandas-1.2.2.ebuild b/dev-python/pandas/pandas-1.2.2-r1.ebuild similarity index 99% rename from dev-python/pandas/pandas-1.2.2.ebuild rename to dev-python/pandas/pandas-1.2.2-r1.ebuild index 2bfbf0f7609..a79b5b1c18c 100644 --- a/dev-python/pandas/pandas-1.2.2.ebuild +++ b/dev-python/pandas/pandas-1.2.2-r1.ebuild @@ -121,6 +121,10 @@ python_prepare_all() { distutils-r1_python_prepare_all } +python_compile() { + distutils-r1_python_compile -j1 +} + python_compile_all() { # To build docs the need be located in $BUILD_DIR, # else PYTHONPATH points to unusable modules. diff --git a/dev-python/pandas/pandas-1.2.3.ebuild b/dev-python/pandas/pandas-1.2.3-r1.ebuild similarity index 99% rename from dev-python/pandas/pandas-1.2.3.ebuild rename to dev-python/pandas/pandas-1.2.3-r1.ebuild index 2bfbf0f7609..a79b5b1c18c 100644 --- a/dev-python/pandas/pandas-1.2.3.ebuild +++ b/dev-python/pandas/pandas-1.2.3-r1.ebuild @@ -121,6 +121,10 @@ python_prepare_all() { distutils-r1_python_prepare_all } +python_compile() { + distutils-r1_python_compile -j1 +} + python_compile_all() { # To build docs the need be located in $BUILD_DIR, # else PYTHONPATH points to unusable modules.