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/prawn-core: ChangeLog prawn-core-0.7.2.ebuild
Date: Mon, 01 Feb 2010 09:22:37
Message-Id: E1NbsUL-0007c0-In@stork.gentoo.org
1 flameeyes 10/02/01 09:22:33
2
3 Modified: ChangeLog
4 Added: prawn-core-0.7.2.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc62/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 dev-ruby/prawn-core/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/prawn-core/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/prawn-core/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/prawn-core/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/prawn-core/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 28 Jan 2010 19:11:39 -0000 1.2
23 +++ ChangeLog 1 Feb 2010 09:22:32 -0000 1.3
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-ruby/prawn-core
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/prawn-core/ChangeLog,v 1.2 2010/01/28 19:11:39 flameeyes Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/prawn-core/ChangeLog,v 1.3 2010/02/01 09:22:32 flameeyes Exp $
29 +
30 +*prawn-core-0.7.2 (01 Feb 2010)
31 +
32 + 01 Feb 2010; Diego E. Pettenò <flameeyes@g.o>
33 + +prawn-core-0.7.2.ebuild:
34 + Version bump.
35
36 28 Jan 2010; Diego E. Pettenò <flameeyes@g.o>
37 prawn-core-0.7.1.ebuild:
38
39
40
41 1.1 dev-ruby/prawn-core/prawn-core-0.7.2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/prawn-core/prawn-core-0.7.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/prawn-core/prawn-core-0.7.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: prawn-core-0.7.2.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/prawn-core/prawn-core-0.7.2.ebuild,v 1.1 2010/02/01 09:22:32 flameeyes Exp $
51
52 EAPI=2
53 USE_RUBY="ruby18 jruby"
54
55 RUBY_FAKEGEM_DOCDIR="doc"
56 RUBY_FAKEGEM_EXTRADOC="HACKING README"
57
58 # ttfunk and pdf-inspector are vendored, and the versions currently
59 # there are not identical to the versions we already carry in our
60 # tree. To be fixed.
61 RUBY_FAKEGEM_EXTRAINSTALL="data vendor"
62
63 inherit ruby-fakegem
64
65 DESCRIPTION="Fast, Nimble PDF Generation For Ruby"
66 HOMEPAGE="http://prawn.majesticseacreature.com/"
67
68 LICENSE="|| ( GPL-2 Ruby )"
69 SLOT="0"
70 KEYWORDS="~amd64"
71 IUSE="examples"
72
73 ruby_add_bdepend test "dev-ruby/test-spec dev-ruby/mocha dev-ruby/pdf-reader"
74
75 # Older versions of prawn install the same files, but in site_ruby
76 # which gets found before the newer gem install path that prawn-core
77 # uses.
78 RDEPEND="!<dev-ruby/prawn-0.7"
79
80 all_ruby_install() {
81 all_fakegem_install
82
83 if use examples; then
84 insinto /usr/share/doc/${PF}/examples
85 doins -r examples || die "Installing examples failed."
86 fi
87 }