summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Chaloupka <jchaloup@redhat.com>2015-11-27 13:23:35 +0100
committerJan Chaloupka <jchaloup@redhat.com>2015-11-27 14:08:20 +0100
commit2700494653bf057fb9a4df85ad6fccbe70f75ba2 (patch)
treeebb4ccf912ec2a01cc8a4ba54844898272927e4d
parent611ae455a174d7af13e57fdc01dffeea1b5a71e4 (diff)
downloadrunc-2700494653bf057fb9a4df85ad6fccbe70f75ba2.tar.gz
runc-2700494653bf057fb9a4df85ad6fccbe70f75ba2.tar.xz
runc-2700494653bf057fb9a4df85ad6fccbe70f75ba2.zip
docker/pkg/mount still contains old mount.MountInfo instead of new mount.Info
resolves: #1286114
-rw-r--r--mount.Info-mount.MountInfo.patch25
-rw-r--r--runc.spec46
2 files changed, 51 insertions, 20 deletions
diff --git a/mount.Info-mount.MountInfo.patch b/mount.Info-mount.MountInfo.patch
new file mode 100644
index 0000000..649ed15
--- /dev/null
+++ b/mount.Info-mount.MountInfo.patch
@@ -0,0 +1,25 @@
+From b02a6df2dd9d34717c9bf8a8ab75325380216459 Mon Sep 17 00:00:00 2001
+From: Jan Chaloupka <jchaloup@redhat.com>
+Date: Fri, 27 Nov 2015 13:16:06 +0100
+Subject: [PATCH] mount.Info -> mount.MountInfo
+
+---
+ libcontainer/rootfs_linux.go | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/libcontainer/rootfs_linux.go b/libcontainer/rootfs_linux.go
+index 5a2fad8..e4377cd 100644
+--- a/libcontainer/rootfs_linux.go
++++ b/libcontainer/rootfs_linux.go
+@@ -426,7 +426,7 @@ func mknodDevice(dest string, node *configs.Device) error {
+ return syscall.Chown(dest, int(node.Uid), int(node.Gid))
+ }
+
+-func getMountInfo(mountinfo []*mount.Info, dir string) *mount.Info {
++func getMountInfo(mountinfo []*mount.MountInfo, dir string) *mount.MountInfo {
+ for _, m := range mountinfo {
+ if m.Mountpoint == dir {
+ return m
+--
+1.9.3
+
diff --git a/runc.spec b/runc.spec
index 0457b8b..47d32c2 100644
--- a/runc.spec
+++ b/runc.spec
@@ -29,8 +29,10 @@
%global shortcommit %(c=%{commit}; echo ${c:0:7})
Name: %{repo}
-%if 0%{?fedora}
+%if 0%{?fedora} || 0%{?rhel} == 6
Epoch: 1
+%else
+Epoch: 0
%endif
Version: 0.0.5
Release: 0.1.git%{shortcommit}%{?dist}
@@ -39,6 +41,8 @@ License: ASL 2.0
URL: https://%{provider_prefix}
Source0: https://%{provider_prefix}/archive/%{commit}/%{repo}-%{shortcommit}.tar.gz
+Patch0: mount.Info-mount.MountInfo.patch
+
ExclusiveArch: x86_64
# If go_compiler is not set to 1, there is no virtual provide. Use golang instead.
BuildRequires: %{?go_compiler:compiler(go-compiler)}%{!?go_compiler:golang}
@@ -97,25 +101,25 @@ Requires: golang(github.com/seccomp/libseccomp-golang)
Requires: golang(github.com/syndtr/gocapability/capability)
Requires: golang(github.com/vishvananda/netlink)
-Provides: golang(%{import_path}/libcontainer) = %{version}-%{release}
-Provides: golang(%{import_path}/libcontainer/apparmor) = %{version}-%{release}
-Provides: golang(%{import_path}/libcontainer/cgroups) = %{version}-%{release}
-Provides: golang(%{import_path}/libcontainer/cgroups/fs) = %{version}-%{release}
-Provides: golang(%{import_path}/libcontainer/cgroups/systemd) = %{version}-%{release}
-Provides: golang(%{import_path}/libcontainer/configs) = %{version}-%{release}
-Provides: golang(%{import_path}/libcontainer/configs/validate) = %{version}-%{release}
-Provides: golang(%{import_path}/libcontainer/criurpc) = %{version}-%{release}
-Provides: golang(%{import_path}/libcontainer/devices) = %{version}-%{release}
-Provides: golang(%{import_path}/libcontainer/integration) = %{version}-%{release}
-Provides: golang(%{import_path}/libcontainer/label) = %{version}-%{release}
-Provides: golang(%{import_path}/libcontainer/nsenter) = %{version}-%{release}
-Provides: golang(%{import_path}/libcontainer/seccomp) = %{version}-%{release}
-Provides: golang(%{import_path}/libcontainer/selinux) = %{version}-%{release}
-Provides: golang(%{import_path}/libcontainer/stacktrace) = %{version}-%{release}
-Provides: golang(%{import_path}/libcontainer/system) = %{version}-%{release}
-Provides: golang(%{import_path}/libcontainer/user) = %{version}-%{release}
-Provides: golang(%{import_path}/libcontainer/utils) = %{version}-%{release}
-Provides: golang(%{import_path}/libcontainer/xattr) = %{version}-%{release}
+Provides: golang(%{import_path}/libcontainer) = %{epoch}:%{version}-%{release}
+Provides: golang(%{import_path}/libcontainer/apparmor) = %{epoch}:%{version}-%{release}
+Provides: golang(%{import_path}/libcontainer/cgroups) = %{epoch}:%{version}-%{release}
+Provides: golang(%{import_path}/libcontainer/cgroups/fs) = %{epoch}:%{version}-%{release}
+Provides: golang(%{import_path}/libcontainer/cgroups/systemd) = %{epoch}:%{version}-%{release}
+Provides: golang(%{import_path}/libcontainer/configs) = %{epoch}:%{version}-%{release}
+Provides: golang(%{import_path}/libcontainer/configs/validate) = %{epoch}:%{version}-%{release}
+Provides: golang(%{import_path}/libcontainer/criurpc) = %{epoch}:%{version}-%{release}
+Provides: golang(%{import_path}/libcontainer/devices) = %{epoch}:%{version}-%{release}
+Provides: golang(%{import_path}/libcontainer/integration) = %{epoch}:%{version}-%{release}
+Provides: golang(%{import_path}/libcontainer/label) = %{epoch}:%{version}-%{release}
+Provides: golang(%{import_path}/libcontainer/nsenter) = %{epoch}:%{version}-%{release}
+Provides: golang(%{import_path}/libcontainer/seccomp) = %{epoch}:%{version}-%{release}
+Provides: golang(%{import_path}/libcontainer/selinux) = %{epoch}:%{version}-%{release}
+Provides: golang(%{import_path}/libcontainer/stacktrace) = %{epoch}:%{version}-%{release}
+Provides: golang(%{import_path}/libcontainer/system) = %{epoch}:%{version}-%{release}
+Provides: golang(%{import_path}/libcontainer/user) = %{epoch}:%{version}-%{release}
+Provides: golang(%{import_path}/libcontainer/utils) = %{epoch}:%{version}-%{release}
+Provides: golang(%{import_path}/libcontainer/xattr) = %{epoch}:%{version}-%{release}
%description devel
The runc command can be used to start containers which are packaged
@@ -152,6 +156,7 @@ providing packages with %{import_path} prefix.
%prep
%setup -q -n %{repo}-%{commit}
+%patch0 -p1
%build
mkdir -p src/github.com/opencontainers
@@ -264,6 +269,7 @@ export GOPATH=%{buildroot}/%{gopath}:$(pwd)/Godeps/_workspace:%{gopath}
%changelog
* Wed Nov 25 2015 jchaloup <jchaloup@redhat.com> - 1:0.0.5-0.1.git97bc9a7
- Update to 0.0.5, introduce Epoch for Fedora due to 0.2 version instead of 0.0.2
+ resolves: #1286114
* Fri Aug 21 2015 Jan Chaloupka <jchaloup@redhat.com> - 0.2-0.2.git90e6d37
- First package for Fedora