Re: [gentoo-dev] [PATCH 2/7] eclass/dotnet-pkg-base.eclass: deprecate wring-style names

2024-02-03 Thread Maciej Barć
True, also commit title is misspelled, wring-style -> wrong-style. W dniu 3.02.2024 o 17:53, Ulrich Mueller pisze: On Sat, 03 Feb 2024, Maciej Barć wrote: +# @FUNCTION: dotnet-pkg-base_restore_tools +# @USAGE: [config-file] [args] ... +# @DESCRIPTION: +# DEPRECATED, use

Re: [gentoo-dev] [PATCH 7/7] eclass/dotnet-pkg.eclass: prepare for safely using Nuget

2024-02-03 Thread Maciej Barć
Is there any special reason for using "$(pwd)" instead of . here? In case of error you will get absolute paths: find $(pwd)/idontexist -delete vs find ./idontexist -delete W dniu 3.02.2024 o 17:57, Ulrich Mueller pisze: On Sat, 03 Feb 2024, Maciej Barć wrote: + find "$(pwd)"

Re: [gentoo-dev] [PATCH 7/7] eclass/dotnet-pkg.eclass: prepare for safely using Nuget

2024-02-03 Thread Ulrich Mueller
> On Sat, 03 Feb 2024, Maciej Barć wrote: > + find "$(pwd)" -maxdepth 1 -iname "nuget.config" -delete || Is there any special reason for using "$(pwd)" instead of . here? > + case "${1}" in Quotes not needed. > + if [[ -d "${1}" ]] ; then Quotes not needed.

Re: [gentoo-dev] [PATCH 5/7] eclass/dotnet-pkg.eclass: add dotnet-pkg_force-compat

2024-02-03 Thread Ulrich Mueller
> On Sat, 03 Feb 2024, Maciej Barć wrote: > +dotnet-pkg_force-compat() { > + if [[ -z "${DOTNET_PKG_COMPAT}" ]] ; then Quotes are not needed.

Re: [gentoo-dev] [PATCH 2/7] eclass/dotnet-pkg-base.eclass: deprecate wring-style names

2024-02-03 Thread Ulrich Mueller
> On Sat, 03 Feb 2024, Maciej Barć wrote: > +# @FUNCTION: dotnet-pkg-base_restore_tools > +# @USAGE: [config-file] [args] ... > +# @DESCRIPTION: > +# DEPRECATED, use "dotnet-pkg-base_restore_tools" instead. Should be a hyphen here (...restore-tools), I guess?

Re: [gentoo-dev] [PATCH 1/7] eclass/dotnet-pkg-base.eclass: quotes and style tweaks for edge cases

2024-02-03 Thread Ulrich Mueller
> On Sat, 03 Feb 2024, Maciej Barć wrote: > -if [[ ${CATEGORY}/${PN} != dev-dotnet/dotnet-runtime-nugets ]] ; then > +if [[ "${CATEGORY}/${PN}" != dev-dotnet/dotnet-runtime-nugets ]] ; then These quotes are not necessary. > - if [[ ${CATEGORY}/${PN} != dev-dotnet/csharp-gentoodotnetinfo

[gentoo-dev] [PATCH 7/7] eclass/dotnet-pkg.eclass: prepare for safely using Nuget

2024-02-03 Thread Maciej Barć
Signed-off-by: Maciej Barć --- eclass/dotnet-pkg.eclass | 8 +-- eclass/nuget.eclass | 47 +++- 2 files changed, 52 insertions(+), 3 deletions(-) diff --git a/eclass/dotnet-pkg.eclass b/eclass/dotnet-pkg.eclass index 3647eb399..337864f1f 100644 ---

[gentoo-dev] [PATCH 6/7] eclass/dotnet-pkg-base.eclass: set DOTNET_ROOT

2024-02-03 Thread Maciej Barć
Signed-off-by: Maciej Barć --- eclass/dotnet-pkg-base.eclass | 35 +-- 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/eclass/dotnet-pkg-base.eclass b/eclass/dotnet-pkg-base.eclass index e4b275f81..5f3bde340 100644 ---

[gentoo-dev] [PATCH 5/7] eclass/dotnet-pkg.eclass: add dotnet-pkg_force-compat

2024-02-03 Thread Maciej Barć
Signed-off-by: Maciej Barć --- eclass/dotnet-pkg.eclass | 23 +++ 1 file changed, 23 insertions(+) diff --git a/eclass/dotnet-pkg.eclass b/eclass/dotnet-pkg.eclass index 94f5c5a28..3647eb399 100644 --- a/eclass/dotnet-pkg.eclass +++ b/eclass/dotnet-pkg.eclass @@ -156,6

[gentoo-dev] [PATCH 4/7] eclass/dotnet-pkg*: add dotnet-pkg_remove-bad

2024-02-03 Thread Maciej Barć
Signed-off-by: Maciej Barć --- eclass/dotnet-pkg-base.eclass | 15 + eclass/dotnet-pkg.eclass | 42 +-- 2 files changed, 55 insertions(+), 2 deletions(-) diff --git a/eclass/dotnet-pkg-base.eclass b/eclass/dotnet-pkg-base.eclass index

[gentoo-dev] [PATCH 3/7] eclass/dotnet-pkg-base.eclass: dotnet-pkg-base_test - remove directory magic

2024-02-03 Thread Maciej Barć
Signed-off-by: Maciej Barć --- eclass/dotnet-pkg-base.eclass | 24 1 file changed, 8 insertions(+), 16 deletions(-) diff --git a/eclass/dotnet-pkg-base.eclass b/eclass/dotnet-pkg-base.eclass index b31e8e70f..94cb8c0e0 100644 --- a/eclass/dotnet-pkg-base.eclass +++

[gentoo-dev] [PATCH 2/7] eclass/dotnet-pkg-base.eclass: deprecate wring-style names

2024-02-03 Thread Maciej Barć
Signed-off-by: Maciej Barć --- eclass/dotnet-pkg-base.eclass | 38 --- 1 file changed, 31 insertions(+), 7 deletions(-) diff --git a/eclass/dotnet-pkg-base.eclass b/eclass/dotnet-pkg-base.eclass index e7484a6c5..b31e8e70f 100644 ---

[gentoo-dev] [PATCH 1/7] eclass/dotnet-pkg-base.eclass: quotes and style tweaks for edge cases

2024-02-03 Thread Maciej Barć
Signed-off-by: Maciej Barć --- eclass/dotnet-pkg-base.eclass | 16 +++- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/eclass/dotnet-pkg-base.eclass b/eclass/dotnet-pkg-base.eclass index 1a9d31120..e7484a6c5 100644 --- a/eclass/dotnet-pkg-base.eclass +++

[gentoo-dev] Last rites: dev-python/flask-gravatar

2024-02-03 Thread Michał Górny
# Michał Górny (2024-02-03) # Doesn't work with Flask 3, and is abandoned upstream.  It can be # trivially replaced by a local function.  No revdeps. # Removal on 2024-03-04.  Bug #923701. dev-python/flask-gravatar -- Best regards, Michał Górny signature.asc Description: This is a digitally