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 DDBF7139694 for ; Thu, 18 May 2017 05:22:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 28FCDE0E42; Thu, 18 May 2017 05:22:34 +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 086CEE0E42 for ; Thu, 18 May 2017 05:22:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AEC84341686 for ; Thu, 18 May 2017 05:22:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1DCC3745C for ; Thu, 18 May 2017 05:22:31 +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: <1495084026.c12e0addc4a2934b7c6178cd5bc1a1df47d56fbb.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/slim/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/slim/slim-3.0.7.ebuild X-VCS-Directories: dev-ruby/slim/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: c12e0addc4a2934b7c6178cd5bc1a1df47d56fbb X-VCS-Branch: master Date: Thu, 18 May 2017 05:22:31 +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: 3c2f239d-8926-4a5c-95fa-964d7c7c0761 X-Archives-Hash: bdd4badc804e297d6ef65860b93a811c commit: c12e0addc4a2934b7c6178cd5bc1a1df47d56fbb Author: Hans de Graaff gentoo org> AuthorDate: Thu May 18 05:07:06 2017 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Thu May 18 05:07:06 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c12e0add dev-ruby/slim: cleanup Package-Manager: Portage-2.3.5, Repoman-2.3.1 dev-ruby/slim/slim-3.0.7.ebuild | 45 ----------------------------------------- 1 file changed, 45 deletions(-) diff --git a/dev-ruby/slim/slim-3.0.7.ebuild b/dev-ruby/slim/slim-3.0.7.ebuild deleted file mode 100644 index 7e3da4a828e..00000000000 --- a/dev-ruby/slim/slim-3.0.7.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22 ruby23" - -RUBY_FAKEGEM_EXTRADOC="CHANGES README.md" - -RUBY_FAKEGEM_DOCDIR="doc" -RUBY_FAKEGEM_TASK_DOC="yard" - -inherit ruby-fakegem - -DESCRIPTION="A template language aiming to reduce the syntax to the essential parts" -HOMEPAGE="http://slim-lang.com/" -LICENSE="MIT" - -KEYWORDS="~amd64 ~arm ~ppc" -SLOT="0" -IUSE="doc" - -ruby_add_rdepend ">=dev-ruby/tilt-1.3.3:* =dev-ruby/temple-0.7.3:0.7" - -ruby_add_bdepend "doc? ( dev-ruby/yard dev-ruby/redcarpet )" - -ruby_add_bdepend "test? ( dev-ruby/sass )" - -all_ruby_prepare() { - sed -i -e '/bundler/I s:^:#:' Rakefile || die - - # This sinatra code expects tests to be installed but we strip those. - sed -i -e "s/require 'sinatra'/require 'bogussinatra'/" Rakefile || die - - # Avoid tests for things we don't have. The builder test does not pass with tilt 2.x - sed -i -e '/test_wip_render_with_asciidoc/,/^ end/ s:^:#:' \ - -e '/test_render_with_wiki/,/^ end/ s:^:#:' \ - -e '/test_render_with_creole/,/^ end/ s:^:#:' \ - -e '/test_render_with_builder/,/^ end/ s:^:#:' \ - -e '/test_render_with_org/,/^ end/ s:^:#:' test/core/test_embedded_engines.rb || die -} - -each_ruby_prepare() { - sed -i -e '/Open3/ s:ruby:'${RUBY}':' test/core/test_commands.rb || die -}