
The existing date version parsing regex only matches file names that have a prefix (e.g., `ltopers-v2017-04-14.tar.gz`), so it doesn't match files like `2023-09-28.tar.gz`. There are a handful of formulae that have to manually specify the version as a result (e.g., `marksman`, `sqtop`, etc.). `bootloadhid` is also affected but that's because the filename uses a dot as the prefix delimiter (e.g., `bootloadHID.2012-12-08.tar.gz`) and the regex only matches a hyphen. This addresses these shortcomings by using `[._-]` as the prefix delimiter and making it optional. Co-authored-by: Markus Reiter <me@reitermark.us>
Library
This directory contains all the code run by the official brew
command in Homebrew
and all formulae (package descriptions) in taps (repositories containing formulae) in Taps
subdirectories.