From unknown Thu Aug 14 21:45:13 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#26637 <26637@debbugs.gnu.org> To: bug#26637 <26637@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add gcompris-qt. Reply-To: bug#26637 <26637@debbugs.gnu.org> Date: Fri, 15 Aug 2025 04:45:13 +0000 retitle 26637 [PATCH] gnu: Add gcompris-qt. reassign 26637 guix-patches submitter 26637 Efraim Flashner severity 26637 normal tag 26637 patch fixed thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Apr 24 05:57:17 2017 Received: (at submit) by debbugs.gnu.org; 24 Apr 2017 09:57:17 +0000 Received: from localhost ([127.0.0.1]:37112 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d2ak4-00051v-Q9 for submit@debbugs.gnu.org; Mon, 24 Apr 2017 05:57:17 -0400 Received: from eggs.gnu.org ([208.118.235.92]:40832) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d2ak3-00051i-7d for submit@debbugs.gnu.org; Mon, 24 Apr 2017 05:57:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d2ajw-0001Wc-Nv for submit@debbugs.gnu.org; Mon, 24 Apr 2017 05:57:06 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: * X-Spam-Status: No, score=1.8 required=5.0 tests=BAYES_50,MISSING_HEADERS autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:37655) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1d2ajw-0001WX-Kr for submit@debbugs.gnu.org; Mon, 24 Apr 2017 05:57:04 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60023) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d2ajs-0005sl-0g for guix-patches@gnu.org; Mon, 24 Apr 2017 05:57:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d2ajn-0001UZ-Mj for guix-patches@gnu.org; Mon, 24 Apr 2017 05:57:00 -0400 Received: from flashner.co.il ([178.62.234.194]:54016) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d2ajn-0001UJ-FD for guix-patches@gnu.org; Mon, 24 Apr 2017 05:56:55 -0400 Received: from localhost (85.64.232.168.dynamic.barak-online.net [85.64.232.168]) by flashner.co.il (Postfix) with ESMTPSA id 8B497402FA for ; Mon, 24 Apr 2017 09:56:53 +0000 (UTC) X-Mailbox-Line: From 542e21d17b74e0a8e9ee4fd687bdf08ab346c4e8 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 24 Apr 2017 12:55:00 +0300 Subject: [PATCH] gnu: Add gcompris-qt. X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] Message-ID: X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -2.8 (--) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.8 (--) * 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 ;;; Copyright © 2016, 2017 Ricardo Wurmus ;;; Copyright © 2016 Hartmut Goebel +;;; Copyright © 2017 Efraim Flashner ;;; ;;; 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 From debbugs-submit-bounces@debbugs.gnu.org Mon Apr 24 12:48:55 2017 Received: (at control) by debbugs.gnu.org; 24 Apr 2017 16:48:55 +0000 Received: from localhost ([127.0.0.1]:38209 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d2hAU-0005LE-Ux for submit@debbugs.gnu.org; Mon, 24 Apr 2017 12:48:55 -0400 Received: from eggs.gnu.org ([208.118.235.92]:43333) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d2hAU-0005L0-7H for control@debbugs.gnu.org; Mon, 24 Apr 2017 12:48:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d2hAO-0008QV-Cz for control@debbugs.gnu.org; Mon, 24 Apr 2017 12:48:49 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:50437) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d2hAO-0008QI-9Y for control@debbugs.gnu.org; Mon, 24 Apr 2017 12:48:48 -0400 Received: from rgm by fencepost.gnu.org with local (Exim 4.82) (envelope-from ) id 1d2hAN-0002cj-Tk for control@debbugs.gnu.org; Mon, 24 Apr 2017 12:48:48 -0400 Subject: control message for bug 26637 To: X-Mailer: mail (GNU Mailutils 2.99.98) Message-Id: From: Glenn Morris Date: Mon, 24 Apr 2017 12:48:47 -0400 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) reassign 26637 guix-patches From debbugs-submit-bounces@debbugs.gnu.org Mon Apr 24 12:50:56 2017 Received: (at 26637) by debbugs.gnu.org; 24 Apr 2017 16:50:57 +0000 Received: from localhost ([127.0.0.1]:38213 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d2hCP-0005OV-8w for submit@debbugs.gnu.org; Mon, 24 Apr 2017 12:50:56 -0400 Received: from eggs.gnu.org ([208.118.235.92]:44054) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d2hCN-0005OK-Te for 26637@debbugs.gnu.org; Mon, 24 Apr 2017 12:50:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d2hCH-0000uL-Hi for 26637@debbugs.gnu.org; Mon, 24 Apr 2017 12:50:46 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:50450) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d2hCH-0000uF-Ds; Mon, 24 Apr 2017 12:50:45 -0400 Received: from rgm by fencepost.gnu.org with local (Exim 4.82) (envelope-from ) id 1d2hCF-0002iB-N2; Mon, 24 Apr 2017 12:50:43 -0400 From: Glenn Morris To: 26637@debbugs.gnu.org Subject: Re: bug#26637: [PATCH] gnu: Add gcompris-qt. References: Mail-Followup-To: 26637@debbugs.gnu.org, efraim@flashner.co.il X-Spook: Twister Gangs Facility strategic SAFE top secret Abbas X-Ran: ?72"*6htA^5>JD5b_9`k>],_yhK[eD*gk7a}x=@m=Oq@tJKv6?:j1xF-{.;6!pN<'Ybptu X-Hue: white X-Attribution: GM Date: Mon, 24 Apr 2017 12:50:43 -0400 In-Reply-To: (Efraim Flashner's message of "Mon, 24 Apr 2017 12:55:00 +0300") Message-ID: User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 26637 Cc: Efraim Flashner X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: 26637@debbugs.gnu.org, efraim@flashner.co.il Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) 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 =C2=A9 2016 Danny Milosavljevic > ;;; Copyright =C2=A9 2016, 2017 Ricardo Wurmus > ;;; Copyright =C2=A9 2016 Hartmut Goebel > +;;; Copyright =C2=A9 2017 Efraim Flashner > ;;; > ;;; 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+))) >=20=20 > +(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=3Ddisabled") > + #: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, design= ed to be > +a unified interface to integrate more educational games. Language-orien= ted > +games contain vocabulary, sounds, and voices for many different language= s. > +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") From debbugs-submit-bounces@debbugs.gnu.org Fri Apr 28 09:02:31 2017 Received: (at 26637) by debbugs.gnu.org; 28 Apr 2017 13:02:31 +0000 Received: from localhost ([127.0.0.1]:43752 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d45Xb-0004oB-1x for submit@debbugs.gnu.org; Fri, 28 Apr 2017 09:02:31 -0400 Received: from s02-out.spamexperts.axc.nl ([185.175.200.125]:51171) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d45XZ-0004nx-6h for 26637@debbugs.gnu.org; Fri, 28 Apr 2017 09:02:29 -0400 Received: from vserver42.axc.nl ([185.182.56.92]) by s02.spamexperts.axc.nl with esmtps (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.86) (envelope-from ) id 1d45XS-0000n5-6B; Fri, 28 Apr 2017 15:02:22 +0200 Received: from mail.axc.nl ([185.182.56.42]:57912 helo=mail.axc.eu) by vserver42.axc.nl with esmtp (Exim 4.89) (envelope-from ) id 1d45XR-0005qI-R3; Fri, 28 Apr 2017 15:02:22 +0200 From: Thomas Danckaert To: 26637@debbugs.gnu.org Subject: Re: bug#26637: [PATCH] gnu: Add gcompris-qt. References: Date: Fri, 28 Apr 2017 15:02:14 +0200 In-Reply-To: (Glenn Morris's message of "Mon, 24 Apr 2017 12:50:43 -0400") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain PrimaryMX: Accepted email from trusted host. Hint: This skips spam scanning so make sure other host is not vulnerable X-Relay-Host: 185.182.56.42 X-Spam-Score: 0.0 (/) X-Spam-Report: Spam detection software, running on the system "vserver42.axc.nl", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: 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* [...] Content analysis details: (0.0 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- SpamTally: Final spam score: 0 X-Originating-IP: 185.182.56.92 X-SpamExperts-Domain: vserver42.axc.nl X-SpamExperts-Username: 185.182.56.92 Authentication-Results: spamexperts.axc.nl; auth=pass smtp.auth=185.182.56.92@vserver42.axc.nl X-SpamExperts-Outgoing-Class: ham X-SpamExperts-Outgoing-Evidence: Combined (0.04) X-Recommended-Action: accept X-Filter-ID: s0sct1PQhAABKnZB5plbIaExX4b9HB97Y0LqBeziPXa8B5kabb+8+DRlCqSxA333/bPom7IVowNb jNmNSGjlJADpxEq2QWue0NVTi1XPmXej1KRrf1Y8eevl1lZRQAkHO76XSTAwtV4mg4i2ouCDa4AU hvIWAV5xUW/+gAh4vXoufiQl7nxKhhzB4dziLioSRcOb18WfxGyg6Om6u4YYm2cJ38kvRq4xhBsx bBuC8wQvPRYKza70yK2TxRJHcdD+oEAP/to+02F3J4r01qcN199fxN2oReTDHAyOynaY0Cldue3r +qEeQYBWND7fDPGoUqYOv6lKxxeboK+YPP3g5J9Wyy39ARVu6lpph/EphEmSUaqSECP9/MJNMfS9 WPFvtKiR9oEdyOK7GnLP3Jw7nAFKpw6uarMIchUUKBPMSwpSCbmmPlWCjHorsybj6Lk5/wXDIul4 76yvobWtzyMEf4bxR0PuC4wwYQTc8Sg/23VtqGjgyi5JHolhrWpNa9YQsl4SUWp4U8fCCSBjefGq te4ROxlmGgdR7QBaGWEQFYs+dvusjRV96oP1cmFb05OHyZAZLfpWinSu+danhtKvH9pAsaSpuQPS cbIWdeXhkZC4rAXOgWX2FBHgH187+EKv5hICVo92zvI9isesxBu4AK5YVcPPq3MXlUe9sP5+k0dp Y7f6EqR6zsgzOR3cDnOAsxL4KdJCrTDZ+ImcHnA8eyEGbC0Bazu9nJzSlsnvxyY6qQzLuCe/hQ3A 5i3Uw+OAbBH+DkNPnrywBHhKB8rPDBfx1bbfhyaO3VHMr4+RLj/ejVZe2CIQ4NKRrAu+ot9y2cWr XbcZhW7pK+MGrvKEj9KU03OguuQx+XRr79UnicJMBhQwZ4U+dP0cDUdUHxwFbfoMdkx5TElCNuPi xzWyoA== X-Report-Abuse-To: spam@s01.spamexperts.axc.nl X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 26637 Cc: efraim@flashner.co.il X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) 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 From debbugs-submit-bounces@debbugs.gnu.org Fri Apr 28 09:10:02 2017 Received: (at 26637) by debbugs.gnu.org; 28 Apr 2017 13:10:02 +0000 Received: from localhost ([127.0.0.1]:43766 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d45er-0004zg-R1 for submit@debbugs.gnu.org; Fri, 28 Apr 2017 09:10:02 -0400 Received: from flashner.co.il ([178.62.234.194]:36343) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d45ep-0004zL-QT for 26637@debbugs.gnu.org; Fri, 28 Apr 2017 09:10:00 -0400 Received: from localhost (85.64.232.168.dynamic.barak-online.net [85.64.232.168]) by flashner.co.il (Postfix) with ESMTPSA id ED09440210 for <26637@debbugs.gnu.org>; Fri, 28 Apr 2017 13:09:53 +0000 (UTC) Date: Fri, 28 Apr 2017 16:09:47 +0300 From: Efraim Flashner To: 26637@debbugs.gnu.org Subject: Re: bug#26637: [PATCH] gnu: Add gcompris-qt. Message-ID: <20170428130947.GD28578@macbook42.flashner.co.il> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="KJY2Ze80yH5MUxol" Content-Disposition: inline User-Agent: Mutt/1.8.2 (2017-04-18) X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 26637 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) --KJY2Ze80yH5MUxol Content-Type: multipart/mixed; boundary="mR8QP4gmHujQHb1c" Content-Disposition: inline --mR8QP4gmHujQHb1c Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --mR8QP4gmHujQHb1c Content-Type: message/rfc822 Content-Disposition: inline Date: Fri, 28 Apr 2017 15:48:43 +0300 From: Efraim Flashner To: Thomas Danckaert Subject: Re: bug#26637: [PATCH] gnu: Add gcompris-qt. Message-ID: <20170428124843.GC28578@macbook42.flashner.co.il> References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="Xm/fll+QQv+hsKip" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.8.2 (2017-04-18) --Xm/fll+QQv+hsKip Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Apr 28, 2017 at 11:37:19AM +0200, Thomas Danckaert wrote: > Hi! >=20 > Efraim Flashner writes: >=20 > > * gnu/packages/education.scm (gcompris-qt): New variable. > > --- > >=20 > > [...] > >=20 > > + (inputs > > + `(("python-2" ,python-2) > > + ("qt" ,qt))) >=20 > I think it's preferable to use the modular qt packages when possible. I > and the package builds with the following inputs: >=20 > (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))) >=20 > Otherwise LGTM! >=20 > 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 --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --Xm/fll+QQv+hsKip Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEkVdB/rIvpOM7bo+N9MHTkX6s7pMFAlkDOhAACgkQ9MHTkX6s 7pMh+BAApEvW77MVbXTF3F/sq7pmS+4+5/QZRmH6pBqz2Ii0TxfMgi5FkPrIV+bh tPtJ98eoFz6yIVPLtjlx/cGzOEPuzP+5qV9tX374CLiTq/iThNWWqsPMoF/cymB0 zTiwySU77vj+24w2GVcPHH2UbTpBoXdp972NWbeyko9cBdVR8AnnuSYE37MnSuDt aLnUM9oFBRwRMZjOK0GwMEjA7d8eV71677GvCLuXHQJwc9U7zCxZwQpPqKg9tCyz FrWMrdbaab47juYuZkDqsGW1F7N1z9zDiVAdPRaaPfZs81jBVSv3BOn562EKVHta 26VIS7MPrqhvPdAls/RXfGcl14GdS7xRyyVXubXWAfo+veJI4o8zKSfbtcNYHMob CZIRqJhzLDGHpL9FwZWyXFGZoZafFRyQJmE1TTik427X1mnrDOA5mgsHwF8vywB8 JuYV9lIEIos1iz01BRI1xzzMqBEmrToBkTZuubQ2l1ObIikrCODb3ADSuO/e7RiW G5FQk3vMPldYVk5iVvhajNu7Ftjb2HfYj583ciS45NVs5UVr21pMkXLG+juT8h2x pWHlnpAxTWfQH5dfCwCa/sJ3/RZb//d/sJN9emxadhpmVPBcG0lJ12LXcDgf1ONG 7TjXz0zdi5eS0tJTHSfWKfnjrIBbggfgdP2iFQwXq5yX22UXXPc= =B4/1 -----END PGP SIGNATURE----- --Xm/fll+QQv+hsKip-- --mR8QP4gmHujQHb1c-- --KJY2Ze80yH5MUxol Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEkVdB/rIvpOM7bo+N9MHTkX6s7pMFAlkDPwIACgkQ9MHTkX6s 7pMeqQ//cYGLoCaDN7Nf9SCFEVIomleJOgx6sQluFMaee/yJdGSsu07OXpVFX9in ZhZgZZebyr7j7ynPHi4KaijkHBvyqgj9DOCsgUmhXw8uY5hb9plFd0z8BEfxprpz 2ttZn1Acn3XQhSJ2Z9XOSeYRbiekNJAANH8/wCHHZ1zeRtULyXLuus42yvg6g7VT gAPxJS/Te7KoB9dG+y3fNDIdu93am/w0wuR56K5XdUfM5j8fF+kYOUbPSElfXESA E9ZPiJ0MUYnjfuFtx5cgevbWlq2nGtU8cudP9bxz1C6VgAbHjrzvnuQqqMmmrGa3 pPzeM1xAIV4SR6nzdFSeeFZAyf5EFrffLu1PcmNH1ZACt86ct7rx+Xaq/G1cysTi 1TxxjQF7Tqm/XMpQuKqjsNNf0irAnca4dXWlaVfycoh8O8GyPw8ak7swbbHNwnzp vDEktI3H4Zos4YeNWgSS2DwX2Rwnk6L1mahKspYPGdlunTFGbzh92mMLnm8aR3iA +OPUFW3oMh8lOQskmUApCM7Ry/ldhR6JrugpuxkdRVJq6SY2I+ZRMptBL+QlY4gV PIhMgydiuL06zn5WkXndDOZGTmjJT4K2sRlkWA4IV0JsvO+t3GGiW2nNLJRudPEO SB0O9/g4+yMQxxngZI4vzJ7tgu8BxlzN2bS5aDWsK/R40P9I7k8= =6LaI -----END PGP SIGNATURE----- --KJY2Ze80yH5MUxol-- From debbugs-submit-bounces@debbugs.gnu.org Tue May 02 17:40:22 2017 Received: (at control) by debbugs.gnu.org; 2 May 2017 21:40:22 +0000 Received: from localhost ([127.0.0.1]:51649 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d5fWw-0005NG-Av for submit@debbugs.gnu.org; Tue, 02 May 2017 17:40:22 -0400 Received: from eggs.gnu.org ([208.118.235.92]:50246) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d5fWv-0005N4-1q for control@debbugs.gnu.org; Tue, 02 May 2017 17:40:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d5fWn-0006Wa-7I for control@debbugs.gnu.org; Tue, 02 May 2017 17:40:15 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:37300) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d5fWn-0006WN-4L for control@debbugs.gnu.org; Tue, 02 May 2017 17:40:13 -0400 Received: from reverse-83.fdn.fr ([80.67.176.83]:53904 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1d5fWm-0007rl-IY for control@debbugs.gnu.org; Tue, 02 May 2017 17:40:12 -0400 Date: Tue, 02 May 2017 23:40:10 +0200 Message-Id: <87h913ym2t.fsf@gnu.org> To: control@debbugs.gnu.org From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: control message for bug #26637 MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) tags 26637 fixed close 26637 From unknown Thu Aug 14 21:45:13 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 31 May 2017 11:24:03 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator