Stéphane Glondu pushed to branch debian/experimental at Debian OCaml Maintainers / ocaml
Commits:
-
f7de02e7
by Stéphane Glondu at 2025-01-15T08:21:39+01:00
-
0f222b92
by Stéphane Glondu at 2025-01-15T08:26:08+01:00
-
36e99248
by Stéphane Glondu at 2025-01-15T08:28:25+01:00
-
f3e2b372
by Stéphane Glondu at 2025-01-15T08:40:48+01:00
-
3647a729
by Stéphane Glondu at 2025-01-15T10:38:43+01:00
11 changed files:
- debian/changelog
- debian/native-archs
- debian/patches/0007-Put-manpages-in-section-3o-instead-of-3.patch → debian/patches/0001-Put-manpages-in-section-3o-instead-of-3.patch
- debian/patches/0005-Trigger-output-complete-exe-on-custom-with-an-enviro.patch → debian/patches/0002-Trigger-output-complete-exe-on-custom-with-an-enviro.patch
- debian/patches/0006-Do-not-error-on-warnings-in-autoconf.patch → debian/patches/0003-Do-not-error-on-warnings-in-autoconf.patch
- debian/patches/0002-Use-CCLINKFLAGS-for-linking-all-executables-and-shar.patch → debian/patches/0004-Use-CCLINKFLAGS-for-linking-all-executables-and-shar.patch
- debian/patches/0003-Check-for-definition-of-AT_SECURE-before-using-it.patch → debian/patches/0005-Check-for-definition-of-AT_SECURE-before-using-it.patch
- debian/patches/0004-Disable-DT_TEXTREL-warnings-on-Linux-i386.patch → debian/patches/0006-Disable-DT_TEXTREL-warnings-on-Linux-i386.patch
- + debian/patches/0007-Enable-native-backend-on-hurd-amd64.patch
- debian/patches/series
- debian/rules
Changes:
1 | +ocaml (5.3.0-1~exp2) experimental; urgency=medium
|
|
2 | + |
|
3 | + * Run tests with OCAML_TEST_SIZE=1
|
|
4 | + * Enable native backend on hurd-amd64 (Closes: #1086600)
|
|
5 | + |
|
6 | + -- Stéphane Glondu <glondu@debian.org> Wed, 15 Jan 2025 10:38:28 +0100
|
|
7 | + |
|
1 | 8 | ocaml (5.3.0-1~exp1) experimental; urgency=medium
|
2 | 9 | |
3 | 10 | * New upstream release
|
1 | -amd64 arm64 kfreebsd-amd64 ppc64el s390x riscv64 |
|
1 | +amd64 arm64 hurd-amd64 kfreebsd-amd64 ppc64el s390x riscv64 |
1 | +From: Samuel Thibault <sthibault@debian.org>
|
|
2 | +Date: Wed, 15 Jan 2025 08:23:51 +0100
|
|
3 | +Subject: Enable native backend on hurd-amd64
|
|
4 | + |
|
5 | +Bug-Debian: https://bugs.debian.org/1086600
|
|
6 | +Forwarded: https://github.com/ocaml/ocaml/pull/13587
|
|
7 | +---
|
|
8 | + configure.ac | 2 +-
|
|
9 | + 1 file changed, 1 insertion(+), 1 deletion(-)
|
|
10 | + |
|
11 | +diff --git a/configure.ac b/configure.ac
|
|
12 | +index af1ea7b..2f5d2a1 100644
|
|
13 | +--- a/configure.ac
|
|
14 | ++++ b/configure.ac
|
|
15 | +@@ -1490,7 +1490,7 @@ AS_CASE([$host],
|
|
16 | + [x86_64-*-linux*],
|
|
17 | + [has_native_backend=yes; arch=amd64; system=linux],
|
|
18 | + [x86_64-*-gnu*],
|
|
19 | +- [arch=amd64; system=gnu],
|
|
20 | ++ [has_native_backend=yes; arch=amd64; system=gnu],
|
|
21 | + [x86_64-*-dragonfly*],
|
|
22 | + [arch=amd64; system=dragonfly],
|
|
23 | + [x86_64-*-solaris*], |
1 | -0002-Use-CCLINKFLAGS-for-linking-all-executables-and-shar.patch
|
|
2 | -0003-Check-for-definition-of-AT_SECURE-before-using-it.patch
|
|
3 | -0004-Disable-DT_TEXTREL-warnings-on-Linux-i386.patch
|
|
4 | -0005-Trigger-output-complete-exe-on-custom-with-an-enviro.patch
|
|
5 | -0006-Do-not-error-on-warnings-in-autoconf.patch
|
|
6 | -0007-Put-manpages-in-section-3o-instead-of-3.patch |
|
1 | +0001-Put-manpages-in-section-3o-instead-of-3.patch
|
|
2 | +0002-Trigger-output-complete-exe-on-custom-with-an-enviro.patch
|
|
3 | +0003-Do-not-error-on-warnings-in-autoconf.patch
|
|
4 | +0004-Use-CCLINKFLAGS-for-linking-all-executables-and-shar.patch
|
|
5 | +0005-Check-for-definition-of-AT_SECURE-before-using-it.patch
|
|
6 | +0006-Disable-DT_TEXTREL-warnings-on-Linux-i386.patch
|
|
7 | +0007-Enable-native-backend-on-hurd-amd64.patch |
... | ... | @@ -284,7 +284,7 @@ ifneq (,$(filter $(DEB_BUILD_ARCH),$(SLOW_ARCHITECTURES))) |
284 | 284 | rm -f testsuite/tests/misc-unsafe/almabench.ml
|
285 | 285 | endif
|
286 | 286 | ifeq (,$(DEB_TEST_BUILD_PREFIX))
|
287 | - make tests $(IGNORE_TESTS_FAILURE)
|
|
287 | + OCAML_TEST_SIZE=1 make tests $(IGNORE_TESTS_FAILURE)
|
|
288 | 288 | endif
|
289 | 289 | endif
|
290 | 290 |