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