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 1478D59CB2 for ; Thu, 14 Apr 2016 12:07:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9E13521C023; 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 35BD321C029 for ; Thu, 14 Apr 2016 12:07:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 D260F340D85 for ; Thu, 14 Apr 2016 12:07:18 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8790613FE 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.5e3265d6af09ae438104fc24c8e8537c4c235061.idella4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/xen-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/xen-tools/xen-tools-4.6.1.ebuild X-VCS-Directories: app-emulation/xen-tools/ X-VCS-Committer: idella4 X-VCS-Committer-Name: Ian Delaney X-VCS-Revision: 5e3265d6af09ae438104fc24c8e8537c4c235061 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: c048c640-68b1-43e4-93a9-0a4230cf0ee1 X-Archives-Hash: 1aab17846b0580931545a0d0ef12cad4 commit: 5e3265d6af09ae438104fc24c8e8537c4c235061 Author: Ian Delaney gentoo org> AuthorDate: Thu Apr 14 12:00:50 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=5e3265d6 app-emulation/xen-tools: 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-tools/xen-tools-4.6.1.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app-emulation/xen-tools/xen-tools-4.6.1.ebuild b/app-emulation/xen-tools/xen-tools-4.6.1.ebuild index c84766c..a63bbda 100644 --- a/app-emulation/xen-tools/xen-tools-4.6.1.ebuild +++ b/app-emulation/xen-tools/xen-tools-4.6.1.ebuild @@ -348,6 +348,9 @@ src_prepare() { -e 's:^#vif.default.script=:vif.default.script=:' \ -i tools/examples/xl.conf || die + # 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 }