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: Mon, 30 Jan 2023 07:30:04 +0000 (UTC) [thread overview]
Message-ID: <1675063799.71c9030b7f059348ec5dba4c652a2548a217384c.graaff@gentoo> (raw)
commit: 71c9030b7f059348ec5dba4c652a2548a217384c
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 30 07:27:06 2023 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Mon Jan 30 07:29:59 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71c9030b
dev-ruby/tzinfo: add 2.0.6
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/tzinfo/Manifest | 1 +
dev-ruby/tzinfo/tzinfo-2.0.6.ebuild | 48 +++++++++++++++++++++++++++++++++++++
2 files changed, 49 insertions(+)
diff --git a/dev-ruby/tzinfo/Manifest b/dev-ruby/tzinfo/Manifest
index 82d64d316977..0525dcf4ad81 100644
--- a/dev-ruby/tzinfo/Manifest
+++ b/dev-ruby/tzinfo/Manifest
@@ -2,3 +2,4 @@ DIST tzinfo-1.2.10.gem 167936 BLAKE2B 558721a357bf6875b02850dca2f0b6eabcafdacb48
DIST tzinfo-1.2.9.gem 166912 BLAKE2B 6d54a5118fbdb3556d0cdc9079462cf26afa9deddd1dc21ef670240e2aa47a66d0b4fc9c9c7ed74bd14bde96dc95f6b716aef5d32ca521221618a76c8c05cda1 SHA512 ddf28ad213f681a4e551cbd803873b279acef03fae894a3e6475030d4da5a59732b31af5d5944e8c62d15b7ec922816fede24f180fb20c55c1bd3d379c879cfe
DIST tzinfo-2.0.4.tar.gz 224673 BLAKE2B 0c7ef231767b6fc00cf95b3e1c2037894b14dfe832eaedb3f4b7c60a884ab6f7121243af5b62acf47d02da28395e7390f968421a3a3a2d731deb079e9fc51bfa SHA512 5b2ec73f737009ba21dac7dbb9504235fdef14dc45a6450e1218ba9e53dd29735ab4fa6c2854271916cc5c0244e09ae7ab19467408b72b9b82ca238e14d3fa4f
DIST tzinfo-2.0.5.tar.gz 226225 BLAKE2B 44e6d65dadc4828e4b8803c0badf381e18afe7412e090c4d91147b144f300a8c0e3189bc8e8325625678a57ea6a1179a1ed277f5fb54230ce77c46ba6b0100c7 SHA512 a3c59b1f390b186356b9219b0fb18bb762d2123936553738e1068ba46bf0206c5a0394b1d46b5c7b891aa55b8afa839858837511f53e3ef0eb0e85fe3f23b57a
+DIST tzinfo-2.0.6.tar.gz 226143 BLAKE2B 8a7918c0edc1e70f3b805dfcdc351d9ec78f42a66973ec7cb0a8bfad31d9ccdadefe93b941aca5c15510ff857bd8282046e8d20d02f308934e087de541c26383 SHA512 88af68b13becc4b6b85b4653df95e19e24d8804ac2b2393ef03cfe551b5eaee827a5aecd2156a56572d554dd5239ae828a65e5c49854671aa1989f5c31ba320d
diff --git a/dev-ruby/tzinfo/tzinfo-2.0.6.ebuild b/dev-ruby/tzinfo/tzinfo-2.0.6.ebuild
new file mode 100644
index 000000000000..18d779bdbc52
--- /dev/null
+++ b/dev-ruby/tzinfo/tzinfo-2.0.6.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby27 ruby30 ruby31"
+
+RUBY_FAKEGEM_TASK_TEST="test_zoneinfo"
+
+RUBY_FAKEGEM_DOCDIR="doc"
+RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="tzinfo.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Daylight-savings aware timezone library"
+HOMEPAGE="https://tzinfo.github.io/"
+SRC_URI="https://github.com/tzinfo/tzinfo/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="2"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE=""
+
+RDEPEND="sys-libs/timezone-data"
+DEPEND="test? ( sys-libs/timezone-data )"
+
+ruby_add_rdepend "dev-ruby/concurrent-ruby:1"
+ruby_add_bdepend "test? ( dev-ruby/bundler dev-ruby/minitest:5 )"
+
+all_ruby_prepare() {
+ # Set the secure permissions that tests expect.
+ chmod 0755 "${HOME}" || die "Failed to fix permissions on home"
+
+ # Skip safe tests since we cannot guarantee the correct permissions
+ # on directories for it to pass.
+ sed -e '/safe_test/askip "does not pass in gentoo test environment"' -i test/test_utils.rb || die
+
+ # Loosen test dependencies
+ sed -e '/rake/ s/12.2.1/12.2/' \
+ -e '/simplecov/d' \
+ -i Gemfile || die
+ sed -e '/TEST_COVERAGE/d' -i Rakefile || die
+}
+
+each_ruby_test() {
+ ${RUBY} -S bundle exec rake test || die
+}
next reply other threads:[~2023-01-30 7:30 UTC|newest]
Thread overview: 91+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-30 7:30 Hans de Graaff [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-05-26 9:26 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/tzinfo/ 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
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-08-23 6:14 Hans de Graaff
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=1675063799.71c9030b7f059348ec5dba4c652a2548a217384c.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