From 278f41c3ddd37f3c0a1f078ace1023284a3ad805 Mon Sep 17 00:00:00 2001 From: tigro Date: Fri, 10 Jan 2025 21:44:26 +0300 Subject: [PATCH] import runc-1.2.4-1.el10 --- .gitignore | 2 +- .runc.metadata | 2 +- SPECS/runc.spec | 1719 +++++++++++++++++++++++++++++++---------------- 3 files changed, 1159 insertions(+), 564 deletions(-) diff --git a/.gitignore b/.gitignore index d9972d0..6d3f633 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -SOURCES/v1.1.12.tar.gz +SOURCES/runc-1.2.4.tar.gz diff --git a/.runc.metadata b/.runc.metadata index 88ea42c..eb080fb 100644 --- a/.runc.metadata +++ b/.runc.metadata @@ -1 +1 @@ -3fac650358578b8694012a44b1d5b156523c3402 SOURCES/v1.1.12.tar.gz +14c6119053012f4072aed8dbb9fd47b57c47279b SOURCES/runc-1.2.4.tar.gz diff --git a/SPECS/runc.spec b/SPECS/runc.spec index 78bb927..236ce47 100644 --- a/SPECS/runc.spec +++ b/SPECS/runc.spec @@ -1,12 +1,20 @@ -%global with_check 0 - -%if 0%{?rhel} > 7 && ! 0%{?fedora} -%define gobuild(o:) \ -go build -buildmode pie -compiler gc -tags="rpm_crashtraceback libtrust_openssl ${BUILDTAGS:-}" -ldflags "${LDFLAGS:-} -linkmode=external -compressdwarf=false -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -extldflags '%__global_ldflags'" -a -v %{?**}; +## START: Set by rpmautospec +## (rpmautospec version 0.7.3) +## RPMAUTOSPEC: autorelease, autochangelog +%define autorelease(e:s:pb:n) %{?-p:0.}%{lua: + release_number = 1; + base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}")); + print(release_number + base_release_number - 1); +}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}} +## END: Set by rpmautospec + +%global with_debug 0 + +%if 0%{?with_debug} +%global _find_debuginfo_dwz_opts %{nil} +%global _dwz_low_mem_die_limit 0 %else -%if ! 0%{?gobuild:1} -%define gobuild(o:) GO111MODULE=off go build -buildmode pie -compiler gc -tags="rpm_crashtraceback ${BUILDTAGS:-}" -ldflags "${LDFLAGS:-} -linkmode=external -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -extldflags '-Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld '" -a -v %{?**}; -%endif +%global debug_package %{nil} %endif %global provider github @@ -14,31 +22,31 @@ go build -buildmode pie -compiler gc -tags="rpm_crashtraceback libtrust_openssl %global project opencontainers %global repo runc # https://github.com/opencontainers/runc -%global import_path %{provider}.%{provider_tld}/%{project}/%{repo} -%global git0 https://%{import_path} +%global provider_prefix %{provider}.%{provider_tld}/%{project}/%{repo} +%global import_path %{provider_prefix} +%global git0 https://github.com/opencontainers/runc -Epoch: 4 Name: %{repo} -Version: 1.1.12 -Release: 4%{?dist} +Epoch: 2 +Version: 1.2.4 +Release: %autorelease Summary: CLI for running Open Containers -# https://fedoraproject.org/wiki/PackagingDrafts/Go#Go_Language_Architectures -#ExclusiveArch: %%{go_arches} -# still use arch exclude as the macro above still refers %%{ix86} in RHEL8.4: -# https://bugzilla.redhat.com/show_bug.cgi?id=1905383 -ExcludeArch: %{ix86} -License: ASL 2.0 +License: Apache-2.0 and BSD-2-Clause and BSD-3-Clause and MIT URL: %{git0} -Source0: %{git0}/archive/v%{version}.tar.gz +Source0: %{git0}/archive/v%{version}/%{name}-%{version}.tar.gz +ExclusiveArch: %{golang_arches_future} +# 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} +BuildRequires: pkgconfig(libseccomp) +BuildRequires: go-md2man +BuildRequires: make Provides: oci-runtime -BuildRequires: golang >= 1.20.10 -BuildRequires: git -BuildRequires: /usr/bin/go-md2man -BuildRequires: libseccomp-devel >= 2.5 -BuildRequires: container-selinux >= 2.224.0 -Requires: libseccomp >= 2.5 + +Recommends: container-selinux >= 2:2.85-1 + +%ifnarch s390x Recommends: criu -Requires: container-selinux >= 2.224.0 +%endif %description The runc command can be used to start containers which are packaged @@ -46,10 +54,21 @@ in accordance with the Open Container Initiative's specifications, and to manage containers running under runc. %prep -%autosetup -Sgit -sed -i '/\#\!\/bin\/bash/d' contrib/completions/bash/%{name} +%autosetup -p1 -n %{name}-%{version} +sed -i 's/ -trimpath//g' Makefile %build +%set_build_flags +export CGO_CFLAGS=$CFLAGS +# These extra flags present in $CFLAGS have been skipped for now as they break the build +CGO_CFLAGS=$(echo $CGO_CFLAGS | sed 's/-flto=auto//g') +CGO_CFLAGS=$(echo $CGO_CFLAGS | sed 's/-Wp,D_GLIBCXX_ASSERTIONS//g') +CGO_CFLAGS=$(echo $CGO_CFLAGS | sed 's/-specs=\/usr\/lib\/rpm\/redhat\/redhat-annobin-cc1//g') + +%ifarch x86_64 +export CGO_CFLAGS+=" -m64 -mtune=generic -fcf-protection=full" +%endif + mkdir -p GOPATH pushd GOPATH mkdir -p src/%{provider}.%{provider_tld}/%{project} @@ -57,1266 +76,1842 @@ pushd GOPATH popd pushd GOPATH/src/%{import_path} -export GO111MODULE=off -export GOPATH=%{gopath}:$(pwd)/GOPATH -export CGO_CFLAGS="%{optflags} -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64" -export BUILDTAGS="selinux seccomp runc_dmz_selinux_nocompat" -export LDFLAGS="-X main.gitCommit= -X main.version=%{version}" -%gobuild -o %{name} %{import_path} - -pushd man -./md2man-all.sh -popd +export GOPATH=$(pwd)/GOPATH + +%make_build runc + +sed -i '/\#\!\/bin\/bash/d' contrib/completions/bash/%{name} %install -make install install-man install-bash DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} LIBDIR=%{_libdir} BINDIR=%{_bindir} +install -d -p %{buildroot}%{_bindir} +install -p -m 755 %{name} %{buildroot}%{_bindir} -%check +# generate man pages +man/md2man-all.sh + +# install man pages +install -d -p %{buildroot}%{_mandir}/man8 +install -p -m 0644 man/man8/*.8 %{buildroot}%{_mandir}/man8/. +# install bash completion +install -d -p %{buildroot}%{_datadir}/bash-completion/completions +install -p -m 0644 contrib/completions/bash/%{name} %{buildroot}%{_datadir}/bash-completion/completions #define license tag if not already defined %{!?_licensedir:%global license %doc} %files -%license LICENSE +%license LICENSE vendor/modules.txt %doc MAINTAINERS_GUIDE.md PRINCIPLES.md README.md CONTRIBUTING.md %{_bindir}/%{name} %{_mandir}/man8/%{name}* %{_datadir}/bash-completion/completions/%{name} %changelog -* Tue Jul 23 2024 Jindrich Novy - 4:1.1.12-4 -- rebuild for CVE-2024-24783 -- Resolves: RHEL-28439 - -* Fri Jun 21 2024 Jindrich Novy - 4:1.1.12-3 -- rebuild for CVE-2024-1394 -- Resolves: RHEL-24320 - -* Fri Feb 16 2024 Jindrich Novy - 4:1.1.12-2 -- Switch dependency on criu to Recommends -- Resolves: RHEL-25116 - -* Thu Feb 01 2024 Jindrich Novy - 4:1.1.12-1 -- update to https://github.com/opencontainers/runc/releases/tag/v1.1.12 -- Related: RHEL-2112 - -* Tue Jan 02 2024 Jindrich Novy - 4:1.1.11-1 -- update to https://github.com/opencontainers/runc/releases/tag/v1.1.11 -- Related: RHEL-2112 - -* Sat Dec 02 2023 Lokesh Mandvekar - 4:1.1.10-3 -- Rebuild for CVEs: CVE-2023-39321 CVE-2023-39322 CVE-2023-29409 -- Related: Jira:RHEL-2792 -- Related: Jira:RHEL-7454 - -* Fri Nov 03 2023 Jindrich Novy - 4:1.1.10-2 -- require container-selinux >= 2.224.0 for dmz feature -- Related: Jira:RHEL-2112 - -* Wed Nov 01 2023 Jindrich Novy - 4:1.1.10-1 -- update to https://github.com/opencontainers/runc/releases/tag/v1.1.10 -- Related: RHEL-2112 - -* Fri Aug 11 2023 Jindrich Novy - 4:1.1.9-1 -- update to https://github.com/opencontainers/runc/releases/tag/v1.1.9 -- Related: #2176063 - -* Fri Jul 21 2023 Jindrich Novy - 4:1.1.8-1 -- update to https://github.com/opencontainers/runc/releases/tag/v1.1.8 -- Related: #2176063 - -* Wed Jun 14 2023 Jindrich Novy - 4:1.1.7-2 -- rebuild for following CVEs: -CVE-2021-43784 CVE-2022-41724 CVE-2023-28642 -- Resolves: #2033659 -- Resolves: #2179973 -- Resolves: #2183103 - -* Tue May 02 2023 Jindrich Novy - 4:1.1.7-1 -- update to https://github.com/opencontainers/runc/releases/tag/v1.1.7 -- Related: #2176063 - -* Wed Apr 12 2023 Jindrich Novy - 4:1.1.6-1 -- update to https://github.com/opencontainers/runc/releases/tag/v1.1.6 -- Related: #2176063 - -* Fri Mar 31 2023 Jindrich Novy - 4:1.1.5-2 -- runc 1.1.5 resolves CVE-2023-25809 and CVE-2023-27561 -- Resolves: #2176110 -- Resolves: #2183098 - -* Wed Mar 29 2023 Jindrich Novy - 4:1.1.5-1 -- update to https://github.com/opencontainers/runc/releases/tag/v1.1.5 -- Related: #2176063 +* Fri Jan 10 2025 Arkady L. Shane - 1.2.4-1 +- Rebuilt for MSVSphere 10 + +## START: Generated by rpmautospec +* Tue Jan 07 2025 Packit - 2:1.2.4-1 +- Update to 1.2.4 upstream release +- Resolves: rhbz#2336092 + +* Wed Dec 11 2024 Packit - 2:1.2.3-1 +- Update to 1.2.3 upstream release +- Resolves: rhbz#2331631 + +* Sat Nov 16 2024 Packit - 2:1.2.2-1 +- Update to 1.2.2 upstream release +- Resolves: rhbz#2326654 + +* Sun Nov 03 2024 Packit - 2:1.2.1-1 +- Update to 1.2.1 upstream release +- Resolves: rhbz#2224310 + +* Fri Oct 11 2024 Bradley G Smith - 2:1.1.15-1 +- Update to v1.1.15 +- It fixes a few issues with seccomp, leaked mounts, and system + performance. See upstream change log. + +* Tue Sep 10 2024 Bradley G Smith - 2:1.1.14-2 +- Drop unneeded test binaries and unneeded build tags + +* Mon Sep 09 2024 Bradley G Smith - 2:1.1.14-1 +- Update to v1.1.14, autogenerate bundled vendor provides + +* Mon Sep 09 2024 Bradley G Smith - 2:1.1.12-5 +- Implement automated bundled provides + +* Fri Jul 19 2024 Fedora Release Engineering - 2:1.1.12-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Sun Feb 11 2024 Maxwell G - 2:1.1.12-3 +- Rebuild for golang 1.22.0 + +* Fri Feb 02 2024 Lokesh Mandvekar - 2:1.1.12-2 +- add packit config to pull new releases from upstream + +* Thu Feb 01 2024 Lokesh Mandvekar - 2:1.1.12-1 +- bump to v1.1.12 + +* Fri Jan 26 2024 Fedora Release Engineering - 2:1.1.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Mon Sep 11 2023 Davanum Srinivas - 2:1.1.9-1 +- Update to runc 1.1.9 version + +* Fri Aug 25 2023 fedora Cloud User - 2:1.1.8-1 +- Update to runc 1.1.8 version + +* Fri Jul 21 2023 Fedora Release Engineering - 2:1.1.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Fri Apr 28 2023 RH Container Bot - 2:1.1.7-1 +- auto bump to v1.1.7 + +* Wed Apr 12 2023 Lokesh Mandvekar - 2:1.1.6-1 +- Resolves: #2175994, #2182701 + +* Tue Apr 11 2023 Lokesh Mandvekar - 2:1.1.5-2 +- switch to autospec, remove unnecessary conditionals + +* Thu Apr 06 2023 Sonia Xu - 2:1.1.5-1 +- Update to 1.1.5 + +* Mon Mar 06 2023 Lokesh Mandvekar - 2:1.1.4-5 +- migrated to SPDX license + +* Fri Jan 20 2023 Fedora Release Engineering - 2:1.1.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Fri Oct 28 2022 Troy Dawson - 2:1.1.4-3 +- Update ExclusiveArch + +* Sun Oct 16 2022 Maxwell G - 2:1.1.4-2 +- Update bundled(golang(...)) Provides + +* Sat Oct 15 2022 Jan Kuparinen - 2:1.1.4-1 +- Update to 1.1.4. + +* Tue Aug 09 2022 Maxwell G - 2:1.1.3-2 +- Fix source tarball + +* Mon Aug 08 2022 Maxwell G - 2:1.1.3-1 +- Update to 1.1.3. + +* Sat Jul 23 2022 Fedora Release Engineering - 2:1.1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Tue Jul 19 2022 Maxwell G - 2:1.1.2-2 +- Rebuild for + CVE-2022-{1705,32148,30631,30633,28131,30635,30632,30630,1962} in golang + +* Mon Jun 27 2022 Maxwell G - 2:1.1.2-1 +- Update to 1.1.2. Fixes rhbz#2069648. + +* Sat Jun 18 2022 Robert-André Mauchin - 2:1.1.1-2 +- Rebuilt for CVE-2022-1996, CVE-2022-24675, CVE-2022-28327, + CVE-2022-27191, CVE-2022-29526, CVE-2022-30629 + +* Tue Mar 29 2022 Lokesh Mandvekar - 2:1.1.1-1 +- runc-2:1.1.1-1 +- Bump to v1.1.1 +- add hardening flags +- remove unused packages +- update license and bundled provides + +* Fri Jan 21 2022 Fedora Release Engineering - 2:1.1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Mon Jan 17 2022 RH Container Bot - 2:1.1.0-2 +- runc-2:1.1.0-1 + +* Tue Dec 14 2021 RH Container Bot - 2:1.1.0-1 +- runc-2:1.1.0-0.1.rc.1 + +* Mon Dec 06 2021 RH Container Bot - 2:1.0.3-1 +- runc-2:1.0.3-1 + +* Fri Sep 10 2021 Lokesh Mandvekar - 2:1.0.2-2 +- runc-2:1.0.2-2 +- use correct v1.0.2 tarball, move trimpath patch in-rpm-spec + +* Fri Sep 10 2021 RH Container Bot - 2:1.0.2-1 +- runc-2:1.0.2-1 + +* Fri Jul 23 2021 Fedora Release Engineering - 2:1.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Mon Jul 19 2021 Daniel J Walsh - 2:1.0.1-1 +- bump to runc-1.0.1 + +* Wed Jun 30 2021 Peter Hunt - 2:1.0.0-393 +- bump to v1.0.0 + +* Thu May 20 2021 Peter Hunt - 2:1.0.0-392 +- fix debuginfo generation + +* Wed May 19 2021 Peter Hunt - 2:1.0.0-391 +- add sources for rc95 + +* Wed May 19 2021 Peter Hunt - 2:1.0.0-390 +- bump to v1.0.0-rc95 + +* Wed Apr 21 2021 Lokesh Mandvekar - 2:1.0.0-389 +- use deprecated changelog format -* Tue Feb 07 2023 Jindrich Novy - 4:1.1.4-2 -- rebuild -- Resolves: #2102995 +* Wed Apr 21 2021 Lokesh Mandvekar - 2:1.0.0-388 +- adjust criu dep for centos7 -* Fri Aug 26 2022 Jindrich Novy - 4:1.1.4-1 -- update to https://github.com/opencontainers/runc/releases/tag/v1.1.4 -- Related: #2061316 +* Wed Apr 21 2021 Lokesh Mandvekar - 2:1.0.0-387 +- disable debuginfo for non-fedora -* Wed Jul 27 2022 Jindrich Novy - 4:1.1.3-2 -- add patch in attempt to fix gating tests - thanks to Kir Kolyshkin -- Related: #2061316 +* Wed Apr 21 2021 Lokesh Mandvekar - 2:1.0.0-386 +- adjust golang dep for centos -* Thu Jun 09 2022 Jindrich Novy - 4:1.1.3-1 -- update to https://github.com/opencontainers/runc/releases/tag/v1.1.3 -- Related: #2061316 +* Wed Apr 21 2021 Lokesh Mandvekar - 2:1.0.0-385 +- adjust dep for centos 7 -* Thu Jun 02 2022 Jindrich Novy - 4:1.1.2-1 -- update to https://github.com/opencontainers/runc/releases/tag/v1.1.2 -- Related: #2061316 +* Wed Apr 21 2021 Lokesh Mandvekar - 2:1.0.0-384 +- import source tarball -* Fri May 13 2022 Jindrich Novy - 4:1.0.3-5 -- Re-enable debuginfo -- Related: #2061316 +* Wed Apr 21 2021 Lokesh Mandvekar - 2:1.0.0-383 +- runc-2:1.0.0-377.rc93 +- add Provides: oci-runtime in the right place -* Wed May 11 2022 Jindrich Novy - 4:1.0.3-4 -- BuildRequires: /usr/bin/go-md2man -- Related: #2061316 +* Tue Apr 13 2021 Lokesh Mandvekar - 2:1.0.0-382 +- runc-2:1.0.0-376.dev.git12644e6 +- unversioned Provides: oci-runtime +- runc package will also provide an unversioned Provides: oci-runtime. +- user should pull in runc separately or else it will install crun by + default (alphabetical order) +- similar situation as caddy, httpd, lighttpd and nginx having Provides: + webserver -* Wed Feb 16 2022 Jindrich Novy - 4:1.0.3-3 -- rollback runc due to failing gating tests -- Related: #2000051 +* Mon Apr 05 2021 Peter Hunt - 2:1.0.0-381 +- bump to v1.0.0-rc93 -* Wed Jan 26 2022 Jindrich Novy - 3:1.1.0-2 -- Epoch: 3 as the oldest runc build in RHEL9 has Epoch: 2 -- Related: #2000051 +* Mon Apr 05 2021 Peter Hunt - 2:1.0.0-380 +- remove stale cgroups-v2.patch -* Tue Jan 18 2022 Jindrich Novy - 1.1.0-1 -- update to https://github.com/opencontainers/runc/releases/tag/v1.1.0 -- Related: #2000051 +* Mon Apr 05 2021 Peter Hunt - 2:1.0.0-379 +- Patch: revert https://github.com/opencontainers/runc/pull/2773 -* Mon Dec 06 2021 Jindrich Novy - 1.0.3-1 -- update to https://github.com/opencontainers/runc/releases/tag/v1.0.3 -- Related: #2000051 +* Tue Feb 02 2021 RH Container Bot - 2:1.0.0-378 +- runc-2:1.0.0-373.dev.git7e3c3e8 +- autobuilt 7e3c3e8 -* Fri Oct 01 2021 Jindrich Novy - 1.0.2-3 -- perform only sanity/installability tests for now -- Related: #2000051 +* Mon Feb 01 2021 RH Container Bot - 2:1.0.0-377 +- runc-2:1.0.0-372.dev.gitcc988c1 +- autobuilt cc988c1 -* Wed Sep 29 2021 Jindrich Novy - 1.0.2-2 -- add gating.yaml -- Related: #2000051 +* Mon Feb 01 2021 RH Container Bot - 2:1.0.0-376 +- runc-2:1.0.0-371.dev.git6c85f63 +- autobuilt 6c85f63 -* Fri Sep 03 2021 Jindrich Novy - 1.0.2-1 -- update to https://github.com/opencontainers/runc/releases/tag/v1.0.2 -- Related: #2000051 +* Mon Feb 01 2021 RH Container Bot - 2:1.0.0-375 +- runc-2:1.0.0-370.dev.git4074b47 +- autobuilt 4074b47 -* Tue Aug 10 2021 Mohan Boddu - 1.0.1-6 -- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags - Related: rhbz#1991688 +* Mon Feb 01 2021 RH Container Bot - 2:1.0.0-374 +- runc-2:1.0.0-369.dev.git2046f26 +- autobuilt 2046f26 -* Fri Aug 06 2021 Jindrich Novy - 1.0.1-5 -- do not use versioned provide -- Resolves: #1974950 +* Mon Feb 01 2021 RH Container Bot - 2:1.0.0-373 +- runc-2:1.0.0-368.dev.git091dd32 +- autobuilt 091dd32 -* Thu Jul 29 2021 Jindrich Novy - 1.0.1-4 -- fix "unknown version" displayed by runc -v -- Related: #1970747 +* Mon Feb 01 2021 RH Container Bot - 2:1.0.0-372 +- runc-2:1.0.0-367.dev.gita4f2b2b +- autobuilt a4f2b2b -* Mon Jul 26 2021 Jindrich Novy - 1.0.1-3 -- be sure to compile runc binaries the right way -- Related: #1970747 +* Sun Jan 31 2021 RH Container Bot - 2:1.0.0-371 +- runc-2:1.0.0-366.dev.gitc531a6f +- autobuilt c531a6f -* Mon Jul 26 2021 Jindrich Novy - 1.0.1-2 -- use Makefile -- Related: #1970747 +* Sat Jan 30 2021 RH Container Bot - 2:1.0.0-370 +- runc-2:1.0.0-365.dev.gite17b96d +- autobuilt e17b96d -* Mon Jul 19 2021 Jindrich Novy - 1.0.1-1 -- update to https://github.com/opencontainers/runc/releases/tag/v1.0.1 -- Related: #1970747 +* Fri Jan 29 2021 RH Container Bot - 2:1.0.0-369 +- runc-2:1.0.0-364.dev.gite7bd1fb +- autobuilt e7bd1fb -* Wed Jun 23 2021 Lokesh Mandvekar - 1.0.0-338.rc95 -- Resolves: #1974950 - versionless oci-runtime +* Fri Jan 29 2021 RH Container Bot - 2:1.0.0-368 +- runc-2:1.0.0-363.dev.git8e062f1 +- autobuilt 8e062f1 -* Tue Jun 22 2021 Mohan Boddu - 1.0.0-337.rc95 -- Rebuilt for RHEL 9 BETA for openssl 3.0 - Related: rhbz#1971065 +* Fri Jan 29 2021 RH Container Bot - 2:1.0.0-367 +- runc-2:1.0.0-362.dev.git8bbfde8 +- autobuilt 8bbfde8 -* Mon Jun 14 2021 Jindrich Novy - 1.0.0-336.rc95 -- add GO111MODULE=off -- Related: #1970747 +* Wed Jan 27 2021 RH Container Bot - 2:1.0.0-366 +- runc-2:1.0.0-361.dev.git5ef136f +- autobuilt 5ef136f -* Fri Apr 16 2021 Mohan Boddu - 2:1.0.0-332.dev.gitbd013b6 -- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937 +* Wed Jan 27 2021 RH Container Bot - 2:1.0.0-365 +- runc-2:1.0.0-360.dev.git346f87f +- autobuilt 346f87f -* Fri Feb 19 2021 Jindrich Novy - 2:1.0.0-331.dev.gitbd013b6 -- use %%{go_arches} +* Wed Jan 27 2021 RH Container Bot - 2:1.0.0-364 +- runc-2:1.0.0-359.dev.git6721470 +- autobuilt 6721470 -* Thu Dec 3 2020 RH Container Bot - 2:1.0.0-330.dev.gitbd013b6 +* Tue Jan 26 2021 RH Container Bot - 2:1.0.0-363 +- runc-2:1.0.0-358.dev.gitbe30b6e +- autobuilt be30b6e + +* Fri Jan 22 2021 RH Container Bot - 2:1.0.0-362 +- runc-2:1.0.0-357.dev.gitc69ae75 +- autobuilt c69ae75 + +* Fri Jan 22 2021 RH Container Bot - 2:1.0.0-361 +- runc-2:1.0.0-356.dev.git5d6d1be +- autobuilt 5d6d1be + +* Thu Jan 21 2021 RH Container Bot - 2:1.0.0-360 +- runc-2:1.0.0-355.dev.git2adbc66 +- autobuilt 2adbc66 + +* Thu Jan 21 2021 RH Container Bot - 2:1.0.0-359 +- runc-2:1.0.0-354.dev.gitd9751a9 +- autobuilt d9751a9 + +* Wed Jan 20 2021 RH Container Bot - 2:1.0.0-358 +- runc-2:1.0.0-353.dev.git1a90116 +- autobuilt 1a90116 + +* Wed Jan 20 2021 RH Container Bot - 2:1.0.0-357 +- runc-2:1.0.0-352.dev.git6e04ad7 +- autobuilt 6e04ad7 + +* Tue Jan 19 2021 RH Container Bot - 2:1.0.0-356 +- runc-2:1.0.0-351.dev.git1814816 +- autobuilt 1814816 + +* Sat Jan 16 2021 RH Container Bot - 2:1.0.0-355 +- runc-2:1.0.0-350.dev.git49cc2a2 +- autobuilt 49cc2a2 + +* Fri Jan 15 2021 RH Container Bot - 2:1.0.0-354 +- runc-2:1.0.0-349.dev.git7590a3f +- autobuilt 7590a3f + +* Thu Jan 14 2021 RH Container Bot - 2:1.0.0-353 +- runc-2:1.0.0-348.dev.gitdbbe7e6 +- autobuilt dbbe7e6 + +* Thu Jan 14 2021 RH Container Bot - 2:1.0.0-352 +- runc-2:1.0.0-347.dev.git364ada6 +- autobuilt 364ada6 + +* Wed Jan 13 2021 RH Container Bot - 2:1.0.0-351 +- runc-2:1.0.0-346.dev.git555840a +- autobuilt 555840a + +* Wed Jan 13 2021 RH Container Bot - 2:1.0.0-350 +- runc-2:1.0.0-345.dev.gitf973238 +- autobuilt f973238 + +* Mon Jan 11 2021 RH Container Bot - 2:1.0.0-349 +- runc-2:1.0.0-344.dev.git9712205 +- autobuilt 9712205 + +* Wed Jan 06 2021 RH Container Bot - 2:1.0.0-348 +- runc-2:1.0.0-343.dev.git04b7b7d +- autobuilt 04b7b7d + +* Mon Jan 04 2021 RH Container Bot - 2:1.0.0-347 +- runc-2:1.0.0-342.dev.git09523b7 +- autobuilt 09523b7 + +* Tue Dec 22 2020 RH Container Bot - 2:1.0.0-346 +- runc-2:1.0.0-341.dev.git5efdc0c +- autobuilt 5efdc0c + +* Fri Dec 18 2020 RH Container Bot - 2:1.0.0-345 +- runc-2:1.0.0-340.dev.git77b5d8a +- autobuilt 77b5d8a + +* Fri Dec 18 2020 RH Container Bot - 2:1.0.0-344 +- runc-2:1.0.0-339.dev.git2e1c1de +- autobuilt 2e1c1de + +* Fri Dec 18 2020 RH Container Bot - 2:1.0.0-343 +- runc-2:1.0.0-338.dev.git2a9d781 +- autobuilt 2a9d781 + +* Thu Dec 10 2020 Matyáš Kroupa - 2:1.0.0-342 +- Bump release + +* Thu Dec 10 2020 Matyáš Kroupa - 2:1.0.0-341 +- Remove cgroupv2.patch + +* Tue Dec 08 2020 RH Container Bot - 2:1.0.0-340 +- runc-2:1.0.0-336.dev.git544048b +- autobuilt 544048b + +* Mon Dec 07 2020 RH Container Bot - 2:1.0.0-339 +- runc-2:1.0.0-335.dev.git4d8d989 +- autobuilt 4d8d989 + +* Sat Dec 05 2020 RH Container Bot - 2:1.0.0-338 +- runc-2:1.0.0-334.dev.gitb923ff4 +- autobuilt b923ff4 + +* Fri Dec 04 2020 RH Container Bot - 2:1.0.0-337 +- runc-2:1.0.0-333.dev.git4b055ff +- autobuilt 4b055ff + +* Fri Dec 04 2020 RH Container Bot - 2:1.0.0-336 +- runc-2:1.0.0-332.dev.git166068a +- autobuilt 166068a + +* Fri Dec 04 2020 RH Container Bot - 2:1.0.0-335 +- runc-2:1.0.0-331.dev.git8518317 +- autobuilt 8518317 + +* Thu Dec 03 2020 RH Container Bot - 2:1.0.0-334 +- runc-2:1.0.0-330.dev.gitbd013b6 - autobuilt bd013b6 -* Wed Dec 2 2020 RH Container Bot - 2:1.0.0-329.dev.git56a1f1f +* Wed Dec 02 2020 RH Container Bot - 2:1.0.0-333 +- runc-2:1.0.0-329.dev.git56a1f1f - autobuilt 56a1f1f -* Wed Dec 2 2020 RH Container Bot - 2:1.0.0-328.dev.git3517877 +* Wed Dec 02 2020 RH Container Bot - 2:1.0.0-332 +- runc-2:1.0.0-328.dev.git3517877 - autobuilt 3517877 -* Wed Dec 2 2020 RH Container Bot - 2:1.0.0-327.dev.git2a50985 +* Wed Dec 02 2020 RH Container Bot - 2:1.0.0-331 +- runc-2:1.0.0-327.dev.git2a50985 - autobuilt 2a50985 -* Mon Nov 30 2020 RH Container Bot - 2:1.0.0-326.dev.git2b92c25 +* Mon Nov 30 2020 RH Container Bot - 2:1.0.0-330 +- runc-2:1.0.0-326.dev.git2b92c25 - autobuilt 2b92c25 -* Mon Nov 30 2020 RH Container Bot - 2:1.0.0-325.dev.git7cfb3dc +* Mon Nov 30 2020 RH Container Bot - 2:1.0.0-329 +- runc-2:1.0.0-325.dev.git7cfb3dc - autobuilt 7cfb3dc -* Tue Nov 24 2020 RH Container Bot - 2:1.0.0-324.dev.git06b737b +* Tue Nov 24 2020 RH Container Bot - 2:1.0.0-328 +- runc-2:1.0.0-324.dev.git06b737b - autobuilt 06b737b -* Mon Nov 23 2020 RH Container Bot - 2:1.0.0-323.dev.gitd15ffff +* Mon Nov 23 2020 RH Container Bot - 2:1.0.0-327 +- runc-2:1.0.0-323.dev.gitd15ffff - autobuilt d15ffff -* Mon Nov 23 2020 RH Container Bot - 2:1.0.0-322.dev.git0b11e29 +* Mon Nov 23 2020 RH Container Bot - 2:1.0.0-326 +- runc-2:1.0.0-322.dev.git0b11e29 - autobuilt 0b11e29 -* Fri Nov 20 2020 RH Container Bot - 2:1.0.0-321.dev.gitb69070a +* Fri Nov 20 2020 RH Container Bot - 2:1.0.0-325 +- runc-2:1.0.0-321.dev.gitb69070a - autobuilt b69070a -* Wed Nov 18 2020 RH Container Bot - 2:1.0.0-320.dev.git689513c +* Wed Nov 18 2020 RH Container Bot - 2:1.0.0-324 +- runc-2:1.0.0-320.dev.git689513c - autobuilt 689513c -* Wed Nov 11 2020 RH Container Bot - 2:1.0.0-319.dev.git636f23d +* Wed Nov 11 2020 RH Container Bot - 2:1.0.0-323 +- runc-2:1.0.0-319.dev.git636f23d - autobuilt 636f23d -* Tue Nov 10 2020 RH Container Bot - 2:1.0.0-318.dev.git30233a7 +* Tue Nov 10 2020 RH Container Bot - 2:1.0.0-322 +- runc-2:1.0.0-318.dev.git30233a7 - autobuilt 30233a7 -* Sat Nov 7 2020 RH Container Bot - 2:1.0.0-317.dev.git27227a9 +* Sat Nov 07 2020 RH Container Bot - 2:1.0.0-321 +- runc-2:1.0.0-317.dev.git27227a9 - autobuilt 27227a9 -* Fri Nov 6 2020 RH Container Bot - 2:1.0.0-316.dev.gite8498d3 +* Fri Nov 06 2020 RH Container Bot - 2:1.0.0-320 +- runc-2:1.0.0-316.dev.gite8498d3 - autobuilt e8498d3 -* Thu Nov 5 2020 RH Container Bot - 2:1.0.0-315.dev.gitcf6c074 +* Thu Nov 05 2020 RH Container Bot - 2:1.0.0-319 +- runc-2:1.0.0-315.dev.gitcf6c074 - autobuilt cf6c074 -* Fri Oct 23 2020 RH Container Bot - 2:1.0.0-314.dev.git07e35a7 +* Fri Oct 23 2020 RH Container Bot - 2:1.0.0-318 +- runc-2:1.0.0-314.dev.git07e35a7 - autobuilt 07e35a7 -* Wed Oct 21 2020 RH Container Bot - 2:1.0.0-313.dev.git411e413 +* Wed Oct 21 2020 RH Container Bot - 2:1.0.0-317 +- runc-2:1.0.0-313.dev.git411e413 - autobuilt 411e413 -* Tue Oct 20 2020 RH Container Bot - 2:1.0.0-312.dev.git7ba005b +* Tue Oct 20 2020 RH Container Bot - 2:1.0.0-316 +- runc-2:1.0.0-312.dev.git7ba005b - autobuilt 7ba005b -* Fri Oct 16 2020 RH Container Bot - 2:1.0.0-311.dev.gitd8bfd6c +* Fri Oct 16 2020 RH Container Bot - 2:1.0.0-315 +- runc-2:1.0.0-311.dev.gitd8bfd6c - autobuilt d8bfd6c -* Fri Oct 9 2020 RH Container Bot - 2:1.0.0-310.dev.git44f221e +* Fri Oct 09 2020 RH Container Bot - 2:1.0.0-314 +- runc-2:1.0.0-310.dev.git44f221e - autobuilt 44f221e -* Thu Oct 8 2020 RH Container Bot - 2:1.0.0-309.dev.git10825f7 +* Thu Oct 08 2020 RH Container Bot - 2:1.0.0-313 +- runc-2:1.0.0-309.dev.git10825f7 - autobuilt 10825f7 -* Wed Oct 7 2020 RH Container Bot - 2:1.0.0-308.dev.gitc11e997 +* Wed Oct 07 2020 RH Container Bot - 2:1.0.0-312 +- runc-2:1.0.0-308.dev.gitc11e997 - autobuilt c11e997 -* Tue Oct 6 2020 RH Container Bot - 2:1.0.0-307.dev.gitbb539a9 +* Tue Oct 06 2020 RH Container Bot - 2:1.0.0-311 +- runc-2:1.0.0-307.dev.gitbb539a9 - autobuilt bb539a9 -* Mon Oct 5 2020 RH Container Bot - 2:1.0.0-306.dev.gitc23c05e +* Mon Oct 05 2020 RH Container Bot - 2:1.0.0-310 +- runc-2:1.0.0-306.dev.gitc23c05e - autobuilt c23c05e -* Sat Oct 3 2020 RH Container Bot - 2:1.0.0-305.dev.gitf671f6b +* Sat Oct 03 2020 RH Container Bot - 2:1.0.0-309 +- runc-2:1.0.0-305.dev.gitf671f6b - autobuilt f671f6b -* Fri Oct 2 2020 RH Container Bot - 2:1.0.0-304.dev.git750036e +* Fri Oct 02 2020 RH Container Bot - 2:1.0.0-308 +- runc-2:1.0.0-304.dev.git750036e - autobuilt 750036e -* Thu Oct 1 2020 RH Container Bot - 2:1.0.0-303.dev.gita220b9c +* Thu Oct 01 2020 RH Container Bot - 2:1.0.0-307 +- runc-2:1.0.0-303.dev.gita220b9c - autobuilt a220b9c -* Wed Sep 30 2020 RH Container Bot - 2:1.0.0-302.dev.gitecfad5a +* Wed Sep 30 2020 RH Container Bot - 2:1.0.0-306 +- runc-2:1.0.0-302.dev.gitecfad5a - autobuilt ecfad5a -* Tue Sep 29 2020 RH Container Bot - 2:1.0.0-301.dev.git49d4507 +* Tue Sep 29 2020 RH Container Bot - 2:1.0.0-305 +- runc-2:1.0.0-301.dev.git49d4507 - autobuilt 49d4507 -* Mon Sep 28 2020 RH Container Bot - 2:1.0.0-300.dev.git43d2b10 +* Mon Sep 28 2020 RH Container Bot - 2:1.0.0-304 +- runc-2:1.0.0-300.dev.git43d2b10 - autobuilt 43d2b10 -* Sat Sep 26 2020 RH Container Bot - 2:1.0.0-299.dev.git6e5320f +* Sat Sep 26 2020 RH Container Bot - 2:1.0.0-303 +- runc-2:1.0.0-299.dev.git6e5320f - autobuilt 6e5320f -* Fri Sep 25 2020 RH Container Bot - 2:1.0.0-298.dev.git33faa5d +* Fri Sep 25 2020 RH Container Bot - 2:1.0.0-302 +- runc-2:1.0.0-298.dev.git33faa5d - autobuilt 33faa5d -* Tue Sep 22 02:11:55 UTC 2020 RH Container Bot - 2:1.0.0-297.dev.git190fcf2 +* Tue Sep 22 2020 RH Container Bot - 2:1.0.0-301 +- runc-2:1.0.0-297.dev.git190fcf2 - autobuilt 190fcf2 -* Thu Sep 17 10:12:11 UTC 2020 RH Container Bot - 2:1.0.0-296.dev.gitd636ad6 +* Thu Sep 17 2020 RH Container Bot - 2:1.0.0-300 +- runc-2:1.0.0-296.dev.gitd636ad6 - autobuilt d636ad6 -* Tue Sep 15 16:12:54 UTC 2020 RH Container Bot - 2:1.0.0-295.dev.git892477c +* Tue Sep 15 2020 RH Container Bot - 2:1.0.0-299 +- runc-2:1.0.0-295.dev.git892477c - autobuilt 892477c -* Fri Sep 11 03:13:03 UTC 2020 RH Container Bot - 2:1.0.0-294.dev.git2cf8d24 +* Fri Sep 11 2020 RH Container Bot - 2:1.0.0-298 +- runc-2:1.0.0-294.dev.git2cf8d24 - autobuilt 2cf8d24 -* Thu Sep 10 20:12:51 UTC 2020 RH Container Bot - 2:1.0.0-293.dev.gitbbd4ffe +* Thu Sep 10 2020 RH Container Bot - 2:1.0.0-297 +- runc-2:1.0.0-293.dev.gitbbd4ffe - autobuilt bbd4ffe -* Thu Sep 10 13:12:15 UTC 2020 RH Container Bot - 2:1.0.0-292.dev.gitab740e9 +* Thu Sep 10 2020 RH Container Bot - 2:1.0.0-296 +- runc-2:1.0.0-292.dev.gitab740e9 - autobuilt ab740e9 -* Wed Sep 9 16:12:18 UTC 2020 RH Container Bot - 2:1.0.0-291.dev.git165ecd2 +* Wed Sep 09 2020 RH Container Bot - 2:1.0.0-295 +- runc-2:1.0.0-291.dev.git165ecd2 - autobuilt 165ecd2 -* Thu Sep 3 14:12:46 UTC 2020 RH Container Bot - 2:1.0.0-290.dev.gitcbb0a79 +* Thu Sep 03 2020 RH Container Bot - 2:1.0.0-294 +- runc-2:1.0.0-290.dev.gitcbb0a79 - autobuilt cbb0a79 -* Tue Aug 25 02:11:36 UTC 2020 RH Container Bot - 2:1.0.0-289.dev.git09ddc63 +* Tue Aug 25 2020 RH Container Bot - 2:1.0.0-293 +- runc-2:1.0.0-289.dev.git09ddc63 - autobuilt 09ddc63 -* Fri Aug 21 20:10:31 UTC 2020 RH Container Bot - 2:1.0.0-288.dev.gite5f2eae +* Fri Aug 21 2020 RH Container Bot - 2:1.0.0-292 +- runc-2:1.0.0-288.dev.gite5f2eae - autobuilt e5f2eae -* Thu Aug 20 19:10:38 UTC 2020 RH Container Bot - 2:1.0.0-287.dev.gitf844a2f +* Thu Aug 20 2020 RH Container Bot - 2:1.0.0-291 +- runc-2:1.0.0-287.dev.gitf844a2f - autobuilt f844a2f -* Thu Aug 20 15:10:19 UTC 2020 RH Container Bot - 2:1.0.0-286.dev.gite949339 +* Thu Aug 20 2020 RH Container Bot - 2:1.0.0-290 +- runc-2:1.0.0-286.dev.gite949339 - autobuilt e949339 -* Wed Aug 19 07:11:09 GMT 2020 RH Container Bot - 2:1.0.0-285.dev.git2265daa +* Wed Aug 19 2020 RH Container Bot - 2:1.0.0-289 +- runc-2:1.0.0-285.dev.git2265daa - autobuilt 2265daa -* Tue Aug 18 05:11:22 GMT 2020 RH Container Bot - 2:1.0.0-284.dev.gita5847db +* Tue Aug 18 2020 RH Container Bot - 2:1.0.0-288 +- runc-2:1.0.0-284.dev.gita5847db - autobuilt a5847db -* Tue Aug 18 01:11:15 GMT 2020 RH Container Bot - 2:1.0.0-283.dev.git7930f0c +* Tue Aug 18 2020 RH Container Bot - 2:1.0.0-287 +- runc-2:1.0.0-283.dev.git7930f0c - autobuilt 7930f0c -* Mon Aug 17 19:10:53 GMT 2020 RH Container Bot - 2:1.0.0-282.dev.git49a7346 +* Mon Aug 17 2020 RH Container Bot - 2:1.0.0-286 +- runc-2:1.0.0-282.dev.git49a7346 - autobuilt 49a7346 -* Thu Aug 13 04:11:15 GMT 2020 RH Container Bot - 2:1.0.0-281.dev.git54c53b1 +* Thu Aug 13 2020 RH Container Bot - 2:1.0.0-285 +- runc-2:1.0.0-281.dev.git54c53b1 - autobuilt 54c53b1 -* Wed Aug 12 16:10:02 GMT 2020 RH Container Bot - 2:1.0.0-280.dev.gita2d1f85 +* Wed Aug 12 2020 RH Container Bot - 2:1.0.0-284 +- runc-2:1.0.0-280.dev.gita2d1f85 - autobuilt a2d1f85 -* Mon Aug 10 15:11:15 GMT 2020 RH Container Bot - 2:1.0.0-279.dev.gitdedadbf +* Mon Aug 10 2020 RH Container Bot - 2:1.0.0-283 +- runc-2:1.0.0-279.dev.gitdedadbf - autobuilt dedadbf -* Thu Aug 06 05:10:09 GMT 2020 RH Container Bot - 2:1.0.0-278.dev.gita340fa9 +* Thu Aug 06 2020 RH Container Bot - 2:1.0.0-282 +- runc-2:1.0.0-278.dev.gita340fa9 - autobuilt a340fa9 -* Tue Aug 04 05:09:55 GMT 2020 RH Container Bot - 2:1.0.0-277.dev.gitf668854 +* Tue Aug 04 2020 RH Container Bot - 2:1.0.0-281 +- runc-2:1.0.0-277.dev.gitf668854 - autobuilt f668854 -* Mon Aug 03 08:12:14 GMT 2020 RH Container Bot - 2:1.0.0-276.dev.git78d02e8 +* Mon Aug 03 2020 RH Container Bot - 2:1.0.0-280 +- runc-2:1.0.0-276.dev.git78d02e8 - autobuilt 78d02e8 -* Sat Aug 01 01:09:45 GMT 2020 RH Container Bot - 2:1.0.0-275.dev.git3de3112 +* Sat Aug 01 2020 RH Container Bot - 2:1.0.0-279 +- runc-2:1.0.0-275.dev.git3de3112 - autobuilt 3de3112 -* Fri Jul 31 03:09:51 GMT 2020 RH Container Bot - 2:1.0.0-274.dev.gitd6f5641 +* Fri Jul 31 2020 RH Container Bot - 2:1.0.0-278 +- runc-2:1.0.0-274.dev.gitd6f5641 - autobuilt d6f5641 -* Fri Jul 31 00:09:50 GMT 2020 RH Container Bot - 2:1.0.0-273.dev.git46243fc +* Fri Jul 31 2020 RH Container Bot - 2:1.0.0-277 +- runc-2:1.0.0-273.dev.git46243fc - autobuilt 46243fc -* Thu Jul 30 19:10:40 GMT 2020 RH Container Bot - 2:1.0.0-272.dev.git97b02cf +* Thu Jul 30 2020 RH Container Bot - 2:1.0.0-276 +- runc-2:1.0.0-272.dev.git97b02cf - autobuilt 97b02cf -* Wed Jul 29 03:09:14 GMT 2020 RH Container Bot - 2:1.0.0-271.dev.git67169a9 +* Wed Jul 29 2020 RH Container Bot - 2:1.0.0-275 +- runc-2:1.0.0-271.dev.git67169a9 - autobuilt 67169a9 -* Thu Jul 23 20:09:40 GMT 2020 RH Container Bot - 2:1.0.0-270.dev.gitd65df61 +* Thu Jul 23 2020 RH Container Bot - 2:1.0.0-274 +- runc-2:1.0.0-270.dev.gitd65df61 - autobuilt d65df61 -* Wed Jul 22 19:10:06 GMT 2020 RH Container Bot - 2:1.0.0-269.dev.git86d9399 +* Wed Jul 22 2020 RH Container Bot - 2:1.0.0-273 +- runc-2:1.0.0-269.dev.git86d9399 - autobuilt 86d9399 -* Mon Jul 20 03:09:22 GMT 2020 RH Container Bot - 2:1.0.0-268.dev.gitf8749ba +* Mon Jul 20 2020 RH Container Bot - 2:1.0.0-272 +- runc-2:1.0.0-268.dev.gitf8749ba - autobuilt f8749ba -* Thu Jul 16 2020 RH Container Bot - 2:1.0.0-267.dev.gitf9850af +* Thu Jul 16 2020 RH Container Bot - 2:1.0.0-271 +- runc-2:1.0.0-267.dev.gitf9850af - autobuilt f9850af -* Mon Jul 13 2020 RH Container Bot - 2:1.0.0-266.dev.gitb7d8f3b +* Mon Jul 13 2020 RH Container Bot - 2:1.0.0-270 +- runc-2:1.0.0-266.dev.gitb7d8f3b - autobuilt b7d8f3b -* Mon Jul 13 2020 RH Container Bot - 2:1.0.0-265.dev.git47fbafb +* Mon Jul 13 2020 RH Container Bot - 2:1.0.0-269 +- runc-2:1.0.0-265.dev.git47fbafb - autobuilt 47fbafb -* Thu Jul 09 2020 RH Container Bot - 2:1.0.0-264.dev.gitcf1273a +* Thu Jul 09 2020 RH Container Bot - 2:1.0.0-268 +- runc-2:1.0.0-264.dev.gitcf1273a - autobuilt cf1273a -* Thu Jul 09 2020 RH Container Bot - 2:1.0.0-263.dev.git545ebdd +* Thu Jul 09 2020 RH Container Bot - 2:1.0.0-267 +- runc-2:1.0.0-263.dev.git545ebdd - autobuilt 545ebdd -* Thu Jul 09 2020 RH Container Bot - 2:1.0.0-262.dev.gitfbf047b +* Thu Jul 09 2020 RH Container Bot - 2:1.0.0-266 +- runc-2:1.0.0-262.dev.gitfbf047b - autobuilt fbf047b -* Wed Jul 08 2020 RH Container Bot - 2:1.0.0-261.dev.gitce54a9d +* Wed Jul 08 2020 RH Container Bot - 2:1.0.0-265 +- runc-2:1.0.0-261.dev.gitce54a9d - autobuilt ce54a9d -* Wed Jul 08 2020 RH Container Bot - 2:1.0.0-260.dev.git9806eb5 +* Wed Jul 08 2020 RH Container Bot - 2:1.0.0-264 +- runc-2:1.0.0-260.dev.git9806eb5 - autobuilt 9806eb5 -* Wed Jul 08 2020 RH Container Bot - 2:1.0.0-259.dev.git5517d1d +* Wed Jul 08 2020 RH Container Bot - 2:1.0.0-263 +- runc-2:1.0.0-259.dev.git5517d1d - autobuilt 5517d1d -* Tue Jul 07 2020 RH Container Bot - 2:1.0.0-258.dev.git819fcc6 +* Tue Jul 07 2020 RH Container Bot - 2:1.0.0-262 +- runc-2:1.0.0-258.dev.git819fcc6 - autobuilt 819fcc6 -* Mon Jul 06 2020 RH Container Bot - 2:1.0.0-257.dev.git30dc54a +* Mon Jul 06 2020 RH Container Bot - 2:1.0.0-261 +- runc-2:1.0.0-257.dev.git30dc54a - autobuilt 30dc54a -* Mon Jul 06 2020 RH Container Bot - 2:1.0.0-256.dev.git3f81131 +* Mon Jul 06 2020 RH Container Bot - 2:1.0.0-260 +- runc-2:1.0.0-256.dev.git3f81131 - autobuilt 3f81131 -* Mon Jul 06 2020 RH Container Bot - 2:1.0.0-255.dev.git46a304b +* Mon Jul 06 2020 RH Container Bot - 2:1.0.0-259 +- runc-2:1.0.0-255.dev.git46a304b - autobuilt 46a304b -* Fri Jul 03 2020 RH Container Bot - 2:1.0.0-254.dev.git3cb1909 +* Fri Jul 03 2020 RH Container Bot - 2:1.0.0-258 +- runc-2:1.0.0-254.dev.git3cb1909 - autobuilt 3cb1909 -* Thu Jul 02 2020 RH Container Bot - 2:1.0.0-253.dev.git6f5edda +* Thu Jul 02 2020 RH Container Bot - 2:1.0.0-257 +- runc-2:1.0.0-253.dev.git6f5edda - autobuilt 6f5edda -* Wed Jun 24 2020 RH Container Bot - 2:1.0.0-252.dev.git1b94395 +* Wed Jun 24 2020 RH Container Bot - 2:1.0.0-256 +- runc-2:1.0.0-252.dev.git1b94395 - autobuilt 1b94395 -* Mon Jun 22 2020 RH Container Bot - 2:1.0.0-251.dev.git834c457 +* Mon Jun 22 2020 RH Container Bot - 2:1.0.0-255 +- runc-2:1.0.0-251.dev.git834c457 - autobuilt 834c457 -* Sat Jun 20 2020 RH Container Bot - 2:1.0.0-250.dev.git0fa097f +* Sat Jun 20 2020 RH Container Bot - 2:1.0.0-254 +- runc-2:1.0.0-250.dev.git0fa097f - autobuilt 0fa097f -* Fri Jun 19 2020 RH Container Bot - 2:1.0.0-249.dev.gitdff7685 +* Fri Jun 19 2020 RH Container Bot - 2:1.0.0-253 +- runc-2:1.0.0-249.dev.gitdff7685 - autobuilt dff7685 -* Fri Jun 19 2020 RH Container Bot - 2:1.0.0-248.dev.git9748b48 +* Fri Jun 19 2020 RH Container Bot - 2:1.0.0-252 +- runc-2:1.0.0-248.dev.git9748b48 - autobuilt 9748b48 -* Thu Jun 18 2020 RH Container Bot - 2:1.0.0-247.dev.git819c40b +* Thu Jun 18 2020 RH Container Bot - 2:1.0.0-251 +- runc-2:1.0.0-247.dev.git819c40b - autobuilt 819c40b -* Wed Jun 17 2020 RH Container Bot - 2:1.0.0-246.dev.git406298f +* Wed Jun 17 2020 RH Container Bot - 2:1.0.0-250 +- runc-2:1.0.0-246.dev.git406298f - autobuilt 406298f -* Wed Jun 17 2020 RH Container Bot - 2:1.0.0-245.dev.git12a7c8f +* Wed Jun 17 2020 RH Container Bot - 2:1.0.0-249 +- runc-2:1.0.0-245.dev.git12a7c8f - autobuilt 12a7c8f -* Tue Jun 16 2020 RH Container Bot - 2:1.0.0-244.dev.git82d2fa4 +* Tue Jun 16 2020 RH Container Bot - 2:1.0.0-248 +- runc-2:1.0.0-244.dev.git82d2fa4 - autobuilt 82d2fa4 -* Tue Jun 16 2020 RH Container Bot - 2:1.0.0-243.dev.git55c77cb +* Tue Jun 16 2020 RH Container Bot - 2:1.0.0-247 +- runc-2:1.0.0-243.dev.git55c77cb - autobuilt 55c77cb -* Tue Jun 16 2020 RH Container Bot - 2:1.0.0-242.dev.git5b247e7 +* Tue Jun 16 2020 RH Container Bot - 2:1.0.0-246 +- runc-2:1.0.0-242.dev.git5b247e7 - autobuilt 5b247e7 -* Thu Jun 11 2020 RH Container Bot - 2:1.0.0-241.dev.gitfdc4837 +* Thu Jun 11 2020 RH Container Bot - 2:1.0.0-245 +- runc-2:1.0.0-241.dev.gitfdc4837 - autobuilt fdc4837 -* Thu Jun 11 2020 RH Container Bot - 2:1.0.0-240.dev.gited9d93e +* Thu Jun 11 2020 RH Container Bot - 2:1.0.0-244 +- runc-2:1.0.0-240.dev.gited9d93e - autobuilt ed9d93e -* Wed Jun 10 2020 RH Container Bot - 2:1.0.0-239.dev.gitb216304 +* Wed Jun 10 2020 RH Container Bot - 2:1.0.0-243 +- runc-2:1.0.0-239.dev.gitb216304 - autobuilt b216304 -* Fri Jun 05 2020 RH Container Bot - 2:1.0.0-238.dev.git1b97c04 +* Fri Jun 05 2020 RH Container Bot - 2:1.0.0-242 +- runc-2:1.0.0-238.dev.git1b97c04 - autobuilt 1b97c04 -* Thu Jun 04 2020 RH Container Bot - 2:1.0.0-237.dev.git2a04669 +* Thu Jun 04 2020 RH Container Bot - 2:1.0.0-241 +- runc-2:1.0.0-237.dev.git2a04669 - autobuilt 2a04669 -* Tue Jun 02 2020 RH Container Bot - 2:1.0.0-236.dev.git0853956 +* Tue Jun 02 2020 RH Container Bot - 2:1.0.0-240 +- runc-2:1.0.0-236.dev.git0853956 - autobuilt 0853956 -* Tue Jun 02 2020 RH Container Bot - 2:1.0.0-235.dev.git1302020 +* Tue Jun 02 2020 RH Container Bot - 2:1.0.0-239 +- runc-2:1.0.0-235.dev.git1302020 - autobuilt 1302020 -* Sun May 31 2020 RH Container Bot - 2:1.0.0-234.dev.gitdbe5aca +* Sun May 31 2020 RH Container Bot - 2:1.0.0-238 +- runc-2:1.0.0-234.dev.gitdbe5aca - autobuilt dbe5aca -* Sun May 31 2020 RH Container Bot - 2:1.0.0-233.dev.git0f7ffbe +* Sun May 31 2020 RH Container Bot - 2:1.0.0-237 +- runc-2:1.0.0-233.dev.git0f7ffbe - autobuilt 0f7ffbe -* Sun May 31 2020 RH Container Bot - 2:1.0.0-232.dev.gita30f255 +* Sun May 31 2020 RH Container Bot - 2:1.0.0-236 +- runc-2:1.0.0-232.dev.gita30f255 - autobuilt a30f255 -* Sat May 30 2020 RH Container Bot - 2:1.0.0-231.dev.gite664e73 +* Sat May 30 2020 RH Container Bot - 2:1.0.0-235 +- runc-2:1.0.0-231.dev.gite664e73 - autobuilt e664e73 -* Sat May 30 2020 RH Container Bot - 2:1.0.0-230.dev.git2679754 +* Sat May 30 2020 RH Container Bot - 2:1.0.0-234 +- runc-2:1.0.0-230.dev.git2679754 - autobuilt 2679754 -* Sat May 30 2020 RH Container Bot - 2:1.0.0-229.dev.git774a9e7 +* Sat May 30 2020 RH Container Bot - 2:1.0.0-233 +- runc-2:1.0.0-229.dev.git774a9e7 - autobuilt 774a9e7 -* Fri May 29 2020 RH Container Bot - 2:1.0.0-228.dev.git64dbdb8 +* Fri May 29 2020 RH Container Bot - 2:1.0.0-232 +- runc-2:1.0.0-228.dev.git64dbdb8 - autobuilt 64dbdb8 -* Wed May 27 2020 RH Container Bot - 2:1.0.0-227.dev.git4f0bdaf +* Wed May 27 2020 RH Container Bot - 2:1.0.0-231 +- runc-2:1.0.0-227.dev.git4f0bdaf - autobuilt 4f0bdaf -* Wed May 27 2020 RH Container Bot - 2:1.0.0-226.dev.gita891fee +* Wed May 27 2020 RH Container Bot - 2:1.0.0-230 +- runc-2:1.0.0-226.dev.gita891fee - autobuilt a891fee -* Tue May 26 2020 RH Container Bot - 2:1.0.0-225.dev.git1f737ee +* Tue May 26 2020 RH Container Bot - 2:1.0.0-229 +- runc-2:1.0.0-225.dev.git1f737ee - autobuilt 1f737ee -* Mon May 25 2020 RH Container Bot - 2:1.0.0-224.dev.git7673bee +* Mon May 25 2020 RH Container Bot - 2:1.0.0-228 +- runc-2:1.0.0-224.dev.git7673bee - autobuilt 7673bee -* Thu May 21 2020 RH Container Bot - 2:1.0.0-223.dev.git3c8da9d +* Thu May 21 2020 RH Container Bot - 2:1.0.0-227 +- runc-2:1.0.0-223.dev.git3c8da9d - autobuilt 3c8da9d -* Thu May 21 2020 RH Container Bot - 2:1.0.0-222.dev.git21cb236 +* Thu May 21 2020 RH Container Bot - 2:1.0.0-226 +- runc-2:1.0.0-222.dev.git21cb236 - autobuilt 21cb236 -* Wed May 20 2020 RH Container Bot - 2:1.0.0-221.dev.git8cd84e3 +* Wed May 20 2020 RH Container Bot - 2:1.0.0-225 +- runc-2:1.0.0-221.dev.git8cd84e3 - autobuilt 8cd84e3 -* Wed May 20 2020 RH Container Bot - 2:1.0.0-220.dev.git716079f +* Wed May 20 2020 RH Container Bot - 2:1.0.0-224 +- runc-2:1.0.0-220.dev.git716079f - autobuilt 716079f -* Wed May 20 2020 RH Container Bot - 2:1.0.0-219.dev.gitcd4b71c +* Wed May 20 2020 RH Container Bot - 2:1.0.0-223 +- runc-2:1.0.0-219.dev.gitcd4b71c - autobuilt cd4b71c -* Wed May 20 2020 RH Container Bot - 2:1.0.0-218.dev.git9a808dd +* Wed May 20 2020 RH Container Bot - 2:1.0.0-222 +- runc-2:1.0.0-218.dev.git9a808dd - autobuilt 9a808dd -* Tue May 19 2020 RH Container Bot - 2:1.0.0-217.dev.gitb207d57 +* Tue May 19 2020 RH Container Bot - 2:1.0.0-221 +- runc-2:1.0.0-217.dev.gitb207d57 - autobuilt b207d57 -* Tue May 19 2020 RH Container Bot - 2:1.0.0-216.dev.gitf369199 +* Tue May 19 2020 RH Container Bot - 2:1.0.0-220 +- runc-2:1.0.0-216.dev.gitf369199 - autobuilt f369199 -* Mon May 18 2020 RH Container Bot - 2:1.0.0-215.dev.git53a4649 +* Mon May 18 2020 RH Container Bot - 2:1.0.0-219 +- runc-2:1.0.0-215.dev.git53a4649 - autobuilt 53a4649 -* Thu May 14 2020 RH Container Bot - 2:1.0.0-214.dev.git3f1e886 +* Thu May 14 2020 RH Container Bot - 2:1.0.0-218 +- runc-2:1.0.0-214.dev.git3f1e886 - autobuilt 3f1e886 -* Wed May 13 2020 RH Container Bot - 2:1.0.0-213.dev.git85d4264 +* Wed May 13 2020 RH Container Bot - 2:1.0.0-217 +- runc-2:1.0.0-213.dev.git85d4264 - autobuilt 85d4264 -* Wed May 13 2020 RH Container Bot - 2:1.0.0-212.dev.git4b71877 +* Wed May 13 2020 RH Container Bot - 2:1.0.0-216 +- runc-2:1.0.0-212.dev.git4b71877 - autobuilt 4b71877 -* Wed May 13 2020 RH Container Bot - 2:1.0.0-211.dev.gitdf3d7f6 +* Wed May 13 2020 RH Container Bot - 2:1.0.0-215 +- runc-2:1.0.0-211.dev.gitdf3d7f6 - autobuilt df3d7f6 -* Wed May 13 2020 RH Container Bot - 2:1.0.0-210.dev.git58bf083 +* Wed May 13 2020 RH Container Bot - 2:1.0.0-214 +- runc-2:1.0.0-210.dev.git58bf083 - autobuilt 58bf083 -* Tue May 12 2020 RH Container Bot - 2:1.0.0-209.dev.git2b9a36e +* Tue May 12 2020 RH Container Bot - 2:1.0.0-213 +- runc-2:1.0.0-209.dev.git2b9a36e - autobuilt 2b9a36e -* Tue May 12 2020 RH Container Bot - 2:1.0.0-208.dev.git867c9f5 +* Tue May 12 2020 RH Container Bot - 2:1.0.0-212 +- runc-2:1.0.0-208.dev.git867c9f5 - autobuilt 867c9f5 -* Fri May 08 2020 RH Container Bot - 2:1.0.0-207.dev.git2c8d668 +* Fri May 08 2020 RH Container Bot - 2:1.0.0-211 +- runc-2:1.0.0-207.dev.git2c8d668 - autobuilt 2c8d668 -* Fri May 08 2020 RH Container Bot - 2:1.0.0-206.dev.git6621af8 +* Fri May 08 2020 RH Container Bot - 2:1.0.0-210 +- runc-2:1.0.0-206.dev.git6621af8 - autobuilt 6621af8 -* Fri May 08 2020 RH Container Bot - 2:1.0.0-205.dev.git2b31437 +* Fri May 08 2020 RH Container Bot - 2:1.0.0-209 +- runc-2:1.0.0-205.dev.git2b31437 - autobuilt 2b31437 -* Fri May 08 2020 RH Container Bot - 2:1.0.0-204.dev.git47a7343 +* Fri May 08 2020 RH Container Bot - 2:1.0.0-208 +- runc-2:1.0.0-204.dev.git47a7343 - autobuilt 47a7343 -* Wed May 06 2020 RH Container Bot - 2:1.0.0-203.dev.git64416d3 +* Wed May 06 2020 RH Container Bot - 2:1.0.0-207 +- runc-2:1.0.0-203.dev.git64416d3 - autobuilt 64416d3 -* Tue May 05 2020 RH Container Bot - 2:1.0.0-202.dev.gita57358e +* Tue May 05 2020 RH Container Bot - 2:1.0.0-206 +- runc-2:1.0.0-202.dev.gita57358e - autobuilt a57358e -* Mon May 04 2020 RH Container Bot - 2:1.0.0-201.dev.git96310f0 +* Mon May 04 2020 RH Container Bot - 2:1.0.0-205 +- runc-2:1.0.0-201.dev.git96310f0 - autobuilt 96310f0 -* Mon May 04 2020 RH Container Bot - 2:1.0.0-200.dev.gita0ddd02 +* Mon May 04 2020 RH Container Bot - 2:1.0.0-204 +- runc-2:1.0.0-200.dev.gita0ddd02 - autobuilt a0ddd02 -* Mon May 04 2020 RH Container Bot - 2:1.0.0-199.dev.git12ba2a7 +* Mon May 04 2020 RH Container Bot - 2:1.0.0-203 +- runc-2:1.0.0-199.dev.git12ba2a7 - autobuilt 12ba2a7 -* Sun May 03 2020 RH Container Bot - 2:1.0.0-198.dev.git609ba79 +* Sun May 03 2020 RH Container Bot - 2:1.0.0-202 +- runc-2:1.0.0-198.dev.git609ba79 - autobuilt 609ba79 -* Sun May 03 2020 RH Container Bot - 2:1.0.0-197.dev.gitf6439a8 +* Sun May 03 2020 RH Container Bot - 2:1.0.0-201 +- runc-2:1.0.0-197.dev.gitf6439a8 - autobuilt f6439a8 -* Wed Apr 29 2020 RH Container Bot - 2:1.0.0-196.dev.gitdd8d48e +* Wed Apr 29 2020 RH Container Bot - 2:1.0.0-200 +- runc-2:1.0.0-196.dev.gitdd8d48e - autobuilt dd8d48e -* Wed Apr 29 2020 RH Container Bot - 2:1.0.0-195.dev.git051d670 +* Wed Apr 29 2020 RH Container Bot - 2:1.0.0-199 +- runc-2:1.0.0-195.dev.git051d670 - autobuilt 051d670 -* Wed Apr 29 2020 RH Container Bot - 2:1.0.0-194.dev.gitc18485a +* Wed Apr 29 2020 RH Container Bot - 2:1.0.0-198 +- runc-2:1.0.0-194.dev.gitc18485a - autobuilt c18485a -* Tue Apr 28 2020 RH Container Bot - 2:1.0.0-193.dev.git0a4dcc0 +* Tue Apr 28 2020 RH Container Bot - 2:1.0.0-197 +- runc-2:1.0.0-193.dev.git0a4dcc0 - autobuilt 0a4dcc0 -* Tue Apr 28 2020 RH Container Bot - 2:1.0.0-192.dev.git80e2d1f +* Tue Apr 28 2020 RH Container Bot - 2:1.0.0-196 +- runc-2:1.0.0-192.dev.git80e2d1f - autobuilt 80e2d1f -* Mon Apr 27 2020 RH Container Bot - 2:1.0.0-191.dev.git53fb4a5 +* Mon Apr 27 2020 RH Container Bot - 2:1.0.0-195 +- runc-2:1.0.0-191.dev.git53fb4a5 - autobuilt 53fb4a5 -* Sat Apr 25 2020 RH Container Bot - 2:1.0.0-190.dev.gitb19f9ce +* Sat Apr 25 2020 RH Container Bot - 2:1.0.0-194 +- runc-2:1.0.0-190.dev.gitb19f9ce - autobuilt b19f9ce -* Sat Apr 25 2020 RH Container Bot - 2:1.0.0-189.dev.git0fd8d46 +* Sat Apr 25 2020 RH Container Bot - 2:1.0.0-193 +- runc-2:1.0.0-189.dev.git0fd8d46 - autobuilt 0fd8d46 -* Fri Apr 24 2020 RH Container Bot - 2:1.0.0-188.dev.git634e51b +* Fri Apr 24 2020 RH Container Bot - 2:1.0.0-192 +- runc-2:1.0.0-188.dev.git634e51b - autobuilt 634e51b -* Fri Apr 24 2020 RH Container Bot - 2:1.0.0-187.dev.git49ca1fd +* Fri Apr 24 2020 RH Container Bot - 2:1.0.0-191 +- runc-2:1.0.0-187.dev.git49ca1fd - autobuilt 49ca1fd -* Fri Apr 24 2020 RH Container Bot - 2:1.0.0-186.dev.git78ff279 +* Fri Apr 24 2020 RH Container Bot - 2:1.0.0-190 +- runc-2:1.0.0-186.dev.git78ff279 - autobuilt 78ff279 -* Fri Apr 24 2020 RH Container Bot - 2:1.0.0-185.dev.git4402442 +* Fri Apr 24 2020 RH Container Bot - 2:1.0.0-189 +- runc-2:1.0.0-185.dev.git4402442 - autobuilt 4402442 -* Thu Apr 23 2020 RH Container Bot - 2:1.0.0-184.dev.gitdbe44cb +* Thu Apr 23 2020 RH Container Bot - 2:1.0.0-188 +- runc-2:1.0.0-184.dev.gitdbe44cb - autobuilt dbe44cb -* Wed Apr 22 2020 RH Container Bot - 2:1.0.0-183.dev.gitcdce577 +* Wed Apr 22 2020 RH Container Bot - 2:1.0.0-187 +- runc-2:1.0.0-183.dev.gitcdce577 - autobuilt cdce577 -* Tue Apr 21 2020 RH Container Bot - 2:1.0.0-182.dev.git46be7b6 +* Tue Apr 21 2020 RH Container Bot - 2:1.0.0-186 +- runc-2:1.0.0-182.dev.git46be7b6 - autobuilt 46be7b6 -* Mon Apr 20 2020 RH Container Bot - 2:1.0.0-181.dev.git5b38ef7 +* Mon Apr 20 2020 RH Container Bot - 2:1.0.0-185 +- runc-2:1.0.0-181.dev.git5b38ef7 - autobuilt 5b38ef7 -* Thu Apr 16 2020 RH Container Bot - 2:1.0.0-180.dev.gite4981c9 +* Thu Apr 16 2020 RH Container Bot - 2:1.0.0-184 +- runc-2:1.0.0-180.dev.gite4981c9 - autobuilt e4981c9 -* Thu Apr 16 2020 RH Container Bot - 2:1.0.0-179.dev.git9f6a2d4 +* Thu Apr 16 2020 RH Container Bot - 2:1.0.0-183 +- runc-2:1.0.0-179.dev.git9f6a2d4 - autobuilt 9f6a2d4 -* Wed Apr 15 2020 RH Container Bot - 2:1.0.0-178.dev.git191def7 +* Wed Apr 15 2020 RH Container Bot - 2:1.0.0-182 +- runc-2:1.0.0-178.dev.git191def7 - autobuilt 191def7 -* Tue Apr 14 2020 RH Container Bot - 2:1.0.0-177.dev.git56aca5a +* Tue Apr 14 2020 RH Container Bot - 2:1.0.0-181 +- runc-2:1.0.0-177.dev.git56aca5a - autobuilt 56aca5a -* Tue Apr 14 2020 RH Container Bot - 2:1.0.0-176.dev.git5c6216b +* Tue Apr 14 2020 RH Container Bot - 2:1.0.0-180 +- runc-2:1.0.0-176.dev.git5c6216b - autobuilt 5c6216b -* Mon Apr 13 2020 RH Container Bot - 2:1.0.0-175.dev.git13431e0 +* Mon Apr 13 2020 RH Container Bot - 2:1.0.0-179 +- runc-2:1.0.0-175.dev.git13431e0 - autobuilt 13431e0 -* Thu Apr 09 2020 RH Container Bot - 2:1.0.0-174.dev.gitccbb336 +* Thu Apr 09 2020 RH Container Bot - 2:1.0.0-178 +- runc-2:1.0.0-174.dev.gitccbb336 - autobuilt ccbb336 -* Thu Apr 09 2020 RH Container Bot - 2:1.0.0-173.dev.gitd65ba5f +* Thu Apr 09 2020 RH Container Bot - 2:1.0.0-177 +- runc-2:1.0.0-173.dev.gitd65ba5f - autobuilt d65ba5f -* Wed Apr 08 2020 RH Container Bot - 2:1.0.0-172.dev.git9a93b73 +* Wed Apr 08 2020 RH Container Bot - 2:1.0.0-176 +- runc-2:1.0.0-172.dev.git9a93b73 - autobuilt 9a93b73 -* Wed Apr 08 2020 RH Container Bot - 2:1.0.0-171.dev.git5c15da9 +* Wed Apr 08 2020 RH Container Bot - 2:1.0.0-175 +- runc-2:1.0.0-171.dev.git5c15da9 - autobuilt 5c15da9 -* Tue Apr 07 2020 RH Container Bot - 2:1.0.0-170.dev.gitd3fdacb +* Tue Apr 07 2020 RH Container Bot - 2:1.0.0-174 +- runc-2:1.0.0-170.dev.gitd3fdacb - autobuilt d3fdacb -* Mon Apr 06 2020 RH Container Bot - 2:1.0.0-169.dev.gitd5e91b1 +* Mon Apr 06 2020 RH Container Bot - 2:1.0.0-173 +- runc-2:1.0.0-169.dev.gitd5e91b1 - autobuilt d5e91b1 -* Mon Apr 06 2020 RH Container Bot - 2:1.0.0-168.dev.git0c7a9c0 +* Mon Apr 06 2020 RH Container Bot - 2:1.0.0-172 +- runc-2:1.0.0-168.dev.git0c7a9c0 - autobuilt 0c7a9c0 -* Mon Apr 06 2020 RH Container Bot - 2:1.0.0-167.dev.git6cda0ea +* Mon Apr 06 2020 RH Container Bot - 2:1.0.0-171 +- runc-2:1.0.0-167.dev.git6cda0ea - autobuilt 6cda0ea -* Fri Apr 03 2020 RH Container Bot - 2:1.0.0-166.dev.gite4363b0 +* Fri Apr 03 2020 RH Container Bot - 2:1.0.0-170 +- runc-2:1.0.0-166.dev.gite4363b0 - autobuilt e4363b0 -* Thu Apr 02 2020 RH Container Bot - 2:1.0.0-165.dev.git0c6659a +* Thu Apr 02 2020 RH Container Bot - 2:1.0.0-169 +- runc-2:1.0.0-165.dev.git0c6659a - autobuilt 0c6659a -* Thu Apr 02 2020 RH Container Bot - 2:1.0.0-164.dev.gitf8e1388 +* Thu Apr 02 2020 RH Container Bot - 2:1.0.0-168 +- runc-2:1.0.0-164.dev.gitf8e1388 - autobuilt f8e1388 -* Thu Apr 02 2020 RH Container Bot - 2:1.0.0-163.dev.gite3e26ca +* Thu Apr 02 2020 RH Container Bot - 2:1.0.0-167 +- runc-2:1.0.0-163.dev.gite3e26ca - autobuilt e3e26ca -* Tue Mar 31 2020 RH Container Bot - 2:1.0.0-162.dev.git9ec5b03 +* Tue Mar 31 2020 RH Container Bot - 2:1.0.0-166 +- runc-2:1.0.0-162.dev.git9ec5b03 - autobuilt 9ec5b03 -* Mon Mar 30 2020 RH Container Bot - 2:1.0.0-161.dev.git4a9e174 +* Mon Mar 30 2020 RH Container Bot - 2:1.0.0-165 +- runc-2:1.0.0-161.dev.git4a9e174 - autobuilt 4a9e174 -* Mon Mar 30 2020 RH Container Bot - 2:1.0.0-160.dev.git8df45c8 +* Mon Mar 30 2020 RH Container Bot - 2:1.0.0-164 +- runc-2:1.0.0-160.dev.git8df45c8 - autobuilt 8df45c8 -* Fri Mar 27 2020 RH Container Bot - 2:1.0.0-159.dev.gitf1eea90 +* Fri Mar 27 2020 RH Container Bot - 2:1.0.0-163 +- runc-2:1.0.0-159.dev.gitf1eea90 - autobuilt f1eea90 -* Fri Mar 27 2020 RH Container Bot - 2:1.0.0-158.dev.gitd4a6a1d +* Fri Mar 27 2020 RH Container Bot - 2:1.0.0-162 +- runc-2:1.0.0-158.dev.gitd4a6a1d - autobuilt d4a6a1d -* Thu Mar 26 2020 RH Container Bot - 2:1.0.0-157.dev.gitcebef0e +* Thu Mar 26 2020 RH Container Bot - 2:1.0.0-161 +- runc-2:1.0.0-157.dev.gitcebef0e - autobuilt cebef0e -* Thu Mar 26 2020 RH Container Bot - 2:1.0.0-156.dev.git96596cb +* Thu Mar 26 2020 RH Container Bot - 2:1.0.0-160 +- runc-2:1.0.0-156.dev.git96596cb - autobuilt 96596cb -* Tue Mar 24 2020 RH Container Bot - 2:1.0.0-155.dev.gitbe51398 +* Wed Mar 25 2020 Lokesh Mandvekar - 2:1.0.0-159 +- 1807.patch merged upstream + +* Tue Mar 24 2020 RH Container Bot - 2:1.0.0-158 +- runc-2:1.0.0-155.dev.gitbe51398 - autobuilt be51398 -* Tue Mar 24 2020 RH Container Bot - 2:1.0.0-154.dev.gitcc183ca +* Tue Mar 24 2020 RH Container Bot - 2:1.0.0-157 +- runc-2:1.0.0-154.dev.gitcc183ca - autobuilt cc183ca -* Tue Mar 24 2020 RH Container Bot - 2:1.0.0-153.dev.git4e6d8a0 +* Tue Mar 24 2020 RH Container Bot - 2:1.0.0-156 +- runc-2:1.0.0-153.dev.git4e6d8a0 - autobuilt 4e6d8a0 -* Tue Mar 24 2020 RH Container Bot - 2:1.0.0-152.dev.git3087d43 +* Tue Mar 24 2020 RH Container Bot - 2:1.0.0-155 +- runc-2:1.0.0-152.dev.git3087d43 - autobuilt 3087d43 -* Mon Mar 23 2020 RH Container Bot - 2:1.0.0-151.dev.git07bd280 +* Mon Mar 23 2020 RH Container Bot - 2:1.0.0-154 +- runc-2:1.0.0-151.dev.git07bd280 - autobuilt 07bd280 -* Mon Mar 23 2020 RH Container Bot - 2:1.0.0-150.dev.git1797622 +* Mon Mar 23 2020 RH Container Bot - 2:1.0.0-153 +- runc-2:1.0.0-150.dev.git1797622 - autobuilt 1797622 -* Tue Mar 17 2020 RH Container Bot - 2:1.0.0-149.dev.git939cd0b +* Tue Mar 17 2020 RH Container Bot - 2:1.0.0-152 +- runc-2:1.0.0-149.dev.git939cd0b - autobuilt 939cd0b -* Mon Mar 16 2020 RH Container Bot - 2:1.0.0-148.dev.git525b9f3 +* Mon Mar 16 2020 RH Container Bot - 2:1.0.0-151 +- runc-2:1.0.0-148.dev.git525b9f3 - autobuilt 525b9f3 -* Mon Mar 16 2020 RH Container Bot - 2:1.0.0-147.dev.git981dbef +* Mon Mar 16 2020 RH Container Bot - 2:1.0.0-150 +- runc-2:1.0.0-147.dev.git981dbef - autobuilt 981dbef -* Sat Mar 14 2020 RH Container Bot - 2:1.0.0-146.dev.git8615da6 +* Sat Mar 14 2020 RH Container Bot - 2:1.0.0-149 +- runc-2:1.0.0-146.dev.git8615da6 - autobuilt 8615da6 -* Mon Mar 02 2020 RH Container Bot - 2:1.0.0-145.dev.git3b7e32f +* Mon Mar 02 2020 RH Container Bot - 2:1.0.0-148 +- runc-2:1.0.0-145.dev.git3b7e32f - autobuilt 3b7e32f -* Tue Feb 04 2020 RH Container Bot - 2:1.0.0-144.dev.gite6555cc +* Tue Feb 04 2020 RH Container Bot - 2:1.0.0-147 +- runc-2:1.0.0-144.dev.gite6555cc - autobuilt e6555cc -* Fri Jan 31 2020 RH Container Bot - 2:1.0.0-143.dev.gitff107ee +* Fri Jan 31 2020 RH Container Bot - 2:1.0.0-146 +- runc-2:1.0.0-143.dev.gitff107ee - autobuilt ff107ee -* Tue Jan 28 2020 RH Container Bot - 2:1.0.0-142.dev.git2b5730a +* Tue Jan 28 2020 RH Container Bot - 2:1.0.0-145 +- runc-2:1.0.0-142.dev.git2b5730a - autobuilt 2b5730a -* Wed Jan 22 2020 RH Container Bot - 2:1.0.0-141.dev.git2fc03cc +* Wed Jan 22 2020 RH Container Bot - 2:1.0.0-144 +- runc-2:1.0.0-141.dev.git2fc03cc - autobuilt 2fc03cc -* Thu Jan 16 2020 RH Container Bot - 2:1.0.0-140.dev.gitf6fb7a0 +* Thu Jan 16 2020 RH Container Bot - 2:1.0.0-143 +- runc-2:1.0.0-140.dev.gitf6fb7a0 - autobuilt f6fb7a0 -* Tue Jan 14 2020 RH Container Bot - 2:1.0.0-139.dev.git709377c +* Tue Jan 14 2020 RH Container Bot - 2:1.0.0-142 +- runc-2:1.0.0-139.dev.git709377c - autobuilt 709377c -* Tue Jan 14 2020 RH Container Bot - 2:1.0.0-138.dev.git5cc0dea +* Tue Jan 14 2020 RH Container Bot - 2:1.0.0-141 +- runc-2:1.0.0-138.dev.git5cc0dea - autobuilt 5cc0dea -* Thu Jan 02 2020 RH Container Bot - 2:1.0.0-137.dev.git2b52db7 +* Thu Jan 02 2020 RH Container Bot - 2:1.0.0-140 +- runc-2:1.0.0-137.dev.git2b52db7 - autobuilt 2b52db7 -* Tue Dec 31 2019 RH Container Bot - 2:1.0.0-136.dev.gita88592a +* Tue Dec 31 2019 RH Container Bot - 2:1.0.0-139 +- runc-2:1.0.0-136.dev.gita88592a - autobuilt a88592a -* Tue Dec 17 2019 RH Container Bot - 2:1.0.0-135.dev.git7496a96 +* Tue Dec 17 2019 RH Container Bot - 2:1.0.0-138 +- runc-2:1.0.0-135.dev.git7496a96 - autobuilt 7496a96 -* Fri Dec 06 2019 RH Container Bot - 2:1.0.0-134.dev.git201b063 +* Fri Dec 06 2019 RH Container Bot - 2:1.0.0-137 +- runc-2:1.0.0-134.dev.git201b063 - autobuilt 201b063 -* Fri Dec 06 2019 RH Container Bot - 2:1.0.0-133.dev.gite1b5af0 +* Fri Dec 06 2019 RH Container Bot - 2:1.0.0-136 +- runc-2:1.0.0-133.dev.gite1b5af0 - autobuilt e1b5af0 -* Fri Dec 06 2019 RH Container Bot - 2:1.0.0-132.dev.git5e63695 +* Fri Dec 06 2019 RH Container Bot - 2:1.0.0-135 +- runc-2:1.0.0-132.dev.git5e63695 - autobuilt 5e63695 -* Thu Dec 05 2019 RH Container Bot - 2:1.0.0-131.dev.git8bb10af +* Thu Dec 05 2019 RH Container Bot - 2:1.0.0-134 +- runc-2:1.0.0-131.dev.git8bb10af - autobuilt 8bb10af -* Mon Dec 02 2019 RH Container Bot - 2:1.0.0-130.dev.gitc35c2c9 +* Mon Dec 02 2019 RH Container Bot - 2:1.0.0-133 +- runc-2:1.0.0-130.dev.gitc35c2c9 - autobuilt c35c2c9 -* Sat Nov 16 2019 RH Container Bot - 2:1.0.0-129.dev.git2186cfa +* Sat Nov 16 2019 RH Container Bot - 2:1.0.0-132 +- runc-2:1.0.0-129.dev.git2186cfa - autobuilt 2186cfa -* Tue Nov 05 2019 RH Container Bot - 2:1.0.0-128.dev.git46def4c +* Tue Nov 05 2019 RH Container Bot - 2:1.0.0-131 +- runc-2:1.0.0-128.dev.git46def4c - autobuilt 46def4c -* Thu Oct 31 2019 RH Container Bot - 2:1.0.0-127.dev.gitb133fea +* Thu Oct 31 2019 RH Container Bot - 2:1.0.0-130 +- runc-2:1.0.0-127.dev.gitb133fea - autobuilt b133fea -* Thu Oct 31 2019 RH Container Bot - 2:1.0.0-126.dev.gite57a774 +* Thu Oct 31 2019 RH Container Bot - 2:1.0.0-129 +- runc-2:1.0.0-126.dev.gite57a774 - autobuilt e57a774 -* Tue Oct 29 2019 RH Container Bot - 2:1.0.0-125.dev.gitd239ca8 +* Tue Oct 29 2019 RH Container Bot - 2:1.0.0-128 +- runc-2:1.0.0-125.dev.gitd239ca8 - autobuilt d239ca8 -* Tue Oct 29 2019 RH Container Bot - 2:1.0.0-124.dev.git03cf145 +* Tue Oct 29 2019 RH Container Bot - 2:1.0.0-127 +- runc-2:1.0.0-124.dev.git03cf145 - autobuilt 03cf145 -* Thu Oct 24 2019 RH Container Bot - 2:1.0.0-123.dev.gitc4d8e16 +* Thu Oct 24 2019 RH Container Bot - 2:1.0.0-126 +- runc-2:1.0.0-123.dev.gitc4d8e16 - autobuilt c4d8e16 -* Wed Oct 23 2019 RH Container Bot - 2:1.0.0-122.dev.git792af40 +* Wed Oct 23 2019 RH Container Bot - 2:1.0.0-125 +- runc-2:1.0.0-122.dev.git792af40 - autobuilt 792af40 -* Wed Oct 23 2019 RH Container Bot - 2:1.0.0-121.dev.git8790f24 +* Wed Oct 23 2019 RH Container Bot - 2:1.0.0-124 +- runc-2:1.0.0-121.dev.git8790f24 - autobuilt 8790f24 -* Wed Oct 16 2019 RH Container Bot - 2:1.0.0-120.dev.git4e37017 +* Wed Oct 16 2019 RH Container Bot - 2:1.0.0-123 +- runc-2:1.0.0-120.dev.git4e37017 - autobuilt 4e37017 -* Sat Oct 05 2019 RH Container Bot - 2:1.0.0-119.dev.gitc1485a1 +* Sat Oct 05 2019 RH Container Bot - 2:1.0.0-122 +- runc-2:1.0.0-119.dev.gitc1485a1 - autobuilt c1485a1 -* Tue Oct 01 2019 RH Container Bot - 2:1.0.0-118.dev.git1b8a1ee +* Thu Oct 03 2019 Giuseppe Scrivano - 2:1.0.0-121 +- 1807.patch: rebase on upstream + +* Thu Oct 03 2019 Lokesh Mandvekar - 2:1.0.0-120 +- add cgroups-v2.patch + +* Tue Oct 01 2019 RH Container Bot - 2:1.0.0-119 +- runc-2:1.0.0-118.dev.git1b8a1ee - autobuilt 1b8a1ee -* Mon Sep 30 2019 RH Container Bot - 2:1.0.0-117.dev.gitcad42f6 +* Mon Sep 30 2019 RH Container Bot - 2:1.0.0-118 +- runc-2:1.0.0-117.dev.gitcad42f6 - autobuilt cad42f6 -* Thu Sep 26 2019 RH Container Bot - 2:1.0.0-116.dev.git84373aa +* Thu Sep 26 2019 RH Container Bot - 2:1.0.0-117 +- runc-2:1.0.0-116.dev.git84373aa - autobuilt 84373aa -* Thu Sep 26 2019 RH Container Bot - 2:1.0.0-115.dev.git3e425f8 +* Thu Sep 26 2019 RH Container Bot - 2:1.0.0-116 +- runc-2:1.0.0-115.dev.git3e425f8 - autobuilt 3e425f8 -* Wed Sep 18 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-114.dev.git7507c64 +* Wed Sep 18 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-115 +- runc-2:1.0.0-114.dev.git7507c64 - autobuilt 7507c64 -* Thu Sep 12 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-113.dev.gitbf27c2f +* Thu Sep 12 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-114 +- runc-2:1.0.0-113.dev.gitbf27c2f - autobuilt bf27c2f -* Wed Sep 11 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-112.dev.git6c05552 +* Wed Sep 11 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-113 +- runc-2:1.0.0-112.dev.git6c05552 - autobuilt 6c05552 -* Tue Sep 10 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-111.dev.git267490e +* Tue Sep 10 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-112 +- runc-2:1.0.0-111.dev.git267490e - autobuilt 267490e -* Tue Sep 10 2019 Jindrich Novy - 2:1.0.0-110.dev.gite7a87dd -- Add versioned oci-runtime provide. +* Tue Sep 10 2019 Jindrich Novy - 2:1.0.0-111 +- Add versioned oci-runtimes provide. -* Mon Sep 09 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-109.dev.gite7a87dd +* Mon Sep 09 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-110 +- runc-2:1.0.0-109.dev.gite7a87dd - autobuilt e7a87dd -* Mon Sep 9 2019 Daniel Walsh - 2:1.0.0-108.dev.gita6606a7 +* Mon Sep 09 2019 Daniel J Walsh - 2:1.0.0-109 - Add provides oci-runtime -* Fri Sep 06 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-107.dev.gita6606a7 +* Fri Sep 06 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-108 +- runc-2:1.0.0-107.dev.gita6606a7 - autobuilt a6606a7 -* Fri Sep 06 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-106.dev.git0fd4342 +* Fri Sep 06 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-107 +- runc-2:1.0.0-106.dev.git0fd4342 - autobuilt 0fd4342 -* Thu Sep 05 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-105.dev.git92ac8e3 +* Thu Sep 05 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-106 +- runc-2:1.0.0-105.dev.git92ac8e3 - autobuilt 92ac8e3 -* Wed Sep 04 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-104.dev.git92d851e +* Wed Sep 04 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-105 +- runc-2:1.0.0-104.dev.git92d851e - autobuilt 92d851e -* Wed Aug 28 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-103.dev.git51f2a86 +* Wed Aug 28 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-104 +- runc-2:1.0.0-103.dev.git51f2a86 - autobuilt 51f2a86 -* Tue Aug 27 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-102.dev.gitdd07560 +* Tue Aug 27 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-103 +- runc-2:1.0.0-102.dev.gitdd07560 - autobuilt dd07560 -* Mon Aug 26 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-101.dev.gitc61c737 +* Mon Aug 26 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-102 +- runc-2:1.0.0-101.dev.gitc61c737 - autobuilt c61c737 -* Mon Aug 26 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-100.dev.git68d73f0 +* Mon Aug 26 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-101 +- runc-2:1.0.0-100.dev.git68d73f0 - autobuilt 68d73f0 -* Sun Aug 25 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-99.dev.git3525edd +* Sun Aug 25 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-100 +- runc-2:1.0.0-99.dev.git3525edd - autobuilt 3525edd -* Mon Aug 05 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-98.dev.git2e94378 +* Mon Aug 05 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-99 +- runc-2:1.0.0-98.dev.git2e94378 - autobuilt 2e94378 -* Mon Jul 29 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-97.dev.git80d35c7 +* Mon Jul 29 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-98 +- runc-2:1.0.0-97.dev.git80d35c7 - autobuilt 80d35c7 -* Sat Jul 27 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-96.dev.git9ae7901 +* Sat Jul 27 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-97 +- runc-2:1.0.0-96.dev.git9ae7901 - autobuilt 9ae7901 -* Fri Jul 26 2019 Fedora Release Engineering - 2:1.0.0-95.dev.git6cccc17 +* Fri Jul 26 2019 Fedora Release Engineering - 2:1.0.0-96 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild -* Thu Jul 18 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-94.dev.git6cccc17 +* Thu Jul 18 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-95 +- runc-2:1.0.0-94.dev.git6cccc17 - autobuilt 6cccc17 -* Wed May 15 2019 Daniel Walsh - 2:1.0.0-93.dev.gitb9b6cc6e +* Wed May 15 2019 Daniel J Walsh - 2:1.0.0-94 - Fix issue with runc interacting with /dev/stderr -* Wed Apr 24 2019 Daniel Walsh - 2:1.0.0-92.dev.gitc1b8c57a +* Wed Apr 24 2019 Daniel J Walsh - 2:1.0.0-93 - Fix issue with runc failing on SELinux disabled machines -* Fri Apr 19 2019 Daniel Walsh - 2:1.0.0-91.dev.gitda202113 +* Fri Apr 19 2019 Daniel J Walsh - 2:1.0.0-92 - Revert Build with nokmem -* Wed Apr 17 2019 Daniel Walsh - 2:1.0.0-90.dev.gitda202113 +* Wed Apr 17 2019 Daniel J Walsh - 2:1.0.0-91 - Build with nokmem -* Thu Apr 04 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-89.dev.git029124d +* Thu Apr 04 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-90 +- runc-2:1.0.0-89.dev.git029124d - autobuilt 029124d -* Wed Apr 03 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-88.dev.git6a3f474 +* Wed Apr 03 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-89 +- runc-2:1.0.0-88.dev.git6a3f474 - autobuilt 6a3f474 -* Thu Mar 28 2019 Daniel Walsh - 2:1.0.0-87.dev.gitda202113 +* Fri Mar 29 2019 Daniel J Walsh - 2:1.0.0-88 +- release candidate 7 + +* Fri Mar 29 2019 Daniel J Walsh - 2:1.0.0-87 - release candidate 7 -* Sat Mar 23 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-86.dev.git11fc498 +* Sat Mar 23 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-86 +- runc-2:1.0.0-86.dev.git11fc498 - autobuilt 11fc498 -* Thu Mar 21 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-85.dev.gitdd22a84 +* Thu Mar 21 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-85 +- runc-2:1.0.0-85.dev.gitdd22a84 - autobuilt dd22a84 -* Sun Mar 17 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-84.dev.gitf56b4cb +* Sun Mar 17 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-84 +- runc-2:1.0.0-84.dev.gitf56b4cb - autobuilt f56b4cb -* Sat Mar 16 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-83.dev.git7341c22 +* Sat Mar 16 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-83 +- runc-2:1.0.0-83.dev.git7341c22 - autobuilt 7341c22 -* Mon Mar 11 2019 Dan Walsh (Bot) - 2:1.0.0-82.dev.git2b18fe1 +* Mon Mar 11 2019 Daniel J Walsh - 2:1.0.0-82 - Change Requires container-selinux to recommends container-selinux -* Fri Mar 08 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-81.dev.git2b18fe1 +* Fri Mar 08 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-81 +- runc-2:1.0.0-81.dev.git2b18fe1 - autobuilt 2b18fe1 -* Wed Mar 06 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-80.dev.git923a8f8 +* Wed Mar 06 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-80 +- runc-2:1.0.0-80.dev.git923a8f8 - autobuilt 923a8f8 -* Tue Mar 05 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-79.dev.gitf739110 +* Tue Mar 05 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-79 +- runc-2:1.0.0-79.dev.gitf739110 - autobuilt f739110 -* Tue Feb 26 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-78.dev.gitf79e211 +* Tue Feb 26 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-78 +- runc-2:1.0.0-78.dev.gitf79e211 - autobuilt f79e211 -* Sun Feb 24 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-77.dev.git5b5130a +* Sun Feb 24 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-77 +- runc-2:1.0.0-77.dev.git5b5130a - autobuilt 5b5130a -* Fri Feb 22 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-76.dev.git8084f76 +* Fri Feb 22 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-76 +- runc-2:1.0.0-76.dev.git8084f76 - autobuilt 8084f76 -* Sat Feb 16 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-75.dev.git751f18d +* Sat Feb 16 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-75 +- runc-2:1.0.0-75.dev.git751f18d - autobuilt 751f18d -* Thu Feb 14 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-74.dev.gitf414f49 +* Thu Feb 14 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-74 +- runc-2:1.0.0-74.dev.gitf414f49 - autobuilt f414f49 -* Wed Feb 13 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-73.dev.git0a012df +* Wed Feb 13 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-73 +- runc-2:1.0.0-73.dev.git0a012df - autobuilt 0a012df -* Tue Feb 12 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-72.dev.git6635b4f +* Tue Feb 12 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-72 +- runc-2:1.0.0-72.dev.git6635b4f - autobuilt 6635b4f -* Sat Feb 09 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-71.dev.gitdd023c4 +* Sat Feb 09 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-71 +- runc-2:1.0.0-71.dev.gitdd023c4 - autobuilt dd023c4 -* Sat Feb 02 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-70.dev.gite4fa8a4 +* Sat Feb 02 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-70 +- runc-2:1.0.0-70.dev.gite4fa8a4 - autobuilt e4fa8a4 -* Sat Jan 26 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-69.dev.git8011af4 +* Sat Jan 26 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-69 +- runc-2:1.0.0-69.dev.git8011af4 - autobuilt 8011af4 -* Wed Jan 16 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-68.dev.gitc1e454b +* Wed Jan 16 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-68 +- runc-2:1.0.0-68.dev.gitc1e454b - autobuilt c1e454b -* Tue Jan 15 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-67.dev.git12f6a99 +* Tue Jan 15 2019 Lokesh Mandvekar (Bot) - 2:1.0.0-67 +- runc-2:1.0.0-67.dev.git12f6a99 - autobuilt 12f6a99 -* Fri Dec 21 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-66.dev.gitbbb17ef +* Fri Dec 21 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-66 +- runc-2:1.0.0-66.dev.gitbbb17ef - autobuilt bbb17ef -* Tue Dec 11 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-65.dev.gitf5b9991 +* Tue Dec 11 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-65 +- runc-2:1.0.0-65.dev.gitf5b9991 - autobuilt f5b9991 -* Sun Dec 09 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-64.dev.git859f745 +* Sun Dec 09 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-64 +- runc-2:1.0.0-64.dev.git859f745 - autobuilt 859f745 -* Wed Dec 05 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-63.dev.git25f3f89 +* Wed Dec 05 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-63 +- runc-2:1.0.0-63.dev.git25f3f89 - autobuilt 25f3f89 -* Tue Dec 04 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-62.dev.git96ec217 +* Tue Dec 04 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-62 +- runc-2:1.0.0-62.dev.git96ec217 - autobuilt 96ec217 -* Tue Nov 27 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-61.dev.git4932620 +* Tue Nov 27 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-61 +- runc-2:1.0.0-61.dev.git4932620 - autobuilt 4932620 -* Sun Nov 25 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-60.dev.git9397a6f +* Sun Nov 25 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-60 +- runc-2:1.0.0-60.dev.git9397a6f - autobuilt 9397a6f -* Sat Nov 24 2018 Dan Walsh - 2:1.0.0-59.dev.gitccb5efd3 +* Sat Nov 24 2018 Daniel J Walsh - 2:1.0.0-59 +- rc6 build + +* Sat Nov 24 2018 Daniel J Walsh - 2:1.0.0-58 - rc6 build -* Wed Nov 07 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-58.dev.git079817c +* Wed Nov 07 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-57 +- runc-2:1.0.0-58.dev.git079817c - autobuilt 079817c -* Thu Nov 01 2018 Lokesh Mandvekar - 2:1.0.0-57.dev.git9e5aa74 +* Thu Nov 01 2018 Lokesh Mandvekar - 2:1.0.0-56 +- runc-2:1.0.0-57.dev.git9e5aa74 - built commit 9e5aa74 -* Tue Oct 16 2018 Lokesh Mandvekar - 2:1.0.0-56.dev.git78ef28e +* Tue Oct 16 2018 Lokesh Mandvekar - 2:1.0.0-55 +- runc-2:1.0.0-54.dev.git78ef28e - built commit 78ef28e - -* Tue Sep 25 2018 Dan Walsh - 2:1.0.0-55.dev.gitfdd8055 + +* Tue Sep 25 2018 Daniel J Walsh - 2:1.0.0-54 +- built commit 578fe65e4fb86b95cc67b304d99d799f976dc40c 1 + +* Tue Sep 25 2018 Daniel J Walsh - 2:1.0.0-53 - built commit 578fe65e4fb86b95cc67b304d99d799f976dc40c -* Mon Sep 24 2018 Lokesh Mandvekar - 2:1.0.0-54.dev.git00dc700 +* Mon Sep 24 2018 Lokesh Mandvekar - 2:1.0.0-52 +- runc-2:1.0.0-54.dev.git00dc700 - built commit 00dc700 - rebase 1807.patch - enable debuginfo for all versions -* Fri Sep 07 2018 baude - 2:1.0.0-53.dev.git70ca035 -- Add BuildRequires git +* Fri Sep 07 2018 baude - 2:1.0.0-51 +- Add BR for git -* Thu Sep 06 2018 Lokesh Mandvekar - 2:1.0.0-52.dev.git70ca035 +* Thu Sep 06 2018 Lokesh Mandvekar - 2:1.0.0-50 +- runc-2:1.0.0-52.dev.git70ca035 - built commit 70ca035 -* Fri Aug 31 2018 Dan Walsh - 2:1.0.0-51.dev.gitfdd8055 +* Fri Aug 31 2018 Daniel J Walsh - 2:1.0.0-49 - Fix handling of tmpcopyup -* Wed Aug 15 2018 Dan Walsh - 2:1.0.0-50.dev.git20aff4f +* Thu Aug 16 2018 Daniel J Walsh - 2:1.0.0-48 - Revert minor cleanup patch -* Tue Aug 7 2018 Dan Walsh - 2:1.0.0-49.dev.gitb4056a4 +* Tue Aug 07 2018 Daniel J Walsh - 2:1.0.0-47 - Pass GOMAXPROCS to init processes -* Tue Jul 31 2018 Florian Weimer - 2:1.0.0-48.dev.gitbeadf0e +* Tue Jul 31 2018 Florian Weimer - 2:1.0.0-46 - Rebuild with fixed binutils -* Sun Jul 29 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-47.dev.gitbeadf0e +* Sun Jul 29 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-45 +- runc-2:1.0.0-47.dev.gitbeadf0e - autobuilt beadf0e -* Fri Jul 27 2018 Dan Walsh - 2:1.0.0-46.dev.gitb4e2ecb -- Add patch https://github.com/opencontainers/runc/pull/1807 to allow -- runc and podman to work with sd_notify +* Fri Jul 27 2018 Daniel J Walsh - 2:1.0.0-44 +- Add patch https://github.com/opencontainers/runc/pull/1807 to allow runc + and podman to work with sd_notify -* Thu Jul 26 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-45.dev.gitb4e2ecb +* Thu Jul 26 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-43 +- runc-2:1.0.0-45.dev.gitb4e2ecb - autobuilt b4e2ecb -* Wed Jul 25 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-44.dev.gitbc14672 +* Wed Jul 25 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-42 +- runc-2:1.0.0-44.dev.gitbc14672 - autobuilt bc14672 -* Fri Jul 20 2018 Lokesh Mandvekar - 2:1.0.0-43.dev.git21ac086 +* Fri Jul 20 2018 Lokesh Mandvekar - 2:1.0.0-41 +- runc- 2:1.0.0-43.dev.git21ac086 - Resolves: #1606281 - temp disable debuginfo for rawhide -* Sat Jul 14 2018 Fedora Release Engineering - 2:1.0.0-42.dev.git21ac086 +* Sat Jul 14 2018 Fedora Release Engineering - 2:1.0.0-40 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild -* Wed Jul 11 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-41.dev.git21ac086 +* Wed Jul 11 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-39 +- runc-2:1.0.0-41.dev.git21ac086 - autobuilt 21ac086 -* Fri Jul 06 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-40.git45e08f6 +* Mon Jul 09 2018 Lokesh Mandvekar - 2:1.0.0-38 +- update release tag to reflect unreleased status + +* Fri Jul 06 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-37 +- runc-2:1.0.0-40.git45e08f6 - autobuilt 45e08f6 -* Tue Jun 26 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-39.git2c632d1 +* Tue Jun 26 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-36 +- runc-2:1.0.0-39.git2c632d1 - autobuilt 2c632d1 -* Mon Jun 25 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-38.git3ccfa2f +* Mon Jun 25 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-35 +- runc-2:1.0.0-38.git3ccfa2f - autobuilt 3ccfa2f -* Sun Jun 24 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-37.git0154d05 +* Sun Jun 24 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-34 +- runc-2:1.0.0-37.git0154d05 - autobuilt 0154d05 -* Sat Jun 16 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-36.gitad0f525 +* Sat Jun 16 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-33 +- runc-2:1.0.0-36.gitad0f525 - autobuilt ad0f525 -* Tue Jun 05 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-35.gitdd56ece +* Tue Jun 05 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-32 +- runc-2:1.0.0-35.gitdd56ece - autobuilt dd56ece -* Sun Jun 03 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-34.git2e91544 +* Sun Jun 03 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-31 +- runc-2:1.0.0-34.git2e91544 - autobuilt 2e91544 -* Thu May 31 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-33.gitecd55a4 +* Thu May 31 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-30 +- runc-2:1.0.0-33.gitecd55a4 - autobuilt ecd55a4 -* Fri May 25 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-32.gitdd67ab1 +* Fri May 25 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-29 +- runc-2:1.0.0-32.gitdd67ab1 - autobuilt dd67ab1 -* Fri Apr 27 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-31.git0cbfd83 +* Fri Apr 27 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-28 +- runc-2:1.0.0-31.git0cbfd83 - autobuilt commit 0cbfd83 -* Tue Apr 24 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-30.git871ba2e +* Tue Apr 24 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-27 +- runc-2:1.0.0-30.git871ba2e - autobuilt commit 871ba2e -* Fri Apr 20 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-29.git1f11dc5 +* Fri Apr 20 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-26 +- runc-2:1.0.0-29.git1f11dc5 - autobuilt commit 1f11dc5 -* Thu Apr 19 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-28.git63e6708 +* Thu Apr 19 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-25 +- runc-2:1.0.0-28.git63e6708 - autobuilt commit 63e6708 -* Tue Apr 17 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-27.gitd56f6cc +* Tue Apr 17 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-24 +- runc-2:1.0.0-27.gitd56f6cc - autobuilt commit d56f6cc -* Tue Apr 17 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-26.gitd56f6cc +* Tue Apr 17 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-23 +- runc-2:1.0.0-26.gitd56f6cc - autobuilt commit d56f6cc -* Mon Apr 16 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-25.gitd56f6cc +* Mon Apr 16 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-22 +- runc-2:1.0.0-25.gitd56f6cc - autobuilt commit d56f6cc -* Mon Apr 16 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-24.gitd56f6cc +* Mon Apr 16 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-21 +- runc-2:1.0.0-24.gitd56f6cc - autobuilt commit d56f6cc -* Mon Apr 16 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-23.gitf753f30 +* Mon Apr 16 2018 Lokesh Mandvekar (Bot) - 2:1.0.0-20 +- runc-2:1.0.0-23.gitf753f30 - autobuilt commit f753f30 -* Fri Apr 13 2018 Lokesh Mandvekar - 2:1.0.0-22.gitf753f30 +* Mon Apr 16 2018 Lokesh Mandvekar - 2:1.0.0-19 +- BR: make for all + +* Fri Apr 13 2018 Lokesh Mandvekar - 2:1.0.0-18 +- runc-2:1.0.0-22.gitf753f30 - Resolves: #1567229 - built commit f753f30 -* Mon Apr 09 2018 Lokesh Mandvekar - 2:1.0.0-21.gitcc4307a +* Mon Apr 09 2018 Lokesh Mandvekar - 2:1.0.0-17 +- runc-2:1.0.0-21.gitcc4307a - autobuilt commit cc4307a -* Mon Mar 12 2018 Peter Robinson 2:1.0.0-20.rc5.git4bb1fe4 +* Mon Apr 09 2018 Lokesh Mandvekar - 2:1.0.0-16 +- change release tag format for autobuilder purposes + +* Mon Mar 12 2018 Peter Robinson - 2:1.0.0-15 - Rebuild for aarch64 install issue -* Tue Feb 27 2018 Dan Walsh - 2:1.0.0-19.rc5.git4bb1fe4 +* Tue Feb 27 2018 Daniel J Walsh - 2:1.0.0-14 - release v1.0.0~rc5 -* Fri Feb 09 2018 Fedora Release Engineering - 2:1.0.0-17.rc4.git9f9c962.1 +* Tue Feb 27 2018 Daniel J Walsh - 2:1.0.0-13 +- release v1.0.0~rc5 + +* Fri Feb 09 2018 Fedora Release Engineering - 2:1.0.0-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild -* Wed Jan 24 2018 Dan Walsh - 2:1.0.0-17.rc4.git9f9c962 +* Sun Jan 28 2018 Lokesh Mandvekar - 2:1.0.0-11 +- BR: make for centos + +* Wed Jan 24 2018 Daniel J Walsh - 2:1.0.0-10 - Bump to the latest from upstream -* Tue Dec 26 2017 Lokesh Mandvekar - 2:1.0.0-16.rc4.gite6516b3 +* Tue Dec 26 2017 Lokesh Mandvekar - 2:1.0.0-9 +- runc-2:1.0.0-16.rc4.gite6516b3 - install bash completion to correct location - remove shebang from bash completion gh#1679 - correct rpmlint issues -* Mon Dec 18 2017 Lokesh Mandvekar - 2:1.0.0-15.rc4.gite6516b3 +* Mon Dec 18 2017 Lokesh Mandvekar - 2:1.0.0-8 +- runc-2:1.0.0-15.rc4.gite6516b3 - built commit e6516b3 -* Fri Dec 15 2017 Dan Walsh - 2:1.0.0-14.rc4.gitdb093f6 -- Lots of fixes for libcontainer -- support unbindable,runbindable for rootfs propagation +* Fri Dec 15 2017 Daniel J Walsh - 2:1.0.0-7 +- Lots of fixes for libcontainer support unbindable,runbindable for rootfs + propagation -* Sun Dec 10 2017 Dan Walsh - 2:1.0.0-13.rc4.git1d3ab6d -- Many Stability fixes -- Many fixes for rootless containers -- Many fixes for static builds +* Sun Dec 10 2017 Daniel J Walsh - 2:1.0.0-6 +- Many Stability fixes Many fixes for rootless containers Many fixes for + static builds -* Wed Oct 25 2017 Dan Walsh - 2:1.0.0-12.rc4.gitaea4f21 +* Mon Dec 04 2017 Lokesh Mandvekar - 2:1.0.0-5 +- remove git from builddep + +* Wed Oct 25 2017 Daniel J Walsh - 2:1.0.0-4 - Add container-selinux prerequires to make sure runc is labeled correctly -* Tue Sep 12 2017 Lokesh Mandvekar - 2:1.0.0-11.rc4.gitaea4f21 -- disable devel package and %%check - makes life easier for module building +* Wed Sep 13 2017 Lokesh Mandvekar - 2:1.0.0-3 +- runc-2:1.0.0-11.rc4.gitaea4f21 +- disable devel package and %%%%check - makes life easier for module + building + +* Thu Sep 07 2017 Lokesh Mandvekar - 2:1.0.0-2 +- Requires: criu for centos -* Tue Sep 5 2017 Lokesh Mandvekar - 2:1.0.0-10.rc4.gitaea4f21 +* Tue Sep 05 2017 Lokesh Mandvekar - 2:1.0.0-1 +- runc-2:1.0.0-10.rc4.gitaea4f21 - bump Epoch to 2 since bump to v1.0.1 was in error - bump to v1.0.0-rc4 - built commit aea4f21 -* Tue Sep 5 2017 Dan Walsh - 1.0.1-4.rc.gitaea4f21 +* Tue Sep 05 2017 Daniel J Walsh - 1:1.0.1-6 +- Rebuilt from master, with requierements needed for CRI-O + +* Tue Sep 05 2017 Daniel J Walsh - 1:1.0.1-5 - Rebuilt from master, with requierements needed for CRI-O -* Thu Aug 03 2017 Fedora Release Engineering - 1:1.0.1-3.gitc5ec254 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild +* Wed Aug 30 2017 Colin Walters - 1:1.0.1-4 +- Fix a build failure making SRPM -* Thu Jul 27 2017 Fedora Release Engineering - 1:1.0.1-2.gitc5ec254 +* Thu Aug 03 2017 Fedora Release Engineering - 1:1.0.1-3 +- Rebuilt for + https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 1:1.0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild -* Thu Jul 20 2017 Dan Walsh - 1.0.1-1.gitc5ec25487 -- v1.0.0-rc5 release of runc +* Thu Jul 20 2017 Daniel J Walsh - 1:1.0.1-1 +- v1.0.0 release of runc -* Tue Jun 27 2017 Till Maas - 1.0.0-9.git6394544 -- Just make the criu dependency optional (https://bugzilla.redhat.com/show_bug.cgi?id=1460148) +* Mon Jun 26 2017 Till Maas - 1:1.0.0-15 +- Just make the criu dependency optional + (https://bugzilla.redhat.com/show_bug.cgi?id=1460148) -* Tue Jun 27 2017 Till Maas - 1.0.0-8.git6394544.1 +* Mon Jun 26 2017 Till Maas - 1:1.0.0-13 - Do not build for ix86: there is no criu on ix86 -* Fri Jun 02 2017 Antonio Murdaca - 1:1.0.0-7.git6394544.1 -- rebuilt +* Fri Jun 02 2017 Antonio Murdaca - 1:1.0.0-12 +- bump runc commit -* Fri Mar 24 2017 Lokesh Mandvekar - 1:1.0.0-6.git75f8da7 +* Fri Mar 24 2017 Lokesh Mandvekar - 1:1.0.0-11 +- runc-1:1.0.0-6.git75f8da7 - bump to v1.0.0-rc3 - built opencontainers/v1.0.0-rc3 commit 75f8da7 -* Sat Feb 11 2017 Fedora Release Engineering - 1:1.0.0-5.rc2.gitc91b5be.1 +* Sat Feb 11 2017 Fedora Release Engineering - 1:1.0.0-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild -* Wed Feb 01 2017 Lokesh Mandvekar - 1:1.0.0-5.rc2 +* Wed Feb 01 2017 Lokesh Mandvekar - 1:1.0.0-9 +- runc-1:1.0.0-5.rc2 - depend on criu for checkpoint/restore -* Wed Jan 18 2017 Dennis Gilmore - 1:1.0.0-4.rc2 +* Wed Jan 18 2017 Dennis Gilmore - 1:1.0.0-8 - enable aarch64 -* Wed Jan 11 2017 Lokesh Mandvekar - 1:1.0.0-3.rc2 -- Resolves: #1412238 - *CVE-2016-9962* - set init processes as non-dumpable, -runc patch from Michael Crosby +* Wed Jan 11 2017 Lokesh Mandvekar - 1:1.0.0-7 +- runc-1:1.0.0-3.rc2 +- Resolves: #1412238 - *CVE-2016-9962* - set init processes as non- + dumpable, runc patch from Michael Crosby + +* Fri Jan 06 2017 Lokesh Mandvekar - 1:1.0.0-6 +- runc-1:1.0.0-1.rc2.git47ea5c7 -* Fri Jan 06 2017 Lokesh Mandvekar - 1:1.0.0-2.rc2.git47ea5c7 +* Fri Jan 06 2017 Lokesh Mandvekar - 1:1.0.0-5 +- runc-1:1.0.0-1.rc2.git47ea5c7 - patch to enable seccomp -- Pass $BUILDTAGS to the compiler in cases where we don't have to define -gobuild for ourselves. -- From: Nalin Dahyabhai -* Wed Dec 21 2016 Lokesh Mandvekar - 1:1.0.0-1.rc2.git47ea5c7 +* Fri Jan 06 2017 Lokesh Mandvekar - 1:1.0.0-4 +- runc-1:1.0.0-1.rc2.git47ea5c7 +- disable build for ppc64 + +* Wed Dec 21 2016 Lokesh Mandvekar - 1:1.0.0-3 +- runc-1:1.0.0-1.rc2.git47ea5c7 - bump to 1.0.0 rc2 - built commit 47ea5c7 -- build with bundled sources for now (some new dependencies need to be packaged) +- build with bundled sources for now (some new dependencies need to be + packaged) -* Wed Aug 24 2016 Lokesh Mandvekar - 1:1.0.0-1.rc1.git04f275d +* Fri Dec 16 2016 Colin Walters - 1:1.0.0-2 +- Add missing BR on seccomp + +* Thu Aug 25 2016 Lokesh Mandvekar - 1:1.0.0-1 +- NVR: runc-1:1.0.0-1.rc1.git04f275d - Resolves: #1342707 - bump to v1.0.0-rc1 - built commit 04f275d - cosmetic changes to make rpmlint happy -* Thu Jul 21 2016 Fedora Release Engineering - 1:0.1.1-4.git57b9972 +* Thu Jul 21 2016 Fedora Release Engineering - 1:0.1.1-4 - https://fedoraproject.org/wiki/Changes/golang1.7 -* Thu May 26 2016 jchaloup - 1:0.1.1-3.git57b9972 -- Add bash completion - resolves: #1340119 +* Thu May 26 2016 Jan Chaloupka - 1:0.1.1-3 +- Add bash completion - resolves: #1340119 -* Thu May 19 2016 Lokesh Mandvekar - 1:0.1.1-2.gitbaf6536 +* Thu May 19 2016 Lokesh Mandvekar - 1:0.1.1-2 - add selinux to BUILDTAGS in addition to the default seccomp tag -* Tue Apr 26 2016 jchaloup - 1:0.1.1-0.1.gitbaf6536 -- Update to v0.1.1 - resolves: #1330378 +* Tue Apr 26 2016 Jan Chaloupka - 1:0.1.1-1 +- Update to v0.1.1 - resolves: #1330378 -* Tue Apr 12 2016 jchaloup - 1:0.0.9-0.3.git94dc520 -- Ship man pages too - resolves: #1326115 +* Tue Apr 12 2016 Jan Chaloupka - 1:0.0.9-5 +- Ship man pages too - resolves: #1326115 -* Wed Apr 06 2016 jchaloup - 1:0.0.9-0.2.git94dc520 -- Extend supported architectures to golang_arches - Disable failing test +* Wed Apr 06 2016 Jan Chaloupka - 1:0.0.9-4 +- Extend supported architectures to golang_arches Disable failing test - related: #1290943 -* Wed Mar 16 2016 jchaloup - 1:0.0.9-0.1.git94dc520 -- Update to 0.0.9 - resolves: #1290943 +* Wed Mar 16 2016 Jan Chaloupka - 1:0.0.9-3 +- Fix release + +* Wed Mar 16 2016 Jan Chaloupka - 1:0.0.9-2 +- Update to 0.0.9 - resolves: #1290943 -* Wed Mar 02 2016 jchaloup - 1:0.0.8-0.1.git1a124e9 +* Wed Mar 16 2016 Jan Chaloupka - 1:0.0.9-1 +- Update to 0.0.9 - resolves: #1290943 + +* Wed Mar 02 2016 Jan Chaloupka - 1:0.0.8-1 - Update to 0.0.8 -* Mon Feb 22 2016 Fedora Release Engineering - 1:0.0.5-0.4.git97bc9a7 +* Mon Feb 22 2016 Peter Robinson - 1:0.0.5-8 +- add github.com/docker/go-units dependency + +* Mon Feb 22 2016 Peter Robinson - 1:0.0.5-7 - https://fedoraproject.org/wiki/Changes/golang1.6 -* Thu Feb 04 2016 Fedora Release Engineering - 1:0.0.5-0.3.git97bc9a7 +* Thu Feb 04 2016 Fedora Release Engineering - 1:0.0.5-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild -* Wed Dec 02 2015 jchaloup - 1:0.0.5-0.2.git97bc9a7 +* Wed Dec 02 2015 Jan Chaloupka - 1:0.0.5-5 - unit-test-devel subpackage requires devel with correct epoch -* Wed Nov 25 2015 jchaloup - 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 +* Tue Dec 01 2015 Jan Chaloupka - 1:0.0.5-4 +- Removing the patch + +* Tue Dec 01 2015 Jan Chaloupka - 1:0.0.5-3 +- Patch no longer needed as docker has been updated. + +* Fri Nov 27 2015 Jan Chaloupka - 1:0.0.5-2 +- docker/pkg/mount still contains old mount.MountInfo instead of new + mount.Info resolves: #1286114 + +* Wed Nov 25 2015 Jan Chaloupka - 1:0.0.5-1 +- Update to 0.0.5, introduce Epoch for Fedora due to 0.2 version instead of + 0.0.2 -* Fri Aug 21 2015 Jan Chaloupka - 0.2-0.2.git90e6d37 -- First package for Fedora - resolves: #1255179 +* Sat Sep 19 2015 Jan Chaloupka - 0.2-1 +- First package for Fedora - resolves: #1255179 +## END: Generated by rpmautospec