GNU bug report logs - #63741
[PATCH] gnu: Update mgba to 0.10.2.

Previous Next

Package: guix-patches;

Reported by: altadil <Altadil <at> protonmail.com>

Date: Fri, 26 May 2023 17:18:02 UTC

Severity: normal

Tags: patch

Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 63741 in the body.
You can then email your comments to 63741 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#63741; Package guix-patches. (Fri, 26 May 2023 17:18:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to altadil <Altadil <at> protonmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 26 May 2023 17:18:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: altadil <Altadil <at> protonmail.com>
To: guix-patches <at> gnu.org
Cc: altadil <altadil <at> protonmail.com>
Subject: [PATCH] gnu: Update mgba to 0.10.2.
Date: Fri, 26 May 2023 17:17:01 +0000
* gnu/packages/emulators.scm (mgba): Update to 0.10.2.
---
 gnu/packages/emulators.scm | 75 ++++++++++++++++++--------------------
 1 file changed, 36 insertions(+), 39 deletions(-)

diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm
index 13b6022308..44c8626f2b 100644
--- a/gnu/packages/emulators.scm
+++ b/gnu/packages/emulators.scm
@@ -725,47 +725,44 @@ (define-public mednafen
 (define-public mgba
   (package
     (name "mgba")
-    (version "0.10.1")
-    (source
-     (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/mgba-emu/mgba")
-             (commit version)))
-       (file-name (git-file-name name version))
-       (sha256
-        (base32 "0pqfjsr9q61a3mgmvqxxkalxb838k46q9ilz31frpcvvndif0sm1"))
-       (modules '((guix build utils)))
-       (snippet
-        ;; Make sure we don't use the bundled software.
-        '(begin
-           (for-each
-            (lambda (subdir)
-              (let ((lib-subdir (string-append "src/third-party/" subdir)))
-                (delete-file-recursively lib-subdir)))
-            '("libpng" "lzma" "sqlite3" "zlib"))))))
+    (version "0.10.2")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/mgba-emu/mgba")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1wwpjcblp2c1svab4z1if5xb7707wsy6zw590lwdz9za35i0h37q"))
+              (modules '((guix build utils)))
+              (snippet
+               ;; Make sure we don't use the bundled software.
+               '(begin
+                  (for-each (lambda (subdir)
+                              (let ((lib-subdir (string-append
+                                                 "src/third-party/" subdir)))
+                                (delete-file-recursively lib-subdir)))
+                            '("libpng" "lzma" "sqlite3" "zlib"))))))
     (build-system cmake-build-system)
     (arguments
-     `(#:tests? #f                      ;no "test" target
-       #:configure-flags
-       (list "-DUSE_LZMA=OFF"           ;do not use bundled LZMA
-             "-DUSE_LIBZIP=OFF")))      ;use "zlib" instead
-    (native-inputs
-     (list pkg-config qttools-5))
-    (inputs
-     (list ffmpeg
-           libedit
-           libelf
-           libepoxy
-           libpng
-           mesa
-           minizip
-           ncurses
-           qtbase-5
-           qtmultimedia-5
-           sdl2
-           sqlite
-           zlib))
+     `(#:tests? #f ;no "test" target
+       #:configure-flags (list "-DUSE_LZMA=OFF" ;do not use bundled LZMA
+                               "-DUSE_LIBZIP=OFF"))) ;use "zlib" instead
+    (native-inputs (list pkg-config qttools-5))
+    (inputs (list ffmpeg
+                  libedit
+                  libelf
+                  libepoxy
+                  libpng
+                  mesa
+                  minizip
+                  ncurses
+                  qtbase-5
+                  qtmultimedia-5
+                  sdl2
+                  sqlite
+                  zlib))
     (home-page "https://mgba.io")
     (synopsis "Game Boy Advance emulator")
     (description

base-commit: b96b82bcd4bc24529941ff74a91432481f1a71b5
-- 
2.40.1






Information forwarded to guix-patches <at> gnu.org:
bug#63741; Package guix-patches. (Sat, 10 Jun 2023 19:15:02 GMT) Full text and rfc822 format available.

Message #8 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: altadil via Guix-patches via <guix-patches <at> gnu.org>
Cc: altadil <Altadil <at> protonmail.com>, 63741-done <at> debbugs.gnu.org
Subject: Re: [bug#63741] [PATCH] gnu: Update mgba to 0.10.2.
Date: Sat, 10 Jun 2023 21:14:10 +0200
Hello,

altadil via Guix-patches via <guix-patches <at> gnu.org> writes:

> * gnu/packages/emulators.scm (mgba): Update to 0.10.2.

I tweaked the commit message and applied your patch. Thank you.

Note that you don't need to change the whole indentation when updating
a package.

Regards,
-- 
Nicolas Goaziou




Reply sent to Nicolas Goaziou <mail <at> nicolasgoaziou.fr>:
You have taken responsibility. (Sat, 10 Jun 2023 19:15:03 GMT) Full text and rfc822 format available.

Notification sent to altadil <Altadil <at> protonmail.com>:
bug acknowledged by developer. (Sat, 10 Jun 2023 19:15:03 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sun, 09 Jul 2023 11:24:06 GMT) Full text and rfc822 format available.

This bug report was last modified 292 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.