From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1018654-garchives=archives.gentoo.org@lists.gentoo.org>
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 2A7FF1382C5
	for <garchives@archives.gentoo.org>; Thu, 19 Apr 2018 19:37:42 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 5D856E0AAF;
	Thu, 19 Apr 2018 19:37:41 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 36974E0AAF
	for <gentoo-commits@lists.gentoo.org>; Thu, 19 Apr 2018 19:37:41 +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 50878335C75
	for <gentoo-commits@lists.gentoo.org>; Thu, 19 Apr 2018 19:37:40 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id BD382288
	for <gentoo-commits@lists.gentoo.org>; Thu, 19 Apr 2018 19:37:38 +0000 (UTC)
From: "Hans de Graaff" <graaff@gentoo.org>
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" <graaff@gentoo.org>
Message-ID: <1524166605.134ac291be8fd185601fca7a9f0b809de1d5a37f.graaff@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/coffee-rails/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-ruby/coffee-rails/coffee-rails-4.2.2.ebuild
X-VCS-Directories: dev-ruby/coffee-rails/
X-VCS-Committer: graaff
X-VCS-Committer-Name: Hans de Graaff
X-VCS-Revision: 134ac291be8fd185601fca7a9f0b809de1d5a37f
X-VCS-Branch: master
Date: Thu, 19 Apr 2018 19:37:38 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: cb723f04-040e-49ad-8825-ae6712decbb4
X-Archives-Hash: f1bfe62d4d5c39de3f1105706f962a45

commit:     134ac291be8fd185601fca7a9f0b809de1d5a37f
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 19 18:39:45 2018 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Thu Apr 19 19:36:45 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=134ac291

dev-ruby/coffee-rails: cleanup

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ruby/coffee-rails/coffee-rails-4.2.2.ebuild | 34 -------------------------
 1 file changed, 34 deletions(-)

diff --git a/dev-ruby/coffee-rails/coffee-rails-4.2.2.ebuild b/dev-ruby/coffee-rails/coffee-rails-4.2.2.ebuild
deleted file mode 100644
index d45bfbf14c6..00000000000
--- a/dev-ruby/coffee-rails/coffee-rails-4.2.2.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby21 ruby22 ruby23"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-inherit ruby-fakegem versionator
-
-DESCRIPTION="Coffee Script adapter for the Rails asset pipeline"
-HOMEPAGE="https://github.com/rails/coffee-rails"
-SRC_URI="https://github.com/rails/coffee-rails/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux"
-
-IUSE=""
-
-ruby_add_rdepend ">=dev-ruby/coffee-script-2.2.0
-	>dev-ruby/railties-4:*"
-
-all_ruby_prepare() {
-	# Avoid dependency on git and bundler.
-	sed -i -e 's/git ls-files/echo/' \
-		-e '/bundler/I s:^:#:' Rakefile || die
-
-	# Make sure a consistent rails version is loaded.
-	sed -i -e '4igem "rails"' -e '/bundler/ s:^:#:' test/test_helper.rb || die
-}