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.8.1.ebuild
Date: Sun, 01 Aug 2010 15:02:50
Message-Id: 20100801140925.73E052CE15@corvid.gentoo.org
1 flameeyes 10/08/01 14:09:25
2
3 Modified: ChangeLog
4 Added: storable-0.8.1.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.14 dev-ruby/storable/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/storable/ChangeLog?rev=1.14&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/storable/ChangeLog?rev=1.14&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/storable/ChangeLog?r1=1.13&r2=1.14
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/storable/ChangeLog,v
19 retrieving revision 1.13
20 retrieving revision 1.14
21 diff -u -r1.13 -r1.14
22 --- ChangeLog 28 Jul 2010 23:22:35 -0000 1.13
23 +++ ChangeLog 1 Aug 2010 14:09:24 -0000 1.14
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-ruby/storable
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/storable/ChangeLog,v 1.13 2010/07/28 23:22:35 flameeyes Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/storable/ChangeLog,v 1.14 2010/08/01 14:09:24 flameeyes Exp $
29 +
30 +*storable-0.8.1 (01 Aug 2010)
31 +
32 + 01 Aug 2010; Diego E. Pettenò <flameeyes@g.o>
33 + +storable-0.8.1.ebuild:
34 + Version bump.
35
36 *storable-0.8.0 (28 Jul 2010)
37
38
39
40
41 1.1 dev-ruby/storable/storable-0.8.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/storable/storable-0.8.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/storable/storable-0.8.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: storable-0.8.1.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/storable/storable-0.8.1.ebuild,v 1.1 2010/08/01 14:09:25 flameeyes Exp $
51
52 EAPI=2
53
54 # jruby → yajl-ruby won't work, as it's compiled extension
55 USE_RUBY="ruby18 ruby19"
56
57 RUBY_FAKEGEM_TASK_TEST=""
58
59 RUBY_FAKEGEM_TASK_DOC="rdoc"
60 RUBY_FAKEGEM_DOCDIR="doc"
61 RUBY_FAKEGEM_EXTRADOC="CHANGES.txt README.rdoc"
62
63 inherit ruby-fakegem
64
65 DESCRIPTION="Marshal Ruby classes into and out of multiple formats"
66 HOMEPAGE="http://solutious.com/"
67
68 LICENSE="MIT"
69 SLOT="0"
70 KEYWORDS="~amd64 ~x86"
71 IUSE=""
72
73 SRC_URI="http://github.com/delano/${PN}/tarball/v${PV} -> ${PN}-git-${PV}.tgz"
74 S="${WORKDIR}/delano-${PN}-*"
75
76 # technically, it could work without either; on the other hand, it
77 # would break a bit of stuff.
78 #ruby_add_rdepend "|| ( dev-ruby/json dev-ruby/yajl-ruby )"
79
80 # Somehow it infinite-recurse if JSON is used, see issue #1, so use
81 # yajl directly.
82 ruby_add_rdepend dev-ruby/yajl-ruby
83
84 ruby_add_bdepend "test? ( dev-ruby/tryouts:2 )"
85
86 all_ruby_prepare() {
87 mv bin examples || die
88 }
89
90 each_ruby_test() {
91 ${RUBY} -S try || die "tests failed"
92 }
93
94 all_ruby_install() {
95 all_fakegem_install
96
97 docinto examples
98 dodoc examples/* || die
99 }