diff options
author | 2021-01-24 07:58:25 +0100 | |
---|---|---|
committer | 2021-01-24 07:58:25 +0100 | |
commit | a2bca8432509d86fb732a2af3372660cffdfa24d (patch) | |
tree | 26e970c65f15feefb99b0c2971b21d4cfd315877 /dev-ruby | |
parent | dev-ruby/ast: add 2.4.2 (diff) | |
download | gentoo-a2bca8432509d86fb732a2af3372660cffdfa24d.tar.gz gentoo-a2bca8432509d86fb732a2af3372660cffdfa24d.tar.bz2 gentoo-a2bca8432509d86fb732a2af3372660cffdfa24d.zip |
dev-ruby/creole: eapi 7; ruby30
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'dev-ruby')
-rw-r--r-- | dev-ruby/creole/creole-0.5.0-r1.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-ruby/creole/creole-0.5.0-r1.ebuild b/dev-ruby/creole/creole-0.5.0-r1.ebuild new file mode 100644 index 000000000000..87c7dc48ceae --- /dev/null +++ b/dev-ruby/creole/creole-0.5.0-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +USE_RUBY="ruby25 ruby26 ruby27 ruby30" + +RUBY_FAKEGEM_RECIPE_TEST="rake" +RUBY_FAKEGEM_RECIPE_DOC="none" +RUBY_FAKEGEM_EXTRADOC="CHANGES README.creole" + +RUBY_FAKEGEM_GEMSPEC="creole.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Creole-to-HTML converter for Creole, the lightweight markup language" +HOMEPAGE="https://github.com/minad/creole" +SRC_URI="https://github.com/minad/creole/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +ruby_add_bdepend "test? ( dev-ruby/bacon )" + +all_ruby_prepare() { + sed -e 's/git ls-files --/echo/' \ + -e 's/git ls-files/find -print/' \ + -i ${RUBY_FAKEGEM_GEMSPEC} || die +} |