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.6.ebuild ChangeLog
Date: Sun, 04 Apr 2010 08:43:52
Message-Id: E1NyLQr-0006R8-9a@stork.gentoo.org
1 graaff 10/04/04 08:43:49
2
3 Modified: ChangeLog
4 Added: msgpack-0.3.6.ebuild
5 Log:
6 Version bump. Convert to ruby-fakegem. Fix QA notice. Run tests.
7 (Portage version: 2.1.7.17/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 dev-ruby/msgpack/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/msgpack/ChangeLog?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/msgpack/ChangeLog?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/msgpack/ChangeLog?r1=1.1&r2=1.2
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/msgpack/ChangeLog,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- ChangeLog 2 Mar 2010 15:51:40 -0000 1.1
23 +++ ChangeLog 4 Apr 2010 08:43:49 -0000 1.2
24 @@ -1,6 +1,11 @@
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.1 2010/03/02 15:51:40 matsuu Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/msgpack/ChangeLog,v 1.2 2010/04/04 08:43:49 graaff Exp $
29 +
30 +*msgpack-0.3.6 (04 Apr 2010)
31 +
32 + 04 Apr 2010; Hans de Graaff <graaff@g.o> +msgpack-0.3.6.ebuild:
33 + Version bump. Convert to ruby-fakegem. Fix QA notice. Run tests.
34
35 02 Mar 2010; MATSUU Takuto <matsuu@g.o> +msgpack-0.3.3.ebuild,
36 +metadata.xml:
37
38
39
40 1.1 dev-ruby/msgpack/msgpack-0.3.6.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/msgpack/msgpack-0.3.6.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/msgpack/msgpack-0.3.6.ebuild?rev=1.1&content-type=text/plain
44
45 Index: msgpack-0.3.6.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/msgpack/msgpack-0.3.6.ebuild,v 1.1 2010/04/04 08:43:49 graaff Exp $
50
51 EAPI="2"
52 USE_RUBY="ruby18"
53
54 RUBY_FAKEGEM_TASK_DOC=""
55 RUBY_FAKEGEM_TASK_TEST=""
56
57 RUBY_FAKEGEM_EXTRADOC="README"
58
59 inherit ruby-fakegem
60
61 DESCRIPTION="Binary-based efficient data interchange format for ruby binding"
62 HOMEPAGE="http://msgpack.sourceforge.jp/"
63
64 LICENSE="Apache-2.0"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE=""
68
69 ruby_add_bdepend test virtual/ruby-test-unit
70
71 each_ruby_configure() {
72 pushd ext
73 ${RUBY} extconf.rb || die "Configuration of extension failed."
74 popd
75 }
76
77 each_ruby_compile() {
78 pushd ext
79 emake || die
80 popd
81 }
82
83 each_ruby_test() {
84 ${RUBY} test/msgpack_test.rb
85 }
86
87 each_ruby_install() {
88 mkdir lib || die "Unable to make lib directory."
89 cp ext/msgpack.so lib/ || die "Unable to install msgpack library."
90
91 each_fakegem_install
92 }