public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/wikicloth/files/, dev-ruby/wikicloth/
@ 2018-12-12  9:30 Hans de Graaff
  0 siblings, 0 replies; only message in thread
From: Hans de Graaff @ 2018-12-12  9:30 UTC (permalink / raw
  To: gentoo-commits

commit:     bb90530d2d255ec025bff6db16ccdc6eb141d06d
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 12 09:29:12 2018 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Wed Dec 12 09:29:12 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb90530d

dev-ruby/wikicloth: remove masked package, bug 661262

Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>

 dev-ruby/wikicloth/Manifest                        |  1 -
 .../files/wikicloth-0.8.3-fix-tests.patch          | 68 ----------------------
 dev-ruby/wikicloth/metadata.xml                    | 11 ----
 dev-ruby/wikicloth/wikicloth-0.8.3.ebuild          | 44 --------------
 4 files changed, 124 deletions(-)

diff --git a/dev-ruby/wikicloth/Manifest b/dev-ruby/wikicloth/Manifest
deleted file mode 100644
index 13b48d3fa5e..00000000000
--- a/dev-ruby/wikicloth/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST wikicloth-0.8.3.tar.gz 120576 BLAKE2B 50b9982e048ec095264b2aa1f965e25ca5f8082ed0e2a7803546dcf7e904465dcdcdc84756caa8f9ae580333f5d86fde735f327e60a9b1ab7eb007c94e73629b SHA512 8b9e1fbfd58a965ad93d5963d6b9e22eaf6b6805a4946b47a8b5f88071e4321c72f5715619622b404807a4b2bfcd6e966812a80b1f9c5fdd767cc6b7ade79221

diff --git a/dev-ruby/wikicloth/files/wikicloth-0.8.3-fix-tests.patch b/dev-ruby/wikicloth/files/wikicloth-0.8.3-fix-tests.patch
deleted file mode 100644
index b50752a9ae9..00000000000
--- a/dev-ruby/wikicloth/files/wikicloth-0.8.3-fix-tests.patch
+++ /dev/null
@@ -1,68 +0,0 @@
-From 5c84028cadb36e7e2a220c7ab05398722c6d0e84 Mon Sep 17 00:00:00 2001
-From: Per Andersson <avtobiff@gmail.com>
-Date: Sat, 10 Oct 2015 22:33:58 +0200
-Subject: [PATCH 1/2] Update output assert in autolinking pre statement
-
-The <pre> tag doesn't keep html entities.
----
- test/wiki_cloth_test.rb | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/test/wiki_cloth_test.rb b/test/wiki_cloth_test.rb
-index 2f0481a..483cecf 100644
---- a/test/wiki_cloth_test.rb
-+++ b/test/wiki_cloth_test.rb
-@@ -58,7 +58,7 @@ class WikiClothTest < Test::Unit::TestCase
-   test "autolinking keeps html entities intact" do
-     wiki = WikiCloth::Parser.new(:data => "<div>&amp; &gt;</div><pre>&amp; &lt;</pre> https://github.com/repo/README.md &gt; &amp;")
-     data = wiki.to_html
--    assert_equal "\n<p><div>&amp; &gt;</div><pre>&amp; &lt;</pre> <a href=\"https://github.com/repo/README.md\">https://github.com/repo/README.md</a> &gt; &amp;</p>", data
-+    assert_equal "\n<p><div>&amp; &gt;</div><pre>&amp;amp&#59; &amp;lt&#59;</pre> <a href=\"https://github.com/repo/README.md\">https://github.com/repo/README.md</a> &gt; &amp;</p>", data
-   end
- 
-   test "image url override" do
-
-From a7eccc2970b0f1b1973881fe139b1f2cb51af2eb Mon Sep 17 00:00:00 2001
-From: Per Andersson <avtobiff@gmail.com>
-Date: Sat, 10 Oct 2015 22:40:25 +0200
-Subject: [PATCH 2/2] Update output for table of content tests
-
-Newlines seems to have been removed from HTML output for TOC.
-
-* empty item in toc
-* toc declared as list
-* toc numbered
----
- test/wiki_cloth_test.rb | 8 +++++---
- 1 file changed, 5 insertions(+), 3 deletions(-)
-
-diff --git a/test/wiki_cloth_test.rb b/test/wiki_cloth_test.rb
-index 483cecf..198295c 100644
---- a/test/wiki_cloth_test.rb
-+++ b/test/wiki_cloth_test.rb
-@@ -446,7 +446,7 @@ class WikiClothTest < Test::Unit::TestCase
-   test "empty item in toc" do
-     wiki = WikiCloth::WikiCloth.new({:data => "__TOC__\n=A="})
-     data = wiki.render
--    assert data.include?("<table id=\"toc\" class=\"toc\" summary=\"Contents\"><tr><td>\n<div id=\"toctitle\"><h2>Table of Contents</h2></div>\n<ul><li><a href=\"#A\">A</a></li></ul>\n</td></tr></table>")
-+    assert data.include?('<table id="toc" class="toc" summary="Contents"><tr><td><div id="toctitle"><h2>Table of Contents</h2></div><ul></li><li><a href="#A">A</a></li></ul></td></tr></table>')
-   end
- 
-   test "pre at beginning" do
-@@ -458,12 +458,14 @@ class WikiClothTest < Test::Unit::TestCase
-   test "toc declared as list" do
-     wiki = WikiCloth::WikiCloth.new({:data => "__TOC__\n=A=\n==B==\n===C==="})
-     data = wiki.render
--    assert data.include?("<table id=\"toc\" class=\"toc\" summary=\"Contents\"><tr><td>\n<div id=\"toctitle\"><h2>Table of Contents</h2></div>\n<ul><li>\n<a href=\"#A\">A</a><ul><li>\n<a href=\"#B\">B</a><ul><li><a href=\"#C\">C</a></li></ul>\n</li></ul>\n</li></ul>\n</td></tr></table>")
-+    puts data
-+    assert data.include?('<table id="toc" class="toc" summary="Contents"><tr><td><div id="toctitle"><h2>Table of Contents</h2></div><ul></li><li><a href="#A">A</a><ul><li><a href="#B">B</a><ul><li><a href="#C">C</a></li></ul></ul></ul></td></tr></table>')
-   end
- 
-   test "toc numbered" do
-     wiki = WikiCloth::WikiCloth.new({:data => "=A=\n=B=\n==C==\n==D==\n===E===\n===F===\n====G====\n====H====\n==I==\n=J=\n=K=\n===L===\n===M===\n====N====\n====O===="})
-     data = wiki.render(:noedit => true, :toc_numbered => true)
--    assert data.include?("<table id=\"toc\" class=\"toc\" summary=\"Contents\"><tr><td>\n<div id=\"toctitle\"><h2>Table of Contents</h2></div>\n<ul>\n<li><a href=\"#A\">1 A</a></li>\n<li>\n<a href=\"#B\">2 B</a><ul>\n<li><a href=\"#C\">2.1 C</a></li>\n<li>\n<a href=\"#D\">2.2 D</a><ul>\n<li><a href=\"#E\">2.2.1 E</a></li>\n<li>\n<a href=\"#F\">2.2.2 F</a><ul>\n<li><a href=\"#G\">2.2.2.1 G</a></li>\n<li><a href=\"#H\">2.2.2.2 H</a></li>\n</ul>\n</li>\n</ul>\n</li>\n<li><a href=\"#I\">2.3 I</a></li>\n</ul>\n</li>\n<li><a href=\"#J\">3 J</a></li>\n<li>\n<a href=\"#K\">4 K</a><ul><ul>\n<li><a href=\"#L\">4.1 L</a></li>\n<li>\n<a href=\"#M\">4.2 M</a><ul>\n<li><a href=\"#N\">4.2.1 N</a></li>\n<li><a href=\"#O\">4.2.2 O</a></li>\n</ul>\n</li>\n</ul></ul>\n</li>\n</ul>\n</td></tr></table>")
-+    assert data.include?('<table id="toc" class="toc" summary="Contents"><tr><td><div id="toctitle"><h2>Table of Contents</h2></div><ul></li><li><a href="#A">1 A</a></li><li><a href="#B">2 B</a><ul><li><a href="#C">2.1 C</a></li><li><a href="#D">2.2 D</a><ul><li><a href="#E">2.2.1 E</a></li><li><a href="#F">2.2.2 F</a><ul><li><a href="#G">2.2.2.1 G</a></li><li><a href="#H">2.2.2.2 H</a></li></ul></ul><li><a href="#I">2.3 I</a></li></ul><li><a href="#J">3 J</a></li><li><a href="#K">4 K</a><ul><ul><li><a href="#L">4.1 L</a></li><li><a href="#M">4.2 M</a><ul><li><a href="#N">4.2.1 N</a></li><li><a href="#O">4.2.2 O</a></li></ul></ul></ul></ul></td></tr></table>')
-+
-   end
- end

diff --git a/dev-ruby/wikicloth/metadata.xml b/dev-ruby/wikicloth/metadata.xml
deleted file mode 100644
index 548849f88c9..00000000000
--- a/dev-ruby/wikicloth/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-  <maintainer type="project">
-    <email>ruby@gentoo.org</email>
-    <name>Gentoo Ruby Project</name>
-  </maintainer>
-  <upstream>
-    <remote-id type="github">nricciar/wikicloth</remote-id>
-  </upstream>
-</pkgmetadata>

diff --git a/dev-ruby/wikicloth/wikicloth-0.8.3.ebuild b/dev-ruby/wikicloth/wikicloth-0.8.3.ebuild
deleted file mode 100644
index 9ad0db53216..00000000000
--- a/dev-ruby/wikicloth/wikicloth-0.8.3.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-USE_RUBY="ruby21 ruby22 ruby23"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="README README.textile"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A mediawiki parser"
-HOMEPAGE="https://github.com/nricciar/wikicloth"
-SRC_URI="https://github.com/nricciar/wikicloth/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-RUBY_PATCHES=( "${FILESDIR}"/${P}-fix-tests.patch )
-
-ruby_add_rdepend "dev-ruby/builder:*
-	dev-ruby/expression_parser
-	dev-ruby/htmlentities
-	dev-ruby/nokogiri
-	dev-ruby/rinku
-	dev-ruby/twitter-text"
-ruby_add_bdepend "test? (
-	dev-ruby/activesupport
-	dev-ruby/test-unit
-	dev-ruby/i18n )"
-
-all_ruby_prepare() {
-	sed -i \
-		-e '/[Bb]undler/d' \
-		-e "/require 'simplecov'/d" \
-		Rakefile || die "sed failed"
-	sed -i -e '1igem "test-unit"' test/test_helper.rb
-}
-
-each_ruby_test() {
-	${RUBY} -Ilib:test test/wiki_cloth_test.rb || die
-}


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2018-12-12  9:30 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-12-12  9:30 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/wikicloth/files/, dev-ruby/wikicloth/ Hans de Graaff

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox