You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

48 lines
1.9 KiB

Index: src/github.com/tsuru/tsuru/Makefile
--- src/github.com/tsuru/tsuru/Makefile.orig 2017-02-08 09:30:34.000000000 +0100
+++ src/github.com/tsuru/tsuru/Makefile 2017-02-08 09:40:34.968226000 +0100
@@ -118,7 +118,7 @@
tsurud: $(TSR_BIN)
$(TSR_BIN):
- go build -o $(TSR_BIN) $(TSR_SRC)
+ go build -x -o $(TSR_BIN) $(TSR_SRC)
run-tsurud-api: $(TSR_BIN)
$(TSR_BIN) api
Index: src/github.com/tsuru/tsuru/vendor/github.com/docker/docker/pkg/archive/archive_unix.go
--- src/github.com/tsuru/tsuru/vendor/github.com/docker/docker/pkg/archive/archive_unix.go.orig 2017-10-20 20:05:58.000000000 +0200
+++ src/github.com/tsuru/tsuru/vendor/github.com/docker/docker/pkg/archive/archive_unix.go 2017-10-22 00:23:24.546644000 +0200
@@ -62,7 +62,7 @@
s, ok := stat.(*syscall.Stat_t)
if ok {
- inode = s.Ino
+ inode = uint64(s.Ino)
}
return
Index: src/github.com/tsuru/tsuru/vendor/github.com/docker/docker/pkg/archive/changes_unix.go
--- src/github.com/tsuru/tsuru/vendor/github.com/docker/docker/pkg/archive/changes_unix.go.orig 2017-10-20 20:05:57.000000000 +0200
+++ src/github.com/tsuru/tsuru/vendor/github.com/docker/docker/pkg/archive/changes_unix.go 2017-10-22 00:23:24.546764000 +0200
@@ -29,7 +29,7 @@
}
func getIno(fi os.FileInfo) uint64 {
- return fi.Sys().(*syscall.Stat_t).Ino
+ return uint64(fi.Sys().(*syscall.Stat_t).Ino)
}
func hasHardlinks(fi os.FileInfo) bool {
Index: src/github.com/tsuru/tsuru/vendor/github.com/docker/docker/pkg/mount/mountinfo_freebsd.go
--- src/github.com/tsuru/tsuru/vendor/github.com/docker/docker/pkg/mount/mountinfo_freebsd.go.orig 13:22:33.000000000 +0200
+++ src/github.com/tsuru/tsuru/vendor/github.com/docker/docker/pkg/mount/mountinfo_freebsd.go 13:39:17.643070000 +0200
@@ -37,7 +37,7 @@
if filter != nil {
// filter out entries we're not interested in
- skip, stop = filter(p)
+ skip, stop = filter(&mountinfo)
if skip {
continue
}