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/storable: ChangeLog storable-0.7.1-r1.ebuild storable-0.7.1.ebuild
Date: Tue, 06 Apr 2010 08:48:44
Message-Id: 20100406084837.3BDC72C04A@corvid.gentoo.org
1 flameeyes 10/04/06 08:48:37
2
3 Modified: ChangeLog
4 Added: storable-0.7.1-r1.ebuild
5 Removed: storable-0.7.1.ebuild
6 Log:
7 Add patch to fix rudy.
8 (Portage version: 2.2_rc67/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.6 dev-ruby/storable/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/storable/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/storable/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/storable/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/storable/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 6 Apr 2010 08:09:01 -0000 1.5
24 +++ ChangeLog 6 Apr 2010 08:48:36 -0000 1.6
25 @@ -1,6 +1,13 @@
26 # ChangeLog for dev-ruby/storable
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/storable/ChangeLog,v 1.5 2010/04/06 08:09:01 flameeyes Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/storable/ChangeLog,v 1.6 2010/04/06 08:48:36 flameeyes Exp $
30 +
31 +*storable-0.7.1-r1 (06 Apr 2010)
32 +
33 + 06 Apr 2010; Diego E. Pettenò <flameeyes@g.o>
34 + -storable-0.7.1.ebuild, +storable-0.7.1-r1.ebuild,
35 + +files/storable-0.7.1-emptysymbol.patch:
36 + Add patch to fix rudy.
37
38 *storable-0.7.1 (06 Apr 2010)
39
40
41
42
43 1.1 dev-ruby/storable/storable-0.7.1-r1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/storable/storable-0.7.1-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/storable/storable-0.7.1-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: storable-0.7.1-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/storable/storable-0.7.1-r1.ebuild,v 1.1 2010/04/06 08:48:36 flameeyes Exp $
53
54 EAPI=2
55
56 USE_RUBY="ruby18 ruby19 jruby"
57
58 RUBY_FAKEGEM_TASK_TEST=""
59
60 RUBY_FAKEGEM_TASK_DOC="rdoc"
61 RUBY_FAKEGEM_DOCDIR="doc"
62 RUBY_FAKEGEM_EXTRADOC="CHANGES.txt README.rdoc"
63
64 inherit ruby-fakegem
65
66 DESCRIPTION="Marshal Ruby classes into and out of multiple formats"
67 HOMEPAGE="http://solutious.com/"
68
69 LICENSE="MIT"
70 SLOT="0"
71 KEYWORDS="~amd64 ~x86"
72 IUSE=""
73
74 SRC_URI="http://github.com/delano/${PN}/tarball/v${PV} -> ${PN}-git-${PV}.tgz"
75 S="${WORKDIR}/delano-${PN}-a465c45"
76
77 ruby_add_bdepend test dev-ruby/tryouts
78
79 all_ruby_prepare() {
80 mv bin examples || die
81
82 epatch "${FILESDIR}"/${P}-emptysymbol.patch
83 }
84
85 each_ruby_test() {
86 ${RUBY} -Ilib -S sergeant || die "tests failed"
87 }
88
89 all_ruby_install() {
90 all_fakegem_install
91
92 docinto examples
93 dodoc examples/* || die
94 }