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/yard/
Date: Tue, 30 Nov 2021 06:21:17
Message-Id: 1638252458.76f9398aa46c85e012117286c8da85dd903c2dfa.graaff@gentoo
1 commit: 76f9398aa46c85e012117286c8da85dd903c2dfa
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 30 06:07:38 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 30 06:07:38 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76f9398a
7
8 dev-ruby/yard: add 0.9.27
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/yard/Manifest | 1 +
14 dev-ruby/yard/yard-0.9.27.ebuild | 60 ++++++++++++++++++++++++++++++++++++++++
15 2 files changed, 61 insertions(+)
16
17 diff --git a/dev-ruby/yard/Manifest b/dev-ruby/yard/Manifest
18 index 45986c304401..4803189e822c 100644
19 --- a/dev-ruby/yard/Manifest
20 +++ b/dev-ruby/yard/Manifest
21 @@ -1 +1,2 @@
22 DIST yard-0.9.26-git.tgz 930901 BLAKE2B 19baaefc54269bbc7eee053b42f2be85644a062cbf55b0fafb63748876aad3a3143767855f4ee7b10a1ae814110a6cf63c01e4055e054aeb31bf8512e793d80d SHA512 0f70a089d5e5ba33e326b0ae0cc84a2cacfc5a3f3080545d5fc5bb324dedbbbf65116cc9412b3496c09b2b6c15514e854a741a1fd7e2ae782804d6e4ac28fcd9
23 +DIST yard-0.9.27-git.tgz 932022 BLAKE2B 7390e81081c6785cd7174b9ece57dafc27a9762f0751f05bfc222d561c6b6f5a5ff1a757fc24020a6adb2014c3e77696b6e8c054f7f6918120f6db435739b977 SHA512 20f406234bed52eff254c1b1dd0e3dcbc08109e9a285e4e4041c164cd998ae00654d2414e0e442e3a9520afc5cae2c1bd5010dd25fa38ef16ee21f077527aae4
24
25 diff --git a/dev-ruby/yard/yard-0.9.27.ebuild b/dev-ruby/yard/yard-0.9.27.ebuild
26 new file mode 100644
27 index 000000000000..7b006c35f664
28 --- /dev/null
29 +++ b/dev-ruby/yard/yard-0.9.27.ebuild
30 @@ -0,0 +1,60 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +USE_RUBY="ruby26 ruby27 ruby30"
37 +
38 +RUBY_FAKEGEM_RECIPE_TEST="rspec3"
39 +RUBY_FAKEGEM_TASK_DOC="yard"
40 +
41 +RUBY_FAKEGEM_EXTRADOC="README.md"
42 +RUBY_FAKEGEM_DOCDIR="doc docs"
43 +
44 +RUBY_FAKEGEM_EXTRAINSTALL="templates"
45 +
46 +RUBY_FAKEGEM_GEMSPEC="yard.gemspec"
47 +
48 +inherit ruby-fakegem
49 +
50 +DESCRIPTION="Documentation generation tool for the Ruby programming language"
51 +HOMEPAGE="https://yardoc.org/"
52 +
53 +# The gem lakes the gemspec file needed to pass tests.
54 +SRC_URI="https://github.com/lsegal/yard/archive/v${PV}.tar.gz -> ${P}-git.tgz"
55 +
56 +LICENSE="MIT"
57 +SLOT="0"
58 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
59 +IUSE=""
60 +
61 +ruby_add_rdepend "=dev-ruby/webrick-1.7*"
62 +
63 +ruby_add_bdepend "doc? ( || ( dev-ruby/maruku dev-ruby/rdiscount dev-ruby/kramdown ) )"
64 +
65 +ruby_add_bdepend "test? ( dev-ruby/rack )"
66 +
67 +all_ruby_prepare() {
68 + sed -i -e '/[Bb]undler/ s:^:#:' spec/spec_helper.rb || die
69 +
70 + sed -i -e '/samus/I s:^:#:' Rakefile || die
71 +
72 + sed -i -e 's/git ls-files/find/' ${RUBY_FAKEGEM_GEMSPEC} || die
73 +
74 + # Avoid specs that make assumptions on load ordering that are not
75 + # true for us. This may be related to how we install in Gentoo. This
76 + # also drops a test requirement on dev-ruby/rack.
77 + rm -f spec/cli/server_spec.rb || die
78 +
79 + # Avoid specs that only work with bundler
80 + sed -i -e '/#initialize/,/^ end/ s:^:#:' spec/cli/yri_spec.rb || die
81 + sed -e '/overwrites options with data in/askip "wrong assumptions on file access"' \
82 + -e '/loads any gem plugins starting with/askip "wrong assumptions on file access"' \
83 + -i spec/config_spec.rb || die
84 +
85 + # Avoid redcarpet-specific spec that is not optional
86 + sed -i -e '/autolinks URLs/askip "make redcarpet optional"' spec/templates/helpers/html_helper_spec.rb || die
87 +
88 + # Avoid asciidoc-specific spec that is not optional
89 + sed -i -e '/\(AsciiDoc specific\|AsciiDoc header\)/askip "skipping asciidoc test"' spec/templates/helpers/html_helper_spec.rb || die
90 +}