From 291f574c8aed679ad56320776f573cb2f39d9038 Mon Sep 17 00:00:00 2001 From: Rene Engelhard Date: Mon, 12 Sep 2022 13:38:03 +0000 Subject: [PATCH 1/3] remove obsolete FIXME --- source/lintian-overrides | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/lintian-overrides b/source/lintian-overrides index ce188ad2..90b8bc30 100644 --- a/source/lintian-overrides +++ b/source/lintian-overrides @@ -4,7 +4,7 @@ libreoffice source: source-is-missing [odk/docs/tools.html] libreoffice source: source-is-missing [odk/examples/DevelopersGuide/examples.html] libreoffice source: source-is-missing [odk/examples/examples.html] libreoffice source: source-is-missing [odk/index_online.html] -# similar, this is NOT minified. FIXME: use node-prismjs even though it's 1.26 while this is 1.28? +# similar, this is NOT minified. libreoffice source: source-is-missing [helpcontent2/help3xsl/prism.js] # no, it isn't. the one is always, the other is for tests ()! libreoffice source: redundant-build-prerequisites libmwaw-dev (>= 0.3.1), libmwaw-dev (>= 0.3.21) -- GitLab From 62fe4af3eb14ddd91dee4567c6806c8939246979 Mon Sep 17 00:00:00 2001 From: Rico Tzschichholz Date: Sun, 11 Sep 2022 14:29:17 +0200 Subject: [PATCH 2/3] harfbuzz >= 2.1.0 is required hb_ot_name_get_utf8() and HB_OT_NAME_ID_FONT_FAMILY https://gerrit.libreoffice.org/c/core/+/132511 --- control | 2 +- rules | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/control b/control index d94df0e0..105481ac 100644 --- a/control +++ b/control @@ -85,7 +85,7 @@ Build-Depends: autoconf, libgstreamer-plugins-base1.0-dev, libgstreamer1.0-dev, libgtk-3-dev (>= 3.20.0), - libharfbuzz-dev (>= 0.9.42), + libharfbuzz-dev (>= 2.1.0), libhsqldb1.8.0-java (>> 1.8.0.10) [!hppa !mips64 !s390 !sparc] , libhunspell-dev (>= 1.1.5-2), libhyphen-dev (>= 2.4), diff --git a/rules b/rules index 956c1935..044774a9 100755 --- a/rules +++ b/rules @@ -845,7 +845,7 @@ ifneq (,$(filter graphite, $(SYSTEM_STUFF))) endif ifneq (,$(filter harfbuzz, $(SYSTEM_STUFF))) - BUILD_DEPS += , libharfbuzz-dev (>= 0.9.42) + BUILD_DEPS += , libharfbuzz-dev (>= 2.1.0) endif ifneq (,$(filter libexttextcat, $(SYSTEM_STUFF))) -- GitLab From cbbe4fdb0384aba458facba7bbcdfa4342261d70 Mon Sep 17 00:00:00 2001 From: Rico Tzschichholz Date: Wed, 14 Aug 2019 10:33:43 +0200 Subject: [PATCH 3/3] libpng >= 1.6 is required --- control | 2 +- rules | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/control b/control index 105481ac..b5fe1755 100644 --- a/control +++ b/control @@ -122,7 +122,7 @@ Build-Depends: autoconf, libpagemaker-dev, libpagemaker-dev (<< 0.1~), libpentaho-reporting-flow-engine-java (>= 0.9.4) [!hppa !mips64 !s390 !sparc] , - libpng-dev, + libpng-dev (>= 1.6), libpoppler-cpp-dev, libpoppler-dev (>= 0.14.0), libpoppler-private-dev, diff --git a/rules b/rules index 044774a9..9f43b784 100755 --- a/rules +++ b/rules @@ -886,7 +886,7 @@ ifneq (,$(filter sane, $(SYSTEM_STUFF))) BUILD_DEPS += , libsane-dev endif ifneq (,$(filter libpng, $(SYSTEM_STUFF))) - BUILD_DEPS += , libpng-dev + BUILD_DEPS += , libpng-dev (>= 1.6) endif ifeq "$(ENABLE_CURL)" "y" -- GitLab