2021-04-21 20:55:29 +00:00
|
|
|
%if 0%{?fedora}
|
2021-05-20 13:10:45 +00:00
|
|
|
%global with_debug 0
|
2021-04-21 20:55:29 +00:00
|
|
|
%else
|
|
|
|
%global with_debug 0
|
|
|
|
%endif
|
2015-09-19 17:46:02 +00:00
|
|
|
|
|
|
|
%if 0%{?with_debug}
|
2018-07-20 19:30:47 +00:00
|
|
|
%global _find_debuginfo_dwz_opts %{nil}
|
2015-09-19 17:46:02 +00:00
|
|
|
%global _dwz_low_mem_die_limit 0
|
|
|
|
%else
|
2017-12-18 11:30:05 +00:00
|
|
|
%global debug_package %{nil}
|
2015-09-19 17:46:02 +00:00
|
|
|
%endif
|
|
|
|
|
2021-04-21 20:08:20 +00:00
|
|
|
%if ! 0%{?gobuild:1}
|
|
|
|
%define gobuild(o:) GO111MODULE=off go build -buildmode pie -compiler gc -tags="rpm_crashtraceback ${BUILDTAGS:-}" -ldflags "${LDFLAGS:-} -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 -x %{?**};
|
|
|
|
%endif
|
|
|
|
|
2017-12-18 11:30:05 +00:00
|
|
|
%global provider github
|
|
|
|
%global provider_tld com
|
2016-08-25 01:11:27 +00:00
|
|
|
%global project opencontainers
|
|
|
|
%global repo runc
|
2015-09-19 17:46:02 +00:00
|
|
|
# https://github.com/opencontainers/runc
|
|
|
|
%global provider_prefix %{provider}.%{provider_tld}/%{project}/%{repo}
|
2016-08-25 01:11:27 +00:00
|
|
|
%global import_path %{provider_prefix}
|
2017-03-24 14:05:17 +00:00
|
|
|
%global git0 https://github.com/opencontainers/runc
|
2021-04-21 20:08:20 +00:00
|
|
|
|
2022-08-08 22:04:49 +00:00
|
|
|
%global built_tag v1.1.3
|
2021-09-10 13:56:29 +00:00
|
|
|
%global built_tag_strip %(b=%{built_tag}; echo ${b:1})
|
2022-03-29 19:32:40 +00:00
|
|
|
%global gen_version %(b=%{built_tag_strip}; echo ${b/-/"~"})
|
2015-09-19 17:46:02 +00:00
|
|
|
|
2016-08-25 01:11:27 +00:00
|
|
|
Name: %{repo}
|
2017-09-05 19:48:22 +00:00
|
|
|
Epoch: 2
|
2022-03-29 19:32:40 +00:00
|
|
|
Version: %{gen_version}
|
2022-08-08 22:04:49 +00:00
|
|
|
Release: 1%{?dist}
|
2016-08-25 01:11:27 +00:00
|
|
|
Summary: CLI for running Open Containers
|
2022-03-29 19:32:40 +00:00
|
|
|
License: ASL 2.0 and BSD and MIT
|
2017-03-24 14:05:17 +00:00
|
|
|
URL: %{git0}
|
2022-08-09 02:26:20 +00:00
|
|
|
Source0: %{git0}/archive/%{built_tag}/%{name}-%{version}.tar.gz
|
2015-09-19 17:46:02 +00:00
|
|
|
|
2016-04-06 08:05:58 +00:00
|
|
|
# e.g. el6 has ppc64 arch without gcc-go, so EA tag is required
|
2017-09-05 19:48:22 +00:00
|
|
|
#ExclusiveArch: %%{?go_arches:%%{go_arches}}%%{!?go_arches:%%{ix86} x86_64 %%{arm}}
|
2017-06-26 23:03:12 +00:00
|
|
|
ExclusiveArch: %{ix86} x86_64 %{arm} aarch64 ppc64le %{mips} s390x
|
2015-09-19 17:46:02 +00:00
|
|
|
# If go_compiler is not set to 1, there is no virtual provide. Use golang instead.
|
2021-04-21 20:42:35 +00:00
|
|
|
%if 0%{?fedora}
|
2016-08-25 01:11:27 +00:00
|
|
|
BuildRequires: %{?go_compiler:compiler(go-compiler)}%{!?go_compiler:golang}
|
2021-04-21 20:42:35 +00:00
|
|
|
%else
|
|
|
|
BuildRequires: golang
|
|
|
|
%endif
|
2016-12-16 14:06:42 +00:00
|
|
|
BuildRequires: pkgconfig(libseccomp)
|
2016-08-25 01:11:27 +00:00
|
|
|
BuildRequires: go-md2man
|
2018-01-28 17:11:58 +00:00
|
|
|
BuildRequires: make
|
2021-04-21 20:08:20 +00:00
|
|
|
Provides: oci-runtime
|
2022-03-29 19:32:40 +00:00
|
|
|
# vendored libraries
|
|
|
|
# awk '{print "Provides: bundled(golang("$1")) = "$2}' go.mod | sort | uniq | sed -e 's/-/_/g' -e '/bundled(golang())/d' -e '/bundled(golang(go\|module\|replace\|require))/d'
|
|
|
|
Provides: bundled(golang(github.com/checkpoint_restore/go_criu/v5)) = v5.3.0
|
|
|
|
Provides: bundled(golang(github.com/cilium/ebpf)) = v0.7.0
|
|
|
|
Provides: bundled(golang(github.com/containerd/console)) = v1.0.3
|
|
|
|
Provides: bundled(golang(github.com/coreos/go_systemd/v22)) = v22.3.2
|
|
|
|
Provides: bundled(golang(github.com/cyphar/filepath_securejoin)) = v0.2.3
|
|
|
|
Provides: bundled(golang(github.com/docker/go_units)) = v0.4.0
|
|
|
|
Provides: bundled(golang(github.com/godbus/dbus/v5)) = v5.0.6
|
|
|
|
Provides: bundled(golang(github.com/moby/sys/mountinfo)) = v0.5.0
|
|
|
|
Provides: bundled(golang(github.com/mrunalp/fileutils)) = v0.5.0
|
|
|
|
Provides: bundled(golang(github.com/opencontainers/runtime_spec)) = v1.0.3_0.20210326190908_1c3f411f0417
|
|
|
|
Provides: bundled(golang(github.com/opencontainers/selinux)) = v1.10.0
|
|
|
|
Provides: bundled(golang(github.com/seccomp/libseccomp_golang)) = v0.9.2_0.20210429002308_3879420cc921
|
|
|
|
Provides: bundled(golang(github.com/sirupsen/logrus)) = v1.8.1
|
|
|
|
Provides: bundled(golang(github.com/syndtr/gocapability)) = v0.0.0_20200815063812_42c35b437635
|
|
|
|
Provides: bundled(golang(github.com/urfave/cli)) = v1.22.1
|
|
|
|
Provides: bundled(golang(github.com/vishvananda/netlink)) = v1.1.0
|
2021-04-21 20:39:00 +00:00
|
|
|
%if 0%{?centos} >= 8
|
2019-03-11 19:31:48 +00:00
|
|
|
Recommends: container-selinux >= 2:2.85-1
|
2021-04-21 20:39:00 +00:00
|
|
|
%else
|
|
|
|
Requires: container-selinux >= 2:2.85-1
|
|
|
|
%endif
|
2015-09-19 17:46:02 +00:00
|
|
|
|
2021-04-21 21:00:35 +00:00
|
|
|
%if 0%{?centos} <= 7
|
|
|
|
Requires: criu
|
|
|
|
%else
|
2017-06-26 23:03:12 +00:00
|
|
|
%ifnarch s390x
|
|
|
|
Recommends: criu
|
|
|
|
%endif
|
2021-04-21 21:00:35 +00:00
|
|
|
%endif
|
2017-02-01 21:23:06 +00:00
|
|
|
|
2015-09-19 17:46:02 +00:00
|
|
|
%description
|
|
|
|
The runc command can be used to start containers which are packaged
|
|
|
|
in accordance with the Open Container Initiative's specifications,
|
|
|
|
and to manage containers running under runc.
|
|
|
|
|
|
|
|
%prep
|
2022-05-22 22:50:02 +00:00
|
|
|
%autosetup -p1 -n %{name}-%{built_tag_strip}
|
2021-09-10 13:56:29 +00:00
|
|
|
sed -i 's/ -trimpath//g' Makefile
|
2015-09-19 17:46:02 +00:00
|
|
|
|
|
|
|
%build
|
2022-03-29 19:32:40 +00:00
|
|
|
%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
|
|
|
|
|
2017-03-24 14:05:17 +00:00
|
|
|
mkdir -p GOPATH
|
|
|
|
pushd GOPATH
|
|
|
|
mkdir -p src/%{provider}.%{provider_tld}/%{project}
|
|
|
|
ln -s $(dirs +1 -l) src/%{import_path}
|
|
|
|
popd
|
|
|
|
|
|
|
|
pushd GOPATH/src/%{import_path}
|
|
|
|
export GOPATH=%{gopath}:$(pwd)/GOPATH
|
2017-01-06 19:59:06 +00:00
|
|
|
|
2019-04-19 08:42:07 +00:00
|
|
|
make BUILDTAGS="seccomp selinux" all
|
2015-09-19 17:46:02 +00:00
|
|
|
|
2017-12-26 06:08:39 +00:00
|
|
|
sed -i '/\#\!\/bin\/bash/d' contrib/completions/bash/%{name}
|
|
|
|
|
2015-09-19 17:46:02 +00:00
|
|
|
%install
|
|
|
|
install -d -p %{buildroot}%{_bindir}
|
2017-09-05 19:48:22 +00:00
|
|
|
install -p -m 755 %{name} %{buildroot}%{_bindir}
|
2015-09-19 17:46:02 +00:00
|
|
|
|
2016-04-12 10:31:39 +00:00
|
|
|
# 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/.
|
2016-05-26 13:35:18 +00:00
|
|
|
# install bash completion
|
2017-12-26 06:08:39 +00:00
|
|
|
install -d -p %{buildroot}%{_datadir}/bash-completion/completions
|
|
|
|
install -p -m 0644 contrib/completions/bash/%{name} %{buildroot}%{_datadir}/bash-completion/completions
|
2016-04-12 10:31:39 +00:00
|
|
|
|
2015-09-19 17:46:02 +00:00
|
|
|
#define license tag if not already defined
|
|
|
|
%{!?_licensedir:%global license %doc}
|
|
|
|
|
|
|
|
%files
|
|
|
|
%license LICENSE
|
|
|
|
%doc MAINTAINERS_GUIDE.md PRINCIPLES.md README.md CONTRIBUTING.md
|
|
|
|
%{_bindir}/%{name}
|
2017-12-26 06:08:39 +00:00
|
|
|
%{_mandir}/man8/%{name}*
|
|
|
|
%{_datadir}/bash-completion/completions/%{name}
|
2015-09-19 17:46:02 +00:00
|
|
|
|
|
|
|
%changelog
|
2022-08-08 22:04:49 +00:00
|
|
|
* Mon Aug 08 2022 Maxwell G <gotmax@e.email> - 2:1.1.3-1
|
|
|
|
- Update to 1.1.3.
|
|
|
|
|
2022-07-23 02:33:59 +00:00
|
|
|
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2:1.1.2-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-07-19 18:59:03 +00:00
|
|
|
* Tue Jul 19 2022 Maxwell G <gotmax@e.email> - 2:1.1.2-3
|
|
|
|
- Rebuild for CVE-2022-{1705,32148,30631,30633,28131,30635,30632,30630,1962} in
|
|
|
|
golang
|
|
|
|
|
2022-05-22 22:50:02 +00:00
|
|
|
* Mon Jun 27 2022 Maxwell G <gotmax@e.email> - 2:1.1.2-1
|
|
|
|
- Update to 1.1.2. Fixes rhbz#2069648.
|
|
|
|
- Mitigate CVE-2022-29162 / GHSA-f3fp-gc8g-vw66.
|
|
|
|
- Don't pull in git unnecessarily
|
|
|
|
|
2022-06-18 10:19:32 +00:00
|
|
|
* Sat Jun 18 2022 Robert-André Mauchin <zebob.m@gmail.com> - 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
|
|
|
|
|
2022-03-29 19:32:40 +00:00
|
|
|
* Tue Mar 29 2022 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:1.1.1-1
|
|
|
|
- Bump to v1.1.1
|
|
|
|
- add hardening flags
|
|
|
|
- remove unused packages
|
|
|
|
- update license and bundled provides
|
|
|
|
|
2022-01-21 19:30:50 +00:00
|
|
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2:1.1.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2022-01-17 23:03:57 +00:00
|
|
|
* Mon Jan 17 2022 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.1.0-1
|
|
|
|
- autobuilt v1.1.0
|
|
|
|
|
2021-12-14 05:03:50 +00:00
|
|
|
* Tue Dec 14 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.1.0-0.1.rc.1
|
|
|
|
- autobuilt v1.1.0-rc.1
|
|
|
|
|
2021-12-06 05:03:47 +00:00
|
|
|
* Mon Dec 06 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.3-1
|
|
|
|
- autobuilt v1.0.3
|
|
|
|
|
2021-09-10 13:56:29 +00:00
|
|
|
* Fri Sep 10 2021 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:1.0.2-2
|
|
|
|
- use correct v1.0.2 tarball, move trimpath patch in-rpm-spec
|
|
|
|
|
2021-09-10 13:30:10 +00:00
|
|
|
* Fri Sep 10 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.2-1
|
|
|
|
- autobuilt v1.0.2
|
|
|
|
|
2021-07-23 12:56:47 +00:00
|
|
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2:1.0.1-1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-07-19 14:53:17 +00:00
|
|
|
* Mon Jul 19 2021 Daniel Walsh <dwalsh@fedoraproject.org> - 2:1.0.1-0.dev
|
|
|
|
- bump to runc-1.0.1
|
|
|
|
|
2021-06-30 18:27:25 +00:00
|
|
|
* Wed Jun 30 2021 Peter Hunt <pehunt@redhat.com> - 2:1.0.0-2
|
|
|
|
- bump to runc-1.0.0
|
|
|
|
|
2021-05-19 18:41:40 +00:00
|
|
|
* Wed May 19 2021 Peter Hunt <pehunt@redhat.com> - 2:1.0.0-378.rc95
|
|
|
|
- Bump to v1.0.0-rc95
|
|
|
|
|
2021-04-21 20:08:20 +00:00
|
|
|
* Wed Apr 21 2021 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:1.0.0-377.rc93
|
|
|
|
- add Provides: oci-runtime in the right place
|
|
|
|
|
2021-04-13 19:23:39 +00:00
|
|
|
* Tue Apr 13 2021 Lokesh Mandvekar <lsm5@fedoraproject.org> - 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
|
|
|
|
|
2021-04-05 16:38:13 +00:00
|
|
|
* Mon Apr 05 2021 Peter Hunt <pehunt@redhat.com> - 2:1.0.0-375.dev.git12644e6
|
|
|
|
- bump to v1.0.0-rc93
|
|
|
|
|
2021-04-05 16:33:09 +00:00
|
|
|
* Mon Apr 05 2021 Peter Hunt <pehunt@redhat.com> - 2:1.0.0-374.dev.git7e3c3e8
|
|
|
|
- Patch: revert https://github.com/opencontainers/runc/pull/2773
|
|
|
|
|
2021-02-02 14:03:29 +00:00
|
|
|
* Tue Feb 02 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-373.dev.git7e3c3e8
|
|
|
|
- autobuilt 7e3c3e8
|
|
|
|
|
2021-02-01 23:33:00 +00:00
|
|
|
* Mon Feb 01 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-372.dev.gitcc988c1
|
|
|
|
- autobuilt cc988c1
|
|
|
|
|
2021-02-01 17:32:30 +00:00
|
|
|
* Mon Feb 01 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-371.dev.git6c85f63
|
|
|
|
- autobuilt 6c85f63
|
|
|
|
|
2021-02-01 10:02:57 +00:00
|
|
|
* Mon Feb 01 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-370.dev.git4074b47
|
|
|
|
- autobuilt 4074b47
|
|
|
|
|
2021-02-01 05:33:00 +00:00
|
|
|
* Mon Feb 01 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-369.dev.git2046f26
|
|
|
|
- autobuilt 2046f26
|
|
|
|
|
2021-02-01 03:32:41 +00:00
|
|
|
* Mon Feb 01 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-368.dev.git091dd32
|
|
|
|
- autobuilt 091dd32
|
|
|
|
|
2021-02-01 01:32:27 +00:00
|
|
|
* Mon Feb 01 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-367.dev.gita4f2b2b
|
|
|
|
- autobuilt a4f2b2b
|
|
|
|
|
2021-01-31 20:02:45 +00:00
|
|
|
* Sun Jan 31 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-366.dev.gitc531a6f
|
|
|
|
- autobuilt c531a6f
|
|
|
|
|
2021-01-30 06:02:52 +00:00
|
|
|
* Sat Jan 30 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-365.dev.gite17b96d
|
|
|
|
- autobuilt e17b96d
|
|
|
|
|
2021-01-29 09:41:22 +00:00
|
|
|
* Fri Jan 29 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-364.dev.gite7bd1fb
|
|
|
|
- autobuilt e7bd1fb
|
|
|
|
|
2021-01-29 03:33:38 +00:00
|
|
|
* Fri Jan 29 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-363.dev.git8e062f1
|
|
|
|
- autobuilt 8e062f1
|
|
|
|
|
2021-01-29 00:02:34 +00:00
|
|
|
* Fri Jan 29 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-362.dev.git8bbfde8
|
|
|
|
- autobuilt 8bbfde8
|
|
|
|
|
2021-01-27 20:03:39 +00:00
|
|
|
* Wed Jan 27 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-361.dev.git5ef136f
|
|
|
|
- autobuilt 5ef136f
|
|
|
|
|
2021-01-27 11:34:33 +00:00
|
|
|
* Wed Jan 27 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-360.dev.git346f87f
|
|
|
|
- autobuilt 346f87f
|
|
|
|
|
2021-01-27 05:33:03 +00:00
|
|
|
* Wed Jan 27 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-359.dev.git6721470
|
|
|
|
- autobuilt 6721470
|
|
|
|
|
2021-01-26 19:32:42 +00:00
|
|
|
* Tue Jan 26 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-358.dev.gitbe30b6e
|
|
|
|
- autobuilt be30b6e
|
|
|
|
|
2021-01-22 05:32:06 +00:00
|
|
|
* Fri Jan 22 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-357.dev.gitc69ae75
|
|
|
|
- autobuilt c69ae75
|
|
|
|
|
2021-01-22 02:01:50 +00:00
|
|
|
* Fri Jan 22 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-356.dev.git5d6d1be
|
|
|
|
- autobuilt 5d6d1be
|
|
|
|
|
2021-01-21 05:32:21 +00:00
|
|
|
* Thu Jan 21 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-355.dev.git2adbc66
|
|
|
|
- autobuilt 2adbc66
|
|
|
|
|
2021-01-21 04:02:19 +00:00
|
|
|
* Thu Jan 21 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-354.dev.gitd9751a9
|
|
|
|
- autobuilt d9751a9
|
|
|
|
|
2021-01-20 05:32:39 +00:00
|
|
|
* Wed Jan 20 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-353.dev.git1a90116
|
|
|
|
- autobuilt 1a90116
|
|
|
|
|
2021-01-20 01:32:25 +00:00
|
|
|
* Wed Jan 20 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-352.dev.git6e04ad7
|
|
|
|
- autobuilt 6e04ad7
|
|
|
|
|
2021-01-19 23:33:31 +00:00
|
|
|
* Tue Jan 19 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-351.dev.git1814816
|
|
|
|
- autobuilt 1814816
|
|
|
|
|
2021-01-16 18:03:44 +00:00
|
|
|
* Sat Jan 16 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-350.dev.git49cc2a2
|
|
|
|
- autobuilt 49cc2a2
|
|
|
|
|
2021-01-15 21:34:14 +00:00
|
|
|
* Fri Jan 15 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-349.dev.git7590a3f
|
|
|
|
- autobuilt 7590a3f
|
|
|
|
|
2021-01-14 01:32:36 +00:00
|
|
|
* Thu Jan 14 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-348.dev.gitdbbe7e6
|
|
|
|
- autobuilt dbbe7e6
|
|
|
|
|
2021-01-14 00:02:48 +00:00
|
|
|
* Thu Jan 14 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-347.dev.git364ada6
|
|
|
|
- autobuilt 364ada6
|
|
|
|
|
2021-01-13 22:02:57 +00:00
|
|
|
* Wed Jan 13 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-346.dev.git555840a
|
|
|
|
- autobuilt 555840a
|
|
|
|
|
2021-01-13 03:32:52 +00:00
|
|
|
* Wed Jan 13 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-345.dev.gitf973238
|
|
|
|
- autobuilt f973238
|
|
|
|
|
2021-01-11 19:32:45 +00:00
|
|
|
* Mon Jan 11 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-344.dev.git9712205
|
|
|
|
- autobuilt 9712205
|
|
|
|
|
2021-01-06 23:32:32 +00:00
|
|
|
* Wed Jan 6 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-343.dev.git04b7b7d
|
|
|
|
- autobuilt 04b7b7d
|
|
|
|
|
2021-01-04 18:02:33 +00:00
|
|
|
* Mon Jan 4 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-342.dev.git09523b7
|
|
|
|
- autobuilt 09523b7
|
|
|
|
|
2020-12-22 17:32:32 +00:00
|
|
|
* Tue Dec 22 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-341.dev.git5efdc0c
|
|
|
|
- autobuilt 5efdc0c
|
|
|
|
|
2020-12-18 17:33:04 +00:00
|
|
|
* Fri Dec 18 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-340.dev.git77b5d8a
|
|
|
|
- autobuilt 77b5d8a
|
|
|
|
|
2020-12-18 02:03:13 +00:00
|
|
|
* Fri Dec 18 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-339.dev.git2e1c1de
|
|
|
|
- autobuilt 2e1c1de
|
|
|
|
|
2020-12-18 01:33:06 +00:00
|
|
|
* Fri Dec 18 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-338.dev.git2a9d781
|
|
|
|
- autobuilt 2a9d781
|
|
|
|
|
2020-12-10 20:44:46 +00:00
|
|
|
* Thu Dec 10 2020 Matyáš Kroupa <kroupa.matyas@gmail.com> - 2:1.0.0-337.dev.git544048b
|
|
|
|
- Remove cgroupv2.patch
|
|
|
|
|
2020-12-08 03:33:10 +00:00
|
|
|
* Tue Dec 8 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-336.dev.git544048b
|
|
|
|
- autobuilt 544048b
|
|
|
|
|
2020-12-07 06:02:24 +00:00
|
|
|
* Mon Dec 7 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-335.dev.git4d8d989
|
|
|
|
- autobuilt 4d8d989
|
|
|
|
|
2020-12-05 01:33:33 +00:00
|
|
|
* Sat Dec 5 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-334.dev.gitb923ff4
|
|
|
|
- autobuilt b923ff4
|
|
|
|
|
2020-12-04 04:02:49 +00:00
|
|
|
* Fri Dec 4 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-333.dev.git4b055ff
|
|
|
|
- autobuilt 4b055ff
|
|
|
|
|
2020-12-04 01:33:22 +00:00
|
|
|
* Fri Dec 4 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-332.dev.git166068a
|
|
|
|
- autobuilt 166068a
|
|
|
|
|
2020-12-04 00:03:04 +00:00
|
|
|
* Fri Dec 4 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-331.dev.git8518317
|
|
|
|
- autobuilt 8518317
|
|
|
|
|
2020-12-03 03:32:17 +00:00
|
|
|
* Thu Dec 3 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-330.dev.gitbd013b6
|
|
|
|
- autobuilt bd013b6
|
|
|
|
|
2020-12-02 19:33:01 +00:00
|
|
|
* Wed Dec 2 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-329.dev.git56a1f1f
|
|
|
|
- autobuilt 56a1f1f
|
|
|
|
|
2020-12-02 09:32:42 +00:00
|
|
|
* Wed Dec 2 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-328.dev.git3517877
|
|
|
|
- autobuilt 3517877
|
|
|
|
|
2020-12-02 03:32:50 +00:00
|
|
|
* Wed Dec 2 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-327.dev.git2a50985
|
|
|
|
- autobuilt 2a50985
|
|
|
|
|
2020-11-30 21:33:09 +00:00
|
|
|
* Mon Nov 30 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-326.dev.git2b92c25
|
|
|
|
- autobuilt 2b92c25
|
|
|
|
|
2020-11-30 02:02:35 +00:00
|
|
|
* Mon Nov 30 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-325.dev.git7cfb3dc
|
|
|
|
- autobuilt 7cfb3dc
|
|
|
|
|
2020-11-24 05:32:00 +00:00
|
|
|
* Tue Nov 24 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-324.dev.git06b737b
|
|
|
|
- autobuilt 06b737b
|
|
|
|
|
2020-11-23 20:20:49 +00:00
|
|
|
* Mon Nov 23 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-323.dev.gitd15ffff
|
|
|
|
- autobuilt d15ffff
|
|
|
|
|
2020-11-23 14:32:14 +00:00
|
|
|
* Mon Nov 23 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-322.dev.git0b11e29
|
|
|
|
- autobuilt 0b11e29
|
|
|
|
|
2020-11-20 14:33:47 +00:00
|
|
|
* Fri Nov 20 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-321.dev.gitb69070a
|
|
|
|
- autobuilt b69070a
|
|
|
|
|
2020-11-18 14:34:26 +00:00
|
|
|
* Wed Nov 18 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-320.dev.git689513c
|
|
|
|
- autobuilt 689513c
|
|
|
|
|
2020-11-11 14:34:12 +00:00
|
|
|
* Wed Nov 11 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-319.dev.git636f23d
|
|
|
|
- autobuilt 636f23d
|
|
|
|
|
2020-11-10 14:33:38 +00:00
|
|
|
* Tue Nov 10 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-318.dev.git30233a7
|
|
|
|
- autobuilt 30233a7
|
|
|
|
|
2020-11-07 14:32:28 +00:00
|
|
|
* Sat Nov 7 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-317.dev.git27227a9
|
|
|
|
- autobuilt 27227a9
|
|
|
|
|
2020-11-06 14:33:27 +00:00
|
|
|
* Fri Nov 6 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-316.dev.gite8498d3
|
|
|
|
- autobuilt e8498d3
|
|
|
|
|
2020-11-05 18:27:43 +00:00
|
|
|
* Thu Nov 5 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-315.dev.gitcf6c074
|
|
|
|
- autobuilt cf6c074
|
|
|
|
|
2020-10-23 17:25:23 +00:00
|
|
|
* Fri Oct 23 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-314.dev.git07e35a7
|
|
|
|
- autobuilt 07e35a7
|
|
|
|
|
2020-10-21 14:32:41 +00:00
|
|
|
* Wed Oct 21 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-313.dev.git411e413
|
|
|
|
- autobuilt 411e413
|
|
|
|
|
2020-10-20 14:37:55 +00:00
|
|
|
* Tue Oct 20 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-312.dev.git7ba005b
|
|
|
|
- autobuilt 7ba005b
|
|
|
|
|
2020-10-16 14:32:27 +00:00
|
|
|
* Fri Oct 16 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-311.dev.gitd8bfd6c
|
|
|
|
- autobuilt d8bfd6c
|
|
|
|
|
2020-10-09 14:32:25 +00:00
|
|
|
* Fri Oct 9 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-310.dev.git44f221e
|
|
|
|
- autobuilt 44f221e
|
|
|
|
|
2020-10-08 14:33:26 +00:00
|
|
|
* Thu Oct 8 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-309.dev.git10825f7
|
|
|
|
- autobuilt 10825f7
|
|
|
|
|
2020-10-07 14:32:06 +00:00
|
|
|
* Wed Oct 7 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-308.dev.gitc11e997
|
|
|
|
- autobuilt c11e997
|
|
|
|
|
2020-10-06 14:31:56 +00:00
|
|
|
* Tue Oct 6 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-307.dev.gitbb539a9
|
|
|
|
- autobuilt bb539a9
|
|
|
|
|
2020-10-05 14:31:43 +00:00
|
|
|
* Mon Oct 5 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-306.dev.gitc23c05e
|
|
|
|
- autobuilt c23c05e
|
|
|
|
|
2020-10-03 14:31:26 +00:00
|
|
|
* Sat Oct 3 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-305.dev.gitf671f6b
|
|
|
|
- autobuilt f671f6b
|
|
|
|
|
2020-10-02 14:31:32 +00:00
|
|
|
* Fri Oct 2 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-304.dev.git750036e
|
|
|
|
- autobuilt 750036e
|
|
|
|
|
2020-10-01 12:48:51 +00:00
|
|
|
* Thu Oct 1 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-303.dev.gita220b9c
|
|
|
|
- autobuilt a220b9c
|
|
|
|
|
2020-09-30 08:12:15 +00:00
|
|
|
* Wed Sep 30 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-302.dev.gitecfad5a
|
|
|
|
- autobuilt ecfad5a
|
|
|
|
|
2020-09-29 05:12:04 +00:00
|
|
|
* Tue Sep 29 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-301.dev.git49d4507
|
|
|
|
- autobuilt 49d4507
|
|
|
|
|
2020-09-28 17:11:52 +00:00
|
|
|
* Mon Sep 28 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-300.dev.git43d2b10
|
|
|
|
- autobuilt 43d2b10
|
|
|
|
|
2020-09-26 10:11:51 +00:00
|
|
|
* Sat Sep 26 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-299.dev.git6e5320f
|
|
|
|
- autobuilt 6e5320f
|
|
|
|
|
2020-09-25 20:08:13 +00:00
|
|
|
* Fri Sep 25 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-298.dev.git33faa5d
|
|
|
|
- autobuilt 33faa5d
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Tue Sep 22 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-297.dev.git190fcf2
|
2020-09-22 02:12:06 +00:00
|
|
|
- autobuilt 190fcf2
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Thu Sep 17 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-296.dev.gitd636ad6
|
2020-09-17 10:12:21 +00:00
|
|
|
- autobuilt d636ad6
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Tue Sep 15 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-295.dev.git892477c
|
2020-09-15 16:13:09 +00:00
|
|
|
- autobuilt 892477c
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Fri Sep 11 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-294.dev.git2cf8d24
|
2020-09-11 03:13:17 +00:00
|
|
|
- autobuilt 2cf8d24
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Thu Sep 10 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-293.dev.gitbbd4ffe
|
2020-09-10 20:13:09 +00:00
|
|
|
- autobuilt bbd4ffe
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Thu Sep 10 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-292.dev.gitab740e9
|
2020-09-10 13:12:28 +00:00
|
|
|
- autobuilt ab740e9
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Wed Sep 9 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-291.dev.git165ecd2
|
2020-09-09 16:12:32 +00:00
|
|
|
- autobuilt 165ecd2
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Thu Sep 3 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-290.dev.gitcbb0a79
|
2020-09-03 14:12:56 +00:00
|
|
|
- autobuilt cbb0a79
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Tue Aug 25 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-289.dev.git09ddc63
|
2020-08-25 02:11:48 +00:00
|
|
|
- autobuilt 09ddc63
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Fri Aug 21 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-288.dev.gite5f2eae
|
2020-08-21 20:10:41 +00:00
|
|
|
- autobuilt e5f2eae
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Thu Aug 20 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-287.dev.gitf844a2f
|
2020-08-20 19:10:48 +00:00
|
|
|
- autobuilt f844a2f
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Thu Aug 20 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-286.dev.gite949339
|
2020-08-20 15:10:31 +00:00
|
|
|
- autobuilt e949339
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Wed Aug 19 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-285.dev.git2265daa
|
2020-08-19 07:11:21 +00:00
|
|
|
- autobuilt 2265daa
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Tue Aug 18 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-284.dev.gita5847db
|
2020-08-18 05:11:34 +00:00
|
|
|
- autobuilt a5847db
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Tue Aug 18 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-283.dev.git7930f0c
|
2020-08-18 01:11:27 +00:00
|
|
|
- autobuilt 7930f0c
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Mon Aug 17 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-282.dev.git49a7346
|
2020-08-17 19:11:06 +00:00
|
|
|
- autobuilt 49a7346
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Thu Aug 13 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-281.dev.git54c53b1
|
2020-08-13 04:11:23 +00:00
|
|
|
- autobuilt 54c53b1
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Wed Aug 12 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-280.dev.gita2d1f85
|
2020-08-12 16:10:10 +00:00
|
|
|
- autobuilt a2d1f85
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Mon Aug 10 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-279.dev.gitdedadbf
|
2020-08-10 15:11:24 +00:00
|
|
|
- autobuilt dedadbf
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Thu Aug 06 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-278.dev.gita340fa9
|
2020-08-06 05:10:18 +00:00
|
|
|
- autobuilt a340fa9
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Tue Aug 04 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-277.dev.gitf668854
|
2020-08-04 05:10:03 +00:00
|
|
|
- autobuilt f668854
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Mon Aug 03 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-276.dev.git78d02e8
|
2020-08-03 08:12:28 +00:00
|
|
|
- autobuilt 78d02e8
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Sat Aug 01 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-275.dev.git3de3112
|
2020-08-01 01:09:57 +00:00
|
|
|
- autobuilt 3de3112
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Fri Jul 31 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-274.dev.gitd6f5641
|
2020-07-31 03:10:03 +00:00
|
|
|
- autobuilt d6f5641
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Fri Jul 31 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-273.dev.git46243fc
|
2020-07-31 00:10:03 +00:00
|
|
|
- autobuilt 46243fc
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Thu Jul 30 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-272.dev.git97b02cf
|
2020-07-30 19:10:52 +00:00
|
|
|
- autobuilt 97b02cf
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Wed Jul 29 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-271.dev.git67169a9
|
2020-07-29 03:09:25 +00:00
|
|
|
- autobuilt 67169a9
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Thu Jul 23 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-270.dev.gitd65df61
|
2020-07-23 20:09:51 +00:00
|
|
|
- autobuilt d65df61
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Wed Jul 22 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-269.dev.git86d9399
|
2020-07-22 19:10:20 +00:00
|
|
|
- autobuilt 86d9399
|
|
|
|
|
2021-04-21 21:10:46 +00:00
|
|
|
* Mon Jul 20 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-268.dev.gitf8749ba
|
2020-07-20 03:09:29 +00:00
|
|
|
- autobuilt f8749ba
|
|
|
|
|
2020-07-16 01:09:33 +00:00
|
|
|
* Thu Jul 16 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-267.dev.gitf9850af
|
|
|
|
- autobuilt f9850af
|
|
|
|
|
2020-07-13 16:10:26 +00:00
|
|
|
* Mon Jul 13 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-266.dev.gitb7d8f3b
|
|
|
|
- autobuilt b7d8f3b
|
|
|
|
|
2020-07-13 15:09:51 +00:00
|
|
|
* Mon Jul 13 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-265.dev.git47fbafb
|
|
|
|
- autobuilt 47fbafb
|
|
|
|
|
2020-07-09 23:09:17 +00:00
|
|
|
* Thu Jul 09 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-264.dev.gitcf1273a
|
|
|
|
- autobuilt cf1273a
|
|
|
|
|
2020-07-09 05:09:12 +00:00
|
|
|
* Thu Jul 09 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-263.dev.git545ebdd
|
|
|
|
- autobuilt 545ebdd
|
|
|
|
|
2020-07-09 04:11:01 +00:00
|
|
|
* Thu Jul 09 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-262.dev.gitfbf047b
|
|
|
|
- autobuilt fbf047b
|
|
|
|
|
2020-07-08 21:09:29 +00:00
|
|
|
* Wed Jul 08 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-261.dev.gitce54a9d
|
|
|
|
- autobuilt ce54a9d
|
|
|
|
|
2020-07-08 20:09:24 +00:00
|
|
|
* Wed Jul 08 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-260.dev.git9806eb5
|
|
|
|
- autobuilt 9806eb5
|
|
|
|
|
2020-07-08 15:09:53 +00:00
|
|
|
* Wed Jul 08 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-259.dev.git5517d1d
|
|
|
|
- autobuilt 5517d1d
|
|
|
|
|
2020-07-07 02:09:37 +00:00
|
|
|
* Tue Jul 07 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-258.dev.git819fcc6
|
|
|
|
- autobuilt 819fcc6
|
|
|
|
|
2020-07-06 23:09:08 +00:00
|
|
|
* Mon Jul 06 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-257.dev.git30dc54a
|
|
|
|
- autobuilt 30dc54a
|
|
|
|
|
2020-07-06 22:09:32 +00:00
|
|
|
* Mon Jul 06 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-256.dev.git3f81131
|
|
|
|
- autobuilt 3f81131
|
|
|
|
|
2020-07-06 19:09:19 +00:00
|
|
|
* Mon Jul 06 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-255.dev.git46a304b
|
|
|
|
- autobuilt 46a304b
|
|
|
|
|
2020-07-03 03:09:14 +00:00
|
|
|
* Fri Jul 03 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-254.dev.git3cb1909
|
|
|
|
- autobuilt 3cb1909
|
|
|
|
|
2020-07-02 01:09:18 +00:00
|
|
|
* Thu Jul 02 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-253.dev.git6f5edda
|
|
|
|
- autobuilt 6f5edda
|
|
|
|
|
2020-06-24 02:09:17 +00:00
|
|
|
* Wed Jun 24 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-252.dev.git1b94395
|
|
|
|
- autobuilt 1b94395
|
|
|
|
|
2020-06-22 20:09:10 +00:00
|
|
|
* Mon Jun 22 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-251.dev.git834c457
|
|
|
|
- autobuilt 834c457
|
|
|
|
|
2020-06-20 03:09:14 +00:00
|
|
|
* Sat Jun 20 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-250.dev.git0fa097f
|
|
|
|
- autobuilt 0fa097f
|
|
|
|
|
2020-06-19 20:09:21 +00:00
|
|
|
* Fri Jun 19 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-249.dev.gitdff7685
|
|
|
|
- autobuilt dff7685
|
|
|
|
|
2020-06-19 04:10:56 +00:00
|
|
|
* Fri Jun 19 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-248.dev.git9748b48
|
|
|
|
- autobuilt 9748b48
|
|
|
|
|
2020-06-18 23:08:58 +00:00
|
|
|
* Thu Jun 18 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-247.dev.git819c40b
|
|
|
|
- autobuilt 819c40b
|
|
|
|
|
2020-06-17 19:09:06 +00:00
|
|
|
* Wed Jun 17 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-246.dev.git406298f
|
|
|
|
- autobuilt 406298f
|
|
|
|
|
2020-06-17 14:09:49 +00:00
|
|
|
* Wed Jun 17 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-245.dev.git12a7c8f
|
|
|
|
- autobuilt 12a7c8f
|
|
|
|
|
2020-06-16 05:09:22 +00:00
|
|
|
* Tue Jun 16 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-244.dev.git82d2fa4
|
|
|
|
- autobuilt 82d2fa4
|
|
|
|
|
2020-06-16 02:10:37 +00:00
|
|
|
* Tue Jun 16 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-243.dev.git55c77cb
|
|
|
|
- autobuilt 55c77cb
|
|
|
|
|
2020-06-16 01:09:54 +00:00
|
|
|
* Tue Jun 16 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-242.dev.git5b247e7
|
|
|
|
- autobuilt 5b247e7
|
|
|
|
|
2020-06-11 23:09:47 +00:00
|
|
|
* Thu Jun 11 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-241.dev.gitfdc4837
|
|
|
|
- autobuilt fdc4837
|
|
|
|
|
2020-06-11 20:09:10 +00:00
|
|
|
* Thu Jun 11 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-240.dev.gited9d93e
|
|
|
|
- autobuilt ed9d93e
|
|
|
|
|
2020-06-10 05:09:19 +00:00
|
|
|
* Wed Jun 10 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-239.dev.gitb216304
|
|
|
|
- autobuilt b216304
|
|
|
|
|
2020-06-05 22:09:06 +00:00
|
|
|
* Fri Jun 05 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-238.dev.git1b97c04
|
|
|
|
- autobuilt 1b97c04
|
|
|
|
|
2020-06-04 23:08:57 +00:00
|
|
|
* Thu Jun 04 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-237.dev.git2a04669
|
|
|
|
- autobuilt 2a04669
|
|
|
|
|
2020-06-02 19:08:21 +00:00
|
|
|
* Tue Jun 02 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-236.dev.git0853956
|
|
|
|
- autobuilt 0853956
|
|
|
|
|
2020-06-02 18:08:15 +00:00
|
|
|
* Tue Jun 02 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-235.dev.git1302020
|
|
|
|
- autobuilt 1302020
|
|
|
|
|
2020-05-31 17:09:00 +00:00
|
|
|
* Sun May 31 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-234.dev.gitdbe5aca
|
|
|
|
- autobuilt dbe5aca
|
|
|
|
|
2020-05-31 16:08:48 +00:00
|
|
|
* Sun May 31 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-233.dev.git0f7ffbe
|
|
|
|
- autobuilt 0f7ffbe
|
|
|
|
|
2020-05-31 09:08:58 +00:00
|
|
|
* Sun May 31 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-232.dev.gita30f255
|
|
|
|
- autobuilt a30f255
|
|
|
|
|
2020-05-30 12:08:50 +00:00
|
|
|
* Sat May 30 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-231.dev.gite664e73
|
|
|
|
- autobuilt e664e73
|
|
|
|
|
2020-05-30 05:08:57 +00:00
|
|
|
* Sat May 30 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-230.dev.git2679754
|
|
|
|
- autobuilt 2679754
|
|
|
|
|
2020-05-30 00:09:11 +00:00
|
|
|
* Sat May 30 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-229.dev.git774a9e7
|
|
|
|
- autobuilt 774a9e7
|
|
|
|
|
2020-05-29 06:10:32 +00:00
|
|
|
* Fri May 29 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-228.dev.git64dbdb8
|
|
|
|
- autobuilt 64dbdb8
|
|
|
|
|
2020-05-27 23:08:40 +00:00
|
|
|
* Wed May 27 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-227.dev.git4f0bdaf
|
|
|
|
- autobuilt 4f0bdaf
|
|
|
|
|
2020-05-27 02:10:57 +00:00
|
|
|
* Wed May 27 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-226.dev.gita891fee
|
|
|
|
- autobuilt a891fee
|
|
|
|
|
2020-05-26 06:08:41 +00:00
|
|
|
* Tue May 26 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-225.dev.git1f737ee
|
|
|
|
- autobuilt 1f737ee
|
|
|
|
|
2020-05-25 05:08:56 +00:00
|
|
|
* Mon May 25 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-224.dev.git7673bee
|
|
|
|
- autobuilt 7673bee
|
|
|
|
|
2020-05-21 01:07:58 +00:00
|
|
|
* Thu May 21 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-223.dev.git3c8da9d
|
|
|
|
- autobuilt 3c8da9d
|
|
|
|
|
2020-05-21 00:08:09 +00:00
|
|
|
* Thu May 21 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-222.dev.git21cb236
|
|
|
|
- autobuilt 21cb236
|
|
|
|
|
2020-05-20 23:08:04 +00:00
|
|
|
* Wed May 20 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-221.dev.git8cd84e3
|
|
|
|
- autobuilt 8cd84e3
|
|
|
|
|
2020-05-20 20:08:01 +00:00
|
|
|
* Wed May 20 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-220.dev.git716079f
|
|
|
|
- autobuilt 716079f
|
|
|
|
|
2020-05-20 17:08:09 +00:00
|
|
|
* Wed May 20 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-219.dev.gitcd4b71c
|
|
|
|
- autobuilt cd4b71c
|
|
|
|
|
2020-05-20 15:08:30 +00:00
|
|
|
* Wed May 20 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-218.dev.git9a808dd
|
|
|
|
- autobuilt 9a808dd
|
|
|
|
|
2020-05-19 19:08:08 +00:00
|
|
|
* Tue May 19 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-217.dev.gitb207d57
|
|
|
|
- autobuilt b207d57
|
|
|
|
|
2020-05-19 00:08:09 +00:00
|
|
|
* Tue May 19 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-216.dev.gitf369199
|
|
|
|
- autobuilt f369199
|
|
|
|
|
2020-05-18 19:08:03 +00:00
|
|
|
* Mon May 18 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-215.dev.git53a4649
|
|
|
|
- autobuilt 53a4649
|
|
|
|
|
2020-05-14 01:08:06 +00:00
|
|
|
* Thu May 14 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-214.dev.git3f1e886
|
|
|
|
- autobuilt 3f1e886
|
|
|
|
|
2020-05-13 22:07:52 +00:00
|
|
|
* Wed May 13 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-213.dev.git85d4264
|
|
|
|
- autobuilt 85d4264
|
|
|
|
|
2020-05-13 21:07:52 +00:00
|
|
|
* Wed May 13 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-212.dev.git4b71877
|
|
|
|
- autobuilt 4b71877
|
|
|
|
|
2020-05-13 01:07:53 +00:00
|
|
|
* Wed May 13 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-211.dev.gitdf3d7f6
|
|
|
|
- autobuilt df3d7f6
|
|
|
|
|
2020-05-13 00:08:05 +00:00
|
|
|
* Wed May 13 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-210.dev.git58bf083
|
|
|
|
- autobuilt 58bf083
|
|
|
|
|
2020-05-12 06:07:56 +00:00
|
|
|
* Tue May 12 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-209.dev.git2b9a36e
|
|
|
|
- autobuilt 2b9a36e
|
|
|
|
|
2020-05-12 05:08:30 +00:00
|
|
|
* Tue May 12 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-208.dev.git867c9f5
|
|
|
|
- autobuilt 867c9f5
|
|
|
|
|
2020-05-08 19:08:10 +00:00
|
|
|
* Fri May 08 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-207.dev.git2c8d668
|
|
|
|
- autobuilt 2c8d668
|
|
|
|
|
2020-05-08 14:08:32 +00:00
|
|
|
* Fri May 08 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-206.dev.git6621af8
|
|
|
|
- autobuilt 6621af8
|
|
|
|
|
2020-05-08 05:07:15 +00:00
|
|
|
* Fri May 08 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-205.dev.git2b31437
|
|
|
|
- autobuilt 2b31437
|
|
|
|
|
2020-05-08 04:07:58 +00:00
|
|
|
* Fri May 08 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-204.dev.git47a7343
|
|
|
|
- autobuilt 47a7343
|
|
|
|
|
2020-05-06 22:07:18 +00:00
|
|
|
* Wed May 06 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-203.dev.git64416d3
|
|
|
|
- autobuilt 64416d3
|
|
|
|
|
2020-05-05 00:09:58 +00:00
|
|
|
* Tue May 05 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-202.dev.gita57358e
|
|
|
|
- autobuilt a57358e
|
|
|
|
|
2020-05-04 23:07:52 +00:00
|
|
|
* Mon May 04 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-201.dev.git96310f0
|
|
|
|
- autobuilt 96310f0
|
|
|
|
|
2020-05-04 18:07:49 +00:00
|
|
|
* Mon May 04 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-200.dev.gita0ddd02
|
|
|
|
- autobuilt a0ddd02
|
|
|
|
|
2020-05-04 17:08:04 +00:00
|
|
|
* Mon May 04 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-199.dev.git12ba2a7
|
|
|
|
- autobuilt 12ba2a7
|
|
|
|
|
2020-05-03 16:10:06 +00:00
|
|
|
* Sun May 03 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-198.dev.git609ba79
|
|
|
|
- autobuilt 609ba79
|
|
|
|
|
2020-05-03 02:08:38 +00:00
|
|
|
* Sun May 03 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-197.dev.gitf6439a8
|
|
|
|
- autobuilt f6439a8
|
|
|
|
|
2020-04-29 16:07:30 +00:00
|
|
|
* Wed Apr 29 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-196.dev.gitdd8d48e
|
|
|
|
- autobuilt dd8d48e
|
|
|
|
|
2020-04-29 05:07:20 +00:00
|
|
|
* Wed Apr 29 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-195.dev.git051d670
|
|
|
|
- autobuilt 051d670
|
|
|
|
|
2020-04-29 02:07:26 +00:00
|
|
|
* Wed Apr 29 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-194.dev.gitc18485a
|
|
|
|
- autobuilt c18485a
|
|
|
|
|
2020-04-28 18:07:36 +00:00
|
|
|
* Tue Apr 28 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-193.dev.git0a4dcc0
|
|
|
|
- autobuilt 0a4dcc0
|
|
|
|
|
2020-04-28 05:07:21 +00:00
|
|
|
* Tue Apr 28 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-192.dev.git80e2d1f
|
|
|
|
- autobuilt 80e2d1f
|
|
|
|
|
2020-04-27 05:08:47 +00:00
|
|
|
* Mon Apr 27 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-191.dev.git53fb4a5
|
|
|
|
- autobuilt 53fb4a5
|
|
|
|
|
2020-04-25 07:08:31 +00:00
|
|
|
* Sat Apr 25 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-190.dev.gitb19f9ce
|
|
|
|
- autobuilt b19f9ce
|
|
|
|
|
2020-04-25 00:08:46 +00:00
|
|
|
* Sat Apr 25 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-189.dev.git0fd8d46
|
|
|
|
- autobuilt 0fd8d46
|
|
|
|
|
2020-04-24 16:09:00 +00:00
|
|
|
* Fri Apr 24 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-188.dev.git634e51b
|
|
|
|
- autobuilt 634e51b
|
|
|
|
|
2020-04-24 08:08:57 +00:00
|
|
|
* Fri Apr 24 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-187.dev.git49ca1fd
|
|
|
|
- autobuilt 49ca1fd
|
|
|
|
|
2020-04-24 03:08:33 +00:00
|
|
|
* Fri Apr 24 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-186.dev.git78ff279
|
|
|
|
- autobuilt 78ff279
|
|
|
|
|
2020-04-24 02:08:50 +00:00
|
|
|
* Fri Apr 24 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-185.dev.git4402442
|
|
|
|
- autobuilt 4402442
|
|
|
|
|
2020-04-23 09:08:38 +00:00
|
|
|
* Thu Apr 23 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-184.dev.gitdbe44cb
|
|
|
|
- autobuilt dbe44cb
|
|
|
|
|
2020-04-22 16:07:53 +00:00
|
|
|
* Wed Apr 22 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-183.dev.gitcdce577
|
|
|
|
- autobuilt cdce577
|
|
|
|
|
2020-04-21 05:08:16 +00:00
|
|
|
* Tue Apr 21 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-182.dev.git46be7b6
|
|
|
|
- autobuilt 46be7b6
|
|
|
|
|
2020-04-20 14:21:47 +00:00
|
|
|
* Mon Apr 20 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-181.dev.git5b38ef7
|
|
|
|
- autobuilt 5b38ef7
|
|
|
|
|
2020-04-16 14:08:09 +00:00
|
|
|
* Thu Apr 16 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-180.dev.gite4981c9
|
|
|
|
- autobuilt e4981c9
|
|
|
|
|
2020-04-16 02:07:53 +00:00
|
|
|
* Thu Apr 16 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-179.dev.git9f6a2d4
|
|
|
|
- autobuilt 9f6a2d4
|
|
|
|
|
2020-04-15 22:07:58 +00:00
|
|
|
* Wed Apr 15 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-178.dev.git191def7
|
|
|
|
- autobuilt 191def7
|
|
|
|
|
2020-04-14 23:07:25 +00:00
|
|
|
* Tue Apr 14 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-177.dev.git56aca5a
|
|
|
|
- autobuilt 56aca5a
|
|
|
|
|
2020-04-14 16:07:15 +00:00
|
|
|
* Tue Apr 14 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-176.dev.git5c6216b
|
|
|
|
- autobuilt 5c6216b
|
|
|
|
|
2020-04-13 17:08:38 +00:00
|
|
|
* Mon Apr 13 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-175.dev.git13431e0
|
|
|
|
- autobuilt 13431e0
|
|
|
|
|
2020-04-09 22:09:50 +00:00
|
|
|
* Thu Apr 09 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-174.dev.gitccbb336
|
|
|
|
- autobuilt ccbb336
|
|
|
|
|
2020-04-09 19:08:36 +00:00
|
|
|
* Thu Apr 09 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-173.dev.gitd65ba5f
|
|
|
|
- autobuilt d65ba5f
|
|
|
|
|
2020-04-08 19:08:13 +00:00
|
|
|
* Wed Apr 08 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-172.dev.git9a93b73
|
|
|
|
- autobuilt 9a93b73
|
|
|
|
|
2020-04-08 14:49:42 +00:00
|
|
|
* Wed Apr 08 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-171.dev.git5c15da9
|
|
|
|
- autobuilt 5c15da9
|
|
|
|
|
2020-04-07 15:08:37 +00:00
|
|
|
* Tue Apr 07 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-170.dev.gitd3fdacb
|
|
|
|
- autobuilt d3fdacb
|
|
|
|
|
2020-04-06 22:08:12 +00:00
|
|
|
* Mon Apr 06 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-169.dev.gitd5e91b1
|
|
|
|
- autobuilt d5e91b1
|
|
|
|
|
2020-04-06 21:08:15 +00:00
|
|
|
* Mon Apr 06 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-168.dev.git0c7a9c0
|
|
|
|
- autobuilt 0c7a9c0
|
|
|
|
|
2020-04-06 20:08:48 +00:00
|
|
|
* Mon Apr 06 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-167.dev.git6cda0ea
|
|
|
|
- autobuilt 6cda0ea
|
|
|
|
|
2020-04-03 16:08:43 +00:00
|
|
|
* Fri Apr 03 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-166.dev.gite4363b0
|
|
|
|
- autobuilt e4363b0
|
|
|
|
|
2020-04-02 23:08:08 +00:00
|
|
|
* Thu Apr 02 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-165.dev.git0c6659a
|
|
|
|
- autobuilt 0c6659a
|
|
|
|
|
2020-04-02 19:08:42 +00:00
|
|
|
* Thu Apr 02 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-164.dev.gitf8e1388
|
|
|
|
- autobuilt f8e1388
|
|
|
|
|
2020-04-02 01:08:14 +00:00
|
|
|
* Thu Apr 02 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-163.dev.gite3e26ca
|
|
|
|
- autobuilt e3e26ca
|
|
|
|
|
2020-03-31 19:08:09 +00:00
|
|
|
* Tue Mar 31 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-162.dev.git9ec5b03
|
|
|
|
- autobuilt 9ec5b03
|
|
|
|
|
2020-03-30 22:08:02 +00:00
|
|
|
* Mon Mar 30 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-161.dev.git4a9e174
|
|
|
|
- autobuilt 4a9e174
|
|
|
|
|
2020-03-30 19:08:10 +00:00
|
|
|
* Mon Mar 30 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-160.dev.git8df45c8
|
|
|
|
- autobuilt 8df45c8
|
|
|
|
|
2020-03-27 19:07:35 +00:00
|
|
|
* Fri Mar 27 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-159.dev.gitf1eea90
|
|
|
|
- autobuilt f1eea90
|
|
|
|
|
2020-03-27 04:10:12 +00:00
|
|
|
* Fri Mar 27 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-158.dev.gitd4a6a1d
|
|
|
|
- autobuilt d4a6a1d
|
|
|
|
|
2020-03-26 23:07:37 +00:00
|
|
|
* Thu Mar 26 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-157.dev.gitcebef0e
|
|
|
|
- autobuilt cebef0e
|
|
|
|
|
2020-03-26 05:07:36 +00:00
|
|
|
* Thu Mar 26 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-156.dev.git96596cb
|
|
|
|
- autobuilt 96596cb
|
|
|
|
|
2020-03-24 22:07:36 +00:00
|
|
|
* Tue Mar 24 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-155.dev.gitbe51398
|
|
|
|
- autobuilt be51398
|
|
|
|
|
2020-03-24 18:07:37 +00:00
|
|
|
* Tue Mar 24 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-154.dev.gitcc183ca
|
|
|
|
- autobuilt cc183ca
|
|
|
|
|
2020-03-24 17:07:43 +00:00
|
|
|
* Tue Mar 24 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-153.dev.git4e6d8a0
|
|
|
|
- autobuilt 4e6d8a0
|
|
|
|
|
2020-03-24 04:09:07 +00:00
|
|
|
* Tue Mar 24 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-152.dev.git3087d43
|
|
|
|
- autobuilt 3087d43
|
|
|
|
|
2020-03-23 21:07:28 +00:00
|
|
|
* Mon Mar 23 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-151.dev.git07bd280
|
|
|
|
- autobuilt 07bd280
|
|
|
|
|
2020-03-23 16:08:08 +00:00
|
|
|
* Mon Mar 23 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-150.dev.git1797622
|
|
|
|
- autobuilt 1797622
|
|
|
|
|
2020-03-17 17:28:15 +00:00
|
|
|
* Tue Mar 17 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-149.dev.git939cd0b
|
|
|
|
- autobuilt 939cd0b
|
|
|
|
|
2020-03-16 16:33:22 +00:00
|
|
|
* Mon Mar 16 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-148.dev.git525b9f3
|
|
|
|
- autobuilt 525b9f3
|
|
|
|
|
2020-03-16 04:16:47 +00:00
|
|
|
* Mon Mar 16 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-147.dev.git981dbef
|
|
|
|
- autobuilt 981dbef
|
|
|
|
|
2020-03-14 20:14:29 +00:00
|
|
|
* Sat Mar 14 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-146.dev.git8615da6
|
|
|
|
- autobuilt 8615da6
|
|
|
|
|
2020-03-02 13:17:29 +00:00
|
|
|
* Mon Mar 02 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-145.dev.git3b7e32f
|
|
|
|
- autobuilt 3b7e32f
|
|
|
|
|
2020-02-04 04:15:58 +00:00
|
|
|
* Tue Feb 04 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-144.dev.gite6555cc
|
|
|
|
- autobuilt e6555cc
|
|
|
|
|
2020-01-31 04:11:13 +00:00
|
|
|
* Fri Jan 31 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-143.dev.gitff107ee
|
|
|
|
- autobuilt ff107ee
|
|
|
|
|
2020-01-28 04:11:30 +00:00
|
|
|
* Tue Jan 28 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-142.dev.git2b5730a
|
|
|
|
- autobuilt 2b5730a
|
|
|
|
|
2020-01-22 16:10:05 +00:00
|
|
|
* Wed Jan 22 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-141.dev.git2fc03cc
|
|
|
|
- autobuilt 2fc03cc
|
|
|
|
|
2020-01-16 16:10:17 +00:00
|
|
|
* Thu Jan 16 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-140.dev.gitf6fb7a0
|
|
|
|
- autobuilt f6fb7a0
|
|
|
|
|
2020-01-14 11:10:05 +00:00
|
|
|
* Tue Jan 14 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-139.dev.git709377c
|
|
|
|
- autobuilt 709377c
|
|
|
|
|
2020-01-14 01:10:11 +00:00
|
|
|
* Tue Jan 14 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-138.dev.git5cc0dea
|
|
|
|
- autobuilt 5cc0dea
|
|
|
|
|
2020-01-02 17:10:03 +00:00
|
|
|
* Thu Jan 02 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-137.dev.git2b52db7
|
|
|
|
- autobuilt 2b52db7
|
|
|
|
|
2019-12-31 13:41:07 +00:00
|
|
|
* Tue Dec 31 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-136.dev.gita88592a
|
|
|
|
- autobuilt a88592a
|
|
|
|
|
2019-12-17 10:10:03 +00:00
|
|
|
* Tue Dec 17 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-135.dev.git7496a96
|
|
|
|
- autobuilt 7496a96
|
|
|
|
|
2019-12-06 23:09:55 +00:00
|
|
|
* Fri Dec 06 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-134.dev.git201b063
|
|
|
|
- autobuilt 201b063
|
|
|
|
|
2019-12-06 16:10:44 +00:00
|
|
|
* Fri Dec 06 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-133.dev.gite1b5af0
|
|
|
|
- autobuilt e1b5af0
|
|
|
|
|
2019-12-06 03:10:54 +00:00
|
|
|
* Fri Dec 06 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-132.dev.git5e63695
|
|
|
|
- autobuilt 5e63695
|
|
|
|
|
2019-12-05 22:10:08 +00:00
|
|
|
* Thu Dec 05 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-131.dev.git8bb10af
|
|
|
|
- autobuilt 8bb10af
|
|
|
|
|
2019-12-02 16:11:32 +00:00
|
|
|
* Mon Dec 02 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-130.dev.gitc35c2c9
|
|
|
|
- autobuilt c35c2c9
|
|
|
|
|
2019-11-16 04:24:41 +00:00
|
|
|
* Sat Nov 16 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-129.dev.git2186cfa
|
|
|
|
- autobuilt 2186cfa
|
|
|
|
|
2019-11-05 01:13:37 +00:00
|
|
|
* Tue Nov 05 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-128.dev.git46def4c
|
|
|
|
- autobuilt 46def4c
|
|
|
|
|
2019-10-31 17:20:08 +00:00
|
|
|
* Thu Oct 31 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-127.dev.gitb133fea
|
|
|
|
- autobuilt b133fea
|
|
|
|
|
2019-10-31 02:16:02 +00:00
|
|
|
* Thu Oct 31 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-126.dev.gite57a774
|
|
|
|
- autobuilt e57a774
|
|
|
|
|
2019-10-29 14:38:48 +00:00
|
|
|
* Tue Oct 29 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-125.dev.gitd239ca8
|
|
|
|
- autobuilt d239ca8
|
|
|
|
|
2019-10-29 03:17:00 +00:00
|
|
|
* Tue Oct 29 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-124.dev.git03cf145
|
|
|
|
- autobuilt 03cf145
|
|
|
|
|
2019-10-24 19:49:41 +00:00
|
|
|
* Thu Oct 24 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-123.dev.gitc4d8e16
|
|
|
|
- autobuilt c4d8e16
|
|
|
|
|
2019-10-23 17:17:01 +00:00
|
|
|
* Wed Oct 23 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-122.dev.git792af40
|
|
|
|
- autobuilt 792af40
|
|
|
|
|
2019-10-23 15:22:47 +00:00
|
|
|
* Wed Oct 23 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-121.dev.git8790f24
|
|
|
|
- autobuilt 8790f24
|
|
|
|
|
2019-10-16 23:16:08 +00:00
|
|
|
* Wed Oct 16 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-120.dev.git4e37017
|
|
|
|
- autobuilt 4e37017
|
|
|
|
|
2019-10-05 12:30:55 +00:00
|
|
|
* Sat Oct 05 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-119.dev.gitc1485a1
|
|
|
|
- autobuilt c1485a1
|
|
|
|
|
2019-10-01 16:21:07 +00:00
|
|
|
* Tue Oct 01 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-118.dev.git1b8a1ee
|
|
|
|
- autobuilt 1b8a1ee
|
|
|
|
|
2019-09-30 15:31:01 +00:00
|
|
|
* Mon Sep 30 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-117.dev.gitcad42f6
|
|
|
|
- autobuilt cad42f6
|
|
|
|
|
2019-09-26 15:31:04 +00:00
|
|
|
* Thu Sep 26 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-116.dev.git84373aa
|
|
|
|
- autobuilt 84373aa
|
|
|
|
|
2019-09-26 00:26:49 +00:00
|
|
|
* Thu Sep 26 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:1.0.0-115.dev.git3e425f8
|
|
|
|
- autobuilt 3e425f8
|
|
|
|
|
2019-09-18 19:25:32 +00:00
|
|
|
* Wed Sep 18 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-114.dev.git7507c64
|
|
|
|
- autobuilt 7507c64
|
|
|
|
|
2019-09-12 18:25:52 +00:00
|
|
|
* Thu Sep 12 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-113.dev.gitbf27c2f
|
|
|
|
- autobuilt bf27c2f
|
|
|
|
|
2019-09-11 04:36:49 +00:00
|
|
|
* Wed Sep 11 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-112.dev.git6c05552
|
|
|
|
- autobuilt 6c05552
|
|
|
|
|
2019-09-10 20:25:37 +00:00
|
|
|
* Tue Sep 10 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-111.dev.git267490e
|
|
|
|
- autobuilt 267490e
|
|
|
|
|
2019-09-10 08:55:44 +00:00
|
|
|
* Tue Sep 10 2019 Jindrich Novy <jnovy@redhat.com> - 2:1.0.0-110.dev.gite7a87dd
|
|
|
|
- Add versioned oci-runtime provide.
|
|
|
|
|
2019-09-09 20:27:02 +00:00
|
|
|
* Mon Sep 09 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-109.dev.gite7a87dd
|
|
|
|
- autobuilt e7a87dd
|
|
|
|
|
2019-09-09 11:32:43 +00:00
|
|
|
* Mon Sep 9 2019 Daniel Walsh <dwalsh@fedoraproject.org> - 2:1.0.0-108.dev.gita6606a7
|
|
|
|
- Add provides oci-runtime
|
|
|
|
|
2019-09-06 01:24:52 +00:00
|
|
|
* Fri Sep 06 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-107.dev.gita6606a7
|
|
|
|
- autobuilt a6606a7
|
|
|
|
|
2019-09-06 00:25:57 +00:00
|
|
|
* Fri Sep 06 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-106.dev.git0fd4342
|
|
|
|
- autobuilt 0fd4342
|
|
|
|
|
2019-09-05 20:27:24 +00:00
|
|
|
* Thu Sep 05 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-105.dev.git92ac8e3
|
|
|
|
- autobuilt 92ac8e3
|
|
|
|
|
2019-09-04 21:25:11 +00:00
|
|
|
* Wed Sep 04 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-104.dev.git92d851e
|
|
|
|
- autobuilt 92d851e
|
|
|
|
|
2019-08-28 20:25:26 +00:00
|
|
|
* Wed Aug 28 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-103.dev.git51f2a86
|
|
|
|
- autobuilt 51f2a86
|
|
|
|
|
2019-08-27 15:30:26 +00:00
|
|
|
* Tue Aug 27 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-102.dev.gitdd07560
|
|
|
|
- autobuilt dd07560
|
|
|
|
|
2019-08-26 21:25:07 +00:00
|
|
|
* Mon Aug 26 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-101.dev.gitc61c737
|
|
|
|
- autobuilt c61c737
|
|
|
|
|
2019-08-26 17:25:27 +00:00
|
|
|
* Mon Aug 26 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-100.dev.git68d73f0
|
|
|
|
- autobuilt 68d73f0
|
|
|
|
|
2019-08-25 20:33:58 +00:00
|
|
|
* Sun Aug 25 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-99.dev.git3525edd
|
|
|
|
- autobuilt 3525edd
|
|
|
|
|
2019-08-05 18:28:28 +00:00
|
|
|
* Mon Aug 05 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-98.dev.git2e94378
|
|
|
|
- autobuilt 2e94378
|
|
|
|
|
2019-07-29 20:25:51 +00:00
|
|
|
* Mon Jul 29 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-97.dev.git80d35c7
|
|
|
|
- autobuilt 80d35c7
|
|
|
|
|
2019-07-27 01:29:56 +00:00
|
|
|
* Sat Jul 27 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-96.dev.git9ae7901
|
|
|
|
- autobuilt 9ae7901
|
|
|
|
|
2019-07-26 20:27:22 +00:00
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2:1.0.0-95.dev.git6cccc17
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-07-18 14:33:24 +00:00
|
|
|
* Thu Jul 18 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-94.dev.git6cccc17
|
|
|
|
- autobuilt 6cccc17
|
|
|
|
|
2019-05-15 19:29:38 +00:00
|
|
|
* Wed May 15 2019 Daniel Walsh <dwalsh@fedoraproject.org> - 2:1.0.0-93.dev.gitb9b6cc6e
|
|
|
|
- Fix issue with runc interacting with /dev/stderr
|
|
|
|
|
2019-04-24 15:46:56 +00:00
|
|
|
* Wed Apr 24 2019 Daniel Walsh <dwalsh@fedoraproject.org> - 2:1.0.0-92.dev.gitc1b8c57a
|
|
|
|
- Fix issue with runc failing on SELinux disabled machines
|
|
|
|
|
2019-04-19 08:42:07 +00:00
|
|
|
* Fri Apr 19 2019 Daniel Walsh <dwalsh@fedoraproject.org> - 2:1.0.0-91.dev.gitda202113
|
|
|
|
- Revert Build with nokmem
|
|
|
|
|
2019-04-17 20:53:49 +00:00
|
|
|
* Wed Apr 17 2019 Daniel Walsh <dwalsh@fedoraproject.org> - 2:1.0.0-90.dev.gitda202113
|
|
|
|
- Build with nokmem
|
|
|
|
|
2019-04-04 05:57:33 +00:00
|
|
|
* Thu Apr 04 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-89.dev.git029124d
|
|
|
|
- autobuilt 029124d
|
|
|
|
|
2019-04-03 05:40:02 +00:00
|
|
|
* Wed Apr 03 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-88.dev.git6a3f474
|
|
|
|
- autobuilt 6a3f474
|
|
|
|
|
2019-03-29 00:07:39 +00:00
|
|
|
* Thu Mar 28 2019 Daniel Walsh <dwalsh@fedoraproject.org> - 2:1.0.0-87.dev.gitda202113
|
|
|
|
- release candidate 7
|
|
|
|
|
2019-03-23 06:01:43 +00:00
|
|
|
* Sat Mar 23 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-86.dev.git11fc498
|
|
|
|
- autobuilt 11fc498
|
|
|
|
|
2019-03-21 06:02:46 +00:00
|
|
|
* Thu Mar 21 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-85.dev.gitdd22a84
|
|
|
|
- autobuilt dd22a84
|
|
|
|
|
2019-03-17 05:35:17 +00:00
|
|
|
* Sun Mar 17 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-84.dev.gitf56b4cb
|
|
|
|
- autobuilt f56b4cb
|
|
|
|
|
2019-03-16 05:47:12 +00:00
|
|
|
* Sat Mar 16 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-83.dev.git7341c22
|
|
|
|
- autobuilt 7341c22
|
|
|
|
|
2019-03-11 19:31:48 +00:00
|
|
|
* Mon Mar 11 2019 Dan Walsh (Bot) <dwalsh@fedoraproject.org> - 2:1.0.0-82.dev.git2b18fe1
|
|
|
|
- Change Requires container-selinux to recommends container-selinux
|
|
|
|
|
2019-03-08 05:41:49 +00:00
|
|
|
* Fri Mar 08 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-81.dev.git2b18fe1
|
|
|
|
- autobuilt 2b18fe1
|
|
|
|
|
2019-03-06 05:59:21 +00:00
|
|
|
* Wed Mar 06 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-80.dev.git923a8f8
|
|
|
|
- autobuilt 923a8f8
|
|
|
|
|
2019-03-05 05:57:09 +00:00
|
|
|
* Tue Mar 05 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-79.dev.gitf739110
|
|
|
|
- autobuilt f739110
|
|
|
|
|
2019-02-26 05:56:30 +00:00
|
|
|
* Tue Feb 26 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-78.dev.gitf79e211
|
|
|
|
- autobuilt f79e211
|
|
|
|
|
2019-02-24 05:37:11 +00:00
|
|
|
* Sun Feb 24 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-77.dev.git5b5130a
|
|
|
|
- autobuilt 5b5130a
|
|
|
|
|
2019-02-22 05:50:23 +00:00
|
|
|
* Fri Feb 22 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-76.dev.git8084f76
|
|
|
|
- autobuilt 8084f76
|
|
|
|
|
2019-02-16 05:43:56 +00:00
|
|
|
* Sat Feb 16 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-75.dev.git751f18d
|
|
|
|
- autobuilt 751f18d
|
|
|
|
|
2019-02-14 05:39:46 +00:00
|
|
|
* Thu Feb 14 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-74.dev.gitf414f49
|
|
|
|
- autobuilt f414f49
|
|
|
|
|
2019-02-13 05:29:10 +00:00
|
|
|
* Wed Feb 13 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-73.dev.git0a012df
|
|
|
|
- autobuilt 0a012df
|
|
|
|
|
2019-02-12 05:35:52 +00:00
|
|
|
* Tue Feb 12 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-72.dev.git6635b4f
|
|
|
|
- autobuilt 6635b4f
|
|
|
|
|
2019-02-09 05:28:31 +00:00
|
|
|
* Sat Feb 09 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-71.dev.gitdd023c4
|
|
|
|
- autobuilt dd023c4
|
|
|
|
|
2019-02-02 05:27:13 +00:00
|
|
|
* Sat Feb 02 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-70.dev.gite4fa8a4
|
|
|
|
- autobuilt e4fa8a4
|
|
|
|
|
2019-01-26 05:06:06 +00:00
|
|
|
* Sat Jan 26 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-69.dev.git8011af4
|
|
|
|
- autobuilt 8011af4
|
|
|
|
|
2019-01-16 05:26:00 +00:00
|
|
|
* Wed Jan 16 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-68.dev.gitc1e454b
|
|
|
|
- autobuilt c1e454b
|
|
|
|
|
2019-01-15 05:09:56 +00:00
|
|
|
* Tue Jan 15 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-67.dev.git12f6a99
|
|
|
|
- autobuilt 12f6a99
|
|
|
|
|
2018-12-21 05:05:56 +00:00
|
|
|
* Fri Dec 21 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-66.dev.gitbbb17ef
|
|
|
|
- autobuilt bbb17ef
|
|
|
|
|
2018-12-11 04:52:04 +00:00
|
|
|
* Tue Dec 11 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-65.dev.gitf5b9991
|
|
|
|
- autobuilt f5b9991
|
|
|
|
|
2018-12-09 04:43:28 +00:00
|
|
|
* Sun Dec 09 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-64.dev.git859f745
|
|
|
|
- autobuilt 859f745
|
|
|
|
|
2018-12-05 05:10:40 +00:00
|
|
|
* Wed Dec 05 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-63.dev.git25f3f89
|
|
|
|
- autobuilt 25f3f89
|
|
|
|
|
2018-12-04 05:12:54 +00:00
|
|
|
* Tue Dec 04 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-62.dev.git96ec217
|
|
|
|
- autobuilt 96ec217
|
|
|
|
|
2018-11-27 04:56:15 +00:00
|
|
|
* Tue Nov 27 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-61.dev.git4932620
|
|
|
|
- autobuilt 4932620
|
|
|
|
|
2018-11-25 04:39:47 +00:00
|
|
|
* Sun Nov 25 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-60.dev.git9397a6f
|
|
|
|
- autobuilt 9397a6f
|
|
|
|
|
2018-11-24 12:49:12 +00:00
|
|
|
* Sat Nov 24 2018 Dan Walsh <dwalsh@redhat.name> - 2:1.0.0-59.dev.gitccb5efd3
|
|
|
|
- rc6 build
|
|
|
|
|
2018-11-07 20:24:06 +00:00
|
|
|
* Wed Nov 07 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-58.dev.git079817c
|
|
|
|
- autobuilt 079817c
|
|
|
|
|
2018-11-01 19:09:29 +00:00
|
|
|
* Thu Nov 01 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:1.0.0-57.dev.git9e5aa74
|
|
|
|
- built commit 9e5aa74
|
|
|
|
|
|
|
|
* Tue Oct 16 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:1.0.0-56.dev.git78ef28e
|
2018-10-16 18:21:02 +00:00
|
|
|
- built commit 78ef28e
|
|
|
|
|
2018-09-25 14:06:31 +00:00
|
|
|
* Tue Sep 25 2018 Dan Walsh <dwalsh@redhat.name> - 2:1.0.0-55.dev.gitfdd8055
|
|
|
|
- built commit 578fe65e4fb86b95cc67b304d99d799f976dc40c
|
|
|
|
|
2018-09-24 13:31:35 +00:00
|
|
|
* Mon Sep 24 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:1.0.0-54.dev.git00dc700
|
|
|
|
- built commit 00dc700
|
|
|
|
- rebase 1807.patch
|
|
|
|
- enable debuginfo for all versions
|
|
|
|
|
2018-09-07 20:22:35 +00:00
|
|
|
* Fri Sep 07 2018 baude <bbaude@redhat.com> - 2:1.0.0-53.dev.git70ca035
|
|
|
|
- Add BuildRequires git
|
|
|
|
|
2018-09-06 19:19:28 +00:00
|
|
|
* Thu Sep 06 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:1.0.0-52.dev.git70ca035
|
|
|
|
- built commit 70ca035
|
|
|
|
|
2018-08-31 16:48:45 +00:00
|
|
|
* Fri Aug 31 2018 Dan Walsh <dwalsh@redhat.name> - 2:1.0.0-51.dev.gitfdd8055
|
|
|
|
- Fix handling of tmpcopyup
|
|
|
|
|
2018-08-16 00:03:02 +00:00
|
|
|
* Wed Aug 15 2018 Dan Walsh <dwalsh@redhat.name> - 2:1.0.0-50.dev.git20aff4f
|
|
|
|
- Revert minor cleanup patch
|
|
|
|
|
2018-08-07 10:42:24 +00:00
|
|
|
* Tue Aug 7 2018 Dan Walsh <dwalsh@redhat.name> - 2:1.0.0-49.dev.gitb4056a4
|
|
|
|
- Pass GOMAXPROCS to init processes
|
|
|
|
|
2018-07-31 09:19:02 +00:00
|
|
|
* Tue Jul 31 2018 Florian Weimer <fweimer@redhat.com> - 2:1.0.0-48.dev.gitbeadf0e
|
|
|
|
- Rebuild with fixed binutils
|
|
|
|
|
2018-07-29 05:14:25 +00:00
|
|
|
* Sun Jul 29 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-47.dev.gitbeadf0e
|
|
|
|
- autobuilt beadf0e
|
|
|
|
|
2018-08-07 10:42:24 +00:00
|
|
|
* Fri Jul 27 2018 Dan Walsh <dwalsh@redhat.name> - 2:1.0.0-46.dev.gitb4e2ecb
|
2018-07-27 15:11:10 +00:00
|
|
|
- Add patch https://github.com/opencontainers/runc/pull/1807 to allow
|
|
|
|
- runc and podman to work with sd_notify
|
|
|
|
|
2018-07-26 05:11:13 +00:00
|
|
|
* Thu Jul 26 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-45.dev.gitb4e2ecb
|
|
|
|
- autobuilt b4e2ecb
|
|
|
|
|
2018-07-25 13:22:30 +00:00
|
|
|
* Wed Jul 25 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-44.dev.gitbc14672
|
|
|
|
- autobuilt bc14672
|
|
|
|
|
2018-07-20 19:30:47 +00:00
|
|
|
* Fri Jul 20 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:1.0.0-43.dev.git21ac086
|
|
|
|
- Resolves: #1606281 - temp disable debuginfo for rawhide
|
|
|
|
|
2018-07-14 04:58:36 +00:00
|
|
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2:1.0.0-42.dev.git21ac086
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-07-11 05:03:22 +00:00
|
|
|
* Wed Jul 11 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-41.dev.git21ac086
|
|
|
|
- autobuilt 21ac086
|
|
|
|
|
2018-07-06 05:00:20 +00:00
|
|
|
* Fri Jul 06 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-40.git45e08f6
|
|
|
|
- autobuilt 45e08f6
|
|
|
|
|
2018-06-26 04:57:08 +00:00
|
|
|
* Tue Jun 26 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-39.git2c632d1
|
|
|
|
- autobuilt 2c632d1
|
|
|
|
|
2018-06-25 04:55:12 +00:00
|
|
|
* Mon Jun 25 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-38.git3ccfa2f
|
|
|
|
- autobuilt 3ccfa2f
|
|
|
|
|
2018-06-24 05:03:12 +00:00
|
|
|
* Sun Jun 24 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-37.git0154d05
|
|
|
|
- autobuilt 0154d05
|
|
|
|
|
2018-06-16 04:49:43 +00:00
|
|
|
* Sat Jun 16 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-36.gitad0f525
|
|
|
|
- autobuilt ad0f525
|
|
|
|
|
2018-06-05 04:43:13 +00:00
|
|
|
* Tue Jun 05 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-35.gitdd56ece
|
|
|
|
- autobuilt dd56ece
|
|
|
|
|
2018-06-03 04:43:21 +00:00
|
|
|
* Sun Jun 03 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-34.git2e91544
|
|
|
|
- autobuilt 2e91544
|
|
|
|
|
2018-05-31 04:41:07 +00:00
|
|
|
* Thu May 31 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-33.gitecd55a4
|
|
|
|
- autobuilt ecd55a4
|
|
|
|
|
2018-05-25 18:46:07 +00:00
|
|
|
* Fri May 25 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-32.gitdd67ab1
|
|
|
|
- autobuilt dd67ab1
|
|
|
|
|
2018-04-27 04:28:47 +00:00
|
|
|
* Fri Apr 27 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-31.git0cbfd83
|
|
|
|
- autobuilt commit 0cbfd83
|
|
|
|
|
2018-04-24 20:05:28 +00:00
|
|
|
* Tue Apr 24 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-30.git871ba2e
|
|
|
|
- autobuilt commit 871ba2e
|
|
|
|
|
2018-04-20 04:17:35 +00:00
|
|
|
* Fri Apr 20 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-29.git1f11dc5
|
|
|
|
- autobuilt commit 1f11dc5
|
|
|
|
|
2018-04-19 10:27:23 +00:00
|
|
|
* Thu Apr 19 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-28.git63e6708
|
|
|
|
- autobuilt commit 63e6708
|
|
|
|
|
2018-04-17 18:44:58 +00:00
|
|
|
* Tue Apr 17 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-27.gitd56f6cc
|
|
|
|
- autobuilt commit d56f6cc
|
|
|
|
|
2018-04-17 18:10:56 +00:00
|
|
|
* Tue Apr 17 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-26.gitd56f6cc
|
|
|
|
- autobuilt commit d56f6cc
|
|
|
|
|
2018-04-16 19:26:53 +00:00
|
|
|
* Mon Apr 16 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-25.gitd56f6cc
|
|
|
|
- autobuilt commit d56f6cc
|
|
|
|
|
2018-04-16 15:05:06 +00:00
|
|
|
* Mon Apr 16 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-24.gitd56f6cc
|
|
|
|
- autobuilt commit d56f6cc
|
|
|
|
|
2018-04-16 03:46:58 +00:00
|
|
|
* Mon Apr 16 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 2:1.0.0-23.gitf753f30
|
|
|
|
- autobuilt commit f753f30
|
|
|
|
|
2018-04-13 15:35:17 +00:00
|
|
|
* Fri Apr 13 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:1.0.0-22.gitf753f30
|
|
|
|
- Resolves: #1567229
|
|
|
|
- built commit f753f30
|
|
|
|
|
2018-04-09 12:28:30 +00:00
|
|
|
* Mon Apr 09 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:1.0.0-21.gitcc4307a
|
|
|
|
- autobuilt commit cc4307a
|
|
|
|
|
2018-03-12 18:28:11 +00:00
|
|
|
* Mon Mar 12 2018 Peter Robinson <pbrobinson@fedoraproject.org> 2:1.0.0-20.rc5.git4bb1fe4
|
|
|
|
- Rebuild for aarch64 install issue
|
|
|
|
|
2018-02-27 17:14:09 +00:00
|
|
|
* Tue Feb 27 2018 Dan Walsh <dwalsh@redhat.name> - 2:1.0.0-19.rc5.git4bb1fe4
|
2018-02-27 17:00:08 +00:00
|
|
|
- release v1.0.0~rc5
|
|
|
|
|
2018-02-09 15:12:03 +00:00
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2:1.0.0-17.rc4.git9f9c962.1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-01-24 13:32:32 +00:00
|
|
|
* Wed Jan 24 2018 Dan Walsh <dwalsh@redhat.name> - 2:1.0.0-17.rc4.git9f9c962
|
|
|
|
- Bump to the latest from upstream
|
|
|
|
|
2017-12-26 06:08:39 +00:00
|
|
|
* Tue Dec 26 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:1.0.0-16.rc4.gite6516b3
|
|
|
|
- install bash completion to correct location
|
|
|
|
- remove shebang from bash completion gh#1679
|
|
|
|
- correct rpmlint issues
|
|
|
|
|
2017-12-18 11:30:05 +00:00
|
|
|
* Mon Dec 18 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:1.0.0-15.rc4.gite6516b3
|
|
|
|
- built commit e6516b3
|
|
|
|
|
2017-12-15 18:45:33 +00:00
|
|
|
* Fri Dec 15 2017 Dan Walsh <dwalsh@redhat.name> - 2:1.0.0-14.rc4.gitdb093f6
|
|
|
|
- Lots of fixes for libcontainer
|
|
|
|
- support unbindable,runbindable for rootfs propagation
|
|
|
|
|
2017-12-10 12:41:14 +00:00
|
|
|
* Sun Dec 10 2017 Dan Walsh <dwalsh@redhat.name> - 2:1.0.0-13.rc4.git1d3ab6d
|
|
|
|
- Many Stability fixes
|
|
|
|
- Many fixes for rootless containers
|
|
|
|
- Many fixes for static builds
|
|
|
|
|
2017-10-25 23:54:32 +00:00
|
|
|
* Wed Oct 25 2017 Dan Walsh <dwalsh@redhat.name> - 2:1.0.0-12.rc4.gitaea4f21
|
|
|
|
- Add container-selinux prerequires to make sure runc is labeled correctly
|
|
|
|
|
2017-09-13 03:29:01 +00:00
|
|
|
* Tue Sep 12 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:1.0.0-11.rc4.gitaea4f21
|
|
|
|
- disable devel package and %%check - makes life easier for module building
|
|
|
|
|
2017-09-05 19:48:22 +00:00
|
|
|
* Tue Sep 5 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 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
|
|
|
|
|
2017-09-05 19:17:21 +00:00
|
|
|
* Tue Sep 5 2017 Dan Walsh <dwalsh@redhat.name> - 1.0.1-4.rc.gitaea4f21
|
|
|
|
- Rebuilt from master, with requierements needed for CRI-O
|
|
|
|
|
2017-08-03 08:01:44 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.0.1-3.gitc5ec254
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-27 18:01:08 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.0.1-2.gitc5ec254
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-07-20 15:53:20 +00:00
|
|
|
* Thu Jul 20 2017 Dan Walsh <dwalsh@redhat.name> - 1.0.1-1.gitc5ec25487
|
2017-09-05 19:17:21 +00:00
|
|
|
- v1.0.0-rc5 release of runc
|
2017-07-20 15:53:20 +00:00
|
|
|
|
2017-06-26 23:03:12 +00:00
|
|
|
* Tue Jun 27 2017 Till Maas <opensource@till.name> - 1.0.0-9.git6394544
|
|
|
|
- Just make the criu dependency optional (https://bugzilla.redhat.com/show_bug.cgi?id=1460148)
|
|
|
|
|
2017-06-26 22:35:36 +00:00
|
|
|
* Tue Jun 27 2017 Till Maas <opensource@till.name> - 1.0.0-8.git6394544.1
|
|
|
|
- Do not build for ix86: there is no criu on ix86
|
|
|
|
|
2017-06-02 14:49:18 +00:00
|
|
|
* Fri Jun 02 2017 Antonio Murdaca <runcom@fedoraproject.org> - 1:1.0.0-7.git6394544.1
|
|
|
|
- rebuilt
|
|
|
|
|
2017-03-24 14:05:17 +00:00
|
|
|
* Fri Mar 24 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1:1.0.0-6.git75f8da7
|
|
|
|
- bump to v1.0.0-rc3
|
|
|
|
- built opencontainers/v1.0.0-rc3 commit 75f8da7
|
|
|
|
|
2017-02-11 12:58:55 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.0.0-5.rc2.gitc91b5be.1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2017-02-01 21:23:06 +00:00
|
|
|
* Wed Feb 01 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1:1.0.0-5.rc2
|
|
|
|
- depend on criu for checkpoint/restore
|
|
|
|
|
2017-01-18 17:32:36 +00:00
|
|
|
* Wed Jan 18 2017 Dennis Gilmore <dennis@ausil.us> - 1:1.0.0-4.rc2
|
|
|
|
- enable aarch64
|
|
|
|
|
2017-01-11 18:01:21 +00:00
|
|
|
* Wed Jan 11 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1:1.0.0-3.rc2
|
|
|
|
- Resolves: #1412238 - *CVE-2016-9962* - set init processes as non-dumpable,
|
|
|
|
runc patch from Michael Crosby <crosbymichael@gmail.com>
|
|
|
|
|
2017-01-06 19:59:06 +00:00
|
|
|
* Fri Jan 06 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1:1.0.0-2.rc2.git47ea5c7
|
|
|
|
- patch to enable seccomp
|
2017-01-06 20:01:07 +00:00
|
|
|
- Pass $BUILDTAGS to the compiler in cases where we don't have to define
|
|
|
|
gobuild for ourselves.
|
2017-01-06 19:59:06 +00:00
|
|
|
- From: Nalin Dahyabhai <nalin@redhat.com>
|
|
|
|
|
2016-12-21 22:30:20 +00:00
|
|
|
* Wed Dec 21 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 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)
|
|
|
|
|
2016-08-25 01:11:27 +00:00
|
|
|
* Wed Aug 24 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1:1.0.0-1.rc1.git04f275d
|
|
|
|
- Resolves: #1342707 - bump to v1.0.0-rc1
|
|
|
|
- built commit 04f275d
|
|
|
|
- cosmetic changes to make rpmlint happy
|
|
|
|
|
2016-07-21 13:17:28 +00:00
|
|
|
* Thu Jul 21 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.1.1-4.git57b9972
|
|
|
|
- https://fedoraproject.org/wiki/Changes/golang1.7
|
|
|
|
|
2016-05-26 13:35:18 +00:00
|
|
|
* Thu May 26 2016 jchaloup <jchaloup@redhat.com> - 1:0.1.1-3.git57b9972
|
|
|
|
- Add bash completion
|
|
|
|
resolves: #1340119
|
|
|
|
|
2016-05-19 19:36:09 +00:00
|
|
|
* Thu May 19 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1:0.1.1-2.gitbaf6536
|
|
|
|
- add selinux to BUILDTAGS in addition to the default seccomp tag
|
|
|
|
|
2016-04-26 07:52:04 +00:00
|
|
|
* Tue Apr 26 2016 jchaloup <jchaloup@redhat.com> - 1:0.1.1-0.1.gitbaf6536
|
|
|
|
- Update to v0.1.1
|
|
|
|
resolves: #1330378
|
|
|
|
|
2016-04-12 10:31:39 +00:00
|
|
|
* Tue Apr 12 2016 jchaloup <jchaloup@redhat.com> - 1:0.0.9-0.3.git94dc520
|
|
|
|
- Ship man pages too
|
|
|
|
resolves: #1326115
|
|
|
|
|
2016-04-06 08:05:58 +00:00
|
|
|
* Wed Apr 06 2016 jchaloup <jchaloup@redhat.com> - 1:0.0.9-0.2.git94dc520
|
|
|
|
- Extend supported architectures to golang_arches
|
|
|
|
Disable failing test
|
|
|
|
related: #1290943
|
|
|
|
|
2016-03-16 14:40:49 +00:00
|
|
|
* Wed Mar 16 2016 jchaloup <jchaloup@redhat.com> - 1:0.0.9-0.1.git94dc520
|
2016-03-16 09:24:12 +00:00
|
|
|
- Update to 0.0.9
|
|
|
|
resolves: #1290943
|
|
|
|
|
2016-03-02 19:33:58 +00:00
|
|
|
* Wed Mar 02 2016 jchaloup <jchaloup@redhat.com> - 1:0.0.8-0.1.git1a124e9
|
|
|
|
- Update to 0.0.8
|
|
|
|
|
2016-02-22 18:47:43 +00:00
|
|
|
* Mon Feb 22 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.0.5-0.4.git97bc9a7
|
|
|
|
- https://fedoraproject.org/wiki/Changes/golang1.6
|
|
|
|
|
2016-02-04 23:29:42 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.0.5-0.3.git97bc9a7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-12-02 11:07:24 +00:00
|
|
|
* Wed Dec 02 2015 jchaloup <jchaloup@redhat.com> - 1:0.0.5-0.2.git97bc9a7
|
|
|
|
- unit-test-devel subpackage requires devel with correct epoch
|
|
|
|
|
2015-11-25 16:45:35 +00:00
|
|
|
* 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
|
2015-11-27 12:23:35 +00:00
|
|
|
resolves: #1286114
|
2015-11-25 16:45:35 +00:00
|
|
|
|
2015-09-19 17:46:02 +00:00
|
|
|
* Fri Aug 21 2015 Jan Chaloupka <jchaloup@redhat.com> - 0.2-0.2.git90e6d37
|
|
|
|
- First package for Fedora
|
|
|
|
resolves: #1255179
|