Stéphane Glondu pushed to branch master at Debian OCaml Maintainers / uutf
Commits:
-
6e55b42a
by Stephane Glondu at 2025-09-09T15:18:17+02:00
-
81bb29f0
by Stephane Glondu at 2025-09-09T15:18:21+02:00
-
a77de8f4
by Stephane Glondu at 2025-09-09T15:21:11+02:00
-
1a06921e
by Stephane Glondu at 2025-09-09T15:21:11+02:00
5 changed files:
- debian/changelog
- debian/install_bytecode.sh
- debian/installer-generator.ml
- debian/libuutf-ocaml-dev.install.in
- debian/rules
Changes:
1 | +uutf (1.0.4-2) unstable; urgency=medium
|
|
2 | + |
|
3 | + * Fix generation of debian/install_bytecode.sh (Closes: #1114428)
|
|
4 | + |
|
5 | + -- Stéphane Glondu <glondu@debian.org> Tue, 09 Sep 2025 15:17:59 +0200
|
|
6 | + |
|
1 | 7 | uutf (1.0.4-1) unstable; urgency=medium
|
2 | 8 | |
3 | 9 | * New upstream release
|
... | ... | @@ -8,5 +8,7 @@ install -D --mode 644 _build/opam debian/tmp$OCAML_STDLIB_DIR/uutf/opam |
8 | 8 | install -D --mode 644 _build/pkg/META debian/tmp$OCAML_STDLIB_DIR/uutf/META
|
9 | 9 | install -D --mode 644 _build/src/uutf.cma debian/tmp$OCAML_STDLIB_DIR/uutf/uutf.cma
|
10 | 10 | install -D --mode 644 _build/src/uutf.cmi debian/tmp$OCAML_STDLIB_DIR/uutf/uutf.cmi
|
11 | +if [ -f _build/src/uutf.cmt ]; then install --mode 644 _build/src/uutf.cmt debian/tmp$OCAML_STDLIB_DIR/uutf/uutf.cmt; fi
|
|
11 | 12 | if [ -f _build/src/uutf.cmti ]; then install --mode 644 _build/src/uutf.cmti debian/tmp$OCAML_STDLIB_DIR/uutf/uutf.cmti; fi
|
13 | +install -D --mode 644 _build/src/uutf.ml debian/tmp$OCAML_STDLIB_DIR/uutf/uutf.ml
|
|
12 | 14 | install -D --mode 644 _build/src/uutf.mli debian/tmp$OCAML_STDLIB_DIR/uutf/uutf.mli |
1 | +#use "topfind";;
|
|
2 | +#require "opam-file-format";;
|
|
3 | + |
|
1 | 4 | let name = "uutf"
|
2 | 5 | |
3 | 6 | let parse filename =
|
1 | 1 | usr/bin
|
2 | 2 | @OCamlStdlibDir@/uutf/*opam*
|
3 | -@OCamlStdlibDir@/uutf/*.mli
|
|
3 | +@OCamlStdlibDir@/uutf/*.ml*
|
|
4 | 4 | @OCamlStdlibDir@/uutf/*.cmi
|
5 | 5 | @OCamlStdlibDir@/uutf/*.cmt*
|
6 | 6 | OPT: @OCamlStdlibDir@/uutf/*.a
|
... | ... | @@ -17,7 +17,7 @@ override_dh_auto_test: |
17 | 17 | ocaml pkg/pkg.ml test
|
18 | 18 | |
19 | 19 | debian/install_bytecode.sh:
|
20 | - ocaml -I +opam-file-format opam-file-format.cma debian/installer-generator.ml
|
|
20 | + ocaml debian/installer-generator.ml
|
|
21 | 21 | |
22 | 22 | override_dh_auto_install:
|
23 | 23 | ifeq (,$(filter pkg.uutf.noopam, $(DEB_BUILD_PROFILES)))
|