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 B99D3158043 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 66D22E2A2F; 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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3E491E2A28 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 4202D34306E 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 920E014E7 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: <1709167807.7c5bf9a42324f8c9958f7f251d0396868b3e9481.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/nio4r/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/nio4r/nio4r-2.5.9.ebuild dev-ruby/nio4r/nio4r-2.6.1.ebuild dev-ruby/nio4r/nio4r-2.7.0.ebuild X-VCS-Directories: dev-ruby/nio4r/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7c5bf9a42324f8c9958f7f251d0396868b3e9481 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: 8b20db58-94aa-407b-a1fa-17ce7779ea22 X-Archives-Hash: 9e12fe699ccd6902ae94711ae0af9ad9 commit: 7c5bf9a42324f8c9958f7f251d0396868b3e9481 Author: Sam James gentoo org> AuthorDate: Thu Feb 29 00:50:05 2024 +0000 Commit: Sam James gentoo org> CommitDate: Thu Feb 29 00:50:07 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c5bf9a4 dev-ruby/nio4r: 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/857741 Signed-off-by: Sam James gentoo.org> dev-ruby/nio4r/nio4r-2.5.9.ebuild | 8 ++++++-- dev-ruby/nio4r/nio4r-2.6.1.ebuild | 8 ++++++-- dev-ruby/nio4r/nio4r-2.7.0.ebuild | 8 ++++++-- 3 files changed, 18 insertions(+), 6 deletions(-) diff --git a/dev-ruby/nio4r/nio4r-2.5.9.ebuild b/dev-ruby/nio4r/nio4r-2.5.9.ebuild index c9d939af7596..a6b35ed1088d 100644 --- a/dev-ruby/nio4r/nio4r-2.5.9.ebuild +++ b/dev-ruby/nio4r/nio4r-2.5.9.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 @@ -12,7 +12,7 @@ RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md" RUBY_FAKEGEM_EXTENSIONS=(ext/nio4r/extconf.rb) -inherit ruby-fakegem +inherit flag-o-matic ruby-fakegem DESCRIPTION="A high performance selector API for monitoring IO objects" HOMEPAGE="https://github.com/socketry/nio4r" @@ -26,6 +26,10 @@ IUSE="" # patches the tests fail: https://github.com/celluloid/nio4r/issues/15 all_ruby_prepare() { + # See bug #855869 and its large number of dupes in bundled libev copies. + filter-lto + append-flags -fno-strict-aliasing + sed -i -e '/[Bb]undler/d' spec/spec_helper.rb || die sed -e '/extension/ s:^:#:' -i Rakefile || die } diff --git a/dev-ruby/nio4r/nio4r-2.6.1.ebuild b/dev-ruby/nio4r/nio4r-2.6.1.ebuild index 381b1a8e8790..6fe4a3605cb9 100644 --- a/dev-ruby/nio4r/nio4r-2.6.1.ebuild +++ b/dev-ruby/nio4r/nio4r-2.6.1.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 @@ -12,7 +12,7 @@ RUBY_FAKEGEM_EXTRADOC="changes.md readme.md" RUBY_FAKEGEM_EXTENSIONS=(ext/nio4r/extconf.rb) -inherit ruby-fakegem +inherit flag-o-matic ruby-fakegem DESCRIPTION="A high performance selector API for monitoring IO objects" HOMEPAGE="https://github.com/socketry/nio4r" @@ -26,6 +26,10 @@ IUSE="" # patches the tests fail: https://github.com/celluloid/nio4r/issues/15 all_ruby_prepare() { + # See bug #855869 and its large number of dupes in bundled libev copies. + filter-lto + append-flags -fno-strict-aliasing + sed -i -e '/[Bb]undler/d' spec/spec_helper.rb || die sed -e '/extension/ s:^:#:' -i Rakefile || die } diff --git a/dev-ruby/nio4r/nio4r-2.7.0.ebuild b/dev-ruby/nio4r/nio4r-2.7.0.ebuild index 6bde0afc66c8..8196c914fa21 100644 --- a/dev-ruby/nio4r/nio4r-2.7.0.ebuild +++ b/dev-ruby/nio4r/nio4r-2.7.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 @@ -12,7 +12,7 @@ RUBY_FAKEGEM_EXTRADOC="changes.md readme.md" RUBY_FAKEGEM_EXTENSIONS=(ext/nio4r/extconf.rb) -inherit ruby-fakegem +inherit flag-o-matic ruby-fakegem DESCRIPTION="A high performance selector API for monitoring IO objects" HOMEPAGE="https://github.com/socketry/nio4r" @@ -26,6 +26,10 @@ IUSE="" # patches the tests fail: https://github.com/celluloid/nio4r/issues/15 all_ruby_prepare() { + # See bug #855869 and its large number of dupes in bundled libev copies. + filter-lto + append-flags -fno-strict-aliasing + sed -i -e '/[Bb]undler/d' spec/spec_helper.rb || die sed -e '/extension/ s:^:#:' -i Rakefile || die }