nixos: remove historical maintainership of modules by eelco

Eelco has made several early contributions to NixOS including writing
the samba module among other things, but is more or less inactive these
days.

By my brief inspection, he has not committed to the nixos/ tree since
releasing Nix 2.13 in early 2023 and merging a PR to networking tests
slightly before that. A lot of these tests/modules are actually
unmaintained in practice, so we should update the code to reflect the
practical reality so someone can consider picking them up.
This commit is contained in:
Jade Lovelace 2024-04-21 00:15:22 -07:00
parent fe5bfe5593
commit 3fd324f823
27 changed files with 28 additions and 27 deletions

View File

@ -43,7 +43,7 @@ in rec {
name = "nixos-${nixos.channel.version}";
meta = {
description = "Release-critical builds for the NixOS channel";
maintainers = with pkgs.lib.maintainers; [ eelco ];
maintainers = with pkgs.lib.maintainers; [ ];
};
constituents = pkgs.lib.concatLists [
[ "nixos.channel" ]

View File

@ -98,7 +98,7 @@ in rec {
name = "nixos-${nixos.channel.version}";
meta = {
description = "Release-critical builds for the NixOS channel";
maintainers = [ lib.maintainers.eelco ];
maintainers = [ ];
};
constituents = lib.flatten [
[

View File

@ -9,7 +9,7 @@
import ./make-test-python.nix {
name = "avahi";
meta = with pkgs.lib.maintainers; {
maintainers = [ eelco ];
maintainers = [ ];
};
nodes = let

View File

@ -36,7 +36,7 @@ in
{
name = "bittorrent";
meta = with pkgs.lib.maintainers; {
maintainers = [ domenkozar eelco rob bobvanderlinden ];
maintainers = [ domenkozar rob bobvanderlinden ];
};
nodes = {

View File

@ -8,7 +8,7 @@ in
import ./make-test-python.nix ({ pkgs, lib, ... }: {
name = "containers-bridge";
meta = {
maintainers = with lib.maintainers; [ aristid aszlig eelco kampfschlaefer ];
maintainers = with lib.maintainers; [ aristid aszlig kampfschlaefer ];
};
nodes.machine =

View File

@ -1,7 +1,7 @@
import ./make-test-python.nix ({ pkgs, lib, ... }: {
name = "containers-imperative";
meta = {
maintainers = with lib.maintainers; [ aristid aszlig eelco kampfschlaefer ];
maintainers = with lib.maintainers; [ aristid aszlig kampfschlaefer ];
};
nodes.machine =

View File

@ -14,7 +14,7 @@ let
in import ./make-test-python.nix ({ pkgs, lib, ... }: {
name = "containers-ipv4-ipv6";
meta = {
maintainers = with lib.maintainers; [ aristid aszlig eelco kampfschlaefer ];
maintainers = with lib.maintainers; [ aristid aszlig kampfschlaefer ];
};
nodes.machine =

View File

@ -8,7 +8,7 @@ in
import ./make-test-python.nix ({ pkgs, lib, ... }: {
name = "containers-portforward";
meta = {
maintainers = with lib.maintainers; [ aristid aszlig eelco kampfschlaefer ianwookim ];
maintainers = with lib.maintainers; [ aristid aszlig kampfschlaefer ianwookim ];
};
nodes.machine =

View File

@ -16,7 +16,7 @@ let
import ./make-test-python.nix ({
inherit name;
meta = with pkgs.lib.maintainers; {
maintainers = [ eelco offline basvandijk ];
maintainers = [ offline basvandijk ];
};
nodes = {
one =

View File

@ -3,7 +3,7 @@ import ./make-test-python.nix ({ lib, pkgs, firefoxPackage, ... }:
name = firefoxPackage.pname;
meta = with pkgs.lib.maintainers; {
maintainers = [ eelco shlevy ];
maintainers = [ shlevy ];
};
nodes.machine =

View File

@ -3,7 +3,7 @@
import ./make-test-python.nix ( { pkgs, nftables, ... } : {
name = "firewall" + pkgs.lib.optionalString nftables "-nftables";
meta = with pkgs.lib.maintainers; {
maintainers = [ eelco ];
maintainers = [ ];
};
nodes =

View File

@ -1,7 +1,7 @@
import ./make-test-python.nix ({ pkgs, lib, ...} : {
name = "initrd-network";
meta.maintainers = [ pkgs.lib.maintainers.eelco ];
meta.maintainers = [ ];
nodes.machine = { ... }: {
imports = [ ../modules/profiles/minimal.nix ];

View File

@ -4,7 +4,7 @@
import ./make-test-python.nix ({ pkgs, lib, ...} : {
name = "ipv6";
meta = with pkgs.lib.maintainers; {
maintainers = [ eelco ];
maintainers = [ ];
};
nodes =

View File

@ -7,7 +7,7 @@
import ./make-test-python.nix ({ pkgs, ...} : {
name = "jenkins";
meta = with pkgs.lib.maintainers; {
maintainers = [ bjornfor coconnor domenkozar eelco ];
maintainers = [ bjornfor coconnor domenkozar ];
};
nodes = {

View File

@ -3,7 +3,7 @@ import ./make-test-python.nix ({ pkgs, latestKernel ? false, ... }:
{
name = "login";
meta = with pkgs.lib.maintainers; {
maintainers = [ eelco ];
maintainers = [ ];
};
nodes.machine =

View File

@ -15,7 +15,7 @@ in
{
name = "mumble";
meta = with pkgs.lib.maintainers; {
maintainers = [ thoughtpolice eelco ];
maintainers = [ thoughtpolice ];
};
nodes = {

View File

@ -4,7 +4,7 @@
import ./make-test-python.nix ({ pkgs, ...} : {
name = "munin";
meta = with pkgs.lib.maintainers; {
maintainers = [ domenkozar eelco ];
maintainers = [ domenkozar ];
};
nodes = {

View File

@ -22,7 +22,7 @@ import ./make-test-python.nix ({ pkgs, lib, withFirewall, nftables ? false, ...
name = "nat" + (lib.optionalString nftables "Nftables")
+ (if withFirewall then "WithFirewall" else "Standalone");
meta = with pkgs.lib.maintainers; {
maintainers = [ eelco rob ];
maintainers = [ rob ];
};
nodes =

View File

@ -20,7 +20,7 @@ in
{
name = "nfs";
meta = with pkgs.lib.maintainers; {
maintainers = [ eelco ];
maintainers = [ ];
};
nodes =

View File

@ -5,7 +5,7 @@ let inherit (import ./ssh-keys.nix pkgs)
in {
name = "openssh";
meta = with pkgs.lib.maintainers; {
maintainers = [ aszlig eelco ];
maintainers = [ aszlig ];
};
nodes = {

View File

@ -9,7 +9,7 @@ import ./make-test-python.nix (
{
name = "printing";
meta = with pkgs.lib.maintainers; {
maintainers = [ domenkozar eelco matthewbauer ];
maintainers = [ domenkozar matthewbauer ];
};
nodes.server = { ... }: {

View File

@ -12,7 +12,7 @@ let
in {
name = "proxy";
meta = with pkgs.lib.maintainers; {
maintainers = [ eelco ];
maintainers = [ ];
};
nodes = {

View File

@ -32,7 +32,7 @@ in
rec {
name = "quake3";
meta = with lib.maintainers; {
maintainers = [ domenkozar eelco ];
maintainers = [ domenkozar ];
};
# TODO: lcov doesn't work atm

View File

@ -9,7 +9,7 @@ in
{
name = "rabbitmq";
meta = with pkgs.lib.maintainers; {
maintainers = [ eelco offline ];
maintainers = [ offline ];
};
nodes.machine = {

View File

@ -3,7 +3,7 @@ import ./make-test-python.nix ({ pkgs, ... }:
{
name = "samba";
meta.maintainers = [ pkgs.lib.maintainers.eelco ];
meta.maintainers = [ ];
nodes =
{ client =

View File

@ -1,7 +1,7 @@
import ./make-test-python.nix ({ pkgs, ...} : {
name = "simple";
meta = with pkgs.lib.maintainers; {
maintainers = [ eelco ];
maintainers = [ ];
};
nodes.machine = { ... }: {

View File

@ -2,6 +2,7 @@ import ./make-test-python.nix ({ pkgs, ... }:
let
# FIXME: 404s
stick = pkgs.fetchurl {
url = "https://nixos.org/~eelco/nix/udisks-test.img.xz";
sha256 = "0was1xgjkjad91nipzclaz5biv3m4b2nk029ga6nk7iklwi19l8b";
@ -12,7 +13,7 @@ in
{
name = "udisks2";
meta = with pkgs.lib.maintainers; {
maintainers = [ eelco ];
maintainers = [ ];
};
nodes.machine =