From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E2140139085 for ; Sun, 22 Jan 2017 00:56:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D96A12340FD; Sun, 22 Jan 2017 00:56:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B30192340FD for ; Sun, 22 Jan 2017 00:56:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7D244341655 for ; Sun, 22 Jan 2017 00:56:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E8BB72BEA for ; Sun, 22 Jan 2017 00:56:23 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1485046565.c3274991d07ee95c1266dbf35ce70b46c70a1f2f.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/asciidoctor/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/asciidoctor/asciidoctor-1.5.5-r1.ebuild X-VCS-Directories: dev-ruby/asciidoctor/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: c3274991d07ee95c1266dbf35ce70b46c70a1f2f X-VCS-Branch: master Date: Sun, 22 Jan 2017 00:56:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: f1200c7d-3d40-410e-924c-0520b3e66ace X-Archives-Hash: f9e42aa6401144ea3b2f18741ede88f3 commit: c3274991d07ee95c1266dbf35ce70b46c70a1f2f Author: Manuel Rüger gentoo org> AuthorDate: Sun Jan 22 00:56:05 2017 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Sun Jan 22 00:56:05 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3274991 dev-ruby/asciidoctor: Add ruby23, drop ruby20, drop ~arm Package-Manager: portage-2.3.3 dev-ruby/asciidoctor/asciidoctor-1.5.5-r1.ebuild | 44 ++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/dev-ruby/asciidoctor/asciidoctor-1.5.5-r1.ebuild b/dev-ruby/asciidoctor/asciidoctor-1.5.5-r1.ebuild new file mode 100644 index 00000000..f66c7eb --- /dev/null +++ b/dev-ruby/asciidoctor/asciidoctor-1.5.5-r1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +USE_RUBY="ruby21 ruby22 ruby23" + +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" +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 +}