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/web-console/
Date: Sat, 26 Mar 2022 07:48:32
Message-Id: 1648280890.7c746ebc50b248a570ebe9447792a1ab6f457476.graaff@gentoo
1 commit: 7c746ebc50b248a570ebe9447792a1ab6f457476
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 25 12:08:41 2022 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 26 07:48:10 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c746ebc
7
8 dev-ruby/web-console: cleanup
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/web-console/Manifest | 1 -
14 dev-ruby/web-console/web-console-4.1.0.ebuild | 47 ---------------------------
15 2 files changed, 48 deletions(-)
16
17 diff --git a/dev-ruby/web-console/Manifest b/dev-ruby/web-console/Manifest
18 index 13455cf358e5..8e4a74e49aa4 100644
19 --- a/dev-ruby/web-console/Manifest
20 +++ b/dev-ruby/web-console/Manifest
21 @@ -1,3 +1,2 @@
22 DIST web-console-3.7.0.tar.gz 53714 BLAKE2B d69a7b467e419e87d43c988026f278aea5ca142e336d120e0a50ef85b36186d2f388d551f19820e01d85fdca5a49c471aed69cb2ae0d6f1828a99350dfe86d55 SHA512 d44e4dc3ef12216829b3f522e3645b0fa9b8ae34fa70b5e52a96e345b8b5fc8dad9af6f9918ea23d276cae03445133b15f780041a8cb61584b182ca6934fd71b
23 -DIST web-console-4.1.0.tar.gz 54722 BLAKE2B 242e588843e713b77c0689b17906bb0dad8784ad9b5fd255a174364afa83014d3cb022f1fb52a759aaa9f2453a1a944796c1a84edff65de6a5e1adaebccc4071 SHA512 c295dac733094a4ee4ce9dffa0d65001aa179cd17cc5b9a2a0a418e1e1a4ca3d40fab8bc3f8e099d55a0b7b07295e40d40dd1b3335ac98e9b0cd51590b130e10
24 DIST web-console-4.2.0.tar.gz 53991 BLAKE2B 8145e5bf2e13230c7411a49af34129130fb99c8a65afc7b628d77572723cdfcb2afbdc9f3be63a9bad0d3d92013cc291882bbe228058e2b84595566a48b5cdba SHA512 3a9fd5c7a184fd28961a4d8d0e4ad9850d8a4fe39a9c97f13cbd78b34a69be49a78ad94570fcd45e8af6ef523948ead3fb4350a4e49fbbe76855b4115a9afc61
25
26 diff --git a/dev-ruby/web-console/web-console-4.1.0.ebuild b/dev-ruby/web-console/web-console-4.1.0.ebuild
27 deleted file mode 100644
28 index de91b3bf817b..000000000000
29 --- a/dev-ruby/web-console/web-console-4.1.0.ebuild
30 +++ /dev/null
31 @@ -1,47 +0,0 @@
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"
37 -
38 -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.markdown README.markdown"
39 -
40 -RUBY_FAKEGEM_GEMSPEC="web-console.gemspec"
41 -
42 -inherit ruby-fakegem
43 -
44 -DESCRIPTION="A debugging tool for your Ruby on Rails applications"
45 -HOMEPAGE="https://github.com/rails/web-console"
46 -SRC_URI="https://github.com/rails/web-console/archive/v${PV}.tar.gz -> ${P}.tar.gz"
47 -
48 -LICENSE="MIT"
49 -SLOT="$(ver_cut 1)"
50 -KEYWORDS="~amd64"
51 -IUSE=""
52 -
53 -ruby_add_rdepend "
54 - >=dev-ruby/actionview-6.0:*
55 - >=dev-ruby/activemodel-6.0:*
56 - >=dev-ruby/bindex-0.4.0
57 - >=dev-ruby/railties-6.0:*
58 -"
59 -
60 -ruby_add_bdepend "test? (
61 - dev-ruby/bundler
62 - >=dev-ruby/rails-6.0
63 - dev-ruby/rack
64 - dev-ruby/sqlite3
65 - dev-ruby/mocha
66 - www-servers/puma
67 -)"
68 -
69 -all_ruby_prepare() {
70 - # Use an installed rails version rather than live source from github, and
71 - # rack is now part of rails.
72 - sed -e '/\(rack\|arel\|rails\|simplecov\)/ s/,/#/' \
73 - -e '/\(byebug\|simplecov\)/ s:^:#:' \
74 - -e '/arel/ s:^:#:' \
75 - -i Gemfile || die
76 -
77 - sed -i -e '/simplecov/I s:^:#:' test/test_helper.rb || die
78 -}