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: Tue, 19 Feb 2019 06:29:02
Message-Id: 1550556852.6160bfdc15c2cc199eadc154fab290d6e91f36ca.graaff@gentoo
1 commit: 6160bfdc15c2cc199eadc154fab290d6e91f36ca
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 19 06:14:12 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 19 06:14:12 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6160bfdc
7
8 dev-ruby/tzinfo: add 2.0.0
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 dev-ruby/tzinfo/Manifest | 1 +
14 dev-ruby/tzinfo/tzinfo-2.0.0.ebuild | 47 +++++++++++++++++++++++++++++++++++++
15 2 files changed, 48 insertions(+)
16
17 diff --git a/dev-ruby/tzinfo/Manifest b/dev-ruby/tzinfo/Manifest
18 index 334faeae4b1..4e2b4e36bf4 100644
19 --- a/dev-ruby/tzinfo/Manifest
20 +++ b/dev-ruby/tzinfo/Manifest
21 @@ -1,2 +1,3 @@
22 DIST tzinfo-1.2.4.gem 152576 BLAKE2B c6815fc7277153c5e00ea2359845df25affab5a08f9274729254662e056de702613f4b8ca5b4f2ddcd756d86ae12e534a4e2a5a4661f361ef1d59cb3d7f07bfa SHA512 0b983aa6b4fdbb3c49329bb51394f1edbeb6f4d216d108448aa9dce751dbc2e348d58032cb41df78a3d249611770e9e345a4d0041597ceadf052b863c3e6d1ab
23 DIST tzinfo-1.2.5.gem 153600 BLAKE2B 3df5625c61eabf94bb457381ac7d0cdebd5b55da3bb043fe58063cccccb623b502e026a71faef4f7d7efe75eae2fdfd0bf3e0b97a3763fec9a1018f0c6c2ae0f SHA512 87f7cd66d6e80d51d216cb993cc76fe7758db03ffd39dde96eb24a9d208699766a8dbff048485fb732ce125ee9f971e38ed9ee1197f3ee3fc3ee8a8da840dd45
24 +DIST tzinfo-2.0.0.tar.gz 210379 BLAKE2B e3b8b7763dbe26ce58b1a1672d11c412f362910d695c321e51a9c28f1e742db34aa7c066827d7a4634e4a1f7824205007b66191cbeba7776dbc6cac1c9f144ca SHA512 cdc3393af8402dbde491f4547a1b169d90bcf7228c89b64f104538223fcb8f5cf8f7861ae1e11a723b213de7ab09fe31fc04ed9f275f80fe2929f0279d830679
25
26 diff --git a/dev-ruby/tzinfo/tzinfo-2.0.0.ebuild b/dev-ruby/tzinfo/tzinfo-2.0.0.ebuild
27 new file mode 100644
28 index 00000000000..bc31b7ea159
29 --- /dev/null
30 +++ b/dev-ruby/tzinfo/tzinfo-2.0.0.ebuild
31 @@ -0,0 +1,47 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +USE_RUBY="ruby23 ruby24 ruby25 ruby26"
37 +
38 +RUBY_FAKEGEM_TASK_TEST="test_zoneinfo"
39 +
40 +RUBY_FAKEGEM_RECIPE_DOC="rdoc"
41 +RUBY_FAKEGEM_DOCDIR="doc"
42 +RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
43 +
44 +inherit ruby-fakegem
45 +
46 +DESCRIPTION="Daylight-savings aware timezone library"
47 +HOMEPAGE="https://tzinfo.github.io/"
48 +SRC_URI="https://github.com/tzinfo/tzinfo/archive/v${PV}.tar.gz -> ${P}.tar.gz"
49 +
50 +LICENSE="MIT"
51 +SLOT="2"
52 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
53 +IUSE=""
54 +
55 +RDEPEND="sys-libs/timezone-data"
56 +DEPEND="test? ( sys-libs/timezone-data )"
57 +
58 +ruby_add_rdepend "dev-ruby/concurrent-ruby:1"
59 +ruby_add_bdepend "test? ( dev-ruby/bundler dev-ruby/minitest:5 )"
60 +
61 +all_ruby_prepare() {
62 + # Set the secure permissions that tests expect.
63 + chmod 0755 "${HOME}" || die "Failed to fix permissions on home"
64 +
65 + # Skip safe tests since we cannot guarantee the correct permissions
66 + # on directories for it to pass.
67 + sed -e '/safe_test/askip "does not pass in gentoo test environment"' -i test/test_utils.rb || die
68 +
69 + # Loosen test dependencies
70 + sed -e '/rake/ s/12.2.1/12.2/' \
71 + -e '/simplecov/d' \
72 + -i Gemfile || die
73 + sed -e '/TEST_COVERAGE/d' -i Rakefile || die
74 +}
75 +
76 +each_ruby_test() {
77 + ${RUBY} -S bundle exec rake test || die
78 +}