Stéphane Glondu pushed to branch master at Debian OCaml Maintainers / ppx-tools
Commits:
-
4ae31e26
by Stephane Glondu at 2023-07-15T11:05:25+02:00
4 changed files:
Changes:
| 1 | +ppx-tools (6.6-2) unstable; urgency=medium
|
|
| 2 | + |
|
| 3 | + * Use ocaml_dune DH buildsystem
|
|
| 4 | + |
|
| 5 | + -- Stéphane Glondu <glondu@debian.org> Sat, 15 Jul 2023 11:05:20 +0200
|
|
| 6 | + |
|
| 1 | 7 | ppx-tools (6.6-1) unstable; urgency=medium
|
| 2 | 8 | |
| 3 | 9 | * New upstream release
|
| ... | ... | @@ -9,7 +9,7 @@ Build-Depends: |
| 9 | 9 | ocaml-nox (>= 4.08),
|
| 10 | 10 | ocaml-dune,
|
| 11 | 11 | cppo,
|
| 12 | - dh-ocaml
|
|
| 12 | + dh-ocaml (>= 1.2)
|
|
| 13 | 13 | Standards-Version: 4.6.0
|
| 14 | 14 | Rules-Requires-Root: no
|
| 15 | 15 | Homepage: https://github.com/ocaml-ppx/ppx_tools
|
| 1 | +ppx_tools |
| 1 | 1 | #!/usr/bin/make -f
|
| 2 | 2 | # -*- makefile -*-
|
| 3 | 3 | |
| 4 | -DESTDIR=$(CURDIR)/debian/tmp
|
|
| 5 | -include /usr/share/ocaml/ocamlvars.mk
|
|
| 6 | - |
|
| 7 | 4 | %:
|
| 8 | - dh $@ --with ocaml
|
|
| 9 | - |
|
| 10 | -override_dh_auto_build:
|
|
| 11 | - dune build -p ppx_tools
|
|
| 12 | - |
|
| 13 | -override_dh_auto_install:
|
|
| 14 | - dune install --destdir=$(DESTDIR) --prefix=/usr --libdir=..$(OCAML_STDLIB_DIR)
|
|
| 15 | - rm -f $(DESTDIR)/usr/doc/ppx_tools/LICENSE |
|
| 5 | + dh $@ --with ocaml --buildsystem ocaml_dune |