From b4d43e8c611df4a8061b6f88d9e9f6b1e3c83903 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Thu, 24 Jun 2021 14:47:38 +0100 Subject: gentoo resync : 24.06.2021 --- dev-ruby/eventmachine/Manifest | 2 +- dev-ruby/eventmachine/eventmachine-1.2.7-r1.ebuild | 92 ++++++++++++++++++++++ dev-ruby/eventmachine/eventmachine-1.2.7.ebuild | 92 ---------------------- 3 files changed, 93 insertions(+), 93 deletions(-) create mode 100644 dev-ruby/eventmachine/eventmachine-1.2.7-r1.ebuild delete mode 100644 dev-ruby/eventmachine/eventmachine-1.2.7.ebuild (limited to 'dev-ruby/eventmachine') diff --git a/dev-ruby/eventmachine/Manifest b/dev-ruby/eventmachine/Manifest index ec8f3940a3d8..93d987c7a5df 100644 --- a/dev-ruby/eventmachine/Manifest +++ b/dev-ruby/eventmachine/Manifest @@ -1,3 +1,3 @@ DIST eventmachine-1.2.7.tar.gz 246402 BLAKE2B 3eee1e5fbb367c03e3d801cb705a0f95b7bbb461885f04820f57421019a3d61eecabe71309981eec35168395eb6d98a8c675bd0fb225497de511f2ce09a5df92 SHA512 768ec084903dce4c737cf564fce7886a3e7e5b7d4a89c2baea3e998130c53dc00488eaa2d8e9b0133d9e4d8fffbde80c3025403881486a7968c2d84425cc1f50 -EBUILD eventmachine-1.2.7.ebuild 2754 BLAKE2B a8ef570a87eabdbad6e6e37fe8c3e0cfb02d62160ea63a34a58f4946541d21ed3f8e2f17d7edb82606fbaa061c94ee1b84001ac32d7202badb266bdf179fff0c SHA512 677e9af923a52d249430b99e3076c410864a6d9ccf13fab329ca6c5a046d9218f92dac9b8725dc34c84145d8b697e8521c8bef77e6cfb407dbec1acd467ddb7e +EBUILD eventmachine-1.2.7-r1.ebuild 2755 BLAKE2B 6006a88f33b374d9f3f42058936aff9fa35e9f361d657be07bea276cf56bd21100b38f0c0b58400e648fb401c0f3730099f9a7d5281a51b657539098ea297f0a SHA512 c0bdba172d5027f228235649cab1ccf59f4562f88bf846697e1ece2dfa7688607ab62a40265b307946cfcf5625147d6d5daf950b0f73cb8746bfa2165d291116 MISC metadata.xml 523 BLAKE2B c8c4dc99c1560b2dc7233a194f0892bf86397594daf3896408d080632dda52cae3fef16654e2a35340bc0746befab669071ff9de7707fcbd92583472aa52f73d SHA512 622ac8cdd832ad49db828fefc3c9ab089e1d7e3795e369778591b4f572a647a99d4625fb9a3624189d0521a8daa9d2360bfe01fd905e8d106b83e244d900e509 diff --git a/dev-ruby/eventmachine/eventmachine-1.2.7-r1.ebuild b/dev-ruby/eventmachine/eventmachine-1.2.7-r1.ebuild new file mode 100644 index 000000000000..7128a0f86c49 --- /dev/null +++ b/dev-ruby/eventmachine/eventmachine-1.2.7-r1.ebuild @@ -0,0 +1,92 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +USE_RUBY="ruby23 ruby24 ruby25 ruby26" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_DOCDIR="rdoc" +RUBY_FAKEGEM_EXTRADOC="docs/*.md README.md" + +inherit ruby-fakegem + +DESCRIPTION="EventMachine is a fast, simple event-processing library for Ruby programs" +HOMEPAGE="https://github.com/eventmachine/eventmachine" +SRC_URI="https://github.com/eventmachine/eventmachine/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="|| ( GPL-2 Ruby )" +SLOT="0" +KEYWORDS="amd64 ~arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris" +IUSE="" + +DEPEND="${DEPEND} + dev-libs/openssl:0" +RDEPEND="${RDEPEND} + dev-libs/openssl:0=" + +ruby_add_bdepend "test? ( dev-ruby/test-unit:2 )" + +all_ruby_prepare() { + # Remove package tasks to avoid dependency on rake-compiler. + rm rakelib/package.rake || die + + # Remove the resolver tests since they require network access and + # the localhost test fails with an IPv6 localhost. + rm tests/test_resolver.rb || die + + # Needs a tty + rm tests/test_kb.rb || die + + # Avoid tests that require network access + sed -i -e '/test_bind_connect/,/^ end/ s:^:#:' \ + tests/test_basic.rb || die + sed -i -e '/test_\(cookie\|http_client\|version_1_0\)/,/^ end/ s:^:#:' \ + tests/test_httpclient.rb || die + sed -i -e '/test_\(get\|https_get\)/,/^ end/ s:^:#:' \ + tests/test_httpclient2.rb || die + sed -i -e '/test_connect_timeout/,/^ end/ s:^:#:' \ + tests/test_unbind_reason.rb || die + sed -i -e '/test_for_real/,/^ end/ s:^:#:' \ + tests/test_pending_connect_timeout.rb || die + rm -f tests/test_{get_sock_opt,set_sock_opt,idle_connection}.rb || die + + # Avoid tests for insecure SSL versions that may not be available + sed -i -e '/test_any_to_v3/,/^ end/ s:^:#:' \ + -e '/test_v3_/,/^ end/ s:^:#:' \ + -e '/test_tlsv1_required_with_external_client/aomit "sslv3"' \ + tests/test_ssl_protocols.rb || die + + # Avoid test that deliberately triggers a C++ exception which causes + # a SEGFAULT. This does not appear to happen upstream (on travis). + rm -f tests/test_exc.rb || die +} + +each_ruby_configure() { + for extdir in ext ext/fastfilereader; do + pushd $extdir + ${RUBY} extconf.rb || die "extconf.rb failed for ${extdir}" + popd + done +} + +each_ruby_compile() { + for extdir in ext ext/fastfilereader; do + pushd $extdir + # both extensions use C++, so use the CXXFLAGS not the CFLAGS + emake V=1 CFLAGS="${CXXFLAGS} -fPIC" archflag="${LDFLAGS}" + popd + cp $extdir/*.so lib/ || die "Unable to copy extensions for ${extdir}" + done +} + +each_ruby_test() { + ${RUBY} -Ilib -S testrb-2 tests/test_*.rb || die +} + +all_ruby_install() { + all_fakegem_install + + insinto /usr/share/doc/${PF}/ + doins -r examples +} diff --git a/dev-ruby/eventmachine/eventmachine-1.2.7.ebuild b/dev-ruby/eventmachine/eventmachine-1.2.7.ebuild deleted file mode 100644 index 4a7c7d6f2927..000000000000 --- a/dev-ruby/eventmachine/eventmachine-1.2.7.ebuild +++ /dev/null @@ -1,92 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -USE_RUBY="ruby23 ruby24 ruby25 ruby26" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" -RUBY_FAKEGEM_DOCDIR="rdoc" -RUBY_FAKEGEM_EXTRADOC="docs/*.md README.md" - -inherit ruby-fakegem - -DESCRIPTION="EventMachine is a fast, simple event-processing library for Ruby programs" -HOMEPAGE="https://github.com/eventmachine/eventmachine" -SRC_URI="https://github.com/eventmachine/eventmachine/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="|| ( GPL-2 Ruby )" -SLOT="0" -KEYWORDS="amd64 ~arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris" -IUSE="" - -DEPEND="${DEPEND} - dev-libs/openssl:0" -RDEPEND="${RDEPEND} - dev-libs/openssl:0" - -ruby_add_bdepend "test? ( dev-ruby/test-unit:2 )" - -all_ruby_prepare() { - # Remove package tasks to avoid dependency on rake-compiler. - rm rakelib/package.rake || die - - # Remove the resolver tests since they require network access and - # the localhost test fails with an IPv6 localhost. - rm tests/test_resolver.rb || die - - # Needs a tty - rm tests/test_kb.rb || die - - # Avoid tests that require network access - sed -i -e '/test_bind_connect/,/^ end/ s:^:#:' \ - tests/test_basic.rb || die - sed -i -e '/test_\(cookie\|http_client\|version_1_0\)/,/^ end/ s:^:#:' \ - tests/test_httpclient.rb || die - sed -i -e '/test_\(get\|https_get\)/,/^ end/ s:^:#:' \ - tests/test_httpclient2.rb || die - sed -i -e '/test_connect_timeout/,/^ end/ s:^:#:' \ - tests/test_unbind_reason.rb || die - sed -i -e '/test_for_real/,/^ end/ s:^:#:' \ - tests/test_pending_connect_timeout.rb || die - rm -f tests/test_{get_sock_opt,set_sock_opt,idle_connection}.rb || die - - # Avoid tests for insecure SSL versions that may not be available - sed -i -e '/test_any_to_v3/,/^ end/ s:^:#:' \ - -e '/test_v3_/,/^ end/ s:^:#:' \ - -e '/test_tlsv1_required_with_external_client/aomit "sslv3"' \ - tests/test_ssl_protocols.rb || die - - # Avoid test that deliberately triggers a C++ exception which causes - # a SEGFAULT. This does not appear to happen upstream (on travis). - rm -f tests/test_exc.rb || die -} - -each_ruby_configure() { - for extdir in ext ext/fastfilereader; do - pushd $extdir - ${RUBY} extconf.rb || die "extconf.rb failed for ${extdir}" - popd - done -} - -each_ruby_compile() { - for extdir in ext ext/fastfilereader; do - pushd $extdir - # both extensions use C++, so use the CXXFLAGS not the CFLAGS - emake V=1 CFLAGS="${CXXFLAGS} -fPIC" archflag="${LDFLAGS}" - popd - cp $extdir/*.so lib/ || die "Unable to copy extensions for ${extdir}" - done -} - -each_ruby_test() { - ${RUBY} -Ilib -S testrb-2 tests/test_*.rb || die -} - -all_ruby_install() { - all_fakegem_install - - insinto /usr/share/doc/${PF}/ - doins -r examples -} -- cgit v1.2.3