Control: tags -1 + patch
On Tue, 19 Sep 2023 13:02:43 Stéphane Glondu <[email protected]> wrote:
Your package FTBFS with OCaml 4.14.1 with the following error:
> [...]
This is due to dune defaulting to warnings-as-errors in non-release
mode. A packaging fix is attached. Something should be done upstream to
get rid of the warnings.
Cheers,
--
Stéphane
From 1917876272c2e7de4a1f9d9a1fca4f6147b0b7dc Mon Sep 17 00:00:00 2001
From: Stephane Glondu <Stéphane Glondu [email protected]>
Date: Wed, 20 Sep 2023 09:48:58 +0200
Subject: [PATCH] Fix FTBFS with OCaml 4.14.1 (Closes: #1052235)
---
debian/changelog | 7 +++++++
debian/rules | 3 +++
2 files changed, 10 insertions(+)
diff --git a/debian/changelog b/debian/changelog
index 1e3a62b..18c8dd8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+orpie (1.6.1-1.1) UNRELEASED; urgency=medium
+
+ * Non-maintainer upload.
+ * Fix FTBFS with OCaml 4.14.1 (Closes: #1052235)
+
+ -- Stéphane Glondu <[email protected]> Wed, 20 Sep 2023 09:48:47 +0200
+
orpie (1.6.1-1) unstable; urgency=medium
* New upstream release.
diff --git a/debian/rules b/debian/rules
index cf9b5d6..b3fdfa9 100755
--- a/debian/rules
+++ b/debian/rules
@@ -6,6 +6,9 @@ export DESTDIR=$(CURDIR)/debian/orpie
%:
dh $@
+override_dh_auto_build:
+ dune build -p orpie
+
override_dh_auto_install:
dh_auto_install
mv $(CURDIR)/debian/orpie/usr/man $(CURDIR)/debian/orpie/usr/share/man
--
2.40.1