Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/puma/
Date: Fri, 30 Jul 2021 08:30:15
Message-Id: 1627633806.6fb45efb56474cfe1ebcd5e17c0113afbe495aa8.graaff@gentoo
1 commit: 6fb45efb56474cfe1ebcd5e17c0113afbe495aa8
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 30 06:50:54 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 30 08:30:06 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fb45efb
7
8 www-servers/puma: add 5.4.0
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.2
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 www-servers/puma/Manifest | 1 +
14 www-servers/puma/puma-5.4.0.ebuild | 59 ++++++++++++++++++++++++++++++++++++++
15 2 files changed, 60 insertions(+)
16
17 diff --git a/www-servers/puma/Manifest b/www-servers/puma/Manifest
18 index 5169bd91163..2b692219218 100644
19 --- a/www-servers/puma/Manifest
20 +++ b/www-servers/puma/Manifest
21 @@ -1 +1,2 @@
22 DIST puma-5.3.2.tar.gz 297673 BLAKE2B e3bfa38347526063587db966d20ea68f32cd88616d89b5f2d9152228d5d420b50c2918e24304c1bc8119af5790a2464f0a055ab92862a56262013ddbba006a1f SHA512 32e80b413184d371d451a35985a371a7655df0f7e81624f2a05e3cf65c2e1b035275a8e25ab03d13c9c1f921ec30cdeb3659e1201baae5940dcb3edcb525ff25
23 +DIST puma-5.4.0.tar.gz 298525 BLAKE2B d93231582cd83519c258093fd9ac5e2b06398133e82e2d350103e7438a4ed1fd9b36f627739dbbad86e839211850c5387be57d5d114835e7e4d99940e842b128 SHA512 032a507d852c555393f401d4e72c358cf8c49d1c93ff7a559969f3d1f84c0b49180cbcee975bb6fea621d034a00874268ff05ae76f91775cc24089de0b4560da
24
25 diff --git a/www-servers/puma/puma-5.4.0.ebuild b/www-servers/puma/puma-5.4.0.ebuild
26 new file mode 100644
27 index 00000000000..6c3ebe85ea2
28 --- /dev/null
29 +++ b/www-servers/puma/puma-5.4.0.ebuild
30 @@ -0,0 +1,59 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +USE_RUBY="ruby26 ruby27 ruby30"
37 +
38 +RUBY_FAKEGEM_GEMSPEC="puma.gemspec"
39 +
40 +RUBY_FAKEGEM_EXTENSIONS=(ext/puma_http11/extconf.rb)
41 +RUBY_FAKEGEM_EXTENSION_LIBDIR=lib/puma
42 +
43 +inherit multilib ruby-fakegem
44 +
45 +DESCRIPTION="a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rack"
46 +HOMEPAGE="https://puma.io/"
47 +SRC_URI="https://github.com/puma/puma/archive/v${PV}.tar.gz -> ${P}.tar.gz"
48 +
49 +LICENSE="BSD"
50 +SLOT="3"
51 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
52 +IUSE=""
53 +
54 +DEPEND+=" dev-libs/openssl:0 test? ( net-misc/curl )"
55 +RDEPEND+=" dev-libs/openssl:0="
56 +
57 +ruby_add_bdepend "virtual/ruby-ssl
58 + test? ( dev-ruby/rack >=dev-ruby/minitest-5.9:5 >=dev-ruby/test-unit-3.0:2 )"
59 +
60 +ruby_add_rdepend "dev-ruby/nio4r:2"
61 +
62 +all_ruby_prepare() {
63 + sed -e '/bundler/ s:^:#:' \
64 + -e '/prove/ s:^:#:' \
65 + -e '/stub_const/ s:^:#:' \
66 + -i test/helper.rb || die
67 +
68 + # Avoid tests failing inconsistently
69 + sed -i -e '/test_bad_client/askip "inconsistent results"' test/test_web_server.rb || die
70 +
71 + # Avoid launcher tests since they make assumptions about bundler use
72 + rm -f test/test_launcher.rb test/test_worker_gem_independence.rb || die
73 +
74 + # Skip integration tests since they make a lot of assumptions about
75 + # the environment
76 + rm -f test/test_integration_* test/test_preserve_bundler_env.rb|| die
77 +
78 + # Avoid test that uses unpackaged stub_const
79 + sed -i -e '/test_shutdown_with_grace/,/^ end/ s:^:#:' test/test_thread_pool.rb || die
80 +
81 + sed -e 's/git ls-files --/find/' \
82 + -e 's:_relative ": "./:' \
83 + -i ${RUBY_FAKEGEM_GEMSPEC} || die
84 +}
85 +
86 +each_ruby_test() {
87 + einfo "Running test suite"
88 + ${RUBY} -Ilib:.:test -e "gem 'minitest', '~>5.9'; gem 'test-unit', '~>3.0'; require 'minitest/autorun'; Dir['test/**/*test_*.rb'].each{|f| require f}" || die
89 +}