From: "Hans de Graaff" <graaff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/tzinfo/
Date: Wed, 23 Aug 2017 06:14:29 +0000 (UTC) [thread overview]
Message-ID: <1503468607.656680d7a4c5ffd9c55b2c445dba1c218a1a7e8a.graaff@gentoo> (raw)
commit: 656680d7a4c5ffd9c55b2c445dba1c218a1a7e8a
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 23 05:42:03 2017 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Wed Aug 23 06:10:07 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=656680d7
dev-ruby/tzinfo: add 0.3.53
Package-Manager: Portage-2.3.6, Repoman-2.3.2
dev-ruby/tzinfo/Manifest | 1 +
dev-ruby/tzinfo/tzinfo-0.3.53.ebuild | 37 ++++++++++++++++++++++++++++++++++++
2 files changed, 38 insertions(+)
diff --git a/dev-ruby/tzinfo/Manifest b/dev-ruby/tzinfo/Manifest
index d53383d5533..ea91f3fc98f 100644
--- a/dev-ruby/tzinfo/Manifest
+++ b/dev-ruby/tzinfo/Manifest
@@ -1,3 +1,4 @@
DIST tzinfo-0.3.52.gem 299520 SHA256 8354497af5f03549fbca9880074b6fa3f33c842accec0d8e5d5f19c3bae43c17 SHA512 12923bdf4743787be17416b60ee6bf10e851e9fb74c4d4ed9039ee94fa782ff38e5c2468f5bfcdff87d79bd4c73424b972e2f8a698c28c79c90d8df73e6da0b8 WHIRLPOOL 274a10a88ee4b96c0a6ec40cc49de89ff5ea697221f43aa462f6e6d1b322d6e848463607c376d0112cc6d52106952fc38bd7579308caa2c3ac76c55beda8adc4
+DIST tzinfo-0.3.53.gem 301056 SHA256 7e16e6ed8c0c44c0d1e581f3b21bbaae9c8ae206c243dc1cba4368270d8fb83e SHA512 f5a0119c04852845f1e4c8db36a2a374f2886ee5a14eee74ecacf19bc60bdf3e65197ee2ad1fe4fee56ac882b2e7cf17dcb4fef593767675e1fdb3da33b31b24 WHIRLPOOL ff3cb38a531a4f3fdcc8bfcd0a5ded8f18f2e14fdc27f51c0c57b7b758ec9b4096d10d1c90641f031d01b18c60fc791a2b48c4750b3d9b5e26889c8ad8972518
DIST tzinfo-1.2.2.gem 147456 SHA256 fdb1d3fdf2776d490c82a0e589a08e7cbde70ac1ae7d2b1f0b7e77f3e6b801b0 SHA512 717f5bda5a40e8225446c4ff413746a526682e5bb58e5047a2d1c8d0769cadaaca612d1f01c758fab5751f81f285156d77abbab08131de627a62def1a4e2eeb1 WHIRLPOOL f49a1b91f6765671043c4a7435df0cd6dfb4b5d55b9305b6fec0cde790708e90adf0d30c966000bf88908e4b2cf39c508d9a1f2dd1b352b689f2c0f4a2d2b6f7
DIST tzinfo-1.2.3.gem 151552 SHA256 9469862963cf5e8f12bb7d1cf89e681ebfee417537f6835b2e471c7c260d2817 SHA512 79a0c364d02ae1964e032586546073ebda3af822cbc064c06927cf48b7c9d0577ad38a738dc4e7065fd8a56e5a7939290e74031d850172635906744c841a6d2c WHIRLPOOL ed678c620c95a565da1f3115c78545602cb5cd66018fd33d2f3f2da82a8bf4fb015b3a94614d3823cd3eb52a8e71b7b21b00f1e5cdad17e315ba4a4d75f6ec62
diff --git a/dev-ruby/tzinfo/tzinfo-0.3.53.ebuild b/dev-ruby/tzinfo/tzinfo-0.3.53.ebuild
new file mode 100644
index 00000000000..0ffcecaaaf6
--- /dev/null
+++ b/dev-ruby/tzinfo/tzinfo-0.3.53.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+# ruby23 -> fails tests
+USE_RUBY="ruby22"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_DOCDIR="doc"
+RUBY_FAKEGEM_EXTRADOC="CHANGES README"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Daylight-savings aware timezone library"
+HOMEPAGE="http://tzinfo.github.io/"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE=""
+
+RDEPEND=""
+DEPEND=""
+
+all_ruby_prepare() {
+ # With rubygems 1.3.1 we get the following warning
+ # warning: Insecure world writable dir /var/tmp in LOAD_PATH, mode 041777
+ # when running the test_get_tainted_not_loaded test.
+ sed -i \
+ -e '/^ def test_get_tainted_not_loaded/, /^ end/ s:^:#:' \
+ "${S}"/test/tc_timezone.rb || die "unable to sed out the test"
+}
+
+each_ruby_test() {
+ TZ='America/Los_Angeles' ${RUBY} -I. -S testrb-2 test/tc_*.rb || die
+}
next reply other threads:[~2017-08-23 6:14 UTC|newest]
Thread overview: 92+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-23 6:14 Hans de Graaff [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-04-07 5:57 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/tzinfo/ Hans de Graaff
2024-05-26 9:26 Hans de Graaff
2023-12-05 18:25 Ionen Wolkens
2023-04-23 22:21 Sam James
2023-04-23 21:40 Sam James
2023-04-23 21:33 Sam James
2023-04-23 21:33 Sam James
2023-04-05 23:42 Sam James
2023-04-02 1:51 Sam James
2023-03-28 19:24 Sam James
2023-03-28 19:24 Sam James
2023-03-28 19:24 Sam James
2023-03-28 19:15 Sam James
2023-03-28 19:15 Sam James
2023-03-28 19:05 Arthur Zamarin
2023-01-30 7:30 Hans de Graaff
2023-01-30 7:30 Hans de Graaff
2023-01-30 7:30 Hans de Graaff
2022-07-23 7:18 Hans de Graaff
2022-07-20 5:42 Hans de Graaff
2022-04-24 7:06 Hans de Graaff
2022-04-19 11:40 Arthur Zamarin
2022-04-19 6:43 Agostino Sarubbo
2022-04-19 6:12 Jakov Smolić
2022-04-18 6:55 Hans de Graaff
2021-09-07 15:34 Marek Szuba
2021-09-07 15:34 Marek Szuba
2021-07-31 8:55 Hans de Graaff
2021-07-31 8:55 Hans de Graaff
2021-07-30 15:14 Agostino Sarubbo
2021-07-19 6:27 Agostino Sarubbo
2021-07-19 6:25 Agostino Sarubbo
2021-07-03 6:26 Hans de Graaff
2021-03-27 6:09 Hans de Graaff
2021-03-27 6:09 Hans de Graaff
2021-01-06 18:32 Fabian Groffen
2020-12-17 6:16 Hans de Graaff
2020-11-10 6:27 Hans de Graaff
2020-11-10 6:27 Hans de Graaff
2020-07-22 13:44 Hans de Graaff
2020-05-03 17:34 Hans de Graaff
2020-05-03 16:25 Sergei Trofimovich
2020-05-02 7:43 Hans de Graaff
2020-04-19 23:55 Sergei Trofimovich
2020-04-19 23:55 Sergei Trofimovich
2020-04-19 23:55 Sergei Trofimovich
2020-04-03 4:29 Hans de Graaff
2020-01-29 7:16 Hans de Graaff
2020-01-24 7:23 Hans de Graaff
2019-12-25 6:56 Hans de Graaff
2019-10-13 9:14 Hans de Graaff
2019-05-06 17:59 Hans de Graaff
2019-05-06 17:13 Sergei Trofimovich
2019-04-29 8:49 Sergei Trofimovich
2019-04-29 5:32 Hans de Graaff
2019-04-28 20:34 Thomas Deutschmann
2019-02-19 6:28 Hans de Graaff
2019-01-09 8:07 Hans de Graaff
2018-07-08 19:10 Sergei Trofimovich
2018-06-16 6:24 Hans de Graaff
2018-04-27 8:33 Hans de Graaff
2018-04-15 5:32 Hans de Graaff
2018-04-06 5:46 Hans de Graaff
2018-03-27 21:38 Aaron Bauman
2018-02-05 6:41 Hans de Graaff
2018-01-26 19:54 Thomas Deutschmann
2017-12-25 7:58 Hans de Graaff
2017-12-25 7:58 Hans de Graaff
2017-10-27 5:56 Hans de Graaff
2017-10-27 5:56 Hans de Graaff
2017-10-03 5:35 Hans de Graaff
2017-10-02 16:14 Manuel Rüger
2017-10-02 16:14 Manuel Rüger
2017-09-23 12:35 Sergei Trofimovich
2017-06-30 12:47 Alexis Ballier
2017-05-07 9:44 Hans de Graaff
2017-03-26 7:50 Hans de Graaff
2017-01-29 17:28 Fabian Groffen
2016-12-21 6:37 Hans de Graaff
2016-12-14 7:15 Hans de Graaff
2016-10-30 20:09 Hans de Graaff
2016-10-30 20:03 Hans de Graaff
2016-05-18 8:41 Fabian Groffen
2016-04-14 23:37 Manuel Rüger
2016-03-28 10:21 Hans de Graaff
2016-03-28 10:21 Hans de Graaff
2016-03-28 10:21 Hans de Graaff
2016-03-28 10:21 Hans de Graaff
2016-03-28 9:36 Agostino Sarubbo
2016-01-17 9:45 Fabian Groffen
2015-08-24 5:33 Hans de Graaff
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1503468607.656680d7a4c5ffd9c55b2c445dba1c218a1a7e8a.graaff@gentoo \
--to=graaff@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox