public inbox for gentoo-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-dev] [PATCH] metadata/install-qa-check.d: make the FHS paths warning easier to read
@ 2024-03-29  3:54 Eli Schwartz
  2024-03-29  4:54 ` Haelwenn (lanodan) Monnier
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Eli Schwartz @ 2024-03-29  3:54 UTC (permalink / raw)
  To: gentoo-dev

 * QA Notice: The ebuild is installing to one or more unexpected paths:
 *
 *   /var/tmp/portage/sys-cluster/legion-9999/image/usr/bin/legion_prof_files
 *   /var/tmp/portage/sys-cluster/legion-9999/image/usr/bin/serializer_examples
 *
 * Please fix the ebuild to use correct FHS/Gentoo policy paths.

This message is hard to understand. Is it saying that the resulting
package contains files prefixed with ${D} which would be immensely
broken? Is it saying that these paths are *directories* and the FHS does
not approve of directories in /usr/bin/*/?

In fact, it's the latter. Fix this in two ways:

- clarify that it's an unexpected directory, not just some kind of path

- strip ${D} so that people can better visualize what sort of path gets
  installed. This has the downside of not being able to copy/paste the
  path in order to inspect the image directory, but I think this is a
  very small downside. Usually by the time you see this message, portage
  has cleaned up. And if it hasn't, you can still copy/paste that from:

  Completed installing sys-cluster/legion-9999 into /var/tmp/portage/sys-cluster/legion-9999/image

Signed-off-by: Eli Schwartz <eschwartz93@gmail.com>
---
 metadata/install-qa-check.d/08gentoo-paths | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/metadata/install-qa-check.d/08gentoo-paths b/metadata/install-qa-check.d/08gentoo-paths
index 5b8607fd5f96..0b92a7a1c132 100644
--- a/metadata/install-qa-check.d/08gentoo-paths
+++ b/metadata/install-qa-check.d/08gentoo-paths
@@ -70,9 +70,9 @@ gentoo_path_check() {
 	# report
 	# ------
 	if [[ -n ${bad_paths[@]} ]]; then
-		eqawarn "QA Notice: The ebuild is installing to one or more unexpected paths:"
+		eqawarn "QA Notice: The ebuild is installing to one or more unexpected directories:"
 		eqawarn
-		eqatag -v non-gentoo-paths "${bad_paths[@]}"
+		eqatag -v non-gentoo-paths "${bad_paths[@]#${D%/}}"
 		eqawarn
 		eqawarn "Please fix the ebuild to use correct FHS/Gentoo policy paths."
 	fi
-- 
2.43.2



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

* Re: [gentoo-dev] [PATCH] metadata/install-qa-check.d: make the FHS paths warning easier to read
  2024-03-29  3:54 [gentoo-dev] [PATCH] metadata/install-qa-check.d: make the FHS paths warning easier to read Eli Schwartz
@ 2024-03-29  4:54 ` Haelwenn (lanodan) Monnier
  2024-03-29 18:49   ` Eli Schwartz
  2024-03-29 14:17 ` Michał Górny
  2024-03-29 18:46 ` Sam James
  2 siblings, 1 reply; 5+ messages in thread
From: Haelwenn (lanodan) Monnier @ 2024-03-29  4:54 UTC (permalink / raw)
  To: gentoo-dev

[2024-03-28 23:54:35-0400] Eli Schwartz:
> * QA Notice: The ebuild is installing to one or more unexpected paths:
> *
> *   /var/tmp/portage/sys-cluster/legion-9999/image/usr/bin/legion_prof_files
> *   /var/tmp/portage/sys-cluster/legion-9999/image/usr/bin/serializer_examples
> *
> * Please fix the ebuild to use correct FHS/Gentoo policy paths.
>
>This message is hard to understand. Is it saying that the resulting
>package contains files prefixed with ${D} which would be immensely
>broken? Is it saying that these paths are *directories* and the FHS does
>not approve of directories in /usr/bin/*/?
>
>In fact, it's the latter. Fix this in two ways:
>
>- clarify that it's an unexpected directory, not just some kind of path

I guess it would also make sense to have a trailing slash as extra
indication of it being a directory like `ls -F` does.

>- strip ${D} so that people can better visualize what sort of path gets
>  installed. This has the downside of not being able to copy/paste the
>  path in order to inspect the image directory, but I think this is a
>  very small downside. Usually by the time you see this message, portage
>  has cleaned up. And if it hasn't, you can still copy/paste that from:
>
>  Completed installing sys-cluster/legion-9999 into /var/tmp/portage/sys-cluster/legion-9999/image

Could maybe be confusable with installers not supporting DESTDIR though
(although the sandbox messages look *very* different).


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

* Re: [gentoo-dev] [PATCH] metadata/install-qa-check.d: make the FHS paths warning easier to read
  2024-03-29  3:54 [gentoo-dev] [PATCH] metadata/install-qa-check.d: make the FHS paths warning easier to read Eli Schwartz
  2024-03-29  4:54 ` Haelwenn (lanodan) Monnier
@ 2024-03-29 14:17 ` Michał Górny
  2024-03-29 18:46 ` Sam James
  2 siblings, 0 replies; 5+ messages in thread
From: Michał Górny @ 2024-03-29 14:17 UTC (permalink / raw)
  To: gentoo-dev

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

On Thu, 2024-03-28 at 23:54 -0400, Eli Schwartz wrote:
>  * QA Notice: The ebuild is installing to one or more unexpected paths:
>  *
>  *   /var/tmp/portage/sys-cluster/legion-9999/image/usr/bin/legion_prof_files
>  *   /var/tmp/portage/sys-cluster/legion-9999/image/usr/bin/serializer_examples
>  *
>  * Please fix the ebuild to use correct FHS/Gentoo policy paths.
> 
> This message is hard to understand. Is it saying that the resulting
> package contains files prefixed with ${D} which would be immensely
> broken? Is it saying that these paths are *directories* and the FHS does
> not approve of directories in /usr/bin/*/?
> 
> In fact, it's the latter. Fix this in two ways:
> 
> - clarify that it's an unexpected directory, not just some kind of path
> 
> - strip ${D} so that people can better visualize what sort of path gets
>   installed. This has the downside of not being able to copy/paste the
>   path in order to inspect the image directory, but I think this is a
>   very small downside. Usually by the time you see this message, portage
>   has cleaned up. And if it hasn't, you can still copy/paste that from:
> 
>   Completed installing sys-cluster/legion-9999 into /var/tmp/portage/sys-cluster/legion-9999/image
> 
> Signed-off-by: Eli Schwartz <eschwartz93@gmail.com>
> ---
>  metadata/install-qa-check.d/08gentoo-paths | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/metadata/install-qa-check.d/08gentoo-paths b/metadata/install-qa-check.d/08gentoo-paths
> index 5b8607fd5f96..0b92a7a1c132 100644
> --- a/metadata/install-qa-check.d/08gentoo-paths
> +++ b/metadata/install-qa-check.d/08gentoo-paths
> @@ -70,9 +70,9 @@ gentoo_path_check() {
>  	# report
>  	# ------
>  	if [[ -n ${bad_paths[@]} ]]; then
> -		eqawarn "QA Notice: The ebuild is installing to one or more unexpected paths:"
> +		eqawarn "QA Notice: The ebuild is installing to one or more unexpected directories:"
>  		eqawarn
> -		eqatag -v non-gentoo-paths "${bad_paths[@]}"
> +		eqatag -v non-gentoo-paths "${bad_paths[@]#${D%/}}"
>  		eqawarn
>  		eqawarn "Please fix the ebuild to use correct FHS/Gentoo policy paths."
>  	fi

LGTM.  Thanks!

-- 
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] 5+ messages in thread

* Re: [gentoo-dev] [PATCH] metadata/install-qa-check.d: make the FHS paths warning easier to read
  2024-03-29  3:54 [gentoo-dev] [PATCH] metadata/install-qa-check.d: make the FHS paths warning easier to read Eli Schwartz
  2024-03-29  4:54 ` Haelwenn (lanodan) Monnier
  2024-03-29 14:17 ` Michał Górny
@ 2024-03-29 18:46 ` Sam James
  2 siblings, 0 replies; 5+ messages in thread
From: Sam James @ 2024-03-29 18:46 UTC (permalink / raw)
  To: Eli Schwartz; +Cc: gentoo-dev

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

Eli Schwartz <eschwartz93@gmail.com> writes:

>  * QA Notice: The ebuild is installing to one or more unexpected paths:
>  *
>  *   /var/tmp/portage/sys-cluster/legion-9999/image/usr/bin/legion_prof_files
>  *   /var/tmp/portage/sys-cluster/legion-9999/image/usr/bin/serializer_examples
>  *
>  * Please fix the ebuild to use correct FHS/Gentoo policy paths.
>
> This message is hard to understand. Is it saying that the resulting
> package contains files prefixed with ${D} which would be immensely
> broken? Is it saying that these paths are *directories* and the FHS does
> not approve of directories in /usr/bin/*/?
>
> In fact, it's the latter. Fix this in two ways:
>
> - clarify that it's an unexpected directory, not just some kind of path
>
> - strip ${D} so that people can better visualize what sort of path gets
>   installed. This has the downside of not being able to copy/paste the
>   path in order to inspect the image directory, but I think this is a
>   very small downside. Usually by the time you see this message, portage
>   has cleaned up. And if it hasn't, you can still copy/paste that from:
>
>   Completed installing sys-cluster/legion-9999 into /var/tmp/portage/sys-cluster/legion-9999/image
>
> Signed-off-by: Eli Schwartz <eschwartz93@gmail.com>
> ---

LGTM. Thanks.

>  metadata/install-qa-check.d/08gentoo-paths | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/metadata/install-qa-check.d/08gentoo-paths b/metadata/install-qa-check.d/08gentoo-paths
> index 5b8607fd5f96..0b92a7a1c132 100644
> --- a/metadata/install-qa-check.d/08gentoo-paths
> +++ b/metadata/install-qa-check.d/08gentoo-paths
> @@ -70,9 +70,9 @@ gentoo_path_check() {
>  	# report
>  	# ------
>  	if [[ -n ${bad_paths[@]} ]]; then
> -		eqawarn "QA Notice: The ebuild is installing to one or more unexpected paths:"
> +		eqawarn "QA Notice: The ebuild is installing to one or more unexpected directories:"
>  		eqawarn
> -		eqatag -v non-gentoo-paths "${bad_paths[@]}"
> +		eqatag -v non-gentoo-paths "${bad_paths[@]#${D%/}}"
>  		eqawarn
>  		eqawarn "Please fix the ebuild to use correct FHS/Gentoo policy paths."
>  	fi

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 377 bytes --]

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

* Re: [gentoo-dev] [PATCH] metadata/install-qa-check.d: make the FHS paths warning easier to read
  2024-03-29  4:54 ` Haelwenn (lanodan) Monnier
@ 2024-03-29 18:49   ` Eli Schwartz
  0 siblings, 0 replies; 5+ messages in thread
From: Eli Schwartz @ 2024-03-29 18:49 UTC (permalink / raw)
  To: gentoo-dev


[-- Attachment #1.1.1: Type: text/plain, Size: 925 bytes --]

On 3/29/24 12:54 AM, Haelwenn (lanodan) Monnier wrote:
>> - strip ${D} so that people can better visualize what sort of path gets
>>  installed. This has the downside of not being able to copy/paste the
>>  path in order to inspect the image directory, but I think this is a
>>  very small downside. Usually by the time you see this message, portage
>>  has cleaned up. And if it hasn't, you can still copy/paste that from:
>>
>>  Completed installing sys-cluster/legion-9999 into
>> /var/tmp/portage/sys-cluster/legion-9999/image
> 
> Could maybe be confusable with installers not supporting DESTDIR though
> (although the sandbox messages look *very* different).


I'm not worried about confusing it with lack of DESTDIR support, since
lack of DESTDIR support would equal a failed src_install rather than a
FHS warning.

It's really nothing to do with the sandbox specifically.

-- 
Eli Schwartz

[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 18399 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

end of thread, other threads:[~2024-03-29 18:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-29  3:54 [gentoo-dev] [PATCH] metadata/install-qa-check.d: make the FHS paths warning easier to read Eli Schwartz
2024-03-29  4:54 ` Haelwenn (lanodan) Monnier
2024-03-29 18:49   ` Eli Schwartz
2024-03-29 14:17 ` Michał Górny
2024-03-29 18:46 ` Sam James

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