unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#66101] [PATCH 0/1] gnu: stcgal: Update to 1.10.
@ 2023-09-19 14:23 Simon South
  2023-09-19 14:26 ` [bug#66101] [PATCH 1/1] " Simon South
  2023-09-27 10:56 ` [bug#66101] [PATCH 0/1] " Christopher Baines
  0 siblings, 2 replies; 3+ messages in thread
From: Simon South @ 2023-09-19 14:23 UTC (permalink / raw)
  To: 66101

This patch updates stcgal, a command-line programming utility for
microcontrollers from STC MCU, to version 1.10.

I've tested this on AArch64 and x86-64 with a real STC89C52RC board and
everything seems fine.

--
Simon South
simon@simonsouth.net


Simon South (1):
  gnu: stcgal: Update to 1.10.

 gnu/packages/embedded.scm | 20 ++++++--------------
 1 file changed, 6 insertions(+), 14 deletions(-)


base-commit: 15c5f1a2c20b21de0f19f42db1ccab4c42117ebb
-- 
2.41.0





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

* [bug#66101] [PATCH 1/1] gnu: stcgal: Update to 1.10.
  2023-09-19 14:23 [bug#66101] [PATCH 0/1] gnu: stcgal: Update to 1.10 Simon South
@ 2023-09-19 14:26 ` Simon South
  2023-09-27 10:56 ` [bug#66101] [PATCH 0/1] " Christopher Baines
  1 sibling, 0 replies; 3+ messages in thread
From: Simon South @ 2023-09-19 14:26 UTC (permalink / raw)
  To: 66101

* gnu/packages/embedded.scm (stcgal): Update to 1.10.
[source]: Update comment; remove obsolete snippet.
[description]: Update.
---
 gnu/packages/embedded.scm | 20 ++++++--------------
 1 file changed, 6 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/embedded.scm b/gnu/packages/embedded.scm
index 325013a627..884aee690a 100644
--- a/gnu/packages/embedded.scm
+++ b/gnu/packages/embedded.scm
@@ -1357,12 +1357,11 @@ (define-public fc-host-tools
 (define-public stcgal
   (package
     (name "stcgal")
-    (version "1.6")
+    (version "1.10")
     (source (origin
-              ;; Neither the unit tests nor the "doc" subdirectory referred to
-              ;; by stcgal's setup.py is present in the source distribution on
-              ;; PyPI, so we fetch directly from the project's git repository
-              ;; instead.
+              ;; The "doc" subdirectory referred to by stcgal's setup.py is
+              ;; missing from the source distribution on PyPI so we fetch
+              ;; directly from the project's git repository instead.
               (method git-fetch)
               (uri (git-reference
                     (url "https://github.com/grigorig/stcgal")
@@ -1370,14 +1369,7 @@ (define-public stcgal
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1d10qxyghz66zp7iqpm8q8rfv9jz9n609gxmfcav1lssmf1dlyk3"))
-              (modules '((guix build utils)))
-              (snippet
-               ;; Make tests compatible with PyYAML 6 and later.
-               '(substitute* '("tests/test_program.py"
-                               "tests/test_fuzzing.py")
-                  (("yaml\\.load\\(test_file\\.read\\(\\)\\)")
-                   "yaml.load(test_file.read(), Loader=yaml.SafeLoader)")))))
+                "04hsj49sw5mb6swhd3sdsm7dzwp1frnzpmq70wgsn5vmjavb1ka8"))))
     (build-system python-build-system)
     (propagated-inputs
      (list python-pyserial python-pyusb python-tqdm))
@@ -1388,7 +1380,7 @@ (define-public stcgal
     (synopsis "Programmer for STC 8051-compatible microcontrollers")
     (description "stcgal is a command-line flash-programming tool for STC
 MCU's line of Intel 8051-compatible microcontrollers, including those in the
-STC89, STC90, STC10, STC11, STC12, STC15 and STC8 series.")
+STC89, STC90, STC10, STC11, STC12, STC15, STC8 and STC32 series.")
     (license license:expat)))
 
 (define-public stlink
-- 
2.41.0





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

* [bug#66101] [PATCH 0/1] gnu: stcgal: Update to 1.10.
  2023-09-19 14:23 [bug#66101] [PATCH 0/1] gnu: stcgal: Update to 1.10 Simon South
  2023-09-19 14:26 ` [bug#66101] [PATCH 1/1] " Simon South
@ 2023-09-27 10:56 ` Christopher Baines
  1 sibling, 0 replies; 3+ messages in thread
From: Christopher Baines @ 2023-09-27 10:56 UTC (permalink / raw)
  To: Simon South; +Cc: 66101-done, 66101

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


Simon South <simon@simonsouth.net> writes:

> This patch updates stcgal, a command-line programming utility for
> microcontrollers from STC MCU, to version 1.10.
>
> I've tested this on AArch64 and x86-64 with a real STC89C52RC board and
> everything seems fine.
>
> --
> Simon South
> simon@simonsouth.net
>
>
> Simon South (1):
>   gnu: stcgal: Update to 1.10.
>
>  gnu/packages/embedded.scm | 20 ++++++--------------
>  1 file changed, 6 insertions(+), 14 deletions(-)

Looks like I pushed this as 8ffbcfbe3fb6e83162d239e8bd560f839118baee but
forgot to reply.

Thanks,

Chris

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

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

end of thread, other threads:[~2023-09-27 10:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-19 14:23 [bug#66101] [PATCH 0/1] gnu: stcgal: Update to 1.10 Simon South
2023-09-19 14:26 ` [bug#66101] [PATCH 1/1] " Simon South
2023-09-27 10:56 ` [bug#66101] [PATCH 0/1] " Christopher Baines

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).