mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-21 10:50:54 +00:00
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>
27 lines
912 B
Diff
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
|
|
|