From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:49749) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gxT3P-00075x-Ue for guix-patches@gnu.org; Sat, 23 Feb 2019 03:53:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gxT3O-0008NJ-Po for guix-patches@gnu.org; Sat, 23 Feb 2019 03:53:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:35292) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gxT3O-0008N2-L6 for guix-patches@gnu.org; Sat, 23 Feb 2019 03:53:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gxT3O-0004oo-Ig for guix-patches@gnu.org; Sat, 23 Feb 2019 03:53:02 -0500 Subject: [bug#34627] [PATCH] gnu: ocaml-menhir: Update to 20181113. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:49671) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gxT31-00073s-Q0 for guix-patches@gnu.org; Sat, 23 Feb 2019 03:52:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gxT30-0008Cn-NI for guix-patches@gnu.org; Sat, 23 Feb 2019 03:52:39 -0500 Received: from mail-wr1-x441.google.com ([2a00:1450:4864:20::441]:41440) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gxT30-0008Br-FA for guix-patches@gnu.org; Sat, 23 Feb 2019 03:52:38 -0500 Received: by mail-wr1-x441.google.com with SMTP id n2so4766924wrw.8 for ; Sat, 23 Feb 2019 00:52:38 -0800 (PST) Received: from glht-aurore.gmail.com (2a01cb04062c860082fa5bfffe3823d7.ipv6.abo.wanadoo.fr. [2a01:cb04:62c:8600:82fa:5bff:fe38:23d7]) by smtp.gmail.com with ESMTPSA id h9sm8322809wrv.11.2019.02.23.00.52.35 for (version=TLS1_3 cipher=AEAD-AES256-GCM-SHA384 bits=256/256); Sat, 23 Feb 2019 00:52:36 -0800 (PST) From: Gabriel Hondet Date: Sat, 23 Feb 2019 09:50:38 +0100 Message-ID: <87d0ni28fk.fsf@gmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; 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: 34627@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable * gnu/packages/ocaml.scm (ocaml-menhir): Update to 20181113. =2D-- gnu/packages/ocaml.scm | 32 +++++++++++++++++++------------- 1 file changed, 19 insertions(+), 13 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 9a807a4cb6..31e9a697a2 100644 =2D-- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -639,37 +639,43 @@ Emacs.") (define-public ocaml-menhir (package (name "ocaml-menhir") =2D (version "20161115") + (version "20181113") (source (origin =2D (method url-fetch) =2D (uri (string-append =2D "http://gallium.inria.fr/~fpottier/menhir/" =2D "menhir-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://gitlab.inria.fr/fpottier/menhir.git") + (commit version))) + (file-name (git-file-name name version)) (sha256 (base32 =2D "1j8nmcj2gq6hyyi16z27amiahplgrnk4ppchpm0v4qy80kwkf47k"))= )) =2D (build-system gnu-build-system) =2D (inputs =2D `(("ocaml" ,ocaml))) + "1iqdf64ayq4s3d9jkwhs3s8wqc2s48b292hp0kcjsskfhcvwg0kr")))) + (build-system ocaml-build-system) (native-inputs `(("ocamlbuild" ,ocamlbuild))) (arguments =2D `(#:parallel-build? #f ; Parallel build causes failure =2D #:tests? #f ; No check target + `(#:tests? #f ; No check target #:phases (modify-phases %standard-phases (replace 'configure (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) (setenv "PREFIX" out)) + #t)) + (replace 'build + (lambda _ + (invoke "make" "-f" "Makefile" "USE_OCAMLFIND=3Dtrue" "all") + #t)) + (replace 'install + (lambda _ + (invoke "make" "-f" "Makefile" "install") #t))))) (properties `((ocaml4.02-variant . ,(delay ocaml4.02-menhir)))) =2D (home-page "http://gallium.inria.fr/~fpottier/menhir") + (home-page "http://gallium.inria.fr/~fpottier/menhir/") (synopsis "Parser generator") (description "Menhir is a parser generator. It turns high-level gramm= ar specifications, decorated with semantic actions expressed in the OCaml =2Dprogramming language into parsers, again expressed in OCaml. It is based= on +programming language into parsers, again expressed in OCaml. It is based = on Knuth=E2=80=99s LR(1) parser construction technique.") ;; The file src/standard.mly and all files listed in src/mnehirLib.mlp= ack ;; that have an *.ml or *.mli extension are GPL licensed. All other fi= les =2D-=20 2.20.1 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEE5ercJXBcjd3P1FcAMbyBBfZZ1CUFAlxxCc8ACgkQMbyBBfZZ 1CXiSw/6AnBEP/lGCdUsZJcHyW4xIaqN/seNJtoQ8KDEhNBQE8j93yFM0yjBCJA7 IeEyR1PHdLoTRBfcndOk8JDjTEAl1J2PCbk/SJNh/1wZWJLXRISb1RU2U6YLwCtA HZzbIhYshzim8VBiENOx5H+DKjbTSRSidL4ATw/JkvJW94dyMbMFkOJgZiKgdr2/ KIOpzW3GQinNLbkwy14qIAW/c1eA2heFXRVASfUw+AECo8mkm7+ymHH5E9fmOKUU /lClCJzfWizsp9ZCAKOjXovkkBLVooGhXdRp9iLKiuzc9ihh5rUi1i2LpyrCQlNg aBJU96aXKk4Fi9Ta4D+/Gw57Cjyd+hPM1vegU2lkxohMVFTZ25To812NZ1ij6hIJ wbH0oFwiFzWCo4mBbt8gtavSYNNJgPg0+UKMrrgJMJgwI5WD7bT/JxFNaJsMFykR U71+kKXyj4fqj1Addp1y9dutceohKSywczx2GQehvDskn0ZbrbPp5uEMFbOqM4V0 ggqoL4GYVNW35JAjRZCjcP/G68gLGNrJVnuzmP76Jp2KzZz3ZaQKZXyDkb6bUsyo d2ivFzvqaeaM0IBLSfMRzASJ17vC4VmYpnMkY8/qVznryvlOwAr92jG9AYlZh7GT GKzupcOqzMtEu6H+48XHjp4GTr8QhkBmjOdrY5lZDlsaJ6wDWmc= =yH1k -----END PGP SIGNATURE----- --=-=-=--