Merge pull request #86638 from zowoq/cri-shell

cri-o, cri-tools: install completion, manpages
This commit is contained in:
Mario Rodas 2020-05-06 21:08:51 -05:00 committed by GitHub
commit 9d959ff8d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 52 additions and 16 deletions

View File

@ -3,25 +3,24 @@
, btrfs-progs , btrfs-progs
, buildGoPackage , buildGoPackage
, fetchFromGitHub , fetchFromGitHub
, git
, glibc , glibc
, gpgme , gpgme
, installShellFiles
, libapparmor , libapparmor
, libassuan , libassuan
, libgpgerror , libgpgerror
, libseccomp , libseccomp
, libselinux , libselinux
, lvm2 , lvm2
, pkgconfig , pkg-config
, which
}: }:
buildGoPackage rec { buildGoPackage rec {
project = "cri-o"; pname = "cri-o";
version = "1.18.0"; version = "1.18.0";
name = "${project}-${version}${flavor}"; name = "${pname}-${version}${flavor}";
goPackagePath = "github.com/${project}/${project}"; goPackagePath = "github.com/cri-o/cri-o";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "cri-o"; owner = "cri-o";
@ -30,27 +29,48 @@ buildGoPackage rec {
sha256 = "142flmv54pj48rjqkd26fbxrcbx2cv6pdmrc33jgyvn6r99zliah"; sha256 = "142flmv54pj48rjqkd26fbxrcbx2cv6pdmrc33jgyvn6r99zliah";
}; };
nativeBuildInputs = [ git pkgconfig which ]; outputs = [ "out" "man" ];
buildInputs = [ btrfs-progs gpgme libapparmor libassuan libgpgerror
libseccomp libselinux lvm2 ] nativeBuildInputs = [ installShellFiles pkg-config ];
++ stdenv.lib.optionals (glibc != null) [ glibc glibc.static ];
buildInputs = [
btrfs-progs
gpgme
libapparmor
libassuan
libgpgerror
libseccomp
libselinux
lvm2
] ++ stdenv.lib.optionals (glibc != null) [ glibc glibc.static ];
BUILDTAGS = "apparmor seccomp selinux containers_image_ostree_stub"; BUILDTAGS = "apparmor seccomp selinux containers_image_ostree_stub";
buildPhase = '' buildPhase = ''
pushd go/src/${goPackagePath} pushd go/src/${goPackagePath}
make binaries BUILDTAGS="$BUILDTAGS" sed -i '/version.buildDate/d' Makefile
make binaries docs BUILDTAGS="$BUILDTAGS"
''; '';
installPhase = '' installPhase = ''
install -Dm755 bin/crio $out/bin/crio${flavor} install -Dm755 bin/crio $out/bin/crio${flavor}
install -Dm755 bin/crio-status $out/bin/crio-status${flavor} install -Dm755 bin/crio-status $out/bin/crio-status${flavor}
install -Dm755 bin/pinns $out/bin/pinns${flavor} install -Dm755 bin/pinns $out/bin/pinns${flavor}
for shell in bash fish zsh; do
installShellCompletion --$shell completions/$shell/*
done
installManPage docs/*.[1-9]
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = "https://cri-o.io"; homepage = "https://cri-o.io";
description = ''Open Container Initiative-based implementation of the description = ''
Kubernetes Container Runtime Interface''; Open Container Initiative-based implementation of the
Kubernetes Container Runtime Interface
'';
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ ] ++ teams.podman.members; maintainers = with maintainers; [ ] ++ teams.podman.members;
platforms = platforms.linux; platforms = platforms.linux;

View File

@ -1,8 +1,13 @@
{ buildGoPackage, fetchFromGitHub, lib }: { lib
, buildGoPackage
, fetchFromGitHub
, installShellFiles
}:
buildGoPackage rec { buildGoPackage rec {
pname = "cri-tools"; pname = "cri-tools";
version = "1.18.0"; version = "1.18.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "kubernetes-sigs"; owner = "kubernetes-sigs";
repo = pname; repo = pname;
@ -12,15 +17,26 @@ buildGoPackage rec {
goPackagePath = "github.com/kubernetes-sigs/cri-tools"; goPackagePath = "github.com/kubernetes-sigs/cri-tools";
nativeBuildInputs = [ installShellFiles ];
buildPhase = '' buildPhase = ''
pushd go/src/${goPackagePath} pushd go/src/${goPackagePath}
make all install BINDIR=$out/bin make binaries VERSION=${version}
'';
installPhase = ''
make install BINDIR=$out/bin
for shell in bash fish zsh; do
$out/bin/crictl completion $shell > crictl.$shell
installShellCompletion crictl.$shell
done
''; '';
meta = with lib; { meta = with lib; {
description = "CLI and validation tools for Kubelet Container Runtime Interface (CRI)"; description = "CLI and validation tools for Kubelet Container Runtime Interface (CRI)";
homepage = "https://github.com/kubernetes-sigs/cri-tools"; homepage = "https://github.com/kubernetes-sigs/cri-tools";
license = lib.licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ ] ++ teams.podman.members; maintainers = with maintainers; [ ] ++ teams.podman.members;
}; };
} }