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.20.ebuild
Date: Tue, 20 Apr 2010 06:28:29
Message-Id: 20100420062820.7D1FE2C04B@corvid.gentoo.org
1 graaff 10/04/20 06:28:20
2
3 Modified: ChangeLog
4 Added: tzinfo-0.3.20.ebuild
5 Log:
6 Version bump: Updated to tzdata version 2010i.
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.56 dev-ruby/tzinfo/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/tzinfo/ChangeLog?rev=1.56&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/tzinfo/ChangeLog?rev=1.56&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/tzinfo/ChangeLog?r1=1.55&r2=1.56
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v
19 retrieving revision 1.55
20 retrieving revision 1.56
21 diff -u -r1.55 -r1.56
22 --- ChangeLog 18 Apr 2010 17:33:37 -0000 1.55
23 +++ ChangeLog 20 Apr 2010 06:28:20 -0000 1.56
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-ruby/tzinfo
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v 1.55 2010/04/18 17:33:37 nixnut Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v 1.56 2010/04/20 06:28:20 graaff Exp $
29 +
30 +*tzinfo-0.3.20 (20 Apr 2010)
31 +
32 + 20 Apr 2010; Hans de Graaff <graaff@g.o> +tzinfo-0.3.20.ebuild:
33 + Version bump: Updated to tzdata version 2010i.
34
35 18 Apr 2010; <nixnut@g.o> tzinfo-0.3.16.ebuild:
36 ppc stable #312963
37
38
39
40 1.1 dev-ruby/tzinfo/tzinfo-0.3.20.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.20.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.20.ebuild?rev=1.1&content-type=text/plain
44
45 Index: tzinfo-0.3.20.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.20.ebuild,v 1.1 2010/04/20 06:28:20 graaff Exp $
50
51 EAPI=2
52 USE_RUBY="ruby18 ruby19 jruby"
53
54 RUBY_FAKEGEM_DOCDIR="doc"
55 RUBY_FAKEGEM_EXTRADOC="CHANGES README"
56
57 inherit ruby-fakegem
58
59 DESCRIPTION="Daylight-savings aware timezone library"
60 HOMEPAGE="http://tzinfo.rubyforge.org/"
61 SRC_URI="mirror://rubyforge/${PN}/${P}.tar.gz"
62
63 LICENSE="MIT"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x64-solaris ~x86-solaris"
66 IUSE=""
67
68 RDEPEND=""
69 DEPEND=""
70
71 ruby_add_bdepend test virtual/ruby-test-unit
72
73 all_ruby_prepare() {
74 # The package has all the files executable, probably coming from
75 # Windows.
76 find "${S}" -type f -perm +111 -exec chmod -x {} +
77
78 # With rubygems 1.3.1 we get the following warning
79 # warning: Insecure world writable dir /var/tmp in LOAD_PATH, mode 041777
80 # when running the test_get_tainted_not_loaded test.
81 sed -i -e '138,146s:^:#:' "${S}"/test/tc_timezone.rb || die "unable to sed out the test"
82 }