unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#72817] [PATCH 0/3] gnu: vice: Update to 3.8.
@ 2024-08-26 10:47 Artyom V. Poptsov
  2024-08-26 10:50 ` [bug#72817] [PATCH 1/3] gnu: xa: Update to 2.4.1 Artyom V. Poptsov
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Artyom V. Poptsov @ 2024-08-26 10:47 UTC (permalink / raw)
  To: 72817; +Cc: Artyom V. Poptsov

This patchset updates "xa" and "vice" packages.

Artyom V. Poptsov (3):
  gnu: xa: Update to 2.4.1.
  gnu: xa: Enable tests.
  gnu: vice: Update to 3.8.

 gnu/packages/assembly.scm  | 11 +++++++----
 gnu/packages/emulators.scm |  3 ++-
 2 files changed, 9 insertions(+), 5 deletions(-)


base-commit: 38094ff1666ecc4e264723e059771f3201235d4d
-- 
2.45.2





^ permalink raw reply	[flat|nested] 7+ messages in thread

* [bug#72817] [PATCH 1/3] gnu: xa: Update to 2.4.1.
  2024-08-26 10:47 [bug#72817] [PATCH 0/3] gnu: vice: Update to 3.8 Artyom V. Poptsov
@ 2024-08-26 10:50 ` Artyom V. Poptsov
  2024-08-26 10:50 ` [bug#72817] [PATCH 2/3] gnu: xa: Enable tests Artyom V. Poptsov
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: Artyom V. Poptsov @ 2024-08-26 10:50 UTC (permalink / raw)
  To: 72817; +Cc: Artyom V. Poptsov

* gnu/packages/assembly.scm (xa): Update to 2.4.1.

Change-Id: I7c35a546c5ace3083a28a1bb4ba713dde1e5884b
---
 gnu/packages/assembly.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/assembly.scm b/gnu/packages/assembly.scm
index 5b2518277c..53106a0d74 100644
--- a/gnu/packages/assembly.scm
+++ b/gnu/packages/assembly.scm
@@ -15,6 +15,7 @@
 ;;; Copyright © 2023 Simon South <simon@simonsouth.net>
 ;;; Copyright © 2023 B. Wilson <elaexuotee@wilsonb.com>
 ;;; Copyright © 2024 Zheng Junjie <873216071@qq.com>
+;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -458,14 +459,14 @@ (define-public wla-dx
 (define-public xa
   (package
     (name "xa")
-    (version "2.3.14")
+    (version "2.4.1")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://www.floodgap.com/retrotech/xa"
                                   "/dists/xa-" version ".tar.gz"))
               (sha256
                (base32
-                "0bph41aglxl07rnggrir2dl1x97f52hm0bl51d0vklyqvfyvm6qv"))))
+                "1hrspv9hxgk2nkbbh24g84hn0rglfwj8p7849zrn9qx869m2mhb3"))))
     (build-system gnu-build-system)
     (arguments
      (list
-- 
2.45.2





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [bug#72817] [PATCH 2/3] gnu: xa: Enable tests.
  2024-08-26 10:47 [bug#72817] [PATCH 0/3] gnu: vice: Update to 3.8 Artyom V. Poptsov
  2024-08-26 10:50 ` [bug#72817] [PATCH 1/3] gnu: xa: Update to 2.4.1 Artyom V. Poptsov
@ 2024-08-26 10:50 ` Artyom V. Poptsov
  2024-08-28  3:10   ` Z572
  2024-08-26 10:50 ` [bug#72817] [PATCH 3/3] gnu: vice: Update to 3.8 Artyom V. Poptsov
  2024-08-28  3:11 ` [bug#72817] [PATCH 0/3] " Z572
  3 siblings, 1 reply; 7+ messages in thread
From: Artyom V. Poptsov @ 2024-08-26 10:50 UTC (permalink / raw)
  To: 72817; +Cc: Artyom V. Poptsov

* gnu/packages/assembly.scm (xa) [arguments]: Enable tests.

Change-Id: I1866b367fc58542d5c2ae90b82f89b218c0ffa1f
---
 gnu/packages/assembly.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/assembly.scm b/gnu/packages/assembly.scm
index 53106a0d74..e7bc9e1fef 100644
--- a/gnu/packages/assembly.scm
+++ b/gnu/packages/assembly.scm
@@ -470,10 +470,12 @@ (define-public xa
     (build-system gnu-build-system)
     (arguments
      (list
-      #:tests? #f           ; TODO: custom test harness, not sure how it works
       #:phases
       #~(modify-phases %standard-phases
-          (delete 'configure))          ; no "configure" script
+          (delete 'configure)          ; no "configure" script
+          (replace 'check
+            (lambda _
+              (invoke "make" "test"))))
       #:make-flags
       #~(list (string-append "DESTDIR=" #$output)))) ; no $prefix support
     (native-inputs (list perl))
-- 
2.45.2





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [bug#72817] [PATCH 3/3] gnu: vice: Update to 3.8.
  2024-08-26 10:47 [bug#72817] [PATCH 0/3] gnu: vice: Update to 3.8 Artyom V. Poptsov
  2024-08-26 10:50 ` [bug#72817] [PATCH 1/3] gnu: xa: Update to 2.4.1 Artyom V. Poptsov
  2024-08-26 10:50 ` [bug#72817] [PATCH 2/3] gnu: xa: Enable tests Artyom V. Poptsov
@ 2024-08-26 10:50 ` Artyom V. Poptsov
  2024-08-28  3:09   ` Z572
  2024-08-28  3:11 ` [bug#72817] [PATCH 0/3] " Z572
  3 siblings, 1 reply; 7+ messages in thread
From: Artyom V. Poptsov @ 2024-08-26 10:50 UTC (permalink / raw)
  To: 72817; +Cc: Artyom V. Poptsov

* gnu/packages/emulators.scm (vice): Update to 3.8.

Change-Id: I553de35a74b300ac3d56f542724dacec4399c33d
---
 gnu/packages/emulators.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm
index d2e488864e..7f3f420a5c 100644
--- a/gnu/packages/emulators.scm
+++ b/gnu/packages/emulators.scm
@@ -21,6 +21,7 @@
 ;;; Copyright © 2023 Yovan Naumovski <yovan@gorski.stream>
 ;;; Copyright © 2023 Hendursaga <hendursaga@aol.com>
 ;;; Copyright © 2023 Zheng Junjie <873216071@qq.com>
+;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -121,7 +122,7 @@ (define-module (gnu packages emulators)
 (define-public vice
   (package
     (name "vice")
-    (version "3.7.1")
+    (version "3.8")
     (source
      (origin
        (method url-fetch)
-- 
2.45.2





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [bug#72817] [PATCH 3/3] gnu: vice: Update to 3.8.
  2024-08-26 10:50 ` [bug#72817] [PATCH 3/3] gnu: vice: Update to 3.8 Artyom V. Poptsov
@ 2024-08-28  3:09   ` Z572
  0 siblings, 0 replies; 7+ messages in thread
From: Z572 @ 2024-08-28  3:09 UTC (permalink / raw)
  To: Artyom V. Poptsov; +Cc: 72817

[-- Attachment #1: Type: text/plain, Size: 1376 bytes --]

"Artyom V. Poptsov" <poptsov.artyom@gmail.com> writes:

> * gnu/packages/emulators.scm (vice): Update to 3.8.
>
> Change-Id: I553de35a74b300ac3d56f542724dacec4399c33d
> ---
>  gnu/packages/emulators.scm | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm
> index d2e488864e..7f3f420a5c 100644
> --- a/gnu/packages/emulators.scm
> +++ b/gnu/packages/emulators.scm
> @@ -21,6 +21,7 @@
>  ;;; Copyright © 2023 Yovan Naumovski <yovan@gorski.stream>
>  ;;; Copyright © 2023 Hendursaga <hendursaga@aol.com>
>  ;;; Copyright © 2023 Zheng Junjie <873216071@qq.com>
> +;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -121,7 +122,7 @@ (define-module (gnu packages emulators)
>  (define-public vice
>    (package
>      (name "vice")
> -    (version "3.7.1")
> +    (version "3.8")
>      (source
>       (origin
>         (method url-fetch)

i get

sha256 hash mismatch for /gnu/store/8n1pq5rnyix2v1gw7x77w0q9pp0wik5v-vice-3.8.tar.gz:
  expected hash: 165b1ixrarcqy1rl06yhaf46ni3j8lrbn8f3zf5nkc2d0bk12f3y
  actual hash:   010h3aj0y9n8kcg5yvy1m7g4hc7nbm5gym5r3f3jmk5vyb8c8z8x
hash mismatch for store item '/gnu/store/8n1pq5rnyix2v1gw7x77w0q9pp0wik5v-vice-3.8.tar.gz'

Can you look into it?

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [bug#72817] [PATCH 2/3] gnu: xa: Enable tests.
  2024-08-26 10:50 ` [bug#72817] [PATCH 2/3] gnu: xa: Enable tests Artyom V. Poptsov
@ 2024-08-28  3:10   ` Z572
  0 siblings, 0 replies; 7+ messages in thread
From: Z572 @ 2024-08-28  3:10 UTC (permalink / raw)
  To: Artyom V. Poptsov; +Cc: 72817

[-- Attachment #1: Type: text/plain, Size: 1095 bytes --]

"Artyom V. Poptsov" <poptsov.artyom@gmail.com> writes:

> * gnu/packages/assembly.scm (xa) [arguments]: Enable tests.
>
> Change-Id: I1866b367fc58542d5c2ae90b82f89b218c0ffa1f
> ---
>  gnu/packages/assembly.scm | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/gnu/packages/assembly.scm b/gnu/packages/assembly.scm
> index 53106a0d74..e7bc9e1fef 100644
> --- a/gnu/packages/assembly.scm
> +++ b/gnu/packages/assembly.scm
> @@ -470,10 +470,12 @@ (define-public xa
>      (build-system gnu-build-system)
>      (arguments
>       (list
> -      #:tests? #f           ; TODO: custom test harness, not sure how it works
>        #:phases
>        #~(modify-phases %standard-phases
> -          (delete 'configure))          ; no "configure" script
> +          (delete 'configure)          ; no "configure" script
> +          (replace 'check
> +            (lambda _
> +              (invoke "make" "test"))))

just use #:test-target.

>        #:make-flags
>        #~(list (string-append "DESTDIR=" #$output)))) ; no $prefix support
>      (native-inputs (list perl))

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [bug#72817] [PATCH 0/3] gnu: vice: Update to 3.8.
  2024-08-26 10:47 [bug#72817] [PATCH 0/3] gnu: vice: Update to 3.8 Artyom V. Poptsov
                   ` (2 preceding siblings ...)
  2024-08-26 10:50 ` [bug#72817] [PATCH 3/3] gnu: vice: Update to 3.8 Artyom V. Poptsov
@ 2024-08-28  3:11 ` Z572
  3 siblings, 0 replies; 7+ messages in thread
From: Z572 @ 2024-08-28  3:11 UTC (permalink / raw)
  To: Artyom V. Poptsov; +Cc: 72817

[-- Attachment #1: Type: text/plain, Size: 486 bytes --]

"Artyom V. Poptsov" <poptsov.artyom@gmail.com> writes:

> This patchset updates "xa" and "vice" packages.
>
> Artyom V. Poptsov (3):
>   gnu: xa: Update to 2.4.1.
>   gnu: xa: Enable tests.
>   gnu: vice: Update to 3.8.
>
>  gnu/packages/assembly.scm  | 11 +++++++----
>  gnu/packages/emulators.scm |  3 ++-
>  2 files changed, 9 insertions(+), 5 deletions(-)
>
>
> base-commit: 38094ff1666ecc4e264723e059771f3201235d4d

push xa, and fix xa's cross-compiling.

vice have hash mismatch.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2024-08-28  3:12 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-26 10:47 [bug#72817] [PATCH 0/3] gnu: vice: Update to 3.8 Artyom V. Poptsov
2024-08-26 10:50 ` [bug#72817] [PATCH 1/3] gnu: xa: Update to 2.4.1 Artyom V. Poptsov
2024-08-26 10:50 ` [bug#72817] [PATCH 2/3] gnu: xa: Enable tests Artyom V. Poptsov
2024-08-28  3:10   ` Z572
2024-08-26 10:50 ` [bug#72817] [PATCH 3/3] gnu: vice: Update to 3.8 Artyom V. Poptsov
2024-08-28  3:09   ` Z572
2024-08-28  3:11 ` [bug#72817] [PATCH 0/3] " Z572

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).