!jngDrdMgndWibPCYsR:nixos.org

Nix PHP

75 Members
A room for PHP developers running on Nix22 Servers

Load older messages


SenderMessageTime
29 Dec 2022
@drupol:matrix.orgPol The idea here is to make sure we can upgrade packages and extension by using something likenix-update -u --commit php.packages.grumphp ! 11:04:01
@drupol:matrix.orgPolThat said11:06:27
@drupol:matrix.orgPol I think there is an issue with nix-update. 11:06:37
@drupol:matrix.orgPolIf you can confirm... 11:06:42
@drupol:matrix.orgPol
  1. cd nixpkgs
    git checkout master
11:06:58
@drupol:matrix.orgPol *
  1. cd nixpkgs
  2. git checkout master
  3. git pull
  4. nix edit .#php.extensions.xdebug
  5. Replace the content of that derivation with the previous version:
{ buildPecl, lib, fetchFromGitHub, nix-update-script }:

let
  version = "3.1.0";
in buildPecl {
  inherit version;

  pname = "xdebug";

  src = fetchFromGitHub {
    owner = "xdebug";
    repo = "xdebug";
    rev = version;
    sha256 = "sha256-eT/N+mPhI1DyUKi+S770bWK09+CzmI1ZqnrxTXr5A2U=";
  };

  doCheck = true;
  checkTarget = "test";

  zendExtension = true;

  passthru = {
    updateScript = nix-update-script {};
  };

  meta = with lib; {
    changelog = "https://github.com/xdebug/xdebug/releases/tag/${version}";
    description = "Provides functions for function traces and profiling";
    license = licenses.php301;
    homepage = "https://xdebug.org/";
    maintainers = teams.php.members;
  };
}
11:08:54
@drupol:matrix.orgPol *
  1. cd nixpkgs
  2. git checkout master
  3. git pull
  4. nix edit .#php.extensions.xdebug
  5. Replace the content of that derivation with the previous version:
{ buildPecl, lib, fetchFromGitHub, nix-update-script }:

let
  version = "3.1.0";
in buildPecl {
  inherit version;

  pname = "xdebug";

  src = fetchFromGitHub {
    owner = "xdebug";
    repo = "xdebug";
    rev = version;
    sha256 = "sha256-eT/N+mPhI1DyUKi+S770bWK09+CzmI1ZqnrxTXr5A2U=";
  };

  doCheck = true;
  checkTarget = "test";

  zendExtension = true;

  passthru = {
    updateScript = nix-update-script {};
  };

  meta = with lib; {
    changelog = "https://github.com/xdebug/xdebug/releases/tag/${version}";
    description = "Provides functions for function traces and profiling";
    license = licenses.php301;
    homepage = "https://xdebug.org/";
    maintainers = teams.php.members;
  };
}
  1. Run nix-update --commit php.extensions.xdebug
11:09:33
@drupol:matrix.orgPolAs you can see, it doesn't get updated.11:09:54
@drupol:matrix.orgPol There is something going on since the last update of nix-update. I'm pretty sure this was working when I started to do the PR ! 11:10:16
@drupol:matrix.orgPol * As you can see, it doesn't get updated. The derivation should be updated to 3.2.0, but it doesn't.11:11:28
@drupol:matrix.orgPolimage.png
Download image.png
11:12:10
@drupol:matrix.orgPol We can see in the log: Update 3.1.0 -> 3.2.0 11:12:26
@drupol:matrix.orgPol Maybe Jan Tojnar has an idea since he made a review point asking me to remove the attrName from the commits at https://github.com/NixOS/nixpkgs/pull/207605#pullrequestreview-1230907654 11:17:59
@drupol:matrix.orgPol * Maybe Jan Tojnar has an idea since he made a review point asking me to remove the attrPath from the commits at https://github.com/NixOS/nixpkgs/pull/207605#pullrequestreview-1230907654 11:18:14
@drupol:matrix.orgPol * 🛑 I think there is an issue with nix-update. 11:20:24
@drupol:matrix.orgPol *
  1. cd nixpkgs
  2. git checkout master
  3. git pull
  4. open pkgs/development/php-packages/xdebug/default.nix
  5. Replace the content of that derivation with the previous version:
{ buildPecl, lib, fetchFromGitHub, nix-update-script }:

let
  version = "3.1.0";
in buildPecl {
  inherit version;

  pname = "xdebug";

  src = fetchFromGitHub {
    owner = "xdebug";
    repo = "xdebug";
    rev = version;
    sha256 = "sha256-eT/N+mPhI1DyUKi+S770bWK09+CzmI1ZqnrxTXr5A2U=";
  };

  doCheck = true;
  checkTarget = "test";

  zendExtension = true;

  passthru = {
    updateScript = nix-update-script {};
  };

  meta = with lib; {
    changelog = "https://github.com/xdebug/xdebug/releases/tag/${version}";
    description = "Provides functions for function traces and profiling";
    license = licenses.php301;
    homepage = "https://xdebug.org/";
    maintainers = teams.php.members;
  };
}
  1. Run nix-update --commit php.extensions.xdebug
11:23:22
@drupol:matrix.orgPolI'm discussing with @mic92 in the meantime. I think this PR should not be merged anymore.11:30:13
@drupol:matrix.orgPolimage.png
Download image.png
11:30:49
@drupol:matrix.orgPolIssue fixed: https://github.com/Mic92/nix-update/pull/12313:08:34
@drupol:matrix.orgPol tgerbet: Issue is fixed in nix-update, @mic92 will commit the change as soon as the PHP PR is merged ! 13:13:16
@drupol:matrix.orgPol tgerbet: I updated the PR accordingly, I simplified things as well, I guess it's much better. Let me know what you think. 16:42:47
@drupol:matrix.orgPol tgerbet: I found a better solution again... 17:24:24
@drupol:matrix.orgPolSorry for the back and forth.17:25:47
@drupol:matrix.orgPolI stop touching it now :)17:25:51
@drupol:matrix.orgPolIt's ready for me :)17:25:57
@tgerbet:matrix.orgtgerbet
In reply to @drupol:matrix.org
Sorry for the back and forth.
It's fine, I just wish GitHub had a the possibility to see changes between two reviews like Gerrit 😅
17:28:25
@tgerbet:matrix.orgtgerbet
In reply to @drupol:matrix.org
Sorry for the back and forth.
* It's fine, I just wish GitHub had the possibility to see changes between two reviews like Gerrit 😅
17:28:40
@drupol:matrix.orgPolMe too17:28:58
@drupol:matrix.orgPol Basicaly, I made the most changes in it: build-pecl.nix and php-packages.nix 17:29:58
@drupol:matrix.orgPolMerci !18:37:32

There are no newer messages yet.


Back to Room ListRoom Version: 6