Gentoo Archives: gentoo-commits

From: "Hans de Graaff (graaff)" <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/tzinfo: ChangeLog tzinfo-0.3.43.ebuild
Date: Fri, 27 Feb 2015 10:29:06
Message-Id: 20150227102857.21B3812A85@oystercatcher.gentoo.org
1 graaff 15/02/27 10:28:57
2
3 Modified: ChangeLog
4 Added: tzinfo-0.3.43.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.140 dev-ruby/tzinfo/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tzinfo/ChangeLog?rev=1.140&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tzinfo/ChangeLog?rev=1.140&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tzinfo/ChangeLog?r1=1.139&r2=1.140
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v
20 retrieving revision 1.139
21 retrieving revision 1.140
22 diff -u -r1.139 -r1.140
23 --- ChangeLog 25 Feb 2015 19:32:06 -0000 1.139
24 +++ ChangeLog 27 Feb 2015 10:28:57 -0000 1.140
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/tzinfo
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v 1.139 2015/02/25 19:32:06 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v 1.140 2015/02/27 10:28:57 graaff Exp $
30 +
31 +*tzinfo-0.3.43 (27 Feb 2015)
32 +
33 + 27 Feb 2015; Hans de Graaff <graaff@g.o> +tzinfo-0.3.43.ebuild:
34 + Version bump.
35
36 25 Feb 2015; Hans de Graaff <graaff@g.o> tzinfo-1.2.2.ebuild:
37 Add ruby22.
38
39
40
41 1.1 dev-ruby/tzinfo/tzinfo-0.3.43.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.43.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.43.ebuild?rev=1.1&content-type=text/plain
45
46 Index: tzinfo-0.3.43.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.43.ebuild,v 1.1 2015/02/27 10:28:57 graaff Exp $
51
52 EAPI=5
53 USE_RUBY="ruby19 ruby20 ruby21 ruby22"
54
55 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
56 RUBY_FAKEGEM_DOCDIR="doc"
57 RUBY_FAKEGEM_EXTRADOC="CHANGES README"
58
59 inherit ruby-fakegem
60
61 DESCRIPTION="Daylight-savings aware timezone library"
62 HOMEPAGE="http://tzinfo.github.io/"
63
64 LICENSE="MIT"
65 SLOT="0"
66 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"
67 IUSE=""
68
69 RDEPEND=""
70 DEPEND=""
71
72 all_ruby_prepare() {
73 # With rubygems 1.3.1 we get the following warning
74 # warning: Insecure world writable dir /var/tmp in LOAD_PATH, mode 041777
75 # when running the test_get_tainted_not_loaded test.
76 sed -i \
77 -e '/^ def test_get_tainted_not_loaded/, /^ end/ s:^:#:' \
78 "${S}"/test/tc_timezone.rb || die "unable to sed out the test"
79 }
80
81 each_ruby_test() {
82 TZ='America/Los_Angeles' ${RUBY} -I. -S testrb test/tc_*.rb || die
83 }