unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#69570] [PATCH 1/1] gnu: cl-osc: update to 0.9.
@ 2024-03-05 17:14 nik gaffney via Guix-patches via
  2024-03-07  9:26 ` Paul A. Patience
  2024-03-07 13:31 ` nik gaffney via Guix-patches via
  0 siblings, 2 replies; 4+ messages in thread
From: nik gaffney via Guix-patches via @ 2024-03-05 17:14 UTC (permalink / raw)
  To: 69570
  Cc: nik gaffney, Guillaume Le Vaillant, Katherine Cox-Buday,
	Munyoki Kilyungi, Sharlatan Hellseher, jgart

* gnu/packages/lisp-xyz.scm (sbcl-osc): Update to 0.9.

Change-Id: Iba92207d845101a1c6e57d3676e7bd177127c192
---
 gnu/packages/lisp-xyz.scm | 18 ++++++++----------
 1 file changed, 8 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 6ee8ef22d2..330fbb94eb 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -43,6 +43,7 @@
 ;;; Copyright © 2023 Raven Hallsby <karl@hallsby.com>
 ;;; Copyright © 2024 Michal Atlas <michal_atlas+git@posteo.net>
 ;;; Copyright © 2024 Carlo Zancanaro <carlo@zancanaro.id.au>
+;;; Copyright © 2024 nik gaffney <nik@fo.am>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -25694,29 +25695,26 @@ (define-public ecl-cl-collider
   (sbcl-package->ecl-package sbcl-cl-collider))
 
 (define-public sbcl-osc
-  (let ((commit "9f0a9d3da310a3a0f654f48af0203816f3f371ad")
+  (let ((commit "f647738ccc22925ed740a8ca9132fda76a05baeb")
         (revision "0"))
     (package
      (name "sbcl-osc")
-     (version (git-version "0.7" revision commit))
+     (version (git-version "0.9" revision commit))
      (source
        (origin
          (method git-fetch)
          (uri (git-reference
                (url "https://github.com/zzkt/osc")
                (commit commit)))
-         (file-name (git-file-name "cl-osc" version))
+         (file-name (git-file-name "osc" version))
          (sha256
-          (base32 "0gh29zcl9pmy3xlmwzpf9www2z06ah6b4jk06sj2cvxbc15nblqa"))))
+          (base32 "1x4cavspaxcr604g0hwak1ncy4m9cqq03ji4v56g2h1443n7h48a"))))
      (build-system asdf-build-system/sbcl)
-     (inputs (list sbcl-usocket))
+     (inputs (list sbcl-ieee-floats))
      (synopsis "Implementation of the Open Sound Control protocol")
-     (description "This package provides a common lisp implementation
-of the Open Sound Control Protocol aka OSC.  The code should be close
-to the ansi standard, and does not rely on any external code/ffi/etc+
-to do the basic encoding and decoding of packets.")
+     (description  "This is a lisp implementation of the Open Sound Control protocol (or more accurately “data transport specification” or “encoding”). The code should be close to ANSI standard common lisp and provides self contained code for encoding and decoding of OSC data, messages, and bundles.")
      (home-page "https://github.com/zzkt/osc/")
-     (license (list license:gpl3 license:llgpl)))))
+     (license (list license:gpl3+)))))
 
 (define-public cl-osc
   (sbcl-package->cl-source-package sbcl-osc))

base-commit: b6dec0108f99d75066bad15aaa124b84bb0261f3
-- 
2.41.0





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

* [bug#69570] [PATCH 1/1] gnu: cl-osc: update to 0.9.
  2024-03-05 17:14 [bug#69570] [PATCH 1/1] gnu: cl-osc: update to 0.9 nik gaffney via Guix-patches via
@ 2024-03-07  9:26 ` Paul A. Patience
  2024-03-07 13:31 ` nik gaffney via Guix-patches via
  1 sibling, 0 replies; 4+ messages in thread
From: Paul A. Patience @ 2024-03-07  9:26 UTC (permalink / raw)
  To: 69570


Hello,

Just a quick comment on style.

The CL package style is slowly migrating from

  (file-name (git-file-name name version)

to

  (file-name (git-file-name "cl-NAME" version))

so your change to file-name is undesirable.

Best regards,
Paul





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

* [bug#69570] [PATCH 1/1] gnu: cl-osc: update to 0.9.
  2024-03-05 17:14 [bug#69570] [PATCH 1/1] gnu: cl-osc: update to 0.9 nik gaffney via Guix-patches via
  2024-03-07  9:26 ` Paul A. Patience
@ 2024-03-07 13:31 ` nik gaffney via Guix-patches via
  2024-03-08  9:22   ` bug#69570: " Guillaume Le Vaillant
  1 sibling, 1 reply; 4+ messages in thread
From: nik gaffney via Guix-patches via @ 2024-03-07 13:31 UTC (permalink / raw)
  To: 69570, Paul A. Patience

> Just a quick comment on style.
> 
> The CL package style is slowly migrating from
> 
>   (file-name (git-file-name name version)
> 
> to
> 
>   (file-name (git-file-name "cl-NAME" version))
> 
> so your change to file-name is undesirable.

No problem. I wasn't aware of the convention, so please change as desirable.






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

* bug#69570: [PATCH 1/1] gnu: cl-osc: update to 0.9.
  2024-03-07 13:31 ` nik gaffney via Guix-patches via
@ 2024-03-08  9:22   ` Guillaume Le Vaillant
  0 siblings, 0 replies; 4+ messages in thread
From: Guillaume Le Vaillant @ 2024-03-08  9:22 UTC (permalink / raw)
  To: nik gaffney; +Cc: 69570-done

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

Patch applied as 867eb0cfb9cce30b49b309c71f02be4cd5f51c28 with a few
modifications.
Thanks.

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

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

end of thread, other threads:[~2024-03-08  9:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-05 17:14 [bug#69570] [PATCH 1/1] gnu: cl-osc: update to 0.9 nik gaffney via Guix-patches via
2024-03-07  9:26 ` Paul A. Patience
2024-03-07 13:31 ` nik gaffney via Guix-patches via
2024-03-08  9:22   ` bug#69570: " Guillaume Le Vaillant

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