unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#33028] [PATCH] gnu: csound: Update to 6.11.0
@ 2018-10-12 21:27 Brett Gilio
  2018-10-12 21:33 ` Brett Gilio
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Brett Gilio @ 2018-10-12 21:27 UTC (permalink / raw)
  To: 33028

diff --git a/gnu/packages/astronomy.scm 
b/gnu/packages/astronomy.scm
index 3c8b9cc8d..5eb11cddd 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -1,6 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2016 John Darrington <jmd@gnu.org>
 ;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
+;;; Copyright © 2018 Brett Gilio <brettg@posteo.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -128,7 +129,7 @@ programs for the manipulation and analysis of 
astronomical data.")
 (define-public stellarium
   (package
     (name "stellarium")
-    (version "0.18.1")
+    (version "0.18.2")
     (source (origin
              (method url-fetch)
              (uri (string-append "https://github.com/Stellarium/" 
              name
@@ -136,7 +137,7 @@ programs for the manipulation and analysis of 
astronomical data.")
                                  "/" name "-" version ".tar.gz"))
              (sha256
               (base32
- 
                "0vjkwrjy22b4wdjkafm63pmb0fck14ffnylpq8xr91ywycw4blrq"))))
+ 
"1nr8n0v4wa0wfvqqk5kyy1jrv6xnvv4ppfa8l8bklrxbjvpsi0km"))))
     (build-system cmake-build-system)
     (inputs
      `(("qtbase" ,qtbase)
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index d233940f2..785375295 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -13,6 +13,7 @@
 ;;; Copyright © 2018 okapi <okapi@firemail.cc>
 ;;; Copyright © 2018 Maxim Cournoyer <maxim.cournoyer@gmail.com>
 ;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
+;;; Copyright © 2018 Brett Gilio <brettg@posteo.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -650,7 +651,7 @@ emulation (valve, tape), bit fiddling 
(decimator, pointer-cast), etc.")
 (define-public csound
   (package
     (name "csound")
-    (version "6.09.1")
+    (version "6.11.0")
     (source (origin
               (method url-fetch)
               (uri (string-append
@@ -659,7 +660,7 @@ emulation (valve, tape), bit fiddling 
(decimator, pointer-cast), etc.")
               (file-name (string-append name "-" version 
               ".tar.gz"))
               (sha256
                (base32
- 
                 "0xqpqws4jsv7fyawcjzwaw544qbfh29xq164kdf30a9v1n3yklp4"))))
+ 
"072pk5h9w0vhw0ncc9dn90haw1yv18v04iwwjn8nsp6930w7dvxd"))))
     (build-system cmake-build-system)
     (inputs
      `(("alsa-lib" ,alsa-lib)

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

* [bug#33028] [PATCH] gnu: csound: Update to 6.11.0
  2018-10-12 21:27 [bug#33028] [PATCH] gnu: csound: Update to 6.11.0 Brett Gilio
@ 2018-10-12 21:33 ` Brett Gilio
  2018-10-12 21:40   ` Tobias Geerinckx-Rice
  2018-10-12 21:39 ` Tobias Geerinckx-Rice
  2018-10-13  0:10 ` [bug#33028] [PATCH] gnu: update csound 6.11.0 Brett Gilio
  2 siblings, 1 reply; 7+ messages in thread
From: Brett Gilio @ 2018-10-12 21:33 UTC (permalink / raw)
  To: Brett Gilio; +Cc: 33028


Brett Gilio writes:

I made an error on the last patch submission.

> diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
> index d233940f2..785375295 100644
> --- a/gnu/packages/audio.scm
> +++ b/gnu/packages/audio.scm
> @@ -13,6 +13,7 @@
> ;;; Copyright © 2018 okapi <okapi@firemail.cc>
> ;;; Copyright © 2018 Maxim Cournoyer <maxim.cournoyer@gmail.com>
> ;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
> +;;; Copyright © 2018 Brett Gilio <brettg@posteo.net>
> ;;;
> ;;; This file is part of GNU Guix.
> ;;;
> @@ -650,7 +651,7 @@ emulation (valve, tape), bit fiddling 
> (decimator,
> pointer-cast), etc.")
> (define-public csound
>   (package
>     (name "csound")
> -    (version "6.09.1")
> +    (version "6.11.0")
>     (source (origin
>               (method url-fetch)
>               (uri (string-append
> @@ -659,7 +660,7 @@ emulation (valve, tape), bit fiddling 
> (decimator,
> pointer-cast), etc.")
>               (file-name (string-append name "-" version 
>               ".tar.gz"))
>               (sha256
>                (base32
> - 
>                 "0xqpqws4jsv7fyawcjzwaw544qbfh29xq164kdf30a9v1n3yklp4"))))
> + "072pk5h9w0vhw0ncc9dn90haw1yv18v04iwwjn8nsp6930w7dvxd"))))
>     (build-system cmake-build-system)
>     (inputs
>      `(("alsa-lib" ,alsa-lib)

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

* [bug#33028] [PATCH] gnu: csound: Update to 6.11.0
  2018-10-12 21:27 [bug#33028] [PATCH] gnu: csound: Update to 6.11.0 Brett Gilio
  2018-10-12 21:33 ` Brett Gilio
@ 2018-10-12 21:39 ` Tobias Geerinckx-Rice
  2018-10-13  0:10 ` [bug#33028] [PATCH] gnu: update csound 6.11.0 Brett Gilio
  2 siblings, 0 replies; 7+ messages in thread
From: Tobias Geerinckx-Rice @ 2018-10-12 21:39 UTC (permalink / raw)
  To: Brett Gilio; +Cc: 33028

Brett Gilio wrote:
> diff --git a/gnu/packages/astronomy.scm 
> b/gnu/packages/astronomy.scm
> index 3c8b9cc8d..5eb11cddd 100644
> --- a/gnu/packages/astronomy.scm
> +++ b/gnu/packages/astronomy.scm
> @@ -1,6 +1,7 @@
> ;;; GNU Guix --- Functional package management for GNU
> ;;; Copyright © 2016 John Darrington <jmd@gnu.org>
> ;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
> +;;; Copyright © 2018 Brett Gilio <brettg@posteo.net>
> ;;;
> ;;; This file is part of GNU Guix.
> ;;;
> @@ -128,7 +129,7 @@ programs for the manipulation and analysis 
> of
> astronomical data.")
> (define-public stellarium
>   (package
>     (name "stellarium")
> -    (version "0.18.1")
> +    (version "0.18.2")
>     (source (origin
>              (method url-fetch)
>              (uri (string-append 
>              "https://github.com/Stellarium/"
> name
> @@ -136,7 +137,7 @@ programs for the manipulation and analysis 
> of
> astronomical data.")
>                                  "/" name "-" version 
>                                  ".tar.gz"))
>              (sha256
>               (base32
> - 
>                "0vjkwrjy22b4wdjkafm63pmb0fck14ffnylpq8xr91ywycw4blrq"))))
> + "1nr8n0v4wa0wfvqqk5kyy1jrv6xnvv4ppfa8l8bklrxbjvpsi0km"))))
>     (build-system cmake-build-system)
>     (inputs
>      `(("qtbase" ,qtbase)
> diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
> index d233940f2..785375295 100644
> --- a/gnu/packages/audio.scm
> +++ b/gnu/packages/audio.scm
> @@ -13,6 +13,7 @@
> ;;; Copyright © 2018 okapi <okapi@firemail.cc>
> ;;; Copyright © 2018 Maxim Cournoyer <maxim.cournoyer@gmail.com>
> ;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
> +;;; Copyright © 2018 Brett Gilio <brettg@posteo.net>
> ;;;
> ;;; This file is part of GNU Guix.
> ;;;
> @@ -650,7 +651,7 @@ emulation (valve, tape), bit fiddling 
> (decimator,
> pointer-cast), etc.")
> (define-public csound
>   (package
>     (name "csound")
> -    (version "6.09.1")
> +    (version "6.11.0")
>     (source (origin
>               (method url-fetch)
>               (uri (string-append
> @@ -659,7 +660,7 @@ emulation (valve, tape), bit fiddling 
> (decimator,
> pointer-cast), etc.")
>               (file-name (string-append name "-" version
> ".tar.gz"))
>               (sha256
>                (base32
> - 
>                 "0xqpqws4jsv7fyawcjzwaw544qbfh29xq164kdf30a9v1n3yklp4"))))
> + "072pk5h9w0vhw0ncc9dn90haw1yv18v04iwwjn8nsp6930w7dvxd"))))
>     (build-system cmake-build-system)
>     (inputs
>      `(("alsa-lib" ,alsa-lib)


Hmm. How are you generating and sending these patches?

This one includes your previous stellarium patch and both seem to 
have indentation issues (the hashes should align, for example).

Kind regards,

T G-R

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

* [bug#33028] [PATCH] gnu: csound: Update to 6.11.0
  2018-10-12 21:33 ` Brett Gilio
@ 2018-10-12 21:40   ` Tobias Geerinckx-Rice
  0 siblings, 0 replies; 7+ messages in thread
From: Tobias Geerinckx-Rice @ 2018-10-12 21:40 UTC (permalink / raw)
  To: Brett Gilio; +Cc: 33028

Brett,

Brett Gilio wrote:
> Brett Gilio writes:
>
> I made an error on the last patch submission.

Then you can ignore the first part of my last e-mail :-)

The munging is still a problem, though. Are you using git 
send-email?

Kind regards,

T G-R

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

* [bug#33028] [PATCH] gnu: update csound 6.11.0
  2018-10-12 21:27 [bug#33028] [PATCH] gnu: csound: Update to 6.11.0 Brett Gilio
  2018-10-12 21:33 ` Brett Gilio
  2018-10-12 21:39 ` Tobias Geerinckx-Rice
@ 2018-10-13  0:10 ` Brett Gilio
  2018-10-13  0:12   ` Brett Gilio
  2018-10-14  2:53   ` bug#33028: " 宋文武
  2 siblings, 2 replies; 7+ messages in thread
From: Brett Gilio @ 2018-10-13  0:10 UTC (permalink / raw)
  To: 33028

---
 gnu/packages/audio.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index d233940f2..785375295 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -13,6 +13,7 @@
 ;;; Copyright © 2018 okapi <okapi@firemail.cc>
 ;;; Copyright © 2018 Maxim Cournoyer <maxim.cournoyer@gmail.com>
 ;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
+;;; Copyright © 2018 Brett Gilio <brettg@posteo.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -650,7 +651,7 @@ emulation (valve, tape), bit fiddling (decimator, pointer-cast), etc.")
 (define-public csound
   (package
     (name "csound")
-    (version "6.09.1")
+    (version "6.11.0")
     (source (origin
               (method url-fetch)
               (uri (string-append
@@ -659,7 +660,7 @@ emulation (valve, tape), bit fiddling (decimator, pointer-cast), etc.")
               (file-name (string-append name "-" version ".tar.gz"))
               (sha256
                (base32
-                "0xqpqws4jsv7fyawcjzwaw544qbfh29xq164kdf30a9v1n3yklp4"))))
+                "072pk5h9w0vhw0ncc9dn90haw1yv18v04iwwjn8nsp6930w7dvxd"))))
     (build-system cmake-build-system)
     (inputs
      `(("alsa-lib" ,alsa-lib)
-- 
2.19.1

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

* [bug#33028] [PATCH] gnu: update csound 6.11.0
  2018-10-13  0:10 ` [bug#33028] [PATCH] gnu: update csound 6.11.0 Brett Gilio
@ 2018-10-13  0:12   ` Brett Gilio
  2018-10-14  2:53   ` bug#33028: " 宋文武
  1 sibling, 0 replies; 7+ messages in thread
From: Brett Gilio @ 2018-10-13  0:12 UTC (permalink / raw)
  To: Brett Gilio; +Cc: 33028


Brett Gilio writes:

> ---
>  gnu/packages/audio.scm | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
> index d233940f2..785375295 100644
> --- a/gnu/packages/audio.scm
> +++ b/gnu/packages/audio.scm
> @@ -13,6 +13,7 @@
>  ;;; Copyright © 2018 okapi <okapi@firemail.cc>
>  ;;; Copyright © 2018 Maxim Cournoyer 
>  <maxim.cournoyer@gmail.com>
>  ;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
> +;;; Copyright © 2018 Brett Gilio <brettg@posteo.net>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -650,7 +651,7 @@ emulation (valve, tape), bit fiddling 
> (decimator, pointer-cast), etc.")
>  (define-public csound
>    (package
>      (name "csound")
> -    (version "6.09.1")
> +    (version "6.11.0")
>      (source (origin
>                (method url-fetch)
>                (uri (string-append
> @@ -659,7 +660,7 @@ emulation (valve, tape), bit fiddling 
> (decimator, pointer-cast), etc.")
>                (file-name (string-append name "-" version 
>                ".tar.gz"))
>                (sha256
>                 (base32
> - 
> "0xqpqws4jsv7fyawcjzwaw544qbfh29xq164kdf30a9v1n3yklp4"))))
> + 
> "072pk5h9w0vhw0ncc9dn90haw1yv18v04iwwjn8nsp6930w7dvxd"))))
>      (build-system cmake-build-system)
>      (inputs
>       `(("alsa-lib" ,alsa-lib)

Hopefully this one looks better. I'll admit I was having an issue 
with
git send-email until I finally figured out how to get it working.

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

* bug#33028: [PATCH] gnu: update csound 6.11.0
  2018-10-13  0:10 ` [bug#33028] [PATCH] gnu: update csound 6.11.0 Brett Gilio
  2018-10-13  0:12   ` Brett Gilio
@ 2018-10-14  2:53   ` 宋文武
  1 sibling, 0 replies; 7+ messages in thread
From: 宋文武 @ 2018-10-14  2:53 UTC (permalink / raw)
  To: Brett Gilio; +Cc: 33028-done

Brett Gilio <brettg@posteo.net> writes:

> ---
>  gnu/packages/audio.scm | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
>

Applied, thanks!

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

end of thread, other threads:[~2018-10-14  2:58 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-12 21:27 [bug#33028] [PATCH] gnu: csound: Update to 6.11.0 Brett Gilio
2018-10-12 21:33 ` Brett Gilio
2018-10-12 21:40   ` Tobias Geerinckx-Rice
2018-10-12 21:39 ` Tobias Geerinckx-Rice
2018-10-13  0:10 ` [bug#33028] [PATCH] gnu: update csound 6.11.0 Brett Gilio
2018-10-13  0:12   ` Brett Gilio
2018-10-14  2:53   ` bug#33028: " 宋文武

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