From 3e01d420248ff13630a2c0a7cfd95ce56e9fd846 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Thu, 22 Apr 2021 11:28:57 +0200 Subject: [PATCH] maintainers: remove tavyc Their last commit was dcc84d8 from 2017. Thank you for your contributions. --- maintainers/maintainer-list.nix | 6 ------ nixos/modules/services/networking/quagga.nix | 2 +- nixos/tests/quagga.nix | 2 +- pkgs/development/libraries/libraspberrypi/default.nix | 2 +- pkgs/os-specific/linux/firmware/raspberrypi/default.nix | 2 +- pkgs/servers/quagga/default.nix | 2 +- 6 files changed, 5 insertions(+), 11 deletions(-) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 28413f04f8d..b8de823c9af 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -9687,12 +9687,6 @@ githubId = 102685; name = "Thomas Friese"; }; - tavyc = { - email = "octavian.cerna@gmail.com"; - github = "tavyc"; - githubId = 3650609; - name = "Octavian Cerna"; - }; tazjin = { email = "mail@tazj.in"; github = "tazjin"; diff --git a/nixos/modules/services/networking/quagga.nix b/nixos/modules/services/networking/quagga.nix index 7c169fe62d8..001a5c2b0ce 100644 --- a/nixos/modules/services/networking/quagga.nix +++ b/nixos/modules/services/networking/quagga.nix @@ -180,6 +180,6 @@ in }; - meta.maintainers = with lib.maintainers; [ tavyc ]; + meta.maintainers = with lib.maintainers; [ ]; } diff --git a/nixos/tests/quagga.nix b/nixos/tests/quagga.nix index 9aed49bf452..1067f9eebb2 100644 --- a/nixos/tests/quagga.nix +++ b/nixos/tests/quagga.nix @@ -24,7 +24,7 @@ import ./make-test-python.nix ({ pkgs, ... }: name = "quagga"; meta = with pkgs.lib.maintainers; { - maintainers = [ tavyc ]; + maintainers = [ ]; }; nodes = { diff --git a/pkgs/development/libraries/libraspberrypi/default.nix b/pkgs/development/libraries/libraspberrypi/default.nix index d4d69ed6aff..8ffe8f488b2 100644 --- a/pkgs/development/libraries/libraspberrypi/default.nix +++ b/pkgs/development/libraries/libraspberrypi/default.nix @@ -35,6 +35,6 @@ stdenv.mkDerivation rec { homepage = "https://github.com/raspberrypi/userland"; license = licenses.bsd3; platforms = [ "armv6l-linux" "armv7l-linux" "aarch64-linux" "x86_64-linux" ]; - maintainers = with maintainers; [ dezgeg tavyc tkerber ]; + maintainers = with maintainers; [ dezgeg tkerber ]; }; } diff --git a/pkgs/os-specific/linux/firmware/raspberrypi/default.nix b/pkgs/os-specific/linux/firmware/raspberrypi/default.nix index 7e0c48a439d..6a826f63966 100644 --- a/pkgs/os-specific/linux/firmware/raspberrypi/default.nix +++ b/pkgs/os-specific/linux/firmware/raspberrypi/default.nix @@ -25,6 +25,6 @@ stdenvNoCC.mkDerivation rec { description = "Firmware for the Raspberry Pi board"; homepage = "https://github.com/raspberrypi/firmware"; license = licenses.unfreeRedistributableFirmware; # See https://github.com/raspberrypi/firmware/blob/master/boot/LICENCE.broadcom - maintainers = with maintainers; [ dezgeg tavyc ]; + maintainers = with maintainers; [ dezgeg ]; }; } diff --git a/pkgs/servers/quagga/default.nix b/pkgs/servers/quagga/default.nix index c3c69fa79b6..2e2fac575a6 100644 --- a/pkgs/servers/quagga/default.nix +++ b/pkgs/servers/quagga/default.nix @@ -68,6 +68,6 @@ stdenv.mkDerivation rec { homepage = "https://www.nongnu.org/quagga/"; license = licenses.gpl2; platforms = platforms.unix; - maintainers = with maintainers; [ tavyc ]; + maintainers = with maintainers; [ ]; }; }