commit: 1cb04817f4ee1391099eb2985462467a86321d24 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sun Jan 11 09:00:56 2026 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Jan 11 09:02:38 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cb04817
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 <sam <AT> gentoo.org> ...ibmateweather-1.28.1.ebuild => libmateweather-1.28.1-r1.ebuild} | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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 30738835669c..ecadd9c79f30 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 }
