Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/safe_yaml/
Date: Sun, 06 Mar 2016 18:45:17
Message-Id: 1457289755.6565e5e7cf87aabfea482eeff4f35b725ba8cd67.mrueg@gentoo
1 commit: 6565e5e7cf87aabfea482eeff4f35b725ba8cd67
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 6 18:42:35 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 6 18:42:35 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6565e5e7
7
8 dev-ruby/safe_yaml: Remove old
9
10 Package-Manager: portage-2.2.27
11
12 dev-ruby/safe_yaml/safe_yaml-1.0.4-r1.ebuild | 33 ----------------------------
13 1 file changed, 33 deletions(-)
14
15 diff --git a/dev-ruby/safe_yaml/safe_yaml-1.0.4-r1.ebuild b/dev-ruby/safe_yaml/safe_yaml-1.0.4-r1.ebuild
16 deleted file mode 100644
17 index 5ebccb7..0000000
18 --- a/dev-ruby/safe_yaml/safe_yaml-1.0.4-r1.ebuild
19 +++ /dev/null
20 @@ -1,33 +0,0 @@
21 -# Copyright 1999-2015 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=5
26 -
27 -USE_RUBY="ruby19 ruby20 ruby21"
28 -
29 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
30 -RUBY_FAKEGEM_EXTRADOC="README.md"
31 -RUBY_FAKEGEM_RECIPE_TEST="none"
32 -
33 -inherit ruby-fakegem
34 -
35 -DESCRIPTION="Parse YAML safely, without that pesky arbitrary object deserialization vulnerability"
36 -HOMEPAGE="https://dtao.github.com/safe_yaml"
37 -
38 -LICENSE="MIT"
39 -SLOT="0"
40 -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
41 -IUSE="test"
42 -
43 -ruby_add_bdepend "test? ( dev-ruby/hashie
44 - dev-ruby/heredoc_unindent
45 - dev-ruby/rspec:2 )"
46 -
47 -each_ruby_test() {
48 - # Run specs with monkeypatch
49 - ${RUBY} -S rspec --tag ~libraries || die
50 -
51 - # Running specs without monkeypatch
52 - ${RUBY} -S rspec --tag libraries || die
53 -}