Gentoo Archives: gentoo-commits

From: "Manuel Rueger (mrueg)" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/yard: yard-0.8.7.ebuild ChangeLog yard-0.8.6.1.ebuild
Date: Sat, 27 Jul 2013 14:40:16
Message-Id: 20130727144009.EF3FB2171C@flycatcher.gentoo.org
1 mrueg 13/07/27 14:40:09
2
3 Modified: ChangeLog
4 Added: yard-0.8.7.ebuild
5 Removed: yard-0.8.6.1.ebuild
6 Log:
7 Version bump, tests fail with >=rspec-2.14, so depend on <2.14, Drop old
8
9 (Portage version: 2.1.13.1/cvs/Linux x86_64, signed Manifest commit with key )
10
11 Revision Changes Path
12 1.52 dev-ruby/yard/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/yard/ChangeLog?rev=1.52&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/yard/ChangeLog?rev=1.52&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/yard/ChangeLog?r1=1.51&r2=1.52
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/yard/ChangeLog,v
21 retrieving revision 1.51
22 retrieving revision 1.52
23 diff -u -r1.51 -r1.52
24 --- ChangeLog 10 Jul 2013 12:34:32 -0000 1.51
25 +++ ChangeLog 27 Jul 2013 14:40:09 -0000 1.52
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-ruby/yard
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/yard/ChangeLog,v 1.51 2013/07/10 12:34:32 mrueg Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/yard/ChangeLog,v 1.52 2013/07/27 14:40:09 mrueg Exp $
31 +
32 +*yard-0.8.7 (27 Jul 2013)
33 +
34 + 27 Jul 2013; Manuel RĂ¼ger <mrueg@g.o> +yard-0.8.7.ebuild,
35 + -yard-0.8.6.1.ebuild:
36 + Version bump, tests fail with >=rspec-2.14, so depend on <2.14, Drop old
37
38 *yard-0.8.6.2 (10 Jul 2013)
39
40
41
42
43 1.1 dev-ruby/yard/yard-0.8.7.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/yard/yard-0.8.7.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/yard/yard-0.8.7.ebuild?rev=1.1&content-type=text/plain
47
48 Index: yard-0.8.7.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/yard/yard-0.8.7.ebuild,v 1.1 2013/07/27 14:40:09 mrueg Exp $
53
54 EAPI=5
55
56 USE_RUBY="ruby18 ruby19 jruby"
57
58 RUBY_FAKEGEM_RECIPE_TEST="rspec"
59 RUBY_FAKEGEM_TASK_DOC="yard"
60
61 RUBY_FAKEGEM_EXTRADOC="README.md"
62 RUBY_FAKEGEM_DOCDIR="doc docs"
63
64 RUBY_FAKEGEM_EXTRAINSTALL="templates"
65
66 inherit ruby-fakegem
67
68 DESCRIPTION="Documentation generation tool for the Ruby programming language"
69 HOMEPAGE="http://yardoc.org/"
70
71 # The gem lakes the gemspec file needed to pass tests.
72 SRC_URI="https://github.com/lsegal/yard/archive/${PV}.tar.gz -> ${P}-git.tgz"
73
74 LICENSE="MIT"
75 SLOT="0"
76 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
77 IUSE=""
78
79 ruby_add_bdepend "doc? ( || ( dev-ruby/bluecloth dev-ruby/maruku dev-ruby/rdiscount dev-ruby/kramdown ) )
80 test? ( <dev-ruby/rspec-2.14:2 dev-ruby/ruby-gettext )"
81
82 all_ruby_prepare() {
83 sed -i -e '/[Bb]undler/ s:^:#:' spec/spec_helper.rb || die
84 sed -i -e "s/require 'bundler'; rescue LoadError//" spec/cli/server_spec.rb || die
85 }