Skip to content

Commit

Permalink
Revert "PHP maintainer team"
Browse files Browse the repository at this point in the history
  • Loading branch information
etu committed Apr 29, 2020
1 parent 3b21abb commit 410c38f
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 87 deletions.
3 changes: 1 addition & 2 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Expand Up @@ -176,7 +176,6 @@

# PHP
/doc/languages-frameworks/php.section.md @etu
/nixos/tests/php @etu
/pkgs/build-support/build-pecl.nix @etu
/pkgs/development/interpreters/php @etu
/pkgs/top-level/php-packages.nix @etu
/pkgs/build-support/build-pecl.nix @etu
11 changes: 0 additions & 11 deletions maintainers/team-list.nix
Expand Up @@ -43,17 +43,6 @@ with lib.maintainers; {
scope = "Maintain GNOME desktop environment and platform.";
};

php = {
members = [
aanderse
etu
globin
ma27
talyz
];
scope = "Maintain PHP related packages and extensions.";
};

podman = {
members = [
adisbladis
Expand Down
4 changes: 2 additions & 2 deletions nixos/tests/php/fpm.nix
@@ -1,6 +1,6 @@
import ../make-test-python.nix ({pkgs, lib, ...}: {
import ../make-test-python.nix ({pkgs, ...}: {
name = "php-fpm-nginx-test";
meta.maintainers = lib.teams.php.members;
meta.maintainers = with pkgs.stdenv.lib.maintainers; [ etu ];

machine = { config, lib, pkgs, ... }: {
services.nginx = {
Expand Down
4 changes: 2 additions & 2 deletions nixos/tests/php/httpd.nix
@@ -1,6 +1,6 @@
import ../make-test-python.nix ({pkgs, lib, ...}: {
import ../make-test-python.nix ({pkgs, ...}: {
name = "php-httpd-test";
meta.maintainers = lib.teams.php.members;
meta.maintainers = with pkgs.stdenv.lib.maintainers; [ etu ];

machine = { config, lib, pkgs, ... }: {
services.httpd = {
Expand Down
4 changes: 1 addition & 3 deletions nixos/tests/php/pcre.nix
@@ -1,9 +1,7 @@
let
testString = "can-use-subgroups";
in import ../make-test-python.nix ({lib, ...}: {
in import ../make-test-python.nix ({ ...}: {
name = "php-httpd-pcre-jit-test";
meta.maintainers = lib.teams.php.members;

machine = { lib, pkgs, ... }: {
time.timeZone = "UTC";
services.httpd = {
Expand Down
5 changes: 2 additions & 3 deletions pkgs/development/interpreters/php/default.nix
Expand Up @@ -138,9 +138,9 @@ let

meta = with stdenv.lib; {
description = "An HTML-embedded scripting language";
homepage = "https://www.php.net";
homepage = "https://www.php.net/";
license = licenses.php301;
maintainers = teams.php.members;
maintainers = with maintainers; [ globin etu ma27 ];
platforms = platforms.all;
outputsToInstall = [ "out" "dev" ];
};
Expand Down Expand Up @@ -194,7 +194,6 @@ let
passthru = {
inherit buildEnv withExtensions enabledExtensions;
inherit (php-packages) packages extensions;
inherit (php) meta;
};
paths = [ php ];
postBuild = ''
Expand Down

0 comments on commit 410c38f

Please sign in to comment.