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 F2B371382C5 for ; Sat, 30 May 2020 18:36:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A3045E08C9; Sat, 30 May 2020 18:36:46 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8ED00E08C9 for ; Sat, 30 May 2020 18:36:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6073834EB8F for ; Sat, 30 May 2020 18:36:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5663C1DA for ; Sat, 30 May 2020 18:36:42 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1590863774.5273ef43dd227a407b2e96416b088f45231637aa.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/multipart-post/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/multipart-post/multipart-post-2.1.1.ebuild X-VCS-Directories: dev-ruby/multipart-post/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 5273ef43dd227a407b2e96416b088f45231637aa X-VCS-Branch: master Date: Sat, 30 May 2020 18:36:42 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c851b848-a856-4458-9155-5ee551c3801b X-Archives-Hash: 00d8f991c4eb3bc5bf0f65546209326e commit: 5273ef43dd227a407b2e96416b088f45231637aa Author: Hans de Graaff gentoo org> AuthorDate: Sat May 30 18:04:13 2020 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat May 30 18:36:14 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5273ef43 dev-ruby/multipart-post: avoid dependency on bundler Closes: https://bugs.gentoo.org/723898 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/multipart-post/multipart-post-2.1.1.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-ruby/multipart-post/multipart-post-2.1.1.ebuild b/dev-ruby/multipart-post/multipart-post-2.1.1.ebuild index 1d2571d3457..f874def78f3 100644 --- a/dev-ruby/multipart-post/multipart-post-2.1.1.ebuild +++ b/dev-ruby/multipart-post/multipart-post-2.1.1.ebuild @@ -19,3 +19,7 @@ LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" IUSE="test" + +all_ruby_prepare() { + sed -i -e '/bundler/ s:^:#:' spec/spec_helper.rb || die +}