2020-10-14 21:21:29 +00:00
|
|
|
Summary: OCI runtime written in C
|
|
|
|
Name: crun
|
2022-10-18 10:41:06 +00:00
|
|
|
Version: 1.6
|
2022-08-02 06:27:52 +00:00
|
|
|
Release: 1%{?dist}
|
2021-02-19 07:54:02 +00:00
|
|
|
Source0: https://github.com/containers/%{name}/releases/download/%{version}/%{name}-%{version}.tar.gz
|
2020-12-04 16:22:14 +00:00
|
|
|
License: GPLv2+
|
2020-10-14 21:21:29 +00:00
|
|
|
URL: https://github.com/containers/crun
|
2021-02-19 07:54:02 +00:00
|
|
|
# https://fedoraproject.org/wiki/PackagingDrafts/Go#Go_Language_Architectures
|
|
|
|
ExclusiveArch: %{go_arches}
|
2020-10-14 21:21:29 +00:00
|
|
|
# We always run autogen.sh
|
|
|
|
BuildRequires: autoconf
|
|
|
|
BuildRequires: automake
|
|
|
|
BuildRequires: gcc
|
2020-12-04 16:22:14 +00:00
|
|
|
BuildRequires: python3
|
2020-10-14 21:21:29 +00:00
|
|
|
BuildRequires: git
|
|
|
|
BuildRequires: libcap-devel
|
|
|
|
BuildRequires: systemd-devel
|
|
|
|
BuildRequires: yajl-devel
|
|
|
|
BuildRequires: libseccomp-devel
|
|
|
|
BuildRequires: libselinux-devel
|
2021-06-15 06:52:13 +00:00
|
|
|
BuildRequires: criu-devel
|
2020-10-14 21:21:29 +00:00
|
|
|
BuildRequires: python3-libmount
|
|
|
|
BuildRequires: libtool
|
2022-05-11 08:52:39 +00:00
|
|
|
BuildRequires: /usr/bin/go-md2man
|
2021-08-06 05:25:17 +00:00
|
|
|
Provides: oci-runtime
|
2020-10-14 21:21:29 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
crun is a runtime for running OCI containers
|
|
|
|
|
|
|
|
%prep
|
2021-02-19 07:54:02 +00:00
|
|
|
%autosetup -Sgit -n %{name}-%{version}
|
2020-10-14 21:21:29 +00:00
|
|
|
|
|
|
|
%build
|
2020-12-04 16:22:14 +00:00
|
|
|
export CFLAGS="%{optflags} -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64"
|
2020-10-14 21:21:29 +00:00
|
|
|
./autogen.sh
|
|
|
|
%configure --disable-silent-rules
|
|
|
|
|
|
|
|
%make_build
|
|
|
|
|
|
|
|
%install
|
|
|
|
%make_install
|
2021-06-22 20:28:18 +00:00
|
|
|
rm -rf %{buildroot}%{_prefix}/lib*
|
2020-10-14 21:21:29 +00:00
|
|
|
|
|
|
|
%files
|
|
|
|
%license COPYING
|
|
|
|
%{_bindir}/%{name}
|
|
|
|
%{_mandir}/man1/*
|
|
|
|
|
|
|
|
%changelog
|
2022-10-18 10:41:06 +00:00
|
|
|
* Tue Oct 18 2022 Jindrich Novy <jnovy@redhat.com> - 1.6-1
|
|
|
|
- update to https://github.com/containers/crun/releases/tag/1.6
|
|
|
|
- Related: #2124478
|
|
|
|
|
2022-08-02 06:27:52 +00:00
|
|
|
* Tue Aug 02 2022 Jindrich Novy <jnovy@redhat.com> - 1.5-1
|
|
|
|
- update to https://github.com/containers/crun/releases/tag/1.5
|
|
|
|
- Related: #2061316
|
|
|
|
|
2022-05-11 08:52:39 +00:00
|
|
|
* Wed May 11 2022 Jindrich Novy <jnovy@redhat.com> - 1.4.5-2
|
|
|
|
- BuildRequires: /usr/bin/go-md2man
|
|
|
|
- Related: #2061316
|
|
|
|
|
2022-04-27 19:26:07 +00:00
|
|
|
* Wed Apr 27 2022 Jindrich Novy <jnovy@redhat.com> - 1.4.5-1
|
|
|
|
- update to https://github.com/containers/crun/releases/tag/1.4.5
|
|
|
|
- Related: #2061316
|
|
|
|
|
2022-03-24 08:09:23 +00:00
|
|
|
* Thu Mar 24 2022 Jindrich Novy <jnovy@redhat.com> - 1.4.4-1
|
|
|
|
- update to https://github.com/containers/crun/releases/tag/1.4.4
|
|
|
|
- Related: #2061316
|
|
|
|
|
2022-03-08 10:19:47 +00:00
|
|
|
* Tue Mar 08 2022 Jindrich Novy <jnovy@redhat.com> - 1.4.3-1
|
|
|
|
- update to https://github.com/containers/crun/releases/tag/1.4.3
|
|
|
|
- Related: #2061316
|
|
|
|
|
2022-01-26 09:15:47 +00:00
|
|
|
* Wed Jan 26 2022 Jindrich Novy <jnovy@redhat.com> - 1.4.2-1
|
|
|
|
- update to https://github.com/containers/crun/releases/tag/1.4.2
|
|
|
|
- Related: #2000051
|
|
|
|
|
2022-01-14 11:28:13 +00:00
|
|
|
* Fri Jan 14 2022 Jindrich Novy <jnovy@redhat.com> - 1.4.1-1
|
|
|
|
- update to https://github.com/containers/crun/releases/tag/1.4.1
|
|
|
|
- Related: #2000051
|
|
|
|
|
2021-12-22 10:57:34 +00:00
|
|
|
* Wed Dec 22 2021 Jindrich Novy <jnovy@redhat.com> - 1.4-1
|
|
|
|
- update to https://github.com/containers/crun/releases/tag/1.4
|
|
|
|
- Related: #2000051
|
|
|
|
|
2021-11-05 08:45:58 +00:00
|
|
|
* Fri Nov 05 2021 Jindrich Novy <jnovy@redhat.com> - 1.3-1
|
|
|
|
- update to https://github.com/containers/crun/releases/tag/1.3
|
|
|
|
- Related: #2000051
|
|
|
|
|
2021-10-11 06:32:14 +00:00
|
|
|
* Mon Oct 11 2021 Jindrich Novy <jnovy@redhat.com> - 1.2-1
|
|
|
|
- update to https://github.com/containers/crun/releases/tag/1.2
|
|
|
|
- Related: #2000051
|
|
|
|
|
2021-10-01 10:37:04 +00:00
|
|
|
* Fri Oct 01 2021 Jindrich Novy <jnovy@redhat.com> - 1.1-3
|
|
|
|
- perform only sanity/installability tests for now
|
|
|
|
- Related: #2000051
|
|
|
|
|
2021-09-29 08:54:40 +00:00
|
|
|
* Wed Sep 29 2021 Jindrich Novy <jnovy@redhat.com> - 1.1-2
|
|
|
|
- add gating.yaml
|
|
|
|
- Related: #2000051
|
|
|
|
|
2021-09-29 06:36:23 +00:00
|
|
|
* Wed Sep 29 2021 Jindrich Novy <jnovy@redhat.com> - 1.1-1
|
|
|
|
- update to https://github.com/containers/crun/releases/tag/1.1
|
|
|
|
- Related: #2000051
|
|
|
|
|
2021-09-03 09:27:47 +00:00
|
|
|
* Fri Sep 03 2021 Jindrich Novy <jnovy@redhat.com> - 1.0-1
|
|
|
|
- update to https://github.com/containers/crun/releases/tag/1.0
|
|
|
|
- Related: #2000051
|
|
|
|
|
2021-08-09 19:43:20 +00:00
|
|
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 0.21-4
|
|
|
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
|
|
Related: rhbz#1991688
|
|
|
|
|
2021-08-06 05:25:17 +00:00
|
|
|
* Fri Aug 06 2021 Jindrich Novy <jnovy@redhat.com> - 0.21-3
|
|
|
|
- do not use versioned provide
|
|
|
|
- Resolves: #1974951
|
|
|
|
|
2021-07-30 15:16:48 +00:00
|
|
|
* Fri Jul 30 2021 Jindrich Novy <jnovy@redhat.com> - 0.21-2
|
|
|
|
- re-add versioned provide
|
|
|
|
- Related: #1970747
|
|
|
|
|
2021-07-27 04:33:31 +00:00
|
|
|
* Tue Jul 27 2021 Jindrich Novy <jnovy@redhat.com> - 0.21-1
|
|
|
|
- update to https://github.com/containers/crun/releases/tag/0.21
|
|
|
|
- Related: #1970747
|
|
|
|
|
2021-06-22 20:28:18 +00:00
|
|
|
* Tue Jun 22 2021 Lokesh Mandvekar <lsm5@redhat.com> - 0.20.1-4
|
|
|
|
- Resolves: #1974951 - Versionless oci-runtime
|
|
|
|
|
2021-06-15 06:52:13 +00:00
|
|
|
* Tue Jun 15 2021 Jindrich Novy <jnovy@redhat.com> - 0.20.1-3
|
|
|
|
- add BR: criu-devel
|
|
|
|
- Resolves: #1944964
|
|
|
|
|
2021-06-14 08:10:13 +00:00
|
|
|
* Mon Jun 14 2021 Jindrich Novy <jnovy@redhat.com> - 0.20.1-2
|
|
|
|
- update to https://github.com/containers/crun/releases/tag/0.20.1
|
|
|
|
- Related: #1970747
|
|
|
|
|
2021-04-15 22:59:30 +00:00
|
|
|
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 0.19-2
|
|
|
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
|
|
|
2021-04-06 07:29:24 +00:00
|
|
|
* Tue Apr 06 2021 Jindrich Novy <jnovy@redhat.com> - 0.19-1
|
|
|
|
- update to https://github.com/containers/crun/releases/tag/0.19
|
|
|
|
|
2021-02-19 13:12:21 +00:00
|
|
|
* Fri Feb 19 2021 Jindrich Novy <jnovy@redhat.com> - 0.18-2
|
|
|
|
- allow to build without glibc-static (thanks to Giuseppe Scrivano)
|
|
|
|
|
2021-02-19 07:54:02 +00:00
|
|
|
* Fri Feb 19 2021 Jindrich Novy <jnovy@redhat.com> - 0.18-1
|
|
|
|
- update to https://github.com/containers/crun/releases/tag/0.18
|
|
|
|
|
2021-01-26 07:45:45 +00:00
|
|
|
* Tue Jan 26 2021 Jindrich Novy <jnovy@redhat.com> - 0.17-1
|
|
|
|
- update to https://github.com/containers/crun/releases/tag/0.17
|
|
|
|
|
2020-12-04 16:22:14 +00:00
|
|
|
* Thu Dec 03 2020 Jindrich Novy <jnovy@redhat.com> - 0.16-2
|
|
|
|
- exclude i686 because of build failures
|
|
|
|
- Related: #1883490
|
2020-10-14 21:21:29 +00:00
|
|
|
|
2020-12-04 16:22:14 +00:00
|
|
|
* Wed Nov 25 2020 Jindrich Novy <jnovy@redhat.com> - 0.16-1
|
|
|
|
- update to https://github.com/containers/crun/releases/tag/0.16
|
2020-10-14 21:21:29 +00:00
|
|
|
|
2020-12-04 16:22:14 +00:00
|
|
|
* Wed Nov 04 2020 Jindrich Novy <jnovy@redhat.com> - 0.15.1-1
|
|
|
|
- update to https://github.com/containers/crun/releases/tag/0.15.1
|
2020-10-14 21:21:29 +00:00
|
|
|
|
2020-12-04 16:22:14 +00:00
|
|
|
* Thu Oct 29 2020 Jindrich Novy <jnovy@redhat.com> - 0.15-2
|
|
|
|
- backport "exec: check read bytes from sync" (gscrivan@redhat.com)
|
|
|
|
(https://github.com/containers/crun/issues/511)
|
2020-10-14 21:21:29 +00:00
|
|
|
|
2020-12-04 16:22:14 +00:00
|
|
|
* Wed Sep 23 2020 Jindrich Novy <jnovy@redhat.com> - 0.15-1
|
|
|
|
- update to https://github.com/containers/crun/releases/tag/0.15
|
2020-10-14 21:21:29 +00:00
|
|
|
|
2020-12-04 16:22:14 +00:00
|
|
|
* Tue Aug 11 2020 Jindrich Novy <jnovy@redhat.com> - 0.14.1-2
|
|
|
|
- use proper CFLAGS
|
|
|
|
- Related: #1821193
|
2020-10-14 21:21:29 +00:00
|
|
|
|
2020-12-04 16:22:14 +00:00
|
|
|
* Wed Jul 08 2020 Jindrich Novy <jnovy@redhat.com> - 0.14.1-1
|
|
|
|
- update to https://github.com/containers/crun/releases/tag/v0.14.1
|
|
|
|
- Related: #1821193
|
2020-10-14 21:21:29 +00:00
|
|
|
|
2020-12-04 16:22:14 +00:00
|
|
|
* Thu Jul 02 2020 Jindrich Novy <jnovy@redhat.com> - 0.14-1
|
|
|
|
- update to https://github.com/containers/crun/releases/tag/v0.14
|
|
|
|
- Related: #1821193
|
2020-10-14 21:21:29 +00:00
|
|
|
|
2020-12-04 16:22:14 +00:00
|
|
|
* Tue Jun 16 2020 Giuseppe Scrivano <gscrivan@redhat.com> - 0.13-1
|
|
|
|
- initial import
|