GNU bug report logs - #69570
[PATCH 1/1] gnu: cl-osc: update to 0.9.

Previous Next

Package: guix-patches;

Reported by: nik gaffney <nik <at> fo.am>

Date: Tue, 5 Mar 2024 21:49:01 UTC

Severity: normal

Tags: patch

Done: Guillaume Le Vaillant <glv <at> posteo.net>

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 69570 in the body.
You can then email your comments to 69570 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 glv <at> posteo.net, cox.katherine.e+guix <at> gmail.com, me <at> bonfacemunyoki.com, sharlatanus <at> gmail.com, jgart <at> dismail.de, guix-patches <at> gnu.org:
bug#69570; Package guix-patches. (Tue, 05 Mar 2024 21:49:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to nik gaffney <nik <at> fo.am>:
New bug report received and forwarded. Copy sent to glv <at> posteo.net, cox.katherine.e+guix <at> gmail.com, me <at> bonfacemunyoki.com, sharlatanus <at> gmail.com, jgart <at> dismail.de, guix-patches <at> gnu.org. (Tue, 05 Mar 2024 21:49:01 GMT) Full text and rfc822 format available.

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

From: nik gaffney <nik <at> fo.am>
To: guix-patches <at> gnu.org
Cc: nik gaffney <nik <at> fo.am>
Subject: [PATCH 1/1] gnu: cl-osc: update to 0.9.
Date: Tue,  5 Mar 2024 18:14:46 +0100
* 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 <at> hallsby.com>
 ;;; Copyright © 2024 Michal Atlas <michal_atlas+git <at> posteo.net>
 ;;; Copyright © 2024 Carlo Zancanaro <carlo <at> zancanaro.id.au>
+;;; Copyright © 2024 nik gaffney <nik <at> 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





Information forwarded to guix-patches <at> gnu.org:
bug#69570; Package guix-patches. (Thu, 07 Mar 2024 09:28:01 GMT) Full text and rfc822 format available.

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

From: "Paul A. Patience" <paul <at> apatience.com>
To: 69570 <at> debbugs.gnu.org
Subject: [PATCH 1/1] gnu: cl-osc: update to 0.9.
Date: Thu, 07 Mar 2024 09:26:55 +0000
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





Information forwarded to guix-patches <at> gnu.org:
bug#69570; Package guix-patches. (Thu, 07 Mar 2024 17:48:02 GMT) Full text and rfc822 format available.

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

From: nik gaffney <nik <at> fo.am>
To: 69570 <at> debbugs.gnu.org, "Paul A. Patience" <paul <at> apatience.com>
Subject: Re: [PATCH 1/1] gnu: cl-osc: update to 0.9.
Date: Thu, 7 Mar 2024 14:31:44 +0100
> 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.






Reply sent to Guillaume Le Vaillant <glv <at> posteo.net>:
You have taken responsibility. (Fri, 08 Mar 2024 09:25:01 GMT) Full text and rfc822 format available.

Notification sent to nik gaffney <nik <at> fo.am>:
bug acknowledged by developer. (Fri, 08 Mar 2024 09:25:02 GMT) Full text and rfc822 format available.

Message #16 received at 69570-done <at> debbugs.gnu.org (full text, mbox):

From: Guillaume Le Vaillant <glv <at> posteo.net>
To: nik gaffney <nik <at> fo.am>
Cc: 69570-done <at> debbugs.gnu.org
Subject: Re: [bug#69570] [PATCH 1/1] gnu: cl-osc: update to 0.9.
Date: Fri, 08 Mar 2024 09:22:26 +0000
[Message part 1 (text/plain, inline)]
Patch applied as 867eb0cfb9cce30b49b309c71f02be4cd5f51c28 with a few
modifications.
Thanks.
[signature.asc (application/pgp-signature, inline)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 05 Apr 2024 11:24:30 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 135 days ago.

Previous Next


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