Stéphane Glondu pushed to branch master at Debian OCaml Maintainers / extlib
Commits:
-
9380725d
by Stephane Glondu at 2022-02-24T14:29:46+01:00
-
93bd0dc5
by Stephane Glondu at 2022-02-24T14:38:38+01:00
-
9ce6bf0f
by Stephane Glondu at 2022-02-24T14:45:23+01:00
3 changed files:
Changes:
| 1 |
-extlib (1.7.8-2) UNRELEASED; urgency=medium
|
|
| 1 |
+extlib (1.7.8-2) unstable; urgency=medium
|
|
| 2 | 2 |
|
| 3 |
+ [ Stéphane Glondu ]
|
|
| 4 |
+ * Always build with minimal=1
|
|
| 5 |
+ |
|
| 6 |
+ [ Debian Janitor ]
|
|
| 3 | 7 |
* Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
|
| 4 | 8 |
Repository-Browse.
|
| 5 | 9 |
|
| 6 |
- -- Debian Janitor <janitor@jelmer.uk> Thu, 17 Feb 2022 10:58:50 -0000
|
|
| 10 |
+ -- Stéphane Glondu <glondu@debian.org> Thu, 24 Feb 2022 14:38:12 +0100
|
|
| 7 | 11 |
|
| 8 | 12 |
extlib (1.7.8-1) unstable; urgency=medium
|
| 9 | 13 |
|
| ... | ... | @@ -6,7 +6,7 @@ Uploaders: |
| 6 | 6 |
Stéphane Glondu <glondu@debian.org>
|
| 7 | 7 |
Build-Depends:
|
| 8 | 8 |
debhelper-compat (= 13),
|
| 9 |
- ocaml-nox,
|
|
| 9 |
+ ocaml,
|
|
| 10 | 10 |
cppo,
|
| 11 | 11 |
ocaml-findlib,
|
| 12 | 12 |
libfindlib-ocaml-dev,
|
| ... | ... | @@ -19,13 +19,19 @@ override_dh_installchangelogs: |
| 19 | 19 |
|
| 20 | 20 |
# do not require ocamlopt during building or testing
|
| 21 | 21 |
ifneq ($(OCAML_HAVE_OCAMLOPT),yes)
|
| 22 |
+ |
|
| 22 | 23 |
override_dh_auto_build:
|
| 23 | 24 |
make minimal=1 -C src all
|
| 24 | 25 |
|
| 25 | 26 |
override_dh_auto_test:
|
| 26 |
-ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
|
|
| 27 | 27 |
make minimal=1 -C test all run
|
| 28 |
-endif
|
|
| 29 |
-endif
|
|
| 30 | 28 |
|
| 31 |
-override_dh_dwz:
|
|
| 29 |
+else
|
|
| 30 |
+ |
|
| 31 |
+override_dh_auto_build:
|
|
| 32 |
+ dh_auto_build -- minimal=1
|
|
| 33 |
+ |
|
| 34 |
+override_dh_auto_test:
|
|
| 35 |
+ dh_auto_test -- minimal=1
|
|
| 36 |
+ |
|
| 37 |
+endif
|