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/power_assert/
Date: Fri, 23 Dec 2022 07:48:48 +0000 (UTC)	[thread overview]
Message-ID: <1671781724.715fab3937c4b34779c6d18d2bf32b278dbb6a8f.graaff@gentoo> (raw)

commit:     715fab3937c4b34779c6d18d2bf32b278dbb6a8f
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 22 06:51:20 2022 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Fri Dec 23 07:48:44 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=715fab39

dev-ruby/power_assert: add 2.0.3

Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>

 dev-ruby/power_assert/Manifest                  |  1 +
 dev-ruby/power_assert/power_assert-2.0.3.ebuild | 41 +++++++++++++++++++++++++
 2 files changed, 42 insertions(+)

diff --git a/dev-ruby/power_assert/Manifest b/dev-ruby/power_assert/Manifest
index ffa60cb08027..bf3ad5e65e72 100644
--- a/dev-ruby/power_assert/Manifest
+++ b/dev-ruby/power_assert/Manifest
@@ -3,3 +3,4 @@ DIST power_assert-1.2.0.tar.gz 17358 BLAKE2B 8b75b34f5d80f8f52370816b916e3bc3a60
 DIST power_assert-2.0.0.tar.gz 16994 BLAKE2B 5106e77566100274000c55af1bd2ff9aaf00185ed1821ac966587461919210d7460e30aefdb5a880e7ef59e4f536121371d0862df2af91cb274ed79ded8c9771 SHA512 e6faf3cf50d2c70ae421bae20b885ac858fe11b10b1a8562d9ca88afbd397fa4812631f2aa02638c273eed518091dfaa020b6c002c0559383ddca625404bcc1c
 DIST power_assert-2.0.1.tar.gz 17062 BLAKE2B 9c592c12e0722a3376fede86b1a609c4c5feec49dacdb74f5af96d7ee3024112525bdd57fd5d1763b3a599386ce6548d694f5a4b1207c356701c79046166ee42 SHA512 717d163050e45d889bbf50ee5caf4d91b143a0df45d8ed1be9588595fd485f05662d59ae6166d44b5cf987d6b2a1e77f40441f2aefd1051ff9cf679d3bcdddc6
 DIST power_assert-2.0.2.tar.gz 17141 BLAKE2B 67cc35b505d2a34435727361d9ec6678cbb10705d33ede64a24bd2b775e29febee8353b79c92851d72d90e01d22ed848641ee31814c53b35f68d15bcf7d788e8 SHA512 8c1e40cdd1dc8a00bddf699af3a55c08e5f2f5ba4c0ff5d1fffe64300385b1558f4e4653ca7b5a755c2ffc058bea005322708b43117911e4bfe84783eee5f537
+DIST power_assert-2.0.3.tar.gz 17228 BLAKE2B 6a7927102deaf6daf0e4f17e7183ec4a862a57607b965c0051b1ecd22a4bf555c6f6195911405d2839a725f38e1e1b49ef6ca3a4209452ca149996071d28e47b SHA512 f5658d18b3b78e7757ddfc1ccdabc011076c009a7343eaad2748ca7aeb4d112bf19c70621cb938e7dcf1582c8bb7c5512017885ea51503b3ed274980b7d7c0b1

diff --git a/dev-ruby/power_assert/power_assert-2.0.3.ebuild b/dev-ruby/power_assert/power_assert-2.0.3.ebuild
new file mode 100644
index 000000000000..cd8b052576ad
--- /dev/null
+++ b/dev-ruby/power_assert/power_assert-2.0.3.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby27 ruby30 ruby31"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+RUBY_FAKEGEM_GEMSPEC="power_assert.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Shows each value of variables and method calls in the expression"
+HOMEPAGE="https://github.com/ruby/power_assert"
+SRC_URI="https://github.com/ruby/power_assert/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+LICENSE="|| ( Ruby BSD-2 )"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+SLOT="0"
+IUSE=""
+
+ruby_add_bdepend "test? ( dev-ruby/test-unit )"
+
+all_ruby_prepare() {
+	sed -i -e '/bundler/I s:^:#:' Rakefile test/test_helper.rb || die
+	sed -i -e '1igem "test-unit"' \
+		-e '/byebug/ s:^:#:' test/test_helper.rb || die
+
+	# Avoid git dependency
+	sed -i -e 's/git ls-files -z/find . -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die
+
+	# Avoid circular dependency on byebug when bootstrapping ruby
+	sed -i -e '/byebug/ s:^:#:' -e '/test_core_ext_helper/ s:^:#:' test/test_helper.rb || die
+	rm test/test_core_ext_helper.rb test/trace_test.rb || die
+
+	# Avoid circular dependency on pry when bootstrapping ruby
+	sed -i -e '/pry/ s:^:#:' -e '/test_colorized_pp/,/^    end/ s:^:#:' test/block_test.rb || die
+}


             reply	other threads:[~2022-12-23  7:48 UTC|newest]

Thread overview: 99+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-23  7:48 Hans de Graaff [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-08-12 14:30 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/power_assert/ Hans de Graaff
2025-05-20 21:01 Sam James
2025-05-20 18:31 Arthur Zamarin
2025-05-18 10:18 Arthur Zamarin
2024-12-23  6:24 Hans de Graaff
2024-12-23  6:24 Hans de Graaff
2024-11-14  3:49 Sam James
2024-10-04  6:12 Hans de Graaff
2024-07-17  4:38 Viorel Munteanu
2023-07-11  7:47 Hans de Graaff
2023-04-07  6:38 Sam James
2023-04-07  4:12 Sam James
2023-04-07  4:10 Sam James
2023-04-02  1:51 Sam James
2023-04-01 23:53 Sam James
2023-04-01 23:53 Sam James
2023-04-01 23:53 Sam James
2023-03-11  7:37 Hans de Graaff
2023-02-03  6:26 Sam James
2023-01-15 15:22 Sam James
2023-01-15 15:14 Sam James
2023-01-15 15:14 Sam James
2023-01-15 12:53 Sam James
2023-01-15 12:53 Sam James
2023-01-15 12:44 Sam James
2022-10-17  5:25 Hans de Graaff
2022-03-12  7:21 Hans de Graaff
2021-08-30  5:55 Hans de Graaff
2021-07-30  9:59 Hans de Graaff
2021-07-21 10:27 Marek Szuba
2021-07-15 13:44 Sergei Trofimovich
2021-07-13  6:34 Agostino Sarubbo
2021-07-13  6:31 Agostino Sarubbo
2021-07-13  6:29 Agostino Sarubbo
2021-07-11  9:00 Agostino Sarubbo
2021-07-11  8:58 Agostino Sarubbo
2021-07-10  6:49 Hans de Graaff
2021-02-27  6:23 Hans de Graaff
2020-12-28  7:46 Hans de Graaff
2020-04-18  5:33 Hans de Graaff
2020-04-18  5:32 Hans de Graaff
2020-03-22 10:01 Hans de Graaff
2020-02-24  6:27 Hans de Graaff
2019-12-26 11:06 Hans de Graaff
2019-12-03 10:24 Hans de Graaff
2019-11-27 13:03 Mikle Kolyada
2019-11-26 19:35 Sergei Trofimovich
2019-11-23 16:53 Agostino Sarubbo
2019-11-23 15:46 Agostino Sarubbo
2019-11-23 15:40 Agostino Sarubbo
2019-11-23 15:33 Agostino Sarubbo
2019-11-23 12:46 Agostino Sarubbo
2019-11-23  0:13 Aaron Bauman
2019-11-22 16:23 Matt Turner
2019-11-02  8:51 Hans de Graaff
2019-08-12  4:55 Hans de Graaff
2019-08-11  6:56 Hans de Graaff
2019-06-24 15:14 Michael Haubenwallner
2019-04-27 19:48 Aaron Bauman
2019-03-24  8:35 Hans de Graaff
2018-12-30 21:19 Mikle Kolyada
2018-12-26  8:20 Hans de Graaff
2018-07-29  9:10 Hans de Graaff
2018-07-29  8:42 Sergei Trofimovich
2018-07-11  5:05 Markus Meier
2018-06-25 20:43 Tobias Klausmann
2018-06-25  5:07 Hans de Graaff
2018-06-11  4:24 Hans de Graaff
2018-06-07 22:06 Sergei Trofimovich
2018-06-07  4:43 Hans de Graaff
2018-06-06 23:49 Thomas Deutschmann
2018-06-06 18:26 Sergei Trofimovich
2018-04-27 10:58 Hans de Graaff
2017-12-25 17:02 Hans de Graaff
2017-12-06 22:44 Sergei Trofimovich
2017-10-26  4:03 Hans de Graaff
2017-08-20  7:09 Hans de Graaff
2017-07-11  4:58 Markus Meier
2017-06-05 21:53 Sergei Trofimovich
2017-05-16  5:26 Hans de Graaff
2017-04-30  8:10 Jeroen Roovers
2017-04-25  7:08 Tobias Klausmann
2017-03-08 23:39 Michael Weber
2017-02-01  7:02 Hans de Graaff
2017-02-01  7:02 Hans de Graaff
2017-01-31  7:05 Hans de Graaff
2016-12-26 19:17 Hans de Graaff
2016-11-28  6:41 Hans de Graaff
2016-11-28  6:41 Hans de Graaff
2016-09-08  4:50 Hans de Graaff
2016-09-05  5:41 Hans de Graaff
2016-09-04  6:03 Hans de Graaff
2016-05-18  8:41 Fabian Groffen
2016-01-09  7:40 Hans de Graaff
2016-01-09  7:40 Hans de Graaff
2015-11-11  6:27 Hans de Graaff
2015-11-11  6:27 Hans de Graaff
2015-11-01  6:26 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=1671781724.715fab3937c4b34779c6d18d2bf32b278dbb6a8f.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