Stéphane Glondu pushed to branch master at Debian OCaml Maintainers / ppx-sexp-conv
Commits:
-
867263c0
by Stephane Glondu at 2023-08-06T07:51:11+02:00
4 changed files:
Changes:
| 1 | +ppx-sexp-conv (1:0.16.0-3) unstable; urgency=medium
|
|
| 2 | + |
|
| 3 | + * Use ocaml_dune DH buildsystem
|
|
| 4 | + |
|
| 5 | + -- Stéphane Glondu <glondu@debian.org> Sun, 06 Aug 2023 07:51:00 +0200
|
|
| 6 | + |
|
| 1 | 7 | ppx-sexp-conv (1:0.16.0-2) unstable; urgency=medium
|
| 2 | 8 | |
| 3 | 9 | * Fix compilation with recent dune.
|
| ... | ... | @@ -11,7 +11,7 @@ Build-Depends: |
| 11 | 11 | libbase-ocaml-dev (>= 0.14),
|
| 12 | 12 | libsexplib0-ocaml-dev (>= 0.16),
|
| 13 | 13 | libppxlib-ocaml-dev (>= 0.22.0),
|
| 14 | - dh-ocaml
|
|
| 14 | + dh-ocaml (>= 1.2)
|
|
| 15 | 15 | Standards-Version: 4.6.2
|
| 16 | 16 | Rules-Requires-Root: no
|
| 17 | 17 | Vcs-Browser: https://salsa.debian.org/ocaml-team/ppx-sexp-conv
|
| 1 | +ppx_sexp_conv |
| 1 | 1 | #!/usr/bin/make -f
|
| 2 | +# -*- makefile -*-
|
|
| 2 | 3 | |
| 3 | 4 | include /usr/share/ocaml/ocamlvars.mk
|
| 4 | 5 | |
| 5 | -DESTDIR := $(CURDIR)/debian/tmp
|
|
| 6 | - |
|
| 7 | 6 | %:
|
| 8 | - dh $@ --with ocaml
|
|
| 9 | - |
|
| 10 | -override_dh_auto_build:
|
|
| 11 | - dune build -p ppx_sexp_conv
|
|
| 12 | - |
|
| 13 | -override_dh_auto_install:
|
|
| 14 | - dune install --destdir=$(DESTDIR) --prefix=/usr --libdir=$(OCAML_STDLIB_DIR)
|
|
| 15 | - rm -f $(DESTDIR)/usr/doc/ppx_sexp_conv/LICENSE.md |
|
| 7 | + dh $@ --with ocaml --buildsystem ocaml_dune |