Unverified Commit 8acb1ffe authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python312Packages.angr: 9.2.146 -> 9.2.147 (#392155)

parents 330010bf 3403ed92
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@

buildPythonPackage rec {
  pname = "ailment";
  version = "9.2.146";
  version = "9.2.147";
  pyproject = true;

  disabled = pythonOlder "3.11";
@@ -20,7 +20,7 @@ buildPythonPackage rec {
    owner = "angr";
    repo = "ailment";
    tag = "v${version}";
    hash = "sha256-lTodIm5p9ptEg+rEPqoGNbVRxV18wiC++qJTIaYu3EM=";
    hash = "sha256-WrqkTNFhttpLG1dG05+nnqzoPUQPZUG15JooChBIKEA=";
  };

  build-system = [ setuptools ];
+2 −2
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@

buildPythonPackage rec {
  pname = "angr";
  version = "9.2.146";
  version = "9.2.147";
  pyproject = true;

  disabled = pythonOlder "3.11";
@@ -47,7 +47,7 @@ buildPythonPackage rec {
    owner = "angr";
    repo = "angr";
    tag = "v${version}";
    hash = "sha256-bBjD+rhS8VS7JKXJyqwlxl6hmi34grO9HCuZ06SFLh0=";
    hash = "sha256-ndD0NnaJtxzvb33O7/UaKi2xRuC8VRArndynZp8zCr4=";
  };

  pythonRelaxDeps = [ "capstone" ];
+2 −2
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@

buildPythonPackage rec {
  pname = "archinfo";
  version = "9.2.146";
  version = "9.2.147";
  pyproject = true;

  disabled = pythonOlder "3.8";
@@ -20,7 +20,7 @@ buildPythonPackage rec {
    owner = "angr";
    repo = "archinfo";
    tag = "v${version}";
    hash = "sha256-8JlIhLqVPNm3P2ruJh5i7VxnnBXfubLzhtFnWF3RWf8=";
    hash = "sha256-YDELaSIK4Bx0E6lxQsTd1zqyTsFrB9qxT6awuwUREXE=";
  };

  build-system = [ setuptools ];
+2 −2
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@

buildPythonPackage rec {
  pname = "claripy";
  version = "9.2.146";
  version = "9.2.147";
  pyproject = true;

  disabled = pythonOlder "3.11";
@@ -24,7 +24,7 @@ buildPythonPackage rec {
    owner = "angr";
    repo = "claripy";
    tag = "v${version}";
    hash = "sha256-ZGagpKzbJBuBo3E7qYNQCBid0S/JB9fenikwksdM99Y=";
    hash = "sha256-Ml7BPlx4TT/jPXE0TRp2GeghB68AsanitsjD7lmEphk=";
  };

  # z3 does not provide a dist-info, so python-runtime-deps-check will fail
+4 −4
Original line number Diff line number Diff line
@@ -17,14 +17,14 @@

let
  # The binaries are following the argr projects release cycle
  version = "9.2.146";
  version = "9.2.147";

  # Binary files from https://github.com/angr/binaries (only used for testing and only here)
  binaries = fetchFromGitHub {
    owner = "angr";
    repo = "binaries";
    rev = "refs/tags/v${version}";
    hash = "sha256-VhUFGSCV8ldv42BKsYi40fz1VAqQrS6rsrrjLNY4VcU=";
    hash = "sha256-Hj56jvyKceDCqYg+JdItxTKuE66ykhhSbYSUWCL5ux4=";
  };
in
buildPythonPackage rec {
@@ -38,7 +38,7 @@ buildPythonPackage rec {
    owner = "angr";
    repo = "cle";
    rev = "refs/tags/v${version}";
    hash = "sha256-zlgZm7ULEzrW40MZhZRMLshO7giutW+pUJpbTTom3t0=";
    hash = "sha256-f4N97MFx/rfz1epFTbIQpPBGK+ioFRLZ99bINIbhktk=";
  };

  build-system = [ setuptools ];
@@ -82,7 +82,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python loader for many binary formats";
    homepage = "https://github.com/angr/cle";
    license = with licenses; [ bsd2 ];
    license = licenses.bsd2;
    maintainers = with maintainers; [ fab ];
  };
}
Loading