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 EB07A138262 for ; Tue, 24 May 2016 06:45:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4BCD3142D4; Tue, 24 May 2016 06:45:34 +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 E60F9142D4 for ; Tue, 24 May 2016 06:45:33 +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 B77FC3409E6 for ; Tue, 24 May 2016 06:45:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F306971 for ; Tue, 24 May 2016 06:45:31 +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: <1464072321.e5114f9bc7a2c9fe199013569502e81e4818f33c.graaff@gentoo> Subject: [gentoo-commits] dev/graaff:master commit in: dev-ruby/tiny_tds/ X-VCS-Repository: dev/graaff X-VCS-Files: dev-ruby/tiny_tds/tiny_tds-1.0.2.ebuild X-VCS-Directories: dev-ruby/tiny_tds/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: e5114f9bc7a2c9fe199013569502e81e4818f33c X-VCS-Branch: master Date: Tue, 24 May 2016 06:45:31 +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: 7aae9637-1657-456c-a5e1-d0531d77f0f9 X-Archives-Hash: be9ccb64b7fa09318dc462da3d943e75 commit: e5114f9bc7a2c9fe199013569502e81e4818f33c Author: Hans de Graaff degraaff org> AuthorDate: Tue May 24 06:45:21 2016 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Tue May 24 06:45:21 2016 +0000 URL: https://gitweb.gentoo.org/dev/graaff.git/commit/?id=e5114f9b dev-ruby/tiny_tds: fix dependency and build verbose Depend on a new enough version of freetds as per one of the bugs on the tiny_tds issue list. Make the build verbose. Package-Manager: portage-2.2.28 dev-ruby/tiny_tds/tiny_tds-1.0.2.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-ruby/tiny_tds/tiny_tds-1.0.2.ebuild b/dev-ruby/tiny_tds/tiny_tds-1.0.2.ebuild index 678d8af..b9e5255 100644 --- a/dev-ruby/tiny_tds/tiny_tds-1.0.2.ebuild +++ b/dev-ruby/tiny_tds/tiny_tds-1.0.2.ebuild @@ -25,8 +25,8 @@ SLOT="1" KEYWORDS="~amd64" IUSE="" -RDEPEND+="dev-db/freetds" -DEPEND+="dev-db/freetds" +RDEPEND+=">=dev-db/freetds-0.95" +DEPEND+=">=dev-db/freetds-0.95" ruby_add_bdepend "dev-ruby/mini_portile2" @@ -39,6 +39,6 @@ each_ruby_configure() { } each_ruby_compile() { - emake -Cext/tiny_tds + emake V=1 -Cext/tiny_tds cp ext/tiny_tds/tiny_tds.so lib/tiny_tds/ || die }