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/addressable/
Date: Tue, 06 Jul 2021 19:47:47
Message-Id: 1625600858.d03e64e235cabf050aa9a548ad4c75d00ba29b68.graaff@gentoo
1 commit: d03e64e235cabf050aa9a548ad4c75d00ba29b68
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 6 19:47:38 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 6 19:47:38 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d03e64e2
7
8 dev-ruby/addressable: add 2.8.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 dev-ruby/addressable/Manifest | 1 +
14 dev-ruby/addressable/addressable-2.8.0.ebuild | 42 +++++++++++++++++++++++++++
15 2 files changed, 43 insertions(+)
16
17 diff --git a/dev-ruby/addressable/Manifest b/dev-ruby/addressable/Manifest
18 index 1025493d026..993a5a8e10d 100644
19 --- a/dev-ruby/addressable/Manifest
20 +++ b/dev-ruby/addressable/Manifest
21 @@ -1,2 +1,3 @@
22 DIST addressable-2.6.0.gem 104448 BLAKE2B 664365962533d31786e2a362b61879fee544867b7aadc2ceb1ae6709374015a7f0f5c0bd32a81c8f2ae711a4ce1a07cd8f84821e74c3b6aa56b7474800567737 SHA512 71aa0ce8b61a07c1d01298dcd29cb2ba73d06ed1578908cae60351214f7d0bc6c9b8b0db7a78044fb1bed258bf00f2f093aa4e2bcb32575f4db2a79ee36b2648
23 DIST addressable-2.7.0.gem 104960 BLAKE2B 4bca65d54ef1d3556cf4017ae68082635c0398b6f604eb3edc18da8f8e1e49e38b46485a8716da3c407fe0605dcc9a12c7a95be49a91c4198c2e2b1cab568805 SHA512 4c438bbfa8874fdcf11eef1d1f7cceb1855ea85948daff13615a0af129d35f92cc918f4bd5bbe4cd6ebccc67a86fc582265f915dc39831ec64209de0bdeeb732
24 +DIST addressable-2.8.0.gem 105984 BLAKE2B 82f053c9ad052ce1ed1b6927674bd5bcda86a3f70d46b63bfc1185d51b402996fd446647d705418791c5443a1767b4ecd0b891f26de63fbe737c62f7586bd57c SHA512 c684f17940f717c2a65f9716ab9b3659948d6d51a60c38a7295fcf6fdc1c5785d2d315d2de7dab9f66a6c31f62247177d78d5d6eb556f5bb49926d4f00f8e4c8
25
26 diff --git a/dev-ruby/addressable/addressable-2.8.0.ebuild b/dev-ruby/addressable/addressable-2.8.0.ebuild
27 new file mode 100644
28 index 00000000000..444a23a8b9e
29 --- /dev/null
30 +++ b/dev-ruby/addressable/addressable-2.8.0.ebuild
31 @@ -0,0 +1,42 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +USE_RUBY="ruby25 ruby26 ruby27 ruby30"
37 +
38 +RUBY_FAKEGEM_RECIPE_TEST="rspec3"
39 +
40 +RUBY_FAKEGEM_EXTRADOC="README.md CHANGELOG.md"
41 +
42 +RUBY_FAKEGEM_EXTRAINSTALL="data"
43 +
44 +inherit ruby-fakegem
45 +
46 +DESCRIPTION="A replacement for the URI implementation that is part of Ruby's standard library"
47 +HOMEPAGE="https://rubygems.org/gems/addressable https://github.com/sporkmonger/addressable"
48 +
49 +LICENSE="Apache-2.0"
50 +
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris"
53 +IUSE="doc test"
54 +
55 +ruby_add_rdepend "|| ( dev-ruby/public_suffix:4 dev-ruby/public_suffix:3 )"
56 +
57 +ruby_add_bdepend "test? ( dev-ruby/rspec-its )"
58 +
59 +all_ruby_prepare() {
60 + # Remove spec-related tasks so that we don't need to require rspec
61 + # just to build the documentation, bug 383611.
62 + sed -i -e '/spectask/d' Rakefile || die
63 + rm -f tasks/rspec.rake || die
64 + sed -i -e '/bundler/ s:^:#:' \
65 + -e '/^begin/,/^end/ s:^:#:' \
66 + spec/spec_helper.rb || die
67 +
68 + # Remove specs requiring network connectivity
69 + rm -f spec/addressable/net_http_compat_spec.rb || die
70 +
71 + # Remove spec that tests against an unreleased github fork
72 + rm -f spec/addressable/rack_mount_compat_spec.rb || die
73 +}