From 1cb04817f4ee1391099eb2985462467a86321d24 Mon Sep 17 00:00:00 2001 From: Sam James Date: Sun, 11 Jan 2026 09:00:56 +0000 Subject: [PATCH] dev-libs/libmateweather: fix incompatibility w/ newer libxml2 Disable location compression until libmateweather learns to invoke zlib directly rather than relying on (old) libxml2 doing that for them. Bug: https://github.com/mate-desktop/libmateweather/issues/144 Bug: https://bugs.gentoo.org/965885 Bug: https://bugs.gentoo.org/968600 Signed-off-by: Sam James --- ...ather-1.28.1.ebuild => libmateweather-1.28.1-r1.ebuild} | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) rename dev-libs/libmateweather/{libmateweather-1.28.1.ebuild => libmateweather-1.28.1-r1.ebuild} (79%) diff --git a/dev-libs/libmateweather/libmateweather-1.28.1.ebuild b/dev-libs/libmateweather/libmateweather-1.28.1-r1.ebuild similarity index 79% rename from dev-libs/libmateweather/libmateweather-1.28.1.ebuild rename to dev-libs/libmateweather/libmateweather-1.28.1-r1.ebuild index 30738835669cc..ecadd9c79f303 100644 --- a/dev-libs/libmateweather/libmateweather-1.28.1.ebuild +++ b/dev-libs/libmateweather/libmateweather-1.28.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -52,8 +52,11 @@ PATCHES=( ) src_configure() { + # --disable-locations-compression for https://github.com/mate-desktop/libmateweather/issues/144 + # libxml2 dropped support for automatic decompression. If MATE + # switches to invoking zlib themselves, we can bring this back. mate_src_configure \ - --enable-locations-compression \ + --disable-locations-compression \ --disable-all-translations-in-one-xml \ --disable-icon-update }