fix(meta): comment out maintainer attributes still using teams

this is pending figuring out the system we want to use for
maintainers/teams, and keeps everything evaluating in the meantime.
This commit is contained in:
tcmal 2024-05-13 20:05:39 +01:00
parent 7bcd1a9002
commit 284538ad90
20 changed files with 19 additions and 23 deletions

View file

@ -118,7 +118,7 @@ stdenv.mkDerivation rec {
homepage = "https://www.freedesktop.org/wiki/Software/dbus/";
changelog = "https://gitlab.freedesktop.org/dbus/dbus/-/blob/dbus-${version}/NEWS";
license = licenses.gpl2Plus; # most is also under AFL-2.1
maintainers = teams.freedesktop.members ++ (with maintainers; [ ]);
# maintainers = teams.freedesktop.members ++ (with maintainers; [ ]);
platforms = platforms.unix;
};
}

View file

@ -277,7 +277,7 @@ stdenv.mkDerivation (finalAttrs: {
description = "C library of programming buildings blocks";
homepage = "https://gitlab.gnome.org/GNOME/glib";
license = licenses.lgpl21Plus;
maintainers = teams.gnome.members ++ (with maintainers; [ lovek323 raskin ]);
# maintainers = teams.gnome.members ++ (with maintainers; [ lovek323 raskin ]);
pkgConfigModules = [
"gio-2.0"
"gobject-2.0"

View file

@ -219,7 +219,7 @@ stdenv.mkDerivation (finalAttrs: {
description = "A small library to render SVG images to Cairo surfaces";
homepage = "hhttps://gitlab.gnome.org/GNOME/librsvg";
license = licenses.lgpl2Plus;
maintainers = teams.gnome.members;
# maintainers = teams.gnome.members;
mainProgram = "rsvg-convert";
platforms = platforms.unix;
};

View file

@ -11,7 +11,7 @@
}
, docCargoHash ? null
, patches ? [ ]
, maintainers ? lib.teams.lix.members
, maintainers ? []
,
}@args:
assert (hash == null) -> (src != null);

View file

@ -9,7 +9,7 @@
rec {
llvm_meta = {
license = lib.licenses.ncsa;
maintainers = lib.teams.llvm.members;
# maintainers = lib.teams.llvm.members;
# See llvm/cmake/config-ix.cmake.
platforms =

View file

@ -135,7 +135,7 @@ stdenv.mkDerivation rec {
homepage = "https://www.openldap.org/";
description = "An open source implementation of the Lightweight Directory Access Protocol";
license = licenses.openldap;
maintainers = with maintainers; [ hexa ] ++ teams.helsinki-systems.members;
# maintainers = with maintainers; [ hexa ] ++ teams.helsinki-systems.members;
platforms = platforms.unix;
};
}

View file

@ -13,7 +13,7 @@ in
};
extraPatches = [ ./ssh-keysign-8.5.patch ];
extraMeta.maintainers = lib.teams.helsinki-systems.members;
# extraMeta.maintainers = lib.teams.helsinki-systems.members;
};
openssh_hpn = common rec {

View file

@ -119,7 +119,7 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://www.pango.org/";
license = licenses.lgpl2Plus;
maintainers = with maintainers; [ raskin ] ++ teams.gnome.members;
# maintainers = with maintainers; [ raskin ] ++ teams.gnome.members;
platforms = platforms.unix;
pkgConfigModules = [

View file

@ -16,10 +16,6 @@ self:
# cpan2nix assumes that perl-packages.nix will be used only with perl 5.30.3 or above
assert lib.versionAtLeast perl.version "5.30.3";
let
inherit (lib) maintainers teams;
in
with self; {
inherit perl;

View file

@ -108,6 +108,6 @@ buildPythonPackage rec {
homepage = "https://github.com/pypa/build";
changelog = "https://github.com/pypa/build/blob/${version}/CHANGELOG.rst";
license = licenses.mit;
maintainers = teams.python.members ++ [ maintainers.fab ];
# maintainers = teams.python.members ++ [ maintainers.fab ];
};
}

View file

@ -78,6 +78,6 @@ if isPyPy then null else buildPythonPackage rec {
downloadPage = "https://github.com/python-cffi/cffi";
homepage = "https://cffi.readthedocs.org/";
license = licenses.mit;
maintainers = teams.python.members;
# maintainers = teams.python.members;
};
}

View file

@ -24,6 +24,6 @@ buildPythonPackage rec {
homepage = "https://github.com/pypa/flit";
changelog = "https://github.com/pypa/flit/blob/${src.rev}/doc/history.rst";
license = licenses.bsd3;
maintainers = teams.python.members;
# maintainers = teams.python.members;
};
}

View file

@ -55,6 +55,6 @@ buildPythonPackage rec {
homepage = "https://github.com/pypa/installer";
changelog = "https://github.com/pypa/installer/blob/${src.rev}/docs/changelog.md";
license = licenses.mit;
maintainers = teams.python.members ++ [ ];
# maintainers = teams.python.members ++ [ ];
};
}

View file

@ -53,7 +53,7 @@ let
downloadPage = "https://github.com/pypa/packaging";
homepage = "https://packaging.pypa.io/";
license = with licenses; [ bsd2 asl20 ];
maintainers = teams.python.members ++ (with maintainers; [ bennofs ]);
# maintainers = teams.python.members ++ (with maintainers; [ bennofs ]);
};
};
in

View file

@ -69,6 +69,6 @@ buildPythonPackage rec {
homepage = "https://github.com/pypa/pyproject-hooks";
changelog = "https://github.com/pypa/pyproject-hooks/blob/v${version}/docs/changelog.rst";
license = licenses.mit;
maintainers = teams.python.members;
# maintainers = teams.python.members;
};
}

View file

@ -40,6 +40,6 @@ buildPythonPackage rec {
changelog = "https://setuptools.pypa.io/en/stable/history.html#v${replaceStrings [ "." ] [ "-" ] version}";
license = with licenses; [ mit ];
platforms = python.meta.platforms;
maintainers = teams.python.members;
# maintainers = teams.python.members;
};
}

View file

@ -73,7 +73,7 @@ rustPlatform.buildRustPackage.override {
homepage = "https://crates.io";
description = "Downloads your Rust project's dependencies and builds your project";
mainProgram = "cargo";
maintainers = teams.rust.members;
# maintainers = teams.rust.members;
license = [ licenses.mit licenses.asl20 ];
platforms = platforms.unix;
# https://github.com/alexcrichton/nghttp2-rs/issues/2

View file

@ -39,7 +39,7 @@ rustPlatform.buildRustPackage {
homepage = "https://rust-lang.github.io/rust-clippy/";
description = "A bunch of lints to catch common mistakes and improve your Rust code";
mainProgram = "cargo-clippy";
maintainers = with maintainers; [ basvandijk ] ++ teams.rust.members;
# maintainers = with maintainers; [ basvandijk ] ++ teams.rust.members;
license = with licenses; [ mit asl20 ];
platforms = platforms.unix;
};

View file

@ -268,7 +268,7 @@ in stdenv.mkDerivation (finalAttrs: {
meta = with lib; {
homepage = "https://www.rust-lang.org/";
description = "A safe, concurrent, practical language";
maintainers = with maintainers; [ havvy ] ++ teams.rust.members;
# maintainers = with maintainers; [ havvy ] ++ teams.rust.members;
license = [ licenses.mit licenses.asl20 ];
platforms = [
# Platforms with host tools from

View file

@ -175,7 +175,7 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://tracker.gnome.org/";
description = "Desktop-neutral user information store, search tool and indexer";
mainProgram = "tracker3";
maintainers = teams.gnome.members;
# maintainers = teams.gnome.members;
license = licenses.gpl2Plus;
platforms = platforms.unix;
pkgConfigModules = [ "tracker-sparql-3.0" "tracker-testutils-3.0" ];