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 AC72059CA9 for ; Mon, 28 Mar 2016 10:22:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DE61B21C02E; Mon, 28 Mar 2016 10:22:01 +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 5F34221C01B for ; Mon, 28 Mar 2016 10:22:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 29058340B09 for ; Mon, 28 Mar 2016 10:21:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 909E187A for ; Mon, 28 Mar 2016 10:21:54 +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: <1459160510.834f09d20632a7591b24a6f7a9dcd63b0da37ea7.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/connection_pool/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/connection_pool/connection_pool-2.2.0.ebuild X-VCS-Directories: dev-ruby/connection_pool/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 834f09d20632a7591b24a6f7a9dcd63b0da37ea7 X-VCS-Branch: master Date: Mon, 28 Mar 2016 10:21:54 +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: 5b24a08e-48b0-4145-a69c-e9925f8da8f6 X-Archives-Hash: 9ad019954d9941a405b8c46577c142a8 commit: 834f09d20632a7591b24a6f7a9dcd63b0da37ea7 Author: Hans de Graaff gentoo org> AuthorDate: Mon Mar 28 09:32:30 2016 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Mon Mar 28 10:21:50 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=834f09d2 dev-ruby/connection_pool: fix tests Use a consistent minitest version for tests. Package-Manager: portage-2.2.26 dev-ruby/connection_pool/connection_pool-2.2.0.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-ruby/connection_pool/connection_pool-2.2.0.ebuild b/dev-ruby/connection_pool/connection_pool-2.2.0.ebuild index e620b07..602a99b 100644 --- a/dev-ruby/connection_pool/connection_pool-2.2.0.ebuild +++ b/dev-ruby/connection_pool/connection_pool-2.2.0.ebuild @@ -24,4 +24,5 @@ ruby_add_bdepend "test? ( >=dev-ruby/minitest-5 )" all_ruby_prepare() { sed -i -e '/git ls-files/d' connection_pool.gemspec || die sed -i -e '/bundler/d' Rakefile || die + sed -i -e "s/gem 'minitest'/gem 'minitest', '~> 5.0'/" test/helper.rb || die }