From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60694) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dccti-0000fM-6Z for guix-patches@gnu.org; Tue, 01 Aug 2017 15:32:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dcctf-0001IM-2c for guix-patches@gnu.org; Tue, 01 Aug 2017 15:32:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:34599) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dccte-0001I8-UP for guix-patches@gnu.org; Tue, 01 Aug 2017 15:32:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dccte-0000pE-MG for guix-patches@gnu.org; Tue, 01 Aug 2017 15:32:02 -0400 Subject: [bug#27911] 3 more qt modules Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60506) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dccsv-0000dd-8D for guix-patches@gnu.org; Tue, 01 Aug 2017 15:31:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dccss-0000I1-KE for guix-patches@gnu.org; Tue, 01 Aug 2017 15:31:17 -0400 Received: from flashner.co.il ([178.62.234.194]:37399) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dccss-0000HL-7H for guix-patches@gnu.org; Tue, 01 Aug 2017 15:31:14 -0400 Received: from localhost (46-117-130-79.bb.netvision.net.il [46.117.130.79]) by flashner.co.il (Postfix) with ESMTPSA id 7388540375 for ; Tue, 1 Aug 2017 19:31:13 +0000 (UTC) Date: Tue, 1 Aug 2017 22:31:11 +0300 From: Efraim Flashner Message-ID: <20170801193111.GP2406@macbook42.flashner.co.il> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="8Tx+BDMK09J610+l" Content-Disposition: inline List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 27911@debbugs.gnu.org --8Tx+BDMK09J610+l Content-Type: multipart/mixed; boundary="MET8MpPxp2u2c48q" Content-Disposition: inline --MET8MpPxp2u2c48q Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable This has qtnetworkauth, qtremoteobjects, qtspeech. After this we have qt3d, qtvirtualkeyboard, qtwebengine and qtwebview. --=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 --MET8MpPxp2u2c48q Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename="0001-gnu-Add-qtnetworkauth.patch" Content-Transfer-Encoding: quoted-printable =46rom a6211933f759d63f6f0c5fbc458023dafd760d54 Mon Sep 17 00:00:00 2001 =46rom: Efraim Flashner Date: Tue, 1 Aug 2017 21:24:46 +0300 Subject: [PATCH 1/3] gnu: Add qtnetworkauth. * gnu/packages/qt.scm (qtnetworkauth): New variable. --- gnu/packages/qt.scm | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index 3e3588a50..0b7ceb04a 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -1169,6 +1169,22 @@ developers using C++ or QML, a CSS & JavaScript like= language.") `(("qtbase" ,qtbase) ("qtdeclarative" ,qtdeclarative))))) =20 +(define-public qtnetworkauth + (package (inherit qtsvg) + (name "qtnetworkauth") + (version "5.9.1") + (source (origin + (method url-fetch) + (uri (string-append "https://download.qt.io/official_releases= /qt/" + (version-major+minor version) "/" version + "/submodules/" name "-opensource-src-" + version ".tar.xz")) + (sha256 + (base32 + "1fgax3p7lqcz29z2n1qxnfpkj3wxq1x9bfx61q6nss1fs74pxzra")))) + (inputs + `(("qtbase" ,qtbase))))) + (define-public python-sip (package (name "python-sip") --=20 2.13.3 --MET8MpPxp2u2c48q Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename="0002-gnu-Add-qtremoteobjects.patch" Content-Transfer-Encoding: quoted-printable =46rom dbf437c300aa862bacef8f735e44e0161b982c53 Mon Sep 17 00:00:00 2001 =46rom: Efraim Flashner Date: Tue, 1 Aug 2017 21:41:49 +0300 Subject: [PATCH 2/3] gnu: Add qtremoteobjects. * gnu/packages/qt.scm (qtremoteobjects): New variable. --- gnu/packages/qt.scm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index 0b7ceb04a..5451d5f02 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -1185,6 +1185,23 @@ developers using C++ or QML, a CSS & JavaScript like= language.") (inputs `(("qtbase" ,qtbase))))) =20 +(define-public qtremoteobjects + (package (inherit qtsvg) + (name "qtremoteobjects") + (version "5.9.1") + (source (origin + (method url-fetch) + (uri (string-append "https://download.qt.io/official_releases= /qt/" + (version-major+minor version) "/" version + "/submodules/" name "-opensource-src-" + version ".tar.xz")) + (sha256 + (base32 + "10kwq0fgmi6zsqhb6s1nkcydpyl8d8flzdpgmyj50c4h2xhg2km0")))) + (inputs + `(("qtbase" ,qtbase) + ("qtdeclarative" ,qtdeclarative))))) + (define-public python-sip (package (name "python-sip") --=20 2.13.3 --MET8MpPxp2u2c48q Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename="0003-gnu-Add-qtspeech.patch" Content-Transfer-Encoding: quoted-printable =46rom 3db5312e953884774b05bd6be56b6587d8d0bbe7 Mon Sep 17 00:00:00 2001 =46rom: Efraim Flashner Date: Tue, 1 Aug 2017 22:00:51 +0300 Subject: [PATCH 3/3] gnu: Add qtspeech. * gnu/packages/qt.scm (qtspeech): New variable. --- gnu/packages/qt.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index 5451d5f02..4e01b2936 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -1202,6 +1202,27 @@ developers using C++ or QML, a CSS & JavaScript like= language.") `(("qtbase" ,qtbase) ("qtdeclarative" ,qtdeclarative))))) =20 +(define-public qtspeech + (package (inherit qtsvg) + (name "qtspeech") + (version "5.9.1") + (source (origin + (method url-fetch) + (uri (string-append "https://download.qt.io/official_releases= /qt/" + (version-major+minor version) "/" version + "/submodules/" name "-opensource-src-" + version ".tar.xz")) + (sha256 + (base32 + "00daxkf8iwf6n9rhkkv3isv5qa8wijwzb0zy1f6zlm3vcc8fz75c")))) + (inputs + `(("qtbase" ,qtbase))) + (native-inputs + `(("perl" ,perl) + ("qtdeclarative" ,qtdeclarative) + ("qtmultimedia" ,qtmultimedia) + ("qtxmlpatterns" ,qtxmlpatterns))))) + (define-public python-sip (package (name "python-sip") --=20 2.13.3 --MET8MpPxp2u2c48q-- --8Tx+BDMK09J610+l Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAlmA1vcACgkQQarn3Mo9 g1FE2A/8CX6y9ZUv55uO3s3NwNv56Okjwa6MzCGdyk1poWDO7JisTnjadpp1jtfU p0rRwSi77S0086cnk7D2n6PUWgErN/GemNyFUA/a/LOaj2CiGy90wVmjmCEwyZKc ZwDx+fUZ6ekt+4mShOINQ6yJ9Ge8G0NfCfOV9IpltMdAcseW+MJpaSSHBv+Dm/Fx ifwqokKEv8Tx0NBDy6uVJwFDrN77/KbW0t670DnT+/DGTZ+PRneeCUo4lpUkrb5s A7nJLzLx/l+gpxSFgEIyPDs6g3XIhFPZfTmSbf+ucpbJAr/ThvL2NkV+gCZbozKD JjbMPEqritw5KE0/HkKOh4NNLQaJ9eqYKDix0FoL+WFUXCgNEzG3dH80Jb6RNHGx +P842F3OCP44134KoTOwEy3mFtm35to1WzwVf8lgSEmxFY5YFiVaTUOqj+LIBeHo XoxAZJgDoJftxdPkh1rcR/y/3TkdR6DS1EBmrsrM+MhvqvqCTYCF6pN6fVY4UfvF uaA6iLdpUlXwkEd1YLqwTzv97gw6+TtqtDe5tQgkUQG5pRF65CaFvd9jEKdMmZ3A ax9ZqKeXfOGrTdufGCz0WeftDubbP4fbkR0K/xcKT/iFWpc1rG9nICuEKQgKCb6D 4yEfgusFpeHap71Fh4djnQTiuXHtduuCJa9nQGjFhWNrm35JghA= =fr7+ -----END PGP SIGNATURE----- --8Tx+BDMK09J610+l--