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/best_in_place/
Date: Mon, 01 Aug 2016 05:41:30
Message-Id: 1470030069.02476bdf95c38e2adf476faf1a0a97b652b18886.graaff@gentoo
1 commit: 02476bdf95c38e2adf476faf1a0a97b652b18886
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 31 06:05:14 2016 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 1 05:41:09 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02476bdf
7
8 dev-ruby/best_in_place: cleanup
9
10 Package-Manager: portage-2.2.28
11
12 dev-ruby/best_in_place/Manifest | 1 -
13 dev-ruby/best_in_place/best_in_place-3.0.3.ebuild | 61 -----------------------
14 2 files changed, 62 deletions(-)
15
16 diff --git a/dev-ruby/best_in_place/Manifest b/dev-ruby/best_in_place/Manifest
17 index 054a80a..ca02553 100644
18 --- a/dev-ruby/best_in_place/Manifest
19 +++ b/dev-ruby/best_in_place/Manifest
20 @@ -1,2 +1 @@
21 -DIST best_in_place-3.0.3.gem 73216 SHA256 495226571d111d1a1a65ac96b853b4560028e2c06d57e67929241a255c8a5b59 SHA512 61a48e36debb611a4055fec071cfc124fd862b695f7d4b991a1c66403a24576abd45f6ab0d065d92b2bce45cdd6397d68f4d10627360696bf1ebee02e89fd1ed WHIRLPOOL 2855200530ea107d1b7d5377e839f12960a50eab8339916ade003297f3e6221fb04a8b7695cf941c84ed60f2ee9bd63d668c0f95e7d551b99bb5e203f60471b0
22 DIST best_in_place-3.1.0.gem 73728 SHA256 4bc57e238e2a4f4b01b7c464fec4ea814189b180431deb603cc1db3fe00bc33c SHA512 5296392d2534e8eb7c01eeee36530259a10c4d7cb5765bb2bd76944c9bc93e4202135cf2a656283bbf24041986f80b0bf2ec613c27c3368aeee7fae32c6bc6dd WHIRLPOOL 84f262964e42d767d5f355eb0236fbe2c8e948ff98292e7ddd3fe2315eb3707a900f2691dce6c0301da2b170828ce75767b2aac633c057b145a4d69e4438b317
23
24 diff --git a/dev-ruby/best_in_place/best_in_place-3.0.3.ebuild b/dev-ruby/best_in_place/best_in_place-3.0.3.ebuild
25 deleted file mode 100644
26 index 6ec89aa..0000000
27 --- a/dev-ruby/best_in_place/best_in_place-3.0.3.ebuild
28 +++ /dev/null
29 @@ -1,61 +0,0 @@
30 -# Copyright 1999-2016 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI=5
35 -USE_RUBY="ruby20 ruby21"
36 -
37 -RUBY_FAKEGEM_TASK_DOC=""
38 -RUBY_FAKEGEM_EXTRADOC="README.md"
39 -
40 -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
41 -
42 -# if ever needed
43 -#GITHUB_USER="bernat"
44 -#GITHUB_PROJECT="${PN}"
45 -#RUBY_S="${GITHUB_USER}-${GITHUB_PROJECT}-*"
46 -
47 -inherit virtualx ruby-fakegem
48 -
49 -DESCRIPTION="In-place editor helper for Rails 3"
50 -HOMEPAGE="https://github.com/bernat/best_in_place"
51 -
52 -LICENSE="MIT"
53 -SLOT="3"
54 -KEYWORDS="~amd64"
55 -IUSE=""
56 -
57 -ruby_add_rdepend "
58 - >=dev-ruby/actionpack-3.2:*
59 - >=dev-ruby/railties-3.2:*
60 -"
61 -
62 -ruby_add_bdepend "
63 - test? (
64 - dev-ruby/rdiscount
65 - dev-ruby/rspec-rails:3
66 - >=dev-ruby/nokogiri-1.5.0
67 - >=dev-ruby/capybara-1.1.2:0
68 - dev-ruby/poltergeist
69 - >=dev-ruby/rails-3.2
70 - >=dev-ruby/sqlite3-1.3.4-r1
71 - dev-ruby/launchy
72 - dev-ruby/bundler
73 - )"
74 -
75 -all_ruby_prepare() {
76 - sed -i \
77 - -e '/git ls-files/d' \
78 - ${RUBY_FAKEGEM_GEMSPEC} || die
79 -
80 - # Tweak Gemfile so we can use it to run specs but can avoid missing
81 - # dependencies. Also use packaged versions of jquery and jquery-ui.
82 - sed -i -e '/\(rails-assets\|appraisal\)/ s:^:#:' \
83 - -e '2agem "rspec", "~>3.0"' \
84 - -e '2agem "jquery-rails"' -e '2agem "jquery-ui-rails"' \
85 - Gemfile
86 -}
87 -
88 -each_ruby_test() {
89 - ${RUBY} -S bundle exec rspec-3 spec || die
90 -}