RHEL requires the source code for dependencies to be included in the srpm. The spec file already expects that, but we've only included the vendored modules (i.e., the `vendor` directory) in the `rhel-8.2.` branch. Move vendoring to master, so that we can build RHEL packages from it as well. This commit is the result of running `go mod vendor`, which includes the vendored sources and updates go.mod and go.sum files. Fedora requires the opposite: dependencies should not be vendored. The spec file already ignores the `vendor` directory by default.
45 lines
738 B
Go
45 lines
738 B
Go
package match
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/gobwas/glob/util/strings"
|
|
)
|
|
|
|
type Any struct {
|
|
Separators []rune
|
|
}
|
|
|
|
func NewAny(s []rune) Any {
|
|
return Any{s}
|
|
}
|
|
|
|
func (self Any) Match(s string) bool {
|
|
return strings.IndexAnyRunes(s, self.Separators) == -1
|
|
}
|
|
|
|
func (self Any) Index(s string) (int, []int) {
|
|
found := strings.IndexAnyRunes(s, self.Separators)
|
|
switch found {
|
|
case -1:
|
|
case 0:
|
|
return 0, segments0
|
|
default:
|
|
s = s[:found]
|
|
}
|
|
|
|
segments := acquireSegments(len(s))
|
|
for i := range s {
|
|
segments = append(segments, i)
|
|
}
|
|
segments = append(segments, len(s))
|
|
|
|
return 0, segments
|
|
}
|
|
|
|
func (self Any) Len() int {
|
|
return lenNo
|
|
}
|
|
|
|
func (self Any) String() string {
|
|
return fmt.Sprintf("<any:![%s]>", string(self.Separators))
|
|
}
|