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: Sat, 28 Apr 2018 07:09:14
Message-Id: 1524899128.422cfd7ccfb505896bdb92ab6b644662db4dd762.graaff@gentoo
1 commit: 422cfd7ccfb505896bdb92ab6b644662db4dd762
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 28 06:58:32 2018 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 28 07:05:28 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=422cfd7c
7
8 dev-ruby/addressable: cleanup
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 dev-ruby/addressable/Manifest | 1 -
13 dev-ruby/addressable/addressable-2.5.1.ebuild | 43 ---------------------------
14 2 files changed, 44 deletions(-)
15
16 diff --git a/dev-ruby/addressable/Manifest b/dev-ruby/addressable/Manifest
17 index 9bb0c7175a7..cb0947d5083 100644
18 --- a/dev-ruby/addressable/Manifest
19 +++ b/dev-ruby/addressable/Manifest
20 @@ -1,3 +1,2 @@
21 DIST addressable-2.4.0.gem 102400 BLAKE2B b03ab532b2c761b877973381d023c882d4d1e66372bb68425f45debfab3c546845b3535045f6b47d4f7be88c1a2e539b2c1429312147cb4fe3ebdaf90330c86b SHA512 b81fa48e7c4188827c03ac93960b6fd6fb9f5a438f5243cddea39d6820ef756ee7c0086ec330dc4a3538008b3b254757af7d30248624127649cc006a2793eda8
22 -DIST addressable-2.5.1.gem 103424 BLAKE2B c550bc45573c5f0de7398dc5ac1c32b1fe659b9d1395d5d9217583682657dff0c0da779a1113d19a4fe1b9bc381459278afefb753ee0e85cac843b8b6bed957b SHA512 ae7232dc6cbd1aa6405135c7916697a93286fcb223b14e2c30b5897aed6fe32529c94bfb84154e0cead5af9a282cc89442cbd3249b68abd7ffd67b6c4599bff3
23 DIST addressable-2.5.2.gem 103936 BLAKE2B c6677a2b5e9a7a1b279b2e3f1816cda40c0797254970ecaed2350d4d4739dee5a51580a8e2f94fc6bb87b9fe2a535d0a68b62eb672f8e91ff4da02e15e8dffcc SHA512 ddd5aeb4b241efa897a636fd85bd227bd5c6a8ae56129b6bbbdfaad85cdbb74e3d0db4bb6693f7df148b66f68ca1f557ac17a1fb0ea7698d25d883ab0b690bc4
24
25 diff --git a/dev-ruby/addressable/addressable-2.5.1.ebuild b/dev-ruby/addressable/addressable-2.5.1.ebuild
26 deleted file mode 100644
27 index d757e5a57f8..00000000000
28 --- a/dev-ruby/addressable/addressable-2.5.1.ebuild
29 +++ /dev/null
30 @@ -1,43 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -USE_RUBY="ruby21 ruby22 ruby23 ruby24"
36 -
37 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
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 ~ppc ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
53 -IUSE="doc test"
54 -
55 -ruby_add_rdepend ">=dev-ruby/public_suffix-2.0.2:2"
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 -}