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 BD6A013829C for ; Mon, 30 May 2016 18:15:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 21D1321C012; Mon, 30 May 2016 18:15:31 +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 90F2521C012 for ; Mon, 30 May 2016 18:15:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 0B4CF33FE7D for ; Mon, 30 May 2016 18:15:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA30616C4 for ; Mon, 30 May 2016 18:15:24 +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: <1464631895.e7cd24f354a4b86225c02ca707ce7811c86b7ffe.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/msgpack/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/msgpack/msgpack-0.7.4.ebuild X-VCS-Directories: dev-ruby/msgpack/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: e7cd24f354a4b86225c02ca707ce7811c86b7ffe X-VCS-Branch: master Date: Mon, 30 May 2016 18:15:24 +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: a2bbf51f-c7e5-4b81-8529-032f2706ad6c X-Archives-Hash: 25abdaffd77b11b15e153310052b3c5c commit: e7cd24f354a4b86225c02ca707ce7811c86b7ffe Author: Hans de Graaff gentoo org> AuthorDate: Mon May 30 18:10:29 2016 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Mon May 30 18:11:35 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7cd24f3 dev-ruby/msgpack: backport fix for bug 582968 to x86-keyworded version Package-Manager: portage-2.2.28 dev-ruby/msgpack/msgpack-0.7.4.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-ruby/msgpack/msgpack-0.7.4.ebuild b/dev-ruby/msgpack/msgpack-0.7.4.ebuild index d6f6e81..bb9d9cc 100644 --- a/dev-ruby/msgpack/msgpack-0.7.4.ebuild +++ b/dev-ruby/msgpack/msgpack-0.7.4.ebuild @@ -33,6 +33,10 @@ all_ruby_prepare() { each_ruby_configure() { ${RUBY} -Cext/${PN} extconf.rb || die "Configuration of extension failed." + + # rb_num2int is not inlined on 32 bit arches but also not explicitly + # defined, bug 582968 + sed -i -e 's:-Wl,--no-undefined::' ext/${PN}/Makefile || die } each_ruby_compile() {