public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Hans de Graaff" <graaff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/timecop/
Date: Fri, 23 Jun 2017 03:38:50 +0000 (UTC)	[thread overview]
Message-ID: <1498186516.2bba10bb5ba609391c3238e99e5e126e2d04753e.graaff@gentoo> (raw)

commit:     2bba10bb5ba609391c3238e99e5e126e2d04753e
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 23 02:55:16 2017 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Fri Jun 23 02:55:16 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bba10bb

dev-ruby/timecop: add 0.9.0

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-ruby/timecop/Manifest             |  1 +
 dev-ruby/timecop/timecop-0.9.0.ebuild | 39 +++++++++++++++++++++++++++++++++++
 2 files changed, 40 insertions(+)

diff --git a/dev-ruby/timecop/Manifest b/dev-ruby/timecop/Manifest
index 78359c5dbc9..b20b4982592 100644
--- a/dev-ruby/timecop/Manifest
+++ b/dev-ruby/timecop/Manifest
@@ -1,3 +1,4 @@
 DIST timecop-0.7.1.gem 15360 SHA256 22e529f06739b1361b4e3b40adc667dfa8f50e66b13b778448cf51fb62bc8f2a SHA512 cbc1e1d6575473ed4200e71a8bbc91f4dd78a0e612e08ca236f485a92e71f02621bd199dc32a983dd7eea9a143b8fbf4b833f73016b5a7ea6a7459730efc1d83 WHIRLPOOL f54018f65fdd55c8d7399083a7c9d1f6f1405a6cea5941b8e20ef143d3c4a57350cc2714a2626f918ff753a11dafb506539d41ef4c43464258a2832590215a2a
 DIST timecop-0.8.0.gem 16384 SHA256 1ac7a7d13c700d21d13c533ccab3d004ecc2d8ddf339a93df7c29bd12634c47d SHA512 bd47dd44215be3a0ec9bc095094a258a29e79dcbe19d8afde015eef60ff0951888e81a6e0cbf9790789d4d0083265bf91088556d38db58461eb38edae9b15682 WHIRLPOOL ae0b5d7df5bf2cb9b5bd7695ec56b3373e5c3c0b692c86b1ef41affc4bc07441b76c43a977d2bd8f407d1ec0d379e89f96242609b7c53b12df2038bbbd2bd32d
 DIST timecop-0.8.1.gem 16384 SHA256 bdce943521113e0b9ed2a6136e1c7396fa413ec7100814f2fe5bc1ee319f8b6f SHA512 c4d281aa04fe94636dc23dc0fa6ea4a1dc27fc1debe550b06a208ceaab1d9d8b160f792bd5f14a7c004cecf489d4427df39873a68fe6ab27fe9c0e94770cc764 WHIRLPOOL 794420343bb9112f36d69b7aa161b865d1a79da3069200c2befbf693c4916f8a4021e9bbac28751beeefa8a77f21db82ff2caeddab39d5c310c8ce12147dafb1
+DIST timecop-0.9.0.gem 16896 SHA256 adced6244cf4f853f8028b240be5f78f0c44be2021949c7c7db075a2963810ed SHA512 820a953ed70588bd377d1b15188937429f0b8d7902e3c6696cbd0c878dfbe95269985654adae6598482384ccbf79b4cd9edf025ec61baf0982eaf340ce19c314 WHIRLPOOL ca756a190d8489b33b5e60c02c68b8a9f330ab6765fb54e8a5bab14c38afac9bf61ceaf777d5cdcfba00512850ae8fd66a4bebeedccf8aaeb98d5c7a1c416403

diff --git a/dev-ruby/timecop/timecop-0.9.0.ebuild b/dev-ruby/timecop/timecop-0.9.0.ebuild
new file mode 100644
index 00000000000..b7796fa3431
--- /dev/null
+++ b/dev-ruby/timecop/timecop-0.9.0.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby21 ruby22 ruby23 ruby24"
+
+RUBY_FAKEGEM_TASK_TEST="test"
+
+RUBY_FAKEGEM_TASK_DOC="rdoc"
+RUBY_FAKEGEM_DOCDIR="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.markdown"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A gem providing 'time travel' and 'time freezing' capabilities"
+HOMEPAGE="https://github.com/jtrupiano/timecop"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd"
+IUSE=""
+
+# Missing testdep activesupport
+ruby_add_bdepend "test? ( dev-ruby/mocha )"
+
+all_ruby_prepare() {
+	sed -i -e '/bundler/ s:^:#:' -e '/History.rdoc/d' Rakefile test/test_helper.rb || die
+	sed -i -e '/rubygems/ a\gem "test-unit"' \
+		-e '/minitest\/rg/ s:^:#:' test/test_helper.rb || die
+	# FIXME after activesupport gained ruby22 support
+	rm test/time_stack_item_test.rb || die
+}
+
+each_ruby_test() {
+	for f in test/*_test.rb ; do
+		${RUBY} -Ilib $f || die
+	done
+}


             reply	other threads:[~2017-06-23  3:38 UTC|newest]

Thread overview: 77+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-23  3:38 Hans de Graaff [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-09-23  7:12 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/timecop/ Sam James
2024-09-18  8:56 Hans de Graaff
2024-06-20  5:30 Hans de Graaff
2024-06-20  5:30 Hans de Graaff
2024-06-02  5:43 Hans de Graaff
2024-01-06  8:02 Hans de Graaff
2023-08-22  5:07 Hans de Graaff
2023-08-13  8:40 Hans de Graaff
2023-08-13  5:22 Hans de Graaff
2023-08-13  5:22 Hans de Graaff
2023-04-23 22:16 Sam James
2023-04-23 20:05 Sam James
2023-04-23 20:01 Sam James
2023-04-23 19:55 Sam James
2023-04-23 19:53 Sam James
2023-04-23 19:50 Sam James
2023-04-23 19:50 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:24 Sam James
2023-03-28 19:15 Sam James
2023-03-28 19:15 Sam James
2023-03-28 19:05 Sam James
2023-03-23  6:53 Sam James
2023-03-23  6:53 Sam James
2023-03-18 23:10 Sam James
2022-04-26 13:45 Sam James
2022-03-31  5:39 Hans de Graaff
2022-03-19 12:00 Hans de Graaff
2022-03-19  6:53 Arthur Zamarin
2022-03-18  8:29 Arthur Zamarin
2022-03-17  7:45 Agostino Sarubbo
2022-03-17  7:42 Agostino Sarubbo
2022-03-15 19:44 Jakov Smolić
2022-03-15  9:38 Jakov Smolić
2022-03-15  6:59 Hans de Graaff
2022-03-15  6:59 Hans de Graaff
2021-08-11 14:29 Marek Szuba
2021-03-20  8:47 Hans de Graaff
2021-03-20  8:47 Hans de Graaff
2021-02-09  5:47 Hans de Graaff
2020-10-15  4:58 Hans de Graaff
2020-05-02  6:30 Hans de Graaff
2020-04-28  9:40 Agostino Sarubbo
2020-01-22  7:54 Hans de Graaff
2019-07-06  8:40 Hans de Graaff
2019-05-26  7:04 Sergei Trofimovich
2019-05-23 13:15 Mikle Kolyada
2019-05-20 17:50 Sergei Trofimovich
2019-05-12 20:56 Thomas Deutschmann
2019-05-11  7:15 Hans de Graaff
2019-04-29  8:51 Sergei Trofimovich
2019-04-29  8:49 Sergei Trofimovich
2019-04-28 20:59 Sergei Trofimovich
2019-01-09  8:07 Hans de Graaff
2018-07-09 19:07 Sergei Trofimovich
2018-07-04 20:56 Hans de Graaff
2018-03-29  6:46 Hans de Graaff
2017-12-20 21:53 Sergei Trofimovich
2017-12-20 21:53 Sergei Trofimovich
2017-12-02  6:30 Hans de Graaff
2017-08-09  6:21 Patrice Clement
2017-07-06  8:15 Agostino Sarubbo
2017-07-06  4:56 Hans de Graaff
2017-07-06  4:56 Hans de Graaff
2017-07-01 13:45 Alexis Ballier
2017-06-28 20:49 Sergei Trofimovich
2017-03-02  7:02 Hans de Graaff
2016-12-09  6:59 Hans de Graaff
2016-07-21 19:38 Hans de Graaff
2016-07-05  8:49 Tobias Klausmann
2016-05-12  5:19 Hans de Graaff
2016-04-03  6:56 Hans de Graaff
2016-04-03  6:56 Hans de Graaff
2016-03-21 16:44 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=1498186516.2bba10bb5ba609391c3238e99e5e126e2d04753e.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