Skip to content

Commit f52d055

Browse files
authored
Merge pull request #192 from grpc-ecosystem/cleanup/transfer
Rename packages to follow the repository transfer
2 parents faa3576 + bd3e28b commit f52d055

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+351
-353
lines changed

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ before_install:
1717
- go get github.com/golang/lint/golint
1818
- go get github.com/dghubble/sling
1919
install:
20-
- go get github.com/gengo/grpc-gateway/protoc-gen-grpc-gateway
21-
- go get github.com/gengo/grpc-gateway/runtime
22-
- go get github.com/gengo/grpc-gateway/examples
23-
- go get github.com/gengo/grpc-gateway/examples/server
20+
- go get github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway
21+
- go get github.com/grpc-ecosystem/grpc-gateway/runtime
22+
- go get github.com/grpc-ecosystem/grpc-gateway/examples
23+
- go get github.com/grpc-ecosystem/grpc-gateway/examples/server
2424
before_script:
2525
- sh -c 'cd examples/browser && npm install'
2626
script:
2727
- make realclean && make examples SWAGGER_CODEGEN="java -jar $HOME/local/swagger-codegen-cli.jar"
2828
- if ! go version | grep devel; then test -z "$(git status --porcelain)" || (git status; git diff; exit 1); fi
29-
- env GLOG_logtostderr=1 go test -race -v github.com/gengo/grpc-gateway/...
29+
- env GLOG_logtostderr=1 go test -race -v github.com/grpc-ecosystem/grpc-gateway/...
3030
- make lint
3131
- sh -c 'cd examples/browser && gulp'
3232
env:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# You don't have to rebuild these targets by yourself unless you develop
44
# grpc-gateway itself.
55

6-
PKG=github.com/gengo/grpc-gateway
6+
PKG=github.com/grpc-ecosystem/grpc-gateway
77
GO_PLUGIN=bin/protoc-gen-go
88
GO_PLUGIN_PKG=github.com/golang/protobuf/protoc-gen-go
99
SWAGGER_PLUGIN=bin/protoc-gen-swagger

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# grpc-gateway
22

3-
[![Build Status](https://travis-ci.org/gengo/grpc-gateway.svg?branch=master)](https://travis-ci.org/gengo/grpc-gateway)
3+
[![Build Status](https://travis-ci.org/grpc-ecosystem/grpc-gateway.svg?branch=master)](https://travis-ci.org/grpc-ecosystem/grpc-gateway)
44

55
grpc-gateway is a plugin of [protoc](http://github.com/google/protobuf).
66
It reads [gRPC](http://github.com/grpc/grpc-common) service definition,
@@ -38,8 +38,8 @@ sudo make install
3838
Then, `go get -u` as usual.
3939

4040
```sh
41-
go get -u github.com/gengo/grpc-gateway/protoc-gen-grpc-gateway
42-
go get -u github.com/gengo/grpc-gateway/protoc-gen-swagger
41+
go get -u github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway
42+
go get -u github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger
4343
go get -u github.com/golang/protobuf/protoc-gen-go
4444
```
4545

@@ -88,8 +88,8 @@ Make sure that your `$GOPATH/bin` is in your `$PATH`.
8888
```sh
8989
protoc -I/usr/local/include -I. \
9090
-I$GOPATH/src \
91-
-I$GOPATH/src/github.com/gengo/grpc-gateway/third_party/googleapis \
92-
--go_out=Mgoogle/api/annotations.proto=github.com/gengo/grpc-gateway/third_party/googleapis/google/api,plugins=grpc:. \
91+
-I$GOPATH/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis \
92+
--go_out=Mgoogle/api/annotations.proto=github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis/google/api,plugins=grpc:. \
9393
path/to/your_service.proto
9494
```
9595

@@ -101,13 +101,13 @@ Make sure that your `$GOPATH/bin` is in your `$PATH`.
101101
```sh
102102
protoc -I/usr/local/include -I. \
103103
-I$GOPATH/src \
104-
-I$GOPATH/src/github.com/gengo/grpc-gateway/third_party/googleapis \
104+
-I$GOPATH/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis \
105105
--ruby_out=. \
106106
path/to/your/service_proto
107107

108108
protoc -I/usr/local/include -I. \
109109
-I$GOPATH/src \
110-
-I$GOPATH/src/github.com/gengo/grpc-gateway/third_party/googleapis \
110+
-I$GOPATH/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis \
111111
--plugin=protoc-gen-grpc-ruby=grpc_ruby_plugin \
112112
--grpc-ruby_out=. \
113113
path/to/your/service.proto
@@ -118,7 +118,7 @@ Make sure that your `$GOPATH/bin` is in your `$PATH`.
118118
```sh
119119
protoc -I/usr/local/include -I. \
120120
-I$GOPATH/src \
121-
-I$GOPATH/src/github.com/gengo/grpc-gateway/third_party/googleapis \
121+
-I$GOPATH/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis \
122122
--grpc-gateway_out=logtostderr=true:. \
123123
path/to/your_service.proto
124124
```
@@ -135,7 +135,7 @@ Make sure that your `$GOPATH/bin` is in your `$PATH`.
135135
136136
"github.com/golang/glog"
137137
"golang.org/x/net/context"
138-
"github.com/gengo/grpc-gateway/runtime"
138+
"github.com/grpc-ecosystem/grpc-gateway/runtime"
139139
"google.golang.org/grpc"
140140
141141
gw "path/to/your_service_package"
@@ -176,7 +176,7 @@ Make sure that your `$GOPATH/bin` is in your `$PATH`.
176176
```sh
177177
protoc -I/usr/local/include -I. \
178178
-I$GOPATH/src \
179-
-I$GOPATH/src/github.com/gengo/grpc-gateway/third_party/googleapis \
179+
-I$GOPATH/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis \
180180
--swagger_out=logtostderr=true:. \
181181
path/to/your_service.proto
182182
```
@@ -221,4 +221,4 @@ But patch is welcome.
221221
222222
# License
223223
grpc-gateway is licensed under the BSD 3-Clause License.
224-
See [LICENSE.txt](https://github.com/gengo/grpc-gateway/blob/master/LICENSE.txt) for more details.
224+
See [LICENSE.txt](https://github.com/grpc-ecosystem/grpc-gateway/blob/master/LICENSE.txt) for more details.

examples/browser/bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"Yuki Yugui Sonoda <[email protected]>"
77
],
88
"license": "SEE LICENSE IN LICENSE file",
9-
"homepage": "https://github.com/gengo/grpc-gateway",
9+
"homepage": "https://github.com/grpc-ecosystem/grpc-gateway",
1010
"private": true,
1111
"dependencies": {
1212
"swagger-js": "~> 2.1"

examples/browser/gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ gulp.task('bower', function(){
1616
});
1717

1818
gulp.task('server', shell.task([
19-
'go build -o bin/example-server github.com/gengo/grpc-gateway/examples/server',
19+
'go build -o bin/example-server github.com/grpc-ecosystem/grpc-gateway/examples/server',
2020
]));
2121

2222
gulp.task('gateway', shell.task([
23-
'go build -o bin/example-gw github.com/gengo/grpc-gateway/examples',
23+
'go build -o bin/example-gw github.com/grpc-ecosystem/grpc-gateway/examples',
2424
]));
2525

2626
gulp.task('serve-server', ['server'], function(){

examples/client_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"reflect"
55
"testing"
66

7-
"github.com/gengo/grpc-gateway/examples/clients/abe"
8-
"github.com/gengo/grpc-gateway/examples/clients/echo"
7+
"github.com/grpc-ecosystem/grpc-gateway/examples/clients/abe"
8+
"github.com/grpc-ecosystem/grpc-gateway/examples/clients/echo"
99
)
1010

1111
func TestClientIntegration(t *testing.T) {

0 commit comments

Comments
 (0)