52 строки
1.4 KiB
Diff
52 строки
1.4 KiB
Diff
|
From 8053d79c56ede986c1d94b9a24d71c822a92be88 Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?Dan=20=C4=8Cerm=C3=A1k?= <dan.cermak@cgc-instruments.com>
|
||
|
Date: Sat, 4 Apr 2020 00:34:23 +0200
|
||
|
Subject: [PATCH] Drop the stdlib-shims subpackage
|
||
|
|
||
|
We neither need nor want the stdlib-shims package in Fedora. It is a forward
|
||
|
compatibility package for older OCaml installations. Patch it out instead.
|
||
|
Upstream does not want this patch until stdlib-shims is obsolete.
|
||
|
---
|
||
|
alcotest.opam | 1 -
|
||
|
dune-project | 1 -
|
||
|
src/alcotest-engine/dune | 2 +-
|
||
|
3 files changed, 1 insertion(+), 3 deletions(-)
|
||
|
|
||
|
diff --git a/alcotest.opam b/alcotest.opam
|
||
|
index 756782f..3996bb0 100644
|
||
|
--- a/alcotest.opam
|
||
|
+++ b/alcotest.opam
|
||
|
@@ -26,7 +26,6 @@ depends: [
|
||
|
"cmdliner"
|
||
|
"uuidm"
|
||
|
"re"
|
||
|
- "stdlib-shims"
|
||
|
"uutf"
|
||
|
]
|
||
|
build: [
|
||
|
diff --git a/dune-project b/dune-project
|
||
|
index 9bccced..f634a31 100644
|
||
|
--- a/dune-project
|
||
|
+++ b/dune-project
|
||
|
@@ -30,7 +30,6 @@ tests to run.
|
||
|
cmdliner
|
||
|
uuidm
|
||
|
re
|
||
|
- stdlib-shims
|
||
|
uutf))
|
||
|
|
||
|
(package
|
||
|
diff --git a/src/alcotest-engine/dune b/src/alcotest-engine/dune
|
||
|
index 9c05d0a..65b33e7 100644
|
||
|
--- a/src/alcotest-engine/dune
|
||
|
+++ b/src/alcotest-engine/dune
|
||
|
@@ -1,4 +1,4 @@
|
||
|
(library
|
||
|
(name alcotest_engine)
|
||
|
(public_name alcotest.engine)
|
||
|
- (libraries fmt astring cmdliner fmt.cli uuidm re stdlib-shims uutf))
|
||
|
+ (libraries fmt astring cmdliner fmt.cli uuidm re uutf))
|
||
|
--
|
||
|
2.26.2
|
||
|
|