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/ruby-fcgi: ruby-fcgi-0.8.7-r3.ebuild ChangeLog ruby-fcgi-0.8.9.ebuild
Date: Mon, 01 Feb 2010 11:29:45
Message-Id: E1NbuTM-00052M-Ny@stork.gentoo.org
1 flameeyes 10/02/01 11:29:40
2
3 Modified: ChangeLog
4 Added: ruby-fcgi-0.8.7-r3.ebuild
5 Removed: ruby-fcgi-0.8.9.ebuild
6 Log:
7 Don't trust what upstream states, ruby-fcgi-0.8.9 does not work with Ruby 1.9, so prefer the original fcgi gem, and port that to fakegem.
8 (Portage version: 2.2_rc62/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.32 dev-ruby/ruby-fcgi/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/ruby-fcgi/ChangeLog?rev=1.32&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/ruby-fcgi/ChangeLog?rev=1.32&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/ruby-fcgi/ChangeLog?r1=1.31&r2=1.32
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/ruby-fcgi/ChangeLog,v
20 retrieving revision 1.31
21 retrieving revision 1.32
22 diff -u -r1.31 -r1.32
23 --- ChangeLog 1 Feb 2010 10:51:20 -0000 1.31
24 +++ ChangeLog 1 Feb 2010 11:29:40 -0000 1.32
25 @@ -1,6 +1,13 @@
26 # ChangeLog for dev-ruby/ruby-fcgi
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-fcgi/ChangeLog,v 1.31 2010/02/01 10:51:20 flameeyes Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-fcgi/ChangeLog,v 1.32 2010/02/01 11:29:40 flameeyes Exp $
30 +
31 +*ruby-fcgi-0.8.7-r3 (01 Feb 2010)
32 +
33 + 01 Feb 2010; Diego E. Pettenò <flameeyes@g.o>
34 + +ruby-fcgi-0.8.7-r3.ebuild, -ruby-fcgi-0.8.9.ebuild:
35 + Don't trust what upstream states, ruby-fcgi-0.8.9 does not work with Ruby
36 + 1.9, so prefer the original fcgi gem, and port that to fakegem.
37
38 *ruby-fcgi-0.8.9 (01 Feb 2010)
39
40
41
42
43 1.1 dev-ruby/ruby-fcgi/ruby-fcgi-0.8.7-r3.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/ruby-fcgi/ruby-fcgi-0.8.7-r3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/ruby-fcgi/ruby-fcgi-0.8.7-r3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: ruby-fcgi-0.8.7-r3.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-fcgi/ruby-fcgi-0.8.7-r3.ebuild,v 1.1 2010/02/01 11:29:40 flameeyes Exp $
53
54 EAPI=2
55 USE_RUBY="ruby18 ruby19 jruby"
56
57 RUBY_FAKEGEM_NAME="${PN/ruby-/}"
58
59 RUBY_FAKEGEM_TASK_TEST=""
60 RUBY_FAKEGEM_TASK_DOC=""
61
62 RUBY_FAKEGEM_EXTRADOC="README README.signals ChangeLog"
63
64 inherit ruby-fakegem eutils
65
66 DESCRIPTION="FastCGI library for Ruby"
67 HOMEPAGE="http://rubyforge.org/projects/fcgi/"
68 SRC_URI="mirror://rubyforge/fcgi/${P}.tar.gz"
69
70 KEYWORDS="~amd64"
71 LICENSE="Ruby"
72
73 DEPEND="dev-libs/fcgi"
74 RDEPEND="${DEPEND}"
75
76 IUSE=""
77 SLOT="0"
78
79 each_ruby_compile() {
80 case ${RUBY} in
81 *ruby18)
82 pushd ext/fcgi
83 ${RUBY} extconf.rb || die "extconf failed"
84 emake || die "emake ext failed"
85 popd
86 cp ext/fcgi/fcgi.so lib || die
87 ;;
88 esac
89 }