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 1FF53139694 for ; Sun, 28 May 2017 05:57:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 23718E0D0B; Sun, 28 May 2017 05:57:29 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 F2ED7E0D0B for ; Sun, 28 May 2017 05:57:28 +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 A3DE3340988 for ; Sun, 28 May 2017 05:57:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 19F72745F for ; Sun, 28 May 2017 05:57:26 +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: <1495951039.dfdade27ce97a54dca65e8a794f307f30f043429.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/roadie/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/roadie/roadie-3.2.1-r2.ebuild X-VCS-Directories: dev-ruby/roadie/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: dfdade27ce97a54dca65e8a794f307f30f043429 X-VCS-Branch: master Date: Sun, 28 May 2017 05:57:26 +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: 74e92540-95a9-40e1-a3fd-562c596092b0 X-Archives-Hash: abfbf4322ef3a45bb4f53647e21d3ded commit: dfdade27ce97a54dca65e8a794f307f30f043429 Author: Hans de Graaff gentoo org> AuthorDate: Sun May 28 05:46:57 2017 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sun May 28 05:57:19 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfdade27 dev-ruby/roadie: make css_parser dependency more lenient Package-Manager: Portage-2.3.5, Repoman-2.3.1 dev-ruby/roadie/roadie-3.2.1-r2.ebuild | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/dev-ruby/roadie/roadie-3.2.1-r2.ebuild b/dev-ruby/roadie/roadie-3.2.1-r2.ebuild new file mode 100644 index 00000000000..b7f0d2a9ca4 --- /dev/null +++ b/dev-ruby/roadie/roadie-3.2.1-r2.ebuild @@ -0,0 +1,33 @@ +# 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_EXTRADOC="README.md" +RUBY_FAKEGEM_RECIPE_TEST="rspec3" +RUBY_FAKEGEM_RECIPE_DOC="yard" + +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Making HTML emails comfortable for the Rails rockstars" +HOMEPAGE="https://github.com/Mange/roadie" +SRC_URI="https://github.com/Mange/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +ruby_add_rdepend ">=dev-ruby/nokogiri-1.5.0 + >=dev-ruby/css_parser-1.4.5 =dev-ruby/css_parser-1.4*" +ruby_add_bdepend "test? ( dev-ruby/rspec-collection_matchers dev-ruby/webmock )" + +all_ruby_prepare() { + sed -i -e "/[Bb]undler/d" Rakefile || die + sed -i -e 's/git ls-files/find . -type f -print/' \ + -e '/test_files/d' \ + -e '/css_parser/ s/~>/>=/' ${RUBY_FAKEGEM_GEMSPEC} || die +}