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: Fri, 16 Jul 2021 08:52:33
Message-Id: 1626425544.e7242bec41462ee36c6ee69f51e9081c0fd77aa1.graaff@gentoo
1 commit: e7242bec41462ee36c6ee69f51e9081c0fd77aa1
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 16 08:02:49 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 16 08:52:24 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7242bec
7
8 dev-ruby/safe_yaml: cleanup
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.2
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/safe_yaml/safe_yaml-1.0.5.ebuild | 36 -------------------------------
14 1 file changed, 36 deletions(-)
15
16 diff --git a/dev-ruby/safe_yaml/safe_yaml-1.0.5.ebuild b/dev-ruby/safe_yaml/safe_yaml-1.0.5.ebuild
17 deleted file mode 100644
18 index b94009c285c..00000000000
19 --- a/dev-ruby/safe_yaml/safe_yaml-1.0.5.ebuild
20 +++ /dev/null
21 @@ -1,36 +0,0 @@
22 -# Copyright 1999-2021 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 ~sparc x86 ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
41 -IUSE="test"
42 -
43 -ruby_add_bdepend "test? ( dev-ruby/hashie
44 - dev-ruby/heredoc_unindent
45 - dev-ruby/rspec:3 )"
46 -
47 -all_ruby_prepare() {
48 - sed -i -e '/local timezone/askip "timezone"' spec/transform/to_date_spec.rb || die
49 -}
50 -
51 -each_ruby_test() {
52 - # Run specs with monkeypatch
53 - ${RUBY} -S rspec-3 spec --tag ~libraries || die
54 -
55 - # Running specs without monkeypatch
56 - ${RUBY} -S rspec-3 spec --tag libraries || die
57 -}