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/shorturl: shorturl-0.8.7-r1.ebuild ChangeLog
Date: Fri, 29 Jan 2010 10:12:41
Message-Id: E1Nanq9-00047M-LJ@stork.gentoo.org
1 flameeyes 10/01/29 10:12:37
2
3 Modified: ChangeLog
4 Added: shorturl-0.8.7-r1.ebuild
5 Log:
6 Bump to fakegem, add patch to work with Ruby 1.9 similar to the one in overlay.
7 (Portage version: 2.2_rc61/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.12 dev-ruby/shorturl/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/shorturl/ChangeLog?rev=1.12&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/shorturl/ChangeLog?rev=1.12&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/shorturl/ChangeLog?r1=1.11&r2=1.12
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/shorturl/ChangeLog,v
19 retrieving revision 1.11
20 retrieving revision 1.12
21 diff -u -r1.11 -r1.12
22 --- ChangeLog 24 Dec 2009 17:33:37 -0000 1.11
23 +++ ChangeLog 29 Jan 2010 10:12:37 -0000 1.12
24 @@ -1,6 +1,13 @@
25 # ChangeLog for dev-ruby/shorturl
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/shorturl/ChangeLog,v 1.11 2009/12/24 17:33:37 graaff Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/shorturl/ChangeLog,v 1.12 2010/01/29 10:12:37 flameeyes Exp $
30 +
31 +*shorturl-0.8.7-r1 (29 Jan 2010)
32 +
33 + 29 Jan 2010; Diego E. Pettenò <flameeyes@g.o>
34 + +shorturl-0.8.7-r1.ebuild, +files/shorturl-0.8.7+ruby-1.9.patch:
35 + Bump to fakegem, add patch to work with Ruby 1.9 similar to the one in
36 + overlay.
37
38 24 Dec 2009; Hans de Graaff <graaff@g.o> shorturl-0.8.7.ebuild:
39 Remove obsolete virtual/ruby dependency.
40
41
42
43 1.1 dev-ruby/shorturl/shorturl-0.8.7-r1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/shorturl/shorturl-0.8.7-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/shorturl/shorturl-0.8.7-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: shorturl-0.8.7-r1.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/shorturl/shorturl-0.8.7-r1.ebuild,v 1.1 2010/01/29 10:12:37 flameeyes Exp $
53
54 EAPI=2
55
56 USE_RUBY="ruby18 ruby19 jruby"
57
58 RUBY_FAKEGEM_TASK_TEST=""
59 RUBY_FAKEGEM_TASK_DOC=""
60
61 RUBY_FAKEGEM_EXTRADOC="ChangeLog README TODO"
62
63 inherit ruby-fakegem eutils
64
65 DESCRIPTION="A very simple library to use URL shortening services such as TinyURL or RubyURL."
66 HOMEPAGE="http://shorturl.rubyforge.org/"
67
68 LICENSE="MIT"
69 SLOT="0"
70 KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
71 IUSE=""
72
73 all_ruby_prepare() {
74 epatch "${FILESDIR}"/${P}+ruby-1.9.patch
75 }
76
77 each_ruby_test() {
78 ${RUBY} -Ilib test/ts_all.rb || die "tests failed"
79 }
80
81 all_ruby_install() {
82 all_fakegem_install
83
84 pushd doc &>/dev/null
85 dohtml -r . || die
86 popd &>/dev/null
87 }