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/safe_yaml: ChangeLog safe_yaml-1.0.4.ebuild
Date: Tue, 30 Sep 2014 04:56:08
Message-Id: 20140930045602.791A368D2@oystercatcher.gentoo.org
1 graaff 14/09/30 04:56:02
2
3 Modified: ChangeLog
4 Added: safe_yaml-1.0.4.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.15 dev-ruby/safe_yaml/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/safe_yaml/ChangeLog?rev=1.15&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/safe_yaml/ChangeLog?rev=1.15&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/safe_yaml/ChangeLog?r1=1.14&r2=1.15
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/safe_yaml/ChangeLog,v
20 retrieving revision 1.14
21 retrieving revision 1.15
22 diff -u -r1.14 -r1.15
23 --- ChangeLog 15 Aug 2014 14:26:12 -0000 1.14
24 +++ ChangeLog 30 Sep 2014 04:56:02 -0000 1.15
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/safe_yaml
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/safe_yaml/ChangeLog,v 1.14 2014/08/15 14:26:12 blueness Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/safe_yaml/ChangeLog,v 1.15 2014/09/30 04:56:02 graaff Exp $
30 +
31 +*safe_yaml-1.0.4 (30 Sep 2014)
32 +
33 + 30 Sep 2014; Hans de Graaff <graaff@g.o> +safe_yaml-1.0.4.ebuild:
34 + Version bump.
35
36 15 Aug 2014; Anthony G. Basile <blueness@g.o> ChangeLog:
37 Fix failed gpg signature
38
39
40
41 1.1 dev-ruby/safe_yaml/safe_yaml-1.0.4.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/safe_yaml/safe_yaml-1.0.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/safe_yaml/safe_yaml-1.0.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: safe_yaml-1.0.4.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/safe_yaml/safe_yaml-1.0.4.ebuild,v 1.1 2014/09/30 04:56:02 graaff Exp $
51
52 EAPI=5
53
54 USE_RUBY="ruby19 ruby20 ruby21 jruby"
55
56 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
57 RUBY_FAKEGEM_EXTRADOC="README.md"
58 RUBY_FAKEGEM_RECIPE_TEST="none"
59
60 inherit ruby-fakegem
61
62 DESCRIPTION="Parse YAML safely, without that pesky arbitrary object deserialization vulnerability"
63 HOMEPAGE="https://dtao.github.com/safe_yaml"
64
65 LICENSE="MIT"
66 SLOT="0"
67 KEYWORDS="~amd64 ~ppc ~ppc64"
68 IUSE="test"
69
70 ruby_add_bdepend "test? ( dev-ruby/hashie
71 dev-ruby/heredoc_unindent
72 dev-ruby/rspec:2 )"
73
74 each_ruby_test() {
75 # Run specs with monkeypatch
76 ${RUBY} -S rspec --tag ~libraries || die
77
78 # Running specs without monkeypatch
79 ${RUBY} -S rspec --tag libraries || die
80 }