Unverified Commit e2f8979c authored by Philip Taron's avatar Philip Taron Committed by GitHub
Browse files

pmbootstrap: 2.3.1 > 3.0.0 (#355579)

parents a102f137 625c8e4c
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
{ stdenv
, lib
, git
, multipath-tools
, openssl
, ps
, fetchFromGitLab
@@ -11,14 +12,15 @@

python3Packages.buildPythonApplication rec {
  pname = "pmbootstrap";
  version = "2.3.1";
  version = "3.0.0";
  pyproject = true;

  src = fetchFromGitLab {
    owner = "postmarketos";
    owner = "postmarketOS";
    repo = pname;
    rev = version;
    hash = "sha256-0hC84Gyfr1FOpZGAc7pAhz/QBSTA5A/Lu/ZJdzlEcX4=";
    hash = "sha256-hUrWMU4V7tf/qVR4geR5FsCQ+BZA+zCPTdCZGN1PMKk=";
    domain = "gitlab.postmarketos.org";
  };

  pmb_test = "${src}/test";
@@ -89,6 +91,7 @@ python3Packages.buildPythonApplication rec {
    "test_newapkbuild"
    "test_package"
    "test_package_from_aports"
    "test_pkgrepo_pmaports"
    "test_pkgrel_bump"
    "test_pmbootstrap_status"
    "test_print_checks_git_repo"
@@ -110,7 +113,7 @@ python3Packages.buildPythonApplication rec {
    "test_version"
  ];

  makeWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ git openssl ]}" ];
  makeWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ git openssl multipath-tools ]}" ];

  passthru.updateScript = gitUpdater { };