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/whole_history_rating/
Date: Sun, 27 Oct 2019 10:22:08
Message-Id: 1572171720.75995818c2a35dae0a9c39fbbd374cfdd54ac9b8.graaff@gentoo
1 commit: 75995818c2a35dae0a9c39fbbd374cfdd54ac9b8
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 27 10:21:49 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 27 10:22:00 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75995818
7
8 dev-ruby/whole_history_rating: fix various issues
9
10 - install documentation
11 - run tests
12 - install default gemspec rather than tinkering with the gemspec file
13
14 Package-Manager: Portage-2.3.76, Repoman-2.3.16
15 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
16
17 .../whole_history_rating-0.1.2-r1.ebuild | 26 ++++++++++++++++++++++
18 1 file changed, 26 insertions(+)
19
20 diff --git a/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r1.ebuild b/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r1.ebuild
21 new file mode 100644
22 index 00000000000..76062cedbcc
23 --- /dev/null
24 +++ b/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r1.ebuild
25 @@ -0,0 +1,26 @@
26 +# Copyright 1999-2019 Gentoo Authors
27 +# Distributed under the terms of the GNU General Public License v2
28 +
29 +EAPI=7
30 +
31 +USE_RUBY="ruby24 ruby25 ruby26"
32 +
33 +RUBY_FAKEGEM_TASK_TEST="test_units"
34 +
35 +RUBY_FAKEGEM_EXTRADOC="README.md"
36 +
37 +inherit ruby-fakegem
38 +
39 +DESCRIPTION="A pure ruby implementation of Remi Coulom's Whole-History Rating algorithm"
40 +HOMEPAGE="https://github.com/goshrine/${PN}"
41 +
42 +LICENSE="MIT"
43 +SLOT="0"
44 +KEYWORDS="~amd64"
45 +IUSE="test"
46 +
47 +ruby_add_bdepend "
48 + test? (
49 + dev-ruby/test-unit:2
50 + )
51 +"