Compare commits
No commits in common. "c8-stream-1.0" and "c10s" have entirely different histories.
c8-stream-
...
c10s
@ -1 +0,0 @@
|
|||||||
97ba3a594cae5771913218e3a4a9722ccc88e2e3 SOURCES/plugins-9ebe139.tar.gz
|
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +0,0 @@
|
|||||||
SOURCES/plugins-9ebe139.tar.gz
|
|
@ -1,207 +0,0 @@
|
|||||||
%global with_debug 1
|
|
||||||
%global with_check 0
|
|
||||||
|
|
||||||
%if 0%{?with_debug}
|
|
||||||
%global _find_debuginfo_dwz_opts %{nil}
|
|
||||||
%global _dwz_low_mem_die_limit 0
|
|
||||||
%else
|
|
||||||
%global debug_package %{nil}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%define gobuild(o:) \
|
|
||||||
go build -buildmode pie -compiler gc -tags="rpm_crashtraceback no_openssl ${BUILDTAGS:-}" -ldflags "${LDFLAGS:-} -compressdwarf=false -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -extldflags '%__global_ldflags'" -a -v -x %{?**};
|
|
||||||
%define gotest(o:) go test
|
|
||||||
|
|
||||||
%global provider github
|
|
||||||
%global provider_tld com
|
|
||||||
%global project containernetworking
|
|
||||||
%global repo plugins
|
|
||||||
# https://github.com/containernetworking/plugins
|
|
||||||
%global provider_prefix %{provider}.%{provider_tld}/%{project}/%{repo}
|
|
||||||
%global import_path %{provider_prefix}
|
|
||||||
%global commit 9ebe139e77e82afb122e335328007bca86905ae4
|
|
||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
|
||||||
|
|
||||||
Name: containernetworking-plugins
|
|
||||||
Version: 0.7.4
|
|
||||||
Release: 4.git%{shortcommit}%{?dist}
|
|
||||||
Summary: Some CNI network plugins, maintained by the containernetworking team.
|
|
||||||
License: ASL 2.0
|
|
||||||
URL: https://%{provider_prefix}
|
|
||||||
Source0: https://%{provider_prefix}/archive/%{commit}/%{repo}-%{shortcommit}.tar.gz
|
|
||||||
ExcludeArch: ppc64 i686
|
|
||||||
# If go_compiler is not set to 1, there is no virtual provide. Use golang instead.
|
|
||||||
BuildRequires: %{?go_compiler:compiler(go-compiler)}%{!?go_compiler:golang}
|
|
||||||
BuildRequires: git
|
|
||||||
BuildRequires: go-md2man
|
|
||||||
Provides: containernetworking-cni = %{version}-%{release}
|
|
||||||
|
|
||||||
%description
|
|
||||||
The CNI (Container Network Interface) project consists of a specification
|
|
||||||
and libraries for writing plugins to configure network interfaces in Linux
|
|
||||||
containers, along with a number of supported plugins. CNI concerns itself
|
|
||||||
only with network connectivity of containers and removing allocated resources
|
|
||||||
when the container is deleted.
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%autosetup -Sgit -n %{repo}-%{commit}
|
|
||||||
|
|
||||||
%build
|
|
||||||
export ORG_PATH="%{provider}.%{provider_tld}/%{project}"
|
|
||||||
export REPO_PATH="$ORG_PATH/%{repo}"
|
|
||||||
|
|
||||||
if [ ! -h gopath/src/${REPO_PATH} ]; then
|
|
||||||
mkdir -p gopath/src/${ORG_PATH}
|
|
||||||
ln -s ../../../.. gopath/src/${REPO_PATH} || exit 255
|
|
||||||
fi
|
|
||||||
|
|
||||||
export GOPATH=$(pwd)/gopath
|
|
||||||
mkdir -p $(pwd)/bin
|
|
||||||
|
|
||||||
echo "Building plugins"
|
|
||||||
export PLUGINS="plugins/meta/* plugins/main/* plugins/ipam/* plugins/sample"
|
|
||||||
for d in $PLUGINS; do
|
|
||||||
if [ -d "$d" ]; then
|
|
||||||
plugin="$(basename "$d")"
|
|
||||||
echo " $plugin"
|
|
||||||
%gobuild -o "${PWD}/bin/$plugin" "$@" "$REPO_PATH"/$d
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
%install
|
|
||||||
install -d -p %{buildroot}%{_libexecdir}/cni/
|
|
||||||
install -p -m 0755 bin/* %{buildroot}/%{_libexecdir}/cni
|
|
||||||
|
|
||||||
%check
|
|
||||||
%if 0%{?with_check}
|
|
||||||
# Since we aren't packaging up the vendor directory we need to link
|
|
||||||
# back to it somehow. Hack it up so that we can add the vendor
|
|
||||||
# directory from BUILD dir as a gopath to be searched when executing
|
|
||||||
# tests from the BUILDROOT dir.
|
|
||||||
ln -s ./ ./vendor/src # ./vendor/src -> ./vendor
|
|
||||||
|
|
||||||
export GOPATH=%{buildroot}/%{gopath}:$(pwd)/vendor:%{gopath}
|
|
||||||
|
|
||||||
%gotest %{import_path}/libcni
|
|
||||||
%gotest %{import_path}/pkg/invoke
|
|
||||||
%gotest %{import_path}/pkg/ip
|
|
||||||
%gotest %{import_path}/pkg/ipam
|
|
||||||
%gotest %{import_path}/pkg/ns
|
|
||||||
%gotest %{import_path}/pkg/skel
|
|
||||||
%gotest %{import_path}/pkg/types
|
|
||||||
%gotest %{import_path}/pkg/types/020
|
|
||||||
%gotest %{import_path}/pkg/types/current
|
|
||||||
%gotest %{import_path}/pkg/utils
|
|
||||||
%gotest %{import_path}/pkg/utils/hwaddr
|
|
||||||
%gotest %{import_path}/pkg/version
|
|
||||||
%gotest %{import_path}/pkg/version/legacy_examples
|
|
||||||
%gotest %{import_path}/pkg/version/testhelpers
|
|
||||||
%gotest %{import_path}/plugins/ipam/dhcp
|
|
||||||
%gotest %{import_path}/plugins/ipam/host-local
|
|
||||||
%gotest %{import_path}/plugins/ipam/host-local/backend/allocator
|
|
||||||
%gotest %{import_path}/plugins/main/bridge
|
|
||||||
%gotest %{import_path}/plugins/main/ipvlan
|
|
||||||
%gotest %{import_path}/plugins/main/loopback
|
|
||||||
%gotest %{import_path}/plugins/main/macvlan
|
|
||||||
%gotest %{import_path}/plugins/main/ptp
|
|
||||||
%gotest %{import_path}/plugins/meta/flannel
|
|
||||||
%gotest %{import_path}/plugins/test/noop
|
|
||||||
%endif
|
|
||||||
|
|
||||||
#define license tag if not already defined
|
|
||||||
%{!?_licensedir:%global license %doc}
|
|
||||||
|
|
||||||
%files
|
|
||||||
%license LICENSE
|
|
||||||
%doc *.md
|
|
||||||
%dir %{_libexecdir}/cni
|
|
||||||
%{_libexecdir}/cni/*
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Fri Jun 26 2020 Jindrich Novy <jnovy@redhat.com> - 0.7.4-4.git9ebe139
|
|
||||||
- bump release to preserve upgrade path
|
|
||||||
- Related: #1821193
|
|
||||||
|
|
||||||
* Tue Dec 18 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.7.4-3.git9ebe139
|
|
||||||
- re-enable debuginfo
|
|
||||||
|
|
||||||
* Mon Dec 17 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.7.4-2.git9ebe139
|
|
||||||
- rebase, removed patch that is already upstream
|
|
||||||
|
|
||||||
* Mon Dec 17 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.7.3-7.git19f2f28
|
|
||||||
- go tools not in scl anymore
|
|
||||||
|
|
||||||
* Mon Aug 27 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.3-6.git19f2f28
|
|
||||||
- correct tag specification format in %%gobuild macro
|
|
||||||
|
|
||||||
* Fri Aug 24 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.3-5.git19f2f28
|
|
||||||
- Resolves: #1616062 - patch to revert coreos/go-iptables bump
|
|
||||||
|
|
||||||
* Wed Aug 08 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.7.3-4.git19f2f28
|
|
||||||
- Resolves:#1603012
|
|
||||||
- fix versioning, upstream got it wrong at 7.2
|
|
||||||
|
|
||||||
* Tue Aug 07 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.2-3.git19f2f28
|
|
||||||
- disable i686 temporarily for appstream builds
|
|
||||||
- update golang deps and gobuild definition
|
|
||||||
|
|
||||||
* Mon Aug 06 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.7.2-2.git19f2f28
|
|
||||||
- rebase
|
|
||||||
|
|
||||||
* Thu Jul 12 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.7.0-103.gitdd8ff8a
|
|
||||||
- enable scl with the toolset
|
|
||||||
|
|
||||||
* Tue Jul 03 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.7.0-102.gitdd8ff8a
|
|
||||||
- remove devel and unittest subpackages
|
|
||||||
- use new go-toolset deps
|
|
||||||
|
|
||||||
* Thu May 10 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.7.0-101
|
|
||||||
- rebase
|
|
||||||
- patches already upstream, removed
|
|
||||||
|
|
||||||
* Thu Apr 26 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.6.0-6
|
|
||||||
- Imported from Fedora
|
|
||||||
- Renamed CNI -> plugins
|
|
||||||
|
|
||||||
* Mon Apr 2 2018 Peter Robinson <pbrobinson@fedoraproject.org> 0.6.0-4
|
|
||||||
- Own the libexec cni directory
|
|
||||||
|
|
||||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.0-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jan 23 2018 Dan Williams <dcbw@redhat.com> - 0.6.0-2
|
|
||||||
- skip settling IPv4 addresses
|
|
||||||
|
|
||||||
* Mon Jan 08 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.6.0-1
|
|
||||||
- rebased to 7480240de9749f9a0a5c8614b17f1f03e0c06ab9
|
|
||||||
|
|
||||||
* Fri Oct 13 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.5.2-7
|
|
||||||
- do not install to /opt (against Fedora Guidelines)
|
|
||||||
|
|
||||||
* Thu Aug 24 2017 Jan Chaloupka <jchaloup@redhat.com> - 0.5.2-6
|
|
||||||
- Enable devel subpackage
|
|
||||||
|
|
||||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.2-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.2-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jul 13 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.5.2-3
|
|
||||||
- excludearch: ppc64 as it's not in goarches anymore
|
|
||||||
- re-enable s390x
|
|
||||||
|
|
||||||
* Fri Jun 30 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.5.2-2
|
|
||||||
- upstream moved to github.com/containernetworking/plugins
|
|
||||||
- built commit dcf7368
|
|
||||||
- provides: containernetworking-plugins
|
|
||||||
- use vendored deps because they're a lot less of a PITA
|
|
||||||
- excludearch: s390x for now (rhbz#1466865)
|
|
||||||
|
|
||||||
* Mon Jun 12 2017 Timothy St. Clair <tstclair@heptio.com> - 0.5.2-1
|
|
||||||
- Update to 0.5.2
|
|
||||||
- Softlink to default /opt/cni/bin directories
|
|
||||||
|
|
||||||
* Sun May 07 2017 Timothy St. Clair <tstclair@heptio.com> - 0.5.1-1
|
|
||||||
- Initial package
|
|
||||||
|
|
1
dead.package
Normal file
1
dead.package
Normal file
@ -0,0 +1 @@
|
|||||||
|
containernetworking-plugins package is retired on branch c10s for CS-2264
|
Loading…
Reference in New Issue
Block a user