treewide: drop copumpkin from maintainers (#392486)

authored by

Aleksana and committed by
GitHub
64f024b8 20c44431

+22 -40
-6
maintainers/maintainer-list.nix
··· 4946 githubId = 32609395; 4947 name = "B YI"; 4948 }; 4949 - copumpkin = { 4950 - email = "pumpkingod@gmail.com"; 4951 - github = "copumpkin"; 4952 - githubId = 2623; 4953 - name = "Dan Peebles"; 4954 - }; 4955 corbanr = { 4956 email = "corban@raunco.co"; 4957 github = "CorbanR";
··· 4946 githubId = 32609395; 4947 name = "B YI"; 4948 }; 4949 corbanr = { 4950 email = "corban@raunco.co"; 4951 github = "CorbanR";
+2 -3
nixos/lib/make-disk-image.nix
··· 1 /* 2 Technical details 3 4 - `make-disk-image` has a bit of magic to minimize the amount of work to do in a virtual machine. 5 6 It relies on the [LKL (Linux Kernel Library) project](https://github.com/lkl/linux) which provides Linux kernel as userspace library. 7 ··· 447 mkdir -p $root 448 449 # Copy arbitrary other files into the image 450 - # Semi-shamelessly copied from make-etc.sh. I (@copumpkin) shall factor this stuff out as part of 451 - # https://github.com/NixOS/nixpkgs/issues/23052. 452 set -f 453 sources_=(${lib.concatStringsSep " " sources}) 454 targets_=(${lib.concatStringsSep " " targets})
··· 1 /* 2 Technical details 3 4 + `make-disk-image` has a bit of magic to minimize the amount of work to do in a virtual machine. It also might arguably have too much, or at least too specific magic, so please consider to work towards the effort of unifying our image builders, as outlined in https://github.com/NixOS/nixpkgs/issues/324817 before adding more. 5 6 It relies on the [LKL (Linux Kernel Library) project](https://github.com/lkl/linux) which provides Linux kernel as userspace library. 7 ··· 447 mkdir -p $root 448 449 # Copy arbitrary other files into the image 450 + # Semi-shamelessly copied from make-etc.sh. 451 set -f 452 sources_=(${lib.concatStringsSep " " sources}) 453 targets_=(${lib.concatStringsSep " " targets})
-1
pkgs/applications/networking/cluster/minikube/default.nix
··· 80 license = licenses.asl20; 81 maintainers = with maintainers; [ 82 ebzzry 83 - copumpkin 84 vdemeester 85 atkinschang 86 Chili-Man
··· 80 license = licenses.asl20; 81 maintainers = with maintainers; [ 82 ebzzry 83 vdemeester 84 atkinschang 85 Chili-Man
-1
pkgs/applications/virtualization/lkl/default.nix
··· 116 platforms = platforms.linux; # Darwin probably works too but I haven't tested it 117 license = licenses.gpl2; 118 maintainers = with maintainers; [ 119 - copumpkin 120 raitobezarius 121 ]; 122 };
··· 116 platforms = platforms.linux; # Darwin probably works too but I haven't tested it 117 license = licenses.gpl2; 118 maintainers = with maintainers; [ 119 raitobezarius 120 ]; 121 };
-1
pkgs/by-name/am/amazon-ssm-agent/package.nix
··· 176 license = licenses.asl20; 177 platforms = platforms.unix; 178 maintainers = with maintainers; [ 179 - copumpkin 180 manveru 181 anthonyroussel 182 arianvp
··· 176 license = licenses.asl20; 177 platforms = platforms.unix; 178 maintainers = with maintainers; [ 179 manveru 180 anthonyroussel 181 arianvp
+1 -1
pkgs/by-name/co/commonsBcel/package.nix
··· 23 homepage = "https://commons.apache.org/proper/commons-bcel/"; 24 description = "Gives users a convenient way to analyze, create, and manipulate (binary) Java class files"; 25 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 26 - maintainers = with lib.maintainers; [ copumpkin ]; 27 license = lib.licenses.asl20; 28 platforms = with lib.platforms; unix; 29 };
··· 23 homepage = "https://commons.apache.org/proper/commons-bcel/"; 24 description = "Gives users a convenient way to analyze, create, and manipulate (binary) Java class files"; 25 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 26 + maintainers = [ ]; 27 license = lib.licenses.asl20; 28 platforms = with lib.platforms; unix; 29 };
+1 -1
pkgs/by-name/co/commonsCompress/package.nix
··· 22 meta = { 23 homepage = "https://commons.apache.org/proper/commons-compress"; 24 description = "Allows manipulation of ar, cpio, Unix dump, tar, zip, gzip, XZ, Pack200, bzip2, 7z, arj, lzma, snappy, DEFLATE and Z files"; 25 - maintainers = with lib.maintainers; [ copumpkin ]; 26 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 27 license = lib.licenses.asl20; 28 platforms = with lib.platforms; unix;
··· 22 meta = { 23 homepage = "https://commons.apache.org/proper/commons-compress"; 24 description = "Allows manipulation of ar, cpio, Unix dump, tar, zip, gzip, XZ, Pack200, bzip2, 7z, arj, lzma, snappy, DEFLATE and Z files"; 25 + maintainers = [ ]; 26 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 27 license = lib.licenses.asl20; 28 platforms = with lib.platforms; unix;
+1 -1
pkgs/by-name/co/commonsFileUpload/package.nix
··· 21 meta = { 22 homepage = "https://commons.apache.org/proper/commons-fileupload"; 23 description = "Makes it easy to add robust, high-performance, file upload capability to your servlets and web applications"; 24 - maintainers = with lib.maintainers; [ copumpkin ]; 25 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 26 license = lib.licenses.asl20; 27 platforms = with lib.platforms; unix;
··· 21 meta = { 22 homepage = "https://commons.apache.org/proper/commons-fileupload"; 23 description = "Makes it easy to add robust, high-performance, file upload capability to your servlets and web applications"; 24 + maintainers = [ ]; 25 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 26 license = lib.licenses.asl20; 27 platforms = with lib.platforms; unix;
+1 -1
pkgs/by-name/co/commonsIo/package.nix
··· 22 meta = { 23 homepage = "https://commons.apache.org/proper/commons-io"; 24 description = "Library of utilities to assist with developing IO functionality"; 25 - maintainers = with lib.maintainers; [ copumpkin ]; 26 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 27 license = lib.licenses.asl20; 28 platforms = with lib.platforms; unix;
··· 22 meta = { 23 homepage = "https://commons.apache.org/proper/commons-io"; 24 description = "Library of utilities to assist with developing IO functionality"; 25 + maintainers = [ ]; 26 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 27 license = lib.licenses.asl20; 28 platforms = with lib.platforms; unix;
+1 -1
pkgs/by-name/co/commonsLang/package.nix
··· 25 description = "Provides additional methods to manipulate standard Java library classes"; 26 homepage = "https://commons.apache.org/proper/commons-lang"; 27 license = lib.licenses.asl20; 28 - maintainers = with lib.maintainers; [ copumpkin ]; 29 platforms = with lib.platforms; unix; 30 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 31 };
··· 25 description = "Provides additional methods to manipulate standard Java library classes"; 26 homepage = "https://commons.apache.org/proper/commons-lang"; 27 license = lib.licenses.asl20; 28 + maintainers = [ ]; 29 platforms = with lib.platforms; unix; 30 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 31 };
+1 -1
pkgs/by-name/co/commonsMath/package.nix
··· 22 meta = { 23 homepage = "https://commons.apache.org/proper/commons-math/"; 24 description = "Library of lightweight, self-contained mathematics and statistics components"; 25 - maintainers = with lib.maintainers; [ copumpkin ]; 26 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 27 license = lib.licenses.asl20; 28 platforms = with lib.platforms; unix;
··· 22 meta = { 23 homepage = "https://commons.apache.org/proper/commons-math/"; 24 description = "Library of lightweight, self-contained mathematics and statistics components"; 25 + maintainers = [ ]; 26 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 27 license = lib.licenses.asl20; 28 platforms = with lib.platforms; unix;
+1 -1
pkgs/by-name/cr/createrepo_c/package.nix
··· 65 homepage = "https://rpm-software-management.github.io/createrepo_c/"; 66 license = licenses.gpl2Plus; 67 platforms = platforms.unix; 68 - maintainers = with maintainers; [ copumpkin ]; 69 }; 70 }
··· 65 homepage = "https://rpm-software-management.github.io/createrepo_c/"; 66 license = licenses.gpl2Plus; 67 platforms = platforms.unix; 68 + maintainers = [ ]; 69 }; 70 }
+1 -1
pkgs/by-name/ec/ecs-agent/package.nix
··· 32 changelog = "https://github.com/aws/amazon-ecs-agent/raw/v${version}/CHANGELOG.md"; 33 license = licenses.asl20; 34 platforms = platforms.linux; 35 - maintainers = with maintainers; [ copumpkin ]; 36 mainProgram = "agent"; 37 }; 38 }
··· 32 changelog = "https://github.com/aws/amazon-ecs-agent/raw/v${version}/CHANGELOG.md"; 33 license = licenses.asl20; 34 platforms = platforms.linux; 35 + maintainers = [ ]; 36 mainProgram = "agent"; 37 }; 38 }
-1
pkgs/by-name/js/jsonnet/package.nix
··· 59 description = "Purely-functional configuration language that helps you define JSON data"; 60 maintainers = with lib.maintainers; [ 61 benley 62 - copumpkin 63 ]; 64 license = lib.licenses.asl20; 65 homepage = "https://github.com/google/jsonnet";
··· 59 description = "Purely-functional configuration language that helps you define JSON data"; 60 maintainers = with lib.maintainers; [ 61 benley 62 ]; 63 license = lib.licenses.asl20; 64 homepage = "https://github.com/google/jsonnet";
+1 -1
pkgs/by-name/li/libsolv/package.nix
··· 66 homepage = "https://github.com/openSUSE/libsolv"; 67 license = licenses.bsd3; 68 platforms = platforms.linux ++ platforms.darwin; 69 - maintainers = with maintainers; [ copumpkin ]; 70 }; 71 }
··· 66 homepage = "https://github.com/openSUSE/libsolv"; 67 license = licenses.bsd3; 68 platforms = platforms.linux ++ platforms.darwin; 69 + maintainers = [ ]; 70 }; 71 }
+1 -1
pkgs/by-name/mi/micro-httpd/package.nix
··· 24 description = "Really small HTTP server"; 25 license = licenses.bsd2; 26 platforms = platforms.unix; 27 - maintainers = with maintainers; [ copumpkin ]; 28 mainProgram = "micro_httpd"; 29 }; 30 }
··· 24 description = "Really small HTTP server"; 25 license = licenses.bsd2; 26 platforms = platforms.unix; 27 + maintainers = [ ]; 28 mainProgram = "micro_httpd"; 29 }; 30 }
+1 -1
pkgs/by-name/os/ostree/package.nix
··· 181 homepage = "https://ostreedev.github.io/ostree/"; 182 license = licenses.lgpl2Plus; 183 platforms = platforms.linux; 184 - maintainers = with maintainers; [ copumpkin ]; 185 }; 186 })
··· 181 homepage = "https://ostreedev.github.io/ostree/"; 182 license = licenses.lgpl2Plus; 183 platforms = platforms.linux; 184 + maintainers = [ ]; 185 }; 186 })
-1
pkgs/by-name/pa/paxtest/package.nix
··· 30 license = licenses.gpl2Only; 31 platforms = platforms.linux; 32 maintainers = with maintainers; [ 33 - copumpkin 34 joachifm 35 ]; 36 };
··· 30 license = licenses.gpl2Only; 31 platforms = platforms.linux; 32 maintainers = with maintainers; [ 33 joachifm 34 ]; 35 };
+1 -1
pkgs/by-name/rp/rpm-ostree/package.nix
··· 125 description = "Hybrid image/package system. It uses OSTree as an image format, and uses RPM as a component model"; 126 homepage = "https://coreos.github.io/rpm-ostree/"; 127 license = licenses.lgpl2Plus; 128 - maintainers = with maintainers; [ copumpkin ]; 129 platforms = platforms.linux; 130 mainProgram = "rpm-ostree"; 131 };
··· 125 description = "Hybrid image/package system. It uses OSTree as an image format, and uses RPM as a component model"; 126 homepage = "https://coreos.github.io/rpm-ostree/"; 127 license = licenses.lgpl2Plus; 128 + maintainers = [ ]; 129 platforms = platforms.linux; 130 mainProgram = "rpm-ostree"; 131 };
-1
pkgs/by-name/so/souffle/package.nix
··· 97 platforms = platforms.unix; 98 maintainers = with maintainers; [ 99 thoughtpolice 100 - copumpkin 101 wchresta 102 markusscherer 103 ];
··· 97 platforms = platforms.unix; 98 maintainers = with maintainers; [ 99 thoughtpolice 100 wchresta 101 markusscherer 102 ];
+1 -3
pkgs/by-name/xa/xar/package.nix
··· 183 homepage = "https://github.com/apple-oss-distributions/xar"; 184 description = "An easily extensible archive format"; 185 license = lib.licenses.bsd3; 186 - maintainers = 187 - lib.teams.darwin.members 188 - ++ lib.attrValues { inherit (lib.maintainers) copumpkin tie; }; 189 platforms = lib.platforms.unix; 190 mainProgram = "xar"; 191 };
··· 183 homepage = "https://github.com/apple-oss-distributions/xar"; 184 description = "An easily extensible archive format"; 185 license = lib.licenses.bsd3; 186 + maintainers = lib.teams.darwin.members ++ lib.attrValues { inherit (lib.maintainers) tie; }; 187 platforms = lib.platforms.unix; 188 mainProgram = "xar"; 189 };
+1 -1
pkgs/development/python-modules/ansicolors/default.nix
··· 26 homepage = "https://github.com/verigak/colors/"; 27 description = "ANSI colors for Python"; 28 license = licenses.isc; 29 - maintainers = with maintainers; [ copumpkin ]; 30 }; 31 }
··· 26 homepage = "https://github.com/verigak/colors/"; 27 description = "ANSI colors for Python"; 28 license = licenses.isc; 29 + maintainers = [ ]; 30 }; 31 }
-1
pkgs/development/python-modules/lmdb/default.nix
··· 40 changelog = "https://github.com/jnwatson/py-lmdb/blob/py-lmdb_${version}/ChangeLog"; 41 license = lib.licenses.openldap; 42 maintainers = with lib.maintainers; [ 43 - copumpkin 44 ivan 45 ]; 46 };
··· 40 changelog = "https://github.com/jnwatson/py-lmdb/blob/py-lmdb_${version}/ChangeLog"; 41 license = lib.licenses.openldap; 42 maintainers = with lib.maintainers; [ 43 ivan 44 ]; 45 };
+1 -1
pkgs/development/python-modules/pathspec/default.nix
··· 42 homepage = "https://github.com/cpburnz/python-path-specification"; 43 changelog = "https://github.com/cpburnz/python-pathspec/blob/v${version}/CHANGES.rst"; 44 license = lib.licenses.mpl20; 45 - maintainers = with lib.maintainers; [ copumpkin ]; 46 }; 47 }
··· 42 homepage = "https://github.com/cpburnz/python-path-specification"; 43 changelog = "https://github.com/cpburnz/python-pathspec/blob/v${version}/CHANGES.rst"; 44 license = lib.licenses.mpl20; 45 + maintainers = [ ]; 46 }; 47 }
+1 -3
pkgs/development/python-modules/pex/default.nix
··· 64 homepage = "https://github.com/pantsbuild/pex"; 65 changelog = "https://github.com/pantsbuild/pex/releases/tag/v${version}"; 66 license = licenses.asl20; 67 - maintainers = with maintainers; [ 68 - copumpkin 69 - ]; 70 }; 71 }
··· 64 homepage = "https://github.com/pantsbuild/pex"; 65 changelog = "https://github.com/pantsbuild/pex/releases/tag/v${version}"; 66 license = licenses.asl20; 67 + maintainers = [ ]; 68 }; 69 }
+1 -1
pkgs/development/python-modules/python-gnupg/default.nix
··· 41 homepage = "https://github.com/vsajip/python-gnupg"; 42 changelog = "https://github.com/vsajip/python-gnupg/releases/tag/${version}"; 43 license = licenses.bsd3; 44 - maintainers = with maintainers; [ copumpkin ]; 45 }; 46 }
··· 41 homepage = "https://github.com/vsajip/python-gnupg"; 42 changelog = "https://github.com/vsajip/python-gnupg/releases/tag/${version}"; 43 license = licenses.bsd3; 44 + maintainers = [ ]; 45 }; 46 }
+1 -1
pkgs/stdenv/darwin/stdenv-bootstrap-tools.nix
··· 292 }; 293 294 meta = { 295 - maintainers = [ lib.maintainers.copumpkin ]; 296 }; 297 })
··· 292 }; 293 294 meta = { 295 + maintainers = lib.teams.darwin.members; 296 }; 297 })
+1 -1
pkgs/tools/package-management/librepo/default.nix
··· 72 homepage = "https://rpm-software-management.github.io/librepo/"; 73 license = licenses.lgpl2Plus; 74 platforms = platforms.linux; 75 - maintainers = with maintainers; [ copumpkin ]; 76 }; 77 }
··· 72 homepage = "https://rpm-software-management.github.io/librepo/"; 73 license = licenses.lgpl2Plus; 74 platforms = platforms.linux; 75 + maintainers = [ ]; 76 }; 77 }
+1 -1
pkgs/tools/package-management/rpm/default.nix
··· 143 lgpl21Plus 144 ]; 145 description = "RPM Package Manager"; 146 - maintainers = with maintainers; [ copumpkin ]; 147 platforms = platforms.linux ++ platforms.darwin; 148 }; 149 }
··· 143 lgpl21Plus 144 ]; 145 description = "RPM Package Manager"; 146 + maintainers = [ ]; 147 platforms = platforms.linux ++ platforms.darwin; 148 }; 149 }