74 lines
2.3 KiB
RPMSpec
74 lines
2.3 KiB
RPMSpec
|
#
|
||
|
# spec file for package nerdctl
|
||
|
#
|
||
|
# Copyright (c) 2024 SUSE LLC
|
||
|
#
|
||
|
# All modifications and additions to the file contributed by third parties
|
||
|
# remain the property of their copyright owners, unless otherwise agreed
|
||
|
# upon. The license for this file, and modifications and additions to the
|
||
|
# file, is the same license as for the pristine package itself (unless the
|
||
|
# license for the pristine package is not an Open Source License, in which
|
||
|
# case the license is the MIT License). An "Open Source License" is a
|
||
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||
|
# published by the Open Source Initiative.
|
||
|
|
||
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||
|
#
|
||
|
|
||
|
|
||
|
%global provider github
|
||
|
%global provider_tld com
|
||
|
%global project containerd
|
||
|
%global repo nerdctl
|
||
|
%global provider_prefix %{provider}.%{provider_tld}/%{project}/%{repo}
|
||
|
%global import_path %{provider_prefix}
|
||
|
|
||
|
Name: nerdctl
|
||
|
Version: 2.0.1
|
||
|
Release: 0
|
||
|
Summary: Docker-compatible CLI for containerd
|
||
|
License: Apache-2.0
|
||
|
URL: https://github.com/containerd/nerdctl
|
||
|
Source: %{name}-%{version}.tar.xz
|
||
|
Source1: vendor.tar.xz
|
||
|
BuildRequires: golang(API) >= 1.22
|
||
|
Requires: buildkit >= 0.13.0
|
||
|
Requires: cni-plugins
|
||
|
Requires: containerd
|
||
|
Requires: iptables
|
||
|
Requires: rootlesskit >= 2.0.0
|
||
|
Requires: slirp4netns >= 0.4.0
|
||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||
|
|
||
|
%description
|
||
|
nerdctl is a Docker-compatible CLI for containerd.
|
||
|
|
||
|
%prep
|
||
|
%setup -qa1
|
||
|
|
||
|
%build
|
||
|
CGO_ENABLED=0
|
||
|
|
||
|
go build \
|
||
|
-mod=vendor \
|
||
|
-buildmode=pie \
|
||
|
-ldflags "-X %{provider_prefix}/v2/pkg/version.Version=%{version} \
|
||
|
-X %{provider_prefix}/v2/pkg/version.Revision=unknown" \
|
||
|
-o _output/nerdctl \
|
||
|
%{provider_prefix}/v2/cmd/nerdctl
|
||
|
|
||
|
%install
|
||
|
mkdir -p %{buildroot}%{_bindir}/
|
||
|
install -m 0755 _output/nerdctl %{buildroot}%{_bindir}/nerdctl
|
||
|
install -m 0755 extras/rootless/containerd-rootless-setuptool.sh %{buildroot}%{_bindir}/containerd-rootless-setuptool.sh
|
||
|
install -m 0755 extras/rootless/containerd-rootless.sh %{buildroot}%{_bindir}/containerd-rootless.sh
|
||
|
|
||
|
%files
|
||
|
%license LICENSE
|
||
|
%doc docs/*.md
|
||
|
%{_bindir}/nerdctl
|
||
|
%{_bindir}/containerd-rootless-setuptool.sh
|
||
|
%{_bindir}/containerd-rootless.sh
|
||
|
|
||
|
%changelog
|