[docker-io/el6] upgrade to 1.1.2

lsm5 lsm5 at fedoraproject.org
Fri Aug 1 20:35:33 UTC 2014


commit 455b97487bb69c0485d3296be118c4160c1aab90
Author: Lokesh Mandvekar <lsm5 at fedoraproject.org>
Date:   Fri Jul 25 13:45:59 2014 -0500

    upgrade to 1.1.2

 docker-io.spec                     |  123 +++++++++---------------------------
 docker.service                     |   15 +++++
 upstream-patched-archive-tar.patch |  103 ++++++++++++------------------
 3 files changed, 86 insertions(+), 155 deletions(-)
---
diff --git a/docker-io.spec b/docker-io.spec
index c2ab434..a7ea912 100644
--- a/docker-io.spec
+++ b/docker-io.spec
@@ -1,28 +1,29 @@
 # modifying the dockerinit binary breaks the SHA1 sum check by docker
 %global __os_install_post %{_rpmconfigdir}/brp-compress
 
-#debuginfo not supported with Go
+# docker builds in a checksum of dockerinit into docker,
+# so stripping the binaries breaks docker
 %global debug_package %{nil}
-%global gopath  %{_datadir}/gocode
 
-%global commit      63fe64c471e7d76be96a625350468dfc65c06c31
+%global import_path github.com/docker/docker
+%global commit      d84a070e476ce923dd03e28232564a87704613ab
 %global shortcommit %(c=%{commit}; echo ${c:0:7})
 
 Name:           docker-io
-Version:        1.0.0
-Release:        7%{?dist}
+Version:        1.1.2
+Release:        1%{?dist}
 Summary:        Automates deployment of containerized applications
 License:        ASL 2.0
 Patch1:         upstream-patched-archive-tar.patch
-Patch2:         disable-btrfs-and-provide-setns.patch
-Patch3:         finalize-namespace.patch
-URL:            http://www.docker.io
-# only x86_64 for now: https://github.com/dotcloud/docker/issues/136
+# Resolves: rhbz#1119849 - add AUDIT_WRITE capablility
+Patch2:         audit-write.patch
+URL:            http://www.docker.com
+# only x86_64 for now: https://github.com/docker/docker/issues/136
 ExclusiveArch:  x86_64
-Source0:        https://github.com/dotcloud/docker/archive/v%{version}.tar.gz
+Source0:        https://github.com/docker/docker/archive/v%{version}.tar.gz
+# though final name for sysconf file is simply 'docker',
+# having .sysconfig makes things clear
 Source1:        docker.sysconfig
-# though final name for sysconf/sysvinit files is simply 'docker',
-# having .sysvinit and .sysconfig makes things clear
 BuildRequires:  gcc
 BuildRequires:  glibc-static
 BuildRequires:  pandoc
@@ -39,6 +40,8 @@ BuildRequires:  golang(code.google.com/p/go.net/websocket)
 BuildRequires:  golang(code.google.com/p/gosqlite/sqlite3)
 # RHBZ#1109039 use syndtr/gocapability >= 0-0.7
 BuildRequires:  golang(github.com/syndtr/gocapability/capability) >= 0-0.7
+BuildRequires:  golang(github.com/docker/libcontainer)
+BuildRequires:  golang(github.com/tchap/go-patricia/patricia)
 BuildRequires:  device-mapper-devel
 Requires(post):     chkconfig
 Requires(preun):    chkconfig
@@ -148,7 +151,6 @@ Provides:       golang(%{import_path}/pkg/user) = %{version}-%{release}
 Provides:       golang(%{import_path}/pkg/version) = %{version}-%{release}
 
 %description pkg-devel
-This is the source libraries for docker.
 These source librariees are provided by docker, but are independent of docker specific logic.
 The import paths of %{import_path}/pkg/...
 
@@ -158,15 +160,12 @@ rm -rf vendor
 %patch1 -p1 -F 2 -b upstream-patched-archive-tar
 %patch2 -p1 -F 2
 cp -p %{SOURCE1} contrib/init/sysvinit-redhat/docker.sysconfig
-%patch3 -p1 -b finalize-namespace
+rm daemon/execdriver/native/template/*.go.orig
 
 %build
-mkdir _build
-
-pushd _build
-  mkdir -p src/github.com/dotcloud
-  ln -s $(dirs +1 -l) src/github.com/dotcloud/docker
-popd
+# set up temporary build gopath, and put our directory there
+mkdir -p ./_build/src/github.com/dotcloud
+ln -s $(pwd) ./_build/src/github.com/dotcloud/docker
 
 export DOCKER_GITCOMMIT="%{shortcommit}/%{version}"
 #export DOCKER_BUILDTAGS='selinux'
@@ -174,12 +173,10 @@ export GOPATH=$(pwd)/_build:%{gopath}
 export DOCKER_BUILDTAGS='exclude_graphdriver_btrfs'
 
 hack/make.sh dynbinary
+docs/man/md2man-all.sh
 cp contrib/syntax/vim/LICENSE LICENSE-vim-syntax
 cp contrib/syntax/vim/README.md README-vim-syntax.md
 
-#make man pages
-contrib/man/md/md2man-all.sh
-
 %install
 # install binary
 install -d %{buildroot}%{_bindir}
@@ -189,9 +186,9 @@ install -d %{buildroot}%{_libexecdir}/docker
 install -p -m 755 bundles/%{version}/dynbinary/dockerinit-%{version} %{buildroot}%{_libexecdir}/docker/dockerinit
 # install manpage
 install -d %{buildroot}%{_mandir}/man1
-install -p -m 644 contrib/man/man1/docker*.1 %{buildroot}%{_mandir}/man1
+install -p -m 644 docs/man/man1/docker*.1 %{buildroot}%{_mandir}/man1
 install -d %{buildroot}%{_mandir}/man5
-install -p -m 644 contrib/man/man5/Dockerfile.5 %{buildroot}%{_mandir}/man5
+install -p -m 644 docs/man/man5/Dockerfile.5 %{buildroot}%{_mandir}/man5
 # install bash completion
 install -d %{buildroot}%{_sysconfdir}/bash_completion.d
 install -p -m 644 contrib/completion/bash/docker %{buildroot}%{_sysconfdir}/bash_completion.d/docker.bash
@@ -290,6 +287,7 @@ fi
 %{gopath}/src/%{import_path}/api/*.go
 %{gopath}/src/%{import_path}/api/client/*.go
 %dir %{gopath}/src/%{import_path}/api/server
+%{gopath}/src/%{import_path}/api/server/MAINTAINERS
 %{gopath}/src/%{import_path}/api/server/*.go
 %dir %{gopath}/src/%{import_path}/archive
 %{gopath}/src/%{import_path}/archive/MAINTAINERS
@@ -309,6 +307,7 @@ fi
 %dir %{gopath}/src/%{import_path}/daemon/execdriver/execdrivers
 %{gopath}/src/%{import_path}/daemon/execdriver/execdrivers/*.go
 %dir %{gopath}/src/%{import_path}/daemon/execdriver/lxc
+%{gopath}/src/%{import_path}/daemon/execdriver/lxc/MAINTAINERS
 %{gopath}/src/%{import_path}/daemon/execdriver/lxc/*.go
 %dir %{gopath}/src/%{import_path}/daemon/execdriver/native
 %{gopath}/src/%{import_path}/daemon/execdriver/native/*.go
@@ -349,12 +348,6 @@ fi
 %dir %{gopath}/src/%{import_path}/engine
 %{gopath}/src/%{import_path}/engine/MAINTAINERS
 %{gopath}/src/%{import_path}/engine/*.go
-%dir %{gopath}/src/%{import_path}/engine/rengine
-%{gopath}/src/%{import_path}/engine/rengine/*.go
-%dir %{gopath}/src/%{import_path}/engine/spawn
-%{gopath}/src/%{import_path}/engine/spawn/*.go
-%dir %{gopath}/src/%{import_path}/engine/spawn/subengine
-%{gopath}/src/%{import_path}/engine/spawn/subengine/*.go
 %dir %{gopath}/src/%{import_path}/graph
 %{gopath}/src/%{import_path}/graph/*.go
 %{gopath}/src/%{import_path}/graph/*.goupstream-patched-archive-tar
@@ -395,69 +388,14 @@ fi
 %dir %{gopath}/src/%{import_path}
 %dir %{gopath}/src/%{import_path}/pkg
 %{gopath}/src/%{import_path}/pkg/README.md
-%dir %{gopath}/src/%{import_path}/pkg/apparmor
-%{gopath}/src/%{import_path}/pkg/apparmor/*.go
-%dir %{gopath}/src/%{import_path}/pkg/beam
-%{gopath}/src/%{import_path}/pkg/beam/MAINTAINERS
-%{gopath}/src/%{import_path}/pkg/beam/*.go
-%dir %{gopath}/src/%{import_path}/pkg/beam/data
-%{gopath}/src/%{import_path}/pkg/beam/data/*.go
-%{gopath}/src/%{import_path}/pkg/beam/data/netstring.txt
-%dir %{gopath}/src/%{import_path}/pkg/beam/examples
-%dir %{gopath}/src/%{import_path}/pkg/beam/examples/beamsh
-%{gopath}/src/%{import_path}/pkg/beam/examples/beamsh/beamsh
-%{gopath}/src/%{import_path}/pkg/beam/examples/beamsh/*.go
-%dir %{gopath}/src/%{import_path}/pkg/beam/examples/beamsh/scripts
-%{gopath}/src/%{import_path}/pkg/beam/examples/beamsh/scripts/*.ds
-%dir %{gopath}/src/%{import_path}/pkg/dockerscript
-%{gopath}/src/%{import_path}/pkg/dockerscript/MAINTAINERS
-%{gopath}/src/%{import_path}/pkg/dockerscript/*.go
-%dir %{gopath}/src/%{import_path}/pkg/dockerscript/scanner
-%{gopath}/src/%{import_path}/pkg/dockerscript/scanner/*.go
 %dir %{gopath}/src/%{import_path}/pkg/graphdb
 %{gopath}/src/%{import_path}/pkg/graphdb/MAINTAINERS
 %{gopath}/src/%{import_path}/pkg/graphdb/*.go
 %dir %{gopath}/src/%{import_path}/pkg/iptables
 %{gopath}/src/%{import_path}/pkg/iptables/MAINTAINERS
 %{gopath}/src/%{import_path}/pkg/iptables/*.go
-%dir %{gopath}/src/%{import_path}/pkg/label
-%{gopath}/src/%{import_path}/pkg/label/*.go
 %dir %{gopath}/src/%{import_path}/pkg/listenbuffer
 %{gopath}/src/%{import_path}/pkg/listenbuffer/*.go
-%dir %{gopath}/src/%{import_path}/pkg/libcontainer
-%{gopath}/src/%{import_path}/pkg/libcontainer/*.go
-%{gopath}/src/%{import_path}/pkg/libcontainer/MAINTAINERS
-%{gopath}/src/%{import_path}/pkg/libcontainer/README.md
-%{gopath}/src/%{import_path}/pkg/libcontainer/TODO.md
-%dir %{gopath}/src/%{import_path}/pkg/libcontainer/cgroups
-%{gopath}/src/%{import_path}/pkg/libcontainer/cgroups/*.go
-%dir %{gopath}/src/%{import_path}/pkg/libcontainer/cgroups/fs
-%{gopath}/src/%{import_path}/pkg/libcontainer/cgroups/fs/*.go
-%dir %{gopath}/src/%{import_path}/pkg/libcontainer/cgroups/systemd
-%{gopath}/src/%{import_path}/pkg/libcontainer/cgroups/systemd/*.go
-%dir %{gopath}/src/%{import_path}/pkg/libcontainer/console
-%{gopath}/src/%{import_path}/pkg/libcontainer/console/*.go
-%{gopath}/src/%{import_path}/pkg/libcontainer/container.json
-%dir %{gopath}/src/%{import_path}/pkg/libcontainer/devices
-%{gopath}/src/%{import_path}/pkg/libcontainer/devices/*.go
-%dir %{gopath}/src/%{import_path}/pkg/libcontainer/mount
-%{gopath}/src/%{import_path}/pkg/libcontainer/mount/*.go
-%dir %{gopath}/src/%{import_path}/pkg/libcontainer/mount/nodes
-%{gopath}/src/%{import_path}/pkg/libcontainer/mount/nodes/*.go
-%dir %{gopath}/src/%{import_path}/pkg/libcontainer/namespaces
-%{gopath}/src/%{import_path}/pkg/libcontainer/namespaces/*.go
-%{gopath}/src/%{import_path}/pkg/libcontainer/namespaces/init.gofinalize-namespace
-%dir %{gopath}/src/%{import_path}/pkg/libcontainer/network
-%{gopath}/src/%{import_path}/pkg/libcontainer/network/*.go
-%dir %{gopath}/src/%{import_path}/pkg/libcontainer/nsinit
-%{gopath}/src/%{import_path}/pkg/libcontainer/nsinit/*.go
-%dir %{gopath}/src/%{import_path}/pkg/libcontainer/security
-%dir %{gopath}/src/%{import_path}/pkg/libcontainer/security/capabilities
-%{gopath}/src/%{import_path}/pkg/libcontainer/security/capabilities/*.go
-%dir %{gopath}/src/%{import_path}/pkg/libcontainer/security/restrict
-%{gopath}/src/%{import_path}/pkg/libcontainer/security/restrict/*.go
-%dir %{gopath}/src/%{import_path}/pkg/libcontainer/utils
-%{gopath}/src/%{import_path}/pkg/libcontainer/utils/*.go
 %dir %{gopath}/src/%{import_path}/pkg/mflag
 %{gopath}/src/%{import_path}/pkg/mflag/LICENSE
 %{gopath}/src/%{import_path}/pkg/mflag/MAINTAINERS
@@ -470,9 +408,6 @@ fi
 %{gopath}/src/%{import_path}/pkg/mount/*.go
 %dir %{gopath}/src/%{import_path}/pkg/namesgenerator
 %{gopath}/src/%{import_path}/pkg/namesgenerator/*.go
-%dir %{gopath}/src/%{import_path}/pkg/netlink
-%{gopath}/src/%{import_path}/pkg/netlink/MAINTAINERS
-%{gopath}/src/%{import_path}/pkg/netlink/*.go
 %dir %{gopath}/src/%{import_path}/pkg/networkfs
 %{gopath}/src/%{import_path}/pkg/networkfs/MAINTAINERS
 %dir %{gopath}/src/%{import_path}/pkg/networkfs/etchosts
@@ -482,10 +417,7 @@ fi
 %dir %{gopath}/src/%{import_path}/pkg/proxy
 %{gopath}/src/%{import_path}/pkg/proxy/MAINTAINERS
 %{gopath}/src/%{import_path}/pkg/proxy/*.go
-%dir %{gopath}/src/%{import_path}/pkg/selinux
-%{gopath}/src/%{import_path}/pkg/selinux/*.go
 %dir %{gopath}/src/%{import_path}/pkg/signal
-%{gopath}/src/%{import_path}/pkg/signal/MAINTAINERS
 %{gopath}/src/%{import_path}/pkg/signal/*.go
 %dir %{gopath}/src/%{import_path}/pkg/symlink
 %{gopath}/src/%{import_path}/pkg/symlink/MAINTAINERS
@@ -509,6 +441,10 @@ fi
 %dir %{gopath}/src/%{import_path}/pkg/systemd
 %{gopath}/src/%{import_path}/pkg/systemd/MAINTAINERS
 %{gopath}/src/%{import_path}/pkg/systemd/*.go
+%dir %{gopath}/src/%{import_path}/pkg/tailfile
+%{gopath}/src/%{import_path}/pkg/tailfile/*.go
+%dir %{gopath}/src/%{import_path}/pkg/truncindex
+%{gopath}/src/%{import_path}/pkg/truncindex/*.go
 %dir %{gopath}/src/%{import_path}/pkg/term
 %{gopath}/src/%{import_path}/pkg/term/MAINTAINERS
 %{gopath}/src/%{import_path}/pkg/term/*.go
@@ -526,6 +462,9 @@ fi
 %{gopath}/src/%{import_path}/pkg/version/*.go
 
 %changelog
+* Thu Jul 31 2014 Lokesh Mandvekar <lsm5 at fedoraproject.org> - 1.1.2-1
+- Resolves: rhbz#1124036 - update to upstream v1.1.2
+
 * Thu Jul 31 2014 Lokesh Mandvekar <lsm5 at fedoraproject.org> - 1.0.0-7
 - create -devel and -pkg-devel subpackages
 
diff --git a/docker.service b/docker.service
new file mode 100644
index 0000000..9b6c614
--- /dev/null
+++ b/docker.service
@@ -0,0 +1,15 @@
+[Unit]
+Description=Docker Application Container Engine
+Documentation=http://docs.docker.com
+After=network.target docker.socket
+Requires=docker.socket
+
+[Service]
+Type=notify
+EnvironmentFile=-/etc/sysconfig/docker
+ExecStart=/usr/bin/docker -d -H fd:// $OPTIONS
+LimitNOFILE=1048576
+LimitNPROC=1048576
+
+[Install]
+Also=docker.socket
diff --git a/upstream-patched-archive-tar.patch b/upstream-patched-archive-tar.patch
index ef6e929..e2dd66f 100644
--- a/upstream-patched-archive-tar.patch
+++ b/upstream-patched-archive-tar.patch
@@ -20,6 +20,7 @@
 <option value='f18'>f18</option>
 <option value='f19'>f19</option>
 <option value='f20'>f20</option>
+<option value='f21'>f21</option>
 <option value='master' selected='selected'>master</option>
 </select> <input type='submit' name='' value='switch'/></form></td></tr>
 <tr><td class='sub'>docker-io</td><td class='sub right'>Jon Ciesla</td></tr></table>
@@ -35,7 +36,7 @@
 <input type='submit' value='search'/>
 </form>
 </td></tr></table>
-<div class='path'>path: <a href='/cgit/docker-io.git/tree/'>root</a>/<a href='/cgit/docker-io.git/tree/upstream-patched-archive-tar.patch'>upstream-patched-archive-tar.patch</a></div><div class='content'>blob: 061656accc019b35a57da1c1559f778a5c5f4069 (<a href='/cgit/docker-io.git/plain/upstream-patched-archive-tar.patch'>plain</a>)
+<div class='path'>path: <a href='/cgit/docker-io.git/tree/'>root</a>/<a href='/cgit/docker-io.git/tree/upstream-patched-archive-tar.patch'>upstream-patched-archive-tar.patch</a></div><div class='content'>blob: 2f766dd6f4389b91303b4ff898a838b3ddb978b3 (<a href='/cgit/docker-io.git/plain/upstream-patched-archive-tar.patch'>plain</a>)
 <table summary='blob content' class='blob'>
 <tr><td class='linenumbers'><pre><a id='n1' href='#n1'>1</a>
 <a id='n2' href='#n2'>2</a>
@@ -145,22 +146,10 @@
 <a id='n106' href='#n106'>106</a>
 <a id='n107' href='#n107'>107</a>
 <a id='n108' href='#n108'>108</a>
-<a id='n109' href='#n109'>109</a>
-<a id='n110' href='#n110'>110</a>
-<a id='n111' href='#n111'>111</a>
-<a id='n112' href='#n112'>112</a>
-<a id='n113' href='#n113'>113</a>
-<a id='n114' href='#n114'>114</a>
-<a id='n115' href='#n115'>115</a>
-<a id='n116' href='#n116'>116</a>
-<a id='n117' href='#n117'>117</a>
-<a id='n118' href='#n118'>118</a>
-<a id='n119' href='#n119'>119</a>
-<a id='n120' href='#n120'>120</a>
 </pre></td>
-<td class='lines'><pre><code>diff -uNr docker-0.12.0/archive/archive.go docker-0.12.0-1/archive/archive.go
---- docker-0.12.0/archive/archive.go	2014-06-05 20:59:19.000000000 -0400
-+++ docker-0.12.0-1/archive/archive.go	2014-06-08 17:10:37.537530082 -0400
+<td class='lines'><pre><code>diff -uNr docker-1.1.2/archive/archive.go docker-1.1.2-1/archive/archive.go
+--- docker-1.1.2/archive/archive.go	2014-07-22 19:29:56.000000000 -0500
++++ docker-1.1.2-1/archive/archive.go	2014-07-25 10:47:31.042199877 -0500
 @@ -18,7 +18,7 @@
  
  	"github.com/dotcloud/docker/pkg/system"
@@ -170,9 +159,9 @@
  )
  
  type (
-diff -uNr docker-0.12.0/archive/archive_test.go docker-0.12.0-1/archive/archive_test.go
---- docker-0.12.0/archive/archive_test.go	2014-06-05 20:59:19.000000000 -0400
-+++ docker-0.12.0-1/archive/archive_test.go	2014-06-08 17:09:47.983603103 -0400
+diff -uNr docker-1.1.2/archive/archive_test.go docker-1.1.2-1/archive/archive_test.go
+--- docker-1.1.2/archive/archive_test.go	2014-07-22 19:29:56.000000000 -0500
++++ docker-1.1.2-1/archive/archive_test.go	2014-07-25 10:46:52.199198162 -0500
 @@ -11,7 +11,7 @@
  	"testing"
  	"time"
@@ -182,9 +171,9 @@ diff -uNr docker-0.12.0/archive/archive_test.go docker-0.12.0-1/archive/archive_
  )
  
  func TestCmdStreamLargeStderr(t *testing.T) {
-diff -uNr docker-0.12.0/archive/changes.go docker-0.12.0-1/archive/changes.go
---- docker-0.12.0/archive/changes.go	2014-06-05 20:59:19.000000000 -0400
-+++ docker-0.12.0-1/archive/changes.go	2014-06-08 17:10:27.932544229 -0400
+diff -uNr docker-1.1.2/archive/changes.go docker-1.1.2-1/archive/changes.go
+--- docker-1.1.2/archive/changes.go	2014-07-22 19:29:56.000000000 -0500
++++ docker-1.1.2-1/archive/changes.go	2014-07-25 10:47:19.873199418 -0500
 @@ -12,7 +12,7 @@
  
  	"github.com/dotcloud/docker/pkg/system"
@@ -194,9 +183,9 @@ diff -uNr docker-0.12.0/archive/changes.go docker-0.12.0-1/archive/changes.go
  )
  
  type ChangeType int
-diff -uNr docker-0.12.0/archive/diff.go docker-0.12.0-1/archive/diff.go
---- docker-0.12.0/archive/diff.go	2014-06-05 20:59:19.000000000 -0400
-+++ docker-0.12.0-1/archive/diff.go	2014-06-08 17:10:20.248555556 -0400
+diff -uNr docker-1.1.2/archive/diff.go docker-1.1.2-1/archive/diff.go
+--- docker-1.1.2/archive/diff.go	2014-07-22 19:29:56.000000000 -0500
++++ docker-1.1.2-1/archive/diff.go	2014-07-25 10:47:07.541198850 -0500
 @@ -9,7 +9,7 @@
  	"strings"
  	"syscall"
@@ -206,9 +195,9 @@ diff -uNr docker-0.12.0/archive/diff.go docker-0.12.0-1/archive/diff.go
  )
  
  // Linux device nodes are a bit weird due to backwards compat with 16 bit device nodes.
-diff -uNr docker-0.12.0/archive/wrap.go docker-0.12.0-1/archive/wrap.go
---- docker-0.12.0/archive/wrap.go	2014-06-05 20:59:19.000000000 -0400
-+++ docker-0.12.0-1/archive/wrap.go	2014-06-08 17:10:11.704568146 -0400
+diff -uNr docker-1.1.2/archive/wrap.go docker-1.1.2-1/archive/wrap.go
+--- docker-1.1.2/archive/wrap.go	2014-07-22 19:29:56.000000000 -0500
++++ docker-1.1.2-1/archive/wrap.go	2014-07-25 10:46:59.077198483 -0500
 @@ -2,7 +2,7 @@
  
  import (
@@ -218,9 +207,9 @@ diff -uNr docker-0.12.0/archive/wrap.go docker-0.12.0-1/archive/wrap.go
  	"io/ioutil"
  )
  
-diff -uNr docker-0.12.0/graph/tags_unit_test.go docker-0.12.0-1/graph/tags_unit_test.go
---- docker-0.12.0/graph/tags_unit_test.go	2014-06-05 20:59:19.000000000 -0400
-+++ docker-0.12.0-1/graph/tags_unit_test.go	2014-06-08 17:10:48.989513208 -0400
+diff -uNr docker-1.1.2/graph/tags_unit_test.go docker-1.1.2-1/graph/tags_unit_test.go
+--- docker-1.1.2/graph/tags_unit_test.go	2014-07-22 19:29:56.000000000 -0500
++++ docker-1.1.2-1/graph/tags_unit_test.go	2014-07-25 10:47:40.758200323 -0500
 @@ -6,7 +6,7 @@
  	_ "github.com/dotcloud/docker/daemon/graphdriver/vfs" // import the vfs driver so it is used in the tests
  	"github.com/dotcloud/docker/image"
@@ -230,33 +219,21 @@ diff -uNr docker-0.12.0/graph/tags_unit_test.go docker-0.12.0-1/graph/tags_unit_
  	"io"
  	"os"
  	"path"
-diff -uNr docker-0.12.0/integration/api_test.go docker-0.12.0-1/integration/api_test.go
---- docker-0.12.0/integration/api_test.go	2014-06-05 20:59:19.000000000 -0400
-+++ docker-0.12.0-1/integration/api_test.go	2014-06-08 17:10:58.148499687 -0400
-@@ -21,7 +21,7 @@
+diff -uNr docker-1.1.2/integration/api_test.go docker-1.1.2-1/integration/api_test.go
+--- docker-1.1.2/integration/api_test.go	2014-07-22 19:29:56.000000000 -0500
++++ docker-1.1.2-1/integration/api_test.go	2014-07-25 10:47:58.985201130 -0500
+@@ -18,7 +18,7 @@
+ 	"github.com/dotcloud/docker/engine"
  	"github.com/dotcloud/docker/image"
  	"github.com/dotcloud/docker/runconfig"
- 	"github.com/dotcloud/docker/utils"
 -	"github.com/dotcloud/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar"
 +	"archive/tar"
  )
  
- func TestGetEvents(t *testing.T) {
-diff -uNr docker-0.12.0/integration/utils_test.go docker-0.12.0-1/integration/utils_test.go
---- docker-0.12.0/integration/utils_test.go	2014-06-05 20:59:19.000000000 -0400
-+++ docker-0.12.0-1/integration/utils_test.go	2014-06-08 17:11:10.725481190 -0400
-@@ -13,7 +13,7 @@
- 	"testing"
- 	"time"
- 
--	"github.com/dotcloud/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar"
-+	"archive/tar"
- 
- 	"github.com/dotcloud/docker/builtins"
- 	"github.com/dotcloud/docker/daemon"
-diff -uNr docker-0.12.0/utils/tarsum.go docker-0.12.0-1/utils/tarsum.go
---- docker-0.12.0/utils/tarsum.go	2014-06-05 20:59:19.000000000 -0400
-+++ docker-0.12.0-1/utils/tarsum.go	2014-06-08 17:11:19.678468002 -0400
+ func TestGetImagesJSON(t *testing.T) {
+diff -uNr docker-1.1.2/utils/tarsum.go docker-1.1.2-1/utils/tarsum.go
+--- docker-1.1.2/utils/tarsum.go	2014-07-22 19:29:56.000000000 -0500
++++ docker-1.1.2-1/utils/tarsum.go	2014-07-25 10:49:00.034203856 -0500
 @@ -5,7 +5,7 @@
  	"compress/gzip"
  	"crypto/sha256"
@@ -266,21 +243,21 @@ diff -uNr docker-0.12.0/utils/tarsum.go docker-0.12.0-1/utils/tarsum.go
  	"hash"
  	"io"
  	"sort"
-diff -uNr docker-0.12.0/utils/tarsum_test.go docker-0.12.0-1/utils/tarsum_test.go
---- docker-0.12.0/utils/tarsum_test.go	2014-06-05 20:59:19.000000000 -0400
-+++ docker-0.12.0-1/utils/tarsum_test.go	2014-06-08 17:11:43.703432620 -0400
-@@ -4,7 +4,7 @@
- 	"bytes"
- 	"crypto/rand"
- 	"fmt"
+diff -uNr docker-1.1.2/utils/tarsum_test.go docker-1.1.2-1/utils/tarsum_test.go
+--- docker-1.1.2/utils/tarsum_test.go	2014-07-22 19:29:56.000000000 -0500
++++ docker-1.1.2-1/utils/tarsum_test.go	2014-07-25 10:49:19.202204685 -0500
+@@ -9,7 +9,7 @@
+ 	"os"
+ 	"testing"
+ 
 -	"github.com/dotcloud/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar"
 +	"archive/tar"
- 	"io"
- 	"io/ioutil"
- 	"os"
+ )
+ 
+ type testLayer struct {
 </code></pre></td></tr></table>
 </div> <!-- class=content -->
-<div class='footer'>generated  by cgit v0.10.1 at 2014-06-09 15:36:25 (GMT)</div>
+<div class='footer'>generated  by cgit v0.10.1 at 2014-08-01 16:04:28 (GMT)</div>
 </div> <!-- id=cgit -->
 </body>
 </html>


More information about the scm-commits mailing list