diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json index 0588493e94d..cd7028425f2 100644 --- a/Godeps/Godeps.json +++ b/Godeps/Godeps.json @@ -310,7 +310,7 @@ }, { "ImportPath": "github.com/matttproud/golang_protobuf_extensions/ext", - "Rev": "7a864a042e844af638df17ebbabf8183dace556a" + "Rev": "ba7d65ac66e9da93a714ca18f6d1bc7a0c09100c" }, { "ImportPath": "github.com/miekg/dns", diff --git a/Godeps/_workspace/src/github.com/matttproud/golang_protobuf_extensions/ext/all_test.go b/Godeps/_workspace/src/github.com/matttproud/golang_protobuf_extensions/ext/all_test.go index 98d4e2d8181..7270b67a38f 100644 --- a/Godeps/_workspace/src/github.com/matttproud/golang_protobuf_extensions/ext/all_test.go +++ b/Godeps/_workspace/src/github.com/matttproud/golang_protobuf_extensions/ext/all_test.go @@ -21,8 +21,8 @@ import ( "testing" "testing/quick" - . "code.google.com/p/goprotobuf/proto" - . "code.google.com/p/goprotobuf/proto/testdata" + . "github.com/golang/protobuf/proto" + . "github.com/golang/protobuf/proto/testdata" ) func TestWriteDelimited(t *testing.T) { diff --git a/Godeps/_workspace/src/github.com/matttproud/golang_protobuf_extensions/ext/decode.go b/Godeps/_workspace/src/github.com/matttproud/golang_protobuf_extensions/ext/decode.go index a9af23333c1..28b520e4bbb 100644 --- a/Godeps/_workspace/src/github.com/matttproud/golang_protobuf_extensions/ext/decode.go +++ b/Godeps/_workspace/src/github.com/matttproud/golang_protobuf_extensions/ext/decode.go @@ -19,7 +19,7 @@ import ( "errors" "io" - "code.google.com/p/goprotobuf/proto" + "github.com/golang/protobuf/proto" ) var errInvalidVarint = errors.New("invalid varint32 encountered") diff --git a/Godeps/_workspace/src/github.com/matttproud/golang_protobuf_extensions/ext/encode.go b/Godeps/_workspace/src/github.com/matttproud/golang_protobuf_extensions/ext/encode.go index a7a9345615f..473b31dccaf 100644 --- a/Godeps/_workspace/src/github.com/matttproud/golang_protobuf_extensions/ext/encode.go +++ b/Godeps/_workspace/src/github.com/matttproud/golang_protobuf_extensions/ext/encode.go @@ -18,7 +18,7 @@ import ( "encoding/binary" "io" - "code.google.com/p/goprotobuf/proto" + "github.com/golang/protobuf/proto" ) // WriteDelimited encodes and dumps a message to the provided writer prefixed diff --git a/Godeps/_workspace/src/github.com/matttproud/golang_protobuf_extensions/ext/fixtures_test.go b/Godeps/_workspace/src/github.com/matttproud/golang_protobuf_extensions/ext/fixtures_test.go index 9cfcbbf585c..07e75c54da5 100644 --- a/Godeps/_workspace/src/github.com/matttproud/golang_protobuf_extensions/ext/fixtures_test.go +++ b/Godeps/_workspace/src/github.com/matttproud/golang_protobuf_extensions/ext/fixtures_test.go @@ -1,5 +1,5 @@ // Copyright 2010 The Go Authors. All rights reserved. -// http://code.google.com/p/goprotobuf/ +// http://github.com/golang/protobuf/ // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are @@ -30,11 +30,11 @@ package ext import ( - . "code.google.com/p/goprotobuf/proto" - . "code.google.com/p/goprotobuf/proto/testdata" + . "github.com/golang/protobuf/proto" + . "github.com/golang/protobuf/proto/testdata" ) -// FROM https://code.google.com/p/goprotobuf/source/browse/proto/all_test.go. +// FROM https://github.com/golang/protobuf/blob/master/proto/all_test.go. func initGoTestField() *GoTestField { f := new(GoTestField)