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/jeweler/
Date: Sat, 12 Dec 2015 07:35:58
Message-Id: 1449905716.634c87ebe66bad40485e99c7bd07eb5b9aa0d7f7.graaff@gentoo
1 commit: 634c87ebe66bad40485e99c7bd07eb5b9aa0d7f7
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 12 06:46:40 2015 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 12 07:35:16 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=634c87eb
7
8 dev-ruby/jeweler: cleanup
9
10 Package-Manager: portage-2.2.24
11
12 dev-ruby/jeweler/jeweler-2.0.1-r1.ebuild | 58 --------------------------------
13 1 file changed, 58 deletions(-)
14
15 diff --git a/dev-ruby/jeweler/jeweler-2.0.1-r1.ebuild b/dev-ruby/jeweler/jeweler-2.0.1-r1.ebuild
16 deleted file mode 100644
17 index 5b826d7..0000000
18 --- a/dev-ruby/jeweler/jeweler-2.0.1-r1.ebuild
19 +++ /dev/null
20 @@ -1,58 +0,0 @@
21 -# Copyright 1999-2015 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=5
26 -USE_RUBY="ruby19 ruby20"
27 -
28 -RUBY_FAKEGEM_TASK_DOC="-Ilib yard"
29 -RUBY_FAKEGEM_DOCDIR="doc"
30 -
31 -# Tests and features also need the same set of dependencies present.
32 -RUBY_FAKEGEM_TASK_TEST="-Ilib test"
33 -
34 -RUBY_FAKEGEM_EXTRADOC="ChangeLog.markdown README.markdown"
35 -
36 -RUBY_FAKEGEM_GEMSPEC="jeweler.gemspec"
37 -
38 -inherit ruby-fakegem
39 -
40 -DESCRIPTION="Rake tasks for managing gems and versioning and a generator for creating a new project"
41 -HOMEPAGE="https://wiki.github.com/technicalpickles/jeweler"
42 -
43 -LICENSE="MIT"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
46 -IUSE=""
47 -
48 -ruby_add_bdepend "doc? ( dev-ruby/yard )
49 - test? ( dev-ruby/shoulda dev-ruby/rr dev-ruby/test_construct dev-ruby/test-unit:0 >=dev-ruby/hoe-1.5.1 )"
50 -
51 -ruby_add_rdepend "
52 - dev-ruby/rake
53 - >=dev-ruby/git-1.2.5
54 - >=dev-ruby/nokogiri-1.5.10
55 - dev-ruby/github_api
56 - >=dev-ruby/highline-1.6.15
57 - >=dev-ruby/bundler-1.0
58 - dev-ruby/rdoc
59 - dev-ruby/builder:*
60 -"
61 -
62 -all_ruby_prepare() {
63 - # Remove bundler support.
64 - rm Gemfile || die
65 - sed -i -e '/bundler/d' -e '/Bundler.setup/d' Rakefile test/test_helper.rb features/support/env.rb || die
66 -
67 - sed -i -e '/coverall/I s:^:#:' \
68 - -e '1i gem "test-unit", "~> 1.0"' test/test_helper.rb || die
69 -
70 - # Avoid a test that only passes in the git repository.
71 - sed -i -e '/find the base repo/,/^ end/ s:^:#:' test/test_jeweler.rb || die
72 -
73 - # Use a non-deprecated version of construct
74 - sed -i -e 's/construct/test_construct/' -e 's/Construct/TestConstruct/' test/test_helper.rb || die
75 -
76 - # Avoid dependency on cucumber
77 - sed -i -e '/cucumber/,$ s:^:#:' Rakefile || die
78 -}