update to 0.2.2 [release 0.2.2-1mamba;Fri Jul 29 2016]

This commit is contained in:
Silvan Calarco 2024-01-05 21:30:27 +01:00
parent 3811ae2fa8
commit fa17ff4431
2 changed files with 63 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# containerd
A daemon to control OCI container runtimes.

61
containerd.spec Normal file
View File

@ -0,0 +1,61 @@
Name: containerd
Version: 0.2.2
Release: 1mamba
Summary: A daemon to control OCI container runtimes
Group: System/Servers
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://www.docker.com/
## GITSOURCE https://github.com/docker/containerd.git 0.0.5
Source: https://github.com/docker/containerd.git/v%{version}/containerd-%{version}.tar.bz2
License: Apache License 2.0
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libgcc
BuildRequires: libgo-devel
## AUTOBUILDREQ-END
BuildRequires: gcc-go
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
A daemon to control OCI container runtimes.
%debug_package
%prep
%setup -q
%build
export GOPATH=`pwd`
mkdir -p src/github.com/docker
ln -rsf `pwd` src/github.com/docker/containerd
cd src/github.com/docker/containerd
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
cd src/github.com/docker/containerd/bin
for file in $(find . -type f -print); do
install -Dm755 $file %{buildroot}%{_bindir}/$file
done
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_bindir}/containerd
%{_bindir}/containerd-shim
%{_bindir}/ctr
%doc LICENSE.code LICENSE.docs MAINTAINERS
#%doc README.md
%changelog
* Fri Jul 29 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 0.2.2-1mamba
- update to 0.2.2
* Fri Jul 29 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 0.0.5-1mamba
- package created using the webbuild interface