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/crack: crack-0.4.1.ebuild ChangeLog
Date: Wed, 20 Nov 2013 23:24:26
Message-Id: 20131120232418.CB2022004B@flycatcher.gentoo.org
1 mrueg 13/11/20 23:24:18
2
3 Modified: ChangeLog
4 Added: crack-0.4.1.ebuild
5 Log:
6 Version bump. Keywords dropped for ppc, ppc64, x86. Rekeywording in bug #491822
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.34 dev-ruby/crack/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/crack/ChangeLog?rev=1.34&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/crack/ChangeLog?rev=1.34&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/crack/ChangeLog?r1=1.33&r2=1.34
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/crack/ChangeLog,v
20 retrieving revision 1.33
21 retrieving revision 1.34
22 diff -u -r1.33 -r1.34
23 --- ChangeLog 20 Nov 2013 09:45:05 -0000 1.33
24 +++ ChangeLog 20 Nov 2013 23:24:18 -0000 1.34
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-ruby/crack
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/crack/ChangeLog,v 1.33 2013/11/20 09:45:05 mrueg Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/crack/ChangeLog,v 1.34 2013/11/20 23:24:18 mrueg Exp $
30 +
31 +*crack-0.4.1 (20 Nov 2013)
32 +
33 + 20 Nov 2013; Manuel RĂ¼ger <mrueg@g.o> +crack-0.4.1.ebuild:
34 + Version bump. Keywords dropped for ppc, ppc64, x86. Rekeywording in bug
35 + #491822
36
37 *crack-0.3.2-r1 (20 Nov 2013)
38
39
40
41
42 1.1 dev-ruby/crack/crack-0.4.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/crack/crack-0.4.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/crack/crack-0.4.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: crack-0.4.1.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/crack/crack-0.4.1.ebuild,v 1.1 2013/11/20 23:24:18 mrueg Exp $
52
53 EAPI=5
54
55 USE_RUBY="ruby18 ruby19 ruby20 jruby"
56
57 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
58 RUBY_FAKEGEM_EXTRADOC="README.md History"
59
60 inherit ruby-fakegem
61
62 DESCRIPTION="Really simple JSON and XML parsing, ripped from Merb and Rails."
63 HOMEPAGE="https://github.com/jnunemaker/crack"
64
65 LICENSE="MIT"
66 SLOT="0"
67 KEYWORDS="~amd64 ~amd64-linux ~x64-macos ~x64-solaris"
68 IUSE=""
69
70 ruby_add_bdepend "test? ( dev-ruby/shoulda dev-ruby/matchy )"
71 ruby_add_rdepend "dev-ruby/safe_yaml"
72
73 all_ruby_prepare() {
74 # By default this gem wants to use the fork of matchy from the
75 # same author of itself, but we don't package that (as it's
76 # neither released on gemcutter nor tagged). On the other hand it
77 # works fine with the mcmire gem that we package as
78 # dev-ruby/matchy.
79 sed -i -e 's:jnunemaker-matchy:mcmire-matchy:' test/test_helper.rb || die
80 }
81
82 each_ruby_prepare() {
83 case ${RUBY} in
84 *ruby19|*ruby20)
85 # Remove test suite that is broken for ruby19.
86 # Github Issues 26, 29, 32, 33.
87 rm test/json_test.rb || die
88 ;;
89 *)
90 ;;
91 esac
92 }
93
94 each_ruby_test() {
95 ${RUBY} -Itest -Ilib test/*.rb || die
96 }