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/power_assert/
Date: Wed, 01 Feb 2017 07:02:32
Message-Id: 1485932528.c7607468d6fffaee6a2b6ad59c38fcd5bd973239.graaff@gentoo
1 commit: c7607468d6fffaee6a2b6ad59c38fcd5bd973239
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 1 06:47:55 2017 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 1 07:02:08 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7607468
7
8 dev-ruby/power_assert: cleanup
9
10 Package-Manager: portage-2.3.3
11
12 dev-ruby/power_assert/power_assert-1.0.1.ebuild | 36 -------------------------
13 1 file changed, 36 deletions(-)
14
15 diff --git a/dev-ruby/power_assert/power_assert-1.0.1.ebuild b/dev-ruby/power_assert/power_assert-1.0.1.ebuild
16 deleted file mode 100644
17 index e62f5b4..00000000
18 --- a/dev-ruby/power_assert/power_assert-1.0.1.ebuild
19 +++ /dev/null
20 @@ -1,36 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=5
26 -USE_RUBY="ruby20 ruby21 ruby22 ruby23 ruby24"
27 -
28 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
29 -RUBY_FAKEGEM_EXTRADOC="README.rdoc"
30 -
31 -inherit ruby-fakegem
32 -
33 -DESCRIPTION="Shows each value of variables and method calls in the expression"
34 -HOMEPAGE="https://github.com/k-tsj/power_assert"
35 -SRC_URI="https://github.com/k-tsj/power_assert/archive/v${PV}.tar.gz -> ${P}.tar.gz"
36 -LICENSE="|| ( Ruby BSD-2 )"
37 -
38 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-fbsd ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
39 -
40 -SLOT="0"
41 -IUSE=""
42 -
43 -ruby_add_bdepend "test? ( dev-ruby/test-unit )"
44 -
45 -all_ruby_prepare() {
46 - sed -i -e '/bundler/I s:^:#:' Rakefile test/test_helper.rb || die
47 - sed -i -e '1igem "test-unit"' \
48 - -e '/byebug/ s:^:#:' test/test_helper.rb || die
49 -
50 - # Avoid circular dependency on byebug when bootstrapping ruby
51 - sed -i -e '/byebug/ s:^:#:' -e '/test_core_ext_helper/ s:^:#:' test/test_helper.rb || die
52 - rm test/test_core_ext_helper.rb test/trace_test.rb || die
53 -
54 - # Avoid circular dependency on pry when bootstrapping ruby
55 - sed -i -e '/pry/ s:^:#:' -e '/test_colorized_pp/,/^ end/ s:^:#:' test/block_test.rb || die
56 -}