Gentoo Archives: gentoo-commits

From: "Hans de Graaff (graaff)" <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/msgpack: msgpack-0.3.9.ebuild ChangeLog
Date: Fri, 30 Apr 2010 08:35:40
Message-Id: 20100430083536.A27C52C04C@corvid.gentoo.org
1 graaff 10/04/30 08:35:36
2
3 Modified: ChangeLog
4 Added: msgpack-0.3.9.ebuild
5 Log:
6 Version bump. Move .so installation to compile phase so that it can be used during testing.
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 dev-ruby/msgpack/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/msgpack/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/msgpack/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/msgpack/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/msgpack/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 4 Apr 2010 08:43:49 -0000 1.2
23 +++ ChangeLog 30 Apr 2010 08:35:36 -0000 1.3
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-ruby/msgpack
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/msgpack/ChangeLog,v 1.2 2010/04/04 08:43:49 graaff Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/msgpack/ChangeLog,v 1.3 2010/04/30 08:35:36 graaff Exp $
29 +
30 +*msgpack-0.3.9 (30 Apr 2010)
31 +
32 + 30 Apr 2010; Hans de Graaff <graaff@g.o> +msgpack-0.3.9.ebuild:
33 + Version bump. Move .so installation to compile phase so that it can be
34 + used during testing.
35
36 *msgpack-0.3.6 (04 Apr 2010)
37
38
39
40
41 1.1 dev-ruby/msgpack/msgpack-0.3.9.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/msgpack/msgpack-0.3.9.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/msgpack/msgpack-0.3.9.ebuild?rev=1.1&content-type=text/plain
45
46 Index: msgpack-0.3.9.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/msgpack/msgpack-0.3.9.ebuild,v 1.1 2010/04/30 08:35:36 graaff Exp $
51
52 EAPI="2"
53 USE_RUBY="ruby18"
54
55 RUBY_FAKEGEM_TASK_DOC=""
56 RUBY_FAKEGEM_TASK_TEST=""
57
58 RUBY_FAKEGEM_EXTRADOC="ChangeLog README"
59
60 inherit ruby-fakegem
61
62 DESCRIPTION="Binary-based efficient data interchange format for ruby binding"
63 HOMEPAGE="http://msgpack.sourceforge.jp/"
64
65 LICENSE="Apache-2.0"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE=""
69
70 ruby_add_bdepend test virtual/ruby-test-unit
71
72 each_ruby_configure() {
73 pushd ext
74 ${RUBY} extconf.rb || die "Configuration of extension failed."
75 popd
76 }
77
78 each_ruby_compile() {
79 pushd ext
80 emake || die
81 popd
82
83 mkdir lib || die "Unable to make lib directory."
84 cp ext/msgpack.so lib/ || die "Unable to install msgpack library."
85 }
86
87 each_ruby_test() {
88 ${RUBY} test/msgpack_test.rb
89 }