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/rb-inotify/
Date: Tue, 12 Jul 2016 04:38:56
Message-Id: 1468297863.41880377ae840a99df15981cce8539baf31eef79.graaff@gentoo
1 commit: 41880377ae840a99df15981cce8539baf31eef79
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 12 04:29:42 2016 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 12 04:31:03 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41880377
7
8 dev-ruby/rb-inotify: cleanup
9
10 Package-Manager: portage-2.2.28
11
12 dev-ruby/rb-inotify/rb-inotify-0.9.5.ebuild | 39 -----------------------------
13 1 file changed, 39 deletions(-)
14
15 diff --git a/dev-ruby/rb-inotify/rb-inotify-0.9.5.ebuild b/dev-ruby/rb-inotify/rb-inotify-0.9.5.ebuild
16 deleted file mode 100644
17 index 65e2985..0000000
18 --- a/dev-ruby/rb-inotify/rb-inotify-0.9.5.ebuild
19 +++ /dev/null
20 @@ -1,39 +0,0 @@
21 -# Copyright 1999-2016 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=5
26 -
27 -USE_RUBY="ruby20"
28 -
29 -RUBY_FAKEGEM_TASK_TEST=""
30 -
31 -RUBY_FAKEGEM_TASK_DOC="yard"
32 -RUBY_FAKEGEM_DOCDIR="doc"
33 -RUBY_FAKEGEM_EXTRADOC="README.md"
34 -
35 -RUBY_FAKEGEM_EXTRAINSTALL="VERSION"
36 -
37 -RUBY_FAKEGEM_GEMSPEC="rb-inotify.gemspec"
38 -
39 -inherit ruby-fakegem
40 -
41 -DESCRIPTION="A thorough inotify wrapper for Ruby using FFI"
42 -HOMEPAGE="https://github.com/nex3/rb-inotify"
43 -
44 -LICENSE="MIT"
45 -SLOT="0"
46 -KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~x64-macos"
47 -IUSE=""
48 -
49 -ruby_add_rdepend "virtual/ruby-ffi"
50 -
51 -ruby_add_bdepend "doc? ( dev-ruby/yard )"
52 -
53 -all_ruby_prepare() {
54 - # Avoid unneeded dependency on jeweler.
55 - sed -i -e '/:build/ s:^:#:' -e '/module Jeweler/,/^end/ s:^:#:' -e '/class Jeweler/,/^end/ s:^:#:' Rakefile || die
56 -
57 - # Remove mandatory markup processor from yard options, bug 436112.
58 - sed -i -e '/maruku/d' .yardopts || die
59 -}