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.
33 lines
478 B
Go
33 lines
478 B
Go
package match
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
type Super struct{}
|
|
|
|
func NewSuper() Super {
|
|
return Super{}
|
|
}
|
|
|
|
func (self Super) Match(s string) bool {
|
|
return true
|
|
}
|
|
|
|
func (self Super) Len() int {
|
|
return lenNo
|
|
}
|
|
|
|
func (self Super) Index(s string) (int, []int) {
|
|
segments := acquireSegments(len(s) + 1)
|
|
for i := range s {
|
|
segments = append(segments, i)
|
|
}
|
|
segments = append(segments, len(s))
|
|
|
|
return 0, segments
|
|
}
|
|
|
|
func (self Super) String() string {
|
|
return fmt.Sprintf("<super>")
|
|
}
|