Update to 0.15.0

Changes:	https://github.com/GoogleContainerTools/container-diff/releases
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2019-02-24 17:56:08 +00:00
parent 7c03f775c4
commit 99473a82e7
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=493781
3 changed files with 15 additions and 4 deletions

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= container-diff
PORTVERSION= 0.14.0
PORTVERSION= 0.15.0
DISTVERSIONPREFIX= v
CATEGORIES= sysutils

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1546255404
SHA256 (GoogleContainerTools-container-diff-v0.14.0_GH0.tar.gz) = 5dbafdc38524dad60286da2d7a7d303285de2e08e070ce3dcc1488dbfecd116b
SIZE (GoogleContainerTools-container-diff-v0.14.0_GH0.tar.gz) = 2000307
TIMESTAMP = 1550687391
SHA256 (GoogleContainerTools-container-diff-v0.15.0_GH0.tar.gz) = 4bdd73a81b6f7a988cf270236471016525d0541f5fe04286043f3db28e4b250c
SIZE (GoogleContainerTools-container-diff-v0.15.0_GH0.tar.gz) = 2137869

View File

@ -0,0 +1,11 @@
--- vendor/github.com/fsouza/go-dockerclient/internal/archive/archive_unix.go.orig 2019-02-19 22:02:30 UTC
+++ vendor/github.com/fsouza/go-dockerclient/internal/archive/archive_unix.go
@@ -42,7 +42,7 @@ func getInodeFromStat(stat interface{})
s, ok := stat.(*syscall.Stat_t)
if ok {
- inode = s.Ino
+ inode = uint64(s.Ino)
}
return