Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/tzinfo: ChangeLog tzinfo-0.3.16.ebuild
Date: Wed, 06 Jan 2010 00:30:28
Message-Id: E1NSJn6-0005PS-6F@stork.gentoo.org
1 flameeyes 10/01/06 00:30:24
2
3 Modified: ChangeLog
4 Added: tzinfo-0.3.16.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc61/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.46 dev-ruby/tzinfo/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/tzinfo/ChangeLog?rev=1.46&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/tzinfo/ChangeLog?rev=1.46&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/tzinfo/ChangeLog?r1=1.45&r2=1.46
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v
19 retrieving revision 1.45
20 retrieving revision 1.46
21 diff -u -r1.45 -r1.46
22 --- ChangeLog 4 Jan 2010 12:01:39 -0000 1.45
23 +++ ChangeLog 6 Jan 2010 00:30:23 -0000 1.46
24 @@ -1,6 +1,12 @@
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.45 2010/01/04 12:01:39 fauli Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v 1.46 2010/01/06 00:30:23 flameeyes Exp $
29 +
30 +*tzinfo-0.3.16 (06 Jan 2010)
31 +
32 + 06 Jan 2010; Diego E. Pettenò <flameeyes@g.o>
33 + +tzinfo-0.3.16.ebuild:
34 + Version bump.
35
36 04 Jan 2010; Christian Faulhammer <fauli@g.o>
37 tzinfo-0.3.15-r1.ebuild:
38
39
40
41 1.1 dev-ruby/tzinfo/tzinfo-0.3.16.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.16.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.16.ebuild?rev=1.1&content-type=text/plain
45
46 Index: tzinfo-0.3.16.ebuild
47 ===================================================================
48 # Copyright 1999-2010 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.16.ebuild,v 1.1 2010/01/06 00:30:23 flameeyes Exp $
51
52 EAPI=2
53 USE_RUBY="ruby18 ruby19 jruby"
54
55 RUBY_FAKEGEM_DOCDIR="doc"
56 RUBY_FAKEGEM_EXTRADOC="CHANGES README"
57
58 inherit ruby-fakegem
59
60 DESCRIPTION="Daylight-savings aware timezone library"
61 HOMEPAGE="http://tzinfo.rubyforge.org/"
62 SRC_URI="mirror://rubyforge/${PN}/${P}.tar.gz"
63
64 LICENSE="MIT"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-solaris"
67 IUSE=""
68
69 RDEPEND=""
70 DEPEND=""
71
72 ruby_add_bdepend test virtual/ruby-test-unit
73
74 all_ruby_prepare() {
75 # The package has all the files executable, probably coming from
76 # Windows.
77 find "${S}" -type f -perm +111 -exec chmod -x {} +
78
79 # With rubygems 1.3.1 we get the following warning
80 # warning: Insecure world writable dir /var/tmp in LOAD_PATH, mode 041777
81 # when running the test_get_tainted_not_loaded test.
82 sed -i -e '138,146s:^:#:' "${S}"/test/tc_timezone.rb || die "unable to sed out the test"
83 }