Merge pull request #84177 from zowoq/team

maintainers/teams: add podman team
This commit is contained in:
Jan Tojnar 2020-04-09 13:57:12 +02:00 committed by GitHub
commit bbb299c8e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 19 additions and 9 deletions

View File

@ -30,4 +30,13 @@ with lib.maintainers; {
]; ];
scope = "Maintain GNOME desktop environment and platform."; scope = "Maintain GNOME desktop environment and platform.";
}; };
podman = {
members = [
saschagrunert
vdemeester
zowoq
];
scope = "Maintain podman related packages.";
};
} }

View File

@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/containers/conmon"; homepage = "https://github.com/containers/conmon";
description = "An OCI container runtime monitor"; description = "An OCI container runtime monitor";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ vdemeester saschagrunert ]; maintainers = with maintainers; [ ] ++ teams.podman.members;
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }

View File

@ -67,5 +67,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
platforms = platforms.linux; platforms = platforms.linux;
inherit (src.meta) homepage; inherit (src.meta) homepage;
maintainers = with maintainers; [ ] ++ teams.podman.members;
}; };
} }

View File

@ -41,7 +41,7 @@ buildGoPackage rec {
homepage = "https://podman.io/"; homepage = "https://podman.io/";
description = "A program for managing pods, containers and container images"; description = "A program for managing pods, containers and container images";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ vdemeester saschagrunert marsam ]; maintainers = with maintainers; [ marsam ] ++ teams.podman.members;
platforms = platforms.unix; platforms = platforms.unix;
}; };
} }

View File

@ -53,7 +53,7 @@ buildGoPackage rec {
homepage = https://runc.io/; homepage = https://runc.io/;
description = "A CLI tool for spawning and running containers according to the OCI specification"; description = "A CLI tool for spawning and running containers according to the OCI specification";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ offline vdemeester saschagrunert ]; maintainers = with maintainers; [ offline ] ++ teams.podman.members;
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }

View File

@ -39,6 +39,6 @@ buildGoPackage rec {
homepage = "https://buildah.io/"; homepage = "https://buildah.io/";
changelog = "https://github.com/containers/buildah/releases/tag/v${version}"; changelog = "https://github.com/containers/buildah/releases/tag/v${version}";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ Profpatsch vdemeester saschagrunert ]; maintainers = with maintainers; [ Profpatsch ] ++ teams.podman.members;
}; };
} }

View File

@ -49,10 +49,10 @@ buildGoPackage {
popd popd
''; '';
meta = { meta = with stdenv.lib; {
description = "A command line utility for various operations on container images and image repositories"; description = "A command line utility for various operations on container images and image repositories";
homepage = "https://github.com/containers/skopeo"; homepage = "https://github.com/containers/skopeo";
maintainers = with stdenv.lib.maintainers; [ vdemeester lewo ]; maintainers = with maintainers; [ lewo ] ++ teams.podman.members;
license = stdenv.lib.licenses.asl20; license = licenses.asl20;
}; };
} }

View File

@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
description = "FUSE implementation for overlayfs"; description = "FUSE implementation for overlayfs";
longDescription = "An implementation of overlay+shiftfs in FUSE for rootless containers."; longDescription = "An implementation of overlay+shiftfs in FUSE for rootless containers.";
license = licenses.gpl3; license = licenses.gpl3;
maintainers = with maintainers; [ ma9e ]; maintainers = with maintainers; [ ma9e ] ++ teams.podman.members;
platforms = platforms.unix; platforms = platforms.unix;
inherit (src.meta) homepage; inherit (src.meta) homepage;
}; };

View File

@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/rootless-containers/slirp4netns"; homepage = "https://github.com/rootless-containers/slirp4netns";
description = "User-mode networking for unprivileged network namespaces"; description = "User-mode networking for unprivileged network namespaces";
license = licenses.gpl2; license = licenses.gpl2;
maintainers = with maintainers; [ orivej saschagrunert ]; maintainers = with maintainers; [ orivej ] ++ teams.podman.members;
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }