gentoo-ebuilds/x11-plugins/pidgin-sipe/files/pidgin-sipe-1.25.0-appstreamcli.patch
Cristian Othón Martínez Vera 0bef22095f
x11-plugins/pidgin-sipe: fix compilation with libxml2 >= 2.12, fix tests, update HOMEPAGE
I bumped with this when I was trying to rebuild it after the libxml2 subslot op

Closes: https://bugs.gentoo.org/730118
Closes: https://bugs.gentoo.org/932640
Signed-off-by: Cristian Othón Martínez Vera <cfuga@cfuga.mx>
Part-of: https://github.com/gentoo/gentoo/pull/42536
Closes: https://github.com/gentoo/gentoo/pull/42536
Signed-off-by: Sam James <sam@gentoo.org>
2025-07-25 07:50:18 +01:00

27 lines
912 B
Diff

https://repo.or.cz/siplcs.git/commit/cb7e7be214a03acb4348c65b0e2194e86c5d55f4
Bug: https://bugs.gentoo.org/730118
From: Stefan Becker <chemobejk@gmail.com>
Date: Mon, 22 Jan 2024 22:53:54 +0200
Subject: [PATCH] purple: add support for latest appstreamcli
Newest version no longer accepts the --nonet option. Add another variant
that uses --no-net instead.
--- a/src/purple/Makefile.am
+++ b/src/purple/Makefile.am
@@ -160,7 +160,8 @@ check: validate-metainfo
.PHONY: validate-metainfo
validate-metainfo: $(pidginmetainfofile_DATA)
- appstreamcli validate --pedantic --nonet $< || \
- appstreamcli validate --pedantic $< || \
- appstream-validate $<
+ appstreamcli validate --pedantic --no-net $< || \
+ appstreamcli validate --pedantic --nonet $< || \
+ appstreamcli validate --pedantic $< || \
+ appstream-validate $<
endif
--
2.11.4.GIT