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 8C9E11384B4 for ; Thu, 3 Dec 2015 13:14:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9E00521C032; Thu, 3 Dec 2015 13:13:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2FFAE21C032 for ; Thu, 3 Dec 2015 13:13:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E72FF340AF9 for ; Thu, 3 Dec 2015 13:13:56 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 17086C7E for ; Thu, 3 Dec 2015 13:13:52 +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: <1449148420.357835e5a56ae91c9bee9cf3ce2363a255d929be.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.0-r3.ebuild X-VCS-Directories: app-emulation/xen-tools/ X-VCS-Committer: idella4 X-VCS-Committer-Name: Ian Delaney X-VCS-Revision: 357835e5a56ae91c9bee9cf3ce2363a255d929be X-VCS-Branch: master Date: Thu, 3 Dec 2015 13:13:52 +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: 2c258160-7d1d-4950-971f-897ea1be2268 X-Archives-Hash: 1c0cc88f32bf750dd3b753fd5d8f5ee2 commit: 357835e5a56ae91c9bee9cf3ce2363a255d929be Author: Ian Delaney gentoo org> AuthorDate: Thu Dec 3 13:12:34 2015 +0000 Commit: Ian Delaney gentoo org> CommitDate: Thu Dec 3 13:13:40 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=357835e5 app-emulation/xen-tools: add missed sec patches to vn. 4.6.0-r3 Already added to xen-4.5.2-r1, fixes gentoo bug. Fix apparent typo re sec. patches in ebuild of 4.6.0-r3 only Gentoo bug: #567190 Package-Manager: portage-2.2.24 app-emulation/xen-tools/xen-tools-4.6.0-r3.ebuild | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/app-emulation/xen-tools/xen-tools-4.6.0-r3.ebuild b/app-emulation/xen-tools/xen-tools-4.6.0-r3.ebuild index 156be8a..d13b307 100644 --- a/app-emulation/xen-tools/xen-tools-4.6.0-r3.ebuild +++ b/app-emulation/xen-tools/xen-tools-4.6.0-r3.ebuild @@ -45,7 +45,9 @@ else ${OVMF_PATCHSET_URI} ) ${UPSTREAM_PATCHSET_URI} ${SECURITY_PATCHSET_URI} - ${GENTOO_PATCHSET_URI}" + ${GENTOO_PATCHSET_URI} + https://dev.gentoo.org/~idella4/distfiles/xen-security-patches-0.tar.gz" + S="${WORKDIR}/xen-${MY_PV}" fi @@ -164,7 +166,7 @@ pkg_setup() { src_prepare() { # Upstream's patchset if [[ -n ${UPSTREAM_VER} ]]; then - einfo "Try to apply Xen Upstream patcheset" + einfo "Try to apply Xen Upstream patch set" EPATCH_SUFFIX="patch" \ EPATCH_FORCE="yes" \ EPATCH_OPTS="-p1" \ @@ -173,7 +175,7 @@ src_prepare() { # Security patchset if [[ -n ${SECURITY_VER} ]]; then - einfo "Try to apply Xen Security patcheset" + einfo "Try to apply Xen Security patch set" source "${WORKDIR}"/patches-security/${PV}.conf # apply main xen patches for i in ${XEN_SECURITY_MAIN}; do @@ -215,7 +217,7 @@ src_prepare() { # Gentoo's patchset if [[ -n ${GENTOO_VER} && -n ${GENTOO_GPV} ]]; then - einfo "Try to apply Gentoo specific patcheset" + einfo "Try to apply Gentoo specific patch set" source "${FILESDIR}"/gentoo-patches.conf _gpv=_gpv_${PN/-/_}_${PV//./}_${GENTOO_GPV} for i in ${!_gpv}; do @@ -227,7 +229,7 @@ src_prepare() { # Ovmf's patchset if [[ -n ${OVMF_VER} ]] && use ovmf; then - einfo "Try to apply Ovmf patcheset" + einfo "Try to apply Ovmf patch set" pushd "${WORKDIR}"/ovmf-*/ > /dev/null EPATCH_SUFFIX="patch" \ EPATCH_FORCE="yes" \