[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#31428: [PATCH] gnu: Add python-glob2.
From: |
Ludovic Courtès |
Subject: |
bug#31428: [PATCH] gnu: Add python-glob2. |
Date: |
Sun, 20 May 2018 23:19:04 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux) |
Fis Trivial <address@hidden> skribis:
> * gnu/packages/python.scm (python-glob2, python2-glob2): New variables.
Applied with the changes below, thanks!
Ludo'.
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 8e8a0d788..31310ce75 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -13320,18 +13320,20 @@ manager compatible with @code{asyncio}.")
(build-system python-build-system)
(home-page "https://github.com/miracle2k/python-glob2/")
(synopsis "Extended Version of the python buildin glob module")
- (description "This is an extended version of Python's builtin glob module
address@hidden://docs.python.org/library/glob.html} which adds:
+ (description "This is an extended version of the Python
address@hidden://docs.python.org/library/glob.html, built-in glob module} which
+adds:
@itemize
@item The ability to capture the text matched by glob patterns, and return
-those matches alongside the filenames.
address@hidden A recursive @code{**} globbing syntax, akin for example to the
globstar
-option of the bash shell.
address@hidden The ability to replace the filesystem functions used, in order
to glob
-on virtual filesystems.
+those matches alongside the file names.
address@hidden A recursive @code{**} globbing syntax, akin for example to the
address@hidden option of Bash.
address@hidden The ability to replace the file system functions used, in order
to glob
+on virtual file systems.
@item Compatible with Python 2 and Python 3 (tested with 3.3).
@end itemize
+
Glob2 currently based on the glob code from Python 3.3.1.")
(license license:bsd-2)))