71 lines
1.9 KiB
RPMSpec
71 lines
1.9 KiB
RPMSpec
%define gitver %(echo %version | tr _ -)
|
|
Name: runc
|
|
Version: 1.0.2
|
|
Release: 1mamba
|
|
Summary: runc container cli tools
|
|
Group: System/Servers
|
|
Vendor: openmamba
|
|
Distribution: openmamba
|
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
|
URL: https://opencontainers.org/
|
|
Source: https://github.com/opencontainers/runc.git/v%{gitver}/runc-%{version}.tar.bz2
|
|
License: Apache License 2.0
|
|
## AUTOBUILDREQ-BEGIN
|
|
#libpthread.so.0()(64bit): /usr/lib64/libpthread.so: file not owned by any package
|
|
BuildRequires: glibc-devel
|
|
BuildRequires: libseccomp-devel
|
|
## AUTOBUILDREQ-END
|
|
BuildRequires: go
|
|
|
|
%description
|
|
runc container cli tools.
|
|
|
|
%debug_package
|
|
|
|
%prep
|
|
%setup -q
|
|
mkdir -p src/github.com/opencontainers
|
|
ln -sf `pwd` src/github.com/opencontainers/runc
|
|
|
|
%build
|
|
export GOPATH=`pwd`
|
|
cd src/github.com/opencontainers/runc
|
|
export BUILDTAGS='seccomp apparmor'
|
|
|
|
# Required since Go 1.16
|
|
export GO111MODULE=off
|
|
|
|
%make
|
|
man/md2man-all.sh 2>/dev/null
|
|
|
|
%install
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
install -Dm755 runc %{buildroot}%{_bindir}/runc
|
|
install -dm755 %{buildroot}%{_mandir}
|
|
mv man/man*/ %{buildroot}%{_mandir}
|
|
|
|
%clean
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%{_bindir}/runc
|
|
%{_mandir}/man8/runc*.8*
|
|
%doc LICENSE
|
|
|
|
%changelog
|
|
* Tue Aug 24 2021 Automatic Build System <autodist@mambasoft.it> 1.0.2-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Wed Aug 04 2021 Automatic Build System <autodist@mambasoft.it> 1.0.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Wed Nov 06 2019 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0_rc9-1mamba
|
|
- update to 1.0.0_rc9
|
|
|
|
* Thu Apr 19 2018 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0_rc5-1mamba
|
|
- update to 1.0.0_rc5
|
|
|
|
* Fri Jul 29 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 0.1.1-1mamba
|
|
- package created using the webbuild interface
|