From 01edd830bc23679cbf22428bbb74e29313e227d7 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Sun, 23 Jan 2022 20:30:23 -0800 Subject: [PATCH] PPA: Fix libzim-dev dependency Our libzim packages are "7.2.0~focal" but the ~ means that "7.2.0" is greater than "7.2.0~focal" so the dependency can't be satisfied. Depending on "7.2.0~" will allow "7.2.0~focal" to satisfy the dependency. --- debian/control | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/control b/debian/control index 7c462b813..2b9bc4d15 100644 --- a/debian/control +++ b/debian/control @@ -4,7 +4,7 @@ Maintainer: Kiwix team Build-Depends: debhelper-compat (= 13), meson, pkg-config, - libzim-dev (>= 7.2.0), + libzim-dev (>= 7.2.0~), libcurl4-gnutls-dev, libicu-dev, libgtest-dev, @@ -23,7 +23,7 @@ Section: libdevel Architecture: any Multi-Arch: same Depends: libkiwix10 (= ${binary:Version}), ${misc:Depends}, python3, - libzim-dev (>= 7.2.0), + libzim-dev (>= 7.2.0~), libicu-dev, libpugixml-dev, libcurl4-gnutls-dev,