[bug#78915] import: nuget: Use (ice-9 format).

Message ID 7c7c8db433e5543134df5e3619720801af38dccb.1751048883.git.~@wolfsden.cz
State New
Headers
Series [bug#78915] import: nuget: Use (ice-9 format). |

Commit Message

Tomas Volf June 27, 2025, 6:28 p.m. UTC
* guix/import/nuget.scm (define-module): Use (ice-9 format).

Change-Id: I8db23842a4e4ec0347549bd8ad12beee80904d6b
---
Addresses the following warning during compilation:

guix/import/nuget.scm:250:4: warning: "~%;; Source repository not found in NuGet catalog entry.~%;; ~\\n             Attempting to find it in symbol package: ~a~%": unsupported format option ~
, use (ice-9 format) instead


 guix/import/nuget.scm | 1 +
 1 file changed, 1 insertion(+)
  

Comments

Z572 June 28, 2025, 2:24 a.m. UTC | #1
Tomas Volf <~@wolfsden.cz> writes:

> * guix/import/nuget.scm (define-module): Use (ice-9 format).
adjust to "* guix/import/nuget.scm: Use (ice-9 format) module."

and pushed.

>
> Change-Id: I8db23842a4e4ec0347549bd8ad12beee80904d6b
> ---
> Addresses the following warning during compilation:
>
> guix/import/nuget.scm:250:4: warning: "~%;; Source repository not found in NuGet catalog entry.~%;; ~\\n             Attempting to find it in symbol package: ~a~%": unsupported format option ~
> , use (ice-9 format) instead
>
>
>  guix/import/nuget.scm | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/guix/import/nuget.scm b/guix/import/nuget.scm
> index bee74a2e63..baa61e2025 100644
> --- a/guix/import/nuget.scm
> +++ b/guix/import/nuget.scm
> @@ -24,6 +24,7 @@
>  ;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
>
>  (define-module (guix import nuget)
> +  #:use-module (ice-9 format)
>    #:use-module (ice-9 match)
>    #:use-module (ice-9 regex)
>    #:use-module (ice-9 pretty-print)
  

Patch

diff --git a/guix/import/nuget.scm b/guix/import/nuget.scm
index bee74a2e63..baa61e2025 100644
--- a/guix/import/nuget.scm
+++ b/guix/import/nuget.scm
@@ -24,6 +24,7 @@ 
 ;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

 (define-module (guix import nuget)
+  #:use-module (ice-9 format)
   #:use-module (ice-9 match)
   #:use-module (ice-9 regex)
   #:use-module (ice-9 pretty-print)