GNU bug report logs -
#77930
[PATCH] gnu: Add guile-slugify
Previous Next
Reported by: Ayush Jha <ayushjha <at> protonmail.com>
Date: Sat, 19 Apr 2025 22:45:02 UTC
Severity: normal
Tags: patch
Done: Ludovic Courtès <ludo <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
Message #19 received at 77930-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Hi,
Ayush Jha <ayushjha <at> protonmail.com> writes:
> * gnu/packages/guile-xyz.scm (guile-slugify): New variable.
>
> Change-Id: I4e7ab7a4821f53cf7372388efa07cea2fd3c17ef
> Signed-off-by: Ayush Jha <ayushjha <at> protonmail.com>
[...]
> + (description
> + "This package provides a procedure for converting strings into URL-friendly
> + slugs. A slug is a simplified version of a string, often used in URLs, that
> + contains only lowercase letters, digits, and hyphens. This package is inspired
> + by the 'slugify' function in the Django web framework. It is useful for
> + generating human-readable identifiers from arbitrary text.")
^
I removed the extra column of whitespace and address minor issues
reported by ‘guix lint’:
[Message part 2 (text/x-patch, inline)]
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index d6051f38ec..e213f17502 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -5507,7 +5507,7 @@ (define-public guile-slugify
(origin
(method git-fetch)
(uri (git-reference
- (url "https://github.com/ayys/guile-slugify.git")
+ (url "https://github.com/ayys/guile-slugify")
(commit version)))
(file-name (git-file-name name version))
(sha256
@@ -5516,14 +5516,14 @@ (define-public guile-slugify
'("guix.scm" "test.scm")))))
(build-system guile-build-system)
(native-inputs (list guile-3.0))
- (home-page "http://github.com/ayys/slugify.scm")
+ (home-page "https://github.com/ayys/guile-slugify")
(synopsis "Convert arbitrary string to URL-friendly identifier in Guile")
(description
- "This package provides a procedure for converting strings into URL-friendly
-slugs. A slug is a simplified version of a string, often used in URLs, that
-contains only lowercase letters, digits, and hyphens. This package is inspired
-by the 'slugify' function in the Django web framework. It is useful for
-generating human-readable identifiers from arbitrary text.")
+ "This package provides a procedure for converting strings into
+URL-friendly slugs. A slug is a simplified version of a string, often used in
+URLs, that contains only lowercase letters, digits, and hyphens. This package
+is inspired by the @code{slugify} function in the Django web framework. It is
+useful for generating human-readable identifiers from arbitrary text.")
(license license:gpl3+)))
(define-public guile-webutils
[Message part 3 (text/plain, inline)]
Applied, thanks!
Ludo’.
This bug report was last modified 18 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.