From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D00C41382C5 for ; Fri, 18 May 2018 16:44:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A5843E09D5; Fri, 18 May 2018 16:44:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 867C9E08A5 for ; Fri, 18 May 2018 16:44:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 102A7335C75 for ; Fri, 18 May 2018 16:44:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2813B291 for ; Fri, 18 May 2018 16:44:29 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1526661851.563dd71917c9077c1afad0dc04e3b2924ab53b59.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/appstream/files/, dev-libs/appstream/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/appstream/appstream-0.11.5.ebuild dev-libs/appstream/files/appstream-0.11.5-fix-meson-po.patch X-VCS-Directories: dev-libs/appstream/files/ dev-libs/appstream/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 563dd71917c9077c1afad0dc04e3b2924ab53b59 X-VCS-Branch: master Date: Fri, 18 May 2018 16:44:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: e3ff4920-7999-44f2-93de-9bcd146bf8a8 X-Archives-Hash: b26250be4cf52ef9b2e1a1b68ade9f31 commit: 563dd71917c9077c1afad0dc04e3b2924ab53b59 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri May 18 16:43:46 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri May 18 16:44:11 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=563dd719 dev-libs/appstream: Fix install issue w/ meson Thanks-to: David Haller dhaller.de> Closes: https://bugs.gentoo.org/640916 Package-Manager: Portage-2.3.38, Repoman-2.3.9 dev-libs/appstream/appstream-0.11.5.ebuild | 2 ++ .../appstream/files/appstream-0.11.5-fix-meson-po.patch | 14 ++++++++++++++ 2 files changed, 16 insertions(+) diff --git a/dev-libs/appstream/appstream-0.11.5.ebuild b/dev-libs/appstream/appstream-0.11.5.ebuild index 227ab977dc5..bf4e52ace68 100644 --- a/dev-libs/appstream/appstream-0.11.5.ebuild +++ b/dev-libs/appstream/appstream-0.11.5.ebuild @@ -43,6 +43,8 @@ DEPEND="${RDEPEND} ) " +PATCHES=( "${FILESDIR}/${P}-fix-meson-po.patch" ) + src_configure() { xdg_environment_reset diff --git a/dev-libs/appstream/files/appstream-0.11.5-fix-meson-po.patch b/dev-libs/appstream/files/appstream-0.11.5-fix-meson-po.patch new file mode 100644 index 00000000000..2a37662e8f3 --- /dev/null +++ b/dev-libs/appstream/files/appstream-0.11.5-fix-meson-po.patch @@ -0,0 +1,14 @@ +Gentoo-bug: https://bugs.gentoo.org/640916 +Thanks-to: David Haller + +--- a/po/meson.build 2017-09-04 18:09:52.000000000 +0200 ++++ b/po/meson.build 2018-05-15 12:24:42.000000000 +0200 +@@ -21,7 +21,7 @@ + 'find ' + meson.current_source_dir() + + ' -type f' + + ' -iname "*.po"' + +- ' -printf \'%f\\n\'' + ++ ' -printf \'%f\n\'' + + ' | grep -oP \'.*(?=[.])\' | sort' + + ' > ' + join_paths(meson.current_source_dir(), 'LINGUAS') + ]