import containernetworking-plugins-1.1.1-2.module+el8.7.0+16431+bb67d067

This commit is contained in:
CentOS Sources 2022-09-27 08:37:50 -04:00 committed by Stepan Oksanichenko
parent a53d96555a
commit 5c9d48de19
3 changed files with 27 additions and 9 deletions

View File

@ -1 +1 @@
cf2c04ffedd0c5bec21c152533b1ebe2135d81a0 SOURCES/v1.0.1.tar.gz a28313c49d8c7a6c002dbd2a3c51b25540f6809f SOURCES/v1.1.1.tar.gz

2
.gitignore vendored
View File

@ -1 +1 @@
SOURCES/v1.0.1.tar.gz SOURCES/v1.1.1.tar.gz

View File

@ -17,21 +17,21 @@ go build -buildmode pie -compiler gc -tags="rpm_crashtraceback no_openssl ${BUIL
%global provider_prefix %{provider}.%{provider_tld}/%{project}/%{repo} %global provider_prefix %{provider}.%{provider_tld}/%{project}/%{repo}
%global import_path %{provider_prefix} %global import_path %{provider_prefix}
Epoch: 1
Name: containernetworking-plugins Name: containernetworking-plugins
Version: 1.0.1 Version: 1.1.1
Release: 1%{?dist} Release: 2%{?dist}
Summary: CNI network plugins Summary: CNI network plugins
License: ASL 2.0 License: ASL 2.0
URL: https://%{provider_prefix} URL: https://%{provider_prefix}
Source0: https://%{provider_prefix}/archive/v%{version}.tar.gz Source0: https://%{provider_prefix}/archive/v%{version}.tar.gz
# https://fedoraproject.org/wiki/PackagingDrafts/Go#Go_Language_Architectures # https://fedoraproject.org/wiki/PackagingDrafts/Go#Go_Language_Architectures
#ExclusiveArch: %%{go_arches} ExclusiveArch: %{go_arches}
# still use arch exclude as the macro above still refers %%{ix86} in RHEL8.4: BuildRequires: golang >= 1.17.7
# https://bugzilla.redhat.com/show_bug.cgi?id=1905383
ExcludeArch: %{ix86}
BuildRequires: golang >= 1.12.12-4
BuildRequires: git BuildRequires: git
BuildRequires: go-md2man BuildRequires: go-md2man
BuildRequires: systemd-devel
Requires: systemd
Provides: containernetworking-cni = %{version}-%{release} Provides: containernetworking-cni = %{version}-%{release}
%description %description
@ -73,6 +73,10 @@ done
install -d -p %{buildroot}%{_libexecdir}/cni/ install -d -p %{buildroot}%{_libexecdir}/cni/
install -p -m 0755 bin/* %{buildroot}/%{_libexecdir}/cni install -p -m 0755 bin/* %{buildroot}/%{_libexecdir}/cni
install -dp %{buildroot}%{_unitdir}
install -p plugins/ipam/dhcp/systemd/cni-dhcp.service %{buildroot}%{_unitdir}
install -p plugins/ipam/dhcp/systemd/cni-dhcp.socket %{buildroot}%{_unitdir}
%check %check
%if 0%{?with_check} %if 0%{?with_check}
# Since we aren't packaging up the vendor directory we need to link # Since we aren't packaging up the vendor directory we need to link
@ -117,8 +121,22 @@ export GOPATH=%{buildroot}/%{gopath}:$(pwd)/vendor:%{gopath}
%doc *.md %doc *.md
%dir %{_libexecdir}/cni %dir %{_libexecdir}/cni
%{_libexecdir}/cni/* %{_libexecdir}/cni/*
%{_unitdir}/cni-dhcp.service
%{_unitdir}/cni-dhcp.socket
%changelog %changelog
* Fri Apr 08 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.1.1-2
- bump golang BR to 1.17.7
- Related: #2061390
* Fri Mar 11 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.1.1-1
- update to https://github.com/containernetworking/plugins/releases/tag/v1.1.1
- Related: #2061390
* Mon Mar 07 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.0.1-2
- revert back to https://github.com/containernetworking/plugins/releases/tag/v1.0.1
- Related: #2061390
* Fri Sep 10 2021 Jindrich Novy <jnovy@redhat.com> - 1.0.1-1 * Fri Sep 10 2021 Jindrich Novy <jnovy@redhat.com> - 1.0.1-1
- update to https://github.com/containernetworking/plugins/releases/tag/v1.0.1 - update to https://github.com/containernetworking/plugins/releases/tag/v1.0.1
- Related: #2001445 - Related: #2001445