-
Notifications
You must be signed in to change notification settings - Fork 697
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Revive the globstar globbing patch #3178
Labels
Comments
@hvr told me that GHC 8 final will likely be delayed until the end of March, so maybe we'll have time to get this in. |
quasicomputational
added a commit
to quasicomputational/cabal
that referenced
this issue
Apr 25, 2018
These are inspired by a plan described in a comment in haskell#2522, and only implement a quite limited form of recursive matching: only a single ** wildcard is accepted, it must be the final directory, and, if a ** wildcard is present, the file name must include a wildcard. Or-patterns are not implemented, for simplicity. Closes haskell#3178, haskell#2030.
4 tasks
quasicomputational
added a commit
to quasicomputational/cabal
that referenced
this issue
Apr 25, 2018
These are inspired by a plan described in a comment in haskell#2522, and only implement a quite limited form of recursive matching: only a single ** wildcard is accepted, it must be the final directory, and, if a ** wildcard is present, the file name must include a wildcard. Or-patterns are not implemented, for simplicity. Closes haskell#3178, haskell#2030.
quasicomputational
added a commit
to quasicomputational/cabal
that referenced
this issue
Apr 28, 2018
These are inspired by a plan described in a comment in haskell#2522, and only implement a quite limited form of recursive matching: only a single ** wildcard is accepted, it must be the final directory, and, if a ** wildcard is present, the file name must include a wildcard. Or-patterns are not implemented, for simplicity. Closes haskell#3178, haskell#2030.
quasicomputational
added a commit
to quasicomputational/cabal
that referenced
this issue
Apr 29, 2018
These are inspired by a plan described in a comment in haskell#2522, and only implement a quite limited form of recursive matching: only a single ** wildcard is accepted, it must be the final directory, and, if a ** wildcard is present, the file name must include a wildcard. Or-patterns are not implemented, for simplicity. Closes haskell#3178, haskell#2030.
quasicomputational
added a commit
to quasicomputational/cabal
that referenced
this issue
May 6, 2018
These are inspired by a plan described in a comment in haskell#2522, and only implement a quite limited form of recursive matching: only a single ** wildcard is accepted, it must be the final directory, and, if a ** wildcard is present, the file name must include a wildcard. Or-patterns are not implemented, for simplicity. Closes haskell#3178, haskell#2030.
23Skidoo
pushed a commit
that referenced
this issue
May 8, 2018
These are inspired by a plan described in a comment in #2522, and only implement a quite limited form of recursive matching: only a single ** wildcard is accepted, it must be the final directory, and, if a ** wildcard is present, the file name must include a wildcard. Or-patterns are not implemented, for simplicity. Closes #3178, #2030.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
#2522 added support for globstar globbing (
**/*
) toextra-source-files
and related fields; however the patch had some issues and wasn't merged. We should revive and finally merge it for the next Cabal release.The text was updated successfully, but these errors were encountered: