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: Tue, 30 Oct 2018 06:04:16
Message-Id: 1540879435.de68b7c0305faed99bb73c6587ed83dcaf11d7f8.graaff@gentoo
1 commit: de68b7c0305faed99bb73c6587ed83dcaf11d7f8
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 29 05:34:31 2018 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 30 06:03:55 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de68b7c0
7
8 dev-ruby/asciidoctor: add 1.5.8
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11 Package-Manager: Portage-2.3.49, Repoman-2.3.11
12
13 dev-ruby/asciidoctor/Manifest | 1 +
14 dev-ruby/asciidoctor/asciidoctor-1.5.8.ebuild | 44 +++++++++++++++++++++++++++
15 2 files changed, 45 insertions(+)
16
17 diff --git a/dev-ruby/asciidoctor/Manifest b/dev-ruby/asciidoctor/Manifest
18 index 7f3cf267336..9b6b4f7c361 100644
19 --- a/dev-ruby/asciidoctor/Manifest
20 +++ b/dev-ruby/asciidoctor/Manifest
21 @@ -1 +1,2 @@
22 DIST asciidoctor-1.5.7.1.tar.gz 565182 BLAKE2B c697ea1b371a9ec26ec3277e043275ed3672bad104d34553aa442723797df3cc4e5a48447f806dba53fb3a142760f514bff74b189058260f621c8b63f8ad02b1 SHA512 4819aef93fb301e5378871935370fe37671446ecdedf76853cc0c19a6a5f3f0e2debbf2afb8ba7287f866fb57903abdfe6d845e1ccf24dda4347ec9c92624c3d
23 +DIST asciidoctor-1.5.8.tar.gz 583484 BLAKE2B f0c654c5e43a0ed061dbf80eb382fac1ea393870c7c2530649a5a41f1a5bd5e72ffb11e8ad8dd2925510e18f4528079ae532b623e6e7f38a119565df01139f58 SHA512 3f767cdf945361d81b0a89137fb1e77377cbb4171da790027cbb9cd8cf1deb03f24a8ec780b427b7bce34538e851a44682515fbaccf8558d61e22356b9d216dd
24
25 diff --git a/dev-ruby/asciidoctor/asciidoctor-1.5.8.ebuild b/dev-ruby/asciidoctor/asciidoctor-1.5.8.ebuild
26 new file mode 100644
27 index 00000000000..f9176522685
28 --- /dev/null
29 +++ b/dev-ruby/asciidoctor/asciidoctor-1.5.8.ebuild
30 @@ -0,0 +1,44 @@
31 +# Copyright 1999-2018 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +USE_RUBY="ruby23 ruby24"
36 +
37 +RUBY_FAKEGEM_TASK_TEST="test features"
38 +RUBY_FAKEGEM_RECIPE_DOC="rdoc"
39 +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.adoc README.adoc"
40 +
41 +RUBY_FAKEGEM_EXTRAINSTALL="data"
42 +
43 +inherit ruby-fakegem
44 +
45 +DESCRIPTION="Processor for converting AsciiDoc into HTML 5, DocBook 4.5 and other formats"
46 +HOMEPAGE="https://github.com/asciidoctor/asciidoctor"
47 +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
48 +
49 +LICENSE="MIT"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
52 +IUSE=""
53 +
54 +ruby_add_bdepend "test? (
55 + dev-util/cucumber
56 + dev-ruby/rspec-expectations:*
57 + dev-ruby/asciimath
58 + dev-ruby/coderay
59 + dev-ruby/erubis
60 + dev-ruby/haml
61 + dev-ruby/nokogiri
62 + dev-ruby/slim
63 + dev-ruby/thread_safe
64 + dev-ruby/tilt )"
65 +
66 +all_ruby_prepare() {
67 + rm Gemfile || die
68 +}
69 +
70 +all_ruby_install() {
71 + all_fakegem_install
72 +
73 + doman man/asciidoctor.1
74 +}