GNU bug report logs

#26637 [PATCH] gnu: Add gcompris-qt.

PackageSource(s)Maintainer(s)
guix-patches PTS Buildd Popcon
Reply or subscribe to this bug. View this bug as an mbox, status mbox, or maintainer mbox

Report forwarded to help-debbugs@gnu.org:
bug#26637; Package debbugs.gnu.org. (Mon, 24 Apr 2017 09:58:02 GMT) (full text, mbox, link).


Acknowledgement sent to Efraim Flashner <efraim@flashner.co.il>:
New bug report received and forwarded. Copy sent to help-debbugs@gnu.org. (Mon, 24 Apr 2017 09:58:02 GMT) (full text, mbox, link).


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

From: Efraim Flashner <efraim@flashner.co.il>
Subject: [PATCH] gnu: Add gcompris-qt.
Date: Mon, 24 Apr 2017 12:55:00 +0300
* gnu/packages/education.scm (gcompris-qt): New variable.
---
 gnu/packages/education.scm | 43 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm
index 808be203c..797fe69f6 100644
--- a/gnu/packages/education.scm
+++ b/gnu/packages/education.scm
@@ -2,6 +2,7 @@
 ;;; Copyright © 2016 Danny Milosavljevic <dannym@scratchpost.org>
 ;;; Copyright © 2016, 2017 Ricardo Wurmus <rekado@elephly.net>
 ;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com>
+;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -28,6 +29,7 @@
   #:use-module (gnu packages glib)
   #:use-module (gnu packages gnome)
   #:use-module (gnu packages gtk)
+  #:use-module (gnu packages kde-frameworks) ; extra-cmake-modules
   #:use-module (gnu packages perl)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages python)
@@ -102,6 +104,47 @@ of categories with some of the activities available in that category.
 ")
     (license license:gpl3+)))
 
+(define-public gcompris-qt
+  (package
+    (name "gcompris-qt")
+    (version "0.70")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (string-append
+               "http://gcompris.net/download/qt/src/gcompris-qt-"
+               version ".tar.xz"))
+        (sha256
+         (base32
+          "01r7i8dmwb2nlfyp0y0mzs8yydmvn5gq7xn1w7g21lysak1mliwa"))))
+    (build-system cmake-build-system)
+    (arguments
+     '(#:configure-flags (list "-DQML_BOX2D_MODULE=disabled")
+       #:tests? #f)) ; no test target
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("gettext" ,gettext-minimal)
+       ("perl" ,perl)))
+    (inputs
+     `(("python-2" ,python-2)
+       ("qt" ,qt)))
+    (home-page "http://gcompris.net/index-en.html")
+    (synopsis "Educational games for small children")
+    (description
+     "A large collection of educational games for small children, designed to be
+a unified interface to integrate more educational games.  Language-oriented
+games contain vocabulary, sounds, and voices for many different languages.
+Currently available boards include:
+@enumerate
+@item learning how to use a mouse and keyboard
+@item learning simple arithmetic
+@item learning how to read an analog clock
+@item recognize letters after hearing their names
+@item reading practice
+@item small games (memory games, jigsaw puzzles, ...)
+@end enumerate\n")
+    (license license:gpl3+)))
+
 (define-public tipp10
   (package
     (name "tipp10")
-- 
2.12.2





bug reassigned from package 'debbugs.gnu.org' to 'guix-patches'. Request was from Glenn Morris <rgm@gnu.org> to control@debbugs.gnu.org. (Mon, 24 Apr 2017 16:49:01 GMT) (full text, mbox, link).


Information forwarded to guix-patches@gnu.org:
bug#26637; Package guix-patches. (Mon, 24 Apr 2017 16:51:02 GMT) (full text, mbox, link).


Message #10 received at 26637@debbugs.gnu.org (full text, mbox, reply):

From: Glenn Morris <rgm@gnu.org>
To: 26637@debbugs.gnu.org
Cc: Efraim Flashner <efraim@flashner.co.il>
Subject: Re: bug#26637: [PATCH] gnu: Add gcompris-qt.
Date: Mon, 24 Apr 2017 12:50:43 -0400
Report reassigned to guix-patches.

If you want to report bugs by bcc (?), you must specify a Package: in
the first line of the body.

Efraim Flashner wrote:

> * gnu/packages/education.scm (gcompris-qt): New variable.
> ---
>  gnu/packages/education.scm | 43 +++++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 43 insertions(+)
>
> diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm
> index 808be203c..797fe69f6 100644
> --- a/gnu/packages/education.scm
> +++ b/gnu/packages/education.scm
> @@ -2,6 +2,7 @@
>  ;;; Copyright © 2016 Danny Milosavljevic <dannym@scratchpost.org>
>  ;;; Copyright © 2016, 2017 Ricardo Wurmus <rekado@elephly.net>
>  ;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com>
> +;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -28,6 +29,7 @@
>    #:use-module (gnu packages glib)
>    #:use-module (gnu packages gnome)
>    #:use-module (gnu packages gtk)
> +  #:use-module (gnu packages kde-frameworks) ; extra-cmake-modules
>    #:use-module (gnu packages perl)
>    #:use-module (gnu packages pkg-config)
>    #:use-module (gnu packages python)
> @@ -102,6 +104,47 @@ of categories with some of the activities available in that category.
>  ")
>      (license license:gpl3+)))
>  
> +(define-public gcompris-qt
> +  (package
> +    (name "gcompris-qt")
> +    (version "0.70")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (string-append
> +               "http://gcompris.net/download/qt/src/gcompris-qt-"
> +               version ".tar.xz"))
> +        (sha256
> +         (base32
> +          "01r7i8dmwb2nlfyp0y0mzs8yydmvn5gq7xn1w7g21lysak1mliwa"))))
> +    (build-system cmake-build-system)
> +    (arguments
> +     '(#:configure-flags (list "-DQML_BOX2D_MODULE=disabled")
> +       #:tests? #f)) ; no test target
> +    (native-inputs
> +     `(("extra-cmake-modules" ,extra-cmake-modules)
> +       ("gettext" ,gettext-minimal)
> +       ("perl" ,perl)))
> +    (inputs
> +     `(("python-2" ,python-2)
> +       ("qt" ,qt)))
> +    (home-page "http://gcompris.net/index-en.html")
> +    (synopsis "Educational games for small children")
> +    (description
> +     "A large collection of educational games for small children, designed to be
> +a unified interface to integrate more educational games.  Language-oriented
> +games contain vocabulary, sounds, and voices for many different languages.
> +Currently available boards include:
> +@enumerate
> +@item learning how to use a mouse and keyboard
> +@item learning simple arithmetic
> +@item learning how to read an analog clock
> +@item recognize letters after hearing their names
> +@item reading practice
> +@item small games (memory games, jigsaw puzzles, ...)
> +@end enumerate\n")
> +    (license license:gpl3+)))
> +
>  (define-public tipp10
>    (package
>      (name "tipp10")




Information forwarded to guix-patches@gnu.org:
bug#26637; Package guix-patches. (Fri, 28 Apr 2017 13:03:01 GMT) (full text, mbox, link).


Message #13 received at 26637@debbugs.gnu.org (full text, mbox, reply):

From: Thomas Danckaert <post@thomasdanckaert.be>
To: 26637@debbugs.gnu.org
Cc: efraim@flashner.co.il
Subject: Re: bug#26637: [PATCH] gnu: Add gcompris-qt.
Date: Fri, 28 Apr 2017 15:02:14 +0200
Hi!

> +    (native-inputs
> +     `(("extra-cmake-modules" ,extra-cmake-modules)
> +       ("gettext" ,gettext-minimal)
> +       ("perl" ,perl)))
> +    (inputs
> +     `(("python-2" ,python-2)
> +       ("qt" ,qt)))

*This time also replying to debbugs*

I think it's nicer to use the modular qt packages if possible?  I
checked and it compiles with the following inputs:

    (native-inputs
     `(("extra-cmake-modules" ,extra-cmake-modules)
       ("gettext" ,gettext-minimal)
       ("perl" ,perl)
       ("qttools" ,qttools)))
    (inputs
     `(("python-2" ,python-2)
       ("qtbase" ,qtbase)
       ("qtdeclarative" ,qtdeclarative)
       ("qtmultimedia" ,qtmultimedia)
       ("qtsvg" ,qtsvg)
       ("qtxmlpatterns" ,qtxmlpatterns)
       ("qtsensors" ,qtsensors)))

otherwise LGTM!

Thomas




Information forwarded to guix-patches@gnu.org:
bug#26637; Package guix-patches. (Fri, 28 Apr 2017 13:11:02 GMT) (full text, mbox, link).


Message #16 received at 26637@debbugs.gnu.org (full text, mbox, reply):

From: Efraim Flashner <efraim@flashner.co.il>
To: 26637@debbugs.gnu.org
Subject: Re: bug#26637: [PATCH] gnu: Add gcompris-qt.
Date: Fri, 28 Apr 2017 16:09:47 +0300
[Message part 1 (text/plain, inline)]
-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[Message part 2 (message/rfc822, inline)]
From: Efraim Flashner <efraim@flashner.co.il>
To: Thomas Danckaert <post@thomasdanckaert.be>
Subject: Re: bug#26637: [PATCH] gnu: Add gcompris-qt.
Date: Fri, 28 Apr 2017 15:48:43 +0300
[Message part 3 (text/plain, inline)]
On Fri, Apr 28, 2017 at 11:37:19AM +0200, Thomas Danckaert wrote:
> Hi!
> 
> Efraim Flashner <efraim@flashner.co.il> writes:
> 
> > * gnu/packages/education.scm (gcompris-qt): New variable.
> > ---
> > 
> > [...]
> > 
> > +    (inputs
> > +     `(("python-2" ,python-2)
> > +       ("qt" ,qt)))
> 
> I think it's preferable to use the modular qt packages when possible.  I
> and the package builds with the following inputs:
> 
>     (native-inputs
>      `(("extra-cmake-modules" ,extra-cmake-modules)
>        ("gettext" ,gettext-minimal)
>        ("perl" ,perl)
>        ("qttools" ,qttools))) ; qtlinguist
>     (inputs
>      `(("python-2" ,python-2)
>        ("qtbase" ,qtbase)
>        ("qtdeclarative" ,qtdeclarative)
>        ("qtmultimedia" ,qtmultimedia)
>        ("qtsvg" ,qtsvg)
>        ("qtxmlpatterns" ,qtxmlpatterns)
>        ("qtsensors" ,qtsensors)))
> 
> Otherwise LGTM!
> 
> Thomas

here's what I have in my WIP area for later testing:

    (native-inputs
     `(("extra-cmake-modules" ,extra-cmake-modules)
       ("gettext" ,gettext-minimal)
       ("perl" ,perl)
       ("qttools" ,qttools)
       ))
    (inputs
     `(("python-2" ,python-2)
       ;("qt" ,qt) ; cannot find qtquick with modular-qt
       ("qtbase" ,qtbase)
       ("qtdeclarative" ,qtdeclarative)
       ("qtmultimedia" ,qtmultimedia)
       ("qtsensors" ,qtsensors)
       ("qtsvg" ,qtsvg)
       ("qtxmlpatterns" ,qtxmlpatterns)
       ))

So it looks like we have the same package list, unfortunately I couldn't
get it working with modular-qt

-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[signature.asc (application/pgp-signature, inline)]
[signature.asc (application/pgp-signature, inline)]

Added tag(s) fixed. Request was from ludo@gnu.org (Ludovic Courtès) to control@debbugs.gnu.org. (Tue, 02 May 2017 21:41:02 GMT) (full text, mbox, link).


bug closed, send any further explanations to 26637@debbugs.gnu.org and Efraim Flashner <efraim@flashner.co.il> Request was from ludo@gnu.org (Ludovic Courtès) to control@debbugs.gnu.org. (Tue, 02 May 2017 21:41:03 GMT) (full text, mbox, link).


bug archived. Request was from Debbugs Internal Request <help-debbugs@gnu.org> to internal_control@debbugs.gnu.org. (Wed, 31 May 2017 11:24:03 GMT) (full text, mbox, link).


Send a report that this bug log contains spam.


debbugs.gnu.org maintainers <help-debbugs@gnu.org>. Last modified: Mon Nov 4 22:20:36 2024; Machine Name: wallace-server

GNU bug tracking system

Debbugs is free software and licensed under the terms of the GNU Public License version 2. The current version can be obtained from https://bugs.debian.org/debbugs-source/.

Copyright © 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson, 2005-2017 Don Armstrong, and many other contributors.