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/tzinfo/
Date: Mon, 28 Mar 2016 10:22:01
Message-Id: 1459160478.f05f31a201d54bef69ae41f72db94838a96887eb.graaff@gentoo
1 commit: f05f31a201d54bef69ae41f72db94838a96887eb
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 28 06:31:03 2016 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 28 10:21:18 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f05f31a2
7
8 dev-ruby/tzinfo: cleanup
9
10 Package-Manager: portage-2.2.26
11
12 dev-ruby/tzinfo/tzinfo-0.3.43-r1.ebuild | 36 ---------------------------------
13 1 file changed, 36 deletions(-)
14
15 diff --git a/dev-ruby/tzinfo/tzinfo-0.3.43-r1.ebuild b/dev-ruby/tzinfo/tzinfo-0.3.43-r1.ebuild
16 deleted file mode 100644
17 index 7760b20..0000000
18 --- a/dev-ruby/tzinfo/tzinfo-0.3.43-r1.ebuild
19 +++ /dev/null
20 @@ -1,36 +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 -USE_RUBY="ruby19 ruby20 ruby21 ruby22"
27 -
28 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
29 -RUBY_FAKEGEM_DOCDIR="doc"
30 -RUBY_FAKEGEM_EXTRADOC="CHANGES README"
31 -
32 -inherit ruby-fakegem
33 -
34 -DESCRIPTION="Daylight-savings aware timezone library"
35 -HOMEPAGE="http://tzinfo.github.io/"
36 -
37 -LICENSE="MIT"
38 -SLOT="0"
39 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
40 -IUSE=""
41 -
42 -RDEPEND=""
43 -DEPEND=""
44 -
45 -all_ruby_prepare() {
46 - # With rubygems 1.3.1 we get the following warning
47 - # warning: Insecure world writable dir /var/tmp in LOAD_PATH, mode 041777
48 - # when running the test_get_tainted_not_loaded test.
49 - sed -i \
50 - -e '/^ def test_get_tainted_not_loaded/, /^ end/ s:^:#:' \
51 - "${S}"/test/tc_timezone.rb || die "unable to sed out the test"
52 -}
53 -
54 -each_ruby_test() {
55 - TZ='America/Los_Angeles' ${RUBY} -I. -S testrb test/tc_*.rb || die
56 -}