Stéphane Glondu pushed to branch master at Debian OCaml Maintainers / cppo
Commits:
-
63c3f85d
by Stephane Glondu at 2023-08-07T08:24:37+02:00
4 changed files:
Changes:
| 1 | +cppo (1.6.9-3) unstable; urgency=medium
|
|
| 2 | + |
|
| 3 | + * Team upload
|
|
| 4 | + * Use ocaml_dune DH buildsystem
|
|
| 5 | + * Bump Standards-Version to 4.6.2
|
|
| 6 | + |
|
| 7 | + -- Stéphane Glondu <glondu@debian.org> Mon, 07 Aug 2023 08:24:34 +0200
|
|
| 8 | + |
|
| 1 | 9 | cppo (1.6.9-2) unstable; urgency=medium
|
| 2 | 10 | |
| 3 | 11 | * Team upload
|
| ... | ... | @@ -3,13 +3,13 @@ Section: ocaml |
| 3 | 3 | Priority: optional
|
| 4 | 4 | Maintainer: Debian OCaml Maintainers <debian-ocaml-maint@lists.debian.org>
|
| 5 | 5 | Build-Depends:
|
| 6 | - ocaml-nox (>= 4),
|
|
| 6 | + ocaml (>= 4),
|
|
| 7 | 7 | ocaml-findlib (>= 1.4),
|
| 8 | - dh-ocaml,
|
|
| 8 | + dh-ocaml (>= 1.2.2),
|
|
| 9 | 9 | debhelper-compat (= 13),
|
| 10 | 10 | ocaml-dune,
|
| 11 | 11 | ocamlbuild
|
| 12 | -Standards-Version: 4.6.0
|
|
| 12 | +Standards-Version: 4.6.2
|
|
| 13 | 13 | Rules-Requires-Root: no
|
| 14 | 14 | Homepage: https://github.com/ocaml-community/cppo
|
| 15 | 15 | Vcs-Git: https://salsa.debian.org/ocaml-team/cppo.git
|
| 1 | +cppo
|
|
| 2 | +cppo_ocamlbuild |
| 1 | 1 | #!/usr/bin/make -f
|
| 2 | 2 | # -*- makefile -*-
|
| 3 | 3 | |
| 4 | -# Uncomment this to turn on verbose mode.
|
|
| 5 | -#export DH_VERBOSE=1
|
|
| 6 | -#export DH_OPTIONS=-v
|
|
| 7 | - |
|
| 8 | 4 | include /usr/share/ocaml/ocamlvars.mk
|
| 9 | 5 | |
| 10 | -DESTDIR := $(CURDIR)/debian/tmp
|
|
| 11 | -export OCAMLFIND_DESTDIR=$(DESTDIR)/$(OCAML_STDLIB_DIR)/cppo_ocamlbuild
|
|
| 12 | -BUILD_PATH=_build/install/default/lib/cppo_ocamlbuild
|
|
| 13 | - |
|
| 14 | 6 | %:
|
| 15 | - dh $@ --with ocaml
|
|
| 16 | - |
|
| 17 | -.PHONY: override_dh_auto_install
|
|
| 18 | -override_dh_auto_install:
|
|
| 19 | - dune install --destdir=$(DESTDIR) --prefix=/usr --libdir=$(OCAML_STDLIB_DIR)
|
|
| 20 | - rm -f $(DESTDIR)/usr/doc/*/LICENSE.md |
|
| 7 | + dh $@ --with ocaml --buildsystem ocaml_dune |