diff options
author | Hans de Graaff <graaff@gentoo.org> | 2016-10-06 07:49:51 +0200 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2016-10-06 08:02:26 +0200 |
commit | 669ba4255f78b1658c7f2348859b7c3b208898dd (patch) | |
tree | c14a65606049d47c6ac7e1e21c58f33f1742a42c /dev-ruby/asciidoctor | |
parent | dev-ruby/rspec-retry: add 0.5.2 (diff) | |
download | gentoo-669ba4255f78b1658c7f2348859b7c3b208898dd.tar.gz gentoo-669ba4255f78b1658c7f2348859b7c3b208898dd.tar.bz2 gentoo-669ba4255f78b1658c7f2348859b7c3b208898dd.zip |
dev-ruby/asciidoctor: add 1.5.5
Package-Manager: portage-2.3.0
Diffstat (limited to 'dev-ruby/asciidoctor')
-rw-r--r-- | dev-ruby/asciidoctor/Manifest | 1 | ||||
-rw-r--r-- | dev-ruby/asciidoctor/asciidoctor-1.5.5.ebuild | 44 |
2 files changed, 45 insertions, 0 deletions
diff --git a/dev-ruby/asciidoctor/Manifest b/dev-ruby/asciidoctor/Manifest index cf72b92c917b..61ee1fa78d8a 100644 --- a/dev-ruby/asciidoctor/Manifest +++ b/dev-ruby/asciidoctor/Manifest @@ -1 +1,2 @@ DIST asciidoctor-1.5.4.tar.gz 520793 SHA256 2963fdf5ce12962e3a514d7d83426897184c947de5df89300ee524970dc2f3bc SHA512 c3a6405a6c39d1aa70e4d10ce42a6f6e01f3b7ddd8f695e8043fce9116ac91ad1f1f881a449ee8a61172213720dae1285f9c4de03a5cec908de906ed5b14e626 WHIRLPOOL bb06147e6c77fc5d0133b0b747103ec362cc724624087cb84756b2a193540e6b164aed1c8a20a1578298be135e7b65938ae07a902409ba778c25792bd6350ec9 +DIST asciidoctor-1.5.5.tar.gz 543437 SHA256 2da103a6b108ba31fced25c79d52318f41f349a8552917a11e910d194f95190b SHA512 6a95c2e48314a1f44d6398d83c490231baeb4ebea8d8c0e0ef361c884251fe054d48afceccadfb6c34947946920731e0194fc3e398b8dd8b8b320ea9d37f1f66 WHIRLPOOL 1772b12098b117200b36c5bf3fe9659b178ced7c9994fcc1332bc89c4b3dde1824feae70e3b9178569283c69c0345e37ac4394877feac4aa0ae32c103b91359e diff --git a/dev-ruby/asciidoctor/asciidoctor-1.5.5.ebuild b/dev-ruby/asciidoctor/asciidoctor-1.5.5.ebuild new file mode 100644 index 000000000000..ee27727601b5 --- /dev/null +++ b/dev-ruby/asciidoctor/asciidoctor-1.5.5.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +USE_RUBY="ruby20 ruby21 ruby22" + +RUBY_FAKEGEM_TASK_TEST="test features" +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.adoc README.adoc" + +RUBY_FAKEGEM_EXTRAINSTALL="data" + +inherit ruby-fakegem + +DESCRIPTION="Processor for converting AsciiDoc into HTML 5, DocBook 4.5 and other formats" +HOMEPAGE="https://github.com/asciidoctor/asciidoctor" +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm" +IUSE="" + +ruby_add_bdepend "test? ( + dev-util/cucumber + dev-ruby/rspec-expectations:* + dev-ruby/asciimath + dev-ruby/coderay + dev-ruby/erubis + dev-ruby/haml + dev-ruby/nokogiri + dev-ruby/slim + dev-ruby/tilt )" + +all_ruby_prepare() { + rm Gemfile || die +} + +all_ruby_install() { + all_fakegem_install + + doman man/asciidoctor.1 +} |