Gentoo Archives: gentoo-commits

From: "Manuel Rueger (mrueg)" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/psych: psych-2.0.12.ebuild ChangeLog
Date: Thu, 29 Jan 2015 21:15:54
Message-Id: 20150129211550.8A3BF109D8@oystercatcher.gentoo.org
1 mrueg 15/01/29 21:15:50
2
3 Modified: ChangeLog
4 Added: psych-2.0.12.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.8 dev-ruby/psych/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/psych/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/psych/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/psych/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/psych/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 22 Jan 2015 06:35:23 -0000 1.7
24 +++ ChangeLog 29 Jan 2015 21:15:50 -0000 1.8
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/psych
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/psych/ChangeLog,v 1.7 2015/01/22 06:35:23 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/psych/ChangeLog,v 1.8 2015/01/29 21:15:50 mrueg Exp $
30 +
31 +*psych-2.0.12 (29 Jan 2015)
32 +
33 + 29 Jan 2015; Manuel RĂ¼ger <mrueg@g.o> +psych-2.0.12.ebuild:
34 + Version bump.
35
36 *psych-2.0.11 (22 Jan 2015)
37
38
39
40
41 1.1 dev-ruby/psych/psych-2.0.12.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/psych/psych-2.0.12.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/psych/psych-2.0.12.ebuild?rev=1.1&content-type=text/plain
45
46 Index: psych-2.0.12.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/psych/psych-2.0.12.ebuild,v 1.1 2015/01/29 21:15:50 mrueg Exp $
51
52 EAPI=5
53 USE_RUBY="ruby19 ruby20 ruby21 ruby22"
54
55 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
56 RUBY_FAKEGEM_EXTRADOC="CHANGELOG.rdoc README.rdoc"
57
58 inherit multilib ruby-fakegem
59
60 DESCRIPTION="A libyaml wrapper for Ruby"
61 HOMEPAGE="https://github.com/tenderlove/psych"
62
63 LICENSE="MIT"
64 SLOT="0"
65 KEYWORDS="~amd64"
66 IUSE=""
67
68 DEPEND+=" >=dev-libs/libyaml-0.1.6"
69
70 ruby_add_bdepend "test? ( >=dev-ruby/minitest-4.0:0 )"
71
72 all_ruby_prepare() {
73 sed -i -e '1igem "minitest", "~>4.0"' test/psych/helper.rb || die
74 }
75
76 each_ruby_configure() {
77 ${RUBY} -Cext/${PN} extconf.rb || die
78 }
79
80 each_ruby_compile() {
81 emake V=1 -Cext/${PN}
82 cp ext/${PN}/${PN}$(get_modname) lib/ || die
83 }
84
85 each_ruby_test() {
86 ${RUBY} -Ilib:test:test/${PN}:. -e "Dir['test/psych/**/test_*.rb'].each {|f| require f}" || die
87 }