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/cerberus: cerberus-0.7.8-r1.ebuild ChangeLog
Date: Mon, 24 Jan 2011 18:38:41
Message-Id: 20110124183831.91E6120057@flycatcher.gentoo.org
1 graaff 11/01/24 18:38:31
2
3 Modified: ChangeLog
4 Added: cerberus-0.7.8-r1.ebuild
5 Log:
6 Fix tests when Rails 3 components are installed.
7
8 (Portage version: 2.1.9.25/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.14 dev-ruby/cerberus/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/cerberus/ChangeLog?rev=1.14&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/cerberus/ChangeLog?rev=1.14&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/cerberus/ChangeLog?r1=1.13&r2=1.14
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/cerberus/ChangeLog,v
20 retrieving revision 1.13
21 retrieving revision 1.14
22 diff -u -r1.13 -r1.14
23 --- ChangeLog 6 Nov 2010 09:57:31 -0000 1.13
24 +++ ChangeLog 24 Jan 2011 18:38:31 -0000 1.14
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-ruby/cerberus
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/cerberus/ChangeLog,v 1.13 2010/11/06 09:57:31 graaff Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/cerberus/ChangeLog,v 1.14 2011/01/24 18:38:31 graaff Exp $
31 +
32 +*cerberus-0.7.8-r1 (24 Jan 2011)
33 +
34 + 24 Jan 2011; Hans de Graaff <graaff@g.o> +cerberus-0.7.8-r1.ebuild,
35 + +files/cerberus-0.7.8-rails3.patch:
36 + Fix tests when Rails 3 components are installed.
37
38 06 Nov 2010; Hans de Graaff <graaff@g.o> cerberus-0.7.8.ebuild:
39 Add missing indirect dependency on dev-ruby/json, fixing bug 319241.
40
41
42
43 1.1 dev-ruby/cerberus/cerberus-0.7.8-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/cerberus/cerberus-0.7.8-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/cerberus/cerberus-0.7.8-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: cerberus-0.7.8-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/cerberus/cerberus-0.7.8-r1.ebuild,v 1.1 2011/01/24 18:38:31 graaff Exp $
53
54 EAPI="2"
55 USE_RUBY="ruby18"
56
57 RUBY_FAKEGEM_TASK_DOC=""
58 RUBY_FAKEGEM_EXTRADOC="Authors.txt Changelog.txt Readme.markdown"
59
60 inherit ruby-fakegem
61
62 DESCRIPTION="Continuous Integration tool for ruby projects"
63 HOMEPAGE="http://rubyforge.org/projects/cerberus"
64
65 LICENSE="MIT"
66 SLOT="0"
67 KEYWORDS="~amd64 ~ppc ~x86"
68 IUSE=""
69
70 # The json dependency is indirect via the vendored twitter code.
71 ruby_add_rdepend "=dev-ruby/actionmailer-2*
72 =dev-ruby/activesupport-2*
73 >=dev-ruby/rake-0.7.3
74 dev-ruby/json"
75
76 ruby_add_bdepend "test? ( virtual/ruby-test-unit dev-ruby/rubyzip )"
77
78 DEPEND="${DEPEND} test? ( dev-vcs/subversion )"
79 RDEPEND="${RDEPEND}"
80
81 # TODO: cerberus bundles several packages: addressable, shout-bot,
82 # tinder, twitter, and xmpp4r. Some of these are very
83 # version-dependant, so it is not easy to determine whether they can
84 # be unbundeled.
85
86 RUBY_PATCHES=( "${FILESDIR}"/${P}-rails3.patch )