Stéphane Glondu pushed to branch master at Debian OCaml Maintainers / ocaml-theora
Commits:
-
ad23c0ca
by Stephane Glondu at 2023-07-15T10:58:43+02:00
4 changed files:
Changes:
1 | -ocaml-theora (0.4.0-3) UNRELEASED; urgency=medium
|
|
1 | +ocaml-theora (0.4.0-3) unstable; urgency=medium
|
|
2 | 2 | |
3 | + [ Stéphane Glondu ]
|
|
4 | + * Team upload
|
|
5 | + * Use ocaml_dune DH buildsystem
|
|
6 | + |
|
7 | + [ Debian Janitor ]
|
|
3 | 8 | * Use secure URI in Homepage field.
|
4 | 9 | * Update standards version to 4.6.1, no changes needed.
|
5 | 10 | |
6 | - -- Debian Janitor <janitor@jelmer.uk> Tue, 29 Nov 2022 03:33:10 -0000
|
|
11 | + -- Stéphane Glondu <glondu@debian.org> Sat, 15 Jul 2023 10:57:48 +0200
|
|
7 | 12 | |
8 | 13 | ocaml-theora (0.4.0-2) unstable; urgency=low
|
9 | 14 |
... | ... | @@ -5,7 +5,7 @@ Maintainer: Debian OCaml Maintainers <debian-ocaml-maint@lists.debian.org> |
5 | 5 | Uploaders: Kyle Robbertze <paddatrapper@debian.org>
|
6 | 6 | Build-Depends: debhelper-compat (= 13),
|
7 | 7 | dh-buildinfo,
|
8 | - dh-ocaml,
|
|
8 | + dh-ocaml (>= 1.2),
|
|
9 | 9 | libdune-ocaml-dev,
|
10 | 10 | libogg-ocaml-dev (>= 0.7.0),
|
11 | 11 | libtheora-dev,
|
1 | +theora |
1 | 1 | #!/usr/bin/make -f
|
2 | 2 | # -*- makefile -*-
|
3 | 3 | |
4 | -include /usr/share/ocaml/ocamlvars.mk
|
|
5 | - |
|
6 | -DESTDIR=$(CURDIR)/debian/tmp
|
|
7 | - |
|
8 | 4 | %:
|
9 | - dh $@ --with ocaml
|
|
10 | - |
|
11 | -override_dh_auto_build:
|
|
12 | - dune build -p theora
|
|
13 | - |
|
14 | -override_dh_auto_install:
|
|
15 | - dune install --destdir=$(DESTDIR) --prefix=/usr --libdir=..$(OCAML_STDLIB_DIR) |
|
5 | + dh $@ --with ocaml --buildsystem ocaml_dune |