From 72aeefc761c991edaa0a0798f3de7ed8ca4f4ec3 Mon Sep 17 00:00:00 2001 From: Lokesh Mandvekar Date: Fri, 20 Mar 2020 13:20:38 -0400 Subject: [PATCH 01/61] modify for autobuilds Signed-off-by: Lokesh Mandvekar --- container-selinux.spec | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/container-selinux.spec b/container-selinux.spec index 4b9966a..2f9ddc7 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -17,7 +17,14 @@ %global _format() export %1=""; for x in %{modulenames}; do %1+=%2; %1+=" "; done; # Version of SELinux we were using -%global selinux_policyver 3.14.4-43 +%global selinux_policyver_fedora 3.14.4-43 +%global selinux_policyver_centos 3.14.4-20 + +# Used for comparing with latest upstream tag +# to decide whether to autobuild (non-rawhide only) +%define built_tag v1.124.0 +%define built_tag_strip %(b=%{built_tag}; echo ${b:1}) +%define download_url %{git0}/archive/%{built_tag}.tar.gz # Hooked up to autobuilder, please check with @lsm5 before updating Name: container-selinux @@ -29,7 +36,7 @@ Release: 4.dev.git%{shortcommit0}%{?dist} License: GPLv2 URL: %{git0} Summary: SELinux policies for container runtimes -Source0: %{git0}/archive/%{commit0}/%{name}-%{shortcommit0}.tar.gz +Source0: %{download_url} BuildArch: noarch BuildRequires: git BuildRequires: pkgconfig(systemd) @@ -50,7 +57,7 @@ Provides: docker-selinux = %{epoch}:%{version}-%{release} SELinux policy modules for use with container runtimes. %prep -%autosetup -Sgit -n %{name}-%{commit0} +%autosetup -Sgit -n %{name}-%{built_tag_strip} %build make From 800671c54065914509225e5b766485a635890a71 Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Fri, 20 Mar 2020 19:06:55 +0000 Subject: [PATCH 02/61] container-selinux-2:2.125.0-1 Signed-off-by: RH Container Bot --- .gitignore | 1 + container-selinux.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 095c46e..ad3f774 100644 --- a/.gitignore +++ b/.gitignore @@ -115,3 +115,4 @@ /container-selinux-0b25a4a.tar.gz /container-selinux-f958d0c.tar.gz /container-selinux-5624558.tar.gz +/v2.125.0.tar.gz diff --git a/container-selinux.spec b/container-selinux.spec index 2f9ddc7..86ff89b 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -22,7 +22,7 @@ # Used for comparing with latest upstream tag # to decide whether to autobuild (non-rawhide only) -%define built_tag v1.124.0 +%define built_tag v2.125.0 %define built_tag_strip %(b=%{built_tag}; echo ${b:1}) %define download_url %{git0}/archive/%{built_tag}.tar.gz @@ -31,8 +31,8 @@ Name: container-selinux %if 0%{?fedora} Epoch: 2 %endif -Version: 2.124.0 -Release: 4.dev.git%{shortcommit0}%{?dist} +Version: 2.125.0 +Release: 1%{?dist} License: GPLv2 URL: %{git0} Summary: SELinux policies for container runtimes @@ -109,6 +109,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Fri Mar 20 2020 RH Container Bot - 2:2.125.0-1 +- autobuilt v2.125.0 + * Tue Feb 11 2020 Lokesh Mandvekar - 2:2.124.0-4.dev.git5624558 - keep functional upgrade path from f31 diff --git a/sources b/sources index 6e647c9..52adf04 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (container-selinux-5624558.tar.gz) = 9e43c2b2e9b2ff254bf00370bdef2b300ab926270468326a5270b9414fcc9c607c3683ebba428a368516c2a890200fd2ff717deb942333f5f39dbe4cda0c4ba0 +SHA512 (v2.125.0.tar.gz) = 200fc3a104713ad877d821c1f81d987e8f4f4c7b2621d9721d3d264839b5efd5f84217bcab68bbe91defc853c2553f098fd785f37a3943f643a76e1135723418 From 84350708f89eb8d60c5c9b1b48a0e8afa8512510 Mon Sep 17 00:00:00 2001 From: Lokesh Mandvekar Date: Mon, 23 Mar 2020 10:36:26 -0400 Subject: [PATCH 03/61] account for selinux-policy on amazon linux 2 Signed-off-by: Lokesh Mandvekar --- container-selinux.spec | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/container-selinux.spec b/container-selinux.spec index 86ff89b..c6d010e 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -17,8 +17,15 @@ %global _format() export %1=""; for x in %{modulenames}; do %1+=%2; %1+=" "; done; # Version of SELinux we were using -%global selinux_policyver_fedora 3.14.4-43 -%global selinux_policyver_centos 3.14.4-20 +%if 0%{?fedora} +%define selinux_policyver 3.14.4-43 +%else +%if 0%{?centos} +%define selinux_policyver 3.14.3-20 +%else +%define selinux_policyver 3.13.1-166 +%endif +%endif # Used for comparing with latest upstream tag # to decide whether to autobuild (non-rawhide only) @@ -44,7 +51,7 @@ BuildRequires: selinux-policy >= %{selinux_policyver} BuildRequires: selinux-policy-devel >= %{selinux_policyver} # RE: rhbz#1195804 - ensure min NVR for selinux-policy Requires: selinux-policy >= %{selinux_policyver} -Requires(post): selinux-policy-base >= %{selinux_policyver} +Requires(post): selinux-policy-minimum >= %{selinux_policyver} Requires(post): selinux-policy-targeted >= %{selinux_policyver} Requires(post): policycoreutils Requires(post): libselinux-utils From 0e13fd72db2c74aa2e0589bc7368f130fc570901 Mon Sep 17 00:00:00 2001 From: Lokesh Mandvekar Date: Mon, 23 Mar 2020 11:08:13 -0400 Subject: [PATCH 04/61] account for centos7 selinux-policy as well Signed-off-by: Lokesh Mandvekar --- container-selinux.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index c6d010e..dda5c17 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -20,12 +20,16 @@ %if 0%{?fedora} %define selinux_policyver 3.14.4-43 %else -%if 0%{?centos} +%if 0%{?centos} >= 8 %define selinux_policyver 3.14.3-20 %else +%if 0%{?centos} < 8 +%define selinux_policyver 3.13.1-252 +%else %define selinux_policyver 3.13.1-166 %endif %endif +%endif # Used for comparing with latest upstream tag # to decide whether to autobuild (non-rawhide only) From 32e85ccf3905fdf60f9b72ea8b8c7586c0d005c4 Mon Sep 17 00:00:00 2001 From: Lokesh Mandvekar Date: Mon, 23 Mar 2020 11:38:47 -0400 Subject: [PATCH 05/61] do not consider centos7 and amazon linux 2 deps Signed-off-by: Lokesh Mandvekar --- container-selinux.spec | 8 -------- 1 file changed, 8 deletions(-) diff --git a/container-selinux.spec b/container-selinux.spec index dda5c17..2fd5a0b 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -20,15 +20,7 @@ %if 0%{?fedora} %define selinux_policyver 3.14.4-43 %else -%if 0%{?centos} >= 8 %define selinux_policyver 3.14.3-20 -%else -%if 0%{?centos} < 8 -%define selinux_policyver 3.13.1-252 -%else -%define selinux_policyver 3.13.1-166 -%endif -%endif %endif # Used for comparing with latest upstream tag From c1236eb73157a870fd5d2310593b7eaa2f3cb352 Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Mon, 23 Mar 2020 19:07:52 +0000 Subject: [PATCH 06/61] container-selinux-2:2.125.1-1 Signed-off-by: RH Container Bot --- .gitignore | 1 + container-selinux.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index ad3f774..e748df7 100644 --- a/.gitignore +++ b/.gitignore @@ -116,3 +116,4 @@ /container-selinux-f958d0c.tar.gz /container-selinux-5624558.tar.gz /v2.125.0.tar.gz +/v2.125.1.tar.gz diff --git a/container-selinux.spec b/container-selinux.spec index 2fd5a0b..eed8e37 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -25,7 +25,7 @@ # Used for comparing with latest upstream tag # to decide whether to autobuild (non-rawhide only) -%define built_tag v2.125.0 +%define built_tag v2.125.1 %define built_tag_strip %(b=%{built_tag}; echo ${b:1}) %define download_url %{git0}/archive/%{built_tag}.tar.gz @@ -34,7 +34,7 @@ Name: container-selinux %if 0%{?fedora} Epoch: 2 %endif -Version: 2.125.0 +Version: 2.125.1 Release: 1%{?dist} License: GPLv2 URL: %{git0} @@ -112,6 +112,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Mon Mar 23 2020 RH Container Bot - 2:2.125.1-1 +- autobuilt v2.125.1 + * Fri Mar 20 2020 RH Container Bot - 2:2.125.0-1 - autobuilt v2.125.0 diff --git a/sources b/sources index 52adf04..0c2e53a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (v2.125.0.tar.gz) = 200fc3a104713ad877d821c1f81d987e8f4f4c7b2621d9721d3d264839b5efd5f84217bcab68bbe91defc853c2553f098fd785f37a3943f643a76e1135723418 +SHA512 (v2.125.1.tar.gz) = 09aa6c0de88dddf69f2f08daee3b871e6ec776ba139f1b6f5499164c5670c2effb59f975f5136597ae87f4a23501645685c05a04506458058deb3d6b52b71bb6 From f58ff838eebb32bbeb99d4f576dd94ac04e821af Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Mon, 23 Mar 2020 20:07:42 +0000 Subject: [PATCH 07/61] container-selinux-2:2.125.2-1 Signed-off-by: RH Container Bot --- .gitignore | 1 + container-selinux.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index e748df7..8b8a461 100644 --- a/.gitignore +++ b/.gitignore @@ -117,3 +117,4 @@ /container-selinux-5624558.tar.gz /v2.125.0.tar.gz /v2.125.1.tar.gz +/v2.125.2.tar.gz diff --git a/container-selinux.spec b/container-selinux.spec index eed8e37..9888bc6 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -25,7 +25,7 @@ # Used for comparing with latest upstream tag # to decide whether to autobuild (non-rawhide only) -%define built_tag v2.125.1 +%define built_tag v2.125.2 %define built_tag_strip %(b=%{built_tag}; echo ${b:1}) %define download_url %{git0}/archive/%{built_tag}.tar.gz @@ -34,7 +34,7 @@ Name: container-selinux %if 0%{?fedora} Epoch: 2 %endif -Version: 2.125.1 +Version: 2.125.2 Release: 1%{?dist} License: GPLv2 URL: %{git0} @@ -112,6 +112,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Mon Mar 23 2020 RH Container Bot - 2:2.125.2-1 +- autobuilt v2.125.2 + * Mon Mar 23 2020 RH Container Bot - 2:2.125.1-1 - autobuilt v2.125.1 diff --git a/sources b/sources index 0c2e53a..c0acec8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (v2.125.1.tar.gz) = 09aa6c0de88dddf69f2f08daee3b871e6ec776ba139f1b6f5499164c5670c2effb59f975f5136597ae87f4a23501645685c05a04506458058deb3d6b52b71bb6 +SHA512 (v2.125.2.tar.gz) = fa16b5c727e8cc994d7f6a7c1f36e9c99a91d3ab16605d0179ee0bd887158536cdefad3ce484cf10eedb4c694032edf2a608269af812438f4f5c01897a8a5508 From b469362b6589e531dc0b932a2dda945224ac6724 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Thu, 26 Mar 2020 09:56:38 -0400 Subject: [PATCH 08/61] Add container_kvm_t for kata containers Add contaienr_init_t for systemd based containers Install container_contexts file --- .gitignore | 1 + container-selinux.spec | 27 ++++++++++++--------------- sources | 2 +- 3 files changed, 14 insertions(+), 16 deletions(-) diff --git a/.gitignore b/.gitignore index 8b8a461..63d4f4f 100644 --- a/.gitignore +++ b/.gitignore @@ -118,3 +118,4 @@ /v2.125.0.tar.gz /v2.125.1.tar.gz /v2.125.2.tar.gz +/container-selinux-867a377.tar.gz diff --git a/container-selinux.spec b/container-selinux.spec index 9888bc6..755033f 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -2,7 +2,7 @@ # container-selinux %global git0 https://github.com/containers/container-selinux -%global commit0 562455891442021c87f1e191b74775b9975f587a +%global commit0 867a37749b7b8b7e341dd1fc6be2536bd01f7349 %global shortcommit0 %(c=%{commit0}; echo ${c:0:7}) # container-selinux stuff (prefix with ds_ for version/release etc.) @@ -17,29 +17,19 @@ %global _format() export %1=""; for x in %{modulenames}; do %1+=%2; %1+=" "; done; # Version of SELinux we were using -%if 0%{?fedora} %define selinux_policyver 3.14.4-43 -%else -%define selinux_policyver 3.14.3-20 -%endif - -# Used for comparing with latest upstream tag -# to decide whether to autobuild (non-rawhide only) -%define built_tag v2.125.2 -%define built_tag_strip %(b=%{built_tag}; echo ${b:1}) -%define download_url %{git0}/archive/%{built_tag}.tar.gz # Hooked up to autobuilder, please check with @lsm5 before updating Name: container-selinux %if 0%{?fedora} Epoch: 2 %endif -Version: 2.125.2 +Version: 2.126.0 Release: 1%{?dist} License: GPLv2 URL: %{git0} Summary: SELinux policies for container runtimes -Source0: %{download_url} +Source0: %{git0}/archive/%{commit0}/%{name}-%{shortcommit0}.tar.gz BuildArch: noarch BuildRequires: git BuildRequires: pkgconfig(systemd) @@ -47,7 +37,7 @@ BuildRequires: selinux-policy >= %{selinux_policyver} BuildRequires: selinux-policy-devel >= %{selinux_policyver} # RE: rhbz#1195804 - ensure min NVR for selinux-policy Requires: selinux-policy >= %{selinux_policyver} -Requires(post): selinux-policy-minimum >= %{selinux_policyver} +Requires(post): selinux-policy-base >= %{selinux_policyver} Requires(post): selinux-policy-targeted >= %{selinux_policyver} Requires(post): policycoreutils Requires(post): libselinux-utils @@ -60,7 +50,7 @@ Provides: docker-selinux = %{epoch}:%{version}-%{release} SELinux policy modules for use with container runtimes. %prep -%autosetup -Sgit -n %{name}-%{built_tag_strip} +%autosetup -Sgit -n %{name}-%{commit0} %build make @@ -72,6 +62,8 @@ install -d %{buildroot}%{_datadir}/selinux/packages install -d -p %{buildroot}%{_datadir}/selinux/devel/include/services install -p -m 644 container.if %{buildroot}%{_datadir}/selinux/devel/include/services install -m 0644 $MODULES %{buildroot}%{_datadir}/selinux/packages +install -d %{buildroot}/%{_datadir}/containers +install -m 644 container_contexts %{buildroot}/%{_datadir}/containers # remove spec file rm -rf container-selinux.spec @@ -112,6 +104,11 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Thu Mar 26 2020 Dan Walsh - 2:2.126.0-1 +- Add container_kvm_t for kata containers +- Add contaienr_init_t for systemd based containers +- Install container_contexts file + * Mon Mar 23 2020 RH Container Bot - 2:2.125.2-1 - autobuilt v2.125.2 diff --git a/sources b/sources index c0acec8..65bb07f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (v2.125.2.tar.gz) = fa16b5c727e8cc994d7f6a7c1f36e9c99a91d3ab16605d0179ee0bd887158536cdefad3ce484cf10eedb4c694032edf2a608269af812438f4f5c01897a8a5508 +SHA512 (container-selinux-867a377.tar.gz) = 8bcf14b5200a0974741de1ed750c71f311f8943277ffeafbfe4aac00d1957f94242d47400ac5cff21d135d14fcad6c4a66d1c23979eb7a6f50296a204bae2f25 From 1ff9392c45b9781d32f928df05a7c04df5d08fe0 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Thu, 26 Mar 2020 10:11:11 -0400 Subject: [PATCH 09/61] Add container_kvm_t for kata containers Add contaienr_init_t for systemd based containers Install container_contexts file --- container-selinux.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/container-selinux.spec b/container-selinux.spec index 755033f..83dc032 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -62,8 +62,8 @@ install -d %{buildroot}%{_datadir}/selinux/packages install -d -p %{buildroot}%{_datadir}/selinux/devel/include/services install -p -m 644 container.if %{buildroot}%{_datadir}/selinux/devel/include/services install -m 0644 $MODULES %{buildroot}%{_datadir}/selinux/packages -install -d %{buildroot}/%{_datadir}/containers -install -m 644 container_contexts %{buildroot}/%{_datadir}/containers +install -d %{buildroot}/%{_datadir}/containers/selinux +install -m 644 container_contexts %{buildroot}/%{_datadir}/containers/selinux/contexts # remove spec file rm -rf container-selinux.spec @@ -101,6 +101,9 @@ fi %files %doc README.md %{_datadir}/selinux/* +%dir %{_datadir}/containers +%dir %{_datadir}/containers/selinux +%{_datadir}/containers/selinux/contexts # Hooked up to autobuilder, please check with @lsm5 before updating %changelog From e69f39e5d6a6b29cdf268aeb91758a1c04b4652a Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Fri, 27 Mar 2020 15:08:35 +0000 Subject: [PATCH 10/61] container-selinux-2:2.127.0-1 Signed-off-by: RH Container Bot --- container-selinux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index 83dc032..6236d64 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -24,7 +24,7 @@ Name: container-selinux %if 0%{?fedora} Epoch: 2 %endif -Version: 2.126.0 +Version: 2.127.0 Release: 1%{?dist} License: GPLv2 URL: %{git0} @@ -107,6 +107,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Fri Mar 27 2020 RH Container Bot - 2:2.127.0-1 +- autobuilt v2.127.0 + * Thu Mar 26 2020 Dan Walsh - 2:2.126.0-1 - Add container_kvm_t for kata containers - Add contaienr_init_t for systemd based containers From 11f67565c02a371671ae8bdf06dc3e866d11aa25 Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Sun, 29 Mar 2020 11:09:44 +0000 Subject: [PATCH 11/61] container-selinux-2:2.128.0-1 Signed-off-by: RH Container Bot --- container-selinux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index 6236d64..7a19421 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -24,7 +24,7 @@ Name: container-selinux %if 0%{?fedora} Epoch: 2 %endif -Version: 2.127.0 +Version: 2.128.0 Release: 1%{?dist} License: GPLv2 URL: %{git0} @@ -107,6 +107,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Sun Mar 29 2020 RH Container Bot - 2:2.128.0-1 +- autobuilt v2.128.0 + * Fri Mar 27 2020 RH Container Bot - 2:2.127.0-1 - autobuilt v2.127.0 From ce689169f785220dc317ec876e66a02058531f8f Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Sun, 29 Mar 2020 12:09:25 +0000 Subject: [PATCH 12/61] container-selinux-2:2.129.0-1 Signed-off-by: RH Container Bot --- container-selinux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index 7a19421..bfa1b20 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -24,7 +24,7 @@ Name: container-selinux %if 0%{?fedora} Epoch: 2 %endif -Version: 2.128.0 +Version: 2.129.0 Release: 1%{?dist} License: GPLv2 URL: %{git0} @@ -107,6 +107,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Sun Mar 29 2020 RH Container Bot - 2:2.129.0-1 +- autobuilt v2.129.0 + * Sun Mar 29 2020 RH Container Bot - 2:2.128.0-1 - autobuilt v2.128.0 From 9d304dbc7aceb41bf30ef9b9871382c07aa20c32 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Mon, 30 Mar 2020 16:45:59 -0400 Subject: [PATCH 13/61] Fix commmit version --- .gitignore | 1 + container-selinux.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 63d4f4f..e2c1c87 100644 --- a/.gitignore +++ b/.gitignore @@ -119,3 +119,4 @@ /v2.125.1.tar.gz /v2.125.2.tar.gz /container-selinux-867a377.tar.gz +/container-selinux-f00d1f4.tar.gz diff --git a/container-selinux.spec b/container-selinux.spec index bfa1b20..83132fa 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -2,7 +2,7 @@ # container-selinux %global git0 https://github.com/containers/container-selinux -%global commit0 867a37749b7b8b7e341dd1fc6be2536bd01f7349 +%global commit0 f00d1f4ec867be2aeb51b3b32c12a5a9a8015201 %global shortcommit0 %(c=%{commit0}; echo ${c:0:7}) # container-selinux stuff (prefix with ds_ for version/release etc.) @@ -25,7 +25,7 @@ Name: container-selinux Epoch: 2 %endif Version: 2.129.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 URL: %{git0} Summary: SELinux policies for container runtimes @@ -107,6 +107,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Mon Mar 30 2020 Dan Walsh - 2:2.126.0-2 +- Fix commmit version + * Sun Mar 29 2020 RH Container Bot - 2:2.129.0-1 - autobuilt v2.129.0 diff --git a/sources b/sources index 65bb07f..fa03e5c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (container-selinux-867a377.tar.gz) = 8bcf14b5200a0974741de1ed750c71f311f8943277ffeafbfe4aac00d1957f94242d47400ac5cff21d135d14fcad6c4a66d1c23979eb7a6f50296a204bae2f25 +SHA512 (container-selinux-f00d1f4.tar.gz) = ea07bb742f7805a06e3a825e9e0816e256963bd37486041ffb6d05af6c13aebbf44aa3e493e7952a8d37d4562ccd1fd0095dfe3fb8c3adb1685fce9df040e39c From 5abce9a32757c2c9b0855ab6f1df9871f33058a8 Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Mon, 30 Mar 2020 21:08:00 +0000 Subject: [PATCH 14/61] container-selinux-2:2.129.0-1 Signed-off-by: RH Container Bot --- container-selinux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index 83132fa..abccab2 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -25,7 +25,7 @@ Name: container-selinux Epoch: 2 %endif Version: 2.129.0 -Release: 2%{?dist} +Release: 1%{?dist} License: GPLv2 URL: %{git0} Summary: SELinux policies for container runtimes @@ -107,6 +107,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Mon Mar 30 2020 RH Container Bot - 2:2.129.0-1 +- autobuilt v2.129.0 + * Mon Mar 30 2020 Dan Walsh - 2:2.126.0-2 - Fix commmit version From 967f506b365639de2c179cbd9420b58de7a99e34 Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Mon, 6 Apr 2020 19:08:07 +0000 Subject: [PATCH 15/61] container-selinux-2:2.130.0-1 Signed-off-by: RH Container Bot --- container-selinux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index abccab2..7d56ef3 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -24,7 +24,7 @@ Name: container-selinux %if 0%{?fedora} Epoch: 2 %endif -Version: 2.129.0 +Version: 2.130.0 Release: 1%{?dist} License: GPLv2 URL: %{git0} @@ -107,6 +107,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Mon Apr 06 2020 RH Container Bot - 2:2.130.0-1 +- autobuilt v2.130.0 + * Mon Mar 30 2020 RH Container Bot - 2:2.129.0-1 - autobuilt v2.129.0 From 0a1a87a8f72c0e25cf7810e8f839b50c43e04ce7 Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Thu, 9 Apr 2020 20:08:02 +0000 Subject: [PATCH 16/61] container-selinux-2:2.131.0-1 Signed-off-by: RH Container Bot --- container-selinux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index 7d56ef3..0f7b4e0 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -24,7 +24,7 @@ Name: container-selinux %if 0%{?fedora} Epoch: 2 %endif -Version: 2.130.0 +Version: 2.131.0 Release: 1%{?dist} License: GPLv2 URL: %{git0} @@ -107,6 +107,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Thu Apr 09 2020 RH Container Bot - 2:2.131.0-1 +- autobuilt v2.131.0 + * Mon Apr 06 2020 RH Container Bot - 2:2.130.0-1 - autobuilt v2.130.0 From 00c7ead6aa84a860566402bc6717c75c5843447c Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Wed, 15 Apr 2020 14:08:00 +0000 Subject: [PATCH 17/61] container-selinux-2:2.132.0-1 Signed-off-by: RH Container Bot --- container-selinux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index 0f7b4e0..6d62703 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -24,7 +24,7 @@ Name: container-selinux %if 0%{?fedora} Epoch: 2 %endif -Version: 2.131.0 +Version: 2.132.0 Release: 1%{?dist} License: GPLv2 URL: %{git0} @@ -107,6 +107,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Wed Apr 15 2020 RH Container Bot - 2:2.132.0-1 +- autobuilt v2.132.0 + * Thu Apr 09 2020 RH Container Bot - 2:2.131.0-1 - autobuilt v2.131.0 From f6a6f77f6efa39d3fd402b65b90ba7637855b2e8 Mon Sep 17 00:00:00 2001 From: Lokesh Mandvekar Date: Thu, 16 Apr 2020 15:05:14 -0400 Subject: [PATCH 18/61] epoch for fedora only Signed-off-by: Lokesh Mandvekar --- container-selinux.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/container-selinux.spec b/container-selinux.spec index 6d62703..562bae2 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -44,7 +44,9 @@ Requires(post): libselinux-utils Requires(post): sed Obsoletes: %{name} <= 2:1.12.5-13 Obsoletes: docker-selinux <= 2:1.12.4-28 +%if 0%{?fedora} Provides: docker-selinux = %{epoch}:%{version}-%{release} +%endif %description SELinux policy modules for use with container runtimes. From cdee6ac64ab2ec6f8baf7551f37a13e4d82ef18d Mon Sep 17 00:00:00 2001 From: Lokesh Mandvekar Date: Thu, 16 Apr 2020 15:19:15 -0400 Subject: [PATCH 19/61] older selinux-policy for centos8 Signed-off-by: Lokesh Mandvekar --- container-selinux.spec | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/container-selinux.spec b/container-selinux.spec index 562bae2..454e996 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -17,7 +17,11 @@ %global _format() export %1=""; for x in %{modulenames}; do %1+=%2; %1+=" "; done; # Version of SELinux we were using +%if 0%{fedora} %define selinux_policyver 3.14.4-43 +%else +%define selinux_policyver 3.14.3-20 +%endif # Hooked up to autobuilder, please check with @lsm5 before updating Name: container-selinux From e1caac3959a91bec2be7f5ddd8eb20b395256567 Mon Sep 17 00:00:00 2001 From: Lokesh Mandvekar Date: Thu, 16 Apr 2020 15:24:44 -0400 Subject: [PATCH 20/61] correct distro conditional Signed-off-by: Lokesh Mandvekar --- container-selinux.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index 454e996..09341c7 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -17,7 +17,7 @@ %global _format() export %1=""; for x in %{modulenames}; do %1+=%2; %1+=" "; done; # Version of SELinux we were using -%if 0%{fedora} +%if 0%{?fedora} %define selinux_policyver 3.14.4-43 %else %define selinux_policyver 3.14.3-20 From 99ada79a1c0c15d754fc50e18d94014f5e7ec7a9 Mon Sep 17 00:00:00 2001 From: Lokesh Mandvekar Date: Thu, 16 Apr 2020 17:36:36 -0400 Subject: [PATCH 21/61] container-selinux-2:2.132.0-2 - epoch for centos as well Signed-off-by: Lokesh Mandvekar --- container-selinux.spec | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/container-selinux.spec b/container-selinux.spec index 09341c7..4e2835c 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -25,11 +25,9 @@ # Hooked up to autobuilder, please check with @lsm5 before updating Name: container-selinux -%if 0%{?fedora} Epoch: 2 -%endif Version: 2.132.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 URL: %{git0} Summary: SELinux policies for container runtimes @@ -48,9 +46,7 @@ Requires(post): libselinux-utils Requires(post): sed Obsoletes: %{name} <= 2:1.12.5-13 Obsoletes: docker-selinux <= 2:1.12.4-28 -%if 0%{?fedora} Provides: docker-selinux = %{epoch}:%{version}-%{release} -%endif %description SELinux policy modules for use with container runtimes. @@ -113,6 +109,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Thu Apr 16 2020 Lokesh Mandvekar - 2:2.132.0-2 +- epoch for centos as well + * Wed Apr 15 2020 RH Container Bot - 2:2.132.0-1 - autobuilt v2.132.0 From d2e92e71943a4e4c29e28af7df60ff6184ddac8d Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Mon, 20 Apr 2020 14:22:12 +0000 Subject: [PATCH 22/61] container-selinux-2:2.132.0-1 Signed-off-by: RH Container Bot --- container-selinux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index 4e2835c..7dde283 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -27,7 +27,7 @@ Name: container-selinux Epoch: 2 Version: 2.132.0 -Release: 2%{?dist} +Release: 1%{?dist} License: GPLv2 URL: %{git0} Summary: SELinux policies for container runtimes @@ -109,6 +109,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Mon Apr 20 2020 RH Container Bot - 2:2.132.0-1 +- autobuilt v2.132.0 + * Thu Apr 16 2020 Lokesh Mandvekar - 2:2.132.0-2 - epoch for centos as well From ccfada8139100d391caefe980c0c636bc2fbafad Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Tue, 2 Jun 2020 14:09:59 +0000 Subject: [PATCH 23/61] container-selinux-2:2.135.0-1 Signed-off-by: RH Container Bot --- container-selinux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index 7dde283..615cfc4 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -26,7 +26,7 @@ # Hooked up to autobuilder, please check with @lsm5 before updating Name: container-selinux Epoch: 2 -Version: 2.132.0 +Version: 2.135.0 Release: 1%{?dist} License: GPLv2 URL: %{git0} @@ -109,6 +109,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Tue Jun 02 2020 RH Container Bot - 2:2.135.0-1 +- autobuilt v2.135.0 + * Mon Apr 20 2020 RH Container Bot - 2:2.132.0-1 - autobuilt v2.132.0 From 6b2deed115533b466d654a1c203d0a0932ddb64f Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Thu, 11 Jun 2020 20:09:20 +0000 Subject: [PATCH 24/61] container-selinux-2:2.137.0-1 Signed-off-by: RH Container Bot --- container-selinux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index 615cfc4..5e802d7 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -26,7 +26,7 @@ # Hooked up to autobuilder, please check with @lsm5 before updating Name: container-selinux Epoch: 2 -Version: 2.135.0 +Version: 2.137.0 Release: 1%{?dist} License: GPLv2 URL: %{git0} @@ -109,6 +109,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Thu Jun 11 2020 RH Container Bot - 2:2.137.0-1 +- autobuilt v2.137.0 + * Tue Jun 02 2020 RH Container Bot - 2:2.135.0-1 - autobuilt v2.135.0 From 5b5551610fdcaf430071d943ff35b5195667dfea Mon Sep 17 00:00:00 2001 From: Lokesh Mandvekar Date: Fri, 26 Jun 2020 08:50:27 -0400 Subject: [PATCH 25/61] container-selinux-2:2.137.0-2 - bump release to get past gating tests Signed-off-by: Lokesh Mandvekar --- container-selinux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index 5e802d7..a4ee6cf 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -27,7 +27,7 @@ Name: container-selinux Epoch: 2 Version: 2.137.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 URL: %{git0} Summary: SELinux policies for container runtimes @@ -109,6 +109,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Fri Jun 26 2020 Lokesh Mandvekar - 2:2.137.0-2 +- bump release to get past gating tests + * Thu Jun 11 2020 RH Container Bot - 2:2.137.0-1 - autobuilt v2.137.0 From 67b99babd567d3d7da870a14f3809cea91bdd868 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Mon, 29 Jun 2020 10:57:27 -0400 Subject: [PATCH 26/61] Fix commmit version --- container-selinux.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/container-selinux.spec b/container-selinux.spec index a4ee6cf..14a0549 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -2,7 +2,7 @@ # container-selinux %global git0 https://github.com/containers/container-selinux -%global commit0 f00d1f4ec867be2aeb51b3b32c12a5a9a8015201 +%global commit0 6b721daa0b9ff46a444e174995e5ac6600604db5 %global shortcommit0 %(c=%{commit0}; echo ${c:0:7}) # container-selinux stuff (prefix with ds_ for version/release etc.) @@ -27,7 +27,7 @@ Name: container-selinux Epoch: 2 Version: 2.137.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 URL: %{git0} Summary: SELinux policies for container runtimes @@ -109,6 +109,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Mon Jun 29 2020 Dan Walsh - 2:2.137.0-3 +- Fix commmit version + * Fri Jun 26 2020 Lokesh Mandvekar - 2:2.137.0-2 - bump release to get past gating tests From 5c365c374049776bbd1ce13d7e4d081d1de9ff0b Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Mon, 29 Jun 2020 11:03:30 -0400 Subject: [PATCH 27/61] Fix commmit version --- sources | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources b/sources index fa03e5c..f2d1356 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (container-selinux-f00d1f4.tar.gz) = ea07bb742f7805a06e3a825e9e0816e256963bd37486041ffb6d05af6c13aebbf44aa3e493e7952a8d37d4562ccd1fd0095dfe3fb8c3adb1685fce9df040e39c +SHA512 (container-selinux-6b721da.tar.gz) = c3e8b3253d8913ea63faf4942bb86dd84650764dd985cac27149718ab2167eddd2fa0380dc5fe67297ce5d7387c4d4296f5bb027835bd40535e6abdd51910f0b From 92c11c9ed23195f65b08edc1942a2ac1135c1c4c Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Mon, 29 Jun 2020 11:08:05 -0400 Subject: [PATCH 28/61] Fix commmit version --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index e2c1c87..5a67afa 100644 --- a/.gitignore +++ b/.gitignore @@ -120,3 +120,4 @@ /v2.125.2.tar.gz /container-selinux-867a377.tar.gz /container-selinux-f00d1f4.tar.gz +/container-selinux-6b721da.tar.gz From 543cf6752fa15d354b60e0f7ec6a0557ed968599 Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Tue, 7 Jul 2020 18:43:37 +0000 Subject: [PATCH 29/61] container-selinux-2:2.137.0-1 Signed-off-by: RH Container Bot --- container-selinux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index 14a0549..d2b91ae 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -27,7 +27,7 @@ Name: container-selinux Epoch: 2 Version: 2.137.0 -Release: 3%{?dist} +Release: 1%{?dist} License: GPLv2 URL: %{git0} Summary: SELinux policies for container runtimes @@ -109,6 +109,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Tue Jul 07 2020 RH Container Bot - 2:2.137.0-1 +- autobuilt v2.137.0 + * Mon Jun 29 2020 Dan Walsh - 2:2.137.0-3 - Fix commmit version From 057ff560580528d8d7ff057014a162a6c5a84e91 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Fri, 10 Jul 2020 06:50:11 -0400 Subject: [PATCH 30/61] bump to 2.138.0 --- container-selinux.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/container-selinux.spec b/container-selinux.spec index d2b91ae..9d0c10b 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -2,7 +2,7 @@ # container-selinux %global git0 https://github.com/containers/container-selinux -%global commit0 6b721daa0b9ff46a444e174995e5ac6600604db5 +%global commit0 988431700370bf7f554ab6507c836a9aa19e47ff %global shortcommit0 %(c=%{commit0}; echo ${c:0:7}) # container-selinux stuff (prefix with ds_ for version/release etc.) @@ -26,7 +26,7 @@ # Hooked up to autobuilder, please check with @lsm5 before updating Name: container-selinux Epoch: 2 -Version: 2.137.0 +Version: 2.138.0 Release: 1%{?dist} License: GPLv2 URL: %{git0} @@ -109,6 +109,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Fri Jul 10 2020 Dan Walsh - 2:2.138.0-1 +- bump to 2.138.0 + * Tue Jul 07 2020 RH Container Bot - 2:2.137.0-1 - autobuilt v2.137.0 diff --git a/sources b/sources index f2d1356..3e47204 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (container-selinux-6b721da.tar.gz) = c3e8b3253d8913ea63faf4942bb86dd84650764dd985cac27149718ab2167eddd2fa0380dc5fe67297ce5d7387c4d4296f5bb027835bd40535e6abdd51910f0b +SHA512 (container-selinux-9884317.tar.gz) = 3dfceccac24d6fc05f64f9efa9246d780fd4149ceae080832a4c538a5b434d364f489669e8cf9af161d1bb595eb7eddfa872a87eb5a5ef78a55b188f607cd880 From ad3a3be4675f46ef02254d4b7ce3e46dfe489731 Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Mon, 13 Jul 2020 15:09:54 +0000 Subject: [PATCH 31/61] container-selinux-2:2.138.0-1 Signed-off-by: RH Container Bot --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 5a67afa..161f1c0 100644 --- a/.gitignore +++ b/.gitignore @@ -121,3 +121,4 @@ /container-selinux-867a377.tar.gz /container-selinux-f00d1f4.tar.gz /container-selinux-6b721da.tar.gz +/container-selinux-9884317.tar.gz From 2315cfef17f35509e4b4299ffb85706cd1becda0 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Mon, 20 Jul 2020 09:42:44 -0400 Subject: [PATCH 32/61] bump to 2.139.0 --- container-selinux.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/container-selinux.spec b/container-selinux.spec index 9d0c10b..749dc6a 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -2,7 +2,7 @@ # container-selinux %global git0 https://github.com/containers/container-selinux -%global commit0 988431700370bf7f554ab6507c836a9aa19e47ff +%global commit0 8c26927bc43112dce4088a453a1c446c3a15c21f %global shortcommit0 %(c=%{commit0}; echo ${c:0:7}) # container-selinux stuff (prefix with ds_ for version/release etc.) @@ -26,7 +26,7 @@ # Hooked up to autobuilder, please check with @lsm5 before updating Name: container-selinux Epoch: 2 -Version: 2.138.0 +Version: 2.139.0 Release: 1%{?dist} License: GPLv2 URL: %{git0} @@ -109,6 +109,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Mon Jul 20 2020 Dan Walsh - 2:2.139.0-1 +- bump to 2.139.0 + * Fri Jul 10 2020 Dan Walsh - 2:2.138.0-1 - bump to 2.138.0 diff --git a/sources b/sources index 3e47204..9ed45b7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (container-selinux-9884317.tar.gz) = 3dfceccac24d6fc05f64f9efa9246d780fd4149ceae080832a4c538a5b434d364f489669e8cf9af161d1bb595eb7eddfa872a87eb5a5ef78a55b188f607cd880 +SHA512 (container-selinux-8c26927.tar.gz) = 002432bc7b786a35f43ab7bc91f4581beaac2cb617f78630684989ad1ceb25ca0b83ae04cfb7976477a6e88f7653561d23c6e4eb1d30e011eae0618b3cd32def From 408760e1adcf7ae39d6d349747ebe3cf13e00cee Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Thu, 23 Jul 2020 17:49:14 +0000 Subject: [PATCH 33/61] container-selinux-2:2.139.0-1 Signed-off-by: RH Container Bot --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 161f1c0..9f758f2 100644 --- a/.gitignore +++ b/.gitignore @@ -122,3 +122,4 @@ /container-selinux-f00d1f4.tar.gz /container-selinux-6b721da.tar.gz /container-selinux-9884317.tar.gz +/container-selinux-8c26927.tar.gz From 97153388712fa5c3a078a98a25a31ea5b6090daf Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Thu, 23 Jul 2020 19:10:08 +0000 Subject: [PATCH 34/61] container-selinux-2:2.140.0-1 Signed-off-by: RH Container Bot --- container-selinux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index 749dc6a..23886c7 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -26,7 +26,7 @@ # Hooked up to autobuilder, please check with @lsm5 before updating Name: container-selinux Epoch: 2 -Version: 2.139.0 +Version: 2.140.0 Release: 1%{?dist} License: GPLv2 URL: %{git0} @@ -109,6 +109,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Thu Jul 23 19:09:57 GMT 2020 RH Container Bot - 2:2.140.0-1 +- autobuilt v2.140.0 + * Mon Jul 20 2020 Dan Walsh - 2:2.139.0-1 - bump to 2.139.0 From 217b67f019ec4022c02dc4ec228310eaa33838ee Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Fri, 24 Jul 2020 10:10:03 +0000 Subject: [PATCH 35/61] container-selinux-2:2.141.0-1 Signed-off-by: RH Container Bot --- container-selinux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index 23886c7..b6e69ae 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -26,7 +26,7 @@ # Hooked up to autobuilder, please check with @lsm5 before updating Name: container-selinux Epoch: 2 -Version: 2.140.0 +Version: 2.141.0 Release: 1%{?dist} License: GPLv2 URL: %{git0} @@ -109,6 +109,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Fri Jul 24 10:09:53 GMT 2020 RH Container Bot - 2:2.141.0-1 +- autobuilt v2.141.0 + * Thu Jul 23 19:09:57 GMT 2020 RH Container Bot - 2:2.140.0-1 - autobuilt v2.140.0 From ea2f64653ffa5906b424da472a1db08ea0daf967 Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Fri, 24 Jul 2020 11:10:05 +0000 Subject: [PATCH 36/61] container-selinux-2:2.142.0-1 Signed-off-by: RH Container Bot --- container-selinux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index b6e69ae..217c1de 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -26,7 +26,7 @@ # Hooked up to autobuilder, please check with @lsm5 before updating Name: container-selinux Epoch: 2 -Version: 2.141.0 +Version: 2.142.0 Release: 1%{?dist} License: GPLv2 URL: %{git0} @@ -109,6 +109,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Fri Jul 24 11:09:54 GMT 2020 RH Container Bot - 2:2.142.0-1 +- autobuilt v2.142.0 + * Fri Jul 24 10:09:53 GMT 2020 RH Container Bot - 2:2.141.0-1 - autobuilt v2.141.0 From b0cad0209de9262d7139df138eeb42495e92eb24 Mon Sep 17 00:00:00 2001 From: Aleksandra Fedorova Date: Thu, 21 May 2020 10:44:27 +0200 Subject: [PATCH 37/61] Update gating test name Messaging scheme has changed and old centos-related test names are now deprecated. See https://pagure.io/fedora-ci/general/issue/110 --- gating.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gating.yaml b/gating.yaml index 92d738a..c2182c7 100644 --- a/gating.yaml +++ b/gating.yaml @@ -3,4 +3,4 @@ product_versions: - fedora-* decision_context: bodhi_update_push_stable rules: - - !PassingTestCaseRule {test_case_name: org.centos.prod.ci.pipeline.allpackages-build.complete} + - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional} From 0e7556f827f085e511a5709469cf5352bf39fc47 Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Wed, 5 Aug 2020 22:10:44 +0000 Subject: [PATCH 38/61] container-selinux-2:2.143.0-1 Signed-off-by: RH Container Bot --- container-selinux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index 217c1de..7d3621c 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -26,7 +26,7 @@ # Hooked up to autobuilder, please check with @lsm5 before updating Name: container-selinux Epoch: 2 -Version: 2.142.0 +Version: 2.143.0 Release: 1%{?dist} License: GPLv2 URL: %{git0} @@ -109,6 +109,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Wed Aug 05 22:10:37 GMT 2020 RH Container Bot - 2:2.143.0-1 +- autobuilt v2.143.0 + * Fri Jul 24 11:09:54 GMT 2020 RH Container Bot - 2:2.142.0-1 - autobuilt v2.142.0 From af17dfdf6c6f85c681d0a3a6fe6a3522bbcccc64 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Sat, 8 Aug 2020 07:40:26 -0400 Subject: [PATCH 39/61] Fix commit --- container-selinux.spec | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/container-selinux.spec b/container-selinux.spec index 7d3621c..df6cc0d 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -2,7 +2,7 @@ # container-selinux %global git0 https://github.com/containers/container-selinux -%global commit0 8c26927bc43112dce4088a453a1c446c3a15c21f +%global commit0 e2d5a9eadb72a9aa90c4f5ba793011865620f367 %global shortcommit0 %(c=%{commit0}; echo ${c:0:7}) # container-selinux stuff (prefix with ds_ for version/release etc.) @@ -17,17 +17,13 @@ %global _format() export %1=""; for x in %{modulenames}; do %1+=%2; %1+=" "; done; # Version of SELinux we were using -%if 0%{?fedora} %define selinux_policyver 3.14.4-43 -%else -%define selinux_policyver 3.14.3-20 -%endif # Hooked up to autobuilder, please check with @lsm5 before updating Name: container-selinux Epoch: 2 Version: 2.143.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 URL: %{git0} Summary: SELinux policies for container runtimes @@ -109,7 +105,10 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog -* Wed Aug 05 22:10:37 GMT 2020 RH Container Bot - 2:2.143.0-1 +* Sat Aug 8 2020 Dan Walsh - 2:2.143.0-2 +- Fix commit + +* Wed Aug 05 22:10:37 GMT 2020 RH Container Bot - 2:2.143.0-2 - autobuilt v2.143.0 * Fri Jul 24 11:09:54 GMT 2020 RH Container Bot - 2:2.142.0-1 From ad569b301d1ead6378bce7b7dfdd149f3402fa6e Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Sat, 8 Aug 2020 12:10:20 +0000 Subject: [PATCH 40/61] container-selinux-2:2.143.0-1 Signed-off-by: RH Container Bot --- .gitignore | 1 + container-selinux.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 9f758f2..9654362 100644 --- a/.gitignore +++ b/.gitignore @@ -123,3 +123,4 @@ /container-selinux-6b721da.tar.gz /container-selinux-9884317.tar.gz /container-selinux-8c26927.tar.gz +/container-selinux-e2d5a9e.tar.gz diff --git a/container-selinux.spec b/container-selinux.spec index df6cc0d..11a6c30 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -23,7 +23,7 @@ Name: container-selinux Epoch: 2 Version: 2.143.0 -Release: 2%{?dist} +Release: 1%{?dist} License: GPLv2 URL: %{git0} Summary: SELinux policies for container runtimes @@ -105,6 +105,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Sat Aug 08 12:10:12 GMT 2020 RH Container Bot - 2:2.143.0-1 +- autobuilt v2.143.0 + * Sat Aug 8 2020 Dan Walsh - 2:2.143.0-2 - Fix commit diff --git a/sources b/sources index 9ed45b7..4a623bf 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (container-selinux-8c26927.tar.gz) = 002432bc7b786a35f43ab7bc91f4581beaac2cb617f78630684989ad1ceb25ca0b83ae04cfb7976477a6e88f7653561d23c6e4eb1d30e011eae0618b3cd32def +SHA512 (container-selinux-e2d5a9e.tar.gz) = 397524b618159d498b5a64946a8f1acc0bf54a611723336aae61165322c6ee2963aec18f9c84de039755ea1ef1e0a51fbec9b49e5969043536fa382a7c9ea233 From 53920fc3433f436c6c333de56c7a8f8e8e9602fc Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Mon, 10 Aug 2020 09:50:22 -0400 Subject: [PATCH 41/61] Fix commit --- sources | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources b/sources index 9ed45b7..4a623bf 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (container-selinux-8c26927.tar.gz) = 002432bc7b786a35f43ab7bc91f4581beaac2cb617f78630684989ad1ceb25ca0b83ae04cfb7976477a6e88f7653561d23c6e4eb1d30e011eae0618b3cd32def +SHA512 (container-selinux-e2d5a9e.tar.gz) = 397524b618159d498b5a64946a8f1acc0bf54a611723336aae61165322c6ee2963aec18f9c84de039755ea1ef1e0a51fbec9b49e5969043536fa382a7c9ea233 From 3c2b9960653b205cb181bae7c055a729e04fc0df Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Mon, 10 Aug 2020 09:52:15 -0400 Subject: [PATCH 42/61] Fix commit --- container-selinux.spec | 3 +++ 1 file changed, 3 insertions(+) diff --git a/container-selinux.spec b/container-selinux.spec index 11a6c30..53e44ba 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -105,6 +105,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Sat Aug 8 2020 Dan Walsh - 2:2.143.0-2 +- Fix commit + * Sat Aug 08 12:10:12 GMT 2020 RH Container Bot - 2:2.143.0-1 - autobuilt v2.143.0 From d12491901b2f58d329a2fc0763e6556434e34240 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Mon, 10 Aug 2020 09:53:19 -0400 Subject: [PATCH 43/61] Fix commit --- container-selinux.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index 53e44ba..2fb58e2 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -23,7 +23,7 @@ Name: container-selinux Epoch: 2 Version: 2.143.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 URL: %{git0} Summary: SELinux policies for container runtimes From 63094351d5c830d740d1d450668db5daa39054fc Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Mon, 10 Aug 2020 14:10:52 +0000 Subject: [PATCH 44/61] container-selinux-2:2.143.0-1 Signed-off-by: RH Container Bot --- container-selinux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index 2fb58e2..db4388d 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -23,7 +23,7 @@ Name: container-selinux Epoch: 2 Version: 2.143.0 -Release: 2%{?dist} +Release: 1%{?dist} License: GPLv2 URL: %{git0} Summary: SELinux policies for container runtimes @@ -105,6 +105,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Mon Aug 10 14:10:42 GMT 2020 RH Container Bot - 2:2.143.0-1 +- autobuilt v2.143.0 + * Sat Aug 8 2020 Dan Walsh - 2:2.143.0-2 - Fix commit From 6c6c22b183f1e5f6cd5ace3d5b75b3d4bc44fc80 Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Wed, 12 Aug 2020 15:10:48 +0000 Subject: [PATCH 45/61] container-selinux-2:2.144.0-1 Signed-off-by: RH Container Bot --- container-selinux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index db4388d..3d7ac48 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -22,7 +22,7 @@ # Hooked up to autobuilder, please check with @lsm5 before updating Name: container-selinux Epoch: 2 -Version: 2.143.0 +Version: 2.144.0 Release: 1%{?dist} License: GPLv2 URL: %{git0} @@ -105,6 +105,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Wed Aug 12 15:10:41 GMT 2020 RH Container Bot - 2:2.144.0-1 +- autobuilt v2.144.0 + * Mon Aug 10 14:10:42 GMT 2020 RH Container Bot - 2:2.143.0-1 - autobuilt v2.143.0 From c268d96e1f945ef40b870bd450030e77125b3886 Mon Sep 17 00:00:00 2001 From: Lokesh Mandvekar Date: Fri, 28 Aug 2020 11:55:50 -0400 Subject: [PATCH 46/61] container-selinux-2:2.144.0-2 - Resolves: #1780129 - bump min selinux-policy Signed-off-by: Lokesh Mandvekar --- container-selinux.spec | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/container-selinux.spec b/container-selinux.spec index 3d7ac48..f3f1fd6 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -17,13 +17,13 @@ %global _format() export %1=""; for x in %{modulenames}; do %1+=%2; %1+=" "; done; # Version of SELinux we were using -%define selinux_policyver 3.14.4-43 +%define selinux_policyver 3.14.5-18 # Hooked up to autobuilder, please check with @lsm5 before updating Name: container-selinux Epoch: 2 Version: 2.144.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 URL: %{git0} Summary: SELinux policies for container runtimes @@ -105,31 +105,34 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog -* Wed Aug 12 15:10:41 GMT 2020 RH Container Bot - 2:2.144.0-1 +* Fri Aug 28 2020 Lokesh Mandvekar - 2:2.144.0-2 +- Resolves: #1780129 - bump min selinux-policy + +* Wed Aug 12 2020 RH Container Bot - 2:2.144.0-1 - autobuilt v2.144.0 -* Mon Aug 10 14:10:42 GMT 2020 RH Container Bot - 2:2.143.0-1 +* Mon Aug 10 2020 RH Container Bot - 2:2.143.0-1 - autobuilt v2.143.0 * Sat Aug 8 2020 Dan Walsh - 2:2.143.0-2 - Fix commit -* Sat Aug 08 12:10:12 GMT 2020 RH Container Bot - 2:2.143.0-1 +* Sat Aug 08 2020 RH Container Bot - 2:2.143.0-1 - autobuilt v2.143.0 * Sat Aug 8 2020 Dan Walsh - 2:2.143.0-2 - Fix commit -* Wed Aug 05 22:10:37 GMT 2020 RH Container Bot - 2:2.143.0-2 +* Wed Aug 05 2020 RH Container Bot - 2:2.143.0-2 - autobuilt v2.143.0 -* Fri Jul 24 11:09:54 GMT 2020 RH Container Bot - 2:2.142.0-1 +* Fri Jul 24 2020 RH Container Bot - 2:2.142.0-1 - autobuilt v2.142.0 -* Fri Jul 24 10:09:53 GMT 2020 RH Container Bot - 2:2.141.0-1 +* Fri Jul 24 2020 RH Container Bot - 2:2.141.0-1 - autobuilt v2.141.0 -* Thu Jul 23 19:09:57 GMT 2020 RH Container Bot - 2:2.140.0-1 +* Thu Jul 23 2020 RH Container Bot - 2:2.140.0-1 - autobuilt v2.140.0 * Mon Jul 20 2020 Dan Walsh - 2:2.139.0-1 From 73908e2eb9ee79a1e611e80a6bcd7201f0f1eb29 Mon Sep 17 00:00:00 2001 From: Lokesh Mandvekar Date: Mon, 31 Aug 2020 10:21:02 -0400 Subject: [PATCH 47/61] container-selinux-2:2.144.0-3 - Resolves: #1797554 - use _selinux_policy_version macro Signed-off-by: Lokesh Mandvekar --- container-selinux.spec | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/container-selinux.spec b/container-selinux.spec index f3f1fd6..c13914a 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -16,14 +16,11 @@ # Format must contain '$x' somewhere to do anything useful %global _format() export %1=""; for x in %{modulenames}; do %1+=%2; %1+=" "; done; -# Version of SELinux we were using -%define selinux_policyver 3.14.5-18 - # Hooked up to autobuilder, please check with @lsm5 before updating Name: container-selinux Epoch: 2 Version: 2.144.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2 URL: %{git0} Summary: SELinux policies for container runtimes @@ -31,12 +28,12 @@ Source0: %{git0}/archive/%{commit0}/%{name}-%{shortcommit0}.tar.gz BuildArch: noarch BuildRequires: git BuildRequires: pkgconfig(systemd) -BuildRequires: selinux-policy >= %{selinux_policyver} -BuildRequires: selinux-policy-devel >= %{selinux_policyver} +BuildRequires: selinux-policy >= %_selinux_policy_version +BuildRequires: selinux-policy-devel >= %_selinux_policy_version # RE: rhbz#1195804 - ensure min NVR for selinux-policy -Requires: selinux-policy >= %{selinux_policyver} -Requires(post): selinux-policy-base >= %{selinux_policyver} -Requires(post): selinux-policy-targeted >= %{selinux_policyver} +Requires: selinux-policy >= %_selinux_policy_version +Requires(post): selinux-policy-base >= %_selinux_policy_version +Requires(post): selinux-policy-targeted >= %_selinux_policy_version Requires(post): policycoreutils Requires(post): libselinux-utils Requires(post): sed @@ -63,9 +60,6 @@ install -m 0644 $MODULES %{buildroot}%{_datadir}/selinux/packages install -d %{buildroot}/%{_datadir}/containers/selinux install -m 644 container_contexts %{buildroot}/%{_datadir}/containers/selinux/contexts -# remove spec file -rm -rf container-selinux.spec - %check %pre @@ -105,6 +99,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Mon Aug 31 2020 Lokesh Mandvekar - 2:2.144.0-3 +- Resolves: #1797554 - use _selinux_policy_version macro + * Fri Aug 28 2020 Lokesh Mandvekar - 2:2.144.0-2 - Resolves: #1780129 - bump min selinux-policy From 05d7d200c4ed4ba4da2dcc9f02c816ef729cebec Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Wed, 2 Sep 2020 13:47:26 +0000 Subject: [PATCH 48/61] container-selinux-2:2.144.0-1 Signed-off-by: RH Container Bot --- container-selinux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index c13914a..1b7b842 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -20,7 +20,7 @@ Name: container-selinux Epoch: 2 Version: 2.144.0 -Release: 3%{?dist} +Release: 1%{?dist} License: GPLv2 URL: %{git0} Summary: SELinux policies for container runtimes @@ -99,6 +99,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Wed Sep 2 2020 RH Container Bot - 2:2.144.0-1 +- autobuilt v2.144.0 + * Mon Aug 31 2020 Lokesh Mandvekar - 2:2.144.0-3 - Resolves: #1797554 - use _selinux_policy_version macro From 856c8ca8afa856dc130cd5242a860f391727053f Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Thu, 10 Sep 2020 18:12:35 +0000 Subject: [PATCH 49/61] container-selinux-2:2.145.0-1 autobuilt v2.145.0 Signed-off-by: RH Container Bot --- container-selinux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index 1b7b842..e48972e 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -19,7 +19,7 @@ # Hooked up to autobuilder, please check with @lsm5 before updating Name: container-selinux Epoch: 2 -Version: 2.144.0 +Version: 2.145.0 Release: 1%{?dist} License: GPLv2 URL: %{git0} @@ -99,6 +99,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Thu Sep 10 2020 RH Container Bot - 2:2.145.0-1 +- autobuilt v2.145.0 + * Wed Sep 2 2020 RH Container Bot - 2:2.144.0-1 - autobuilt v2.144.0 From c6d1d382349964dd5d4e8353ffb8595b6319b210 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Wed, 14 Oct 2020 14:14:30 -0400 Subject: [PATCH 50/61] autobuilt v2.145.0 --- .gitignore | 19 +++++- container-selinux.spec | 140 ++++++++++++++++++++++------------------- sources | 2 +- 3 files changed, 92 insertions(+), 69 deletions(-) diff --git a/.gitignore b/.gitignore index 9654362..08c2dc7 100644 --- a/.gitignore +++ b/.gitignore @@ -115,12 +115,25 @@ /container-selinux-0b25a4a.tar.gz /container-selinux-f958d0c.tar.gz /container-selinux-5624558.tar.gz -/v2.125.0.tar.gz -/v2.125.1.tar.gz -/v2.125.2.tar.gz +/container-selinux-b321ea4.tar.gz +/container-selinux-fde876b.tar.gz +/container-selinux-ae0720d.tar.gz /container-selinux-867a377.tar.gz +/container-selinux-6caf15d.tar.gz +/container-selinux-363646f.tar.gz /container-selinux-f00d1f4.tar.gz +/container-selinux-fd55ae0.tar.gz +/container-selinux-9ce0dac.tar.gz +/container-selinux-448dfbf.tar.gz +/container-selinux-0a878bd.tar.gz +/container-selinux-ff26015.tar.gz +/container-selinux-0d99e89.tar.gz +/container-selinux-441172a.tar.gz /container-selinux-6b721da.tar.gz /container-selinux-9884317.tar.gz /container-selinux-8c26927.tar.gz +/container-selinux-965c7fb.tar.gz +/container-selinux-2750e78.tar.gz +/container-selinux-fe6a25c.tar.gz /container-selinux-e2d5a9e.tar.gz +/container-selinux-3c361a2.tar.gz diff --git a/container-selinux.spec b/container-selinux.spec index e48972e..fdb8c65 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -2,7 +2,7 @@ # container-selinux %global git0 https://github.com/containers/container-selinux -%global commit0 e2d5a9eadb72a9aa90c4f5ba793011865620f367 +%global commit0 3c361a2787b4f3739409a86e1cf8b6efe13f7d39 %global shortcommit0 %(c=%{commit0}; echo ${c:0:7}) # container-selinux stuff (prefix with ds_ for version/release etc.) @@ -18,8 +18,10 @@ # Hooked up to autobuilder, please check with @lsm5 before updating Name: container-selinux +%if 0%{?fedora} Epoch: 2 -Version: 2.145.0 +%endif +Version: 2.148.0 Release: 1%{?dist} License: GPLv2 URL: %{git0} @@ -39,7 +41,7 @@ Requires(post): libselinux-utils Requires(post): sed Obsoletes: %{name} <= 2:1.12.5-13 Obsoletes: docker-selinux <= 2:1.12.4-28 -Provides: docker-selinux = %{epoch}:%{version}-%{release} +Provides: docker-selinux = %{?epoch:%{epoch}:}%{version}-%{release} %description SELinux policy modules for use with container runtimes. @@ -93,9 +95,10 @@ fi %files %doc README.md %{_datadir}/selinux/* -%dir %{_datadir}/containers %dir %{_datadir}/containers/selinux %{_datadir}/containers/selinux/contexts +# Currently shipped in selinux-policy-doc +#%%{_datadir}/man/man8/container_selinux.8.gz # Hooked up to autobuilder, please check with @lsm5 before updating %changelog @@ -111,97 +114,104 @@ fi * Fri Aug 28 2020 Lokesh Mandvekar - 2:2.144.0-2 - Resolves: #1780129 - bump min selinux-policy -* Wed Aug 12 2020 RH Container Bot - 2:2.144.0-1 +* Mon Aug 17 13:15:31 GMT 2020 RH Container Bot - 2:2.144.0-1 - autobuilt v2.144.0 -* Mon Aug 10 2020 RH Container Bot - 2:2.143.0-1 -- autobuilt v2.143.0 +* Wed Aug 05 22:10:34 GMT 2020 RH Container Bot - 2:2.143.0-2.dev.gite2d5a9e +- bump to 2.143.0 +- autobuilt e2d5a9e -* Sat Aug 8 2020 Dan Walsh - 2:2.143.0-2 -- Fix commit +* Mon Jul 27 2020 Fedora Release Engineering - 2:2.142.0-3.dev.gitfe6a25c +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild -* Sat Aug 08 2020 RH Container Bot - 2:2.143.0-1 -- autobuilt v2.143.0 +* Fri Jul 24 11:09:45 GMT 2020 RH Container Bot - 2:2.142.0-2.dev.gitfe6a25c +- bump to 2.142.0 +- autobuilt fe6a25c -* Sat Aug 8 2020 Dan Walsh - 2:2.143.0-2 -- Fix commit +* Fri Jul 24 10:09:44 GMT 2020 RH Container Bot - 2:2.141.0-2.dev.git2750e78 +- bump to 2.141.0 +- autobuilt 2750e78 -* Wed Aug 05 2020 RH Container Bot - 2:2.143.0-2 -- autobuilt v2.143.0 +* Thu Jul 23 2020 Merlin Mathesius - 2:2.140.0-2.dev.git965c7fb +- Cleanup usage of %%{epoch} macro to allow building for ELN -* Fri Jul 24 2020 RH Container Bot - 2:2.142.0-1 -- autobuilt v2.142.0 +* Thu Jul 23 19:10:26 GMT 2020 RH Container Bot - 2:2.140.0-2.dev.git965c7fb +- bump to 2.140.0 +- autobuilt 965c7fb -* Fri Jul 24 2020 RH Container Bot - 2:2.141.0-1 -- autobuilt v2.141.0 - -* Thu Jul 23 2020 RH Container Bot - 2:2.140.0-1 -- autobuilt v2.140.0 - -* Mon Jul 20 2020 Dan Walsh - 2:2.139.0-1 +* Sat Jul 18 11:10:04 GMT 2020 RH Container Bot - 2:2.139.0-2.dev.git8c26927 - bump to 2.139.0 +- autobuilt 8c26927 -* Fri Jul 10 2020 Dan Walsh - 2:2.138.0-1 +* Thu Jul 09 2020 RH Container Bot - 2:2.138.0-2.dev.git9884317 - bump to 2.138.0 +- autobuilt 9884317 -* Tue Jul 07 2020 RH Container Bot - 2:2.137.0-1 -- autobuilt v2.137.0 +* Thu Jun 11 2020 RH Container Bot - 2:2.137.0-2.dev.git6b721da +- bump to 2.137.0 +- autobuilt 6b721da -* Mon Jun 29 2020 Dan Walsh - 2:2.137.0-3 -- Fix commmit version +* Thu Jun 11 2020 RH Container Bot - 2:2.136.0-2.dev.git441172a +- bump to 2.136.0 +- autobuilt 441172a -* Fri Jun 26 2020 Lokesh Mandvekar - 2:2.137.0-2 -- bump release to get past gating tests +* Fri May 29 2020 RH Container Bot - 2:2.135.0-2.dev.git0d99e89 +- bump to 2.135.0 +- autobuilt 0d99e89 -* Thu Jun 11 2020 RH Container Bot - 2:2.137.0-1 -- autobuilt v2.137.0 +* Thu May 28 2020 RH Container Bot - 2:2.134.0-2.dev.gitff26015 +- bump to 2.134.0 +- autobuilt ff26015 -* Tue Jun 02 2020 RH Container Bot - 2:2.135.0-1 -- autobuilt v2.135.0 +* Mon May 11 2020 RH Container Bot - 2:2.132.0-3.dev.git0a878bd +- autobuilt 0a878bd -* Mon Apr 20 2020 RH Container Bot - 2:2.132.0-1 -- autobuilt v2.132.0 +* Wed Apr 15 2020 RH Container Bot - 2:2.132.0-2.dev.git448dfbf +- bump to 2.132.0 +- autobuilt 448dfbf -* Thu Apr 16 2020 Lokesh Mandvekar - 2:2.132.0-2 -- epoch for centos as well +* Thu Apr 09 2020 RH Container Bot - 2:2.131.0-2.dev.git9ce0dac +- bump to 2.131.0 +- autobuilt 9ce0dac -* Wed Apr 15 2020 RH Container Bot - 2:2.132.0-1 -- autobuilt v2.132.0 +* Mon Apr 06 2020 RH Container Bot - 2:2.130.0-2.dev.gitfd55ae0 +- bump to 2.130.0 +- autobuilt fd55ae0 -* Thu Apr 09 2020 RH Container Bot - 2:2.131.0-1 -- autobuilt v2.131.0 +* Sun Mar 29 2020 RH Container Bot - 2:2.129.0-2.dev.gitf00d1f4 +- bump to 2.129.0 +- autobuilt f00d1f4 -* Mon Apr 06 2020 RH Container Bot - 2:2.130.0-1 -- autobuilt v2.130.0 +* Sun Mar 29 2020 RH Container Bot - 2:2.128.0-2.dev.git363646f +- bump to 2.128.0 +- autobuilt 363646f -* Mon Mar 30 2020 RH Container Bot - 2:2.129.0-1 -- autobuilt v2.129.0 +* Fri Mar 27 2020 RH Container Bot - 2:2.127.0-2.dev.git6caf15d +- bump to 2.127.0 +- autobuilt 6caf15d -* Mon Mar 30 2020 Dan Walsh - 2:2.126.0-2 -- Fix commmit version +* Thu Mar 26 2020 Dan Walsh - 2:2.126.0-2.dev.git867a377 +- Install selinux contexts file into /usr/share/containers/selinux/contexts -* Sun Mar 29 2020 RH Container Bot - 2:2.129.0-1 -- autobuilt v2.129.0 +* Thu Mar 26 2020 RH Container Bot - 2:2.126.0-2.dev.git867a377 +- bump to 2.126.0 +- autobuilt 867a377 -* Sun Mar 29 2020 RH Container Bot - 2:2.128.0-1 -- autobuilt v2.128.0 +* Mon Mar 23 2020 Lokesh Mandvekar - 2:2.125.2-2.dev.gitae0720d +- bump release tag -* Fri Mar 27 2020 RH Container Bot - 2:2.127.0-1 -- autobuilt v2.127.0 - -* Thu Mar 26 2020 Dan Walsh - 2:2.126.0-1 -- Add container_kvm_t for kata containers -- Add contaienr_init_t for systemd based containers +* Mon Mar 23 2020 Dan Walsh - 2:2.125.2-1.dev.gitae0720d - Install container_contexts file -* Mon Mar 23 2020 RH Container Bot - 2:2.125.2-1 -- autobuilt v2.125.2 +* Mon Mar 23 2020 RH Container Bot - 2:2.125.0-3.1.dev.gitfde876b +- autobuilt fde876b -* Mon Mar 23 2020 RH Container Bot - 2:2.125.1-1 -- autobuilt v2.125.1 +* Mon Mar 23 2020 Lokesh Mandvekar - 2:2.125.0-2.1.dev.gitb321ea4 +- bump release tag for smooth upgrade path -* Fri Mar 20 2020 RH Container Bot - 2:2.125.0-1 -- autobuilt v2.125.0 +* Fri Mar 20 2020 RH Container Bot - 2:2.125.0-0.1.dev.gitb321ea4 +- bump to 2.125.0 +- autobuilt b321ea4 * Tue Feb 11 2020 Lokesh Mandvekar - 2:2.124.0-4.dev.git5624558 - keep functional upgrade path from f31 diff --git a/sources b/sources index 4a623bf..f010911 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (container-selinux-e2d5a9e.tar.gz) = 397524b618159d498b5a64946a8f1acc0bf54a611723336aae61165322c6ee2963aec18f9c84de039755ea1ef1e0a51fbec9b49e5969043536fa382a7c9ea233 +SHA512 (container-selinux-3c361a2.tar.gz) = f635ba5367eaa97ae894bf759ce3dae913e5a032e9c990bc445465bc4d810fd65d0d346d3ef13ba6cc1fc31fb449989d34c5a482026b99da9e4ad85ea032c722 From 5b060311ca73d18c80bf702f93c56a6f27051511 Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Fri, 23 Oct 2020 13:02:26 +0000 Subject: [PATCH 51/61] container-selinux-2:2.150.0-1 autobuilt v2.150.0 Signed-off-by: RH Container Bot --- container-selinux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index fdb8c65..01924e1 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -21,7 +21,7 @@ Name: container-selinux %if 0%{?fedora} Epoch: 2 %endif -Version: 2.148.0 +Version: 2.150.0 Release: 1%{?dist} License: GPLv2 URL: %{git0} @@ -102,6 +102,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Fri Oct 23 2020 RH Container Bot - 2:2.150.0-1 +- autobuilt v2.150.0 + * Thu Sep 10 2020 RH Container Bot - 2:2.145.0-1 - autobuilt v2.145.0 From 67a5936a3a810c9c58f9a82ffce5edf26b8f5da1 Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Thu, 5 Nov 2020 18:27:45 +0000 Subject: [PATCH 52/61] container-selinux-2:2.151.0-1 autobuilt v2.151.0 Signed-off-by: RH Container Bot --- container-selinux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index 01924e1..10ade5b 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -21,7 +21,7 @@ Name: container-selinux %if 0%{?fedora} Epoch: 2 %endif -Version: 2.150.0 +Version: 2.151.0 Release: 1%{?dist} License: GPLv2 URL: %{git0} @@ -102,6 +102,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Thu Nov 5 2020 RH Container Bot - 2:2.151.0-1 +- autobuilt v2.151.0 + * Fri Oct 23 2020 RH Container Bot - 2:2.150.0-1 - autobuilt v2.150.0 From ad2e5c80e89515066e4fa03fde6e9d4d976e1b39 Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Tue, 22 Dec 2020 14:32:40 +0000 Subject: [PATCH 53/61] container-selinux-2:2.152.0-1 autobuilt v2.152.0 Signed-off-by: RH Container Bot --- container-selinux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index 10ade5b..d0f3c76 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -21,7 +21,7 @@ Name: container-selinux %if 0%{?fedora} Epoch: 2 %endif -Version: 2.151.0 +Version: 2.152.0 Release: 1%{?dist} License: GPLv2 URL: %{git0} @@ -102,6 +102,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Tue Dec 22 2020 RH Container Bot - 2:2.152.0-1 +- autobuilt v2.152.0 + * Thu Nov 5 2020 RH Container Bot - 2:2.151.0-1 - autobuilt v2.151.0 From 092199026aa9a03a21d66280b169ceb35970f64d Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Sat, 26 Dec 2020 12:32:52 +0000 Subject: [PATCH 54/61] container-selinux-2:2.153.0-1 autobuilt v2.153.0 Signed-off-by: RH Container Bot --- container-selinux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index d0f3c76..0600c22 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -21,7 +21,7 @@ Name: container-selinux %if 0%{?fedora} Epoch: 2 %endif -Version: 2.152.0 +Version: 2.153.0 Release: 1%{?dist} License: GPLv2 URL: %{git0} @@ -102,6 +102,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Sat Dec 26 2020 RH Container Bot - 2:2.153.0-1 +- autobuilt v2.153.0 + * Tue Dec 22 2020 RH Container Bot - 2:2.152.0-1 - autobuilt v2.152.0 From f34965b842177d9b2fede9c2958a5ab40fb3473f Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Wed, 30 Dec 2020 18:33:20 +0000 Subject: [PATCH 55/61] container-selinux-2:2.154.0-1 autobuilt v2.154.0 Signed-off-by: RH Container Bot --- container-selinux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index 0600c22..a31712f 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -21,7 +21,7 @@ Name: container-selinux %if 0%{?fedora} Epoch: 2 %endif -Version: 2.153.0 +Version: 2.154.0 Release: 1%{?dist} License: GPLv2 URL: %{git0} @@ -102,6 +102,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Wed Dec 30 2020 RH Container Bot - 2:2.154.0-1 +- autobuilt v2.154.0 + * Sat Dec 26 2020 RH Container Bot - 2:2.153.0-1 - autobuilt v2.153.0 From 6df2fd14e5acd4d2e801b3e11795729b4965d7cc Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Tue, 5 Jan 2021 14:33:20 +0000 Subject: [PATCH 56/61] container-selinux-2:2.155.0-1 autobuilt v2.155.0 Signed-off-by: RH Container Bot --- container-selinux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/container-selinux.spec b/container-selinux.spec index a31712f..be3edb6 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -21,7 +21,7 @@ Name: container-selinux %if 0%{?fedora} Epoch: 2 %endif -Version: 2.154.0 +Version: 2.155.0 Release: 1%{?dist} License: GPLv2 URL: %{git0} @@ -102,6 +102,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Tue Jan 5 2021 RH Container Bot - 2:2.155.0-1 +- autobuilt v2.155.0 + * Wed Dec 30 2020 RH Container Bot - 2:2.154.0-1 - autobuilt v2.154.0 From e768ba39b4fae3a231be023fd86178bd6eb0376b Mon Sep 17 00:00:00 2001 From: Lokesh Mandvekar Date: Mon, 11 Jan 2021 14:01:44 -0500 Subject: [PATCH 57/61] use built_tag macro to record latest tag Signed-off-by: Lokesh Mandvekar (cherry picked from commit e50e815a3fd4e020b2c1ed5eacdf126061f6a5ec) --- container-selinux.spec | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/container-selinux.spec b/container-selinux.spec index be3edb6..7d23845 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -5,6 +5,10 @@ %global commit0 3c361a2787b4f3739409a86e1cf8b6efe13f7d39 %global shortcommit0 %(c=%{commit0}; echo ${c:0:7}) +# Used for comparing with latest upstream tag +# to decide whether to autobuild (non-rawhide only) +%define built_tag v2.155.0 + # container-selinux stuff (prefix with ds_ for version/release etc.) # Some bits borrowed from the openstack-selinux package %global selinuxtype targeted From 3afe7be4f957670ef7fd52ac8f0eab0d887998fe Mon Sep 17 00:00:00 2001 From: Lokesh Mandvekar Date: Mon, 11 Jan 2021 14:18:21 -0500 Subject: [PATCH 58/61] use built_tag macro for tag comparison - use git-core instead of git (cherry picked from commit 634b3cc1f5a8862a1d6aaee302cb5beb62146993) Signed-off-by: Lokesh Mandvekar --- .gitignore | 3 +++ container-selinux.spec | 8 +++++--- sources | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 08c2dc7..4b336a5 100644 --- a/.gitignore +++ b/.gitignore @@ -137,3 +137,6 @@ /container-selinux-fe6a25c.tar.gz /container-selinux-e2d5a9e.tar.gz /container-selinux-3c361a2.tar.gz +/container-selinux-5d3c461.tar.gz +/container-selinux-aea4812.tar.gz +/v2.155.0.tar.gz diff --git a/container-selinux.spec b/container-selinux.spec index 7d23845..210b58f 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -8,6 +8,8 @@ # Used for comparing with latest upstream tag # to decide whether to autobuild (non-rawhide only) %define built_tag v2.155.0 +%define built_tag_strip %(b=%{built_tag}; echo ${b:1}) +%define download_url %{git0}/archive/%{built_tag}.tar.gz # container-selinux stuff (prefix with ds_ for version/release etc.) # Some bits borrowed from the openstack-selinux package @@ -30,9 +32,9 @@ Release: 1%{?dist} License: GPLv2 URL: %{git0} Summary: SELinux policies for container runtimes -Source0: %{git0}/archive/%{commit0}/%{name}-%{shortcommit0}.tar.gz +Source0: %{download_url} BuildArch: noarch -BuildRequires: git +BuildRequires: git-core BuildRequires: pkgconfig(systemd) BuildRequires: selinux-policy >= %_selinux_policy_version BuildRequires: selinux-policy-devel >= %_selinux_policy_version @@ -51,7 +53,7 @@ Provides: docker-selinux = %{?epoch:%{epoch}:}%{version}-%{release} SELinux policy modules for use with container runtimes. %prep -%autosetup -Sgit -n %{name}-%{commit0} +%autosetup -Sgit -n %{name}-%{built_tag_strip} %build make diff --git a/sources b/sources index f010911..5e051fe 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (container-selinux-3c361a2.tar.gz) = f635ba5367eaa97ae894bf759ce3dae913e5a032e9c990bc445465bc4d810fd65d0d346d3ef13ba6cc1fc31fb449989d34c5a482026b99da9e4ad85ea032c722 +SHA512 (v2.155.0.tar.gz) = 4f6c464edd87aa62bace68053692234adad86713cd47d10fbb076eda4458787ce0fca8ad54564abc8bf45d61f75e046da85bb54a42aca7bf0db25614aeffda2c From ff4f55771af1f94d444a1e8ce148def80b8e3666 Mon Sep 17 00:00:00 2001 From: Lokesh Mandvekar Date: Mon, 11 Jan 2021 14:23:59 -0500 Subject: [PATCH 59/61] use deprecated changelog Signed-off-by: Lokesh Mandvekar --- container-selinux.spec | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/container-selinux.spec b/container-selinux.spec index 210b58f..7deec8d 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -138,32 +138,32 @@ fi * Fri Aug 28 2020 Lokesh Mandvekar - 2:2.144.0-2 - Resolves: #1780129 - bump min selinux-policy -* Mon Aug 17 13:15:31 GMT 2020 RH Container Bot - 2:2.144.0-1 +* Mon Aug 17 2020 RH Container Bot - 2:2.144.0-1 - autobuilt v2.144.0 -* Wed Aug 05 22:10:34 GMT 2020 RH Container Bot - 2:2.143.0-2.dev.gite2d5a9e +* Wed Aug 05 2020 RH Container Bot - 2:2.143.0-2.dev.gite2d5a9e - bump to 2.143.0 - autobuilt e2d5a9e * Mon Jul 27 2020 Fedora Release Engineering - 2:2.142.0-3.dev.gitfe6a25c - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild -* Fri Jul 24 11:09:45 GMT 2020 RH Container Bot - 2:2.142.0-2.dev.gitfe6a25c +* Fri Jul 24 2020 RH Container Bot - 2:2.142.0-2.dev.gitfe6a25c - bump to 2.142.0 - autobuilt fe6a25c -* Fri Jul 24 10:09:44 GMT 2020 RH Container Bot - 2:2.141.0-2.dev.git2750e78 +* Fri Jul 24 2020 RH Container Bot - 2:2.141.0-2.dev.git2750e78 - bump to 2.141.0 - autobuilt 2750e78 * Thu Jul 23 2020 Merlin Mathesius - 2:2.140.0-2.dev.git965c7fb - Cleanup usage of %%{epoch} macro to allow building for ELN -* Thu Jul 23 19:10:26 GMT 2020 RH Container Bot - 2:2.140.0-2.dev.git965c7fb +* Thu Jul 23 2020 RH Container Bot - 2:2.140.0-2.dev.git965c7fb - bump to 2.140.0 - autobuilt 965c7fb -* Sat Jul 18 11:10:04 GMT 2020 RH Container Bot - 2:2.139.0-2.dev.git8c26927 +* Sat Jul 18 2020 RH Container Bot - 2:2.139.0-2.dev.git8c26927 - bump to 2.139.0 - autobuilt 8c26927 From 322636732237a84f678c54443384c117ba51a8e6 Mon Sep 17 00:00:00 2001 From: Lokesh Mandvekar Date: Mon, 11 Jan 2021 14:25:15 -0500 Subject: [PATCH 60/61] container-selinux-2:2.155.0-2 - use correct tarball Signed-off-by: Lokesh Mandvekar --- container-selinux.spec | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/container-selinux.spec b/container-selinux.spec index 7deec8d..3fdf3b3 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -2,8 +2,6 @@ # container-selinux %global git0 https://github.com/containers/container-selinux -%global commit0 3c361a2787b4f3739409a86e1cf8b6efe13f7d39 -%global shortcommit0 %(c=%{commit0}; echo ${c:0:7}) # Used for comparing with latest upstream tag # to decide whether to autobuild (non-rawhide only) @@ -28,7 +26,7 @@ Name: container-selinux Epoch: 2 %endif Version: 2.155.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2 URL: %{git0} Summary: SELinux policies for container runtimes @@ -108,6 +106,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Mon Jan 11 2021 Lokesh Mandvekar - 2:2.155.0-2 +- use correct tarball + * Tue Jan 5 2021 RH Container Bot - 2:2.155.0-1 - autobuilt v2.155.0 From 9cbb04efad39d003d6c174f88213fc2caf14217f Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Mon, 25 Jan 2021 13:59:00 +0000 Subject: [PATCH 61/61] container-selinux-2:2.156.0-1 autobuilt v2.156.0 Signed-off-by: RH Container Bot --- .gitignore | 1 + container-selinux.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 4b336a5..9d86592 100644 --- a/.gitignore +++ b/.gitignore @@ -140,3 +140,4 @@ /container-selinux-5d3c461.tar.gz /container-selinux-aea4812.tar.gz /v2.155.0.tar.gz +/v2.156.0.tar.gz diff --git a/container-selinux.spec b/container-selinux.spec index 3fdf3b3..f1fa4bc 100644 --- a/container-selinux.spec +++ b/container-selinux.spec @@ -5,7 +5,7 @@ # Used for comparing with latest upstream tag # to decide whether to autobuild (non-rawhide only) -%define built_tag v2.155.0 +%define built_tag v2.156.0 %define built_tag_strip %(b=%{built_tag}; echo ${b:1}) %define download_url %{git0}/archive/%{built_tag}.tar.gz @@ -25,8 +25,8 @@ Name: container-selinux %if 0%{?fedora} Epoch: 2 %endif -Version: 2.155.0 -Release: 2%{?dist} +Version: 2.156.0 +Release: 1%{?dist} License: GPLv2 URL: %{git0} Summary: SELinux policies for container runtimes @@ -106,6 +106,9 @@ fi # Hooked up to autobuilder, please check with @lsm5 before updating %changelog +* Mon Jan 25 2021 RH Container Bot - 2:2.156.0-1 +- autobuilt v2.156.0 + * Mon Jan 11 2021 Lokesh Mandvekar - 2:2.155.0-2 - use correct tarball diff --git a/sources b/sources index 5e051fe..1d1c083 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (v2.155.0.tar.gz) = 4f6c464edd87aa62bace68053692234adad86713cd47d10fbb076eda4458787ce0fca8ad54564abc8bf45d61f75e046da85bb54a42aca7bf0db25614aeffda2c +SHA512 (v2.156.0.tar.gz) = 792c4edb087204325255836e0adb356541d78551871a577cf2de0adfb87cef1d41904e479db86064ea596af356b4141f7e2557bbd1a27cbf0f82fa591fae3a6c