Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/haml/
Date: Thu, 01 Jun 2017 05:10:26
Message-Id: 1496293297.286fab5121bbb4e6eda736a7d624c81f407df111.graaff@gentoo
1 commit: 286fab5121bbb4e6eda736a7d624c81f407df111
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 1 05:01:37 2017 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 1 05:01:37 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=286fab51
7
8 dev-ruby/haml: cleanup
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.1
11
12 dev-ruby/haml/haml-4.0.7.ebuild | 50 -----------------------------------------
13 1 file changed, 50 deletions(-)
14
15 diff --git a/dev-ruby/haml/haml-4.0.7.ebuild b/dev-ruby/haml/haml-4.0.7.ebuild
16 deleted file mode 100644
17 index 2fe91873f46..00000000000
18 --- a/dev-ruby/haml/haml-4.0.7.ebuild
19 +++ /dev/null
20 @@ -1,50 +0,0 @@
21 -# Copyright 1999-2016 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -
26 -USE_RUBY="ruby20 ruby21 ruby22"
27 -
28 -RUBY_FAKEGEM_TASK_TEST="test"
29 -RUBY_FAKEGEM_TASK_DOC="-Ilib doc"
30 -
31 -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md FAQ.md README.md REFERENCE.md"
32 -RUBY_FAKEGEM_DOCDIR="doc"
33 -
34 -inherit ruby-fakegem
35 -
36 -DESCRIPTION="A ruby web page templating engine"
37 -HOMEPAGE="http://haml-lang.com/"
38 -
39 -LICENSE="MIT"
40 -SLOT="4"
41 -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
42 -
43 -IUSE="doc test"
44 -
45 -RDEPEND="${RDEPEND} !!<dev-ruby/haml-3.1.8-r2"
46 -
47 -ruby_add_rdepend "dev-ruby/tilt:*"
48 -
49 -ruby_add_bdepend "
50 - test? (
51 - dev-ruby/minitest:5
52 - dev-ruby/nokogiri
53 - dev-ruby/rails:4.2
54 - )
55 - doc? (
56 - dev-ruby/yard
57 - >=dev-ruby/maruku-0.7.2-r1
58 - )"
59 -
60 -all_ruby_prepare() {
61 - sed -i -e '/bundler/ s:^:#:' \
62 - -e 's/gem "minitest"/gem "minitest", "~>5.0"/'\
63 - -e '1igem "actionpack", "~>4.2"'\
64 - -e '1igem "activesupport", "~>4.2"'\
65 - -e '1igem "railties", "~>4.2"'\
66 - test/test_helper.rb || die
67 - # Remove test that fails when RedCloth is available
68 - sed -i -e "/should raise error when a Tilt filters dependencies are unavailable for extension/,+9 s/^/#/"\
69 - test/filters_test.rb || die
70 -}