1
2
3
4
5 package modconv
6
7 import (
8 "strings"
9
10 "golang.org/x/mod/modfile"
11 "golang.org/x/mod/module"
12 )
13
14 func ParseVendorConf(file string, data []byte) (*modfile.File, error) {
15 mf := new(modfile.File)
16 for _, line := range strings.Split(string(data), "\n") {
17 if i := strings.Index(line, "#"); i >= 0 {
18 line = line[:i]
19 }
20 f := strings.Fields(line)
21 if len(f) >= 2 {
22 mf.Require = append(mf.Require, &modfile.Require{Mod: module.Version{Path: f[0], Version: f[1]}})
23 }
24 }
25 return mf, nil
26 }
27
View as plain text