From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 74F4A1395E1 for ; Sun, 30 Oct 2016 18:33:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1DA31E0C7F; Sun, 30 Oct 2016 18:33:33 +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 0866DE0C7F for ; Sun, 30 Oct 2016 18:33:33 +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 B42A834104D for ; Sun, 30 Oct 2016 18:33:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0CF18248D for ; Sun, 30 Oct 2016 18:33:30 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1477852380.a195dca39386e7dcba0504b5a18a2b59db3c721b.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/nipype/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/nipype/nipype-9999.ebuild X-VCS-Directories: sci-libs/nipype/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: a195dca39386e7dcba0504b5a18a2b59db3c721b X-VCS-Branch: master Date: Sun, 30 Oct 2016 18:33:30 +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: 25780696-f6e5-4bab-951e-aba236d1ffd4 X-Archives-Hash: 6036f534d9045de8d60377f374bab690 commit: a195dca39386e7dcba0504b5a18a2b59db3c721b Author: Horea Christian yandex com> AuthorDate: Sun Oct 30 18:33:00 2016 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Oct 30 18:33:00 2016 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=a195dca3 sci-libs/nipype: fixed sed syntax (#698) Package-Manager: portage-2.3.2 sci-libs/nipype/nipype-9999.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sci-libs/nipype/nipype-9999.ebuild b/sci-libs/nipype/nipype-9999.ebuild index 8a0480b..af5332c 100644 --- a/sci-libs/nipype/nipype-9999.ebuild +++ b/sci-libs/nipype/nipype-9999.ebuild @@ -39,8 +39,8 @@ RDEPEND=" python_prepare_all() { distutils-r1_python_prepare_all - EXISTING_REQUIRE="setup_requires=['future', 'configparser']" - CORRECTED_REQUIRE="setup_requires=['future']" + EXISTING_REQUIRE="setup_requires=\['future', 'configparser'\]" + CORRECTED_REQUIRE="setup_requires=\['future'\]" sed \ -e "s/${EXISTING_REQUIRE}/${CORRECTED_REQUIRE}/g" \ -i setup.py \