summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-08-03 18:43:30 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-08-03 18:43:30 +0000
commit7dd5c3f92c96269037f4e44a70f4482f74cd47df (patch)
treec13e9ededf8dd343447ec9ecfcc885d526f1dc05 /dev-ruby
parentAdd quotes to support reading from files with spaces in the filename. (diff)
downloadgentoo-2-7dd5c3f92c96269037f4e44a70f4482f74cd47df.tar.gz
gentoo-2-7dd5c3f92c96269037f4e44a70f4482f74cd47df.tar.bz2
gentoo-2-7dd5c3f92c96269037f4e44a70f4482f74cd47df.zip
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-ruby')
-rw-r--r--dev-ruby/maruku/ChangeLog5
-rw-r--r--dev-ruby/maruku/maruku-0.6.1.ebuild49
2 files changed, 4 insertions, 50 deletions
diff --git a/dev-ruby/maruku/ChangeLog b/dev-ruby/maruku/ChangeLog
index 916a47c69252..dfec18d45c95 100644
--- a/dev-ruby/maruku/ChangeLog
+++ b/dev-ruby/maruku/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/maruku
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/maruku/ChangeLog,v 1.47 2015/08/03 13:50:12 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/maruku/ChangeLog,v 1.48 2015/08/03 18:43:30 mrueg Exp $
+
+ 03 Aug 2015; Manuel Rüger <mrueg@gentoo.org> -maruku-0.6.1.ebuild:
+ Remove old.
03 Aug 2015; Agostino Sarubbo <ago@gentoo.org> maruku-0.7.2.ebuild:
Stable for x86, wrt bug #555846
diff --git a/dev-ruby/maruku/maruku-0.6.1.ebuild b/dev-ruby/maruku/maruku-0.6.1.ebuild
deleted file mode 100644
index ec01f0133126..000000000000
--- a/dev-ruby/maruku/maruku-0.6.1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/maruku/maruku-0.6.1.ebuild,v 1.8 2014/11/10 16:08:44 mrueg Exp $
-
-EAPI=5
-
-USE_RUBY="ruby19"
-
-RUBY_FAKEGEM_TASK_TEST=""
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_DOCDIR="doc"
-RUBY_FAKEGEM_EXTRADOC="docs/changelog.md docs/div_syntax.md docs/entity_test.md
- docs/markdown_syntax.md docs/maruku.md docs/math.md docs/other_stuff.md
- docs/proposal.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A Markdown-superset interpreter written in Ruby"
-HOMEPAGE="https://github.com/bhollis/maruku"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE=""
-
-ruby_add_rdepend dev-ruby/syntax
-
-all_ruby_prepare() {
- sed -i \
- -e '/Gem::manage_gems/s:^:#:' \
- -e '/jamis\.rb/s:^:#:' \
- Rakefile
-}
-
-each_ruby_test() {
- # Unit tests fail in various ways. Skip them for now since we never ran
- # tests for earlier versions at all. No clear upstream to report to...
- # ${RUBY} -Ilib bin/marutest $(find tests/unittest -name '*.md') || die
- ${RUBY} -Ilib lib/maruku/tests/new_parser.rb v b || die
-}
-
-pkg_postinst() {
- elog
- elog "You need to emerge app-text/texlive and dev-texlive/texlive-latexextra if"
- elog "you want to use --pdf with Maruku. You may also want to emerge"
- elog "dev-texlive/texlive-latexrecommended to enable LaTeX syntax highlighting."
- elog
-}