Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/safe_yaml/
Date: Sat, 23 Feb 2019 07:16:58
Message-Id: 1550903290.951f11b5d357ddcf0b9b00ae25fb1aa9cdbed188.graaff@gentoo
1 commit: 951f11b5d357ddcf0b9b00ae25fb1aa9cdbed188
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 23 06:28:10 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 23 06:28:10 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=951f11b5
7
8 dev-ruby/safe_yaml: add 1.0.5
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 dev-ruby/safe_yaml/Manifest | 1 +
14 dev-ruby/safe_yaml/safe_yaml-1.0.5.ebuild | 36 +++++++++++++++++++++++++++++++
15 2 files changed, 37 insertions(+)
16
17 diff --git a/dev-ruby/safe_yaml/Manifest b/dev-ruby/safe_yaml/Manifest
18 index 6d2b813eb7a..4083a604719 100644
19 --- a/dev-ruby/safe_yaml/Manifest
20 +++ b/dev-ruby/safe_yaml/Manifest
21 @@ -1 +1,2 @@
22 DIST safe_yaml-1.0.4.gem 30208 BLAKE2B f77318c098dc6f6202c3818c2095e6e412c988d227be3a962210947bc4ac29c733b4433c7ba050f26dbb115675bbd9564e020be915aed0c5749b5c09cafd4d09 SHA512 ecc944a6e5f0862acf1413d7ab38bd35b56405893bb8064be2b8a056f0164d3710afaa2f6ef65868770e855ecf54a87bf9ddae2241c3c2957ca001ca04b04c5a
23 +DIST safe_yaml-1.0.5.gem 30720 BLAKE2B affbf5331cf290c3e7932f53da9b0f488730ae9138f0b28eb1e8e0323c7056635ed73bcadebd52f725895030a153dab13e243d997e84004f5bfac82e82dcebe2 SHA512 d9c8d9c28c3c8708f97cb0545f58152af81056f5e79147424dd7bf625f8e533440d1ed41d6abe2faf84578754823a1215ba28772c2e8593bfcfc397d647187b9
24
25 diff --git a/dev-ruby/safe_yaml/safe_yaml-1.0.5.ebuild b/dev-ruby/safe_yaml/safe_yaml-1.0.5.ebuild
26 new file mode 100644
27 index 00000000000..1f94905ba59
28 --- /dev/null
29 +++ b/dev-ruby/safe_yaml/safe_yaml-1.0.5.ebuild
30 @@ -0,0 +1,36 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +USE_RUBY="ruby23 ruby24 ruby25 ruby26"
37 +
38 +RUBY_FAKEGEM_RECIPE_DOC="rdoc"
39 +RUBY_FAKEGEM_EXTRADOC="README.md"
40 +RUBY_FAKEGEM_RECIPE_TEST="none"
41 +
42 +inherit ruby-fakegem
43 +
44 +DESCRIPTION="Parse YAML safely, alternative implementation of YAML.load"
45 +HOMEPAGE="https://dtao.github.com/safe_yaml"
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
50 +IUSE="test"
51 +
52 +ruby_add_bdepend "test? ( dev-ruby/hashie
53 + dev-ruby/heredoc_unindent
54 + dev-ruby/rspec:3 )"
55 +
56 +all_ruby_prepare() {
57 + sed -i -e '/local timezone/askip "timezone"' spec/transform/to_date_spec.rb || die
58 +}
59 +
60 +each_ruby_test() {
61 + # Run specs with monkeypatch
62 + ${RUBY} -S rspec-3 spec --tag ~libraries || die
63 +
64 + # Running specs without monkeypatch
65 + ${RUBY} -S rspec-3 spec --tag libraries || die
66 +}