Stéphane Glondu pushed to branch master at Debian OCaml Maintainers / ocplib-simplex
Commits:
-
eef00f02
by Stephane Glondu at 2025-01-01T20:35:32+01:00
-
cf916570
by Stephane Glondu at 2025-01-01T20:35:51+01:00
-
74ff0f68
by Stephane Glondu at 2025-01-01T20:38:14+01:00
4 changed files:
- debian/changelog
- debian/control
- + debian/patches/0001-Fix-tests-with-dune-3.17.0.patch
- + debian/patches/series
Changes:
1 | +ocplib-simplex (0.5.1-3) unstable; urgency=medium
|
|
2 | + |
|
3 | + * Team upload
|
|
4 | + * Fix tests with dune 3.17.0
|
|
5 | + * Bump Standards-Version to 4.7.0
|
|
6 | + |
|
7 | + -- Stéphane Glondu <glondu@debian.org> Wed, 01 Jan 2025 20:38:10 +0100
|
|
8 | + |
|
1 | 9 | ocplib-simplex (0.5.1-2) unstable; urgency=medium
|
2 | 10 | |
3 | 11 | * Team upload
|
... | ... | @@ -9,8 +9,8 @@ Build-Depends: |
9 | 9 | libzarith-ocaml-dev,
|
10 | 10 | liblogs-ocaml-dev,
|
11 | 11 | ocaml,
|
12 | - ocaml-dune
|
|
13 | -Standards-Version: 4.6.2
|
|
12 | + ocaml-dune (>= 3.17)
|
|
13 | +Standards-Version: 4.7.0
|
|
14 | 14 | Rules-Requires-Root: no
|
15 | 15 | Homepage: https://github.com/OCamlPro-Iguernlala/ocplib-simplex
|
16 | 16 | Vcs-Browser: https://salsa.debian.org/ocaml-team/ocplib-simplex
|
1 | +From: Stephane Glondu <steph@glondu.net>
|
|
2 | +Date: Wed, 1 Jan 2025 20:35:21 +0100
|
|
3 | +Subject: Fix tests with dune 3.17.0
|
|
4 | + |
|
5 | +---
|
|
6 | + tests/dune | 8 ++++----
|
|
7 | + 1 file changed, 4 insertions(+), 4 deletions(-)
|
|
8 | + |
|
9 | +diff --git a/tests/dune b/tests/dune
|
|
10 | +index 4fcdd22..a3a667a 100644
|
|
11 | +--- a/tests/dune
|
|
12 | ++++ b/tests/dune
|
|
13 | +@@ -15,7 +15,7 @@
|
|
14 | + (rule
|
|
15 | + (alias runtest)
|
|
16 | + (action
|
|
17 | +- (diff solveEmpty.expected solveEmpty.output)
|
|
18 | ++ (diff solveEmpty.expected solveEmpty.exe.output)
|
|
19 | + )
|
|
20 | + )
|
|
21 | +
|
|
22 | +@@ -24,7 +24,7 @@
|
|
23 | + (action
|
|
24 | + (diff
|
|
25 | + standalone_minimal_maximization.expected
|
|
26 | +- standalone_minimal_maximization.output
|
|
27 | ++ standalone_minimal_maximization.exe.output
|
|
28 | + )
|
|
29 | + )
|
|
30 | + )
|
|
31 | +@@ -34,7 +34,7 @@
|
|
32 | + (action
|
|
33 | + (diff
|
|
34 | + standalone_minimal.expected
|
|
35 | +- standalone_minimal.output
|
|
36 | ++ standalone_minimal.exe.output
|
|
37 | + )
|
|
38 | + )
|
|
39 | + )
|
|
40 | +@@ -44,7 +44,7 @@
|
|
41 | + (action
|
|
42 | + (diff
|
|
43 | + standalone_test_strict_bounds.expected
|
|
44 | +- standalone_test_strict_bounds.output
|
|
45 | ++ standalone_test_strict_bounds.exe.output
|
|
46 | + )
|
|
47 | + )
|
|
48 | + ) |
1 | +0001-Fix-tests-with-dune-3.17.0.patch |