From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56660) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fTCKI-0008Gz-Vv for guix-patches@gnu.org; Wed, 13 Jun 2018 16:25:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fTCKE-0005Lr-Ua for guix-patches@gnu.org; Wed, 13 Jun 2018 16:25:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:39040) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fTCKE-0005LZ-PX for guix-patches@gnu.org; Wed, 13 Jun 2018 16:25:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fTCKE-0004G5-FM for guix-patches@gnu.org; Wed, 13 Jun 2018 16:25:02 -0400 Subject: [bug#31819] [PATCH core-updates] gnu: gtk-doc: Update to 1.27. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56319) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fTCJI-00086U-I6 for guix-patches@gnu.org; Wed, 13 Jun 2018 16:24:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fTCJE-0004P4-JS for guix-patches@gnu.org; Wed, 13 Jun 2018 16:24:04 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:45702) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fTCJE-0004Nj-6R for guix-patches@gnu.org; Wed, 13 Jun 2018 16:24:00 -0400 Date: Wed, 13 Jun 2018 22:23:51 +0200 From: Danny Milosavljevic Message-ID: <20180613222351.1ac2990f@scratchpost.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; boundary="Sig_/RvbvfsRCdStzf1fZtlUNr39"; protocol="application/pgp-signature" 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: 31819@debbugs.gnu.org, rekado@elephly.net --Sig_/RvbvfsRCdStzf1fZtlUNr39 Content-Type: multipart/mixed; boundary="MP_/dYTk=PNR=sUSjrgMQTUe=EO" --MP_/dYTk=PNR=sUSjrgMQTUe=EO Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Hi, I tried to update gtk-doc to 1.27. Unfortunately, a unit test (sanity.sh) fails because it expects a certain m= aximal number of status lines. Because our texlive-union dynamically generates metafont stuff, it prints a= LOT more status lines (metafont outputs a lot). Is it possible to silence metafont? Or to have it generate the fonts befor= e the tests run? Or should we just disable the test? --MP_/dYTk=PNR=sUSjrgMQTUe=EO Content-Type: text/x-patch Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename=0001-gnu-gtk-doc-Update-to-1.27.patch =46rom 5baa1f738da0685b6d8f4aec5252f1bbf5201724 Mon Sep 17 00:00:00 2001 From: Danny Milosavljevic Date: Wed, 13 Jun 2018 22:06:11 +0200 Subject: [PATCH staging] gnu: gtk-doc: Update to 1.27. Tags: patch * gnu/packages/gtk.scm (gtk-doc)[source]: Update to 1.27. [arguments]<#:phases>[patch-gtk-doc-scan]: New phase. [propagated-inputs]: Add python-six. --- gnu/packages/gtk.scm | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index f7196611d..dff6eac8c 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -1411,7 +1411,7 @@ information.") (define-public gtk-doc (package (name "gtk-doc") - (version "1.25") + (version "1.27") (source (origin (method url-fetch) (uri (string-append "mirror://gnome/sources/" name "/" @@ -1419,12 +1419,21 @@ information.") name "-" version ".tar.xz")) (sha256 (base32 - "0hpxcij9xx9ny3gs9p0iz4r8zslw8wqymbyababiyl7603a6x90y")))) + "0vwsdl61nvnmqswlz5j9m4hg7qirhazwcikcnqf9nx0c13vx6sz2")))) (build-system gnu-build-system) (arguments `(#:parallel-tests? #f #:phases (modify-phases %standard-phases + (add-after 'unpack 'patch-gtk-doc-scan + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "gtk-doc.xsl" + (("http://docbook.sourceforge.net/release/xsl/current/html/c= hunk.xsl") + (string-append (assoc-ref inputs "docbook-xsl") + "/xml/xsl/docbook-xsl-" + ,(package-version docbook-xsl) + "/html/chunk.xsl"))) + #t)) (add-before 'build 'set-HOME (lambda _ ;; FIXME: dblatex with texlive-union does not find the built @@ -1465,6 +1474,8 @@ information.") ("docbook-xsl" ,docbook-xsl) ("source-highlight" ,source-highlight) ("glib" ,glib))) + (propagated-inputs + `(("python-six" ,python-six))) (home-page "http://www.gtk.org/gtk-doc/") (synopsis "Documentation generator from C source code") (description --MP_/dYTk=PNR=sUSjrgMQTUe=EO-- --Sig_/RvbvfsRCdStzf1fZtlUNr39 Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEds7GsXJ0tGXALbPZ5xo1VCwwuqUFAlshfVcACgkQ5xo1VCww uqW6jQf/X4/nMku5sJzSIebFkTvO8r8jM0RAChhpO3EbcABMtbQQ0OKc0GmyWRTh dT5KHur2deaxCpaCv9TLiUQ62oIvYtyoFA40nc+RzA+CWon23HXYHCZnh5mK2+XN sRo/dyQgkHhCrCfn+l2SUJPapGtWqtDzgG43CV4K7U1SXI3bVoN5ecdtf1f384w6 NGEe3Hz11dqFydrO8z5dmDvb/d4ldwJDKW4VmOz54CLig8MjeAp0fhq0j/Uy2bda NjPVLhBdQZBDR4LGkBYWrIPQEvQe/vyaHyznNiYf0uUlU64+P/4PkBw3L3ML6qlB 7u4UehZyRyfFZ2ekOLHA4zi4Yg+DDg== =2/3o -----END PGP SIGNATURE----- --Sig_/RvbvfsRCdStzf1fZtlUNr39--