unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#60306] [PATCH] gnu: flightgear: Update to 2020.3.17.
       [not found] <7da3c7a11d3512b06b77587a89f065e9a1a68c2a.1671895296.git.poomklao.ref@yahoo.com>
@ 2022-12-24 15:21 ` Parnikkapore via Guix-patches via
  2022-12-27 22:37   ` Ludovic Courtès
  2022-12-28 11:47   ` Parnikkapore via Guix-patches via
  0 siblings, 2 replies; 6+ messages in thread
From: Parnikkapore via Guix-patches via @ 2022-12-24 15:21 UTC (permalink / raw)
  To: 60306; +Cc: Parnikkapore

* gnu/packages/games (flightgear): Update to 2020.3.17.
  Add nss-certs dependency as it is required for TerraSync, an
  optional feature - do comment if this is not correct
---
 gnu/packages/games.scm | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 19c689dee1..1a8519692b 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -74,6 +74,7 @@
 ;;; Copyright © 2022 Gabriel Arazas <foo.dogsquared@gmail.com>
 ;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
 ;;; Copyright © 2022 Hendursaga <hendursaga@aol.com>
+;;; Copyright © 2022 Parnikkapore <poomklao@yahoo.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -113,6 +114,7 @@ (define-module (gnu packages games)
   #:use-module (gnu packages bash)
   #:use-module (gnu packages bison)
   #:use-module (gnu packages boost)
+  #:use-module (gnu packages certs)
   #:use-module (gnu packages check)
   #:use-module (gnu packages cmake)
   #:use-module (gnu packages compression)
@@ -9100,7 +9102,7 @@ (define-public marble-marcher
 (define simgear
   (package
     (name "simgear")
-    (version "2020.3.11")
+    (version "2020.3.17")
     (source
      (origin
        (method url-fetch)
@@ -9108,7 +9110,7 @@ (define simgear
                            (version-major+minor version) "/"
                            "simgear-" version ".tar.bz2"))
        (sha256
-        (base32 "0g2g3n3sb6kdimvcrn9kvlhyyrp5c6lx20fgzz8l609v5aygr3dv"))
+        (base32 "0z1pkxs4fw8xkiainxgcpayhmn0b4c0sc2j6q88x66zzvk89qpjc"))
        (modules '((guix build utils)))
        (snippet
         '(begin
@@ -9153,7 +9155,7 @@ (define-public flightgear
                            (version-major+minor version) "/"
                            "flightgear-" version ".tar.bz2"))
        (sha256
-        (base32 "15sar94x13j2y1m6adgmz2q1m1i9bzj3sxqla6y3m9vyf33hc9zy"))
+        (base32 "0m0qbyf9i84avkfmjm1a5bijl1nqs7wnpw7rfz53ls52mkgdww36"))
        (modules '((guix build utils)))
        (snippet
         '(begin
@@ -9203,6 +9205,7 @@ (define-public flightgear
            freetype
            glew
            libpng
+           nss-certs ; TerraSync
            openal
            openscenegraph
            plib
@@ -9216,7 +9219,7 @@ (define-public flightgear
     (native-inputs
      `(("cppunit" ,cppunit)
        ("pkg-config" ,pkg-config)
-       ("qttools-5" ,qttools-5)
+       ("qttools" ,qttools-5)
        ("flightgear-data"
         ,(origin
            (method url-fetch)
@@ -9225,7 +9228,7 @@ (define-public flightgear
                                "FlightGear-" version "-data.txz"))
            (sha256
             (base32
-             "0n5mw9vw1snab16c1y3i9ylkiv54az57bs2mvpq20hhg5hdiagqj"))))))
+             "1s6qahfia3llghfqgx990brg7gbb7z7accsq528kcyp6k8mvlpia"))))))
     (home-page "https://www.flightgear.org/")
     (synopsis "Flight simulator")
     (description "The goal of the FlightGear project is to create a

base-commit: 9cadac9787a03093550a1132bf7d20eb4eaf4df9
-- 
2.34.1





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

* [bug#60306] [PATCH] gnu: flightgear: Update to 2020.3.17.
  2022-12-24 15:21 ` [bug#60306] [PATCH] gnu: flightgear: Update to 2020.3.17 Parnikkapore via Guix-patches via
@ 2022-12-27 22:37   ` Ludovic Courtès
  2022-12-28 11:47   ` Parnikkapore via Guix-patches via
  1 sibling, 0 replies; 6+ messages in thread
From: Ludovic Courtès @ 2022-12-27 22:37 UTC (permalink / raw)
  To: Parnikkapore; +Cc: 60306

Hi,

Parnikkapore <poomklao@yahoo.com> skribis:

> * gnu/packages/games (flightgear): Update to 2020.3.17.
>   Add nss-certs dependency as it is required for TerraSync, an
>   optional feature - do comment if this is not correct

The patch is all good:

  https://qa.guix.gnu.org/issue/60306

However, could you send a v2 without ‘nss-certs’?  The ‘nss-certs’
package is probably not necessary at build time; if it’s necessary at
run time, there’s no use in adding it as ‘inputs’.

(Sending v2 will get qa.guix.gnu.org to build it and make sure
everything’s alright.)

Thanks in advance,
Ludo’.




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

* [bug#60306] [PATCH] gnu: flightgear: Update to 2020.3.17.
  2022-12-24 15:21 ` [bug#60306] [PATCH] gnu: flightgear: Update to 2020.3.17 Parnikkapore via Guix-patches via
  2022-12-27 22:37   ` Ludovic Courtès
@ 2022-12-28 11:47   ` Parnikkapore via Guix-patches via
  2022-12-28 11:57     ` Parnikkapore via Guix-patches via
  2022-12-28 12:56     ` [bug#60306] [PATCH v2] " Parnikkapore via Guix-patches via
  1 sibling, 2 replies; 6+ messages in thread
From: Parnikkapore via Guix-patches via @ 2022-12-28 11:47 UTC (permalink / raw)
  To: 60306; +Cc: Parnikkapore

* gnu/packages/games (flightgear): Update to 2020.3.17.
---

Sal' Ludo! For future packages, may I know what the best practices are for 
dependencies that must be visible at runtime but aren't used at compile time?

 gnu/packages/games.scm | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 19c689dee1..a0767f80ff 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -74,6 +74,7 @@
 ;;; Copyright © 2022 Gabriel Arazas <foo.dogsquared@gmail.com>
 ;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
 ;;; Copyright © 2022 Hendursaga <hendursaga@aol.com>
+;;; Copyright © 2022 Parnikkapore <poomklao@yahoo.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -113,6 +114,7 @@ (define-module (gnu packages games)
   #:use-module (gnu packages bash)
   #:use-module (gnu packages bison)
   #:use-module (gnu packages boost)
+  #:use-module (gnu packages certs)
   #:use-module (gnu packages check)
   #:use-module (gnu packages cmake)
   #:use-module (gnu packages compression)
@@ -9100,7 +9102,7 @@ (define-public marble-marcher
 (define simgear
   (package
     (name "simgear")
-    (version "2020.3.11")
+    (version "2020.3.17")
     (source
      (origin
        (method url-fetch)
@@ -9108,7 +9110,7 @@ (define simgear
                            (version-major+minor version) "/"
                            "simgear-" version ".tar.bz2"))
        (sha256
-        (base32 "0g2g3n3sb6kdimvcrn9kvlhyyrp5c6lx20fgzz8l609v5aygr3dv"))
+        (base32 "0z1pkxs4fw8xkiainxgcpayhmn0b4c0sc2j6q88x66zzvk89qpjc"))
        (modules '((guix build utils)))
        (snippet
         '(begin
@@ -9153,7 +9155,7 @@ (define-public flightgear
                            (version-major+minor version) "/"
                            "flightgear-" version ".tar.bz2"))
        (sha256
-        (base32 "15sar94x13j2y1m6adgmz2q1m1i9bzj3sxqla6y3m9vyf33hc9zy"))
+        (base32 "0m0qbyf9i84avkfmjm1a5bijl1nqs7wnpw7rfz53ls52mkgdww36"))
        (modules '((guix build utils)))
        (snippet
         '(begin
@@ -9216,7 +9218,7 @@ (define-public flightgear
     (native-inputs
      `(("cppunit" ,cppunit)
        ("pkg-config" ,pkg-config)
-       ("qttools-5" ,qttools-5)
+       ("qttools" ,qttools-5)
        ("flightgear-data"
         ,(origin
            (method url-fetch)
@@ -9225,7 +9227,7 @@ (define-public flightgear
                                "FlightGear-" version "-data.txz"))
            (sha256
             (base32
-             "0n5mw9vw1snab16c1y3i9ylkiv54az57bs2mvpq20hhg5hdiagqj"))))))
+             "1s6qahfia3llghfqgx990brg7gbb7z7accsq528kcyp6k8mvlpia"))))))
     (home-page "https://www.flightgear.org/")
     (synopsis "Flight simulator")
     (description "The goal of the FlightGear project is to create a

base-commit: 9cadac9787a03093550a1132bf7d20eb4eaf4df9
-- 
2.34.1





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

* [bug#60306] [PATCH] gnu: flightgear: Update to 2020.3.17.
  2022-12-28 11:47   ` Parnikkapore via Guix-patches via
@ 2022-12-28 11:57     ` Parnikkapore via Guix-patches via
  2022-12-28 12:56     ` [bug#60306] [PATCH v2] " Parnikkapore via Guix-patches via
  1 sibling, 0 replies; 6+ messages in thread
From: Parnikkapore via Guix-patches via @ 2022-12-28 11:57 UTC (permalink / raw)
  To: 60306; +Cc: Parnikkapore

* gnu/packages/games (flightgear): Update to 2020.3.17.
---

Insta-edit to remove unused import - eep!

 gnu/packages/games.scm | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 19c689dee1..63ea76e45b 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -74,6 +74,7 @@
 ;;; Copyright © 2022 Gabriel Arazas <foo.dogsquared@gmail.com>
 ;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
 ;;; Copyright © 2022 Hendursaga <hendursaga@aol.com>
+;;; Copyright © 2022 Parnikkapore <poomklao@yahoo.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -9100,7 +9101,7 @@ (define-public marble-marcher
 (define simgear
   (package
     (name "simgear")
-    (version "2020.3.11")
+    (version "2020.3.17")
     (source
      (origin
        (method url-fetch)
@@ -9108,7 +9109,7 @@ (define simgear
                            (version-major+minor version) "/"
                            "simgear-" version ".tar.bz2"))
        (sha256
-        (base32 "0g2g3n3sb6kdimvcrn9kvlhyyrp5c6lx20fgzz8l609v5aygr3dv"))
+        (base32 "0z1pkxs4fw8xkiainxgcpayhmn0b4c0sc2j6q88x66zzvk89qpjc"))
        (modules '((guix build utils)))
        (snippet
         '(begin
@@ -9153,7 +9154,7 @@ (define-public flightgear
                            (version-major+minor version) "/"
                            "flightgear-" version ".tar.bz2"))
        (sha256
-        (base32 "15sar94x13j2y1m6adgmz2q1m1i9bzj3sxqla6y3m9vyf33hc9zy"))
+        (base32 "0m0qbyf9i84avkfmjm1a5bijl1nqs7wnpw7rfz53ls52mkgdww36"))
        (modules '((guix build utils)))
        (snippet
         '(begin
@@ -9216,7 +9217,7 @@ (define-public flightgear
     (native-inputs
      `(("cppunit" ,cppunit)
        ("pkg-config" ,pkg-config)
-       ("qttools-5" ,qttools-5)
+       ("qttools" ,qttools-5)
        ("flightgear-data"
         ,(origin
            (method url-fetch)
@@ -9225,7 +9226,7 @@ (define-public flightgear
                                "FlightGear-" version "-data.txz"))
            (sha256
             (base32
-             "0n5mw9vw1snab16c1y3i9ylkiv54az57bs2mvpq20hhg5hdiagqj"))))))
+             "1s6qahfia3llghfqgx990brg7gbb7z7accsq528kcyp6k8mvlpia"))))))
     (home-page "https://www.flightgear.org/")
     (synopsis "Flight simulator")
     (description "The goal of the FlightGear project is to create a

base-commit: 9cadac9787a03093550a1132bf7d20eb4eaf4df9
-- 
2.34.1





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

* [bug#60306] [PATCH v2] gnu: flightgear: Update to 2020.3.17.
  2022-12-28 11:47   ` Parnikkapore via Guix-patches via
  2022-12-28 11:57     ` Parnikkapore via Guix-patches via
@ 2022-12-28 12:56     ` Parnikkapore via Guix-patches via
  2023-01-05 22:12       ` bug#60306: [PATCH] " Ludovic Courtès
  1 sibling, 1 reply; 6+ messages in thread
From: Parnikkapore via Guix-patches via @ 2022-12-28 12:56 UTC (permalink / raw)
  To: 60306; +Cc: Parnikkapore

* gnu/packages/games (flightgear): Update to 2020.3.17.
---

(Resending the last revision with a v2, just in case)

 gnu/packages/games.scm | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 19c689dee1..63ea76e45b 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -74,6 +74,7 @@
 ;;; Copyright © 2022 Gabriel Arazas <foo.dogsquared@gmail.com>
 ;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
 ;;; Copyright © 2022 Hendursaga <hendursaga@aol.com>
+;;; Copyright © 2022 Parnikkapore <poomklao@yahoo.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -9100,7 +9101,7 @@ (define-public marble-marcher
 (define simgear
   (package
     (name "simgear")
-    (version "2020.3.11")
+    (version "2020.3.17")
     (source
      (origin
        (method url-fetch)
@@ -9108,7 +9109,7 @@ (define simgear
                            (version-major+minor version) "/"
                            "simgear-" version ".tar.bz2"))
        (sha256
-        (base32 "0g2g3n3sb6kdimvcrn9kvlhyyrp5c6lx20fgzz8l609v5aygr3dv"))
+        (base32 "0z1pkxs4fw8xkiainxgcpayhmn0b4c0sc2j6q88x66zzvk89qpjc"))
        (modules '((guix build utils)))
        (snippet
         '(begin
@@ -9153,7 +9154,7 @@ (define-public flightgear
                            (version-major+minor version) "/"
                            "flightgear-" version ".tar.bz2"))
        (sha256
-        (base32 "15sar94x13j2y1m6adgmz2q1m1i9bzj3sxqla6y3m9vyf33hc9zy"))
+        (base32 "0m0qbyf9i84avkfmjm1a5bijl1nqs7wnpw7rfz53ls52mkgdww36"))
        (modules '((guix build utils)))
        (snippet
         '(begin
@@ -9216,7 +9217,7 @@ (define-public flightgear
     (native-inputs
      `(("cppunit" ,cppunit)
        ("pkg-config" ,pkg-config)
-       ("qttools-5" ,qttools-5)
+       ("qttools" ,qttools-5)
        ("flightgear-data"
         ,(origin
            (method url-fetch)
@@ -9225,7 +9226,7 @@ (define-public flightgear
                                "FlightGear-" version "-data.txz"))
            (sha256
             (base32
-             "0n5mw9vw1snab16c1y3i9ylkiv54az57bs2mvpq20hhg5hdiagqj"))))))
+             "1s6qahfia3llghfqgx990brg7gbb7z7accsq528kcyp6k8mvlpia"))))))
     (home-page "https://www.flightgear.org/")
     (synopsis "Flight simulator")
     (description "The goal of the FlightGear project is to create a

base-commit: 9cadac9787a03093550a1132bf7d20eb4eaf4df9
-- 
2.34.1





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

* bug#60306: [PATCH] gnu: flightgear: Update to 2020.3.17.
  2022-12-28 12:56     ` [bug#60306] [PATCH v2] " Parnikkapore via Guix-patches via
@ 2023-01-05 22:12       ` Ludovic Courtès
  0 siblings, 0 replies; 6+ messages in thread
From: Ludovic Courtès @ 2023-01-05 22:12 UTC (permalink / raw)
  To: Parnikkapore; +Cc: 60306-done

Hi,

Parnikkapore <poomklao@yahoo.com> skribis:

> * gnu/packages/games (flightgear): Update to 2020.3.17.

Applied, thanks!

Ludo’.




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

end of thread, other threads:[~2023-01-05 22:19 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <7da3c7a11d3512b06b77587a89f065e9a1a68c2a.1671895296.git.poomklao.ref@yahoo.com>
2022-12-24 15:21 ` [bug#60306] [PATCH] gnu: flightgear: Update to 2020.3.17 Parnikkapore via Guix-patches via
2022-12-27 22:37   ` Ludovic Courtès
2022-12-28 11:47   ` Parnikkapore via Guix-patches via
2022-12-28 11:57     ` Parnikkapore via Guix-patches via
2022-12-28 12:56     ` [bug#60306] [PATCH v2] " Parnikkapore via Guix-patches via
2023-01-05 22:12       ` bug#60306: [PATCH] " Ludovic Courtès

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