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: dev-ruby/pusher-client/
Date: Fri, 26 Nov 2021 08:17:08
Message-Id: 1637914615.c29dc60aa694cf2838b724d2097546e8f29ecb1d.graaff@gentoo
1 commit: c29dc60aa694cf2838b724d2097546e8f29ecb1d
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 26 07:23:25 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 26 08:16:55 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c29dc60a
7
8 dev-ruby/pusher-client: add ruby30
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 .../pusher-client/pusher-client-0.6.2-r1.ebuild | 25 ++++++++++++++++++++++
14 1 file changed, 25 insertions(+)
15
16 diff --git a/dev-ruby/pusher-client/pusher-client-0.6.2-r1.ebuild b/dev-ruby/pusher-client/pusher-client-0.6.2-r1.ebuild
17 new file mode 100644
18 index 000000000000..622335344978
19 --- /dev/null
20 +++ b/dev-ruby/pusher-client/pusher-client-0.6.2-r1.ebuild
21 @@ -0,0 +1,25 @@
22 +# Copyright 1999-2021 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=8
26 +USE_RUBY="ruby26 ruby27 ruby30"
27 +RUBY_FAKEGEM_RECIPE_TEST="rspec3"
28 +
29 +inherit ruby-fakegem
30 +
31 +DESCRIPTION="Client for consuming WebSockets from http://pusher.com"
32 +HOMEPAGE="https://github.com/pusher-community/pusher-websocket-ruby"
33 +
34 +LICENSE="MIT"
35 +SLOT="0"
36 +KEYWORDS="~amd64"
37 +IUSE=""
38 +
39 +ruby_add_rdepend "
40 + >=dev-ruby/websocket-1:0
41 + dev-ruby/json:*
42 +"
43 +
44 +all_ruby_prepare() {
45 + sed -i -e '/bundler/ s:^:#:' Rakefile || die
46 +}