diff options
author | svidyuk <svidyuk@yandex-team.com> | 2024-09-23 07:16:18 +0300 |
---|---|---|
committer | svidyuk <svidyuk@yandex-team.com> | 2024-09-23 07:27:47 +0300 |
commit | 9cf8a3ea4ab13b4e11051cd356d00c0a884fb67f (patch) | |
tree | 58451e790c51f079998fbb633d1c6c870170604c | |
parent | 8b01012373cab3fabbefb730475005b4b7a81d9d (diff) | |
download | ydb-9cf8a3ea4ab13b4e11051cd356d00c0a884fb67f.tar.gz |
Extract Go lib version from yo
commit_hash:5bdd87be839b02f013261505a6f5f2fb7fcfc1d4
-rw-r--r-- | build/conf/go.conf | 1 | ||||
-rw-r--r-- | vendor/github.com/spf13/cobra/.yo.snapshot.json | 75 | ||||
-rw-r--r-- | vendor/github.com/spf13/pflag/.yo.snapshot.json | 44 |
3 files changed, 120 insertions, 0 deletions
diff --git a/build/conf/go.conf b/build/conf/go.conf index a0cccbdfd7..de2f207cb0 100644 --- a/build/conf/go.conf +++ b/build/conf/go.conf @@ -817,6 +817,7 @@ module GO_LIBRARY: _GO_BASE_UNIT { SET(MODULE_TYPE LIBRARY) SET(PEERDIR_TAGS GO GO_PROTO GO_FBS __EMPTY__ RESOURCE_LIB PACKAGE_UNION) + _MAKEFILE_INCLUDE_LIKE_DEPS+=.yo.snapshot.json MODULE_SUFFIX=.a } diff --git a/vendor/github.com/spf13/cobra/.yo.snapshot.json b/vendor/github.com/spf13/cobra/.yo.snapshot.json new file mode 100644 index 0000000000..595b4ffca5 --- /dev/null +++ b/vendor/github.com/spf13/cobra/.yo.snapshot.json @@ -0,0 +1,75 @@ +{ + "Version": "v1.8.1", + "GoVersion": "1.15", + "Sum": "h1:e5/vxKd/rZsfSJMUX1agtjeTDf+qv1/JdBF8gg5k9ZM=", + "Packages": { + "github.com/spf13/cobra": { + "Imports": [ + "bytes", + "context", + "errors", + "fmt", + "github.com/inconshreveable/mousetrap", + "github.com/spf13/pflag", + "io", + "os", + "path/filepath", + "reflect", + "regexp", + "sort", + "strconv", + "strings", + "sync", + "text/template", + "time", + "unicode" + ], + "TestImports": [ + "bytes", + "context", + "errors", + "fmt", + "github.com/spf13/pflag", + "io", + "os", + "os/exec", + "path/filepath", + "reflect", + "regexp", + "strings", + "sync", + "testing", + "text/template" + ] + }, + "github.com/spf13/cobra/doc": { + "Imports": [ + "bytes", + "fmt", + "github.com/cpuguy83/go-md2man/v2/md2man", + "github.com/spf13/cobra", + "github.com/spf13/pflag", + "gopkg.in/yaml.v3", + "io", + "os", + "path/filepath", + "sort", + "strconv", + "strings", + "time" + ], + "TestImports": [ + "bufio", + "bytes", + "fmt", + "github.com/spf13/cobra", + "github.com/spf13/cobra/doc", + "io/ioutil", + "os", + "path/filepath", + "strings", + "testing" + ] + } + } +}
\ No newline at end of file diff --git a/vendor/github.com/spf13/pflag/.yo.snapshot.json b/vendor/github.com/spf13/pflag/.yo.snapshot.json new file mode 100644 index 0000000000..40b89fd397 --- /dev/null +++ b/vendor/github.com/spf13/pflag/.yo.snapshot.json @@ -0,0 +1,44 @@ +{ + "Version": "v1.0.6-0.20201009195203-85dd5c8bc61c", + "GoVersion": "1.12", + "Sum": "h1:zqmyTlQyufRC65JnImJ6H1Sf7BDj8bG31EV919NVEQc=", + "Packages": { + "github.com/spf13/pflag": { + "Imports": [ + "bytes", + "encoding/base64", + "encoding/csv", + "encoding/hex", + "errors", + "flag", + "fmt", + "io", + "net", + "os", + "reflect", + "sort", + "strconv", + "strings", + "time" + ], + "TestImports": [ + "bytes", + "encoding/base64", + "encoding/csv", + "flag", + "fmt", + "github.com/spf13/pflag", + "io", + "io/ioutil", + "net", + "os", + "reflect", + "sort", + "strconv", + "strings", + "testing", + "time" + ] + } + } +}
\ No newline at end of file |