Black Lives Matter. Support the Equal Justice Initiative.

Text file src/cmd/go/testdata/script/mod_convert.txt

Documentation: cmd/go/testdata/script

     1  [short] skip
     2  [!net] skip
     3  [!exec:git] skip
     4  
     5  env GO111MODULE=on
     6  env GOPROXY=
     7  env GOSUMDB=
     8  
     9  go mod download github.com/docker/distribution@v0.0.0-20150410205453-85de3967aa93
    10  mkdir x/Godeps
    11  cp $GOPATH/pkg/mod/github.com/docker/distribution@v0.0.0-20150410205453-85de3967aa93/Godeps/Godeps.json x/Godeps
    12  cd x
    13  go mod init github.com/docker/distribution
    14  cmpenv go.mod go.mod.want
    15  
    16  go mod download github.com/fishy/gcsbucket@v0.0.0-20180217031846-618d60fe84e0
    17  cp $GOPATH/pkg/mod/github.com/fishy/gcsbucket@v0.0.0-20180217031846-618d60fe84e0/Gopkg.lock ../y
    18  cd ../y
    19  go mod init github.com/fishy/gcsbucket
    20  cmpenv go.mod go.mod.want
    21  
    22  -- x/go.mod.want --
    23  module github.com/docker/distribution
    24  
    25  go $goversion
    26  
    27  require (
    28  	github.com/AdRoll/goamz v0.0.0-20150130162828-d3664b76d905
    29  	github.com/MSOpenTech/azure-sdk-for-go v0.0.0-20150323223030-d90753bcad2e
    30  	github.com/Sirupsen/logrus v0.7.3
    31  	github.com/bugsnag/bugsnag-go v1.0.3-0.20141110184014-b1d153021fcd
    32  	github.com/bugsnag/osext v0.0.0-20130617224835-0dd3f918b21b
    33  	github.com/bugsnag/panicwrap v0.0.0-20141110184334-e5f9854865b9
    34  	github.com/codegangsta/cli v1.4.2-0.20150131031259-6086d7927ec3
    35  	github.com/docker/docker v1.4.2-0.20150204013315-165ea5c158cf
    36  	github.com/docker/libtrust v0.0.0-20150114040149-fa567046d9b1
    37  	github.com/garyburd/redigo v0.0.0-20150301180006-535138d7bcd7
    38  	github.com/gorilla/context v0.0.0-20140604161150-14f550f51af5
    39  	github.com/gorilla/handlers v0.0.0-20140825150757-0e84b7d810c1
    40  	github.com/gorilla/mux v0.0.0-20140926153814-e444e69cbd2e
    41  	github.com/jlhawn/go-crypto v0.0.0-20150401213827-cd738dde20f0
    42  	github.com/yvasiyarov/go-metrics v0.0.0-20140926110328-57bccd1ccd43
    43  	github.com/yvasiyarov/gorelic v0.0.7-0.20141212073537-a9bba5b9ab50
    44  	github.com/yvasiyarov/newrelic_platform_go v0.0.0-20140908184405-b21fdbd4370f
    45  	golang.org/x/net v0.0.0-20150202051010-1dfe7915deaf
    46  	gopkg.in/check.v1 v1.0.0-20141024133853-64131543e789
    47  	gopkg.in/yaml.v2 v2.0.0-20150116202057-bef53efd0c76
    48  )
    49  -- y/go.mod.want --
    50  module github.com/fishy/gcsbucket
    51  
    52  go $goversion
    53  
    54  require (
    55  	cloud.google.com/go v0.18.0
    56  	github.com/fishy/fsdb v0.0.0-20180217030800-5527ded01371
    57  	github.com/golang/protobuf v1.0.0
    58  	github.com/googleapis/gax-go v2.0.0+incompatible
    59  	golang.org/x/net v0.0.0-20180216171745-136a25c244d3
    60  	golang.org/x/oauth2 v0.0.0-20180207181906-543e37812f10
    61  	golang.org/x/text v0.3.1-0.20180208041248-4e4a3210bb54
    62  	google.golang.org/api v0.0.0-20180217000815-c7a403bb5fe1
    63  	google.golang.org/appengine v1.0.0
    64  	google.golang.org/genproto v0.0.0-20180206005123-2b5a72b8730b
    65  	google.golang.org/grpc v1.10.0
    66  )
    67  

View as plain text