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/tilt/
Date: Wed, 10 Apr 2019 06:24:42
Message-Id: 1554877472.12de6dac39f343e07ac32b29aaad5d4bcd8b44d1.graaff@gentoo
1 commit: 12de6dac39f343e07ac32b29aaad5d4bcd8b44d1
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 10 06:22:11 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 10 06:24:32 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12de6dac
7
8 dev-ruby/tilt: cleanup
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11 Package-Manager: Portage-2.3.62, Repoman-2.3.11
12
13 dev-ruby/tilt/Manifest | 1 -
14 dev-ruby/tilt/tilt-2.0.8.ebuild | 42 -----------------------------------------
15 2 files changed, 43 deletions(-)
16
17 diff --git a/dev-ruby/tilt/Manifest b/dev-ruby/tilt/Manifest
18 index 39209f830ef..5de5195b1ae 100644
19 --- a/dev-ruby/tilt/Manifest
20 +++ b/dev-ruby/tilt/Manifest
21 @@ -1,3 +1,2 @@
22 DIST tilt-2.0.5.gem 52224 BLAKE2B c3bcd3cbf45ec3cd7669e5f3adb97f26508b5fc57fa234af8074422f7de62be8fca960d94a9b637b8adf8825b7b31cb5049b48bf75c08565b4ba42e2d37b3493 SHA512 b032439d00e09d3968b20f5ea5937c5918b1e10e0255cce402b6859b7d59ecdc265523a151c0fcca0034e0de26ca5fe422944790939896d7e0000641980764fa
23 -DIST tilt-2.0.8.gem 54784 BLAKE2B 14b067227a1c81060b4627d39fadcae00300fa30c3b4741c2c07f0e69bbe62b1f1e8f3a165f43ff72c9788d3621a133375c3be72c9bf16f0c18686f550bc3c16 SHA512 1767f2e5ce45afe95d84d32de7c2b6fe24ff7cb6f7ee8485d84344820b2f6e969ae60a6fbaa7141f7fe135c6540d96fa5b27fd8010b95c0ded5d049a315001d5
24 DIST tilt-2.0.9.gem 55296 BLAKE2B dd181295d2317ef591e9b89a0a4cf29680a05403c89c33680f563459ebbfc675bfaef14c864f8c8834103fc2ea069b33dc928f2b804d911eec21b09427f7c619 SHA512 522b2b40ca1eefc7df66cb421c66734699a2ffb1e7d1797181c2718f7ca018d3376c1a2b3617b5d3549115af69108db4c3c4632e2682329d5baf24bfdae92b42
25
26 diff --git a/dev-ruby/tilt/tilt-2.0.8.ebuild b/dev-ruby/tilt/tilt-2.0.8.ebuild
27 deleted file mode 100644
28 index 283dbee57fb..00000000000
29 --- a/dev-ruby/tilt/tilt-2.0.8.ebuild
30 +++ /dev/null
31 @@ -1,42 +0,0 @@
32 -# Copyright 1999-2018 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -USE_RUBY="ruby22 ruby23 ruby24 ruby25"
38 -
39 -RUBY_FAKEGEM_TASK_DOC=""
40 -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md docs/TEMPLATES.md"
41 -
42 -inherit ruby-fakegem
43 -
44 -DESCRIPTION="Thin interface over template engines to make their usage as generic as possible"
45 -HOMEPAGE="https://github.com/rtomayko/tilt"
46 -
47 -LICENSE="MIT"
48 -SLOT="2"
49 -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
50 -IUSE=""
51 -
52 -# Block on some of the potential test dependencies. These dependencies
53 -# are optional for the test suite, and we don't want to depend on all of
54 -# them to faciliate keywording and stabling.
55 -ruby_add_bdepend "test? (
56 - dev-ruby/bluecloth
57 - dev-ruby/coffee-script
58 - dev-ruby/erubis
59 - dev-ruby/nokogiri
60 - !!<dev-ruby/maruku-0.7.2 )"
61 -
62 -ruby_add_rdepend "!!<dev-ruby/tilt-1.4.1-r2:0"
63 -
64 -all_ruby_prepare() {
65 - rm Gemfile || die
66 - sed -e '/bundler/I s:^:#:' -i Rakefile test/test_helper.rb || die
67 -
68 - # Avoid tests with minor syntax differences since this happens all
69 - # the time when details in the dependencies change.
70 - sed -e '/test_smarty_pants_true/,/^ end/ s:^:#:' \
71 - -e '/test_smart_quotes_true/,/^ end/ s:^:#:' -i test/tilt_markdown_test.rb || die
72 - sed -e '/smartypants when :smart is set/,/^ end/ s:^:#:' -i test/tilt_rdiscounttemplate_test.rb || die
73 -}