This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 29a0d34d43 gnu: upx: Update to 5.2.0.
29a0d34d43 is described below

commit 29a0d34d43ab3711696a30524080d9ab4ccc4114
Author: Greg Hogan <[email protected]>
AuthorDate: Tue Jul 7 14:34:21 2026 +0000

    gnu: upx: Update to 5.2.0.
    
    * gnu/packages/compression.scm (upx): Update to 5.2.0.
      [arguments]<#:build-type>: Set to Release.
    
    Merges: https://codeberg.org/guix/guix/pulls/9858
    Signed-off-by: Nguyễn Gia Phong <[email protected]>
---
 gnu/packages/compression.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index 2a78fe7ca1..3bc52d83e7 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -2643,15 +2643,17 @@ decompression is a little bit slower.")
 (define-public upx
   (package
     (name "upx")
-    (version "4.2.4")
+    (version "5.2.0")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/upx/upx/releases/download/v";
                            version "/upx-" version "-src.tar.xz"))
        (sha256
-        (base32 "1i71p03861hlf5x1w217l67zm5inm449zhbg6kpv8zyj0wb5dmjy"))))
+        (base32 "076fq4yq97nc7rizi5ajfb5hd92cbr6i18df292fk7bmslkfb6dg"))))
     (build-system cmake-build-system)
+    (arguments
+     (list #:build-type "Release"))
     (home-page "https://upx.github.io/";)
     (synopsis "Compression tool for executables")
     (description

Reply via email to