dev-ruby/safe_yaml: fix issue with missing DateTime constant
authorHans de Graaff <graaff@gentoo.org>
Fri, 1 Jun 2018 07:29:01 +0000 (09:29 +0200)
committerHans de Graaff <graaff@gentoo.org>
Fri, 1 Jun 2018 17:11:08 +0000 (19:11 +0200)
Package-Manager: Portage-2.3.36, Repoman-2.3.9

dev-ruby/safe_yaml/files/safe_yaml-1.0.4-datetime.patch [new file with mode: 0644]
dev-ruby/safe_yaml/safe_yaml-1.0.4-r4.ebuild [new file with mode: 0644]

diff --git a/dev-ruby/safe_yaml/files/safe_yaml-1.0.4-datetime.patch b/dev-ruby/safe_yaml/files/safe_yaml-1.0.4-datetime.patch
new file mode 100644 (file)
index 0000000..92e5505
--- /dev/null
@@ -0,0 +1,19 @@
+From 9dd1e8d9ad0396a8c9092c2e9f17d498c58e0208 Mon Sep 17 00:00:00 2001
+From: elifoster <elifosterwy@gmail.com>
+Date: Tue, 5 Dec 2017 14:30:13 -0800
+Subject: [PATCH] Fix uninitialized constant DateTime Close #80
+
+---
+ lib/safe_yaml/parse/date.rb | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/lib/safe_yaml/parse/date.rb b/lib/safe_yaml/parse/date.rb
+index cd3c62a..3a30a8b 100644
+--- a/lib/safe_yaml/parse/date.rb
++++ b/lib/safe_yaml/parse/date.rb
+@@ -1,3 +1,5 @@
++require 'time'
++
+ module SafeYAML
+   class Parse
+     class Date
diff --git a/dev-ruby/safe_yaml/safe_yaml-1.0.4-r4.ebuild b/dev-ruby/safe_yaml/safe_yaml-1.0.4-r4.ebuild
new file mode 100644 (file)
index 0000000..5fe2d73
--- /dev/null
@@ -0,0 +1,38 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+RUBY_FAKEGEM_RECIPE_TEST="none"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Parse YAML safely, alternative implementation of YAML.load"
+HOMEPAGE="https://dtao.github.com/safe_yaml"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="test"
+
+PATCHES=( "${FILESDIR}/${P}-datetime.patch" )
+
+ruby_add_bdepend "test? ( dev-ruby/hashie
+       dev-ruby/heredoc_unindent
+       dev-ruby/rspec:3 )"
+
+all_ruby_prepare() {
+       sed -i -e '/local timezone/askip "timezone"' spec/transform/to_date_spec.rb || die
+}
+
+each_ruby_test() {
+       # Run specs with monkeypatch
+       ${RUBY} -S rspec-3 spec --tag ~libraries || die
+
+       # Running specs without monkeypatch
+       ${RUBY} -S rspec-3 spec --tag libraries || die
+}