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, 13 Apr 2019 12:27:06
Message-Id: 1555158394.23d8eccfa4ae4970fb448717c457b56b9b3273cc.graaff@gentoo
1 commit: 23d8eccfa4ae4970fb448717c457b56b9b3273cc
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 13 12:16:44 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 13 12:26:34 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23d8eccf
7
8 dev-ruby/safe_yaml: cleanup
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11 Package-Manager: Portage-2.3.62, Repoman-2.3.11
12
13 dev-ruby/safe_yaml/safe_yaml-1.0.4-r4.ebuild | 38 ----------------------------
14 1 file changed, 38 deletions(-)
15
16 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
17 deleted file mode 100644
18 index 0a259ce3be6..00000000000
19 --- a/dev-ruby/safe_yaml/safe_yaml-1.0.4-r4.ebuild
20 +++ /dev/null
21 @@ -1,38 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -USE_RUBY="ruby23 ruby24 ruby25 ruby26"
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, alternative implementation of YAML.load"
36 -HOMEPAGE="https://dtao.github.com/safe_yaml"
37 -
38 -LICENSE="MIT"
39 -SLOT="0"
40 -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
41 -IUSE="test"
42 -
43 -PATCHES=( "${FILESDIR}/${P}-datetime.patch" )
44 -
45 -ruby_add_bdepend "test? ( dev-ruby/hashie
46 - dev-ruby/heredoc_unindent
47 - dev-ruby/rspec:3 )"
48 -
49 -all_ruby_prepare() {
50 - sed -i -e '/local timezone/askip "timezone"' spec/transform/to_date_spec.rb || die
51 -}
52 -
53 -each_ruby_test() {
54 - # Run specs with monkeypatch
55 - ${RUBY} -S rspec-3 spec --tag ~libraries || die
56 -
57 - # Running specs without monkeypatch
58 - ${RUBY} -S rspec-3 spec --tag libraries || die
59 -}