bump runc commit

Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
Antonio Murdaca 2017-06-02 16:50:35 +02:00
parent f46e0bb7d0
commit c77d04e229
No known key found for this signature in database
GPG Key ID: B2BEAD150DE936B9
3 changed files with 11 additions and 11 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@
/runc-47ea5c7.tar.gz /runc-47ea5c7.tar.gz
/runc-c91b5be.tar.gz /runc-c91b5be.tar.gz
/runc-75f8da7.tar.gz /runc-75f8da7.tar.gz
/runc-6394544.tar.gz

View File

@ -27,7 +27,7 @@
%global provider_prefix %{provider}.%{provider_tld}/%{project}/%{repo} %global provider_prefix %{provider}.%{provider_tld}/%{project}/%{repo}
%global import_path %{provider_prefix} %global import_path %{provider_prefix}
%global git0 https://github.com/opencontainers/runc %global git0 https://github.com/opencontainers/runc
%global commit0 75f8da7c889acc4509a0cf6f0d3a8f9584778375 %global commit0 639454475cb9c8b861cc599f8bcd5c8c790ae402
%global shortcommit0 %(c=%{commit0}; echo ${c:0:7}) %global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
Name: %{repo} Name: %{repo}
@ -35,7 +35,7 @@ Name: %{repo}
Epoch: 1 Epoch: 1
%endif %endif
Version: 1.0.0 Version: 1.0.0
Release: 6.git%{shortcommit0}%{?dist}.1 Release: 7.git%{shortcommit0}%{?dist}.1
Summary: CLI for running Open Containers Summary: CLI for running Open Containers
License: ASL 2.0 License: ASL 2.0
URL: %{git0} URL: %{git0}
@ -123,10 +123,8 @@ Provides: golang(%{import_path}/libcontainer/criurpc) = %{version}-%{release}
Provides: golang(%{import_path}/libcontainer/devices) = %{version}-%{release} Provides: golang(%{import_path}/libcontainer/devices) = %{version}-%{release}
Provides: golang(%{import_path}/libcontainer/integration) = %{version}-%{release} Provides: golang(%{import_path}/libcontainer/integration) = %{version}-%{release}
Provides: golang(%{import_path}/libcontainer/keys) = %{version}-%{release} Provides: golang(%{import_path}/libcontainer/keys) = %{version}-%{release}
Provides: golang(%{import_path}/libcontainer/label) = %{version}-%{release}
Provides: golang(%{import_path}/libcontainer/nsenter) = %{version}-%{release} Provides: golang(%{import_path}/libcontainer/nsenter) = %{version}-%{release}
Provides: golang(%{import_path}/libcontainer/seccomp) = %{version}-%{release} Provides: golang(%{import_path}/libcontainer/seccomp) = %{version}-%{release}
Provides: golang(%{import_path}/libcontainer/selinux) = %{version}-%{release}
Provides: golang(%{import_path}/libcontainer/specconv) = %{version}-%{release} Provides: golang(%{import_path}/libcontainer/specconv) = %{version}-%{release}
Provides: golang(%{import_path}/libcontainer/stacktrace) = %{version}-%{release} Provides: golang(%{import_path}/libcontainer/stacktrace) = %{version}-%{release}
Provides: golang(%{import_path}/libcontainer/system) = %{version}-%{release} Provides: golang(%{import_path}/libcontainer/system) = %{version}-%{release}
@ -249,22 +247,20 @@ export GOPATH=%{buildroot}/%{gopath}:$(pwd)/Godeps/_workspace:%{gopath}
# FAIL: TestFactoryNewTmpfs (0.00s), factory_linux_test.go:59: operation not permitted # FAIL: TestFactoryNewTmpfs (0.00s), factory_linux_test.go:59: operation not permitted
#%%gotest %%{import_path}/libcontainer #%%gotest %%{import_path}/libcontainer
%gotest %{import_path}/libcontainer/cgroups #%gotest %{import_path}/libcontainer/cgroups
# --- FAIL: TestInvalidCgroupPath (0.00s) # --- FAIL: TestInvalidCgroupPath (0.00s)
# apply_raw_test.go:16: couldn't get cgroup root: mountpoint for cgroup not found # apply_raw_test.go:16: couldn't get cgroup root: mountpoint for cgroup not found
# apply_raw_test.go:25: couldn't get cgroup data: mountpoint for cgroup not found # apply_raw_test.go:25: couldn't get cgroup data: mountpoint for cgroup not found
#%%gotest %%{import_path}/libcontainer/cgroups/fs #%%gotest %%{import_path}/libcontainer/cgroups/fs
%gotest %{import_path}/libcontainer/configs #%gotest %{import_path}/libcontainer/configs
%gotest %{import_path}/libcontainer/devices #%gotest %{import_path}/libcontainer/devices
# undefined reference to `nsexec' # undefined reference to `nsexec'
#%%gotest %%{import_path}/libcontainer/integration #%%gotest %%{import_path}/libcontainer/integration
%gotest %{import_path}/libcontainer/label
# Unable to create tstEth link: operation not permitted # Unable to create tstEth link: operation not permitted
#%%gotest %%{import_path}/libcontainer/netlink #%%gotest %%{import_path}/libcontainer/netlink
# undefined reference to `nsexec' # undefined reference to `nsexec'
#%%gotest %%{import_path}/libcontainer/nsenter #%%gotest %%{import_path}/libcontainer/nsenter
%gotest %{import_path}/libcontainer/selinux #%gotest %{import_path}/libcontainer/stacktrace
%gotest %{import_path}/libcontainer/stacktrace
#constant 2147483648 overflows int #constant 2147483648 overflows int
#%%gotest %%{import_path}/libcontainer/user #%%gotest %%{import_path}/libcontainer/user
#%%gotest %%{import_path}/libcontainer/utils #%%gotest %%{import_path}/libcontainer/utils
@ -296,6 +292,9 @@ export GOPATH=%{buildroot}/%{gopath}:$(pwd)/Godeps/_workspace:%{gopath}
%endif %endif
%changelog %changelog
* Fri Jun 02 2017 Antonio Murdaca <runcom@fedoraproject.org> - 1:1.0.0-7.git6394544.1
- rebuilt
* Fri Mar 24 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1:1.0.0-6.git75f8da7 * Fri Mar 24 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1:1.0.0-6.git75f8da7
- bump to v1.0.0-rc3 - bump to v1.0.0-rc3
- built opencontainers/v1.0.0-rc3 commit 75f8da7 - built opencontainers/v1.0.0-rc3 commit 75f8da7

View File

@ -1 +1 @@
SHA512 (runc-75f8da7.tar.gz) = 8898a4c8c70fb409a0bf65436cc812ca3d190e1c206462ca9d4a1766a8abf7da61f3d219d83eb015167c146e04e8753e7da2c9cf0058bfdbe444bb5a3c2ca8df SHA512 (runc-6394544.tar.gz) = 9a57f03e66c522f0f19f81cae1a3b714bda471a0372440211f1cd687907d6fae3d7e01dc74bee53daa63668782c012f04e669951c30d1c2436ede55728c77a55