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/ruby-fcgi: ChangeLog ruby-fcgi-0.8.8.ebuild
Date: Mon, 03 May 2010 05:39:07
Message-Id: 20100503053903.75D2C2C2E2@corvid.gentoo.org
1 graaff 10/05/03 05:39:03
2
3 Modified: ChangeLog
4 Added: ruby-fcgi-0.8.8.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.34 dev-ruby/ruby-fcgi/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/ruby-fcgi/ChangeLog?rev=1.34&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/ruby-fcgi/ChangeLog?rev=1.34&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/ruby-fcgi/ChangeLog?r1=1.33&r2=1.34
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/ruby-fcgi/ChangeLog,v
19 retrieving revision 1.33
20 retrieving revision 1.34
21 diff -u -r1.33 -r1.34
22 --- ChangeLog 1 Feb 2010 11:31:55 -0000 1.33
23 +++ ChangeLog 3 May 2010 05:39:03 -0000 1.34
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-ruby/ruby-fcgi
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-fcgi/ChangeLog,v 1.33 2010/02/01 11:31:55 flameeyes Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-fcgi/ChangeLog,v 1.34 2010/05/03 05:39:03 graaff Exp $
29 +
30 +*ruby-fcgi-0.8.8 (02 May 2010)
31 +
32 + 02 May 2010; Hans de Graaff <graaff@g.o> +ruby-fcgi-0.8.8.ebuild:
33 + Version bump. Tarball is no longer available, so switch to the gem.
34
35 01 Feb 2010; Diego E. Pettenò <flameeyes@g.o>
36 ruby-fcgi-0.8.7-r3.ebuild:
37
38
39
40 1.1 dev-ruby/ruby-fcgi/ruby-fcgi-0.8.8.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/ruby-fcgi/ruby-fcgi-0.8.8.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/ruby-fcgi/ruby-fcgi-0.8.8.ebuild?rev=1.1&content-type=text/plain
44
45 Index: ruby-fcgi-0.8.8.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-fcgi/ruby-fcgi-0.8.8.ebuild,v 1.1 2010/05/03 05:39:03 graaff Exp $
50
51 EAPI=2
52 USE_RUBY="ruby18 ruby19 jruby"
53
54 RUBY_FAKEGEM_NAME="${PN/ruby-/}"
55
56 RUBY_FAKEGEM_TASK_TEST=""
57 RUBY_FAKEGEM_TASK_DOC=""
58
59 RUBY_FAKEGEM_EXTRADOC="README README.signals ChangeLog"
60
61 inherit ruby-fakegem eutils
62
63 DESCRIPTION="FastCGI library for Ruby"
64 HOMEPAGE="http://rubyforge.org/projects/fcgi/"
65
66 KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
67 LICENSE="Ruby"
68
69 DEPEND="dev-libs/fcgi"
70 RDEPEND="${DEPEND}"
71
72 IUSE=""
73 SLOT="0"
74
75 each_ruby_compile() {
76 case ${RUBY} in
77 *ruby18)
78 pushd ext/fcgi
79 ${RUBY} extconf.rb || die "extconf failed"
80 emake || die "emake ext failed"
81 popd
82 cp ext/fcgi/fcgi.so lib || die
83 ;;
84 esac
85 }