0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

maintainers/teams: add buildbot

This commit is contained in:
zowoq 2023-12-28 11:48:40 +10:00
parent c28ef4b5cf
commit 3d0b034e87
8 changed files with 23 additions and 13 deletions

View file

@ -96,6 +96,16 @@ with lib.maintainers; {
shortName = "Blockchains"; shortName = "Blockchains";
}; };
buildbot = {
members = [
lopsided98
mic92
zowoq
];
scope = "Maintain Buildbot CI framework";
shortName = "Buildbot";
};
c = { c = {
members = [ members = [
matthewbauer matthewbauer

View file

@ -305,5 +305,5 @@ in {
'') '')
]; ];
meta.maintainers = with lib.maintainers; [ mic92 lopsided98 ]; meta.maintainers = lib.teams.buildbot.members;
} }

View file

@ -188,6 +188,6 @@ in {
}; };
}; };
meta.maintainers = with lib.maintainers; [ ]; meta.maintainers = lib.teams.buildbot.members;
} }

View file

@ -104,5 +104,5 @@ import ./make-test-python.nix ({ pkgs, ... }: {
bbworker.fail("nc -z bbmaster 8011") bbworker.fail("nc -z bbmaster 8011")
''; '';
meta.maintainers = with pkgs.lib.maintainers; [ ]; meta.maintainers = pkgs.lib.teams.buildbot.members;
}) })

View file

@ -156,7 +156,7 @@ let
description = "An open-source continuous integration framework for automating software build, test, and release processes"; description = "An open-source continuous integration framework for automating software build, test, and release processes";
homepage = "https://buildbot.net/"; homepage = "https://buildbot.net/";
changelog = "https://github.com/buildbot/buildbot/releases/tag/v${version}"; changelog = "https://github.com/buildbot/buildbot/releases/tag/v${version}";
maintainers = with maintainers; [ ryansydnor lopsided98 ]; maintainers = teams.buildbot.members;
license = licenses.gpl2Only; license = licenses.gpl2Only;
broken = stdenv.isDarwin; broken = stdenv.isDarwin;
}; };

View file

@ -25,7 +25,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
homepage = "https://buildbot.net/"; homepage = "https://buildbot.net/";
description = "Buildbot Packaging Helper"; description = "Buildbot Packaging Helper";
maintainers = with maintainers; [ ryansydnor lopsided98 ]; maintainers = teams.buildbot.members;
license = licenses.gpl2; license = licenses.gpl2;
}; };
} }

View file

@ -24,7 +24,7 @@
meta = with lib; { meta = with lib; {
homepage = "https://buildbot.net/"; homepage = "https://buildbot.net/";
description = "Buildbot UI"; description = "Buildbot UI";
maintainers = with maintainers; [ ryansydnor lopsided98 ]; maintainers = teams.buildbot.members;
license = licenses.gpl2; license = licenses.gpl2;
}; };
}; };
@ -51,7 +51,7 @@
meta = with lib; { meta = with lib; {
homepage = "https://buildbot.net/"; homepage = "https://buildbot.net/";
description = "Buildbot UI (React)"; description = "Buildbot UI (React)";
maintainers = with maintainers; [ mic92 ]; maintainers = teams.buildbot.members;
license = licenses.gpl2Only; license = licenses.gpl2Only;
}; };
}; };
@ -73,7 +73,7 @@
meta = with lib; { meta = with lib; {
homepage = "https://buildbot.net/"; homepage = "https://buildbot.net/";
description = "Buildbot Console View Plugin"; description = "Buildbot Console View Plugin";
maintainers = with maintainers; [ ryansydnor lopsided98 ]; maintainers = teams.buildbot.members;
license = licenses.gpl2; license = licenses.gpl2;
}; };
}; };
@ -95,7 +95,7 @@
meta = with lib; { meta = with lib; {
homepage = "https://buildbot.net/"; homepage = "https://buildbot.net/";
description = "Buildbot Waterfall View Plugin"; description = "Buildbot Waterfall View Plugin";
maintainers = with maintainers; [ ryansydnor lopsided98 ]; maintainers = teams.buildbot.members;
license = licenses.gpl2; license = licenses.gpl2;
}; };
}; };
@ -117,7 +117,7 @@
meta = with lib; { meta = with lib; {
homepage = "https://buildbot.net/"; homepage = "https://buildbot.net/";
description = "Buildbot Grid View Plugin"; description = "Buildbot Grid View Plugin";
maintainers = with maintainers; [ lopsided98 ]; maintainers = teams.buildbot.members;
license = licenses.gpl2; license = licenses.gpl2;
}; };
}; };
@ -139,7 +139,7 @@
meta = with lib; { meta = with lib; {
homepage = "https://buildbot.net/"; homepage = "https://buildbot.net/";
description = "Buildbot WSGI dashboards Plugin"; description = "Buildbot WSGI dashboards Plugin";
maintainers = with maintainers; [ lopsided98 ]; maintainers = teams.buildbot.members;
license = licenses.gpl2; license = licenses.gpl2;
}; };
}; };
@ -162,7 +162,7 @@
meta = with lib; { meta = with lib; {
homepage = "https://buildbot.net/"; homepage = "https://buildbot.net/";
description = "Buildbot Badges Plugin"; description = "Buildbot Badges Plugin";
maintainers = with maintainers; [ julienmalka ]; maintainers = teams.buildbot.members ++ [ maintainers.julienmalka ];
license = licenses.gpl2; license = licenses.gpl2;
}; };
}; };

View file

@ -59,7 +59,7 @@ buildPythonPackage (rec {
meta = with lib; { meta = with lib; {
homepage = "https://buildbot.net/"; homepage = "https://buildbot.net/";
description = "Buildbot Worker Daemon"; description = "Buildbot Worker Daemon";
maintainers = with maintainers; [ ryansydnor lopsided98 ]; maintainers = teams.buildbot.members;
license = licenses.gpl2; license = licenses.gpl2;
broken = stdenv.isDarwin; # https://hydra.nixos.org/build/243534318/nixlog/6 broken = stdenv.isDarwin; # https://hydra.nixos.org/build/243534318/nixlog/6
}; };