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/listen/
Date: Sat, 28 Apr 2018 06:33:07
Message-Id: 1524897146.f42ea03cc7bba88583da4b2598999127ae64d3f4.graaff@gentoo
1 commit: f42ea03cc7bba88583da4b2598999127ae64d3f4
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 28 05:43:38 2018 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 28 06:32:26 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f42ea03c
7
8 dev-ruby/listen: cleanup
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 dev-ruby/listen/listen-3.1.5.ebuild | 47 -------------------------------------
13 1 file changed, 47 deletions(-)
14
15 diff --git a/dev-ruby/listen/listen-3.1.5.ebuild b/dev-ruby/listen/listen-3.1.5.ebuild
16 deleted file mode 100644
17 index 6a2a06830b3..00000000000
18 --- a/dev-ruby/listen/listen-3.1.5.ebuild
19 +++ /dev/null
20 @@ -1,47 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -
26 -USE_RUBY="ruby20 ruby21 ruby22 ruby23"
27 -
28 -RUBY_FAKEGEM_RECIPE_TEST="rspec3"
29 -
30 -RUBY_FAKEGEM_TASK_DOC=""
31 -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
32 -
33 -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
34 -
35 -inherit ruby-fakegem
36 -
37 -SRC_URI="https://github.com/guard/listen/archive/v${PV}.tar.gz -> ${P}.tar.gz"
38 -DESCRIPTION="Listens to file modifications and notifies you about the changes"
39 -HOMEPAGE="https://github.com/guard/listen"
40 -
41 -LICENSE="MIT"
42 -SLOT="3"
43 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
44 -IUSE="test"
45 -
46 -# Block on other packages trying to install a /usr/bin/listen
47 -RDEPEND+="!!media-sound/listen !!media-radio/ax25 !!<dev-ruby/listen-2.8.6-r1:2"
48 -
49 -ruby_add_rdepend ">=dev-ruby/rb-inotify-0.9.7 >=dev-ruby/ruby_dep-1.2:1"
50 -
51 -ruby_add_bdepend "test? ( dev-ruby/thor )"
52 -
53 -all_ruby_prepare() {
54 - rm -f Gemfile || die
55 - sed -i -e "/git/,+3d" -e "/rb-fsevent/d" ${PN}.gemspec || die
56 - sed -i -e "/rb-fsevent/d" lib/listen/adapter/darwin.rb || die
57 - rm -rf spec/lib/listen/adapter/darwin_spec.rb || die
58 -}
59 -
60 -each_ruby_prepare() {
61 - mkdir spec/.fixtures || die
62 -}
63 -
64 -each_ruby_test() {
65 - RSPEC_VERSION=3 ruby-ng_rspec
66 - rm -rf spec/.fixtures || die
67 -}