summaryrefslogtreecommitdiff
path: root/dev-ruby/nio4r
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-12-03 08:59:05 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-12-03 08:59:05 +0000
commite6ba529df30e3fc9dfdf55ec5797f2f764df6e54 (patch)
tree6b38c918c796f792ef4b18b57437c05a1fd46ae8 /dev-ruby/nio4r
parentfbe7acf59ebf6dc3f04a6ef108ff3887fa5d7972 (diff)
gentoo auto-resync : 03:12:2022 - 08:59:05
Diffstat (limited to 'dev-ruby/nio4r')
-rw-r--r--dev-ruby/nio4r/Manifest2
-rw-r--r--dev-ruby/nio4r/nio4r-2.5.4.ebuild40
2 files changed, 0 insertions, 42 deletions
diff --git a/dev-ruby/nio4r/Manifest b/dev-ruby/nio4r/Manifest
index 73c7871af7d7..3a22199861b4 100644
--- a/dev-ruby/nio4r/Manifest
+++ b/dev-ruby/nio4r/Manifest
@@ -1,5 +1,3 @@
-DIST nio4r-2.5.4.gem 110080 BLAKE2B 9aaed6cd4d74cf6ff3fed114d7c0c9162afb646aa6eadf294e0a6710dfca1e6b4ccf1eb8850c8704f3792eb6695034612813db08fbf74814556455db6ab48b4a SHA512 f7e383516ac6b55fd49339280e624a4c35f9cd2d31915b3d117189506522d967fc53a43cde75e8601f3fe0530e1322aeaa8c94a09289ddbefb2afd8d067341ec
DIST nio4r-2.5.8.gem 121856 BLAKE2B be79548761f52abab632b8e4660ab8557946079a51fe7f30c346f4f656ed2f8d0c8f2f463ed76a89bd4278bdfc0a0646ff2b8e0a815f97750836cb0bb250b9ef SHA512 3942403147882380b86f42c54a6d4e92c4e85dd3c0b5b9f473a05fcf98c041853e21d11d0481d1973342b5a4bfb59e02cfd523a44e9e45c3740627a45f7f99c7
-EBUILD nio4r-2.5.4.ebuild 1100 BLAKE2B 387435fbc31a02febcff2c3cfb595990694d3f05054f53901ea804e20b864a97d14da8db710c64ca4edbf7d6b52a621d5cbe59021eb7feab44d1a0a4c1aac152 SHA512 bd136bbdc154fd8325523b30236c9821087dd403a2471d1e3a60822fa1a3a71346019a9505cef341cfaaf3eaf7b9d1a386611869ac0494a5b60da35af70285ce
EBUILD nio4r-2.5.8.ebuild 955 BLAKE2B 27e621e2bd4dbdecd610e64dbc53972e8c3600531c68b747162228645a5ac1b25c940497cc7b5bdb78f7785344253cbcd9b54a90baca7c489bdc3c06426a467f SHA512 0ed868559a43c0b1cc9fd55bd7533d88d7826567531be7a39941fee44a8c73feddd4adbc703a87e7934cfb5a1ea0c9c16a3ce4411b143d6b19452f4843c8329b
MISC metadata.xml 342 BLAKE2B ae787a52492b0068d3a508ecf62654997018bf8750a379ff2d76aa84ed6ae3692036c04a6ba50b21745c28254c6d7e51768a61a11e8474ab7b69044bc07a7deb SHA512 2ccc5901966b882d0792cf270dab138348e7184a0da06835a6e8b496f071febabd4887c5490c171384d348754c7e628a333bddd9b912382b3bcf44bec0c78fcd
diff --git a/dev-ruby/nio4r/nio4r-2.5.4.ebuild b/dev-ruby/nio4r/nio4r-2.5.4.ebuild
deleted file mode 100644
index ad118963436a..000000000000
--- a/dev-ruby/nio4r/nio4r-2.5.4.ebuild
+++ /dev/null
@@ -1,40 +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_RECIPE_DOC=""
-RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A high performance selector API for monitoring IO objects"
-HOMEPAGE="https://github.com/socketry/nio4r"
-
-LICENSE="MIT || ( BSD GPL-2 )"
-SLOT="2"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc x86 ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE=""
-
-# Note that nio4r bundles a patched copy of libev, and without these
-# patches the tests fail: https://github.com/celluloid/nio4r/issues/15
-
-ruby_add_bdepend "test? ( dev-ruby/rspec-retry )"
-
-all_ruby_prepare() {
- sed -i -e '/[Cc]overalls/d' -e '/[Bb]undler/d' -e '1irequire "openssl"' spec/spec_helper.rb || die
- sed -e '/extension/ s:^:#:' -i Rakefile || die
-}
-
-each_ruby_configure() {
- ${RUBY} -Cext/${PN} extconf.rb || die
-}
-
-each_ruby_compile() {
- emake V=1 -Cext/${PN}
- cp ext/${PN}/*$(get_modname) lib/ || die
-}