public inbox for gentoo-dev@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-dev@lists.gentoo.org
Subject: Re: [gentoo-dev] [PATCH 26/28] distutils-r1.eclass: Remove old FreeBSD compat hack
Date: Sun, 20 Jun 2021 15:15:08 +0200	[thread overview]
Message-ID: <e159a95c393aef11bc7efa7f54beab7176b16d73.camel@gentoo.org> (raw)
In-Reply-To: <20210620095552.625633-27-mgorny@gentoo.org>

On Sun, 2021-06-20 at 11:55 +0200, Michał Górny wrote:
> Signed-off-by: Michał Górny <mgorny@gentoo.org>
> ---
>  eclass/distutils-r1.eclass | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass
> index e74a68007179..a46b71431e48 100644
> --- a/eclass/distutils-r1.eclass
> +++ b/eclass/distutils-r1.eclass
> @@ -711,8 +711,8 @@ _distutils-r1_create_setup_cfg() {
>  # egg-info.
>  _distutils-r1_copy_egg_info() {
>  	mkdir -p "${BUILD_DIR}" || die
> -	# stupid freebsd can't do 'cp -t ${BUILD_DIR} {} +'
> -	find -name '*.egg-info' -type d -exec cp -R -p {} "${BUILD_DIR}"/ ';' || die
> +	find -name '*.egg-info' -type d \
> +		-exec cp -R -p -t "${BUILD_DIR}"/ {} + || die
>  }
>  
>  # @FUNCTION: distutils-r1_python_compile

Retracting this one for now, as it causes failures due to 'is the same
file' copy errors with in-source builds.  Need to revisit it later
and fix the underlying issue properly.

-- 
Best regards,
Michał Górny




  reply	other threads:[~2021-06-20 13:15 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-20  9:55 [gentoo-dev] [PATCH 00/28] python-r1 suite EAPI 8 support/cleanup Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 01/28] python-utils-r1.eclass: Ban private API in EAPI 8 Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 02/28] python-utils-r1.eclass: Use 'dosym -r' " Michał Górny
2021-06-20 12:48   ` Ulrich Mueller
2021-06-20 13:01     ` Michał Górny
2021-06-20 13:21   ` [gentoo-dev] [PATCH v2] " Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 03/28] python-utils-r1.eclass: Remove python_optimize support for py<3.5 Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 04/28] python-utils-r1.eclass: Rename *into vars to use underscores Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 05/28] python-utils-r1.eclass: Eliminate local python_is_python3 uses Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 06/28] python-utils-r1.eclass: Ban py2 deps in python_gen* in EAPI 8 Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 07/28] python-utils-r1.eclass: Deprecated and EAPI8-ban python_is_python3 Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 08/28] python-utils-r1.eclass: Fix python_fix_shebang for py3.10+ Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 09/28] python-utils-r1.eclass: Enable EAPI 8 Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 10/28] python-any-r1.eclass: Remove obsolete eselect-python use Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 11/28] python-any-r1.eclass: Remove obsolete PYTHON_USEDEP single-r1 hack Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 12/28] python-any-r1.eclass: Enable EAPI 8 Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 13/28] python-single-r1.eclass: Update doc for -2/-3 arg removal Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 14/28] python-single-r1.eclass: Ban PYTHON_MULTI_USEDEP in EAPI 8 Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 15/28] python-single-r1.eclass: Enable " Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 16/28] python-r1.eclass: Update doc for -2/-3 arg removal Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 17/28] multibuild.eclass: Enable EAPI 8 Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 18/28] python-r1.eclass: Remove obsolete QA hack for PYTHON_USEDEP Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 19/28] python-r1.eclass: Ban python_gen_usedep in EAPI 8 Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 20/28] python-r1.eclass: Use 'dosym -r' " Michał Górny
2021-06-20 13:22   ` [gentoo-dev] [PATCH v2] " Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 21/28] python-r1.eclass: Enable " Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 22/28] distutils-r1.eclass: Refactor --install-scripts rewriting logic Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 23/28] distutils-r1.eclass: Replace mydistutilsargs with DISTUTILS_ARGS Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 24/28] distutils-r1.eclass: Require >=pyproject2setuppy-15 Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 25/28] distutils-r1.eclass: Ban dift --via-home in EAPI 8 Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 26/28] distutils-r1.eclass: Remove old FreeBSD compat hack Michał Górny
2021-06-20 13:15   ` Michał Górny [this message]
2021-06-20  9:55 ` [gentoo-dev] [PATCH 27/28] distutils-r1.eclass: Use 'dosym -r' in EAPI 8 Michał Górny
2021-06-20 13:23   ` [gentoo-dev] [PATCH v2] " Michał Górny
2021-06-20  9:55 ` [gentoo-dev] [PATCH 28/28] distutils-r1.eclass: Enable " Michał Górny
2021-06-20 13:24 ` [gentoo-dev] [PATCH v2 28/29] python-utils-r1.eclass: Remove _python_ln_rel Michał Górny

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=e159a95c393aef11bc7efa7f54beab7176b16d73.camel@gentoo.org \
    --to=mgorny@gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox