From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 02E191395E2 for ; Sun, 27 Nov 2016 10:39:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 60644E0B5A; Sun, 27 Nov 2016 10:39:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4998CE0B5A for ; Sun, 27 Nov 2016 10:39:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6E07A34106E for ; Sun, 27 Nov 2016 10:39:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AD91C24A4 for ; Sun, 27 Nov 2016 10:39:25 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1480243155.c188eac90f50c6da10ce4118f4fd48b80ad1edcd.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/maruku/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/maruku/maruku-0.7.2.ebuild X-VCS-Directories: dev-ruby/maruku/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: c188eac90f50c6da10ce4118f4fd48b80ad1edcd X-VCS-Branch: master Date: Sun, 27 Nov 2016 10:39:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 7f927638-ba75-42d3-9563-f7e74c50fff7 X-Archives-Hash: 9a7beaf0650f6d0f6a9cede6b2b2a4c3 commit: c188eac90f50c6da10ce4118f4fd48b80ad1edcd Author: Hans de Graaff gentoo org> AuthorDate: Sun Nov 27 10:38:43 2016 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sun Nov 27 10:39:15 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c188eac9 dev-ruby/maruku: cleanup Package-Manager: portage-2.3.0 dev-ruby/maruku/maruku-0.7.2.ebuild | 43 ------------------------------------- 1 file changed, 43 deletions(-) diff --git a/dev-ruby/maruku/maruku-0.7.2.ebuild b/dev-ruby/maruku/maruku-0.7.2.ebuild deleted file mode 100644 index ecd48d0..00000000 --- a/dev-ruby/maruku/maruku-0.7.2.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -USE_RUBY="ruby20" - -RUBY_FAKEGEM_RECIPE_TEST="rspec" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" -RUBY_FAKEGEM_DOCDIR="doc" -RUBY_FAKEGEM_EXTRADOC="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" -RUBY_FAKEGEM_EXTRAINSTALL="data" - -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" -IUSE="highlight test" - -ruby_add_bdepend "test? ( dev-ruby/nokogiri-diff )" -ruby_add_rdepend "highlight? ( dev-ruby/syntax )" - -DEPEND+=" test? ( app-text/blahtexml )" - -all_ruby_prepare() { - sed -i -e '/[Ss]imple[Cc]ov/ s:^:#:' spec/spec_helper.rb || 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 -}