From 962a2f26a09b4145c64329c5335477533d6bbe9c Mon Sep 17 00:00:00 2001 From: Flakebi Date: Thu, 24 Jun 2021 23:54:59 +0200 Subject: [PATCH 1/4] salt: 3003 -> 3003.1 Need to patch out the contextvars dependency (which is included in python 3.7+). The same patch is discussed in arch: https://bugs.archlinux.org/task/71344 (cherry picked from commit c0b46c6b596dd25f32733ff01156d3d769640ab5) --- pkgs/tools/admin/salt/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/admin/salt/default.nix b/pkgs/tools/admin/salt/default.nix index 38ece95e3a4..0620bb28534 100644 --- a/pkgs/tools/admin/salt/default.nix +++ b/pkgs/tools/admin/salt/default.nix @@ -7,11 +7,11 @@ }: python3.pkgs.buildPythonApplication rec { pname = "salt"; - version = "3003"; + version = "3003.1"; src = python3.pkgs.fetchPypi { inherit pname version; - sha256 = "xGiXM9/nOM8ofjHLP908uNFgYpUgKxjY5m1I03LVync="; + sha256 = "inGE095NFydhjw0/u6eeVDia7/hbcvTOuCALzBZ/br4="; }; propagatedBuildInputs = with python3.pkgs; [ @@ -31,6 +31,8 @@ python3.pkgs.buildPythonApplication rec { postPatch = '' substituteInPlace "salt/utils/rsax931.py" \ --subst-var-by "libcrypto" "${openssl.out}/lib/libcrypto.so" + substituteInPlace requirements/base.txt \ + --replace contextvars "" ''; # The tests fail due to socket path length limits at the very least; From 348d0b06265bafd9f32f2d55c1c5d986ac9e539c Mon Sep 17 00:00:00 2001 From: Flakebi Date: Thu, 19 Aug 2021 18:28:05 +0200 Subject: [PATCH 2/4] salt: 3003.1 -> 3003.2 (cherry picked from commit da3e6504941a8162f08a9b1e99914d807deada71) --- pkgs/tools/admin/salt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/admin/salt/default.nix b/pkgs/tools/admin/salt/default.nix index 0620bb28534..cd4abc51bcf 100644 --- a/pkgs/tools/admin/salt/default.nix +++ b/pkgs/tools/admin/salt/default.nix @@ -7,11 +7,11 @@ }: python3.pkgs.buildPythonApplication rec { pname = "salt"; - version = "3003.1"; + version = "3003.2"; src = python3.pkgs.fetchPypi { inherit pname version; - sha256 = "inGE095NFydhjw0/u6eeVDia7/hbcvTOuCALzBZ/br4="; + sha256 = "c8hsRLF22M/cAzux5C5P3I3TQkgz+qLqDQk4+hc4Vqk="; }; propagatedBuildInputs = with python3.pkgs; [ From e6e7e3df1bf5d665c74bd85e5dc89256a35a3e5a Mon Sep 17 00:00:00 2001 From: Flakebi Date: Fri, 3 Sep 2021 20:31:14 +0200 Subject: [PATCH 3/4] salt: 3003.2 -> 3003.3 (cherry picked from commit 4ad4ae68c427ef8458be34051b4e545eb752811c) --- pkgs/tools/admin/salt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/admin/salt/default.nix b/pkgs/tools/admin/salt/default.nix index cd4abc51bcf..9e411e1ae3a 100644 --- a/pkgs/tools/admin/salt/default.nix +++ b/pkgs/tools/admin/salt/default.nix @@ -7,11 +7,11 @@ }: python3.pkgs.buildPythonApplication rec { pname = "salt"; - version = "3003.2"; + version = "3003.3"; src = python3.pkgs.fetchPypi { inherit pname version; - sha256 = "c8hsRLF22M/cAzux5C5P3I3TQkgz+qLqDQk4+hc4Vqk="; + sha256 = "pvnIyLXiYA6oYgtKZzcd4XYRvrT42X5LubCzCKN+0eI="; }; propagatedBuildInputs = with python3.pkgs; [ From 0352b72f3c8160a99af51e09523848828b2e429c Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 24 May 2021 20:17:02 +0000 Subject: [PATCH 4/4] lief: 0.11.4 -> 0.11.5 (cherry picked from commit 9d396b5600b018f84e90e56c61dfaef1b149e330) --- pkgs/development/libraries/lief/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/lief/default.nix b/pkgs/development/libraries/lief/default.nix index 872327ed4b8..70640806190 100644 --- a/pkgs/development/libraries/lief/default.nix +++ b/pkgs/development/libraries/lief/default.nix @@ -10,13 +10,13 @@ let in stdenv.mkDerivation rec { pname = "lief"; - version = "0.11.4"; + version = "0.11.5"; src = fetchFromGitHub { owner = "lief-project"; repo = "LIEF"; rev = version; - sha256 = "DgsTrJ2+zdXJK6CdDOan7roakaaxQiwrVeiQnzJnk0A="; + sha256 = "sha256-crYFBeX+YaIvVAv3uvGEeNCg+ZbUryr0NacDG56TUGE="; }; outputs = [ "out" "py" ];