Stéphane Glondu pushed to branch debian/sid at Debian OCaml Maintainers / ocaml
Commits:
-
139c4154
by Stéphane Glondu at 2023-08-25T11:07:57+02:00
-
c57b51fe
by Stéphane Glondu at 2023-08-25T11:08:24+02:00
-
d7026826
by Stéphane Glondu at 2023-08-25T11:34:11+02:00
-
11b7a624
by Stéphane Glondu at 2023-08-25T11:47:00+02:00
3 changed files:
Changes:
| 1 | +ocaml (4.13.1-6) UNRELEASED; urgency=medium
|
|
| 2 | + |
|
| 3 | + * Ignore test failures on hurd
|
|
| 4 | + * Remove empty override_dh_dwz
|
|
| 5 | + * Fix source build after successful build (Closes: #1049230)
|
|
| 6 | + |
|
| 7 | + -- Stéphane Glondu <glondu@debian.org> Fri, 25 Aug 2023 11:46:30 +0200
|
|
| 8 | + |
|
| 1 | 9 | ocaml (4.13.1-5) unstable; urgency=medium
|
| 2 | 10 | |
| 3 | 11 | * Reorganize binary packages
|
| 1 | -build/ocamlbuild_mixed_mode
|
|
| 2 | -config/Makefile
|
|
| 3 | -config/config.debian.install.sh
|
|
| 4 | -config/config.sh
|
|
| 5 | -config/m.h
|
|
| 6 | -config/s.h
|
|
| 7 | -myocamlbuild_config.ml
|
|
| 8 | -tools/myocamlbuild_config.ml
|
|
| 9 | -ocamlc
|
|
| 10 | -ocamlcomp.sh
|
|
| 11 | -debian/installed-files
|
|
| 12 | -debian/ocaml-base-nox.install
|
|
| 13 | -debian/ocaml-base.install
|
|
| 14 | -debian/ocaml-compiler-libs.install
|
|
| 15 | -debian/ocaml-interp.install
|
|
| 16 | -debian/ocaml-man.install
|
|
| 17 | -debian/ocaml-nox.install
|
|
| 18 | -debian/ocaml.install
|
|
| 19 | -install-stamp-arch
|
|
| 20 | -install-stamp-indep |
|
| 1 | +Makefile.build_config
|
|
| 2 | +Makefile.config
|
|
| 3 | +config.log
|
|
| 4 | +config.status
|
|
| 5 | +configure
|
|
| 6 | +libtool
|
|
| 7 | +runtime/caml/m.h
|
|
| 8 | +runtime/caml/s.h
|
|
| 9 | +testsuite/_log
|
|
| 10 | +tools/eventlog_metadata |
| ... | ... | @@ -70,6 +70,8 @@ endif |
| 70 | 70 | ifeq (m68k,$(DEB_BUILD_ARCH))
|
| 71 | 71 | CONFIGURE_OPTS += --enable-imprecise-c99-float-ops
|
| 72 | 72 | IGNORE_TESTS_FAILURE := || true
|
| 73 | +else ifneq (,$(findstring hurd,$(DEB_BUILD_ARCH)))
|
|
| 74 | +IGNORE_TESTS_FAILURE := || true
|
|
| 73 | 75 | else
|
| 74 | 76 | IGNORE_TESTS_FAILURE :=
|
| 75 | 77 | endif
|
| ... | ... | @@ -181,6 +183,10 @@ endif |
| 181 | 183 | # Remaining stuff
|
| 182 | 184 | -rm -Rf debian/$(SRCTARBALL) $(TESTDIR)
|
| 183 | 185 | |
| 186 | +execute_after_dh_clean:
|
|
| 187 | + rm -f install-stamp-*
|
|
| 188 | + rm -f debian/installed-files debian/*.install
|
|
| 189 | + |
|
| 184 | 190 | .PHONY: override_dh_auto_install-arch override_dh_auto_install-indep
|
| 185 | 191 | override_dh_auto_install-arch: install-stamp-arch
|
| 186 | 192 | override_dh_auto_install-indep: install-stamp-indep
|
| ... | ... | @@ -299,6 +305,3 @@ override_dh_installdocs: |
| 299 | 305 | |
| 300 | 306 | override_dh_autoreconf:
|
| 301 | 307 | ./tools/autogen |
| 302 | - |
|
| 303 | -# FIXME: figure out why dh_dwz fails
|
|
| 304 | -override_dh_dwz: |