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/file-tail/
Date: Tue, 23 Nov 2021 07:05:17
Message-Id: 1637649666.f4eba2416ff8e226cd16effdc41b4e34a9b3572f.graaff@gentoo
1 commit: f4eba2416ff8e226cd16effdc41b4e34a9b3572f
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 23 06:41:06 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 23 06:41:06 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4eba241
7
8 dev-ruby/file-tail: cleanup
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/file-tail/file-tail-1.2.0.ebuild | 38 -------------------------------
14 1 file changed, 38 deletions(-)
15
16 diff --git a/dev-ruby/file-tail/file-tail-1.2.0.ebuild b/dev-ruby/file-tail/file-tail-1.2.0.ebuild
17 deleted file mode 100644
18 index 4d1d4ec10c74..000000000000
19 --- a/dev-ruby/file-tail/file-tail-1.2.0.ebuild
20 +++ /dev/null
21 @@ -1,38 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -
27 -USE_RUBY="ruby24 ruby25 ruby26 ruby27"
28 -
29 -RUBY_FAKEGEM_RECIPE_TEST="none"
30 -
31 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
32 -RUBY_FAKEGEM_DOC_SOURCES="lib README.md"
33 -
34 -RUBY_FAKEGEM_EXTRADOC="CHANGES README.md"
35 -
36 -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
37 -
38 -inherit ruby-fakegem
39 -
40 -DESCRIPTION="A small ruby library that allows it to 'tail' files in Ruby"
41 -HOMEPAGE="https://flori.github.com/file-tail"
42 -
43 -LICENSE="GPL-2"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~x86"
46 -IUSE=""
47 -
48 -ruby_add_rdepend "=dev-ruby/tins-1*"
49 -ruby_add_bdepend "test? ( >=dev-ruby/test-unit-2.5.1-r1 )"
50 -
51 -all_ruby_prepare() {
52 - sed -i -e '/test_tail_change2/aomit "has race condition"' tests/file_tail_test.rb || die
53 -}
54 -
55 -each_ruby_test() {
56 - ruby-ng_testrb-2 -Ilib tests/*_test.rb
57 -
58 - rm -f test.*
59 -}