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/stomp/
Date: Fri, 11 Sep 2020 04:32:59
Message-Id: 1599798734.a009bf948b6372d5d17bdcf41d29ca07951b017e.graaff@gentoo
1 commit: a009bf948b6372d5d17bdcf41d29ca07951b017e
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 11 04:32:14 2020 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 11 04:32:14 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a009bf94
7
8 dev-ruby/stomp: add 1.4.10
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/stomp/Manifest | 1 +
14 dev-ruby/stomp/stomp-1.4.10.ebuild | 27 +++++++++++++++++++++++++++
15 2 files changed, 28 insertions(+)
16
17 diff --git a/dev-ruby/stomp/Manifest b/dev-ruby/stomp/Manifest
18 index f4c87745f65..055b7586488 100644
19 --- a/dev-ruby/stomp/Manifest
20 +++ b/dev-ruby/stomp/Manifest
21 @@ -1 +1,2 @@
22 +DIST stomp-1.4.10.gem 99840 BLAKE2B 5dc2b18d7551629dccb599a77934bffcf92d83158b6797a1645f5fd8af6c4738e1d8d97d5a6c6bb6655c19f98accd4ecdee0677096f9a5e89bdf0295532a1087 SHA512 bff1a533e5455cf4540bab3b5d16c63f1e0783b0257b5e0bf2fd26512586670ce5db66f97e098805c7b5fc02913478553409b90a4014bdc883465bc7b474eb7e
23 DIST stomp-1.4.9.gem 99328 BLAKE2B 9aa50880224cede15be69657ec7ecccf1a075db3e51de55faf3a0ba50335b90b910d1202c646585229cc35c0e2e4cf01fd99774960d9ae90ff82030c4bac6a69 SHA512 e1e3aed86621e2dac199fd7e4ba67fedc3582b5cfe9e4ff2efbdc9c545bb25d2c52391d9403e2fa935f69635e85bd3c1ca29d2d5b3c425aa850d3ccb8f7a5e86
24
25 diff --git a/dev-ruby/stomp/stomp-1.4.10.ebuild b/dev-ruby/stomp/stomp-1.4.10.ebuild
26 new file mode 100644
27 index 00000000000..d9e26e486d7
28 --- /dev/null
29 +++ b/dev-ruby/stomp/stomp-1.4.10.ebuild
30 @@ -0,0 +1,27 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +USE_RUBY="ruby25 ruby26 ruby27"
37 +
38 +RUBY_FAKEGEM_DOCDIR="doc"
39 +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
40 +
41 +RUBY_FAKEGEM_RECIPE_TEST="rspec3"
42 +
43 +inherit ruby-fakegem
44 +
45 +DESCRIPTION="Ruby bindings for the stomp messaging protocol"
46 +HOMEPAGE="https://github.com/stompgem/stomp"
47 +
48 +LICENSE="Apache-2.0"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~x86"
51 +IUSE=""
52 +
53 +all_ruby_prepare() {
54 + # Skip specs that hang the test run indefinitely, most likely
55 + # because of rspec-mocks deprecation output
56 + rm -f spec/connection_spec.rb || die
57 +}