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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8ABBD158041 for ; Thu, 29 Feb 2024 00:50:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 60935E2A28; Thu, 29 Feb 2024 00:50:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 431C7E2A2F for ; Thu, 29 Feb 2024 00:50:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 38B2B34306D for ; Thu, 29 Feb 2024 00:50:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D86D14E6 for ; Thu, 29 Feb 2024 00:50:48 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1709167751.622845d1dd47fce41f4b3b5794346eb4815f43b3.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/coolio/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/coolio/coolio-1.7.1-r1.ebuild dev-ruby/coolio/coolio-1.7.1-r2.ebuild dev-ruby/coolio/coolio-1.8.0.ebuild X-VCS-Directories: dev-ruby/coolio/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 622845d1dd47fce41f4b3b5794346eb4815f43b3 X-VCS-Branch: master Date: Thu, 29 Feb 2024 00:50:48 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 202e7f28-a5b1-4fb9-834f-59adad13c2b6 X-Archives-Hash: dbf481fcd595786b5657c882ea663db3 commit: 622845d1dd47fce41f4b3b5794346eb4815f43b3 Author: Sam James gentoo org> AuthorDate: Thu Feb 29 00:49:11 2024 +0000 Commit: Sam James gentoo org> CommitDate: Thu Feb 29 00:49:11 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=622845d1 dev-ruby/coolio: filter LTO, no-SA Broken quite badly via bundled liebv, no upstream bug tracker for libev AFAICT. And broken in many bundled copies all over the place (which are modified...) Closes: https://bugs.gentoo.org/857603 Signed-off-by: Sam James gentoo.org> dev-ruby/coolio/coolio-1.7.1-r1.ebuild | 8 ++++++-- dev-ruby/coolio/coolio-1.7.1-r2.ebuild | 8 ++++++-- dev-ruby/coolio/coolio-1.8.0.ebuild | 8 ++++++-- 3 files changed, 18 insertions(+), 6 deletions(-) diff --git a/dev-ruby/coolio/coolio-1.7.1-r1.ebuild b/dev-ruby/coolio/coolio-1.7.1-r1.ebuild index ce243d72a5a8..030b833390e9 100644 --- a/dev-ruby/coolio/coolio-1.7.1-r1.ebuild +++ b/dev-ruby/coolio/coolio-1.7.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -13,7 +13,7 @@ RUBY_FAKEGEM_GEMSPEC="cool.io.gemspec" RUBY_FAKEGEM_EXTENSIONS=(ext/cool.io/extconf.rb ext/iobuffer/extconf.rb) -inherit ruby-fakegem +inherit flag-o-matic ruby-fakegem DESCRIPTION="A high performance event framework for Ruby which uses the libev C library" HOMEPAGE="https://coolio.github.io/" @@ -26,6 +26,10 @@ IUSE="" # cool.io includes a bundled version of libev that is patched to work correctly with ruby. all_ruby_prepare() { + # See bug #855869 and its large number of dupes in bundled libev copies. + filter-lto + append-flags -fno-strict-aliasing + rm -r Gemfile* lib/.gitignore || die sed -i -e '/[Bb]undler/d' Rakefile || die diff --git a/dev-ruby/coolio/coolio-1.7.1-r2.ebuild b/dev-ruby/coolio/coolio-1.7.1-r2.ebuild index 538c9aad48f1..1dda791d8c93 100644 --- a/dev-ruby/coolio/coolio-1.7.1-r2.ebuild +++ b/dev-ruby/coolio/coolio-1.7.1-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -13,7 +13,7 @@ RUBY_FAKEGEM_GEMSPEC="cool.io.gemspec" RUBY_FAKEGEM_EXTENSIONS=(ext/cool.io/extconf.rb ext/iobuffer/extconf.rb) -inherit ruby-fakegem +inherit flag-o-matic ruby-fakegem DESCRIPTION="A high performance event framework for Ruby which uses the libev C library" HOMEPAGE="https://coolio.github.io/" @@ -30,6 +30,10 @@ PATCHES=( # cool.io includes a bundled version of libev that is patched to work correctly with ruby. all_ruby_prepare() { + # See bug #855869 and its large number of dupes in bundled libev copies. + filter-lto + append-flags -fno-strict-aliasing + rm -r Gemfile* lib/.gitignore || die sed -i -e '/[Bb]undler/d' Rakefile || die diff --git a/dev-ruby/coolio/coolio-1.8.0.ebuild b/dev-ruby/coolio/coolio-1.8.0.ebuild index 89809568f100..d521e9ab6350 100644 --- a/dev-ruby/coolio/coolio-1.8.0.ebuild +++ b/dev-ruby/coolio/coolio-1.8.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -13,7 +13,7 @@ RUBY_FAKEGEM_GEMSPEC="cool.io.gemspec" RUBY_FAKEGEM_EXTENSIONS=(ext/cool.io/extconf.rb ext/iobuffer/extconf.rb) -inherit ruby-fakegem +inherit flag-o-matic ruby-fakegem DESCRIPTION="A high performance event framework for Ruby which uses the libev C library" HOMEPAGE="https://coolio.github.io/" @@ -26,6 +26,10 @@ IUSE="" # cool.io includes a bundled version of libev that is patched to work correctly with ruby. all_ruby_prepare() { + # See bug #855869 and its large number of dupes in bundled libev copies. + filter-lto + append-flags -fno-strict-aliasing + rm -r Gemfile* lib/.gitignore || die sed -i -e '/[Bb]undler/d' Rakefile || die