Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/samuel: samuel-0.3.3.ebuild ChangeLog
Date: Sun, 08 Jul 2012 11:11:17
Message-Id: 20120708111108.5D02B20063@flycatcher.gentoo.org
1 flameeyes 12/07/08 11:11:08
2
3 Modified: ChangeLog
4 Added: samuel-0.3.3.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha116/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.13 dev-ruby/samuel/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/samuel/ChangeLog?rev=1.13&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/samuel/ChangeLog?rev=1.13&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/samuel/ChangeLog?r1=1.12&r2=1.13
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/samuel/ChangeLog,v
20 retrieving revision 1.12
21 retrieving revision 1.13
22 diff -u -r1.12 -r1.13
23 --- ChangeLog 1 May 2012 18:24:02 -0000 1.12
24 +++ ChangeLog 8 Jul 2012 11:11:08 -0000 1.13
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/samuel
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/samuel/ChangeLog,v 1.12 2012/05/01 18:24:02 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/samuel/ChangeLog,v 1.13 2012/07/08 11:11:08 flameeyes Exp $
30 +
31 +*samuel-0.3.3 (08 Jul 2012)
32 +
33 + 08 Jul 2012; Diego E. Pettenò <flameeyes@g.o> +samuel-0.3.3.ebuild:
34 + Version bump.
35
36 01 May 2012; Raúl Porcel <armin76@g.o> samuel-0.3.2.ebuild:
37 Drop ia64/sparc keywords
38 @@ -44,4 +49,3 @@
39 12 Jan 2010; Diego E. Pettenò <flameeyes@g.o>
40 +samuel-0.3.1.ebuild, +files/samuel-0.3.1-ruby19.patch, +metadata.xml:
41 Initial import of samuel needed to de-bundle fakeweb.
42 -
43
44
45
46 1.1 dev-ruby/samuel/samuel-0.3.3.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/samuel/samuel-0.3.3.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/samuel/samuel-0.3.3.ebuild?rev=1.1&content-type=text/plain
50
51 Index: samuel-0.3.3.ebuild
52 ===================================================================
53 # Copyright 1999-2012 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/samuel/samuel-0.3.3.ebuild,v 1.1 2012/07/08 11:11:08 flameeyes Exp $
56
57 EAPI=4
58
59 USE_RUBY="ruby18 ree18 ruby19 jruby"
60
61 RUBY_FAKEGEM_TASK_DOC=""
62
63 inherit ruby-fakegem
64
65 DESCRIPTION="An automatic logger for HTTP requests in Ruby."
66 HOMEPAGE="http://github.com/chrisk/samuel"
67
68 LICENSE="as-is" # truly
69 SLOT="0"
70 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
71 IUSE=""
72
73 ruby_add_bdepend "
74 test? (
75 >=dev-ruby/shoulda-2.11.3
76 >=dev-ruby/fakeweb-1.3
77 >=dev-ruby/httpclient-2.2.3
78 >=dev-ruby/mocha-0.10.0
79 virtual/ruby-test-unit
80 )"
81
82 all_ruby_prepare() {
83 # Remove references to bundler
84 sed -i -e '/[Bb]undler/d' test/test_helper.rb || die
85 rm Gemfile*
86
87 # Change the default port from 8000 to 64888 to sidestep Issue #10.
88 # https://github.com/chrisk/samuel/issues/10
89 sed -i -e 's:8000:64888:g' test/*.rb || die
90 }