summaryrefslogtreecommitdiff
path: root/dev-ml/ocamlbuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-06-23 00:11:31 +0100
committerV3n3RiX <venerix@koprulu.sector>2024-06-23 00:11:31 +0100
commitbff543bb632933380da922cbfc07c67157d72d42 (patch)
treedf2e5eebc3dbd8e29153ab3a869b3be8d9be9f19 /dev-ml/ocamlbuild
parent491d0101c89d81dec507f28215b3cb094800d600 (diff)
gentoo auto-resync : 23:06:2024 - 00:11:30
Diffstat (limited to 'dev-ml/ocamlbuild')
-rw-r--r--dev-ml/ocamlbuild/Manifest1
-rw-r--r--dev-ml/ocamlbuild/files/ocamlbuild-0.14.0-Disable-tests-failing-with-OCaml-4.08.0.patch39
2 files changed, 0 insertions, 40 deletions
diff --git a/dev-ml/ocamlbuild/Manifest b/dev-ml/ocamlbuild/Manifest
index 88ed630bc346..5752409d7d52 100644
--- a/dev-ml/ocamlbuild/Manifest
+++ b/dev-ml/ocamlbuild/Manifest
@@ -1,4 +1,3 @@
-AUX ocamlbuild-0.14.0-Disable-tests-failing-with-OCaml-4.08.0.patch 1259 BLAKE2B d5ef0954e0a998b1ede15404fa2ed2e4aa8cbdb556aa22665e3193e179348274963303f384e984f73c808f5745ef347b5764f4408ca20110fe03383f0d92ffc7 SHA512 84671a1db5e4df6b4c21e313bb7b620e83016015ee32f508bbb14f791d7e09f138e83891b5c18a7a8ea2f9dd0d056bc9757152211e818275182df02c9701570e
DIST ocamlbuild-0.14.2.tar.gz 199293 BLAKE2B d81613878f93f27c6de41461e6b3cebe0744a5204297725263a608cb129a708aaf6f27b444b97d68f2bde844a760f8e78647641f10eed61e727ef3936562cdea SHA512 f568bf10431a1f701e8bd7554dc662400a0d978411038bbad93d44dceab02874490a8a5886a9b44e017347e7949997f13f5c3752f74e1eb5e273d2beb19a75fd
DIST ocamlbuild-0.14.3.tar.gz 199357 BLAKE2B b839d3757f4c2ce466291e00d2e5a87c51f81cc9e21f252ca7381fed9a4e8468e920d34946cb58c9297a1b98afe231b7eabc3960d68ba99f051891880742d7a6 SHA512 def8fa1d5488905fda31f72b7f6f0ebdccefa55a8e984a6ea4a7c1e0856e8ea1f7814410202e0f7f7d5e72aca7e8ae0d6623f7f2bade78b0dd82155de76ec4e5
EBUILD ocamlbuild-0.14.2-r1.ebuild 1381 BLAKE2B a295b397c90f84b55e3914a2bd7a85768cc00f19be3826070b09b746fca4240499a7e4d90fae93e44a8e7d8e6a43e219ff1c2f417c353583115ebe8b8043d629 SHA512 6dd8a6fa3672761c3d4b9d5fc5278d82e21b1824df1e2c3ddd7f2d8db933dedb549de105d0cdee00a6181eed82a8f94cb05f97fcbeb38697427951a2748fd658
diff --git a/dev-ml/ocamlbuild/files/ocamlbuild-0.14.0-Disable-tests-failing-with-OCaml-4.08.0.patch b/dev-ml/ocamlbuild/files/ocamlbuild-0.14.0-Disable-tests-failing-with-OCaml-4.08.0.patch
deleted file mode 100644
index 991f13238c05..000000000000
--- a/dev-ml/ocamlbuild/files/ocamlbuild-0.14.0-Disable-tests-failing-with-OCaml-4.08.0.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From: Stephane Glondu <steph@glondu.net>
-Date: Fri, 2 Aug 2019 13:08:55 +0200
-Subject: Disable tests failing with OCaml 4.08.0
-
----
- testsuite/internal.ml | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/testsuite/internal.ml b/testsuite/internal.ml
-index d3c2004..a87f5e2 100644
---- a/testsuite/internal.ml
-+++ b/testsuite/internal.ml
-@@ -200,7 +200,7 @@ let () =
- "]
- ~targets:("src/foo.cmxs",[]) ();;
-
--let () = test "StrictSequenceFlag"
-+let _ignored () = test "StrictSequenceFlag"
- ~options:[`no_ocamlfind; `quiet]
- ~description:"strict_sequence tag"
- ~tree:[T.f "hello.ml" ~content:"let () = 1; ()";
-@@ -219,7 +219,7 @@ Command exited with code 2."
- )
- ~targets:("hello.byte",[]) ();;
-
--let () = test "StrictFormatsFlag"
-+let _ignored () = test "StrictFormatsFlag"
- ~options:[`no_ocamlfind; `quiet]
- ~description:"strict_format tag"
- ~tree:[T.f "hello.ml" ~content:"let _ = Printf.printf \"%.10s\"";
-@@ -230,7 +230,7 @@ Error: invalid format \"%.10s\": at character number 0, \
- Command exited with code 2."
- ~targets:("hello.byte",[]) ();;
-
--let () = test "PrincipalFlag"
-+let _ignored () = test "PrincipalFlag"
- ~options:[`no_ocamlfind; `quiet]
- ~description:"-principal tag"
- ~tree:[T.f "hello.ml"