From 4aaa9654a1fc36c0185fe129040c3110b65dff84 Mon Sep 17 00:00:00 2001
From: "Antoine R. Dumont (@ardumont)" <ardumont@softwareheritage.org>
Date: Tue, 5 Nov 2024 17:46:53 +0100
Subject: [PATCH] app_manager: Only compile the frozen deps without installing
 them

It's also twice as fast as before (from 10 to 5s).
---
 scripts/app_manager.py | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/scripts/app_manager.py b/scripts/app_manager.py
index f9f0824df..e6d456585 100755
--- a/scripts/app_manager.py
+++ b/scripts/app_manager.py
@@ -115,11 +115,8 @@ def generate_requirements_frozen(app: str, absolute_apps_dirpath: Path) -> None:
     with tempfile.TemporaryDirectory(prefix=app) as envdir:
         builder = AppEnvBuilder.bootstrap_venv(envdir)
 
-        builder.run_pip("install", "-r", str(src_req_file))
-        freeze_output = builder.run_pip("freeze", capture_output=True)
-
         with tempfile.NamedTemporaryFile(mode="wb", dir=app_dir, delete=False) as f:
-            f.write(freeze_output.stdout)
+            builder.run_pip("compile", str(src_req_file), "-o", f.name)
             p = Path(f.name)
             p.chmod(0o644)
             p.rename(dst_req_file)
-- 
GitLab