diff options
author | Hans de Graaff <graaff@gentoo.org> | 2021-03-20 08:33:28 +0100 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2021-03-20 08:39:04 +0100 |
commit | c0fdb25d1ac906103801ab36bda72c58b01e8a50 (patch) | |
tree | 66dd791b0804d85d40f7fff7d448439e86b533f2 /dev-ruby | |
parent | dev-ruby/kramdown: add 2.3.1 (diff) | |
download | gentoo-c0fdb25d1ac906103801ab36bda72c58b01e8a50.tar.gz gentoo-c0fdb25d1ac906103801ab36bda72c58b01e8a50.tar.bz2 gentoo-c0fdb25d1ac906103801ab36bda72c58b01e8a50.zip |
dev-ruby/kramdown: cleanup
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/kramdown/Manifest | 1 | ||||
-rw-r--r-- | dev-ruby/kramdown/kramdown-2.3.0.ebuild | 52 |
2 files changed, 0 insertions, 53 deletions
diff --git a/dev-ruby/kramdown/Manifest b/dev-ruby/kramdown/Manifest index 5480f134fb06..3be1f5ea627a 100644 --- a/dev-ruby/kramdown/Manifest +++ b/dev-ruby/kramdown/Manifest @@ -1,2 +1 @@ -DIST kramdown-2.3.0.gem 121344 BLAKE2B 0494afe84123503cb1e2f31c512c1b8cace1a81a3f32488e9719d47f1614a20fb86aa007187f2802e9b5c041031e8b6258da9909cbb1bbad0aa94d519821fb14 SHA512 a3ed8360de9208d5ce658d198763737826db943d23dda7ca9cfd507a4656c39f2b19ece78af87981b1177fe01690d6647c854092b230cf3a8a7d2823dc83d276 DIST kramdown-2.3.1.gem 122368 BLAKE2B 731e20904f238f44db594c7b8efac858187c935d9fbf8a421ddceeb1aa486f0980b502953f8eaa7e3100f7b7722d09b1da35091d28977c70cfd1ef24a080c3e1 SHA512 d1955065e3c5d7a60e595b647d5e453cf07a08fe25d40c67cf6f32d30f704a2c653a52959f8c71b3290e6da74836a085fa6bf8201c878303ad572dee8cc64496 diff --git a/dev-ruby/kramdown/kramdown-2.3.0.ebuild b/dev-ruby/kramdown/kramdown-2.3.0.ebuild deleted file mode 100644 index a16c856eeed5..000000000000 --- a/dev-ruby/kramdown/kramdown-2.3.0.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -USE_RUBY="ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_EXTRADOC="README.md AUTHORS CONTRIBUTERS" - -RUBY_FAKEGEM_EXTRAINSTALL="data" - -inherit ruby-fakegem - -DESCRIPTION="Yet-another-markdown-parser but fast, pure Ruby, using strict syntax definition" -HOMEPAGE="https://kramdown.gettalong.org/" - -LICENSE="MIT" - -SLOT="$(ver_cut 1)" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64" -IUSE="latex" - -LATEX_DEPS="latex? ( dev-texlive/texlive-latex dev-texlive/texlive-latexextra )" -RDEPEND+=" ${LATEX_DEPS}" -DEPEND+=" test? ( ${LATEX_DEPS} app-text/tidy-html5 )" - -ruby_add_rdepend " - dev-ruby/rexml - >=dev-ruby/rouge-1.8 - >=dev-ruby/stringex-1.5.1 - !!<dev-ruby/kramdown-1.17.0-r2:0" - -ruby_add_bdepend "doc? ( dev-ruby/rdoc ) - test? ( >=dev-ruby/minitest-5.0 )" - -all_ruby_prepare() { - if ! use latex; then - # Remove latex tests. They will fail gracefully when latex isn't - # present at all, but not when components are missing (most - # notable ucs.sty). - sed -i -e '/latex -v/,/^ end/ s:^:#:' test/test_files.rb || die - fi -} - -each_ruby_test() { - ${RUBY} -Ilib:. -e "Dir['test/test_*.rb'].each{|f| require f}" || die -} - -all_ruby_install() { - all_fakegem_install - - doman man/man1/kramdown.1 -} |