Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 1 Feb 2019 23:59:12 +0000 (UTC)
From:      Nikolai Lifanov <lifanov@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r491902 - in head/sysutils/docker: . files
Message-ID:  <201902012359.x11NxCBS085668@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: lifanov
Date: Fri Feb  1 23:59:12 2019
New Revision: 491902
URL: https://svnweb.freebsd.org/changeset/ports/491902

Log:
  update Docker client to 18.09.1
  
  Changes: https://docs.docker.com/engine/release-notes/
  
  PR:		235407
  Submitted by:	Dmitri Goutnik <dg@syrec.org>

Added:
  head/sysutils/docker/files/patch-components_cli_vendor_github.com_tonistiigi_fsutil_stat__unix.go   (contents, props changed)
Deleted:
  head/sysutils/docker/files/patch-components_cli_vendor_github.com_tonistiigi_fsutil_walker__unix.go
Modified:
  head/sysutils/docker/Makefile
  head/sysutils/docker/distinfo

Modified: head/sysutils/docker/Makefile
==============================================================================
--- head/sysutils/docker/Makefile	Fri Feb  1 23:53:53 2019	(r491901)
+++ head/sysutils/docker/Makefile	Fri Feb  1 23:59:12 2019	(r491902)
@@ -2,9 +2,8 @@
 # $FreeBSD$
 
 PORTNAME=		docker
-PORTVERSION=		18.06.0
+PORTVERSION=		18.09.1
 DISTVERSIONPREFIX=	v
-DISTVERSIONSUFFIX=	-ce
 CATEGORIES=		sysutils
 
 MAINTAINER=		lifanov@FreeBSD.org

Modified: head/sysutils/docker/distinfo
==============================================================================
--- head/sysutils/docker/distinfo	Fri Feb  1 23:53:53 2019	(r491901)
+++ head/sysutils/docker/distinfo	Fri Feb  1 23:59:12 2019	(r491902)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1533309208
-SHA256 (docker-docker-ce-v18.06.0-ce_GH0.tar.gz) = 18754ecb38d7c210fb2b96ee618dc2bdf94e66cd501d4eef0c685903a83e8501
-SIZE (docker-docker-ce-v18.06.0-ce_GH0.tar.gz) = 13656557
+TIMESTAMP = 1549036632
+SHA256 (docker-docker-ce-v18.09.1_GH0.tar.gz) = 9eadb1eae1954b0322aadf6505f5397d1b1eccf6395ab511cadf8e6975cfc576
+SIZE (docker-docker-ce-v18.09.1_GH0.tar.gz) = 15247155

Added: head/sysutils/docker/files/patch-components_cli_vendor_github.com_tonistiigi_fsutil_stat__unix.go
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/docker/files/patch-components_cli_vendor_github.com_tonistiigi_fsutil_stat__unix.go	Fri Feb  1 23:59:12 2019	(r491902)
@@ -0,0 +1,11 @@
+--- components/cli/vendor/github.com/tonistiigi/fsutil/stat_unix.go.orig	2019-02-01 16:05:34 UTC
++++ components/cli/vendor/github.com/tonistiigi/fsutil/stat_unix.go
+@@ -45,7 +45,7 @@ func setUnixOpt(fi os.FileInfo, stat *ty
+ 			stat.Devminor = int64(minor(uint64(s.Rdev)))
+ 		}
+ 
+-		ino := s.Ino
++		ino := uint64(s.Ino)
+ 		if seenFiles != nil {
+ 			if s.Nlink > 1 {
+ 				if oldpath, ok := seenFiles[ino]; ok {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902012359.x11NxCBS085668>