Gentoo Archives: gentoo-commits

From: "Hans de Graaff (graaff)" <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/jeweler: jeweler-2.0.1-r1.ebuild ChangeLog
Date: Sun, 01 Mar 2015 08:24:06
Message-Id: 20150301082358.3C30612CB0@oystercatcher.gentoo.org
1 graaff 15/03/01 08:23:58
2
3 Modified: ChangeLog
4 Added: jeweler-2.0.1-r1.ebuild
5 Log:
6 Add ruby20, ruby21. Add missing keywords and drop ppc, ppc64 accordingly, bug 541768.
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.27 dev-ruby/jeweler/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/jeweler/ChangeLog?rev=1.27&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/jeweler/ChangeLog?rev=1.27&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/jeweler/ChangeLog?r1=1.26&r2=1.27
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/jeweler/ChangeLog,v
20 retrieving revision 1.26
21 retrieving revision 1.27
22 diff -u -r1.26 -r1.27
23 --- ChangeLog 15 Aug 2014 14:34:10 -0000 1.26
24 +++ ChangeLog 1 Mar 2015 08:23:58 -0000 1.27
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-ruby/jeweler
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/jeweler/ChangeLog,v 1.26 2014/08/15 14:34:10 blueness Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/jeweler/ChangeLog,v 1.27 2015/03/01 08:23:58 graaff Exp $
31 +
32 +*jeweler-2.0.1-r1 (01 Mar 2015)
33 +
34 + 01 Mar 2015; Hans de Graaff <graaff@g.o> +jeweler-2.0.1-r1.ebuild:
35 + Add ruby20, ruby21. Add missing keywords and drop ppc, ppc64 accordingly, bug
36 + 541768.
37
38 15 Aug 2014; Anthony G. Basile <blueness@g.o> jeweler-2.0.1.ebuild:
39 Keyword ~ppc ~ppc64, bug #511424
40
41
42
43 1.1 dev-ruby/jeweler/jeweler-2.0.1-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/jeweler/jeweler-2.0.1-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/jeweler/jeweler-2.0.1-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: jeweler-2.0.1-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2015 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/jeweler/jeweler-2.0.1-r1.ebuild,v 1.1 2015/03/01 08:23:58 graaff Exp $
53
54 EAPI=5
55 USE_RUBY="ruby19 ruby20 ruby21"
56
57 RUBY_FAKEGEM_TASK_DOC="-Ilib yard"
58 RUBY_FAKEGEM_DOCDIR="doc"
59
60 # Tests and features also need the same set of dependencies present.
61 RUBY_FAKEGEM_TASK_TEST="-Ilib test"
62
63 RUBY_FAKEGEM_EXTRADOC="ChangeLog.markdown README.markdown"
64
65 RUBY_FAKEGEM_GEMSPEC="jeweler.gemspec"
66
67 inherit ruby-fakegem
68
69 DESCRIPTION="Rake tasks for managing gems and versioning and a generator for creating a new project"
70 HOMEPAGE="http://wiki.github.com/technicalpickles/jeweler"
71
72 LICENSE="MIT"
73 SLOT="0"
74 KEYWORDS="~amd64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
75 IUSE=""
76
77 ruby_add_bdepend "doc? ( dev-ruby/yard )
78 test? ( dev-ruby/shoulda dev-ruby/rr dev-ruby/test_construct )"
79
80 ruby_add_rdepend "
81 dev-ruby/rake
82 >=dev-ruby/git-1.2.5
83 >=dev-ruby/nokogiri-1.5.10
84 dev-ruby/github_api
85 >=dev-ruby/highline-1.6.15
86 >=dev-ruby/bundler-1.0
87 dev-ruby/rdoc
88 dev-ruby/builder
89 "
90
91 all_ruby_prepare() {
92 # Remove bundler support.
93 rm Gemfile || die
94 sed -i -e '/bundler/d' -e '/Bundler.setup/d' Rakefile test/test_helper.rb features/support/env.rb || die
95
96 sed -i -e '/coverall/I s:^:#:' test/test_helper.rb || die
97
98 # Avoid a test that only passes in the git repository.
99 sed -i -e '/find the base repo/,/^ end/ s:^:#:' test/test_jeweler.rb || die
100
101 # Use a non-deprecated version of construct
102 sed -i -e 's/construct/test_construct/' -e 's/Construct/TestConstruct/' test/test_helper.rb || die
103 }