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 D6156158087 for ; Sat, 5 Feb 2022 06:57:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B222D2BC016; Sat, 5 Feb 2022 06:57:07 +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 736462BC009 for ; Sat, 5 Feb 2022 06:57:07 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 57635342E73 for ; Sat, 5 Feb 2022 06:57:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DBF082BF for ; Sat, 5 Feb 2022 06:57:04 +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: <1644044221.73225d4f9a4b1729c0c88e8996416c8d88746396.graaff@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.ebuild X-VCS-Directories: dev-ruby/coolio/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 73225d4f9a4b1729c0c88e8996416c8d88746396 X-VCS-Branch: master Date: Sat, 5 Feb 2022 06:57:04 +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: 972893a5-a278-4f84-9581-491ddf3ec7fc X-Archives-Hash: af6b3fddf57659859ecc1bd7503a9245 commit: 73225d4f9a4b1729c0c88e8996416c8d88746396 Author: Hans de Graaff gentoo org> AuthorDate: Sat Feb 5 06:49:25 2022 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Feb 5 06:57:01 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73225d4f dev-ruby/coolio: cleanup Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/coolio/coolio-1.7.1.ebuild | 46 ------------------------------------- 1 file changed, 46 deletions(-) diff --git a/dev-ruby/coolio/coolio-1.7.1.ebuild b/dev-ruby/coolio/coolio-1.7.1.ebuild deleted file mode 100644 index 18be3f40240f..000000000000 --- a/dev-ruby/coolio/coolio-1.7.1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -USE_RUBY="ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" -RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md" -RUBY_FAKEGEM_NAME="cool.io" - -RUBY_FAKEGEM_GEMSPEC="cool.io.gemspec" - -RUBY_FAKEGEM_EXTENSIONS=(ext/cool.io/extconf.rb) - -inherit multilib ruby-fakegem - -DESCRIPTION="A high performance event framework for Ruby which uses the libev C library" -HOMEPAGE="https://coolio.github.io/" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -# cool.io includes a bundled version of libev that is patched to work correctly with ruby. - -ruby_add_rdepend ">=dev-ruby/iobuffer-1" - -all_ruby_prepare() { - rm -r Gemfile* lib/.gitignore || die - - sed -i -e '/[Bb]undler/d' Rakefile || die - sed -i -e '28i s.add_dependency "iobuffer"' ${RUBY_FAKEGEM_GEMSPEC} || die - sed -i -e '/git ls-files/d' ${RUBY_FAKEGEM_GEMSPEC} || die - - # Avoid dependency on rake-compiler - sed -i -e '/extensiontask/ s:^:#:' \ - -e '/ExtensionTask/,/^end/ s:^:#:' Rakefile || die - - # Remove specs that require network connectivity - rm -f spec/dns_spec.rb || die - - # Use one address consistently - sed -i -e 's/localhost/127.0.0.1/' spec/{udp_socket,tcp_server,iobuffer}_spec.rb || die -}