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 093091381DF for ; Tue, 16 Feb 2016 19:36:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EAA7121C03E; Tue, 16 Feb 2016 19:36:42 +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 5BD6B21C03E for ; Tue, 16 Feb 2016 19:36:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7DB05340C16 for ; Tue, 16 Feb 2016 19:36:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 342E214CD for ; Tue, 16 Feb 2016 19:36:39 +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: <1455651389.b9b667f764a62cfcab25cc972ebe05dbf9473c2c.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/rb-gsl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/rb-gsl/rb-gsl-1.16.0.6.ebuild X-VCS-Directories: dev-ruby/rb-gsl/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: b9b667f764a62cfcab25cc972ebe05dbf9473c2c X-VCS-Branch: master Date: Tue, 16 Feb 2016 19:36:39 +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: 1147b0dc-abb4-4ab3-b0fa-c7197ce6dc99 X-Archives-Hash: 9df38b07c54e097a1e1392895a4f808b commit: b9b667f764a62cfcab25cc972ebe05dbf9473c2c Author: Hans de Graaff gentoo org> AuthorDate: Tue Feb 16 19:18:20 2016 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Tue Feb 16 19:36:29 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9b667f7 dev-ruby/rb-gsl: fix broken narray patch Rework narray sed script to work with the current version of the extconf.rb script. Package-Manager: portage-2.2.26 dev-ruby/rb-gsl/rb-gsl-1.16.0.6.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-ruby/rb-gsl/rb-gsl-1.16.0.6.ebuild b/dev-ruby/rb-gsl/rb-gsl-1.16.0.6.ebuild index 1ea1568..42f79f9 100644 --- a/dev-ruby/rb-gsl/rb-gsl-1.16.0.6.ebuild +++ b/dev-ruby/rb-gsl/rb-gsl-1.16.0.6.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=5 -USE_RUBY="ruby19 ruby20 ruby21 ruby22" +USE_RUBY="ruby20 ruby21 ruby22 ruby23" RUBY_FAKEGEM_NAME="gsl" inherit ruby-fakegem multilib @@ -28,8 +28,8 @@ RUBY_S="${PN}-${P}" ruby_add_bdepend "dev-ruby/narray" ruby_add_rdepend "dev-ruby/narray" -each_ruby_prepare() { - sed -i -e '/$CPPFLAGS =/a \$LDFLAGS = " -L#{narray_config} -l:narray.so "+$LDFLAGS' -e 's/src/lib/' ext/gsl_native/extconf.rb || die +all_ruby_prepare() { + sed -i -e '/LOCAL_LIBS/ s: -l: -L#{path.gsub("src", "lib")} -l:' ext/gsl_native/extconf.rb || die } each_ruby_configure() {