|
|
|
@ -1,53 +1,73 @@
|
|
|
|
|
%global with_check 0
|
|
|
|
|
## START: Set by rpmautospec
|
|
|
|
|
## (rpmautospec version 0.6.5)
|
|
|
|
|
## RPMAUTOSPEC: autorelease, autochangelog
|
|
|
|
|
%define autorelease(e:s:pb:n) %{?-p:0.}%{lua:
|
|
|
|
|
release_number = 3;
|
|
|
|
|
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 1
|
|
|
|
|
|
|
|
|
|
%if 0%{?with_debug}
|
|
|
|
|
%global _find_debuginfo_dwz_opts %{nil}
|
|
|
|
|
%global _dwz_low_mem_die_limit 0
|
|
|
|
|
%else
|
|
|
|
|
%global debug_package %{nil}
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
# https://github.com/containers/conmon
|
|
|
|
|
%global import_path github.com/containers/%{name}
|
|
|
|
|
%global git0 https://%{import_path}
|
|
|
|
|
%global commit0 00e08f4a9ca5420de733bf542b930ad58e1a7e7d
|
|
|
|
|
%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
|
|
|
|
|
%if 0%{?rhel}
|
|
|
|
|
%bcond_with docs
|
|
|
|
|
%else
|
|
|
|
|
%bcond_without docs
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
Name: conmon
|
|
|
|
|
Epoch: 2
|
|
|
|
|
Version: 2.1.8
|
|
|
|
|
Release: 1%{?dist}
|
|
|
|
|
Version: 2.1.12
|
|
|
|
|
License: Apache-2.0
|
|
|
|
|
Release: %autorelease
|
|
|
|
|
Summary: OCI container runtime monitor
|
|
|
|
|
License: ASL 2.0
|
|
|
|
|
URL: %{git0}
|
|
|
|
|
%if 0%{?branch:1}
|
|
|
|
|
Source0: https://%{import_path}/tarball/%{commit0}/%{branch}-%{shortcommit0}.tar.gz
|
|
|
|
|
%else
|
|
|
|
|
Source0: https://%{import_path}/archive/%{commit0}/%{name}-%{version}-%{shortcommit0}.tar.gz
|
|
|
|
|
URL: https://github.com/containers/%{name}
|
|
|
|
|
# Tarball fetched from upstream
|
|
|
|
|
Source0: %{url}/archive/v%{version}.tar.gz
|
|
|
|
|
%if %{with docs}
|
|
|
|
|
ExclusiveArch: %{golang_arches_future}
|
|
|
|
|
BuildRequires: go-md2man
|
|
|
|
|
%endif
|
|
|
|
|
# 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}
|
|
|
|
|
BuildRequires: gcc
|
|
|
|
|
BuildRequires: git
|
|
|
|
|
BuildRequires: git-core
|
|
|
|
|
BuildRequires: glib2-devel
|
|
|
|
|
BuildRequires: systemd-devel
|
|
|
|
|
BuildRequires: golang >= 1.12.12-4
|
|
|
|
|
BuildRequires: /usr/bin/go-md2man
|
|
|
|
|
BuildRequires: libseccomp-devel
|
|
|
|
|
BuildRequires: systemd-devel
|
|
|
|
|
BuildRequires: systemd-libs
|
|
|
|
|
BuildRequires: make
|
|
|
|
|
Requires: glib2
|
|
|
|
|
Requires: systemd-libs
|
|
|
|
|
Requires: libseccomp
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
%{summary}.
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%if 0%{?branch:1}
|
|
|
|
|
%autosetup -Sgit -n containers-%{name}-%{shortcommit0}
|
|
|
|
|
%else
|
|
|
|
|
%autosetup -Sgit -n %{name}-%{commit0}
|
|
|
|
|
%endif
|
|
|
|
|
%autosetup -Sgit %{name}-%{built_tag_strip}
|
|
|
|
|
sed -i 's/install.bin: bin\/conmon/install.bin:/' Makefile
|
|
|
|
|
sed -i 's/install.crio: bin\/conmon/install.crio:/' Makefile
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
export CFLAGS="%{optflags} -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64"
|
|
|
|
|
export LDFLAGS="-pie -Wl,-z,relro -Wl,-z,now"
|
|
|
|
|
%{__make} all
|
|
|
|
|
%{__make} DEBUGFLAG="-g" bin/conmon
|
|
|
|
|
|
|
|
|
|
%if %{with docs}
|
|
|
|
|
%{__make} GOMD2MAN=go-md2man -C docs
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
%{__make} PREFIX=%{buildroot}%{_prefix} install
|
|
|
|
|
%{__make} PREFIX=%{buildroot}%{_prefix} install.bin install.crio
|
|
|
|
|
|
|
|
|
|
%if %{with docs}
|
|
|
|
|
%{__make} PREFIX=%{buildroot}%{_prefix} -C docs install
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
#define license tag if not already defined
|
|
|
|
|
%{!?_licensedir:%global license %doc}
|
|
|
|
@ -56,379 +76,665 @@ export LDFLAGS="-pie -Wl,-z,relro -Wl,-z,now"
|
|
|
|
|
%license LICENSE
|
|
|
|
|
%doc README.md
|
|
|
|
|
%{_bindir}/%{name}
|
|
|
|
|
%{_mandir}/man8/*
|
|
|
|
|
%{_libexecdir}/crio/%{name}
|
|
|
|
|
%dir %{_libexecdir}/crio
|
|
|
|
|
|
|
|
|
|
%if %{with docs}
|
|
|
|
|
%{_mandir}/man8/%{name}.8.gz
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Fri Aug 25 2023 Jindrich Novy <jnovy@redhat.com> - 2:2.1.8-1
|
|
|
|
|
- update to https://github.com/containers/conmon/releases/tag/v2.1.8
|
|
|
|
|
- Related: #2176063
|
|
|
|
|
## START: Generated by rpmautospec
|
|
|
|
|
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 2:2.1.12-3
|
|
|
|
|
- Bump release for October 2024 mass rebuild:
|
|
|
|
|
|
|
|
|
|
* Wed Jun 21 2023 Jindrich Novy <jnovy@redhat.com> - 2:2.1.7-3
|
|
|
|
|
- rebuild
|
|
|
|
|
- Resolves: #2174381
|
|
|
|
|
* Fri Oct 25 2024 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 2:2.1.12-2
|
|
|
|
|
- Rebuilt for MSVSphere 10
|
|
|
|
|
|
|
|
|
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 2:2.1.12-2
|
|
|
|
|
- Bump release for June 2024 mass rebuild
|
|
|
|
|
|
|
|
|
|
* Mon May 27 2024 Jindrich Novy <jnovy@redhat.com> - 2:2.1.12-1
|
|
|
|
|
- conmon-2.1.12-1.el10
|
|
|
|
|
- update to https://github.com/containers/conmon/releases/tag/v2.1.12
|
|
|
|
|
- Related: RHEL-34195
|
|
|
|
|
|
|
|
|
|
* Wed May 01 2024 Jindrich Novy <jnovy@redhat.com> - 2:2.1.11-1
|
|
|
|
|
- conmon-2.1.11-1.el10
|
|
|
|
|
- update to https://github.com/containers/conmon/releases/tag/v2.1.11
|
|
|
|
|
- Related: RHEL-34195
|
|
|
|
|
|
|
|
|
|
* Mon Apr 29 2024 Jindrich Novy <jnovy@redhat.com> - 2:2.1.8-5
|
|
|
|
|
- Update gating.yaml to RHEL-10 Related: RHELMISC-3908
|
|
|
|
|
|
|
|
|
|
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.1.8-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.1.8-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Wed Sep 20 2023 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.1.8-2
|
|
|
|
|
- upload v2.1.8 tarball to lookaside cache
|
|
|
|
|
|
|
|
|
|
* Wed Sep 20 2023 Leonardo Amaral <contato@leonardoamaral.com.br> - 2:2.1.8-1
|
|
|
|
|
- Update conmon to v2.1.8
|
|
|
|
|
|
|
|
|
|
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.1.7-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Mar 06 2023 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.1.7-2
|
|
|
|
|
- migrated to SPDX license
|
|
|
|
|
|
|
|
|
|
* Tue Feb 28 2023 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.1.7-1
|
|
|
|
|
- auto bump to v2.1.7
|
|
|
|
|
|
|
|
|
|
* Wed Feb 15 2023 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.1.6-3
|
|
|
|
|
- use QUADLET envvar in gating tests - taken from podman package
|
|
|
|
|
|
|
|
|
|
* Thu Feb 09 2023 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.1.6-2
|
|
|
|
|
- discontinue i686
|
|
|
|
|
|
|
|
|
|
* Mon Feb 06 2023 Daniel J Walsh <dwalsh@redhat.com> - 2:2.1.6-1
|
|
|
|
|
- local build
|
|
|
|
|
|
|
|
|
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.1.5-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Nov 15 2022 Stephen Gallagher <sgallagh@redhat.com> - 2:2.1.5-2
|
|
|
|
|
- Conditionalize building the manpage
|
|
|
|
|
|
|
|
|
|
* Fri Nov 11 2022 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.1.5-1
|
|
|
|
|
- bump to v2.1.5
|
|
|
|
|
|
|
|
|
|
* Fri Oct 07 2022 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.1.4-5
|
|
|
|
|
- Revert "auto bump to v2.1.4"
|
|
|
|
|
|
|
|
|
|
* Fri Oct 07 2022 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.1.4-4
|
|
|
|
|
- auto bump to v2.1.4
|
|
|
|
|
|
|
|
|
|
* Thu Oct 06 2022 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.1.4-3
|
|
|
|
|
- remove debbuild macros to comply with Fedora guidelines
|
|
|
|
|
|
|
|
|
|
* Wed Aug 31 2022 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.1.4-2
|
|
|
|
|
- fix macro and upload tarball to lookaside_cache
|
|
|
|
|
|
|
|
|
|
* Mon Aug 29 2022 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.1.4-1
|
|
|
|
|
- auto bump to v2.1.4
|
|
|
|
|
|
|
|
|
|
* Wed Aug 17 2022 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.1.3-3
|
|
|
|
|
- use easier tag macros to make both fedora and debbuild happy
|
|
|
|
|
|
|
|
|
|
* Tue Aug 16 2022 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.1.3-2
|
|
|
|
|
- Fix debbuild maintainer issue
|
|
|
|
|
|
|
|
|
|
* Tue Apr 18 2023 Jindrich Novy <jnovy@redhat.com> - 2:2.1.7-2
|
|
|
|
|
- bump to preserve upgrade path from 9.2.0
|
|
|
|
|
- Related: #2176063
|
|
|
|
|
* Mon Jul 25 2022 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.1.3-1
|
|
|
|
|
- auto bump to v2.1.3
|
|
|
|
|
|
|
|
|
|
* Sun Mar 26 2023 Jindrich Novy <jnovy@redhat.com> - 2:2.1.7-1
|
|
|
|
|
- update to https://github.com/containers/conmon/releases/tag/v2.1.7
|
|
|
|
|
- Related: #2176063
|
|
|
|
|
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.1.2-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Feb 07 2023 Jindrich Novy <jnovy@redhat.com> - 2:2.1.6-1
|
|
|
|
|
- update to https://github.com/containers/conmon/releases/tag/v2.1.6
|
|
|
|
|
- Related: #2124478
|
|
|
|
|
* Tue Jun 21 2022 Peter Hunt <pehunt@redhat.com> - 2:2.1.2-2
|
|
|
|
|
- bump to v2.1.2-2
|
|
|
|
|
|
|
|
|
|
* Mon Nov 07 2022 Jindrich Novy <jnovy@redhat.com> - 2:2.1.5-1
|
|
|
|
|
- update to https://github.com/containers/conmon/releases/tag/v2.1.5
|
|
|
|
|
- Related: #2124478
|
|
|
|
|
* Wed Jun 15 2022 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.1.2-1
|
|
|
|
|
- auto bump to v2.1.2
|
|
|
|
|
|
|
|
|
|
* Tue Aug 30 2022 Jindrich Novy <jnovy@redhat.com> - 2:2.1.4-1
|
|
|
|
|
- update to https://github.com/containers/conmon/releases/tag/v2.1.4
|
|
|
|
|
- Related: #2061316
|
|
|
|
|
* Fri May 27 2022 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.1.1-2
|
|
|
|
|
- build deb packages using debbuild
|
|
|
|
|
|
|
|
|
|
* Tue Jul 26 2022 Jindrich Novy <jnovy@redhat.com> - 2:2.1.3-1
|
|
|
|
|
- update to https://github.com/containers/conmon/releases/tag/v2.1.3
|
|
|
|
|
- Related: #2061316
|
|
|
|
|
* Mon May 23 2022 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.1.1-1
|
|
|
|
|
- auto bump to v2.1.1
|
|
|
|
|
|
|
|
|
|
* Thu Jun 16 2022 Jindrich Novy <jnovy@redhat.com> - 2:2.1.2-2
|
|
|
|
|
- update to latest content of https://github.com/containers/conmon/releases/tag/2.1.2
|
|
|
|
|
(https://github.com/containers/conmon/commit/2bc95ee697e87d5f7b77063cf83fc32739addafe)
|
|
|
|
|
- Related: #2061316
|
|
|
|
|
* Thu Jan 27 2022 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.1.0-3
|
|
|
|
|
- use built_tag to generate version
|
|
|
|
|
|
|
|
|
|
* Tue Jun 14 2022 Jindrich Novy <jnovy@redhat.com> - 2:2.1.2-1
|
|
|
|
|
- update to https://github.com/containers/conmon/releases/tag/v2.1.2
|
|
|
|
|
- Related: #2061316
|
|
|
|
|
* Wed Jan 26 2022 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.1.0-2
|
|
|
|
|
- bump podman test timeout to 45m, switch to autospec
|
|
|
|
|
|
|
|
|
|
* Tue May 24 2022 Jindrich Novy <jnovy@redhat.com> - 2:2.1.1-1
|
|
|
|
|
- update to https://github.com/containers/conmon/releases/tag/v2.1.1
|
|
|
|
|
- Related: #2061316
|
|
|
|
|
* Mon Jan 24 2022 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.1.0-1
|
|
|
|
|
- conmon-2:2.1.0-1
|
|
|
|
|
|
|
|
|
|
* Fri May 13 2022 Jindrich Novy <jnovy@redhat.com> - 2:2.1.0-3
|
|
|
|
|
- Re-enable debuginfo
|
|
|
|
|
- Related: #2061316
|
|
|
|
|
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.0.32-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Wed May 11 2022 Jindrich Novy <jnovy@redhat.com> - 2:2.1.0-2
|
|
|
|
|
- BuildRequires: /usr/bin/go-md2man
|
|
|
|
|
- Related: #2061316
|
|
|
|
|
* Tue Jan 11 2022 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.32-1
|
|
|
|
|
- conmon-2:2.0.32-1
|
|
|
|
|
|
|
|
|
|
* Tue Jan 25 2022 Jindrich Novy <jnovy@redhat.com> - 2:2.1.0-1
|
|
|
|
|
- update to https://github.com/containers/conmon/releases/tag/v2.1.0
|
|
|
|
|
- Related: #2000051
|
|
|
|
|
* Mon Dec 06 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.31-1
|
|
|
|
|
- conmon-2:2.0.31-1
|
|
|
|
|
|
|
|
|
|
* Wed Jan 12 2022 Jindrich Novy <jnovy@redhat.com> - 2:2.0.32-1
|
|
|
|
|
- update to https://github.com/containers/conmon/releases/tag/v2.0.32
|
|
|
|
|
- Related: #2000051
|
|
|
|
|
* Wed Sep 22 2021 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0.30-4
|
|
|
|
|
- conmon-2:2.0.30-2
|
|
|
|
|
- bump timeout for gating tests
|
|
|
|
|
|
|
|
|
|
* Tue Dec 07 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.0.31-1
|
|
|
|
|
- update to https://github.com/containers/conmon/releases/tag/v2.0.31
|
|
|
|
|
- Related: #2000051
|
|
|
|
|
* Wed Sep 22 2021 Ed Santiago <santiago@redhat.com> - 2:2.0.30-3
|
|
|
|
|
- gating tests: bump timeout, 15m to 25
|
|
|
|
|
|
|
|
|
|
* Fri Oct 01 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.0.30-3
|
|
|
|
|
- perform only sanity/installability tests for now
|
|
|
|
|
- Related: #2000051
|
|
|
|
|
* Wed Sep 22 2021 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0.30-2
|
|
|
|
|
- add dep on libseccomp
|
|
|
|
|
|
|
|
|
|
* Wed Sep 29 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.0.30-2
|
|
|
|
|
- add gating.yaml
|
|
|
|
|
- Related: #2000051
|
|
|
|
|
* Wed Sep 22 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.30-1
|
|
|
|
|
- conmon-2:2.0.30-1
|
|
|
|
|
|
|
|
|
|
* Thu Sep 23 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.0.30-1
|
|
|
|
|
- update to https://github.com/containers/conmon/releases/tag/v2.0.30
|
|
|
|
|
- Related: #2000051
|
|
|
|
|
* Mon Aug 16 2021 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0.29-5
|
|
|
|
|
- conmon-2:2.0.29-2
|
|
|
|
|
- build correct tag lol
|
|
|
|
|
|
|
|
|
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2:2.0.29-4
|
|
|
|
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
|
|
|
Related: rhbz#1991688
|
|
|
|
|
* Mon Aug 16 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.29-4
|
|
|
|
|
- conmon-2:2.0.29-1
|
|
|
|
|
|
|
|
|
|
* Tue Jun 22 2021 Mohan Boddu <mboddu@redhat.com> - 2:2.0.29-3
|
|
|
|
|
- Rebuilt for RHEL 9 BETA for openssl 3.0
|
|
|
|
|
Related: rhbz#1971065
|
|
|
|
|
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.0.29-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Jun 14 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.0.29-2
|
|
|
|
|
- update to https://github.com/containers/conmon/releases/tag/v2.0.29
|
|
|
|
|
- Related: #1970747
|
|
|
|
|
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.0.29-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 2:2.0.27-2
|
|
|
|
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
|
|
|
* Sat Jun 19 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.29-1
|
|
|
|
|
- conmon-2:2.0.29-0.1.dev.git2947bb2
|
|
|
|
|
- bump to 2.0.29
|
|
|
|
|
- autobuilt 2947bb2
|
|
|
|
|
|
|
|
|
|
* Tue Mar 09 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.0.27-1
|
|
|
|
|
- update to https://github.com/containers/conmon/releases/tag/v2.0.27
|
|
|
|
|
* Fri Jun 11 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.30-3
|
|
|
|
|
- conmon-2:2.0.30-0.3.dev.git1ef2468
|
|
|
|
|
- autobuilt 1ef2468
|
|
|
|
|
|
|
|
|
|
* Thu Feb 04 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.0.26-1
|
|
|
|
|
- update to https://github.com/containers/conmon/releases/tag/v2.0.26
|
|
|
|
|
* Sat Jun 05 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.30-2
|
|
|
|
|
- conmon-2:2.0.30-0.2.dev.git24c73c2
|
|
|
|
|
- autobuilt 24c73c2
|
|
|
|
|
|
|
|
|
|
* Tue Jan 26 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.0.25-1
|
|
|
|
|
- update to https://github.com/containers/conmon/releases/tag/v2.0.25
|
|
|
|
|
* Thu Jun 03 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.30-1
|
|
|
|
|
- conmon-2:2.0.30-0.1.dev.git75e067e
|
|
|
|
|
- bump to 2.0.30
|
|
|
|
|
- autobuilt 75e067e
|
|
|
|
|
|
|
|
|
|
* Mon Jan 04 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.0.22-1
|
|
|
|
|
- exclude i686 as golang is not suppoerted there
|
|
|
|
|
* Wed Jun 02 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.29-5
|
|
|
|
|
- conmon-2:2.0.29-0.4.dev.gitb033cb5
|
|
|
|
|
- autobuilt b033cb5
|
|
|
|
|
|
|
|
|
|
* Fri Nov 13 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.22-0.9.dev.git2fbeb9f
|
|
|
|
|
* Thu May 27 2021 Peter Hunt <pehunt@redhat.com> - 2:2.0.29-4
|
|
|
|
|
- bump spec
|
|
|
|
|
|
|
|
|
|
* Thu May 27 2021 Peter Hunt <pehunt@redhat.com> - 2:2.0.29-3
|
|
|
|
|
- add /usr/libexec/crio to tracked files
|
|
|
|
|
|
|
|
|
|
* Sun May 16 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.29-2
|
|
|
|
|
- conmon-2:2.0.29-0.2.dev.git3161452
|
|
|
|
|
- autobuilt 3161452
|
|
|
|
|
|
|
|
|
|
* Fri May 14 2021 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0.29-1
|
|
|
|
|
- conmon-2:2.0.29-0.1.dev.git2947bb2
|
|
|
|
|
- built 2947bb2
|
|
|
|
|
|
|
|
|
|
* Thu May 06 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.28-5
|
|
|
|
|
- conmon-2:2.0.28-0.5.dev.gitdd63dcb
|
|
|
|
|
- autobuilt dd63dcb
|
|
|
|
|
|
|
|
|
|
* Mon Apr 26 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.28-4
|
|
|
|
|
- conmon-2:2.0.28-0.4.dev.git372fa19
|
|
|
|
|
- autobuilt 372fa19
|
|
|
|
|
|
|
|
|
|
* Tue Apr 20 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.28-3
|
|
|
|
|
- conmon-2:2.0.28-0.3.dev.git3efab3e
|
|
|
|
|
- autobuilt 3efab3e
|
|
|
|
|
|
|
|
|
|
* Mon Mar 15 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.28-2
|
|
|
|
|
- conmon-2:2.0.28-0.2.dev.git551605f
|
|
|
|
|
- autobuilt 551605f
|
|
|
|
|
|
|
|
|
|
* Mon Mar 08 2021 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0.28-1
|
|
|
|
|
- conmon-2:2.0.28-0.1.dev.gitc42f0e7
|
|
|
|
|
- built c42f0e7
|
|
|
|
|
|
|
|
|
|
* Mon Mar 01 2021 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0.27-6
|
|
|
|
|
- conmon-2:2.0.27-0.3.dev.git3ac015e
|
|
|
|
|
- built 3ac015e
|
|
|
|
|
|
|
|
|
|
* Mon Mar 01 2021 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0.27-5
|
|
|
|
|
- conmon-2:2.0.27-0.2.dev.git7310bf1
|
|
|
|
|
- built 7310bf1
|
|
|
|
|
|
|
|
|
|
* Fri Feb 19 2021 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0.27-4
|
|
|
|
|
- fix built_tag macros
|
|
|
|
|
|
|
|
|
|
* Tue Feb 16 2021 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0.27-3
|
|
|
|
|
- fix build issues
|
|
|
|
|
|
|
|
|
|
* Tue Feb 16 2021 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0.27-2
|
|
|
|
|
- install conmon manpage
|
|
|
|
|
|
|
|
|
|
* Mon Feb 08 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.27-1
|
|
|
|
|
- conmon-2:2.0.27-0.1.dev.gitc3f31c0
|
|
|
|
|
- bump to 2.0.27
|
|
|
|
|
- autobuilt c3f31c0
|
|
|
|
|
|
|
|
|
|
* Tue Feb 02 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.26-4
|
|
|
|
|
- conmon-2:2.0.26-0.4.dev.git2b87314
|
|
|
|
|
- autobuilt 2b87314
|
|
|
|
|
|
|
|
|
|
* Fri Jan 29 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.26-3
|
|
|
|
|
- conmon-2:2.0.26-0.3.dev.gitde1a153
|
|
|
|
|
- autobuilt de1a153
|
|
|
|
|
|
|
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.0.26-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Wed Jan 20 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.26-1
|
|
|
|
|
- conmon-2:2.0.26-0.1.dev.gitde1c681
|
|
|
|
|
- bump to 2.0.26
|
|
|
|
|
- autobuilt de1c681
|
|
|
|
|
|
|
|
|
|
* Wed Jan 20 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.25-3
|
|
|
|
|
- conmon-2:2.0.25-0.3.dev.git3af2776
|
|
|
|
|
- autobuilt 3af2776
|
|
|
|
|
|
|
|
|
|
* Fri Jan 15 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.25-2
|
|
|
|
|
- conmon-2:2.0.25-0.2.dev.git6c8068c
|
|
|
|
|
- autobuilt 6c8068c
|
|
|
|
|
|
|
|
|
|
* Thu Jan 14 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.25-1
|
|
|
|
|
- conmon-2:2.0.25-0.1.dev.git0331601
|
|
|
|
|
- bump to 2.0.25
|
|
|
|
|
- autobuilt 0331601
|
|
|
|
|
|
|
|
|
|
* Thu Jan 14 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.24-1
|
|
|
|
|
- conmon-2:2.0.24-0.1.dev.git37217a3
|
|
|
|
|
- bump to 2.0.24
|
|
|
|
|
- autobuilt 37217a3
|
|
|
|
|
|
|
|
|
|
* Mon Jan 11 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.23-5
|
|
|
|
|
- conmon-2:2.0.23-0.5.dev.git7bc96c7
|
|
|
|
|
- autobuilt 7bc96c7
|
|
|
|
|
|
|
|
|
|
* Mon Jan 04 2021 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.23-4
|
|
|
|
|
- conmon-2:2.0.23-0.4.dev.git5e42e54
|
|
|
|
|
- autobuilt 5e42e54
|
|
|
|
|
|
|
|
|
|
* Mon Dec 28 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.23-3
|
|
|
|
|
- conmon-2:2.0.23-0.3.dev.gitbae24d6
|
|
|
|
|
- autobuilt bae24d6
|
|
|
|
|
|
|
|
|
|
* Mon Dec 21 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.23-2
|
|
|
|
|
- conmon-2:2.0.23-0.2.dev.git05b8046
|
|
|
|
|
- autobuilt 05b8046
|
|
|
|
|
|
|
|
|
|
* Thu Dec 17 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.23-1
|
|
|
|
|
- conmon-2:2.0.23-0.1.dev.gitc704d3a
|
|
|
|
|
- bump to 2.0.23
|
|
|
|
|
- autobuilt c704d3a
|
|
|
|
|
|
|
|
|
|
* Thu Dec 17 2020 Tom Stellard <tstellar@redhat.com> - 2:2.0.22-12
|
|
|
|
|
- Add BuildRequires: make
|
|
|
|
|
|
|
|
|
|
* Tue Dec 01 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.22-11
|
|
|
|
|
- conmon-2:2.0.22-0.11.dev.gitb1c5187
|
|
|
|
|
- autobuilt b1c5187
|
|
|
|
|
|
|
|
|
|
* Sat Nov 14 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.22-10
|
|
|
|
|
- conmon-2:2.0.22-0.10.dev.git5df41fb
|
|
|
|
|
- autobuilt 5df41fb
|
|
|
|
|
|
|
|
|
|
* Fri Nov 13 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.22-9
|
|
|
|
|
- conmon-2:2.0.22-0.9.dev.git2fbeb9f
|
|
|
|
|
- autobuilt 2fbeb9f
|
|
|
|
|
|
|
|
|
|
* Thu Nov 5 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.22-0.8.dev.gita0ddcb9
|
|
|
|
|
* Thu Nov 05 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.22-8
|
|
|
|
|
- conmon-2:2.0.22-0.8.dev.gita0ddcb9
|
|
|
|
|
- autobuilt a0ddcb9
|
|
|
|
|
|
|
|
|
|
* Sat Oct 10 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.22-0.7.dev.gite5e2b93
|
|
|
|
|
* Sat Oct 10 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.22-7
|
|
|
|
|
- conmon-2:2.0.22-0.7.dev.gite5e2b93
|
|
|
|
|
- autobuilt e5e2b93
|
|
|
|
|
|
|
|
|
|
* Tue Oct 6 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.22-0.6.dev.git162c363
|
|
|
|
|
* Tue Oct 06 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.22-6
|
|
|
|
|
- conmon-2:2.0.22-0.6.dev.git162c363
|
|
|
|
|
- autobuilt 162c363
|
|
|
|
|
|
|
|
|
|
* Fri Sep 18 09:34:35 EDT 2020 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0.22-0.5.dev.git59c2817
|
|
|
|
|
* Fri Sep 18 2020 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0.22-5
|
|
|
|
|
- conmon-2:2.0.22-0.5.dev.git59c2817
|
|
|
|
|
- build with journald support
|
|
|
|
|
|
|
|
|
|
* Wed Sep 16 16:12:47 UTC 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.22-0.4.dev.git59c2817
|
|
|
|
|
* Wed Sep 16 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.22-4
|
|
|
|
|
- conmon-2:2.0.22-0.4.dev.git59c2817
|
|
|
|
|
- autobuilt 59c2817
|
|
|
|
|
|
|
|
|
|
* Tue Sep 15 13:12:54 UTC 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.22-0.3.dev.gitd213bfa
|
|
|
|
|
* Tue Sep 15 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.22-3
|
|
|
|
|
- conmon-2:2.0.22-0.3.dev.gitd213bfa
|
|
|
|
|
- autobuilt d213bfa
|
|
|
|
|
|
|
|
|
|
* Mon Sep 14 14:12:03 UTC 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.22-0.2.dev.giteb93261
|
|
|
|
|
* Mon Sep 14 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.22-2
|
|
|
|
|
- conmon-2:2.0.22-0.2.dev.giteb93261
|
|
|
|
|
- autobuilt eb93261
|
|
|
|
|
|
|
|
|
|
* Tue Sep 8 22:12:10 UTC 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.22-0.1.dev.gitdd4fc17
|
|
|
|
|
* Tue Sep 08 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.22-1
|
|
|
|
|
- conmon-2:2.0.22-0.1.dev.gitdd4fc17
|
|
|
|
|
- bump to 2.0.22
|
|
|
|
|
- autobuilt dd4fc17
|
|
|
|
|
|
|
|
|
|
* Tue Sep 8 21:12:42 UTC 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.21-0.11.dev.gitbc88ac5
|
|
|
|
|
* Tue Sep 08 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.21-13
|
|
|
|
|
- conmon-2:2.0.21-0.11.dev.gitbc88ac5
|
|
|
|
|
- autobuilt bc88ac5
|
|
|
|
|
|
|
|
|
|
* Thu Sep 3 14:13:45 UTC 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.21-0.10.dev.git668b748
|
|
|
|
|
* Thu Sep 03 2020 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0.21-12
|
|
|
|
|
- build with DEBUGTAG=enable_debug
|
|
|
|
|
|
|
|
|
|
* Thu Sep 03 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.21-11
|
|
|
|
|
- conmon-2:2.0.21-0.10.dev.git668b748
|
|
|
|
|
- autobuilt 668b748
|
|
|
|
|
|
|
|
|
|
* Wed Sep 02 2020 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0.21-0.9.dev.git1d7b3a5
|
|
|
|
|
* Wed Sep 02 2020 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0.21-10
|
|
|
|
|
- conmon-2:2.0.21-0.9.dev.git1d7b3a5
|
|
|
|
|
- Resolves: #1786090 - build with -g for debuginfo
|
|
|
|
|
|
|
|
|
|
* Thu Aug 27 14:14:25 UTC 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.21-0.8.dev.git1d7b3a5
|
|
|
|
|
* Wed Sep 02 2020 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0.21-9
|
|
|
|
|
- Resolves: #1786090 - build with -g for debuginfo
|
|
|
|
|
|
|
|
|
|
* Thu Aug 27 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.21-8
|
|
|
|
|
- conmon-2:2.0.21-0.8.dev.git1d7b3a5
|
|
|
|
|
- autobuilt 1d7b3a5
|
|
|
|
|
|
|
|
|
|
* Wed Aug 26 13:11:37 UTC 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.21-0.7.dev.git6eb222d
|
|
|
|
|
* Wed Aug 26 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.21-7
|
|
|
|
|
- conmon-2:2.0.21-0.7.dev.git6eb222d
|
|
|
|
|
- autobuilt 6eb222d
|
|
|
|
|
|
|
|
|
|
* Tue Aug 25 15:11:33 UTC 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.21-0.6.dev.git9d61f0f
|
|
|
|
|
* Tue Aug 25 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.21-6
|
|
|
|
|
- conmon-2:2.0.21-0.6.dev.git9d61f0f
|
|
|
|
|
- autobuilt 9d61f0f
|
|
|
|
|
|
|
|
|
|
* Mon Aug 24 14:11:36 UTC 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.21-0.5.dev.git76548e1
|
|
|
|
|
* Mon Aug 24 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.21-5
|
|
|
|
|
- conmon-2:2.0.21-0.5.dev.git76548e1
|
|
|
|
|
- autobuilt 76548e1
|
|
|
|
|
|
|
|
|
|
* Fri Aug 21 15:10:39 UTC 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.21-0.4.dev.git7ab6aa1
|
|
|
|
|
* Fri Aug 21 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.21-4
|
|
|
|
|
- conmon-2:2.0.21-0.4.dev.git7ab6aa1
|
|
|
|
|
- autobuilt 7ab6aa1
|
|
|
|
|
|
|
|
|
|
* Wed Aug 05 16:10:09 GMT 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.21-0.3.dev.git5a6b2ac
|
|
|
|
|
* Wed Aug 05 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.21-3
|
|
|
|
|
- conmon-2:2.0.21-0.3.dev.git5a6b2ac
|
|
|
|
|
- autobuilt 5a6b2ac
|
|
|
|
|
|
|
|
|
|
* Tue Aug 04 2020 Peter Hunt <pehunt@redhat.com> - 2:2.0.21-0.2.dev.gitfe1563c
|
|
|
|
|
* Tue Aug 04 2020 Peter Hunt <pehunt@redhat.com> - 2:2.0.21-2
|
|
|
|
|
- rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Jul 28 14:09:38 GMT 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.21-0.1.dev.gitfe1563c
|
|
|
|
|
* Tue Jul 28 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.21-1
|
|
|
|
|
- conmon-2:2.0.21-0.1.dev.gitfe1563c
|
|
|
|
|
- bump to 2.0.21
|
|
|
|
|
- autobuilt fe1563c
|
|
|
|
|
|
|
|
|
|
* Mon Jul 27 21:09:33 GMT 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.20-0.3.dev.git5bc12e0
|
|
|
|
|
* Mon Jul 27 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.20-3
|
|
|
|
|
- conmon-2:2.0.20-0.3.dev.git5bc12e0
|
|
|
|
|
- autobuilt 5bc12e0
|
|
|
|
|
|
|
|
|
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.0.20-0.2.dev.git3c396d4
|
|
|
|
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.0.20-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Wed Jul 15 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.20-0.1.dev.git3c396d4
|
|
|
|
|
* Wed Jul 15 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.20-1
|
|
|
|
|
- conmon-2:2.0.20-0.1.dev.git3c396d4
|
|
|
|
|
- bump to 2.0.20
|
|
|
|
|
- autobuilt 3c396d4
|
|
|
|
|
|
|
|
|
|
* Wed Jul 15 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.19-0.6.dev.git4fea27e
|
|
|
|
|
* Wed Jul 15 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.19-6
|
|
|
|
|
- conmon-2:2.0.19-0.6.dev.git4fea27e
|
|
|
|
|
- autobuilt 4fea27e
|
|
|
|
|
|
|
|
|
|
* Wed Jul 08 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.19-0.5.dev.giteff699e
|
|
|
|
|
* Wed Jul 08 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.19-5
|
|
|
|
|
- conmon-2:2.0.19-0.5.dev.giteff699e
|
|
|
|
|
- autobuilt eff699e
|
|
|
|
|
|
|
|
|
|
* Mon Jun 29 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.19-0.4.dev.git9a1d403
|
|
|
|
|
* Mon Jun 29 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.19-4
|
|
|
|
|
- conmon-2:2.0.19-0.4.dev.git9a1d403
|
|
|
|
|
- autobuilt 9a1d403
|
|
|
|
|
|
|
|
|
|
* Mon Jun 22 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.19-0.3.dev.git42414b8
|
|
|
|
|
* Mon Jun 22 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.19-3
|
|
|
|
|
- conmon-2:2.0.19-0.3.dev.git42414b8
|
|
|
|
|
- autobuilt 42414b8
|
|
|
|
|
|
|
|
|
|
* Wed Jun 17 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.19-0.2.dev.gitab8f5e5
|
|
|
|
|
* Wed Jun 17 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.19-2
|
|
|
|
|
- conmon-2:2.0.19-0.2.dev.gitab8f5e5
|
|
|
|
|
- autobuilt ab8f5e5
|
|
|
|
|
|
|
|
|
|
* Mon Jun 15 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.19-0.1.dev.git96ea3a2
|
|
|
|
|
* Mon Jun 15 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.19-1
|
|
|
|
|
- conmon-2:2.0.19-0.1.dev.git96ea3a2
|
|
|
|
|
- bump to 2.0.19
|
|
|
|
|
- autobuilt 96ea3a2
|
|
|
|
|
|
|
|
|
|
* Wed Jun 10 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.18-0.8.dev.git2c32b99
|
|
|
|
|
* Wed Jun 10 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.18-8
|
|
|
|
|
- conmon-2:2.0.18-0.8.dev.git2c32b99
|
|
|
|
|
- autobuilt 2c32b99
|
|
|
|
|
|
|
|
|
|
* Mon Jun 08 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.18-0.7.dev.gitf951578
|
|
|
|
|
* Mon Jun 08 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.18-7
|
|
|
|
|
- conmon-2:2.0.18-0.7.dev.gitf951578
|
|
|
|
|
- autobuilt f951578
|
|
|
|
|
|
|
|
|
|
* Wed Jun 03 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.18-0.6.dev.git50aeae4
|
|
|
|
|
* Wed Jun 03 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.18-6
|
|
|
|
|
- conmon-2:2.0.18-0.6.dev.git50aeae4
|
|
|
|
|
- autobuilt 50aeae4
|
|
|
|
|
|
|
|
|
|
* Wed Jun 03 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.18-0.5.dev.gitf12e90b
|
|
|
|
|
* Wed Jun 03 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.18-5
|
|
|
|
|
- conmon-2:2.0.18-0.5.dev.gitf12e90b
|
|
|
|
|
- autobuilt f12e90b
|
|
|
|
|
|
|
|
|
|
* Tue Jun 02 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.18-0.4.dev.gitd951a5a
|
|
|
|
|
* Tue Jun 02 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.18-4
|
|
|
|
|
- conmon-2:2.0.18-0.4.dev.gitd951a5a
|
|
|
|
|
- autobuilt d951a5a
|
|
|
|
|
|
|
|
|
|
* Mon Jun 01 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.18-0.3.dev.git63d0e3d
|
|
|
|
|
* Mon Jun 01 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.18-3
|
|
|
|
|
- conmon-2:2.0.18-0.3.dev.git63d0e3d
|
|
|
|
|
- autobuilt 63d0e3d
|
|
|
|
|
|
|
|
|
|
* Wed May 27 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.18-0.2.dev.gitd0f367d
|
|
|
|
|
* Wed May 27 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.18-2
|
|
|
|
|
- conmon-2:2.0.18-0.2.dev.gitd0f367d
|
|
|
|
|
- autobuilt d0f367d
|
|
|
|
|
|
|
|
|
|
* Tue May 26 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.18-0.1.dev.git27bb67e
|
|
|
|
|
* Tue May 26 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.18-1
|
|
|
|
|
- conmon-2:2.0.18-0.1.dev.git27bb67e
|
|
|
|
|
- bump to 2.0.18
|
|
|
|
|
- autobuilt 27bb67e
|
|
|
|
|
|
|
|
|
|
* Tue May 26 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.17-0.3.dev.git27eb304
|
|
|
|
|
* Tue May 26 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.17-5
|
|
|
|
|
- conmon-2:2.0.17-0.3.dev.git27eb304
|
|
|
|
|
- autobuilt 27eb304
|
|
|
|
|
|
|
|
|
|
* Mon May 25 2020 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0.17-0.2.dev.git82e9358
|
|
|
|
|
* Mon May 25 2020 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0.17-4
|
|
|
|
|
- conmon-2:2.0.17-0.2.dev.git82e9358
|
|
|
|
|
- depend on glib2
|
|
|
|
|
|
|
|
|
|
* Tue May 12 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.17-0.1.dev.git82e9358
|
|
|
|
|
* Thu May 21 2020 Ed Santiago <santiago@redhat.com> - 2:2.0.17-3
|
|
|
|
|
- Gating tests: many fixes
|
|
|
|
|
|
|
|
|
|
* Thu May 21 2020 Aleksandra Fedorova <afedorova@redhat.com> - 2:2.0.17-2
|
|
|
|
|
- Update gating test name
|
|
|
|
|
|
|
|
|
|
* Tue May 12 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.17-1
|
|
|
|
|
- conmon-2:2.0.17-0.1.dev.git82e9358
|
|
|
|
|
- bump to 2.0.17
|
|
|
|
|
- autobuilt 82e9358
|
|
|
|
|
|
|
|
|
|
* Tue May 12 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.16-0.4.dev.gitedd4aaa
|
|
|
|
|
* Tue May 12 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.16-4
|
|
|
|
|
- conmon-2:2.0.16-0.4.dev.gitedd4aaa
|
|
|
|
|
- autobuilt edd4aaa
|
|
|
|
|
|
|
|
|
|
* Tue May 12 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.16-0.3.dev.git6fa9c2a
|
|
|
|
|
* Tue May 12 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.16-3
|
|
|
|
|
- conmon-2:2.0.16-0.3.dev.git6fa9c2a
|
|
|
|
|
- autobuilt 6fa9c2a
|
|
|
|
|
|
|
|
|
|
* Mon May 11 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.16-0.2.dev.git42cb289
|
|
|
|
|
* Mon May 11 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.16-2
|
|
|
|
|
- conmon-2:2.0.16-0.2.dev.git42cb289
|
|
|
|
|
- autobuilt 42cb289
|
|
|
|
|
|
|
|
|
|
* Thu Apr 02 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.16-0.1.dev.gite34c6d6
|
|
|
|
|
* Thu Apr 02 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.16-1
|
|
|
|
|
- conmon-2:2.0.16-0.1.dev.gite34c6d6
|
|
|
|
|
- bump to 2.0.16
|
|
|
|
|
- autobuilt e34c6d6
|
|
|
|
|
|
|
|
|
|
* Wed Apr 01 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.15-0.6.dev.gitb763fdd
|
|
|
|
|
* Wed Apr 01 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.15-6
|
|
|
|
|
- conmon-2:2.0.15-0.6.dev.gitb763fdd
|
|
|
|
|
- autobuilt b763fdd
|
|
|
|
|
|
|
|
|
|
* Tue Mar 31 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.15-0.5.dev.git9c9b3e7
|
|
|
|
|
* Tue Mar 31 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.15-5
|
|
|
|
|
- conmon-2:2.0.15-0.5.dev.git9c9b3e7
|
|
|
|
|
- autobuilt 9c9b3e7
|
|
|
|
|
|
|
|
|
|
* Mon Mar 30 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.15-0.4.dev.git3ea6c68
|
|
|
|
|
* Mon Mar 30 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.15-4
|
|
|
|
|
- conmon-2:2.0.15-0.4.dev.git3ea6c68
|
|
|
|
|
- autobuilt 3ea6c68
|
|
|
|
|
|
|
|
|
|
* Wed Mar 25 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.15-0.3.dev.git89b2478
|
|
|
|
|
* Wed Mar 25 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.15-3
|
|
|
|
|
- conmon-2:2.0.15-0.3.dev.git89b2478
|
|
|
|
|
- autobuilt 89b2478
|
|
|
|
|
|
|
|
|
|
* Mon Mar 23 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.15-0.2.dev.gitff29dd6
|
|
|
|
|
* Mon Mar 23 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.15-2
|
|
|
|
|
- conmon-2:2.0.15-0.2.dev.gitff29dd6
|
|
|
|
|
- autobuilt ff29dd6
|
|
|
|
|
|
|
|
|
|
* Fri Mar 20 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.15-0.1.dev.gitb97c274
|
|
|
|
|
* Fri Mar 20 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.15-1
|
|
|
|
|
- conmon-2:2.0.15-0.1.dev.gitb97c274
|
|
|
|
|
- bump to 2.0.15
|
|
|
|
|
- autobuilt b97c274
|
|
|
|
|
|
|
|
|
|
* Fri Mar 20 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.14-0.2.dev.git1b53637
|
|
|
|
|
* Fri Mar 20 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.14-2
|
|
|
|
|
- conmon-2:2.0.14-0.2.dev.git1b53637
|
|
|
|
|
- autobuilt 1b53637
|
|
|
|
|
|
|
|
|
|
* Tue Mar 17 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.14-0.1.dev.git849ab62
|
|
|
|
|
* Tue Mar 17 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.14-1
|
|
|
|
|
- conmon-2:2.0.14-0.1.dev.git849ab62
|
|
|
|
|
- bump to 2.0.14
|
|
|
|
|
- autobuilt 849ab62
|
|
|
|
|
|
|
|
|
|
* Mon Mar 16 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.12-0.1.dev.git51c0e7b
|
|
|
|
|
* Mon Mar 16 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.12-1
|
|
|
|
|
- conmon-2:2.0.12-0.1.dev.git51c0e7b
|
|
|
|
|
- bump to 2.0.12
|
|
|
|
|
- autobuilt 51c0e7b
|
|
|
|
|
|
|
|
|
|
* Tue Feb 11 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.11-0.6.dev.git86aa80b
|
|
|
|
|
* Tue Feb 11 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.11-6
|
|
|
|
|
- conmon-2:2.0.11-0.6.dev.git86aa80b
|
|
|
|
|
- autobuilt 86aa80b
|
|
|
|
|
|
|
|
|
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.0.11-0.5.dev.git77f4a51
|
|
|
|
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.0.11-5
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Wed Jan 15 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.11-0.4.dev.git77f4a51
|
|
|
|
|
* Wed Jan 15 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.11-4
|
|
|
|
|
- conmon-2:2.0.11-0.4.dev.git77f4a51
|
|
|
|
|
- autobuilt 77f4a51
|
|
|
|
|
|
|
|
|
|
* Tue Jan 14 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.11-0.3.dev.gitccfdbb6
|
|
|
|
|
* Tue Jan 14 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.11-3
|
|
|
|
|
- conmon-2:2.0.11-0.3.dev.gitccfdbb6
|
|
|
|
|
- autobuilt ccfdbb6
|
|
|
|
|
|
|
|
|
|
* Sat Jan 11 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.11-0.2.dev.git5039b44
|
|
|
|
|
* Sat Jan 11 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.11-2
|
|
|
|
|
- conmon-2:2.0.11-0.2.dev.git5039b44
|
|
|
|
|
- autobuilt 5039b44
|
|
|
|
|
|
|
|
|
|
* Wed Jan 08 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.11-0.1.dev.gitad05887
|
|
|
|
|
* Wed Jan 08 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.11-1
|
|
|
|
|
- conmon-2:2.0.11-0.1.dev.gitad05887
|
|
|
|
|
- bump to 2.0.11
|
|
|
|
|
- autobuilt ad05887
|
|
|
|
|
|
|
|
|
|
* Tue Jan 07 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.10-0.3.dev.git26f6817
|
|
|
|
|
* Tue Jan 07 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.10-3
|
|
|
|
|
- conmon-2:2.0.10-0.3.dev.git26f6817
|
|
|
|
|
- autobuilt 26f6817
|
|
|
|
|
|
|
|
|
|
* Tue Jan 07 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.10-0.2.dev.git6e39a83
|
|
|
|
|
* Tue Jan 07 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.10-2
|
|
|
|
|
- conmon-2:2.0.10-0.2.dev.git6e39a83
|
|
|
|
|
- autobuilt 6e39a83
|
|
|
|
|
|
|
|
|
|
* Mon Jan 06 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.10-0.1.dev.gitb7bfc7b
|
|
|
|
|
* Mon Jan 06 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.10-1
|
|
|
|
|
- conmon-2:2.0.10-0.1.dev.gitb7bfc7b
|
|
|
|
|
- bump to 2.0.10
|
|
|
|
|
- autobuilt b7bfc7b
|
|
|
|
|
|
|
|
|
|
* Mon Jan 06 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.9-0.3.dev.git1560392
|
|
|
|
|
* Mon Jan 06 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.9-3
|
|
|
|
|
- conmon-2:2.0.9-0.3.dev.git1560392
|
|
|
|
|
- autobuilt 1560392
|
|
|
|
|
|
|
|
|
|
* Fri Dec 20 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.9-0.2.dev.gitb17d81b
|
|
|
|
|
* Fri Dec 20 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.9-2
|
|
|
|
|
- conmon-2:2.0.9-0.2.dev.gitb17d81b
|
|
|
|
|
- autobuilt b17d81b
|
|
|
|
|
|
|
|
|
|
* Fri Dec 13 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.9-0.1.dev.gitc2e2e67
|
|
|
|
|
* Fri Dec 13 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.9-1
|
|
|
|
|
- conmon-2:2.0.9-0.1.dev.gitc2e2e67
|
|
|
|
|
- bump to 2.0.9
|
|
|
|
|
- autobuilt c2e2e67
|
|
|
|
|
|
|
|
|
|
* Fri Dec 13 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.8-0.2.dev.gitc8f7443
|
|
|
|
|
* Fri Dec 13 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.8-2
|
|
|
|
|
- conmon-2:2.0.8-0.2.dev.gitc8f7443
|
|
|
|
|
- autobuilt c8f7443
|
|
|
|
|
|
|
|
|
|
* Thu Dec 12 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.8-0.1.dev.git036ff29
|
|
|
|
|
* Thu Dec 12 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.8-1
|
|
|
|
|
- conmon-2:2.0.8-0.1.dev.git036ff29
|
|
|
|
|
- bump to 2.0.8
|
|
|
|
|
- autobuilt 036ff29
|
|
|
|
|
|
|
|
|
|
* Thu Dec 12 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.7-0.3.dev.git4100fb2
|
|
|
|
|
* Thu Dec 12 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.7-3
|
|
|
|
|
- conmon-2:2.0.7-0.3.dev.git4100fb2
|
|
|
|
|
- autobuilt 4100fb2
|
|
|
|
|
|
|
|
|
|
* Thu Dec 12 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.7-0.2.dev.git95ed45a
|
|
|
|
|
* Thu Dec 12 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.7-2
|
|
|
|
|
- conmon-2:2.0.7-0.2.dev.git95ed45a
|
|
|
|
|
- autobuilt 95ed45a
|
|
|
|
|
|
|
|
|
|
* Wed Dec 11 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.7-0.1.dev.git8ba9575
|
|
|
|
|
* Wed Dec 11 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.7-1
|
|
|
|
|
- conmon-2:2.0.7-0.1.dev.git8ba9575
|
|
|
|
|
- bump to 2.0.7
|
|
|
|
|
- autobuilt 8ba9575
|
|
|
|
|
|
|
|
|
|
* Wed Dec 11 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.6-0.2.dev.gitba14d9c
|
|
|
|
|
* Wed Dec 11 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.6-2
|
|
|
|
|
- conmon-2:2.0.6-0.2.dev.gitba14d9c
|
|
|
|
|
- autobuilt ba14d9c
|
|
|
|
|
|
|
|
|
|
* Tue Dec 10 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.6-0.1.dev.gitbc9e976
|
|
|
|
|
* Tue Dec 10 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.6-1
|
|
|
|
|
- conmon-2:2.0.6-0.1.dev.gitbc9e976
|
|
|
|
|
- bump to 2.0.6
|
|
|
|
|
- autobuilt bc9e976
|
|
|
|
|
|
|
|
|
|
* Tue Dec 10 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.5-0.2.dev.gitc792503
|
|
|
|
|
* Tue Dec 10 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.5-2
|
|
|
|
|
- conmon-2:2.0.5-0.2.dev.gitc792503
|
|
|
|
|
- autobuilt c792503
|
|
|
|
|
|
|
|
|
|
* Mon Dec 09 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.5-0.1.dev.gitfd5ac47
|
|
|
|
|
* Mon Dec 09 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.5-1
|
|
|
|
|
- conmon-2:2.0.5-0.1.dev.gitfd5ac47
|
|
|
|
|
- bump to 2.0.5
|
|
|
|
|
- autobuilt fd5ac47
|
|
|
|
|
|
|
|
|
|
* Mon Dec 02 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.4-0.3.dev.gitdf8c6aa
|
|
|
|
|
* Mon Dec 02 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.4-3
|
|
|
|
|
- conmon-2:2.0.4-0.3.dev.gitdf8c6aa
|
|
|
|
|
- autobuilt df8c6aa
|
|
|
|
|
|
|
|
|
|
* Fri Nov 29 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.4-0.2.dev.git42bce45
|
|
|
|
|
* Fri Nov 29 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.4-2
|
|
|
|
|
- conmon-2:2.0.4-0.2.dev.git42bce45
|
|
|
|
|
- autobuilt 42bce45
|
|
|
|
|
|
|
|
|
|
* Mon Nov 11 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.4-0.1.dev.gitf6d23b5
|
|
|
|
|
* Mon Nov 11 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.4-1
|
|
|
|
|
- conmon-2:2.0.4-0.1.dev.gitf6d23b5
|
|
|
|
|
- bump to 2.0.4
|
|
|
|
|
- autobuilt f6d23b5
|
|
|
|
|
|
|
|
|
|
* Mon Nov 11 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.3-0.3.dev.git098fcce
|
|
|
|
|
* Mon Nov 11 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.3-3
|
|
|
|
|
- conmon-2:2.0.3-0.3.dev.git098fcce
|
|
|
|
|
- autobuilt 098fcce
|
|
|
|
|
|
|
|
|
|
* Thu Nov 07 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.3-0.2.dev.git002da25
|
|
|
|
|
* Thu Nov 07 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 2:2.0.3-2
|
|
|
|
|
- conmon-2:2.0.3-0.2.dev.git002da25
|
|
|
|
|
- autobuilt 002da25
|
|
|
|
|
|
|
|
|
|
* Mon Oct 21 2019 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0.3-0.1.dev.gitbc758d8
|
|
|
|
|
* Tue Oct 22 2019 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0.3-1
|
|
|
|
|
- conmon-2:2.0.3-0.1.dev.gitbc758d8
|
|
|
|
|
- built commit bc758d8
|
|
|
|
|
|
|
|
|
|
* Wed Sep 25 2019 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0.2-0.1.dev.git422ce21
|
|
|
|
|
* Mon Sep 30 2019 Ed Santiago <santiago@redhat.com> - 2:2.0.2-2
|
|
|
|
|
- Add gating tests (copied from podman)
|
|
|
|
|
|
|
|
|
|
* Wed Sep 25 2019 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0.2-1
|
|
|
|
|
- conmon-2:2.0.2-0.1.dev.git422ce21
|
|
|
|
|
- build latest upstream master
|
|
|
|
|
|
|
|
|
|
* Tue Sep 10 2019 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0.0-2
|
|
|
|
|
- remove BR: go-md2man since no manpages yet
|
|
|
|
|
* Wed Sep 25 2019 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0.0-3
|
|
|
|
|
- update release tag and setup for autobuild
|
|
|
|
|
|
|
|
|
|
* Tue Sep 10 2019 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0.0-1
|
|
|
|
|
- bump to v2.0.0
|
|
|
|
|
* Wed Sep 11 2019 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0.0-2
|
|
|
|
|
- add comment explaining built_tag use
|
|
|
|
|
|
|
|
|
|
* Fri May 31 2019 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:0.2.0-1
|
|
|
|
|
- initial package
|
|
|
|
|
* Wed Sep 11 2019 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0.0-1
|
|
|
|
|
- conmon-2:2.0.0-2
|
|
|
|
|
- first official build
|
|
|
|
|
- remove BR: go-md2man since no manpages yet
|
|
|
|
|
## END: Generated by rpmautospec
|
|
|
|
|