View | Details | Raw Unified | Return to bug 235407
Collapse All | Expand All

(-)sysutils/docker/Makefile (-2 / +1 lines)
Lines 2-10 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=		docker
4
PORTNAME=		docker
5
PORTVERSION=		18.06.0
5
PORTVERSION=		18.09.1
6
DISTVERSIONPREFIX=	v
6
DISTVERSIONPREFIX=	v
7
DISTVERSIONSUFFIX=	-ce
8
CATEGORIES=		sysutils
7
CATEGORIES=		sysutils
9
8
10
MAINTAINER=		lifanov@FreeBSD.org
9
MAINTAINER=		lifanov@FreeBSD.org
(-)sysutils/docker/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1533309208
1
TIMESTAMP = 1549036632
2
SHA256 (docker-docker-ce-v18.06.0-ce_GH0.tar.gz) = 18754ecb38d7c210fb2b96ee618dc2bdf94e66cd501d4eef0c685903a83e8501
2
SHA256 (docker-docker-ce-v18.09.1_GH0.tar.gz) = 9eadb1eae1954b0322aadf6505f5397d1b1eccf6395ab511cadf8e6975cfc576
3
SIZE (docker-docker-ce-v18.06.0-ce_GH0.tar.gz) = 13656557
3
SIZE (docker-docker-ce-v18.09.1_GH0.tar.gz) = 15247155
(-)sysutils/docker/files/patch-components_cli_vendor_github.com_tonistiigi_fsutil_stat__unix.go (+11 lines)
Line 0 Link Here
1
--- components/cli/vendor/github.com/tonistiigi/fsutil/stat_unix.go.orig	2019-02-01 16:05:34 UTC
2
+++ components/cli/vendor/github.com/tonistiigi/fsutil/stat_unix.go
3
@@ -45,7 +45,7 @@ func setUnixOpt(fi os.FileInfo, stat *ty
4
 			stat.Devminor = int64(minor(uint64(s.Rdev)))
5
 		}
6
 
7
-		ino := s.Ino
8
+		ino := uint64(s.Ino)
9
 		if seenFiles != nil {
10
 			if s.Nlink > 1 {
11
 				if oldpath, ok := seenFiles[ino]; ok {
(-)sysutils/docker/files/patch-components_cli_vendor_github.com_tonistiigi_fsutil_walker__unix.go (-11 lines)
Lines 1-11 Link Here
1
--- components/cli/vendor/github.com/tonistiigi/fsutil/walker_unix.go.orig	2018-01-03 19:53:04 UTC
2
+++ components/cli/vendor/github.com/tonistiigi/fsutil/walker_unix.go
3
@@ -41,7 +41,7 @@ func setUnixOpt(fi os.FileInfo, stat *Stat, path strin
4
 			stat.Devminor = int64(minor(uint64(s.Rdev)))
5
 		}
6
 
7
-		ino := s.Ino
8
+		ino := uint64(s.Ino)
9
 		if s.Nlink > 1 {
10
 			if oldpath, ok := seenFiles[ino]; ok {
11
 				stat.Linkname = oldpath

Return to bug 235407