2024-10-10 15:24:43 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-wcmatch: updated to 10.0
10.0
NEW: Added GLOBSTARLONG which adds support for the Zsh style *** which acts like \
** with GLOBSTAR but
but traverses symlinks.
NEW: pathlib.match will respect symlink rules (when the REALPATH flag is given). \
Hidden file rules will
be respected at all times. Enable DOTALL to match hidden files.
NEW: Symlinks should not be traversed when GLOBSTAR is enabled unless FOLLOW is \
also enabled, but they
should still be matched. Prior to this change, symlinks were not traversed and \
they were ignored from matching
which contradicts how Bash works and could be confusing to users.
FIX: Fix some inconsistencies with globmatch and symlink handling when REALPATH \
is enabled.
|
2024-08-20 10:38:46 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-wcmatch: updated to 9.0
9.0
- **NEW**: Remove deprecated function `glob.raw_escape`.
- **NEW**: Officially support Python 3.13.
|
2024-05-15 17:09:13 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-wcmatch: updated to 8.5.2
8.5.2
- **FIX**: Fix `pathlib` issue with inheritance on Python versions greater than 3.12.
- **FIX**: Fix `EXTMATCH` case with `!(...)` patterns.
|
2024-02-21 09:55:39 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-wcmatch: updated to 8.5.1
8.5.1
FIX: Fix issue with type check failure in wcmatch.glob.
|
2023-10-28 21:57:26 by Thomas Klausner | Files touched by this commit (516) | |
Log message:
python/wheel.mk: simplify a lot, and switch to 'installer' for installation
This follows the recommended bootstrap method (flit_core, build, installer).
However, installer installs different files than pip, so update PLISTs
for all packages using wheel.mk and bump their PKGREVISIONs.
|
2023-09-02 09:22:19 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-wcmatch: updated to 8.5
8.5
- **NEW**: Formally support Python 3.11 (no change).
- **NEW**: Add support for Python 3.12 (`pathlib` changes).
- **NEW**: Drop Python 3.7 support.
- **FIX**: Fix handling of current directory when magic and non-magic patterns \
are mixed in `glob` pattern list.
|
2023-06-06 14:42:56 by Taylor R Campbell | Files touched by this commit (1319) |
Log message:
Mass-change BUILD_DEPENDS to TOOL_DEPENDS outside mk/.
Almost all uses, if not all of them, are wrong, according to the
semantics of BUILD_DEPENDS (packages built for target available for
use _by_ tools at build-time) and TOOL_DEPEPNDS (packages built for
host available for use _as_ tools at build-time).
No change to BUILD_DEPENDS as used correctly inside buildlink3.
As proposed on tech-pkg:
https://mail-index.netbsd.org/tech-pkg/2023/06/03/msg027632.html
|
2022-09-27 10:21:08 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-wcmatch: updated to 8.4.1
8.4.1
FIX: Windows drive path separators should normalize like other path separators.
FIX: Fix a Windows pattern parsing issue that caused absolute paths with \
ambiguous drives to not parse correctly.
|
2022-09-04 21:01:29 by Thomas Klausner | Files touched by this commit (2) |
Log message:
py-wcmatch: fix PLIST
Bump PKGREVISION.
|
2022-06-01 12:58:39 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-wcmatch: updated to 8.4
8.4
NEW: Drop support for Python 3.6.
NEW: Switch to Hatch backend instead of Setuptools.
NEW: Add new exclude option to fnmatch, pathlib, and glob methods that allows \
exclusion patterns to be
specified directly without needing to enable NEGATE and prepend patterns with !. \
exclude accepts a separate
pattern or pattern list. exclude should not be used in conjunction with NEGATE. \
One or the other should be used.
|