diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2020-06-18 11:26:52 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2020-06-18 11:30:40 -0700 |
commit | 8b7b6e78f4895488ced910ee1fe3448366bff87b (patch) | |
tree | 14654d8884491d247ed7904f5d2678b83e0a3fd4 /dev-ruby/kramdown-parser-gfm/kramdown-parser-gfm-1.1.0.ebuild | |
parent | profiles/arch/hppa: Unmask py3.8 & py3.9 targets (diff) | |
download | gentoo-8b7b6e78f4895488ced910ee1fe3448366bff87b.tar.gz gentoo-8b7b6e78f4895488ced910ee1fe3448366bff87b.tar.bz2 gentoo-8b7b6e78f4895488ced910ee1fe3448366bff87b.zip |
dev-ruby/kramdown-parser-gfm: new package
Imported from graaff overlay.
kramdown-parser-gfm was previously part of kramdown-1 package, but
upstream split it to a seperate package.
This is a dependency for building the www.gentoo.org site.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'dev-ruby/kramdown-parser-gfm/kramdown-parser-gfm-1.1.0.ebuild')
-rw-r--r-- | dev-ruby/kramdown-parser-gfm/kramdown-parser-gfm-1.1.0.ebuild | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/dev-ruby/kramdown-parser-gfm/kramdown-parser-gfm-1.1.0.ebuild b/dev-ruby/kramdown-parser-gfm/kramdown-parser-gfm-1.1.0.ebuild new file mode 100644 index 000000000000..8154ac67e4b5 --- /dev/null +++ b/dev-ruby/kramdown-parser-gfm/kramdown-parser-gfm-1.1.0.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +USE_RUBY="ruby24 ruby25 ruby26" + +inherit ruby-fakegem + +DESCRIPTION="A kramdown parser for the GFM dialect of Markdown" +HOMEPAGE="https://github.com/kramdown/parser-gfm" +LICENSE="MIT" + +KEYWORDS="~amd64" +SLOT="$(ver_cut 1)" +IUSE="doc" + +ruby_add_rdepend "dev-ruby/kramdown:2" + +each_ruby_test() { + ${RUBY} -Ilib:. -e 'Dir["test/test_*.rb"].each{|f| require f}' || die +} |