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/org-ruby/
Date: Mon, 22 Nov 2021 19:11:36
Message-Id: 1637608286.0315cc12fddc7c7b8fe45f9c19edf582494ad337.graaff@gentoo
1 commit: 0315cc12fddc7c7b8fe45f9c19edf582494ad337
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 22 18:53:00 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 22 19:11:26 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0315cc12
7
8 dev-ruby/org-ruby: EAPI 8
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/org-ruby/org-ruby-0.9.12-r1.ebuild | 31 +++++++++++++++++++++++++++++
14 1 file changed, 31 insertions(+)
15
16 diff --git a/dev-ruby/org-ruby/org-ruby-0.9.12-r1.ebuild b/dev-ruby/org-ruby/org-ruby-0.9.12-r1.ebuild
17 new file mode 100644
18 index 000000000000..d8552473aab2
19 --- /dev/null
20 +++ b/dev-ruby/org-ruby/org-ruby-0.9.12-r1.ebuild
21 @@ -0,0 +1,31 @@
22 +# Copyright 1999-2021 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=8
26 +USE_RUBY="ruby26 ruby27"
27 +
28 +RUBY_FAKEGEM_RECIPE_TEST="rspec"
29 +RUBY_FAKEGEM_RECIPE_DOC="none"
30 +RUBY_FAKEGEM_EXTRADOC="README.org History.org"
31 +RUBY_FAKEGEM_GEMSPEC="org-ruby.gemspec"
32 +
33 +inherit ruby-fakegem
34 +
35 +DESCRIPTION="Ruby routines for parsing org-mode files"
36 +HOMEPAGE="https://github.com/wallyqs/org-ruby"
37 +SRC_URI="https://github.com/wallyqs/${PN}/archive/version-${PV}.tar.gz -> ${P}.tar.gz"
38 +
39 +LICENSE="MIT"
40 +SLOT="0"
41 +KEYWORDS="~amd64"
42 +IUSE=""
43 +
44 +RUBY_S="${PN}-version-${PV}"
45 +
46 +ruby_add_rdepend ">=dev-ruby/rubypants-0.2:0"
47 +ruby_add_bdepend "test? ( dev-ruby/tilt )"
48 +
49 +all_ruby_prepare() {
50 + #Fix tests until rspec:3 is available in the tree
51 + sed -i -e "s/truthy/true/" -e "s/falsy/false/" spec/headline_spec.rb spec/parser_spec.rb spec/line_spec.rb || die
52 +}