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 39AEF13888F for ; Fri, 23 Oct 2015 14:35:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C772621C012; Fri, 23 Oct 2015 14:35:46 +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 7241421C012 for ; Fri, 23 Oct 2015 14:35:45 +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 545DD340A02 for ; Fri, 23 Oct 2015 14:35:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4778E1676 for ; Fri, 23 Oct 2015 14:35:37 +0000 (UTC) From: "Richard Farina" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Richard Farina" Message-ID: <1445610805.f833b6512c74d392852f5f9e770f193a6084c71d.zerochaos@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/metasm/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/metasm/metasm-1.0.2-r3.ebuild X-VCS-Directories: dev-ruby/metasm/ X-VCS-Committer: zerochaos X-VCS-Committer-Name: Richard Farina X-VCS-Revision: f833b6512c74d392852f5f9e770f193a6084c71d X-VCS-Branch: master Date: Fri, 23 Oct 2015 14:35:37 +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: a5409444-9a72-4e4b-99c5-d43a477620a3 X-Archives-Hash: a25f72d57b736eb9c4d1ce777a99c64d commit: f833b6512c74d392852f5f9e770f193a6084c71d Author: Zero_Chaos gentoo org> AuthorDate: Fri Oct 23 14:30:00 2015 +0000 Commit: Richard Farina gentoo org> CommitDate: Fri Oct 23 14:33:25 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f833b651 dev-ruby/metasm: fix bash syntax error Package-Manager: portage-2.2.23 dev-ruby/metasm/metasm-1.0.2-r3.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-ruby/metasm/metasm-1.0.2-r3.ebuild b/dev-ruby/metasm/metasm-1.0.2-r3.ebuild index ad7a2b5..62fa8da 100644 --- a/dev-ruby/metasm/metasm-1.0.2-r3.ebuild +++ b/dev-ruby/metasm/metasm-1.0.2-r3.ebuild @@ -26,7 +26,9 @@ RDEPEND="${RDEPEND} !dev-ruby/metasploit-model:0" ruby_add_bdepend "dev-ruby/bundler" all_ruby_prepare() { - [ -f Gemfile.lock ] && rm Gemfile.lock || die + if [ -f Gemfile.lock ]; then + rm Gemfile.lock || die + fi #For now, we don't support development or testing at all #if ! use development; then sed -i -e "/^group :development do/,/^end$/d" Gemfile || die