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