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/rake-compiler/
Date: Sat, 23 Apr 2022 05:14:58 +0000 (UTC)	[thread overview]
Message-ID: <1650690892.fb3df02f2fe1e7d792041ef34e8bbf2bf6a33c2e.graaff@gentoo> (raw)

commit:     fb3df02f2fe1e7d792041ef34e8bbf2bf6a33c2e
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 22 07:39:07 2022 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Apr 23 05:14:52 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb3df02f

dev-ruby/rake-compiler: add 1.2.0

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

 dev-ruby/rake-compiler/Manifest                   |  1 +
 dev-ruby/rake-compiler/rake-compiler-1.2.0.ebuild | 55 +++++++++++++++++++++++
 2 files changed, 56 insertions(+)

diff --git a/dev-ruby/rake-compiler/Manifest b/dev-ruby/rake-compiler/Manifest
index c595489bf089..1f1fbee6876d 100644
--- a/dev-ruby/rake-compiler/Manifest
+++ b/dev-ruby/rake-compiler/Manifest
@@ -1,3 +1,4 @@
 DIST rake-compiler-1.1.1.tar.gz 34692 BLAKE2B c6862f24ec57c25fdeb7faeeda9eb96cb64ac972c852a81b77ec9b35d21018a5647089cd38d80b03a79e2c07d3f9af42bbaf9998457ad3beed27c8285c23689f SHA512 e9cf9752e48eae912657a34d2f86a2b41f7d57620c6e43b1fa6fb8e5715336b2fdf99bf20a4851889e8b9b7b2e834421c13e108c538abdc3cec968952345361d
 DIST rake-compiler-1.1.3.tar.gz 35894 BLAKE2B cf395392ed4940a9cae1a0c3eed530de0b2ab4af32b0662f8e316f17f1f351170b876afb18cfc74208863fc124db6031f485c37b0ead73b235029d9b0bf01f11 SHA512 542a3579baf9bbb046bb99d72799d50e2f0efe71bb18a8c8aa7a9f740d8dc5706cec1c9619a977ba50eef615f66cbf415b5f8a351843d03ea2d72ed1203ac72d
 DIST rake-compiler-1.1.9.tar.gz 36565 BLAKE2B 6c41d2e3e63cdea0d21d7b8bde6739dc719f87535e50fa1e09dab28e2aa9d88cbc71e826b813426eed7ea75f213f7d84337a01b1949ff006699c5239474d5778 SHA512 d6acc9a36c8c2778d3c958d34ca9d6cba8cdf82365849a818eefb024cc80558512652c20b84a0c756007f7349e2c0380a3818ac1e246eeb8dbfff13283405a21
+DIST rake-compiler-1.2.0.tar.gz 36596 BLAKE2B 56394a2a8d6761f0f36bbc9fa63b2c36e57a33ba6c0bc660f31ef671e9fa90c581d65acb218ba8699dda7793fe6b8eac03e988c9a6dd486df422fd1228bc8b72 SHA512 77b6dd8b976039484ec7d6bb9e0b2432d40153f218ce2e1d242246711d40dc3ed9be7ba6ec99ee8fd89192ab04d5d1a97b4d1c089c86c7d20b163eb8d4ae68d5

diff --git a/dev-ruby/rake-compiler/rake-compiler-1.2.0.ebuild b/dev-ruby/rake-compiler/rake-compiler-1.2.0.ebuild
new file mode 100644
index 000000000000..8cf7bf67922d
--- /dev/null
+++ b/dev-ruby/rake-compiler/rake-compiler-1.2.0.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby26 ruby27 ruby30 ruby31"
+
+RUBY_FAKEGEM_RECIPE_TEST="none"
+
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_EXTRADOC="History.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="rake-compiler.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Provide a standard and simplified way to build and package Ruby extensions"
+HOMEPAGE="https://github.com/luislavena/rake-compiler"
+LICENSE="MIT"
+
+SRC_URI="https://github.com/luislavena/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+SLOT="0"
+IUSE=""
+
+ruby_add_rdepend "dev-ruby/rake"
+
+ruby_add_bdepend "test? ( dev-ruby/rspec:3 )"
+
+USE_RUBY="ruby26 ruby27" ruby_add_bdepend "test? ( dev-util/cucumber dev-ruby/rspec:2 )"
+
+all_ruby_prepare() {
+	# Make sure the right rspec version is used in cucumber.
+	sed -i -e "1igem 'rspec', '~>2.0'" features/support/env.rb || die
+
+	# Avoid failing features for native gems, this also fails with rubygems
+	sed -i -e '/generate native gem/,$ s:^:#:' features/package.feature || die
+
+	# Fix compatibility with newer cucumber versions. The not syntax has
+	# been supported since cucumber 3.x.
+	sed -i -e "s/~@java/'not @java'/" cucumber.yml || die
+}
+
+each_ruby_test() {
+	# Skip cucumber for new ruby versions (not ready yet due to rspec 2 usage)
+	case ${RUBY} in
+		*ruby26|*ruby27)
+			RSPEC_VERSION=3 ruby-ng_rspec
+			ruby-ng_cucumber
+			;;
+		*)
+			RSPEC_VERSION=3 ruby-ng_rspec
+			;;
+	esac
+}


             reply	other threads:[~2022-04-23  5:15 UTC|newest]

Thread overview: 111+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-23  5:14 Hans de Graaff [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-01-03  8:31 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/rake-compiler/ Hans de Graaff
2025-01-03  8:31 Hans de Graaff
2024-11-14  4:35 Sam James
2024-11-14  4:35 Sam James
2024-11-14  3:21 Sam James
2024-11-03  9:12 Hans de Graaff
2024-10-13 18:38 Arthur Zamarin
2024-10-10 12:20 Arthur Zamarin
2024-10-06 13:52 Arthur Zamarin
2024-10-06 13:30 Jakov Smolić
2024-10-06 11:18 Sam James
2024-10-06  6:05 Hans de Graaff
2024-02-11 15:12 Hans de Graaff
2024-01-25  8:59 Hans de Graaff
2024-01-25  8:59 Hans de Graaff
2023-08-29 14:50 Hans de Graaff
2023-08-05  1:35 Sam James
2023-08-04 17:30 Hans de Graaff
2023-08-04 17:30 Hans de Graaff
2023-07-24 12:07 Jakov Smolić
2023-06-06 13:40 Hans de Graaff
2023-03-29  8:49 Hans de Graaff
2023-03-29  8:49 Hans de Graaff
2023-03-28 23:20 Sam James
2023-03-28 23:20 Sam James
2023-03-28 22:12 Sam James
2023-03-28 22:12 Sam James
2023-03-28 22:12 Sam James
2023-03-28 22:12 Sam James
2023-03-28 21:49 Sam James
2023-03-28 11:50 Hans de Graaff
2023-03-27  8:35 Sam James
2022-12-24 15:00 Hans de Graaff
2022-12-04 15:59 WANG Xuerui
2022-04-13  5:12 Hans de Graaff
2022-03-07  3:47 Sam James
2021-12-08  6:27 Hans de Graaff
2021-09-11  8:12 Hans de Graaff
2021-09-11  8:12 Hans de Graaff
2021-09-07 12:30 Marek Szuba
2021-09-03  1:53 Sam James
2021-08-03 10:57 Agostino Sarubbo
2021-08-02  4:03 Agostino Sarubbo
2021-08-01  8:08 Agostino Sarubbo
2021-07-31 19:23 Sergei Trofimovich
2021-03-13  9:11 Hans de Graaff
2021-03-13  9:11 Hans de Graaff
2020-09-14  7:29 Hans de Graaff
2020-09-13 10:50 Sergei Trofimovich
2020-07-10  4:32 Hans de Graaff
2020-06-21 17:12 Agostino Sarubbo
2020-06-21 16:58 Agostino Sarubbo
2020-06-21 16:54 Agostino Sarubbo
2020-06-20 15:45 Thomas Deutschmann
2020-04-30  5:26 Hans de Graaff
2020-01-22 18:40 Hans de Graaff
2020-01-06  6:23 Hans de Graaff
2019-12-23  5:46 Hans de Graaff
2019-09-21  6:30 Hans de Graaff
2019-06-05 17:56 Hans de Graaff
2019-05-13  1:41 Thomas Deutschmann
2019-05-02 21:27 Mikle Kolyada
2019-04-28 20:16 Mikle Kolyada
2019-04-27 19:20 Sergei Trofimovich
2019-04-27 16:25 Sergei Trofimovich
2019-04-27 16:03 Sergei Trofimovich
2019-04-21 17:07 Sergei Trofimovich
2019-04-20 17:46 Mikle Kolyada
2019-04-10 17:27 Hans de Graaff
2019-01-13  8:29 Hans de Graaff
2019-01-09  9:12 Hans de Graaff
2018-12-24  7:04 Hans de Graaff
2018-12-24  7:04 Hans de Graaff
2018-09-01  6:59 Hans de Graaff
2018-07-10 17:45 Hans de Graaff
2018-04-09  5:10 Hans de Graaff
2017-12-29 17:41 Sergei Trofimovich
2017-11-26 10:46 Hans de Graaff
2017-08-20  7:09 Hans de Graaff
2017-08-20  7:09 Hans de Graaff
2017-06-07  5:22 Hans de Graaff
2017-06-06 22:12 Sergei Trofimovich
2017-05-10  4:15 Hans de Graaff
2017-04-29 20:26 Jeroen Roovers
2017-03-31 12:09 Agostino Sarubbo
2017-03-29 10:23 Michael Weber
2017-03-29  8:38 Michael Weber
2017-02-21 18:59 Hans de Graaff
2016-12-11  7:26 Hans de Graaff
2016-11-15  6:18 Hans de Graaff
2016-08-06  7:18 Hans de Graaff
2016-07-09  5:29 Hans de Graaff
2016-07-08 13:48 Agostino Sarubbo
2016-07-08 10:30 Agostino Sarubbo
2016-06-21  5:09 Hans de Graaff
2016-05-10  5:10 Hans de Graaff
2016-04-29  4:32 Hans de Graaff
2016-03-17  0:19 Manuel Rüger
2016-03-17  0:19 Manuel Rüger
2016-03-14 17:56 Richard Farina
2016-03-05  6:54 Hans de Graaff
2016-03-05  6:54 Hans de Graaff
2016-02-04 19:31 Tobias Klausmann
2016-01-17 18:24 Agostino Sarubbo
2016-01-02 16:29 Jeroen Roovers
2016-01-02 15:27 Jeroen Roovers
2015-11-24 20:24 Markus Meier
2015-11-18  8:57 Agostino Sarubbo
2015-11-17  9:59 Agostino Sarubbo
2015-11-17  6:48 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=1650690892.fb3df02f2fe1e7d792041ef34e8bbf2bf6a33c2e.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