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