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 951A659CB2 for ; Thu, 14 Apr 2016 12:07:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AA71D21C029; Thu, 14 Apr 2016 12:07:20 +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 289EC21C023 for ; Thu, 14 Apr 2016 12:07:20 +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 30450340DA1 for ; Thu, 14 Apr 2016 12:07:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 74AB287B for ; Thu, 14 Apr 2016 12:07:16 +0000 (UTC) From: "Ian Delaney" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ian Delaney" Message-ID: <1460635621.e7f4ae036081464c52eb4bd8d61baf87dd4478d5.idella4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/xen/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/xen/xen-4.6.1.ebuild X-VCS-Directories: app-emulation/xen/ X-VCS-Committer: idella4 X-VCS-Committer-Name: Ian Delaney X-VCS-Revision: e7f4ae036081464c52eb4bd8d61baf87dd4478d5 X-VCS-Branch: master Date: Thu, 14 Apr 2016 12:07:16 +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: 1fdd6036-3f90-4353-bcb6-702ca2b9b2fc X-Archives-Hash: e4340485610c081127bfcb49775732b2 commit: e7f4ae036081464c52eb4bd8d61baf87dd4478d5 Author: Ian Delaney gentoo org> AuthorDate: Thu Apr 14 11:59:09 2016 +0000 Commit: Ian Delaney gentoo org> CommitDate: Thu Apr 14 12:07:01 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7f4ae03 app-emulation/xen: correct typo in source of vn. 4.6.1 noted in gentoo bug, set with an equivalent sed statement substituting an upstream patch, the sed being completed in one line Gentoo-bug: #575868 Package-Manager: portage-2.2.28 app-emulation/xen/xen-4.6.1.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app-emulation/xen/xen-4.6.1.ebuild b/app-emulation/xen/xen-4.6.1.ebuild index 3a1959d..240b96e 100644 --- a/app-emulation/xen/xen-4.6.1.ebuild +++ b/app-emulation/xen/xen-4.6.1.ebuild @@ -146,6 +146,12 @@ src_prepare() { # not strictly necessary to fix this sed -i 's/, "-Werror"//' "${S}/tools/python/setup.py" || die "failed to re-set setup.py" + # Bug #575868 converted to a sed statement, typo of one char + sed -e "s:granter’s:granter's:" -i xen/include/public/grant_table.h + + # Bug #575868 converted to a sed statement, typo of one char + sed -e "s:granter’s:granter's:" -i xen/include/public/grant_table.h || die + epatch_user }