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 2B5741382C5 for ; Fri, 16 Feb 2018 10:31:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7CD7CE0A0B; Fri, 16 Feb 2018 10:31:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 5A8BAE0A0B for ; Fri, 16 Feb 2018 10:31:38 +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 96DED335C2E for ; Fri, 16 Feb 2018 10:31:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 253391E1 for ; Fri, 16 Feb 2018 10:31:36 +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: <1518777088.f66f29d73b311a8356ccb1cec979bec1f1c911d4.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/bcrypt_pbkdf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/bcrypt_pbkdf/bcrypt_pbkdf-1.0.0.ebuild X-VCS-Directories: dev-ruby/bcrypt_pbkdf/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: f66f29d73b311a8356ccb1cec979bec1f1c911d4 X-VCS-Branch: master Date: Fri, 16 Feb 2018 10:31:36 +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: ffd278e6-6f5c-4241-85fc-afa9d7625bb0 X-Archives-Hash: 01602597af68415b2d32ae2ec9b0b5ff commit: f66f29d73b311a8356ccb1cec979bec1f1c911d4 Author: Hans de Graaff gentoo org> AuthorDate: Fri Feb 16 10:30:42 2018 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Fri Feb 16 10:31:28 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f66f29d7 dev-ruby/bcrypt_pbkdf: fix build without rake-compiler Fix the build and tests without rake-compiler being installed. Closes: https://bugs.gentoo.org/647332 Package-Manager: Portage-2.3.19, Repoman-2.3.6 dev-ruby/bcrypt_pbkdf/bcrypt_pbkdf-1.0.0.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-ruby/bcrypt_pbkdf/bcrypt_pbkdf-1.0.0.ebuild b/dev-ruby/bcrypt_pbkdf/bcrypt_pbkdf-1.0.0.ebuild index 5d9024bf53c..b3e55e0505d 100644 --- a/dev-ruby/bcrypt_pbkdf/bcrypt_pbkdf-1.0.0.ebuild +++ b/dev-ruby/bcrypt_pbkdf/bcrypt_pbkdf-1.0.0.ebuild @@ -23,6 +23,9 @@ ruby_add_bdepend "test? ( dev-ruby/rbnacl )" all_ruby_prepare() { # Don't use a ruby-bundled version of libsodium sed -i -e '/rbnacl\/libsodium/ s:^:#:' test/bcrypt_pnkdf/engine_test.rb || die + + # Avoid unneeded rake-compiler dependency + sed -i -e '/extensiontask/ s:^:#:' -e '/ExtensionTask/,/^end/ s:^:#:' Rakefile || die } each_ruby_configure() {