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 A29FB59CA2 for ; Sat, 13 Feb 2016 15:13:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6C0B6E07DB; Sat, 13 Feb 2016 15:13:16 +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 11C5FE07DB for ; Sat, 13 Feb 2016 15:13:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D553F340BA0 for ; Sat, 13 Feb 2016 15:13:14 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 211AE8F4 for ; Sat, 13 Feb 2016 15:13:12 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1455376383.cd295fdf21d6afba9018e518f92e6e8c94e1c457.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lisp/sbcl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lisp/sbcl/sbcl-1.1.18.ebuild X-VCS-Directories: dev-lisp/sbcl/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: cd295fdf21d6afba9018e518f92e6e8c94e1c457 X-VCS-Branch: master Date: Sat, 13 Feb 2016 15:13:12 +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: 8a2a12a6-7caf-4bde-8d22-e7e9321212e2 X-Archives-Hash: 58803219bad7d7f88567e7a51c24ce0f commit: cd295fdf21d6afba9018e518f92e6e8c94e1c457 Author: Ulrich Müller gentoo org> AuthorDate: Sat Feb 13 15:08:40 2016 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Feb 13 15:13:03 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd295fdf dev-lisp/sbcl: Fix sandbox violation. Thanks to Nicholas Vinson gmail.com> for the original patch. Bug: 572478 Package-Manager: portage-2.2.27 dev-lisp/sbcl/sbcl-1.1.18.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-lisp/sbcl/sbcl-1.1.18.ebuild b/dev-lisp/sbcl/sbcl-1.1.18.ebuild index 0b14a49..926737a 100644 --- a/dev-lisp/sbcl/sbcl-1.1.18.ebuild +++ b/dev-lisp/sbcl/sbcl-1.1.18.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -108,6 +108,10 @@ src_prepare() { # #define SBCL_HOME ... sed "s,/usr/local/lib,/usr/$(get_libdir),g" -i src/runtime/runtime.c || die + # Avoid sandbox violation, bug #572478 + sed -i -e "/(sb-posix:rmdir /s%\"/\"%\"${WORKDIR}\"%" \ + contrib/sb-posix/posix-tests.lisp || die + find . -type f -name .cvsignore -delete }