public inbox for gentoo-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-dev] [PATCH] python-utils-r1.eclass: Fix python_doheader install location with ROOT
@ 2024-03-02 15:20 James Le Cuirot
  2024-03-02 16:15 ` Michał Górny
  0 siblings, 1 reply; 2+ messages in thread
From: James Le Cuirot @ 2024-03-02 15:20 UTC (permalink / raw)
  To: gentoo-dev; +Cc: James Le Cuirot

python_get_includedir is prefixed with ESYSROOT, not EPREFIX, so we need
to strip off the former, not the latter.

This is currently only used for dev-python/pillow, which I have tested.

Signed-off-by: James Le Cuirot <chewi@gentoo.org>
---
 eclass/python-utils-r1.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass
index 3af3cbdb075e1..caa39813feec7 100644
--- a/eclass/python-utils-r1.eclass
+++ b/eclass/python-utils-r1.eclass
@@ -884,7 +884,7 @@ python_doheader() {
 	[[ ${EPYTHON} ]] || die 'No Python implementation set (EPYTHON is null).'
 
 	local includedir=$(python_get_includedir)
-	local d=${includedir#${EPREFIX}}
+	local d=${includedir#${ESYSROOT}}
 
 	(
 		insopts -m 0644
-- 
2.43.2



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [gentoo-dev] [PATCH] python-utils-r1.eclass: Fix python_doheader install location with ROOT
  2024-03-02 15:20 [gentoo-dev] [PATCH] python-utils-r1.eclass: Fix python_doheader install location with ROOT James Le Cuirot
@ 2024-03-02 16:15 ` Michał Górny
  0 siblings, 0 replies; 2+ messages in thread
From: Michał Górny @ 2024-03-02 16:15 UTC (permalink / raw)
  To: gentoo-dev; +Cc: James Le Cuirot

[-- Attachment #1: Type: text/plain, Size: 1058 bytes --]

On Sat, 2024-03-02 at 15:20 +0000, James Le Cuirot wrote:
> python_get_includedir is prefixed with ESYSROOT, not EPREFIX, so we need
> to strip off the former, not the latter.
> 
> This is currently only used for dev-python/pillow, which I have tested.
> 
> Signed-off-by: James Le Cuirot <chewi@gentoo.org>
> ---
>  eclass/python-utils-r1.eclass | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass
> index 3af3cbdb075e1..caa39813feec7 100644
> --- a/eclass/python-utils-r1.eclass
> +++ b/eclass/python-utils-r1.eclass
> @@ -884,7 +884,7 @@ python_doheader() {
>  	[[ ${EPYTHON} ]] || die 'No Python implementation set (EPYTHON is null).'
>  
>  	local includedir=$(python_get_includedir)
> -	local d=${includedir#${EPREFIX}}
> +	local d=${includedir#${ESYSROOT}}
>  
>  	(
>  		insopts -m 0644

Good catch, thanks!  I'll add it onto
https://github.com/gentoo/gentoo/pull/35554 to avoid double cache regen.

-- 
Best regards,
Michał Górny


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 512 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-03-02 16:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-02 15:20 [gentoo-dev] [PATCH] python-utils-r1.eclass: Fix python_doheader install location with ROOT James Le Cuirot
2024-03-02 16:15 ` Michał Górny

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox