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.22.ebuild
Date: Sat, 29 May 2010 12:44:41
Message-Id: 20100529124433.E07F82CF37@corvid.gentoo.org
1 flameeyes 10/05/29 12:44:33
2
3 Modified: ChangeLog
4 Added: tzinfo-0.3.22.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.62 dev-ruby/tzinfo/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tzinfo/ChangeLog?rev=1.62&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tzinfo/ChangeLog?rev=1.62&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tzinfo/ChangeLog?r1=1.61&r2=1.62
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v
19 retrieving revision 1.61
20 retrieving revision 1.62
21 diff -u -r1.61 -r1.62
22 --- ChangeLog 23 May 2010 20:06:23 -0000 1.61
23 +++ ChangeLog 29 May 2010 12:44:33 -0000 1.62
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.61 2010/05/23 20:06:23 pacho Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v 1.62 2010/05/29 12:44:33 flameeyes Exp $
29 +
30 +*tzinfo-0.3.22 (29 May 2010)
31 +
32 + 29 May 2010; Diego E. Pettenò <flameeyes@g.o>
33 + +tzinfo-0.3.22.ebuild:
34 + Version bump.
35
36 23 May 2010; Pacho Ramos <pacho@g.o> tzinfo-0.3.16.ebuild:
37 stable amd64, bug 312963
38
39
40
41 1.1 dev-ruby/tzinfo/tzinfo-0.3.22.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.22.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.22.ebuild?rev=1.1&content-type=text/plain
45
46 Index: tzinfo-0.3.22.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.22.ebuild,v 1.1 2010/05/29 12:44:33 flameeyes Exp $
51
52 EAPI=2
53 USE_RUBY="ruby18 ree18 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 ~x64-solaris ~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 \
83 -e '/^ def test_get_tainted_not_loaded/, /^ end/ s:^:#:' \
84 "${S}"/test/tc_timezone.rb || die "unable to sed out the test"
85 }