From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 3729413826A for ; Wed, 25 May 2016 04:05:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 61EA421C012; Wed, 25 May 2016 04:05:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 050CD21C012 for ; Wed, 25 May 2016 04:05:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B7029340B19 for ; Wed, 25 May 2016 04:05:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 732FA968 for ; Wed, 25 May 2016 04:05:51 +0000 (UTC) From: "Patrick McLean" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick McLean" Message-ID: <1464149123.5a9df6a22b2fed43184421965c86a2c207841ae4.chutzpah@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/ganeti/files/, app-emulation/ganeti/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/ganeti/files/ganeti-2.15-dont-invert-return-values-for-man-warnings.patch app-emulation/ganeti/ganeti-2.15.2-r4.ebuild X-VCS-Directories: app-emulation/ganeti/ app-emulation/ganeti/files/ X-VCS-Committer: chutzpah X-VCS-Committer-Name: Patrick McLean X-VCS-Revision: 5a9df6a22b2fed43184421965c86a2c207841ae4 X-VCS-Branch: master Date: Wed, 25 May 2016 04:05:51 +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: 57e9a8cf-17b1-4957-b880-cd02e7a5f8e0 X-Archives-Hash: c948385ef299b0bde69cb9a5e853faee commit: 5a9df6a22b2fed43184421965c86a2c207841ae4 Author: Patrick McLean gentoo org> AuthorDate: Wed May 25 04:05:23 2016 +0000 Commit: Patrick McLean gentoo org> CommitDate: Wed May 25 04:05:23 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a9df6a2 app-emulation/ganeti: Add patch to not invert the check-man-warnings return code Gentoo-Bug: 579550 Package-Manager: portage-2.3.0_rc1 ...aneti-2.15-dont-invert-return-values-for-man-warnings.patch | 10 ++++++++++ app-emulation/ganeti/ganeti-2.15.2-r4.ebuild | 1 + 2 files changed, 11 insertions(+) diff --git a/app-emulation/ganeti/files/ganeti-2.15-dont-invert-return-values-for-man-warnings.patch b/app-emulation/ganeti/files/ganeti-2.15-dont-invert-return-values-for-man-warnings.patch new file mode 100644 index 0000000..37a6875 --- /dev/null +++ b/app-emulation/ganeti/files/ganeti-2.15-dont-invert-return-values-for-man-warnings.patch @@ -0,0 +1,10 @@ +--- a/autotools/check-man-warnings 2015-12-03 19:50:34.000000000 +0000 ++++ b/autotools/check-man-warnings 2016-05-22 11:19:31.678635696 +0000 +@@ -35,6 +35,6 @@ + loc="en_US.UTF-8" + fi + +-! LANG="$loc" LC_ALL="$loc" MANWIDTH=80 \ ++LANG="$loc" LC_ALL="$loc" MANWIDTH=80 \ + man --warnings --encoding=utf8 --local-file "$1" 2>&1 >/dev/null | \ + grep -v -e "cannot adjust line" -e "can't break line" | \ diff --git a/app-emulation/ganeti/ganeti-2.15.2-r4.ebuild b/app-emulation/ganeti/ganeti-2.15.2-r4.ebuild index c5dac05..704f938 100644 --- a/app-emulation/ganeti/ganeti-2.15.2-r4.ebuild +++ b/app-emulation/ganeti/ganeti-2.15.2-r4.ebuild @@ -173,6 +173,7 @@ PATCHES=( "${FILESDIR}/${PN}-2.15.2-remove-sandbox-failing-tests.patch" "${FILESDIR}/${PN}-2.15-noded-must-run-as-root.patch" "${FILESDIR}/${PN}-2.15-kvmd-run-as-daemon-user.patch" + "${FILESDIR}/${PN}-2.15-dont-invert-return-values-for-man-warnings.patch" ) S="${WORKDIR}/${MY_P}"