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/asciidoctor/
Date: Thu, 29 Mar 2018 06:46:32
Message-Id: 1522305966.2ded7e3b27059b3fab417dc885a780dffece22f1.graaff@gentoo
1 commit: 2ded7e3b27059b3fab417dc885a780dffece22f1
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 29 05:49:53 2018 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 29 06:46:06 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ded7e3b
7
8 add 1.5.6.2
9
10 Closes: https://bugs.gentoo.org/628992
11 Package-Manager: Portage-2.3.24, Repoman-2.3.6
12
13 dev-ruby/asciidoctor/Manifest | 1 +
14 dev-ruby/asciidoctor/asciidoctor-1.5.6.2.ebuild | 44 +++++++++++++++++++++++++
15 2 files changed, 45 insertions(+)
16
17 diff --git a/dev-ruby/asciidoctor/Manifest b/dev-ruby/asciidoctor/Manifest
18 index 83c476834c4..f13b1567712 100644
19 --- a/dev-ruby/asciidoctor/Manifest
20 +++ b/dev-ruby/asciidoctor/Manifest
21 @@ -1,3 +1,4 @@
22 DIST asciidoctor-1.5.5.tar.gz 543437 BLAKE2B ff3530825a495ee222634aa871f828069fd5c1ec1ab3c4513f7b0e74af3c4a78ee4ab0f0764f8d7dc698484d2acb962dc4fa8ae6a2c7f6c365c08a65a3044afa SHA512 6a95c2e48314a1f44d6398d83c490231baeb4ebea8d8c0e0ef361c884251fe054d48afceccadfb6c34947946920731e0194fc3e398b8dd8b8b320ea9d37f1f66
23 DIST asciidoctor-1.5.6.1.tar.gz 528614 BLAKE2B acca343f39143b6a9b0dd84ebb1e356f7dcb960154cec4524778e37aac6aabcfdb2c4952cdfaf0aa065203c91188ac006555bebab22d46b75b2705155038ddb4 SHA512 ed700f8ae7ca04700cb1814f819c0f29098266e0b457edb0ade413ae231388f7d217f929e6dff26daaafd6ad8d4c2f1de5debb49cd841fc493aa9d94a9069549
24 +DIST asciidoctor-1.5.6.2.tar.gz 529372 BLAKE2B 8c43628fe78b4e06ef5c431862a8bb04ad911d73043f395645b14c0165a9a69880d82a39329f77ea6a7418da4331a7d64a0fbe163cac30e38a296523fd184769 SHA512 38b3bce03c54f43514bc51c4302d8177ef22ee2d178b4909764da92a091a958ef8f003c477eae125e399309f18198d0fe17c01b8064f658045b8bd9fd37f16e9
25 DIST asciidoctor-1.5.6.tar.gz 527048 BLAKE2B c74d5474727ee9fa91e21a03bc647a951b7b0ff2158a9dc5cfc063a4b16fa8c991315bb0d6eb127452be66f508c1818d37563927e65bbe5fe650a344a6ec3f70 SHA512 a9ceb4d75173141d0997bd64b06a7fddfbe79da3dd3c63d9507ef6955c1bec2a1f51fbba06173fb878e22e13ae3945bf7acd7f4fad9b15e8ed689f84bc9f6e46
26
27 diff --git a/dev-ruby/asciidoctor/asciidoctor-1.5.6.2.ebuild b/dev-ruby/asciidoctor/asciidoctor-1.5.6.2.ebuild
28 new file mode 100644
29 index 00000000000..6152af69727
30 --- /dev/null
31 +++ b/dev-ruby/asciidoctor/asciidoctor-1.5.6.2.ebuild
32 @@ -0,0 +1,44 @@
33 +# Copyright 1999-2018 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +USE_RUBY="ruby22 ruby23 ruby24"
38 +
39 +RUBY_FAKEGEM_TASK_TEST="test features"
40 +RUBY_FAKEGEM_RECIPE_DOC="rdoc"
41 +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.adoc README.adoc"
42 +
43 +RUBY_FAKEGEM_EXTRAINSTALL="data"
44 +
45 +inherit ruby-fakegem
46 +
47 +DESCRIPTION="Processor for converting AsciiDoc into HTML 5, DocBook 4.5 and other formats"
48 +HOMEPAGE="https://github.com/asciidoctor/asciidoctor"
49 +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
50 +
51 +LICENSE="MIT"
52 +SLOT="0"
53 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
54 +IUSE=""
55 +
56 +ruby_add_bdepend "test? (
57 + dev-util/cucumber
58 + dev-ruby/rspec-expectations:*
59 + dev-ruby/asciimath
60 + dev-ruby/coderay
61 + dev-ruby/erubis
62 + dev-ruby/haml
63 + dev-ruby/nokogiri
64 + dev-ruby/slim
65 + dev-ruby/thread_safe
66 + dev-ruby/tilt )"
67 +
68 +all_ruby_prepare() {
69 + rm Gemfile || die
70 +}
71 +
72 +all_ruby_install() {
73 + all_fakegem_install
74 +
75 + doman man/asciidoctor.1
76 +}