Stéphane Glondu pushed to branch master at Debian OCaml Maintainers / ocaml-rope
Commits:
-
eaae0184
by Stephane Glondu at 2023-07-27T05:32:26+02:00
-
f24e84b4
by Stephane Glondu at 2023-07-27T05:32:26+02:00
4 changed files:
Changes:
1 | +ocaml-rope (0.6.2-4) unstable; urgency=medium
|
|
2 | + |
|
3 | + * Team upload
|
|
4 | + * Use ocaml_dune DH buildsystem (Closes: #1042101)
|
|
5 | + * Bump Standards-Version to 4.6.2
|
|
6 | + |
|
7 | + -- Stéphane Glondu <glondu@debian.org> Thu, 27 Jul 2023 05:29:25 +0200
|
|
8 | + |
|
1 | 9 | ocaml-rope (0.6.2-3) unstable; urgency=medium
|
2 | 10 | |
3 | 11 | * Team upload
|
... | ... | @@ -3,12 +3,12 @@ Section: ocaml |
3 | 3 | Priority: optional
|
4 | 4 | Maintainer: Debian OCaml Maintainers <debian-ocaml-maint@lists.debian.org>
|
5 | 5 | Uploaders: Andy Li <andy@onthewings.net>
|
6 | -Standards-Version: 4.5.0
|
|
6 | +Standards-Version: 4.6.2
|
|
7 | 7 | Rules-Requires-Root: no
|
8 | 8 | Build-Depends:
|
9 | 9 | debhelper-compat (= 13),
|
10 | - dh-ocaml,
|
|
11 | - ocaml-nox,
|
|
10 | + dh-ocaml (>= 1.2),
|
|
11 | + ocaml,
|
|
12 | 12 | ocaml-dune,
|
13 | 13 | ocaml-findlib,
|
14 | 14 | libbenchmark-ocaml-dev
|
1 | +rope |
1 | 1 | #!/usr/bin/make -f
|
2 | +# -*- makefile -*-
|
|
2 | 3 | |
3 | -DESTDIR=$(CURDIR)/debian/tmp
|
|
4 | 4 | include /usr/share/ocaml/ocamlvars.mk
|
5 | -export OCAMLFIND_DESTDIR=$(DESTDIR)$(OCAML_STDLIB_DIR)
|
|
6 | 5 | |
7 | 6 | %:
|
8 | - dh $@ --with ocaml
|
|
9 | - |
|
10 | -override_dh_auto_configure:
|
|
11 | - |
|
12 | -override_dh_auto_build:
|
|
13 | - dune build @install -p rope --verbose
|
|
14 | - |
|
15 | -override_dh_auto_install:
|
|
16 | - mkdir -p '$(OCAMLFIND_DESTDIR)'
|
|
17 | - dune install --destdir=$(DESTDIR) --verbose
|
|
18 | - |
|
19 | -override_dh_auto_test:
|
|
20 | - dune build @runtest -p rope --verbose |
|
7 | + dh $@ --with ocaml --buildsystem ocaml_dune |